* keymap.c (DENSE_TABLE_SIZE): Remove; unused.
[bpt/emacs.git] / src / ChangeLog
... / ...
CommitLineData
12011-03-14 Paul Eggert <eggert@cs.ucla.edu>
2
3 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
4 (copy_keymap_item, append_key, push_text_char_description):
5 Now static.
6 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
7 (DENSE_TABLE_SIZE): Remove; unused.
8
9 * keyboard.c: Declare functions static if they are not used elsewhere.
10 (echo_char, echo_dash, cmd_error, top_level_2):
11 (poll_for_input, handle_async_input): Now static.
12 (read_char, kbd_buffer_get_event, make_lispy_position):
13 (make_lispy_event, make_lispy_movement, apply_modifiers):
14 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
15 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
16 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
17 (read_key_sequence, read_char): Mark locals as initialized.
18 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
19
20 * keyboard.h (make_ctrl_char): New decl.
21 (mark_kboards): Move decl here ...
22 * alloc.c (mark_kboards): ... from here.
23
24 * lisp.h (force_auto_save_soon): New decl.
25
26 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
27 (DEFINE_DUMMY_FUNCTION): New macro.
28 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
29 Use it.
30 (main): Add casts to avoid warnings
31 if GCC considers string literals to be constants.
32
33 * lisp.h (fatal_error_signal): Add decl, since it's exported.
34
35 * dbusbind.c: Pointer signedness fixes.
36 (xd_signature, xd_append_arg, xd_initialize):
37 (Fdbus_call_method, Fdbus_call_method_asynchronously):
38 (Fdbus_method_return_internal, Fdbus_method_error_internal):
39 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
40 (Fdbus_register_signal): Use SSDATA when the context wants char *.
41
42 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
43 if GCC considers string literals to be constants.
44 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
45
462011-03-13 Chong Yidong <cyd@stupidchicken.com>
47
48 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
49 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
50 These macros can no longer be used for assignment.
51
52 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
53 struct members directly, instead of using BUF_BEGV etc.
54 (record_buffer_markers, fetch_buffer_markers): New functions for
55 recording and fetching special buffer markers.
56 (set_buffer_internal_1, set_buffer_temp): Use them.
57
58 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
59
60 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
61
62 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
63 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
64
65 * xdisp.c (hscroll_window_tree):
66 (reconsider_clip_changes): Use PT instead of BUF_PT.
67
682011-03-13 Eli Zaretskii <eliz@gnu.org>
69
70 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
71 $(EMACS_ROOT)/lib/intprops.h.
72
732011-03-13 Paul Eggert <eggert@cs.ucla.edu>
74
75 Fix more problems found by GCC 4.5.2's static checks.
76
77 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
78 to unsigned char * to avoid compiler diagnostic.
79 (xg_free_frame_widgets): Make it clear that a local variable is
80 needed only if USE_GTK_TOOLTIP.
81 (gdk_window_get_screen): Make it clear that this macro is needed
82 only if USE_GTK_TOOLTIP.
83 (int_gtk_range_get_value): New function, which avoids a diagnostic
84 from gcc -Wbad-function-cast.
85 (xg_set_toolkit_scroll_bar_thumb): Use it.
86 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
87 diagnostic from gcc -Wbad-function-cast.
88 (get_utf8_string, xg_get_file_with_chooser):
89 Rename locals to avoid shadowing.
90 (create_dialog): Move locals to avoid shadowing.
91
92 * xgselect.c (xg_select): Remove unused var.
93
94 * image.c (four_corners_best): Mark locals as initialized.
95 (gif_load): Initialize transparent_p to zero (Bug#8238).
96 Mark another local as initialized.
97 (my_png_error, my_error_exit): Mark with NO_RETURN.
98
99 * image.c (clear_image_cache): Now static.
100 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
101 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
102 (x_edge_detection): Remove unnecessary cast that
103 gcc -Wbad-function-cast diagnoses.
104 (gif_load): Fix pointer signedness.
105 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
106 (jpeg_load, gif_load): Rename locals to avoid shadowing.
107
1082011-03-11 Paul Eggert <eggert@cs.ucla.edu>
109
110 Improve quality of tests for time stamp overflow.
111 For example, without this patch (encode-time 0 0 0 1 1
112 1152921504606846976) returns the obviously-bogus value (-948597
113 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
114 reports time overflow. See
115 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
116 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
117 * editfns.c: Include limits.h and intprops.h.
118 (TIME_T_MIN, TIME_T_MAX): New macros.
119 (time_overflow): Move earlier, to before first use.
120 (hi_time, lo_time): New functions, for an accurate test for
121 out-of-range times.
122 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
123 (Fget_internal_run_time): Don't assume time_t fits in int.
124 (make_time): Use list2 instead of Fcons twice.
125 (Fdecode_time): More accurate test for out-of-range times.
126 (check_tm_member): New function.
127 (Fencode_time): Use it, to test for out-of-range times.
128 (lisp_time_argument): Don't rely on undefined left-shift and
129 right-shift behavior when checking for time stamp overflow.
130
131 * editfns.c (time_overflow): New function, refactoring common code.
132 (Fformat_time_string, Fdecode_time, Fencode_time):
133 (Fcurrent_time_string): Use it.
134
135 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
136 * dired.c (make_time): Move to ...
137 * editfns.c (make_time): ... here.
138 * systime.h: Note the move.
139
1402011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
141
142 * fringe.c (update_window_fringes): Remove unused variables.
143
144 * unexmacosx.c (copy_data_segment): Also copy __got section.
145 (Bug#8223)
146
1472011-03-12 Eli Zaretskii <eliz@gnu.org>
148
149 * termcap.c [MSDOS]: Include "msdos.h.
150 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
151 Constify `char *' arguments and their references according to
152 prototypes in tparam.h.
153
154 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
155
156 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
157 Adapt all references accordingly.
158
159 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
160
1612011-03-11 Tom Tromey <tromey@redhat.com>
162
163 * buffer.c (syms_of_buffer): Remove obsolete comment.
164
1652011-03-11 Eli Zaretskii <eliz@gnu.org>
166
167 * termhooks.h (encode_terminal_code): Declare prototype.
168
169 * msdos.c (encode_terminal_code): Don't declare prototype.
170
171 * term.c (encode_terminal_code): Now external again, used by
172 w32console.c and msdos.c.
173
174 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)): Depend
175 on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
176
1772011-03-11 Paul Eggert <eggert@cs.ucla.edu>
178
179 Fix some minor problems found by GCC 4.5.2's static checks.
180
181 * fringe.c (update_window_fringes): Mark locals as initialized
182 (Bug#8227).
183 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
184
185 * alloc.c (mark_fringe_data): Move decl from here ...
186 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
187 to check its interface.
188 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
189
190 * fontset.c (free_realized_fontset): Now static.
191 (Fset_fontset_font): Rename local to avoid shadowing.
192 (fontset_font): Mark local as initialized.
193 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
194
195 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
196
197 * xselect.c (x_disown_buffer_selections): Remove; not used.
198 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
199 (x_own_selection, Fx_disown_selection_internal): Rename locals
200 to avoid shadowing.
201 (x_handle_dnd_message): Remove local to avoid shadowing.
202
203 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
204 so that the caller can use some name other than gcpro1.
205 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
206 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
207 (Fx_backspace_delete_keys_p):
208 Use them to avoid shadowing, and rename vars to avoid shadowing.
209 (x_decode_color, x_set_name, x_window): Now static.
210 (Fx_create_frame): Add braces to silence GCC warning.
211 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
212 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
213 Remove unused locals.
214 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
215 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
216 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
217 macros.
218
219 * xterm.h (x_mouse_leave): New decl.
220
221 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
222 Remove unused functions.
223 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
224 (x_calc_absolute_position): Now static.
225 (XTread_socket): Don't define label "out" unless it's used.
226 Don't declare local "event" unless it's used.
227 (x_iconify_frame, x_free_frame_resources): Don't declare locals
228 unless they are used.
229 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
230 (x_fatal_error_signal): Remove; not used.
231 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
232 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
233 (x_error_catcher, x_connection_closed, x_error_handler):
234 (x_error_quitter, xembed_send_message, x_iconify_frame):
235 (my_log_handler): Rename locals to avoid shadowing.
236 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
237 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
238
239 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
240 or move locals to avoid shadowing.
241 (tty_defined_color, merge_face_heights): Now static.
242 (free_realized_faces_for_fontset): Remove; not used.
243 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
244 does not deduce is never used uninitialized.
245 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
246 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
247
248 * terminal.c (store_terminal_param): Now static.
249
250 * xmenu.c (menu_highlight_callback): Now static.
251 (set_frame_menubar): Remove unused local.
252 (xmenu_show): Rename parameter to avoid shadowing.
253 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
254 since they might point to immutable storage.
255 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
256 since it's unused otherwise.
257
258 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
259 Add a FIXME, since the code still doesn't look right. (Bug#8215)
260 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
261 avoids a gcc -Wuninitialized diagnostic.
262 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
263 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
264 does not deduce are never used uninitialized.
265
266 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
267
268 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
269 * window.c (window_loop, size_window):
270 (run_window_configuration_change_hook, enlarge_window): Likewise.
271
272 * window.c (display_buffer): Now static.
273 (size_window): Mark variables that gcc -Wuninitialized
274 does not deduce are never used uninitialized.
275 * window.h (check_all_windows): New decl, to forestall
276 gcc -Wmissing-prototypes diagnostic.
277 * dispextern.h (bidi_dump_cached_states): Likewise.
278
279 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
280 shadowing.
281 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
282 Include <limits.h>.
283 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
284 and to avoid gcc -Wuninitialized warning.
285 (load_charset_map): Mark variables that gcc -Wuninitialized
286 does not deduce are never used uninitialized.
287 (load_charset): Abort instead of using uninitialized var (Bug#8229).
288
289 * coding.c (coding_set_source, coding_set_destination):
290 Use "else { /* comment */ }" rather than "else /* comment */;"
291 for clarity, and to avoid gcc -Wempty-body warning.
292 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
293 a block, when the outer 'i' will do.
294 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
295 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
296 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
297 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
298 (Fdecode_sjis_char, Fdefine_coding_system_internal):
299 Rename locals to avoid shadowing.
300 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
301 * coding.c (emacs_mule_char, encode_invocation_designation):
302 Now static, since they're not used elsewhere.
303 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
304 (decode_coding_object, encode_coding_object, detect_coding_system):
305 (decode_coding_emacs_mule): Mark variables that gcc
306 -Wuninitialized does not deduce are never used uninitialized.
307 (detect_coding_iso_2022): Initialize a local variable that might
308 be used uninitialized. Leave a FIXME because it's not clear that
309 this initialization is needed. (Bug#8211)
310 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
311 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
312 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
313 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
314 Remove unused macros.
315
316 * category.c (hash_get_category_set): Remove unused local var.
317 (copy_category_table): Now static, since it's not used elsewhere.
318 * character.c (string_count_byte8): Likewise.
319
320 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
321 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
322
323 * chartab.c (copy_sub_char_table): Now static, since it's not used
324 elsewhere.
325 (sub_char_table_ref_and_range, char_table_ref_and_range):
326 Rename locals to avoid shadowing.
327 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
328
329 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
330 (BIDI_BOB): Remove unused macro.
331
332 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
333 deduce are never used uninitialized.
334 * term.c (encode_terminal_code): Likewise.
335
336 * term.c (encode_terminal_code): Now static. Remove unused local.
337
338 * tparam.h: New file.
339 * term.c, tparam.h: Include it.
340 * deps.mk (term.o, tparam.o): Depend on tparam.h.
341 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
342 Move these decls to tparam.h, and make them agree with what
343 is actually in tparam.c. The previous trick of using incompatible
344 decls in different modules does not conform to the C standard.
345 All callers of tparam changed to use tparam's actual API.
346 * tparam.c (tparam1, tparam, tgoto):
347 Use const pointers where appropriate.
348
349 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
350 * cm.h (struct cm): Likewise.
351 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
352 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
353 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
354 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
355 (turn_on_face, init_tty): Likewise.
356 * termchar.h (struct tty_display_info): Likewise.
357
358 * term.c (term_mouse_position): Rename local to avoid shadowing.
359
360 * alloc.c (mark_ttys): Move decl from here ...
361 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
362
3632011-03-11 Andreas Schwab <schwab@linux-m68k.org>
364
365 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
366
3672011-03-09 Juanma Barranquero <lekktu@gmail.com>
368
369 * search.c (compile_pattern_1): Remove argument regp, unused since
370 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
371 (compile_pattern): Don't pass it.
372
3732011-03-08 Jan Djärv <jan.h.d@swipnet.se>
374
375 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
376 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
377 for ! HAVE_GTK3.
378 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
379
380 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
381
382 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
383 gdk_window_get_screen, gdk_window_get_geometry,
384 gdk_x11_window_lookup_for_display and GDK_KEY_g.
385 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
386 (xg_get_pixbuf_from_pixmap): New function.
387 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
388 to Pixmap, take frame as parameter, remove GdkColormap parameter.
389 Call xg_get_pixbuf_from_pixmap instead of
390 gdk_pixbuf_get_from_drawable.
391 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
392 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
393 (xg_check_special_colors): Use GtkStyleContext and its functions
394 for HAVE_GTK3.
395 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
396 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
397 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
398 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes): Call
399 gtk_widget_get_preferred_size.
400 (xg_frame_resized): gdk_window_get_geometry only takes 5
401 parameters.
402 (xg_win_to_widget, xg_event_is_for_menubar): Call
403 gdk_x11_window_lookup_for_display.
404 (xg_set_widget_bg): New function.
405 (delete_cb): New function.
406 (xg_create_frame_widgets): connect delete-event to delete_cb.
407 Call xg_set_widget_bg. Only set backgrund pixmap for ! HAVE_GTK3
408 (xg_set_background_color): Call xg_set_widget_bg.
409 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
410 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
411 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
412 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
413 if ! HAVE_GTK3.
414 (update_frame_tool_bar): Call gtk_widget_hide.
415 (xg_initialize): Use GDK_KEY_g.
416
417 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
418 if ! HAVE_GTK3
419 (x_session_initialize): Call gdk_x11_set_sm_client_id.
420
421 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
422 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
423 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
424
4252011-03-08 Juanma Barranquero <lekktu@gmail.com>
426
427 * w32xfns.c (select_palette): Check success of RealizePalette against
428 GDI_ERROR, not zero.
429
4302011-03-07 Ben Key <bkey76@gmail.com>
431
432 * w32fns.c (FILE_NAME_COMBO_BOX, FILE_NAME_LIST): Define.
433 (file_dialog_callback): Fix locating the window handle of the File Name
434 text field. After disabling it, set focus on the list control.
435 (Fx_file_dialog): If only_dir_p is non-nil, set the text of the File
436 Name text field to "Current Directory" if it does not already have
437 another value. (Bug#8181)
438
4392011-03-07 Adrian Robert <Adrian.B.Robert@gmail.com>
440
441 * nsterm.m (ns_draw_window_cursor): Fix handling of "cursor_width"
442 parameter for hbar cursors. Based on a patch by Ben Key
443 <bkey76@gmail.com>.
444
4452011-03-06 Chong Yidong <cyd@stupidchicken.com>
446
447 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
448 change.
449
4502011-03-06 Paul Eggert <eggert@cs.ucla.edu>
451
452 current_column: Now returns EMACS_INT, fixing some iftc
453 that was introduced in the 2002-06-02 change "temporarily"; see
454 <http://lists.gnu.org/archive/html/emacs-devel/2002-06/msg00039.html>.
455 * bytecode.c (Fbyte_code): Don't cast current_column () to int.
456 * cmds.c (internal_self_insert): Likewise.
457 * indent.c (Fcurrent_column): Likewise.
458 * keymap.c (describe_command): Likewise.
459 * minibuf.c (read_minibuf): Likewise.
460 * indent.c (Fcurrent_indentation): Don't cast position_indentation ()
461 to int.
462 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
463 Likewise.
464 * cmds.c (internal_self_insert): Declare locals to be EMACS_INT,
465 not int or double, if they might contain a column number.
466 * indent.c (current_column, Findent_to, indented_beyond_p):
467 (compute_motion, vmotion): Likewise.
468 * keymap.c (describe_command): Likewise.
469 * xdisp.c (pint2str): Likewise.
470 * indent.c (last_known_column): Now EMACS_INT, not int.
471 * minibuf.c (minibuf_prompt_width): Likewise.
472 * indent.c (current_column, current_column_1, position_indentation):
473 Return EMACS_INT, not double.
474 * lisp.h (current_column): Likewise.
475 * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double.
476 All callers changed.
477 * lisp.h (indented_beyond_p): Likewise.
478
479 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here
480 from xdisp.c, and make static, since these are used only here.
481 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width):
482 Remove decls.
483
484 * cmds.c (internal_self_insert): Reindent to match Emacs style.
485 * xdisp.c (redisplay_window): Likewise.
486
487 * xdisp.c: Rename or move local decls to avoid shadowing.
488 (init_iterator, handle_fontified_prop, handle_single_display_spec):
489 (message_dolog, message_with_string, redisplay_internal):
490 (redisplay_window, try_window_reusing_current_matrix, try_window_id):
491 (compute_line_metrics, highlight_trailing_whitespace, cursor_row_p):
492 (display_line, display_string, rows_from_pos_range):
493 (mouse_face_from_buffer_pos, note_mouse_highlight, expose_frame):
494 Rename or move local decls.
495 * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.
496 (produce_glyphless_glyph): Make a pointer "const"
497 since it might point to immutable storage.
498 (update_window_cursor): Now static, since it's not used elsewhere.
499 (SKIP_GLYPHS): Removed unused macro.
500
5012011-03-06 Michael Shields <shields@msrl.com> (tiny change)
502
503 * window.c (Fnext_window): Doc fix. (Bug#5567)
504
5052011-03-05 Chong Yidong <cyd@stupidchicken.com>
506
507 * nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
508
5092011-03-02 Ken Brown <kbrown@cornell.edu>
510
511 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
512
5132011-03-02 Paul Eggert <eggert@cs.ucla.edu>
514
515 Work around some portability problems with symlinks.
516
517 * fileio.c (Fmake_symbolic_link): Treat ENOSYS specially, and
518 generate a special message for it. Suggested by Eli Zaretskii in
519 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00995.html>.
520 (Frename_file, Fmake_symbolic_link, Ffile_symlink_p):
521 Simplify the code by assuming that the readlink and symlink calls
522 exist, even if they always fail on this host.
523 (Ffile_readable_p): Likewise, for fifos.
524 * config.in: Regenerate.
525
5262011-02-27 Chong Yidong <cyd@stupidchicken.com>
527
528 * frame.c (store_frame_param): Don't store value directly in
529 buffer_list and buried_buffer_list; copy the list and remove dead
530 buffers (Bug#7898).
531
5322011-02-27 Eli Zaretskii <eliz@gnu.org>
533
534 * msdos.c (readlink) [DJGPP < 2.04]: New stub function.
535
536 * msdos.h (readlink) [DJGPP < 2.04]: Declare prototype.
537
538 * w32.c (symlink, readlink): New stub functions.
539
5402011-02-27 Paul Eggert <eggert@cs.ucla.edu>
541
542 * scroll.c (CHECK_BOUNDS): #define only if GLYPH_DEBUG.
543 This avoids a gcc warning in some configurations.
544
545 * frame.c (x_set_screen_gamma): Rename local to avoid shadowing.
546
547 * frame.h: Avoid gcc -Wmissing-prototypes diagnostics.
548 (set_menu_bar_lines, x_get_resource_string): New decls.
549 * msdos.c (set_menu_bar_lines): Omit decl.
550
551 * dispextern.h (struct glyph): Make u.img_id int, not unsigned.
552 It's always given int values and used as an int. This suppresses
553 a gcc "comparison of unsigned expression >= 0" warning in some
554 configurations.
555
556 * dispnew.c: Rename locals to avoid shadowing.
557 (update_text_area, scrolling_window, update_frame_1): Rename locals.
558
5592011-02-26 Paul Eggert <eggert@cs.ucla.edu>
560
561 * dispnew.c: Fix problems uncovered by gcc -Wstrict-prototypes.
562 (copy_glyph_row_contents): Remove; not used.
563 (frame_row_to_window, check_current_matrix_flags):
564 (window_change_signal): Now static, since they're not used elsewhere.
565 (check_current_matrix_flags): Surround with "#if 0", since its
566 only use is in a comment. Maybe both the comment and the "#if 0"
567 stuff should be removed?
568
569 * dispnew.c: Fix problem uncovered by gcc -Wunused-variable.
570 (adjust_frame_glyphs_for_window_redisplay): Make 'w' local to the
571 contexts that actually need it.
572
5732011-02-26 Eli Zaretskii <eliz@gnu.org>
574
575 * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04.
576 (lstat): Define for DJGPP < 2.04.
577
5782011-02-25 Paul Eggert <eggert@cs.ucla.edu>
579
580 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
581 as per recent filemodestring API change. Reported by Jonas Öster in
582 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
583
5842011-02-23 Ben Key <bkey76@gmail.com>
585
586 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
587 directly, for bar cursors.
588
5892011-02-23 Chong Yidong <cyd@stupidchicken.com>
590
591 * xdisp.c (set_frame_cursor_types): Don't write an undefined value
592 into the frame's cursor_width.
593
5942011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
595
596 * print.c (print_object): Never print old-style backquotes.
597 Obey escapeflag for hash tables as well.
598
5992011-02-23 Kenichi Handa <handa@m17n.org>
600
601 * font.c (font_open_entity): Be sure to set scaled_pixel_size.
602 (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is integer.
603
6042011-02-22 Paul Eggert <eggert@cs.ucla.edu>
605
606 * dired.c (Ffile_attributes): Simplify and avoid #ifdef.
607
6082011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
609
610 * lread.c (openp): Correct Boolean typo in last commit.
611
6122011-02-22 Adrian Robert <Adrian.B.Robert@gmail.com>
613
614 * nsterm.m (EmacsView-keyDown:): Don't pass shift-only-modified
615 key to Emacs, treat as unmodified (go to input manager processing).
616
6172011-02-22 Paul Eggert <eggert@cs.ucla.edu>
618
619 Assume S_ISLNK etc. work, since gnulib supports this.
620 * config.in: Regenerate.
621 * dired.c (lstat): Remove.
622 (file_name_completion): Assume S_ISDIR works.
623 (file_name_completion_stat): Assume S_ISLNK works.
624 Do not bother calling stat unless lstat says it's a symlink.
625 * fileio.c (S_ISLNK, S_ISFIFO, S_ISREG, lstat): Remove.
626 (Fcopy_file): Assume S_ISREG and S_ISLNK work.
627 (check_writable, Ffile_writable_p, Fset_file_times):
628 Assume S_ISDIR works.
629 (Ffile_readable_p): Use S_IFIFO, not S_ISFIFO, to guess whether
630 fifos exist.
631 (Ffile_regular_p, Finsert_file_contents): Assume S_ISREG works.
632 * filelock.c (S_ISLNK): Remove.
633 * lread.c (openp): Assume S_ISDIR works.
634 * xrdb.c (S_ISDIR): Remove.
635
6362011-02-21 Eli Zaretskii <eliz@gnu.org>
637
638 * makefile.w32-in ($(BLD)/filemode.$(O)): Move recipe to
639 lib/makefile.w32-in.
640 ($(BLD)/dired.$(O)): Depend on $(EMACS_ROOT)/lib/filemode.h.
641 (GLOBAL_SOURCES): Remove filemode.c.
642 (OBJ1): Remove $(BLD)/filemode.$(O).
643
6442011-02-21 Paul Eggert <eggert@cs.ucla.edu>
645
646 Import filemode module from gnulib.
647 * Makefile.in (base_obj): Remove filemode.o, as it's now in ../lib.
648 * deps.mk (dired.o): Depend on ../lib/filemode.h, too.
649 (filemode.o): Remove; this is now in ../lib.
650 * dired.c: Include <filemode.h>.
651 (filemodestring): Remove now-redundant decl.
652 * config.in: Regenerate.
653
6542011-02-20 Eli Zaretskii <eliz@gnu.org>
655
656 * makefile.w32-in ($(BLD)/fns.$(O)): Depend on
657 $(EMACS_ROOT)/lib/md5.h and on stamp_BLD.
658
6592011-02-20 Christoph Scholtes <cschol2112@gmail.com>
660
661 * makefile.w32-in: Remove md5.$(O).
662 ($(BLD)/md5.$(O)): Remove prerequisites, moved to
663 lib/makefile.w32-in.
664
6652011-02-20 Paul Eggert <eggert@cs.ucla.edu>
666
667 Import crypto/md5 and stdint modules from gnulib.
668 * Makefile.in (base_obj): Remove md5.o, since this file
669 is in lib now.
670 * config.in: Regenerate.
671 * md5.h, md5.h: Move to ../lib.
672 * deps.mk (md5.o): Remove.
673 (fns.o): Depend on ../lib/md5.h, not md5.h.
674
6752011-02-19 Eli Zaretskii <eliz@gnu.org>
676
677 * termcap.c (tputs): Don't declare baud_rate.
678
679 * s/msdos.h (strtold): Define to _strtold.
680
6812011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
682
683 * process.c (Fstart_process, Fmake_serial_process)
684 (Fmake_network_process, server_accept_connection):
685 Use empty_unibyte_string.
686
687 * alloc.c (make_unibyte_string): Don't SET_UNIBYTE redundantly.
688
689 * lread.c (Qdir_ok): New constant.
690 (syms_of_lread): Initialize it.
691 (openp): Don't ignore directories if the predicate returns dir-ok.
692
6932011-02-18 Eli Zaretskii <eliz@gnu.org>
694
695 * xdisp.c (display_line): Fix the change made for bug#7939.
696
697 * terminal.c (create_terminal): Use default-keyboard-coding-system
698 and default-terminal-coding-system to initialize coding systems of
699 the new terminal. (Bug#7840)
700
7012011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
702
703 * lisp.h (BYTE_MARK_STACK): New macro.
704 (mark_byte_stack): Only declare if BYTE_MARK_STACK is set.
705
706 * bytecode.c (BYTE_MAINTAIN_TOP): New macros.
707 (struct byte_stack): Only define `top' and `bottom' if used.
708 (mark_byte_stack): Only define if used.
709 (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Nullify if BYTE_MAINTAIN_TOP
710 is not set.
711 (Fbyte_code): Don't set `bottom' unless BYTE_MAINTAIN_TOP is set.
712
713 * term.c (OUTPUT_IF): Use OUTPUT.
714
715 * alloc.c (Fgarbage_collect): When using stack scanning, don't
716 redundantly scan byte-code stacks, catchlist, and handlerlist.
717
7182011-02-17 Jan Djärv <jan.h.d@swipnet.se>
719
720 * nsfns.m (Fx_create_frame, ns_set_name_as_filename)
721 (Fns_read_file_name): Replace B_ with BVAR.
722
723 * nsterm.m (ns_term_init): Use KVAR.
724
7252011-02-16 Eli Zaretskii <eliz@gnu.org>
726
727 * msdos.c (internal_terminal_init): Use KVAR.
728
729 * w32fns.c (Fx_create_frame): Use KVAR.
730
731 * w32term.c (w32_create_terminal): Use KVAR.
732
733 * s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove.
734 (getloadavg): Declare prototype which was removed from lisp.h.
735
736 * xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT.
737
738 * fileio.c (Finsert_file_contents, Fwrite_region):
739 Remove references to buffer_file_type.
740 (syms_of_fileio): Don't intern and staticpro
741 find-buffer-file-type.
742
743 * callproc.c (syms_of_callproc): Remove references to
744 buffer_file_type.
745
746 * buffer.c (reset_buffer_local_variables): Don't set
747 buffer_file_type.
748 (init_buffer_once): Likewise.
749 (syms_of_buffer): Don't define buffer-file-type.
750
751 * buffer.h (struct buffer): Remove buffer_file_type.
752
7532011-02-16 Tom Tromey <tromey@parfait>
754
755 * callint.c (Fcall_interactively): Update for change to field names.
756 * doc.c (Fsubstitute_command_keys): Update for change to field names.
757 * cmds.c (Fself_insert_command): Update for change to field names.
758 * keymap.c (Fcurrent_active_maps, Fkey_binding)
759 (Fdescribe_buffer_bindings): Update for change to field names.
760 * macros.c (Fstart_kbd_macro, end_kbd_macro, Fend_kbd_macro)
761 (store_kbd_macro_char, Fcall_last_kbd_macro, Fexecute_kbd_macro):
762 Update for change to field names.
763 * keyboard.c (echo_char, echo_dash, echo_now, cancel_echoing)
764 (echo_length, echo_truncate, cmd_error, command_loop_1)
765 (read_char, kbd_buffer_store_event_hold, make_lispy_event)
766 (menu_bar_items, tool_bar_items, read_char_minibuf_menu_prompt)
767 (read_key_sequence, Fcommand_execute, Fexecute_extended_command)
768 (Fdiscard_input, init_kboard, init_keyboard, mark_kboards):
769 Update for change to field names.
770 * xfns.c (Fx_create_frame): Update for change to field names.
771 * xterm.c (x_connection_closed, x_term_init): Update for change to
772 field names.
773 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN, init_tty):
774 Update for change to field names.
775 * window.c (window_scroll_pixel_based, window_scroll_line_based):
776 Update for change to field names.
777 * frame.c (make_frame_without_minibuffer, Fhandle_switch_frame)
778 (delete_frame): Update for change to field names.
779 * lisp.h (DEFVAR_KBOARD): Update for change to field names.
780 * keyboard.h (struct kboard): Rename all Lisp_Object fields.
781 (KBOARD_INTERNAL_FIELD, KVAR): New macros.
782
7832011-02-16 Tom Tromey <tromey@redhat.com>
784
785 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
786
7872011-02-16 Tom Tromey <tromey@parfait>
788
789 * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR.
790 * xfaces.c (compute_char_face): Replace B_ with BVAR.
791 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
792 (message_dolog, update_echo_area, ensure_echo_area_buffers)
793 (with_echo_area_buffer, setup_echo_area_for_printing)
794 (set_message_1, update_menu_bar, update_tool_bar)
795 (text_outside_line_unchanged_p, redisplay_internal)
796 (try_scrolling, try_cursor_movement, redisplay_window)
797 (try_window_reusing_current_matrix, row_containing_pos)
798 (try_window_id, get_overlay_arrow_glyph_row, display_line)
799 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
800 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
801 (get_window_cursor_type, note_mouse_highlight): Replace B_ with
802 BVAR.
803 * window.c (window_display_table, unshow_buffer, window_loop)
804 (window_min_size_2, set_window_buffer, Fset_window_buffer)
805 (select_window, Fforce_window_update, temp_output_buffer_show)
806 (Fset_window_configuration, save_window_save): Replace B_ with
807 BVAR.
808 * w32fns.c (x_create_tip_frame, Fx_show_tip, Fw32_shell_execute):
809 Replace B_ with BVAR.
810 * undo.c (record_point, record_insert, record_delete)
811 (record_marker_adjustment, record_first_change)
812 (record_property_change, Fundo_boundary, truncate_undo_list)
813 (Fprimitive_undo): Replace B_ with BVAR.
814 * syntax.h (Vstandard_syntax_table, CURRENT_SYNTAX_TABLE)
815 (SETUP_BUFFER_SYNTAX_TABLE): Replace B_ with BVAR.
816 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
817 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
818 (skip_syntaxes, scan_lists): Replace B_ with BVAR.
819 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
820 (string_match_1, fast_looking_at, newline_cache_on_off)
821 (search_command, search_buffer, simple_search, boyer_moore)
822 (Freplace_match): Replace B_ with BVAR.
823 * process.c (get_process, list_processes_1, Fstart_process)
824 (Fmake_serial_process, Fmake_network_process)
825 (read_process_output, send_process, exec_sentinel)
826 (status_notify, setup_process_coding_systems): Replace B_ with
827 BVAR.
828 * print.c (PRINTDECLARE, PRINTPREPARE, PRINTFINISH, printchar)
829 (strout, print_string, temp_output_buffer_setup, print_object):
830 Replace B_ with BVAR.
831 * msdos.c (IT_frame_up_to_date): Replace B_ with BVAR.
832 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer):
833 Replace B_ with BVAR.
834 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
835 (set_marker_both, set_marker_restricted_both, unchain_marker):
836 Replace B_ with BVAR.
837 * lread.c (readchar, unreadchar, openp, readevalloop)
838 (Feval_buffer, Feval_region): Replace B_ with BVAR.
839 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE): Replace B_ with BVAR.
840 * keymap.c (Flocal_key_binding, Fuse_local_map)
841 (Fcurrent_local_map, push_key_description)
842 (Fdescribe_buffer_bindings): Replace B_ with BVAR.
843 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
844 (read_key_sequence): Replace B_ with BVAR.
845 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Replace B_ with BVAR.
846 * intervals.c (set_point_both, get_local_map): Replace B_ with
847 BVAR.
848 * insdel.c (check_markers, insert_char, insert_1_both)
849 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
850 (adjust_after_replace, replace_range, del_range_2)
851 (modify_region, prepare_to_modify_buffer)
852 (Fcombine_after_change_execute): Replace B_ with BVAR.
853 * indent.c (buffer_display_table, recompute_width_table)
854 (width_run_cache_on_off, current_column, scan_for_column)
855 (Findent_to, position_indentation, compute_motion, vmotion):
856 Replace B_ with BVAR.
857 * fringe.c (get_logical_cursor_bitmap)
858 (get_logical_fringe_bitmap, update_window_fringes): Replace B_
859 with BVAR.
860 * frame.c (make_frame_visible_1): Replace B_ with BVAR.
861 * font.c (font_at): Replace B_ with BVAR.
862 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
863 Replace B_ with BVAR.
864 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
865 (unlock_buffer): Replace B_ with BVAR.
866 * fileio.c (Fexpand_file_name, Ffile_directory_p)
867 (Ffile_regular_p, Ffile_selinux_context)
868 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
869 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
870 (Finsert_file_contents, choose_write_coding_system)
871 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
872 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
873 (Fdo_auto_save, Fset_buffer_auto_saved): Replace B_ with BVAR.
874 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
875 (save_excursion_restore, Fprevious_char, Fchar_before)
876 (general_insert_function, Finsert_char, Finsert_byte)
877 (make_buffer_string_both, Finsert_buffer_substring)
878 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
879 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
880 (Ftranslate_region_internal, save_restriction_restore)
881 (Fchar_equal): Replace B_ with BVAR.
882 * dispnew.c (Fframe_or_buffer_changed_p): Replace B_ with BVAR.
883 * dispextern.h (WINDOW_WANTS_MODELINE_P)
884 (WINDOW_WANTS_HEADER_LINE_P): Replace B_ with BVAR.
885 * dired.c (directory_files_internal): Replace B_ with BVAR.
886 * data.c (swap_in_symval_forwarding, set_internal)
887 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
888 Replace B_ with BVAR.
889 * composite.c (fill_gstring_header)
890 (composition_compute_stop_pos, composition_adjust_point)
891 (Ffind_composition_internal): Replace B_ with BVAR.
892 * coding.c (decode_coding, encode_coding)
893 (make_conversion_work_buffer, decode_coding_gap)
894 (decode_coding_object, encode_coding_object)
895 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
896 (Funencodable_char_position, Fcheck_coding_systems_region):
897 Replace B_ with BVAR.
898 * cmds.c (Fself_insert_command, internal_self_insert): Replace B_
899 with BVAR.
900 * charset.c (Ffind_charset_region): Replace B_ with BVAR.
901 * character.h (FETCH_CHAR_ADVANCE, INC_BOTH, DEC_BOTH)
902 (ASCII_CHAR_WIDTH): Replace B_ with BVAR.
903 * character.c (chars_in_text, Fget_byte): Replace B_ with BVAR.
904 * category.h (Vstandard_category_table): Replace B_ with BVAR.
905 * category.c (check_category_table, Fcategory_table)
906 (Fset_category_table, char_category_set): Replace B_ with BVAR.
907 * casetab.c (Fcurrent_case_table, set_case_table): Replace B_ with
908 BVAR.
909 * casefiddle.c (casify_object, casify_region): Replace B_ with
910 BVAR.
911 * callproc.c (Fcall_process, Fcall_process_region): Replace B_
912 with BVAR.
913 * callint.c (check_mark, Fcall_interactively): Replace B_ with
914 BVAR.
915 * bytecode.c (Fbyte_code): Replace B_ with BVAR.
916 * buffer.h (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE, BVAR): Replace B_
917 with BVAR.
918 * buffer.c (Fbuffer_live_p, Fget_file_buffer)
919 (get_truename_buffer, Fget_buffer_create)
920 (clone_per_buffer_values, Fmake_indirect_buffer, reset_buffer)
921 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
922 (Fbuffer_local_value, buffer_lisp_local_variables)
923 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
924 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
925 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
926 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
927 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
928 (Fbuffer_swap_text, swapfield_, Fbuffer_swap_text)
929 (Fset_buffer_multibyte, swap_out_buffer_local_variables)
930 (record_overlay_string, overlay_strings, init_buffer_once)
931 (init_buffer, syms_of_buffer): Replace B_ with BVAR.
932
9332011-02-16 Eli Zaretskii <eliz@gnu.org>
934
935 * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
936 window is changed inside calls to do_pending_window_change.
937 (Bug#8020)
938
9392011-02-16 Paul Eggert <eggert@cs.ucla.edu>
940
941 Remove no-longer needed getloadavg symbols.
942 * m/alpha.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
943 * m/amdx86-64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
944 * m/ia64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
945 * m/ibms390.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
946 * m/macppc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
947 * m/sparc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
948 * m/template.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
949 * m/vax.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
950 * s/aix4-2.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
951 * s/bsd-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove #undef.
952 * s/hpux10-20.h (KERNEL_FILE, LOAD_AVE_TYPE, LOAD_AVE_CVT):
953 (LDAV_SYMBOL): Remove.
954 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Remove.
955 * s/usg5-4-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
956
957 Import getloadavg module from gnulib.
958 * deps.mk (getloadavg.o): Remove; gnulib now does this.
959 * lisp.h (getloadavg) [!defined HAVE_GETLOADAVG]: Remove; gnulib
960 now does this.
961 * src/s/freebsd.h (HAVE_GETLOADAVG): Remove; gnulib now does this.
962 * src/s/netbsd.h (HAVE_GETLOADAVG): Likewise.
963 * config.in: Regenerate.
964
9652011-02-15 Eli Zaretskii <eliz@gnu.org>
966
967 * nsfns.m (ns_set_name_as_filename, Fns_read_file_name): Use B_.
968
9692011-02-14 Michael Welsh Duggan <md5i@md5i.com>
970
971 * print.c (float_to_string): Ensure that a decimal point is
972 printed if using dtoastr (Bug#8033).
973
9742011-02-14 Eli Zaretskii <eliz@gnu.org>
975
976 * msdos.c (IT_frame_up_to_date):
977 * s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
978
979 * dired.c (directory_files_internal):
980 * fileio.c (Finsert_file_contents):
981 * insdel.c (prepare_to_modify_buffer):
982 * xdisp.c (pos_visible_p):
983 * s/ms-w32.h (MODE_LINE_BINARY_TEXT):
984 * w32fns.c (Fw32_shell_execute, Fx_show_tip, x_create_tip_frame):
985 Use B_ for the MS-Windows build.
986
9872011-02-14 Jan Djärv <jan.h.d@swipnet.se>
988
989 * xrdb.c (x_load_resources): For LUCID and XFT, don't put a
990 resource that specifies helvetica for menus and dialogs.
991
992 * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font.
993 (apply_systemfont_to_menu): Set resources *menubar*font and
994 *popup*font. Remove defflt.
995 (set_frame_menubar, create_and_show_popup_menu):
996 Call apply_systemfont_to_menu before lw_create_widget.
997
9982011-02-14 Tom Tromey <tromey@redhat.com>
999
1000 * buffer.c (init_buffer_once, syms_of_buffer): Use B_ in DOS_NT case.
1001
1002 * keyboard.h: Remove obsolete comment.
1003
10042011-02-14 Tom Tromey <tromey@parfait>
1005
1006 * composite.c (fill_gstring_header)
1007 (composition_compute_stop_pos, composition_adjust_point)
1008 (Ffind_composition_internal): Use B_.
1009 * intervals.c (set_point_both, get_local_map): Use B_.
1010 * callproc.c (Fcall_process, Fcall_process_region): Use B_.
1011 * process.c (get_process, list_processes_1, Fstart_process)
1012 (Fmake_serial_process, Fmake_network_process)
1013 (read_process_output, send_process, exec_sentinel)
1014 (status_notify, setup_process_coding_systems): Use B_.
1015 * bytecode.c (Fbyte_code): Use B_.
1016 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1017 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1018 (skip_syntaxes, scan_lists): Use B_.
1019 * lread.c (readchar, unreadchar, openp, readevalloop)
1020 (Feval_buffer, Feval_region): Use B_.
1021 * print.c (printchar, strout, print_string, PRINTDECLARE)
1022 (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup)
1023 (print_object): Use B_.
1024 * font.c (font_at): Use B_.
1025 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1026 Use B_.
1027 * callint.c (check_mark, Fcall_interactively): Use B_.
1028 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1029 (save_excursion_restore, Fprevious_char, Fchar_before)
1030 (general_insert_function, Finsert_char, Finsert_byte)
1031 (make_buffer_string_both, Finsert_buffer_substring)
1032 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1033 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1034 (Ftranslate_region_internal, save_restriction_restore)
1035 (Fchar_equal): Use B_.
1036 * data.c (swap_in_symval_forwarding, set_internal)
1037 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1038 Use B_.
1039 * undo.c (record_point, record_insert, record_delete)
1040 (record_marker_adjustment, record_first_change)
1041 (record_property_change, Fundo_boundary, truncate_undo_list)
1042 (Fprimitive_undo): Use B_.
1043 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1044 (string_match_1, fast_looking_at, newline_cache_on_off)
1045 (search_command, search_buffer, simple_search, boyer_moore)
1046 (Freplace_match): Use B_.
1047 * indent.c (buffer_display_table, recompute_width_table)
1048 (width_run_cache_on_off, current_column, scan_for_column)
1049 (Findent_to, position_indentation, compute_motion, vmotion):
1050 Use B_.
1051 * casefiddle.c (casify_object, casify_region): Use B_.
1052 * casetab.c (Fcurrent_case_table, set_case_table): Use B_.
1053 * cmds.c (Fself_insert_command, internal_self_insert): Use B_.
1054 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1055 (Ffile_regular_p, Ffile_selinux_context)
1056 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1057 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1058 (Finsert_file_contents, choose_write_coding_system)
1059 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1060 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1061 (Fdo_auto_save, Fset_buffer_auto_saved): Use B_.
1062 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_.
1063 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1064 (set_marker_both, set_marker_restricted_both, unchain_marker):
1065 Use B_.
1066 * insdel.c (check_markers, insert_char, insert_1_both)
1067 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1068 (adjust_after_replace, replace_range, del_range_2)
1069 (modify_region, prepare_to_modify_buffer)
1070 (Fcombine_after_change_execute): Use B_.
1071 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1072 (unlock_buffer): Use B_.
1073 * keymap.c (Flocal_key_binding, Fuse_local_map)
1074 (Fcurrent_local_map, push_key_description)
1075 (Fdescribe_buffer_bindings): Use B_.
1076 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1077 (read_key_sequence): Use B_.
1078 * fringe.c (get_logical_cursor_bitmap)
1079 (get_logical_fringe_bitmap, update_window_fringes): Use B_.
1080 * xfns.c (x_create_tip_frame, Fx_show_tip): Use B_.
1081 * xfaces.c (compute_char_face): Use B_.
1082 * character.c (chars_in_text, Fget_byte): Use B_.
1083 * category.c (check_category_table, Fcategory_table)
1084 (Fset_category_table, char_category_set): Use B_.
1085 * coding.c (decode_coding, encode_coding)
1086 (make_conversion_work_buffer, decode_coding_gap)
1087 (decode_coding_object, encode_coding_object)
1088 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1089 (Funencodable_char_position, Fcheck_coding_systems_region):
1090 Use B_.
1091 * charset.c (Ffind_charset_region): Use B_.
1092 * window.c (window_display_table, unshow_buffer, window_loop)
1093 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1094 (select_window, Fforce_window_update, temp_output_buffer_show)
1095 (Fset_window_configuration, save_window_save): Use B_.
1096 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1097 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1098 (with_echo_area_buffer, setup_echo_area_for_printing)
1099 (set_message_1, update_menu_bar, update_tool_bar)
1100 (text_outside_line_unchanged_p, redisplay_internal)
1101 (try_scrolling, try_cursor_movement, redisplay_window)
1102 (try_window_reusing_current_matrix, row_containing_pos)
1103 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1104 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1105 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1106 (get_window_cursor_type, note_mouse_highlight): Use B_.
1107 * frame.c (make_frame_visible_1): Use B_.
1108 * dispnew.c (Fframe_or_buffer_changed_p): Use B_.
1109 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P)
1110 (WINDOW_WANTS_MODELINE_P): Use B_.
1111 * syntax.h (Vstandard_syntax_table): Update.
1112 (CURRENT_SYNTAX_TABLE, SETUP_BUFFER_SYNTAX_TABLE): Use B_.
1113 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Update.
1114 (TEXT_PROP_MEANS_INVISIBLE): Use B_.
1115 * character.h (FETCH_CHAR_ADVANCE): Update.
1116 (INC_BOTH, ASCII_CHAR_WIDTH, DEC_BOTH): Use B_.
1117 * category.h (Vstandard_category_table): Update.
1118 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Update for change to field
1119 names.
1120 (DOWNCASE_TABLE, UPCASE_TABLE): Use B_.
1121 * buffer.c (swapfield_): New macro.
1122 (Fbuffer_swap_text): Use swapfield_ where appropriate.
1123 (Fbuffer_live_p, Fget_file_buffer, get_truename_buffer)
1124 (Fget_buffer_create, clone_per_buffer_values)
1125 (Fmake_indirect_buffer, reset_buffer)
1126 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1127 (Fbuffer_local_value, buffer_lisp_local_variables)
1128 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1129 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1130 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1131 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1132 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1133 (Fbuffer_swap_text, Fset_buffer_multibyte)
1134 (swap_out_buffer_local_variables, record_overlay_string)
1135 (overlay_strings, init_buffer_once, init_buffer, syms_of_buffer):
1136 Use B_.
1137 * buffer.h (struct buffer): Rename all Lisp_Object fields.
1138 (BUFFER_INTERNAL_FIELD, B_): New macro.
1139 (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE): Use B_.
1140
11412011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1142
1143 * gtkutil.c (xg_tool_bar_menu_proxy): Handle case when tool bar label
1144 is null.
1145
11462011-02-13 Jan Djärv <jan.h.d@swipnet.se>
1147
1148 * callproc.c (Fcall_process):
1149 * process.c (create_process): Replace Gtk with GConf in SIGPIPE
1150 comment.
1151
11522011-02-12 Martin Rudalics <rudalics@gmx.at>
1153
1154 * window.c (select_window): Check inhibit_point_swap argument when
1155 deciding whether to return immediately.
1156
11572011-02-12 Jan Djärv <jan.h.d@swipnet.se>
1158
1159 * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
1160 zero (Bug#7348).
1161
11622011-02-12 Chong Yidong <cyd@stupidchicken.com>
1163
1164 * config.in (TERMINFO): New definition.
1165
1166 * s/netbsd.h: Use it to choose between terminfo and termcap
1167 (Bug#7642).
1168
11692011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1170
1171 * md5.c (md5_process_bytes): Use sizeof, not __alignof__.
1172 The difference doesn't matter here, in practice, and sizeof is
1173 more portable to non-GCC compilers. Also, this makes the code
1174 match the already-existing comment.
1175
11762011-02-12 Andreas Schwab <schwab@linux-m68k.org>
1177
1178 * process.c (create_process): Reset SIGPIPE handler in the child.
1179 * callproc.c (Fcall_process): Likewise. (Bug#5238)
1180
11812011-02-12 Eli Zaretskii <eliz@gnu.org>
1182
1183 * xdisp.c <this_line_min_pos>: New variable.
1184 (move_it_in_display_line_to): Record in this_line_min_pos the
1185 smallest position iterated across.
1186 (display_line): Use this_line_min_pos to record the smallest
1187 position in the line even if it is not displayed due to
1188 hscrolling. (Bug#7939)
1189
11902011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1191
1192 Port to Sun C 5.11, which has __attribute__ ((__aligned (N))).
1193 * md5.h (ATTRIBUTE_ALIGNED): New macro.
1194 (struct md5_ctx): Use it.
1195
1196 Port to Solaris 10, which doesn't support FC_HINT_STYLE.
1197 * xftfont.c (FC_HINT_STYLE): #define to "hintstyle" if not
1198 defined.
1199 * xsettings.c (parse_settings, apply_xft_settings): Don't assume
1200 FC_HINT_STYLE is supported.
1201
12022011-02-11 Jan Djärv <jan.h.d@swipnet.se>
1203
1204 * xterm.c (x_set_frame_alpha): Access data before it is free:d.
1205 Make sure we don't do x_catch_errors twice.
1206
12072011-02-10 Glenn Morris <rgm@gnu.org>
1208
1209 * Makefile.in (really-lwlib): Depend on globals.h, for parallel builds.
1210
12112011-02-09 Eli Zaretskii <eliz@gnu.org>
1212
1213 * makefile.w32-in (GLOBAL_SOURCES, SOME_MACHINE_OBJECTS, obj):
1214 New macros.
1215 (globals.h, gl-stamp): New targets.
1216 (clean): Clean gl-stamp and globals.h.
1217
12182011-02-09 Andreas Schwab <schwab@linux-m68k.org>
1219
1220 * Makefile.in (gl-stamp): Create globals.h here.
1221 (globals.h): Don't do it here.
1222 (mostlyclean): Clean globals.h and gl-stamp.
1223
12242011-02-09 Paul Eggert <eggert@cs.ucla.edu>
1225
1226 * Makefile.in ($(otherobj)): Depend on globals.h.
1227 Otherwise 'make -j10' failed on my host, because the build lacked
1228 necessary dependencies, e.g., vm-limit.o depends on globals.h.
1229
12302011-02-08 Tom Tromey <tromey@redhat.com>
1231
1232 * Makefile.in (NS_OBJC_OBJ): New variable.
1233 (base_obj): Rename from 'obj'.
1234 (obj): New variable.
1235 (globals.h, gl-stamp, $(obj)): New targets.
1236 (GLOBAL_SOURCES): New variable.
1237 * globals.h: Remove.
1238 * nsselect.m (Vselection_alist): Define. Reverts part of
1239 2011-01-19T22:11:33Z!jan.h.d@swipnet.se.
1240 * buffer.c: Don't use "no_cell" for name of kill-buffer-hook's
1241 variable.
1242 * xselect.c (Vselection_alist): Define. Reverts part of 2011-01-19T23:32:42Z!eggert@cs.ucla.edu.
1243
12442011-02-08 Kenichi Handa <handa@m17n.org>
1245
1246 * font.c (Ffont_get): Do not cache :otf value.
1247
12482011-02-07 Paul Eggert <eggert@cs.ucla.edu>
1249
1250 conform to C89 pointer rules
1251
1252 * dired.c (scmp, file_name_completion):
1253 Change types between char * and unsigned char *, to satisfy C89
1254 rules about pointer type compatibility.
1255 * casefiddle.c (casify_object, casify_region): Likewise.
1256 * search.c (Freplace_match, Fregexp_quote): Likewise.
1257 * alloc.c (make_string, make_specified_string, make_pure_string):
1258 Likewise.
1259 * data.c (Fstring_to_number): Likewise.
1260 * print.c (float_to_string, PRINTFINISH, printchar, strout):
1261 (print_object): Likewise.
1262 * editfns.c (init_editfns, Fchar_to_string, Fbyte_to_string):
1263 (Fuser_full_name, Fsubst_char_in_region, Ftranslate_region_internal):
1264 (Fformat): Likewise.
1265 * callint.c (Fcall_interactively): Likewise.
1266 * fns.c (string_make_multibyte, string_to_multibyte):
1267 (string_make_unibyte, Fstring_as_unibyte, Fstring_to_unibyte):
1268 (Fbase64_encode_region, base64_encode_1, Fbase64_decode_region, Fmd5):
1269 Likewise.
1270 * lread.c (read1, hash_string): Likewise.
1271 * process.c (read_process_output, send_process, Fprocess_send_region):
1272 Likewise.
1273 * callproc.c (Fcall_process): Likewise.
1274 * doprnt.c (doprnt): Likewise.
1275 * indent.c (compute_motion): Likewise.
1276 * xfont.c (xfont_decode_coding_xlfd): Likewise.
1277 * ralloc.c (resize_bloc): Likewise.
1278 * image.c (tiff_load): Likewise.
1279 * xml.c (make_dom, parse_region): Likewise.
1280 * character.c (strwidth): Make its argument const char *, not const
1281 unsigned char *, since more callers prefer it that way. All callers
1282 changed.
1283
12842011-02-06 Paul Eggert <eggert@cs.ucla.edu>
1285
1286 * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.
1287 Emacs assumes two's complement elsewhere, but the assumption is
1288 easy to remove here, and this suppresses a warning with Sun C 5.8.
1289
1290 conform to C89 pointer rules
1291
1292 * xterm.c (x_draw_fringe_bitmap, handle_one_xevent, x_bitmap_icon):
1293 (same_x_server, x_term_init):
1294 Change types between char * and unsigned char *, to satisfy C89
1295 rules about pointer type compatibility.
1296 * doc.c (get_doc_string, Fsnarf_documentation):
1297 (Fsubstitute_command_keys): Likewise.
1298 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
1299 * bitmaps/gray.xbm (gray_bits): Likewise.
1300 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
1301 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
1302 Likewise.
1303 * keymap.c (Ftext_char_description): Likewise.
1304 * minibuf.c (Fread_buffer): Likewise.
1305 * fileio.c (IS_DRIVE) [defined WINDOWSNT]:
1306 (DRIVE_LETTER) [defined DOS_NT]:
1307 (report_file_error, Ffile_name_directory, Ffile_name_nondirectory):
1308 (make_temp_name, Fexpand_file_name, file_name_absolute_p):
1309 (search_embedded_absfilename, Fsubstitute_in_file_name):
1310 (barf_or_query_if_file_exists, Fmake_directory_internal):
1311 (Fdelete_directory_internal, Ffile_name_absolute_p, read_non_regular):
1312 (Finsert_file_contents, Fwrite_region):
1313 Likewise.
1314 * insdel.c (insert, insert_and_inherit, insert_before_markers):
1315 (insert_before_markers_and_inherit, insert_1, insert_1_both):
1316 Likewise. This changes these functions' signatures, which is
1317 more convenient since most callers use char *. All remaining
1318 callers changed.
1319 * editfns.c (general_insert_function): Change signature to
1320 match changes to insert functions' signatures.
1321 * keymap.c (map_keymap_char_table_item, map_keymap_internal):
1322 Use explicit cast when converting between void * and function pointer
1323 types, as C89 requires this.
1324
13252011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1326
1327 don't ignore chdir failure
1328 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
1329 failure and exit.
1330 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
1331 remaining unchecked chdir calls in this function; some DOS/NT
1332 expert needs to fix them.
1333 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
1334 in this function; some NextStep expert needs to fix them.
1335
13362011-02-05 Glenn Morris <rgm@gnu.org>
1337
1338 * xfaces.c (Finternal_set_lisp_face_attribute):
1339 Try to clarify some error messages. (Bug#2659)
1340
13412011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1342
1343 * editfns.c (save_restriction_restore): Don't forget to invalidate the
1344 current_column cache (bug#7946).
1345
13462011-02-05 Kenichi Handa <handa@m17n.org>
1347
1348 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
1349
1350 * xftfont.c (xftfont_open): Likewise.
1351
13522011-02-05 Andreas Schwab <schwab@linux-m68k.org>
1353
1354 * window.c (Fselect_window): Add missing return value.
1355
13562011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1357
1358 xstrcasecmp: conform to C89 pointer rules
1359 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
1360 to const char *, since they're usually low-level C strings, and
1361 this stays compatible with C89 pointer rules. All callers changed.
1362
1363 * charset.c: Conform to C89 pointer rules.
1364 (define_charset_internal): Switch between char * and unsigned char *.
1365
1366 * xmenu.c: Conform to C89 const rules.
1367 (xmenu_show, xdialog_show): Declare local var as char *, not
1368 const char *, to stay compatible with C89 const rules.
1369
1370 * xdisp.c: Conform to C89 pointer rules.
1371 (store_mode_line_noprop, display_string, reseat_to_string):
1372 (c_string_pos, number_of_chars, message_dolog):
1373 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
1374 (display_mode_element, display_string):
1375 Switch between char * and unsigned char * to stay compatible wth
1376 C89 pointer rules.
1377
1378 * regex.c: Conform to C89 pointer rules.
1379 (re_wctype): Add cast, as C89 does not allow assigning between
1380 char * and unsigned char *.
1381 (regex_compile): Likewise.
1382
1383 sync from gnulib to remove HAVE_STDBOOL_H
1384 * config.in: Regenerate.
1385
13862011-02-04 Eli Zaretskii <eliz@gnu.org>
1387
1388 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
1389 Replace all uses of lisp.h with $(LISP_H), and all uses of
1390 process.h with $(PROCESS_H).
1391 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
1392 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
1393
1394 * deps.mk: Update for recent changes: gnutls support, gnulib
1395 imports, addition of globals.h.
1396
1397 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
1398 ../lib/ignore-value.h.
1399
14002011-02-03 Paul Eggert <eggert@cs.ucla.edu>
1401
1402 allow C code to suppress warnings about ignored return values
1403
1404 We need to go through the code and for each such warning, either
1405 fix the code to pay attention to the returned value, or tell GCC
1406 that we really do want to ignore the returned value. Here is one
1407 example of how to do the latter.
1408 * sysdep.c: Include <ignore-value.h>.
1409 (sys_subshell): Suppress an undesirable warning about not checking
1410 the returned value of 'write', as there's nothing useful one can
1411 do with that returned value.
1412
14132011-02-03 Jan Djärv <jan.h.d@swipnet.se>
1414
1415 * xterm.c (x_connection_closed): Remove all calls that calls
1416 XSync (Bug#7949).
1417
14182011-02-01 Eli Zaretskii <eliz@gnu.org>
1419
1420 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
1421 TIFFClientOpen.
1422
14232011-02-01 Jan Djärv <jan.h.d@swipnet.se>
1424
1425 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
1426 (x_session_check_input): Change args and return type so it can be used
1427 as argument to add_read_fd. Make static. Remove call to select.
1428 Call kbd_buffer_store_event for emacs_event.
1429 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
1430 (ice_conn_watch_CB): Call add_read_fd.
1431
1432 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
1433 x_session_check_input.
1434 (x_session_initialized): Remove definition.
1435 (x_initialize): Remove setting of x_session_initialized.
1436
1437 * xterm.h (x_session_check_input): Remove declaration.
1438
14392011-02-01 Paul Eggert <eggert@cs.ucla.edu>
1440
1441 format-time-string now supports subsecond time stamp resolution
1442 * editfns.c (emacs_nmemftime): Rename from emacs_memftimeu,
1443 for consistency with its new argument and with gnulib nstrftime.
1444 All callers changed. New argument NS.
1445 (Fformat_time_string): Check that the time argument's microseconds
1446 component, if any, is in range; this avoids integer overflow and
1447 also nstrftime needs this. Document %N.
1448
14492011-01-31 Andreas Schwab <schwab@linux-m68k.org>
1450
1451 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
1452 of int. All uses adjusted.
1453 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
1454 (svg_load_image): Remove casts.
1455
14562011-01-31 Chong Yidong <cyd@stupidchicken.com>
1457
1458 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
1459 function definitions for compiling with libpng-1.5.
1460 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
1461 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
1462 (Bug#7908).
1463
14642011-01-31 Eli Zaretskii <eliz@gnu.org>
1465
1466 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
1467
1468 * makefile.w32-in (OBJ2): Remove strftime.$(O).
1469 ($(BLD)/strftime.$(O)): Remove prerequisites.
1470
14712011-01-31 Paul Eggert <eggert@cs.ucla.edu>
1472
1473 src/emacs.c now gets version number from configure.in
1474 * emacs.c (emacs_version): Set to VERSION so that it
1475 is determined automatically from ../configure.in.
1476
14772011-01-31 Jim Meyering <meyering@redhat.com>
1478
1479 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
1480 Use xmalloc rather than malloc.
1481
14822011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1483
1484 strftime: import from gnulib
1485 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
1486 * deps.mk (strftime.o): Remove.
1487 * editfns.c: Include <strftime.h>, supplied by gnulib.
1488 (emacs_strftimeu): Remove decl.
1489 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
1490 emacs_strftimeu.
1491 * config.in: Regenerate.
1492 * strftime.c: Remove; we now use strftime from gnulib.
1493
1494 Use SSDATA when the context wants char *.
1495 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
1496 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
1497 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
1498 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
1499 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
1500 Use SSDATA (not SDATA) when the context of the expression wants
1501 char * (not unsigned char *).
1502
15032011-01-30 Jan Djärv <jan.h.d@swipnet.se>
1504
1505 * .gdbinit: Read global lisp variables as globals.f_V*.
1506
15072011-01-30 Andreas Schwab <schwab@linux-m68k.org>
1508
1509 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
1510 All uses changed.
1511 (PROP_SAVE): Likewise.
1512
15132011-01-29 Chong Yidong <cyd@stupidchicken.com>
1514
1515 * keyboard.c (make_lispy_position): Fix typo in last change
1516 (Bug#7935).
1517
15182011-01-29 Eli Zaretskii <eliz@gnu.org>
1519
1520 * s/ms-w32.h (HAVE_MKTIME): Remove.
1521
1522 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
1523 (GNULIB): New variable.
1524 (LIBS): Add $(GNULIB).
1525 $(TEMACS): Depend on $(GNULIB).
1526 <top-level>: Fix font-lock disrupted by a lone `"'.
1527
15282011-01-29 Jan Djärv <jan.h.d@swipnet.se>
1529
1530 * nsselect.m (ns_string_from_pasteboard): Get length of string
1531 and use make_string instead of build_string (Bug#7934).
1532 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
1533 instead of stringWithUTF8String (Bug#7934).
1534
15352011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
1536
1537 * nsfont.m (nsfont_open): Ensure that fonts with inexact
1538 descenders would not become one pixel too tall (Bug#7887).
1539
15402011-01-28 Chong Yidong <cyd@stupidchicken.com>
1541
1542 * keyboard.c (make_lispy_position): For clicks on right fringe or
1543 margin, compute text position using the X coordinate relative to
1544 the left of the text area (Bug#7839).
1545
15462011-01-28 Kenichi Handa <handa@m17n.org>
1547
1548 * ftfont.c (ftfont_spec_pattern): Check each extra property
1549 value.
1550
15512011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1552
1553 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
1554
15552011-01-27 Chong Yidong <cyd@stupidchicken.com>
1556
1557 * font.c (font_parse_fcname): Undefine a temporary macro.
1558
15592011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1560
1561 Let the debugger continue to the normal handler (bug#7825).
1562 * eval.c (maybe_call_debugger): Declare before new use.
1563 (find_handler_clause): Don't call debugger any more.
1564 Ignore Vstack_trace_on_error.
1565 Use XCAR/XCDR.
1566 (syms_of_eval): Remove Vstack_trace_on_error.
1567 (Fsignal): Only modify handlerlist when we know we need to do it.
1568 Call the debugger when necessary.
1569 * globals.h (Vstack_trace_on_error): Remove.
1570
15712011-01-26 Chong Yidong <cyd@stupidchicken.com>
1572
1573 * font.c (font_parse_fcname): Rewrite GTK font name parser.
1574
15752011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
1576
1577 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
1578 the buffer's point-max (bug#7876).
1579
15802011-01-25 Chong Yidong <cyd@stupidchicken.com>
1581
1582 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
1583 Remove unused case (Bug#6811).
1584
15852011-01-23 Jan Djärv <jan.h.d@swipnet.se>
1586
1587 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
1588 setFrameTopLeftPoint is constrained.
1589
15902011-01-23 Paul Eggert <eggert@cs.ucla.edu>
1591
1592 Check return values of some library calls.
1593 * emacs.c (main): Check dup result.
1594 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
1595 (frame_name_fnn_p): Check strtol result.
1596
1597 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
1598 when calling XpmCreatePixmapFromData.
1599
1600 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
1601 * lisp.h (SSDATA): New macro.
1602 All uses of (char *) SDATA (x) replaced with SSDATA (x),
1603 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
1604 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
1605 * xsmfns.c (SSDATA): Likewise.
1606
16072011-01-22 Martin Rudalics <rudalics@gmx.at>
1608
1609 * window.c (select_window): New function.
1610 (Fselect_window): Call it.
1611 (inhibit_point_swap): Variable deleted.
1612 (Fset_window_configuration): Call select_window directly.
1613
16142011-01-22 Jan Djärv <jan.h.d@swipnet.se>
1615
1616 * nsterm.m (constrainFrameRect): Only constrain the first time called.
1617
16182011-01-21 Jan Djärv <jan.h.d@swipnet.se>
1619
1620 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
1621 screen, not the window screen.
1622 (x_set_window_size): Remove constraints.
1623 Calculate origin.y only if zooming is 0 and without referring to a
1624 screen.
1625 (windowWillResize): Don't modify frameSize.
1626 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
1627 (initFrameFromEmacs): Initialize ns_userRect.
1628 (windowShouldZoom): Set zooming to one. Remove all other code.
1629 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
1630 Zero it after restore.
1631 (constrainFrameRect): New method for EmacsWindow.
1632 (mouseDragged): Always post NSWindowDidResizeNotification after call to
1633 windowWillResize.
1634
1635 * nsterm.h (ns_output): Add dont_constrain and zooming.
1636 (EmacsView): Add ns_userRect.
1637
1638 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
1639 if ns_alternate_modifier is none.
1640
16412011-01-20 Jan Djärv <jan.h.d@swipnet.se>
1642
1643 * unexmacosx.c: Add comment about include order.
1644
16452011-01-20 Glenn Morris <rgm@gnu.org>
1646
1647 * minibuf.c (syms_of_minibuf) <read-expression-history>:
1648 Give it a doc string.
1649 * globals.h: Add Vread_expression_history.
1650
1651 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
1652 Give it a doc string.
1653 * globals.h: Add Vkbd_macro_termination_hook.
1654
16552011-01-20 Chong Yidong <cyd@stupidchicken.com>
1656
1657 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
1658
16592011-01-19 Paul Eggert <eggert@cs.ucla.edu>
1660
1661 Fix X11 compilation failure.
1662 * globals.h (struct emacs_globals): Document f_Vselection_alist.
1663 * xselect.c (Vselection_alist): Remove declaration, moving its
1664 documentation to globals.h. This fixes a compilation failure
1665 induced by the earlier change to globals.h today.
1666
16672011-01-19 Jan Djärv <jan.h.d@swipnet.se>
1668
1669 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
1670
1671 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
1672 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
1673 (ns_input_spi_name, ns_input_spi_arg)
1674 (ns_alternate_modifier, ns_right_alternate_modifier)
1675 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
1676 (ns_right_control_modifier, ns_function_modifier)
1677 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
1678 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
1679 (x_underline_at_descent_line): Remove declaration.
1680 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
1681
1682 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks)
1683 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
1684 (syms_of_nsselect): Remove & from DEFVAR_LISP.
1685
1686 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
1687 Remove declaration.
1688
1689 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
1690 globals.h.
1691 (syms_of_nsfont): Remove & from DEFVAR_LISP.
1692
1693 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
1694 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
1695 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
1696
1697 * globals.h (struct emacs_globals): Add f_ns_input_file,
1698 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
1699 f_ns_input_color, f_ns_input_text, f_ns_working_text,
1700 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
1701 f_ns_right_alternate_modifier, f_ns_command_modifier,
1702 f_ns_right_command_modifier, f_ns_control_modifier,
1703 f_ns_right_control_modifier, f_ns_function_modifier,
1704 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
1705 f_Vns_version_string, f_Vns_sent_selection_hooks,
1706 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
1707 and corresponding defines.
1708
17092011-01-19 Sam Steingold <sds@gnu.org>
1710
1711 * w32.c (check_windows_init_file): Remove declarations of
1712 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
1713 * w32fns.c: Fix an error introduced by the previous patch.
1714
17152011-01-19 Tom Tromey <tromey@redhat.com>
1716
1717 * window.c: Fix error introduced by previous patch.
1718
17192011-01-18 Tom Tromey <tromey@parfait>
1720
1721 * globals.h: New file.
1722 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
1723 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
1724 (Vwindow_system_version): Remove declaration.
1725 * w32term.h (Vw32_enable_palette)
1726 (Vx_pixel_size_width_font_regexp): Remove declaration.
1727 * w32menu.c (Voverriding_local_map)
1728 (Voverriding_local_map_menu_flag): Remove declaration.
1729 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
1730 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
1731 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
1732 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
1733 (Vw32_phantom_key_code, Vw32_recognize_altgr)
1734 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
1735 (w32_use_full_screen_buffer): Remove declaration.
1736 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
1737 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
1738 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
1739 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
1740 (no_redraw_on_reenter, visible_bell): Remove declaration.
1741 * sysdep.c (Vsystem_name): Remove declaration.
1742 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
1743 * menu.h (Vmenu_updating_frame): Remove declaration.
1744 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
1745 Remove declaration.
1746 * lisp.h (Vafter_init_time, Vafter_load_alist)
1747 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
1748 (Vcompletion_regexp_list, Vcurrent_load_list)
1749 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
1750 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
1751 (Vexec_directory, Vexec_path, Vexec_suffixes)
1752 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
1753 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
1754 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
1755 (Vinstallation_directory, Vinvocation_directory)
1756 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
1757 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
1758 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
1759 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
1760 (Vscalable_fonts_allowed, Vselect_active_regions)
1761 (Vshell_file_name, Vstandard_input, Vstandard_output)
1762 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
1763 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
1764 (Vuser_login_name, Vwindow_scroll_functions)
1765 (Vwindow_system_version, Vx_no_window_manager)
1766 (Vx_resource_class, Vx_resource_name, baud_rate)
1767 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
1768 (history_delete_duplicates, inhibit_x_resources)
1769 (last_nonmenu_event, load_in_progress, max_specpdl_size)
1770 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
1771 (use_dialog_box, use_file_dialog): Remove declaration.
1772 Include globals.h.
1773 * keymap.h (Voverriding_local_map)
1774 (Voverriding_local_map_menu_flag, meta_prefix_char):
1775 Remove declaration.
1776 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
1777 (Vinput_method_function, Vkey_translation_map)
1778 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
1779 (do_mouse_tracking, extra_keyboard_modifiers)
1780 (num_nonmacro_input_events): Remove declaration.
1781 * intervals.h (Vchar_property_alias_alist)
1782 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
1783 (Vtext_property_default_nonsticky): Remove declaration.
1784 * gtkutil.h (x_gtk_file_dialog_help_text)
1785 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
1786 (x_gtk_whole_detached_tool_bar): Remove declaration.
1787 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
1788 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
1789 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
1790 (focus_follows_mouse): Remove declaration.
1791 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
1792 (Vignore_relative_composition, Votf_script_alist)
1793 (Vuse_default_ascent, Vvertical_centering_font_regexp):
1794 Remove declaration.
1795 * font.h (Vfont_log): Remove declaration.
1796 * dosfns.h (Vdos_display_scancodes, Vdos_version)
1797 (Vdos_windows_version, dos_codepage, dos_country_code)
1798 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
1799 (dos_keypad_mode, dos_super_key, dos_timezone_offset):
1800 Remove declaration.
1801 * disptab.h (Vglyph_table, Vstandard_display_table):
1802 Remove declaration.
1803 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
1804 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
1805 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
1806 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
1807 (inverse_video, mode_line_in_non_selected_windows)
1808 (tool_bar_button_relief, tool_bar_max_label_size)
1809 (underline_minimum_offset)
1810 (unibyte_display_via_language_environment, x_stretch_cursor_p):
1811 Remove declaration.
1812 * composite.h (Vauto_composition_function)
1813 (Vcomposition_function_table): Remove declaration.
1814 * commands.h (Vexecuting_kbd_macro)
1815 (Vminibuffer_local_completion_map)
1816 (Vminibuffer_local_filename_completion_map)
1817 (Vminibuffer_local_filename_must_match_map)
1818 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
1819 (Vminibuffer_local_ns_map, Vthis_command)
1820 (Vunread_command_events, cursor_in_echo_area)
1821 (last_command_event, last_nonmenu_event, unread_command_char):
1822 Remove declaration.
1823 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
1824 (Vdefault_file_name_coding_system)
1825 (Vdefault_process_coding_system, Vfile_name_coding_system)
1826 (Vlast_coding_system_used, Vlocale_coding_system)
1827 (Vselect_safe_coding_system_function)
1828 (Vtranslation_table_for_input, coding_system_require_warning)
1829 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
1830 (eol_mnemonic_unix, inherit_process_coding_system):
1831 Remove declaration.
1832 * charset.h (Vcharset_list, Vcurrent_iso639_language):
1833 Remove declaration.
1834 * character.h (Vauto_fill_chars, Vchar_direction_table)
1835 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
1836 (Vscript_representative_chars, Vtranslation_table_vector)
1837 (Vunicode_category_table): Remove declaration.
1838 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
1839 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
1840 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
1841 (inhibit_modification_hooks): Remove declaration.
1842 * xterm.c (syms_of_xterm): Update.
1843 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
1844 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
1845 (x_mouse_click_focus_ignore_position)
1846 (x_underline_at_descent_line)
1847 (x_use_underline_position_properties): Remove.
1848 * xsmfns.c (syms_of_xsmfns): Update.
1849 (Vx_session_id, Vx_session_previous_id): Remove.
1850 * xsettings.c (syms_of_xsettings): Update.
1851 (Vxft_settings, use_system_font): Remove.
1852 * xselect.c (syms_of_xselect): Update.
1853 (Vselection_converter_alist, Vx_lost_selection_functions)
1854 (Vx_sent_selection_functions, x_selection_timeout): Remove.
1855 * xfns.c (syms_of_xfns): Update.
1856 (Vgtk_version_string, Vmotif_version_string)
1857 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
1858 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
1859 (Vx_no_window_manager, Vx_nontext_pointer_shape)
1860 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
1861 (Vx_sensitive_text_pointer_shape)
1862 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
1863 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
1864 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
1865 Remove.
1866 * xfaces.c (syms_of_xfaces): Update.
1867 (Vface_default_stipple, Vface_font_rescale_alist)
1868 (Vface_ignored_fonts, Vface_new_frame_defaults)
1869 (Vface_remapping_alist, Vfont_list_limit)
1870 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
1871 * xdisp.c (syms_of_xdisp): Update.
1872 (Vauto_resize_tool_bars, Vblink_cursor_alist)
1873 (Vdisplay_pixels_per_inch, Vfontification_functions)
1874 (Vframe_title_format, Vglobal_mode_string)
1875 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
1876 (Vicon_title_format, Vinhibit_redisplay)
1877 (Vline_number_display_limit, Vline_prefix)
1878 (Vmax_mini_window_height, Vmenu_bar_update_hook)
1879 (Vmenu_updating_frame, Vmessage_log_max)
1880 (Vmouse_autoselect_window, Vnobreak_char_display)
1881 (Voverlay_arrow_position, Voverlay_arrow_string)
1882 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
1883 (Vresize_mini_windows, Vshow_trailing_whitespace)
1884 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
1885 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
1886 (Vwindow_scroll_functions, Vwindow_size_change_functions)
1887 (Vwindow_text_change_functions, Vwrap_prefix)
1888 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
1889 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
1890 (highlight_nonselected_windows, hscroll_margin)
1891 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
1892 (inhibit_menubar_update, inhibit_try_cursor_movement)
1893 (inhibit_try_window_id, inhibit_try_window_reusing)
1894 (line_number_display_limit_width)
1895 (make_cursor_line_fully_visible_p, message_truncate_lines)
1896 (mode_line_inverse_video, multiple_frames, overline_margin)
1897 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
1898 (tool_bar_max_label_size, underline_minimum_offset)
1899 (unibyte_display_via_language_environment, x_stretch_cursor_p):
1900 Remove.
1901 * window.c (syms_of_window): Update.
1902 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
1903 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
1904 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
1905 (Vwindow_point_insertion_type, auto_window_vscroll_p)
1906 (mode_line_in_non_selected_windows, next_screen_context_lines)
1907 (window_min_height, window_min_width): Remove.
1908 (scroll_margin): Remove declaration.
1909 * w32term.c (syms_of_w32term): Update.
1910 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
1911 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
1912 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
1913 (w32_use_visible_system_caret, x_underline_at_descent_line)
1914 (x_use_underline_position_properties): Remove.
1915 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
1916 Remove declaration.
1917 * w32select.c (syms_of_w32select): Update.
1918 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
1919 * w32proc.c (syms_of_ntproc): Update.
1920 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
1921 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
1922 (Vw32_start_process_inherit_error_mode)
1923 (Vw32_start_process_share_console)
1924 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
1925 (Vsystem_name): Remove declaration.
1926 * w32font.c (syms_of_w32font): Update.
1927 (Vw32_charset_info_alist): Remove.
1928 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
1929 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
1930 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
1931 (Vw32_enable_palette, Vw32_lwindow_modifier)
1932 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
1933 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
1934 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
1935 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
1936 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
1937 (Vx_no_window_manager, Vx_nontext_pointer_shape)
1938 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
1939 (Vx_sensitive_text_pointer_shape)
1940 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
1941 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
1942 (w32_mouse_move_interval)
1943 (w32_pass_extra_mouse_buttons_to_system)
1944 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
1945 (w32_strict_fontnames, w32_strict_painting): Remove.
1946 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
1947 (Vw32_recognize_altgr, Vwindow_system_version)
1948 (w32_num_mouse_buttons, w32_use_visible_system_caret):
1949 Remove declaration.
1950 * w32console.c (syms_of_ntterm): Update.
1951 (w32_use_full_screen_buffer): Remove.
1952 (Vtty_defined_color_alist): Remove declaration.
1953 * w16select.c (syms_of_win16select): Update.
1954 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
1955 * undo.c (syms_of_undo): Update.
1956 (Vundo_outer_limit, Vundo_outer_limit_function)
1957 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
1958 Remove.
1959 * textprop.c (syms_of_textprop): Update.
1960 (Vchar_property_alias_alist, Vdefault_text_properties)
1961 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
1962 Remove.
1963 * terminal.c (syms_of_terminal): Update.
1964 (Vdelete_terminal_functions, Vring_bell_function): Remove.
1965 * term.c (syms_of_term): Update.
1966 (Vresume_tty_functions, Vsuspend_tty_functions)
1967 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
1968 Remove.
1969 * syntax.c (syms_of_syntax): Update.
1970 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
1971 (open_paren_in_column_0_is_defun_start)
1972 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
1973 (words_include_escapes): Remove.
1974 * search.c (syms_of_search): Update.
1975 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
1976 * process.c (syms_of_process): Update.
1977 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
1978 (delete_exited_processes): Remove.
1979 * print.c (syms_of_print): Update.
1980 (Vfloat_output_format, Vprint_charset_text_property)
1981 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
1982 (Vprint_length, Vprint_level, Vprint_number_table)
1983 (Vstandard_output, print_escape_multibyte)
1984 (print_escape_newlines, print_escape_nonascii, print_quoted):
1985 Remove.
1986 * msdos.c (syms_of_msdos): Update.
1987 (Vdos_unsupported_char_glyph): Remove.
1988 (unibyte_display_via_language_environment): Remove declaration.
1989 * minibuf.c (syms_of_minibuf): Update.
1990 (Vcompletion_regexp_list, Vhistory_add_new_input)
1991 (Vhistory_length, Vminibuffer_completing_file_name)
1992 (Vminibuffer_completion_confirm)
1993 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
1994 (Vminibuffer_exit_hook, Vminibuffer_help_form)
1995 (Vminibuffer_history_position, Vminibuffer_history_variable)
1996 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
1997 (Vread_buffer_function, Vread_expression_map)
1998 (completion_ignore_case, enable_recursive_minibuffers)
1999 (history_delete_duplicates, minibuffer_allow_text_properties)
2000 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
2001 Remove.
2002 * marker.c (syms_of_marker): Update.
2003 (byte_debug_flag): Remove.
2004 * macros.c (syms_of_macros): Update.
2005 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
2006 * lread.c (syms_of_lread): Update.
2007 (Vafter_load_alist, Vbyte_boolean_vars)
2008 (Vbytecomp_version_regexp, Vcurrent_load_list)
2009 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
2010 (Vload_history, Vload_path, Vload_read_function)
2011 (Vload_source_file_function, Vload_suffixes, Vobarray)
2012 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
2013 (Vread_symbol_positions_list, Vread_with_symbol_positions)
2014 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
2015 (force_load_messages, load_convert_to_unibyte)
2016 (load_dangerous_libraries, load_force_doc_strings)
2017 (load_in_progress): Remove.
2018 * keymap.c (syms_of_keymap): Update.
2019 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
2020 (Vminibuffer_local_completion_map)
2021 (Vminibuffer_local_filename_completion_map)
2022 (Vminibuffer_local_filename_must_match_map)
2023 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2024 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
2025 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
2026 Remove.
2027 * keyboard.c (syms_of_keyboard): Update.
2028 (Vauto_save_timeout, Vcommand_error_function)
2029 (Vcommand_hook_internal, Vdeactivate_mark)
2030 (Vdeferred_action_function, Vdeferred_action_list)
2031 (Vdisable_point_adjustment, Vdouble_click_time)
2032 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
2033 (Vfunction_key_map, Vglobal_disable_point_adjustment)
2034 (Vhelp_char, Vhelp_event_list, Vhelp_form)
2035 (Vinput_method_function, Vinput_method_previous_message)
2036 (Vkey_translation_map, Vlast_event_frame)
2037 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
2038 (Vminibuffer_message_timeout, Voverriding_local_map)
2039 (Voverriding_local_map_menu_flag, Vpost_command_hook)
2040 (Vpre_command_hook, Vprefix_help_command)
2041 (Vsaved_region_selection, Vselect_active_regions)
2042 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
2043 (Vthis_command, Vthis_command_keys_shift_translated)
2044 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
2045 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
2046 (Vtty_erase_char, Vunread_command_events)
2047 (Vunread_input_method_events, Vunread_post_input_method_events)
2048 (auto_save_interval, cannot_suspend, do_mouse_tracking)
2049 (double_click_fuzz, extra_keyboard_modifiers)
2050 (inhibit_local_menu_bar_menus, last_command_event)
2051 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
2052 (menu_prompting, meta_prefix_char, num_input_keys)
2053 (num_nonmacro_input_events, polling_period, unread_command_char):
2054 Remove.
2055 * insdel.c (syms_of_insdel): Update.
2056 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
2057 * indent.c (syms_of_indent): Update.
2058 (indent_tabs_mode): Remove.
2059 * image.c (syms_of_image): Update.
2060 (Vimage_cache_eviction_delay, Vimage_types)
2061 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
2062 (cross_disabled_images): Remove.
2063 * fringe.c (syms_of_fringe): Update.
2064 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
2065 * frame.c (syms_of_frame): Update.
2066 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
2067 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
2068 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
2069 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
2070 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
2071 Remove.
2072 * fontset.c (syms_of_fontset): Update.
2073 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
2074 (Vfontset_alias_alist, Vignore_relative_composition)
2075 (Votf_script_alist, Vuse_default_ascent)
2076 (Vvertical_centering_font_regexp): Remove.
2077 * font.c (syms_of_font): Update.
2078 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
2079 (Vfont_weight_table, Vfont_width_table): Remove.
2080 * fns.c (syms_of_fns): Update.
2081 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
2082 * filelock.c (syms_of_filelock): Update.
2083 (Vtemporary_file_directory): Remove.
2084 * fileio.c (syms_of_fileio): Update.
2085 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
2086 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
2087 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
2088 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
2089 (Vinhibit_file_name_operation, Vset_auto_coding_function)
2090 (Vwrite_region_annotate_functions)
2091 (Vwrite_region_annotations_so_far)
2092 (Vwrite_region_post_annotation_function)
2093 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
2094 (Vw32_get_true_file_attributes): Remove declaration.
2095 * eval.c (syms_of_eval): Update.
2096 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
2097 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
2098 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
2099 (debug_on_next_call, debug_on_quit, debugger_may_continue)
2100 (max_lisp_eval_depth, max_specpdl_size): Remove.
2101 * emacs.c (syms_of_emacs): Update.
2102 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
2103 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
2104 (Vinstallation_directory, Vinvocation_directory)
2105 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
2106 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
2107 (Vsystem_configuration, Vsystem_configuration_options)
2108 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
2109 (inhibit_x_resources, noninteractive1): Remove.
2110 * editfns.c (syms_of_editfns): Update.
2111 (Vbuffer_access_fontified_property)
2112 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
2113 (Voperating_system_release, Vsystem_name, Vuser_full_name)
2114 (Vuser_login_name, Vuser_real_login_name): Remove.
2115 * dosfns.c (syms_of_dosfns): Update.
2116 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
2117 (dos_codepage, dos_country_code, dos_decimal_point)
2118 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
2119 (dos_super_key, dos_timezone_offset): Remove.
2120 * doc.c (syms_of_doc): Update.
2121 (Vbuild_files, Vdoc_file_name): Remove.
2122 * dispnew.c (syms_of_display): Update.
2123 (Vglyph_table, Vinitial_window_system)
2124 (Vredisplay_preemption_period, Vstandard_display_table)
2125 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
2126 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
2127 * dired.c (syms_of_dired): Update.
2128 (Vcompletion_ignored_extensions): Remove.
2129 (Vw32_get_true_file_attributes): Remove declaration.
2130 * dbusbind.c (syms_of_dbusbind): Update.
2131 (Vdbus_debug, Vdbus_registered_buses)
2132 (Vdbus_registered_objects_table): Remove.
2133 * data.c (syms_of_data): Update.
2134 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
2135 * composite.c (syms_of_composite): Update.
2136 (Vauto_composition_function, Vauto_composition_mode)
2137 (Vcompose_chars_after_function, Vcomposition_function_table):
2138 Remove.
2139 * coding.c (syms_of_coding): Update.
2140 (Vcharset_revision_table, Vcoding_category_list)
2141 (Vcoding_system_alist, Vcoding_system_for_read)
2142 (Vcoding_system_for_write, Vcoding_system_list)
2143 (Vdefault_process_coding_system, Venable_character_translation)
2144 (Vfile_coding_system_alist, Vlast_code_conversion_error)
2145 (Vlast_coding_system_used, Vlatin_extra_code_table)
2146 (Vlocale_coding_system, Vnetwork_coding_system_alist)
2147 (Vprocess_coding_system_alist)
2148 (Vselect_safe_coding_system_function)
2149 (Vstandard_translation_table_for_decode)
2150 (Vstandard_translation_table_for_encode)
2151 (Vtranslation_table_for_input, coding_system_require_warning)
2152 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2153 (eol_mnemonic_unix, inherit_process_coding_system)
2154 (inhibit_eol_conversion, inhibit_iso_escape_detection)
2155 (inhibit_null_byte_detection): Remove.
2156 * cmds.c (syms_of_cmds): Update.
2157 (Vpost_self_insert_hook): Remove.
2158 * charset.c (syms_of_charset): Update.
2159 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
2160 (inhibit_load_charset_map): Remove.
2161 * character.c (syms_of_character): Update.
2162 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
2163 (Vchar_width_table, Vprintable_chars)
2164 (Vscript_representative_chars, Vtranslation_table_vector)
2165 (Vunicode_category_table): Remove.
2166 * ccl.c (syms_of_ccl): Update.
2167 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
2168 (Vtranslation_hash_table_vector): Remove.
2169 * category.c (syms_of_category): Update.
2170 (Vword_combining_categories, Vword_separating_categories): Remove.
2171 * callproc.c (syms_of_callproc): Update.
2172 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
2173 (Vexec_directory, Vexec_path, Vexec_suffixes)
2174 (Vinitial_environment, Vprocess_environment)
2175 (Vshared_game_score_directory, Vshell_file_name): Remove.
2176 * callint.c (syms_of_callint): Update.
2177 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
2178 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
2179 * bytecode.c (syms_of_bytecode): Update.
2180 (Vbyte_code_meter, byte_metering_on): Remove.
2181 * buffer.c (syms_of_buffer): Update.
2182 (Vafter_change_functions, Vbefore_change_functions)
2183 (Vchange_major_mode_hook, Vfirst_change_hook)
2184 (Vinhibit_read_only, Vkill_buffer_query_functions)
2185 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
2186 * alloc.c (syms_of_alloc): Update.
2187 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
2188 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
2189 (cons_cells_consed, floats_consed, garbage_collection_messages)
2190 (gc_cons_threshold, gcs_done, intervals_consed)
2191 (misc_objects_consed, pure_bytes_used, string_chars_consed)
2192 (strings_consed, symbols_consed, vector_cells_consed): Remove.
2193
2194 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
2195 (DEFVAR_INT): Assume global is in `globals'.
2196 * alloc.c (globals): Define.
2197
21982011-01-18 Tom Tromey <tromey@redhat.com>
2199
2200 * image.c (Vimagemagick_render_type): Remove redundant
2201 definition.
2202
22032011-01-18 Tom Tromey <tromey@redhat.com>
2204
2205 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
2206 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
2207 (redisplay_window): Update.
2208 (syms_of_xdisp): Update.
2209
22102011-01-18 Tom Tromey <tromey@redhat.com>
2211
2212 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
2213 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
2214 Declare.
2215 * gtkutil.c (xg_uses_old_file_dialog):
2216 (xg_get_file_with_chooser):
2217 (xg_tool_bar_detach_callback): Don't redeclare globals.
2218
22192011-01-18 Tom Tromey <tromey@redhat.com>
2220
2221 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
2222 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
2223
22242011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2225
2226 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
2227 defined __GNUC__. ../configure now checks for this GCC feature,
2228 which is now also supported by IBM and Oracle compilers.
2229 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
2230 since Solaris malloc returns mult-of-8.
2231
22322011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2233
2234 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
2235
22362011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2237
2238 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
2239 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
2240 * data.c (Fnumber_to_string): Use it.
2241 * print.c (float_to_string, print_object): Likewise.
2242
2243 Include <unistd.h> unilaterally.
2244 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
2245 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
2246 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
2247 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
2248 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
2249 * xterm.c:
2250 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
2251 unistd.h is always present now, possibly supplied by gnulib.
2252
2253 * mktime.c: Remove; moving to ../lib.
2254
2255 Use gnulib's mktime module.
2256 * deps.mk (mktime.o): Remove rule.
2257
2258 Use gnulib's ftoastr module.
2259 * print.c: Include ftoastr.h.
2260 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
2261 Remove; no longer needed.
2262 (float_to_string): Use dtoastr rather than rolling our own code,
2263 which had an off-by-one bug on non-IEEE hosts.
2264
2265 Automate syncing from gnulib.
2266 * Makefile.in (lib): New macro.
2267 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
2268 ($(lib)/libgnu.a): New rule.
2269 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
2270
2271 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
2272 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
2273 so change the type of 'ign' to unsigned int from int.
2274
2275 * regex.c (analyse_first): Remove unreachable 'continue' statement.
2276
2277 * xterm.h (struct x_display_info): Remove stray semicolon.
2278 The extra semicolon didn't conform to the C standard.
2279 Problem reported by Sun cc.
2280
2281 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
2282 These changes make compilation easier to follow with Sun cc.
2283 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
2284 EMACS_INT values without provoking overflow diagnostics.
2285 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
2286 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
2287 diagnostic with signed left shift.
2288
2289 * fileio.c (make_temp_name): Remove unreachable code.
2290
2291 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
2292 Previously it was marked by preceding it with "return;", but
2293 Sun cc complains about this.
2294
2295 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
2296 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
2297 which fixed Bug#2370. Caught by Sun cc.
2298
22992011-01-15 Martin Rudalics <rudalics@gmx.at>
2300
2301 * window.c (inhibit_point_swap): New variable.
2302 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
2303 point this time.
2304 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
2305 of setting selected_window to nil (Bug#7728).
2306
23072011-01-11 Tassilo Horn <tassilo@member.fsf.org>
2308
2309 * image.c (imagemagick_load_image, Finit_image_library):
2310 Free intermediate image after creating a MagickWand from it.
2311 Terminate MagickWand environment after image loading.
2312
23132011-01-10 Michael Albinus <michael.albinus@gmx.de>
2314
2315 * dbusbind.c (Fdbus_register_service): Raise an error in case of
2316 unexpected return values.
2317 (Fdbus_register_method): Remove connection initialization.
2318
23192011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
2320
2321 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
2322 used by Fdbus_register_service.
2323 (QCdbus_request_name_replace_existing): Likewise.
2324 (QCdbus_request_name_do_not_queue): Likewise.
2325 (QCdbus_request_name_reply_primary_owner): Likewise.
2326 (QCdbus_request_name_reply_in_queue): Likewise.
2327 (QCdbus_request_name_reply_exists): Likewise.
2328 (QCdbus_request_name_reply_already_owner): Likewise.
2329 (Fdbus_register_service): New function.
2330 (Fdbus_register_method): Use Fdbus_register_service to do the name
2331 registration.
2332 (syms_of_dbusbind): Add symbols dbus-register-service,
2333 :allow-replacement, :replace-existing, :do-not-queue,
2334 :primary-owner, :existing, :in-queue and :already-owner.
2335
23362011-01-09 Chong Yidong <cyd@stupidchicken.com>
2337
2338 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
2339 when removing extra buttons.
2340
23412011-01-08 Chong Yidong <cyd@stupidchicken.com>
2342
2343 * fns.c (Fyes_or_no_p): Doc fix.
2344
23452011-01-08 Andreas Schwab <schwab@linux-m68k.org>
2346
2347 * fns.c (Fyes_or_no_p): Add usage.
2348
23492011-01-08 Glenn Morris <rgm@gnu.org>
2350
2351 * makefile.w32-in ($(EMACS)):
2352 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
2353
2354 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
2355 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
2356
23572011-01-07 Andreas Schwab <schwab@linux-m68k.org>
2358
2359 * image.c (imagemagick_load_image): Fix some resource leaks and
2360 error handling.
2361
23622011-01-07 Chong Yidong <cyd@stupidchicken.com>
2363
2364 * fns.c (Fyes_or_no_p): Accept format string args.
2365
23662011-01-07 Glenn Morris <rgm@gnu.org>
2367
2368 * emacs.c (no_site_lisp): New int.
2369 (USAGE1): Add --no-site-lisp, mention -Q uses it.
2370 (main): Set no_site_lisp.
2371 (standard_args): Add --no-site-lisp.
2372 * lisp.h (no_site_lisp): New int.
2373 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
2374 directories to Vload_path.
2375
23762011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2377
2378 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
2379
23802011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
2381
2382 * dbusbind.c (Fdbus_register_method): Add optional parameter
2383 dont_register_service. Updated docstring accordingly.
2384
23852011-01-04 Glenn Morris <rgm@gnu.org>
2386
2387 * emacs.c (emacs_copyright): Update short copyright year to 2011.
2388
23892011-01-03 Eli Zaretskii <eliz@gnu.org>
2390
2391 * image.c (png_jmpbuf): Remove definition.
2392 (my_png_error, png_load): Don't use png_jmpbuf.
2393
23942011-01-02 Eli Zaretskii <eliz@gnu.org>
2395
2396 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
2397
23982011-01-02 Eli Zaretskii <eliz@gnu.org>
2399
2400 * image.c <Qlibpng_version>: New variable.
2401 (syms_of_image): Intern and staticpro it. Set its value to the
2402 version of PNG library we were compiled with.
2403 (my_png_error, png_load): Avoid GCC warnings about direct access
2404 to png_ptr->jmpbuf. (Bug#7716)
2405 (png_jmpbuf): New macro.
2406 (my_png_error, png_load): Use it instead of #ifdef'ing according
2407 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
2408
24092011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2410
2411 * .gdbinit (xgetptr): Fix the union+lsb case.
2412 (xbacktrace): Fix the union case.
2413
24142011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2415
2416 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
2417 different from selected-window's.
2418
24192011-01-02 Eli Zaretskii <eliz@gnu.org>
2420
2421 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
2422 equivalent of a menu item when the key sequence is given by the
2423 `:keys' attribute. (Bug#7662)
2424
2425 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
2426 the basic faces are supported.
2427
24282011-01-02 Jan Djärv <jan.h.d@swipnet.se>
2429
2430 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
2431
24322011-01-02 Eli Zaretskii <eliz@gnu.org>
2433
2434 * xdisp.c (Fformat_mode_line): Fix last change.
2435
24362011-01-02 Chong Yidong <cyd@stupidchicken.com>
2437
2438 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
2439 faces (Bug#7587).
2440
24412011-01-02 Eli Zaretskii <eliz@gnu.org>
2442
2443 * fileio.c (Fexpand_file_name): One more doc fix.
2444
24452011-01-01 Chong Yidong <cyd@stupidchicken.com>
2446
2447 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
2448 image or label in the container.
2449 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
2450 (xg_show_toolbar_item): Function deleted.
2451 (xg_tool_item_stale_p): New function.
2452 (update_frame_tool_bar): Calculate tool-bar style once per call.
2453 Instead of hiding text labels, omit them. Don't use
2454 xg_show_toolbar_item; create new GtkToolItems from scratch if
2455 necessary, instead of trying to re-use them. This avoids an
2456 annoying animation when changing tool-bars.
2457
24582010-12-31 Jan Djärv <jan.h.d@swipnet.se>
2459
2460 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
2461 title and buffer filename only for RepresentedFilename.
2462 Handle bad UTF-8 in buffer name (Bug#7517).
2463
24642010-12-30 Jan Djärv <jan.h.d@swipnet.se>
2465
2466 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
2467
2468 * nsfns.m (ns_set_name_iconic): Remove.
2469 (ns_set_name_internal): New function (Bug#7517).
2470 (Vicon_title_format): Extern declare.
2471 (ns_set_name): Call ns_set_name_internal.
2472 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
2473 (x_implicitly_set_name): Ditto.
2474 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
2475 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
2476
24772010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
2478
2479 * window.c (syms_of_window): Add missing defsubr for
2480 window-use-time.
2481
24822010-12-28 Andreas Schwab <schwab@linux-m68k.org>
2483
2484 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
2485 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
2486
24872010-12-27 Andreas Schwab <schwab@linux-m68k.org>
2488
2489 * buffer.c: Remove unused declarations.
2490 * buffer.h: Likewise.
2491 * charset.h: Likewise.
2492 * composite.h: Likewise.
2493 * dispextern.h: Likewise.
2494 * dispnew.c: Likewise.
2495 * font.h: Likewise.
2496 * fontset.c: Likewise.
2497 * fontset.h: Likewise.
2498 * intervals.h: Likewise.
2499 * keymap.h: Likewise.
2500 * lisp.h: Likewise.
2501 * syntax.c: Likewise.
2502 * syntax.h: Likewise.
2503 * termhooks.h: Likewise.
2504 * window.h: Likewise.
2505 * xsettings.h: Likewise.
2506 * xterm.c: Likewise.
2507 * xterm.h: Likewise.
2508
2509 * chartab.c (sub_char_table_ref): Make static.
2510 * dispnew.c (line_hash_code, required_matrix_height)
2511 (required_matrix_width): Likewise.
2512 * eval.c (interactive_p, apply_lambda): Likewise.
2513 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
2514 Likewise.
2515 * font.c (QCadstyle, QCregistry, font_make_spec)
2516 (font_parse_fcname, font_encode_char, font_at): Likewise.
2517 * frame.c (x_frame_get_arg): Likewise.
2518 * keymap.c (get_keyelt): Likewise.
2519 * lread.c (read_filtered_event): Likewise.
2520 * print.c (write_string_1): Likewise.
2521 * window.c (delete_window, window_height, window_width)
2522 (foreach_window): Likewise.
2523 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
2524 * xterm.c (x_scroll_bar_clear, xembed_set_info)
2525 (xembed_send_message): Likewise.
2526
2527 * eval.c (run_hook_list_with_args): Delete.
2528 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
2529 * terminal.c (get_terminal_param): Likewise.
2530 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
2531
2532 * scroll.c: Fix comment.
2533
2534 * dispnew.c (add_window_display_history)
2535 (add_frame_display_history, glyph_row_slice_p)
2536 (find_glyph_row_slice, flush_stdout)
2537 (check_matrix_pointer_lossage, matrix_row)
2538 (check_matrix_invariants, check_window_matrix_pointers)
2539 (check_matrix_pointers, window_to_frame_vpos)
2540 (window_to_frame_hpos): Prototize.
2541 * textprop.c (erase_properties): Likewise.
2542
25432010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2544
2545 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
2546 (print_preprocess): Fix handling of uninterned symbols in last change.
2547
2548 * print.c (print, print_preprocess, print_object): Use a hash table
2549 rather than a linear table for Vprint_number_table.
2550
25512010-12-20 Chong Yidong <cyd@stupidchicken.com>
2552
2553 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
2554
25552010-12-20 Chong Yidong <cyd@stupidchicken.com>
2556
2557 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
2558 (parse_tool_bar_item): Use it to obtain image separators for
2559 displays not using native tool-bar separators.
2560
2561 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
2562 specially, since this is now done in parse_tool_bar_item.
2563
25642010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2565
2566 Minor clean up to silence some gcc warnings.
2567 * window.c (Fset_window_buffer):
2568 * xterm.c (x_set_frame_alpha): Restructure code to silence
2569 compiler warning.
2570 (handle_one_xevent): Remove unused var `p'.
2571 (do_ewmh_fullscreen): Remove unused var `lval'.
2572 (xembed_set_info): Remove unused var `atom'.
2573 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
2574 compiler warning.
2575 * fontset.c (fontset_id_valid_p, dump_fontset):
2576 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
2577 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
2578 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
2579 label only when it's used.
2580 * image.c (x_create_bitmap_from_xpm_data):
2581 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
2582 its callers.
2583 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
2584 `consumed_chars'.
2585 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
2586 (decode_coding_emacs_mule): Remove unused label `retry'.
2587 (detect_eol): Add parens to silence compiler warning.
2588 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
2589 it's used to silence the compiler.
2590 (make_number): Modernize k&r declaration.
2591 (mark_char_table): Add parens to silence compiler warning.
2592
25932010-12-17 Chong Yidong <cyd@stupidchicken.com>
2594
2595 * keyboard.c (parse_tool_bar_item): Allow menu separators in
2596 tool-bar maps.
2597 (menu_separator_name_p): New function, from gtkutil.c.
2598 (separator_names): Move from gtkutil.c.
2599
2600 * keyboard.h (menu_separator_name_p): Add prototype.
2601
2602 * gtkutil.c (XG_BIN_CHILD): New macro.
2603 (xg_get_menu_item_label, xg_update_menubar)
2604 (xg_update_menu_item, xg_tool_bar_menu_proxy)
2605 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
2606 (separator_names, xg_separator_p): Move to keyboard.c.
2607 (create_menus, xg_update_submenu, update_frame_tool_bar):
2608 Use menu_separator_name_p.
2609
2610 * nsmenu.m (name_is_separator): Function deleted.
2611 (addItemWithWidgetValue): Use menu_separator_name_p.
2612
2613 * w32menu.c (name_is_separator): Function deleted.
2614 (add_menu_item): Use menu_separator_name_p.
2615
26162010-12-16 Jan Djärv <jan.h.d@swipnet.se>
2617
2618 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
2619 same as the background, use the face forground as cursor.
2620
26212010-12-13 Eli Zaretskii <eliz@gnu.org>
2622
2623 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
2624
26252010-12-13 Eli Zaretskii <eliz@gnu.org>
2626
2627 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
2628 (face_before_or_after_it_pos, next_element_from_string)
2629 (next_element_from_c_string, produce_stretch_glyph): Remove unused
2630 calculations of maximum string length before calling
2631 string_char_and_length and STRING_CHAR_AND_LENGTH.
2632 (string_char_and_length): Update commentary: MAXLEN is no longer
2633 needed.
2634
26352010-12-13 Jan Djärv <jan.h.d@swipnet.se>
2636
2637 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
2638 as (Qsave_session arg).
2639
2640 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
2641 (smc_die_CB): Make an event with arg Qt.
2642 (Fhandle_save_session): If event has Qt as argument,
2643 call Fkill_emacs (Bug#7552).
2644
26452010-12-13 Chong Yidong <cyd@stupidchicken.com>
2646
2647 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
2648
26492010-12-13 Jan Djärv <jan.h.d@swipnet.se>
2650
2651 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
2652
26532010-12-13 Chong Yidong <cyd@stupidchicken.com>
2654
2655 * dispextern.h (struct it): New member overlay_strings_charpos.
2656
2657 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
2658 charpos where we computed n_overlay_strings.
2659 (next_overlay_string): Load overlay strings at recorded position,
2660 which may not be the same as the iterator's charpos (Bug#7016).
2661
26622010-12-13 Chong Yidong <cyd@stupidchicken.com>
2663
2664 * xdisp.c (try_scrolling): Avoid infloop if the first line is
2665 obscured due to a vscroll (Bug#7537).
2666
26672010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
2668
2669 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
2670
2671 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
2672 Use FRAME_TOOLBAR_HEIGHT.
2673 (x_set_offset): Handle XNegative and YNegative in
2674 f->size_hint_flags (Bug#7510).
2675
26762010-12-11 Eli Zaretskii <eliz@gnu.org>
2677
2678 * w32fns.c (Fx_show_tip): Call try_window with last argument
2679 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
2680 solved. Round up the tip height to an integral multiple of the
2681 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
2682 (Bug#7398)
2683
26842010-12-08 Glenn Morris <rgm@gnu.org>
2685
2686 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
2687
26882010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2689
2690 * xml.c (parse_region): Ignore blank HTML nodes.
2691 (make_dom): Return CDATA sections (like <style>foo</style>) as
2692 text nodes.
2693
26942010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2695
2696 * lread.c (read1): Allow newstyle unquote outside of backquote.
2697 Disallow old-style backquotes inside new-style backquotes.
2698 Don't count unquotes to figure out when we're "syntactically inside
2699 but semantically outside of a backquote" any more.
2700 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
2701 to all contexts.
2702
27032010-12-05 Chong Yidong <cyd@stupidchicken.com>
2704
2705 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
2706
27072010-12-04 Andreas Schwab <schwab@linux-m68k.org>
2708
2709 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
2710 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
2711 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
2712
27132010-12-03 Andreas Schwab <schwab@linux-m68k.org>
2714
2715 * lisp.h (union Lisp_Object): Explicitly declare signedness of
2716 bit-field.
2717 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
2718 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
2719 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
2720 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
2721 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
2722 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
2723 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
2724 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
2725 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
2726 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
2727 * m/hp800.h: Remove file.
2728 * m/mips.h: Remove file.
2729
27302010-12-03 Jan Djärv <jan.h.d@swipnet.se>
2731
2732 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
2733 with cursor color and draw a rectangle around the image (Bug#7412).
2734
27352010-12-03 Andreas Schwab <schwab@linux-m68k.org>
2736
2737 * frame.c (x_set_font): Remove unused variable.
2738
27392010-12-02 Jan Djärv <jan.h.d@swipnet.se>
2740
2741 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
2742
2743 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
2744 drawing text under filled box cursor (Bug#7479).
2745
27462010-11-27 Kenichi Handa <handa@m17n.org>
2747
2748 * charset.c (emacs_mule_charset): Make it an array of charset ID;
2749 i.e. integer.
2750 (Fdefine_charset_internal): Adjust for the above change.
2751 (init_charset_once): Likewise.
2752
2753 * charset.h (emacs_mule_charset): Adjust the prototype.
2754 Delete duplicated extern.
2755
2756 * coding.c (emacs_mule_char): Adjust for the change of
2757 emacs_mule_charset.
2758
2759 * lread.c (read_emacs_mule_char): Adjust for the change of
2760 emacs_mule_charset.
2761
27622010-11-27 Eli Zaretskii <eliz@gnu.org>
2763
2764 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
2765 of w32api >= 3.15. (Bug#6989) (Bug#7452)
2766
27672010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2768
2769 * alloc.c (mark_terminals): Ensure that the image cache is marked
2770 even if the terminal object was marked earlier (Bug#6301).
2771
27722010-11-21 Chong Yidong <cyd@stupidchicken.com>
2773
2774 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
2775
27762010-11-27 Jan Djärv <jan.h.d@swipnet.se>
2777
2778 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
2779 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
2780 Use 23 as menubar height if 0. (Bug#7425).
2781
27822010-11-26 Eli Zaretskii <eliz@gnu.org>
2783
2784 * xdisp.c (set_message_1): Force paragraph direction in echo area
2785 be left-to-right.
2786
2787 * keyboard.c (make_lispy_position): Put a meaningful value in yret
2788 when the click is on the header or mode line.
2789
27902010-11-25 Eli Zaretskii <eliz@gnu.org>
2791
2792 * xdisp.c (set_cursor_from_row): Don't forget to consider the
2793 `cursor' property of the first character in overlay strings.
2794 (Bug#7474) (Bug#7481)
2795
27962010-11-24 Jan Djärv <jan.h.d@swipnet.se>
2797
2798 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
2799 (NSLeftAlternateKeyMask): New defines.
2800 (keyDown): Parse left and right keys separately (Bug#7458).
2801 Compare Left key masks exactly (Bug#7458).
2802
28032010-11-23 Eli Zaretskii <eliz@gnu.org>
2804
2805 * intervals.c (temp_set_point_both): Define before calling, to
2806 avoid GCC warnings.
2807
28082010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
2809
2810 * nsmenu.m: Use #include <config.h> instead of "config.h".
2811
2812 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
2813 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
2814 Move declarations ...
2815 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
2816 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
2817 ... here.
2818
2819 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
2820 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
2821 (gdb_pvec_type):
2822 * print.c (print_output_debug_flag):
2823 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
2824 (safe_debug_print): New declaration.
2825
2826 * xterm.c:
2827 * systty.h:
2828 * sound.c: Include <sys/ioctl.h> unconditionally.
2829
28302010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2831
2832 * alloc.c (mark_maybe_object): Return early if given a Lisp
2833 integer (Bug#6301).
2834
28352010-11-21 Ken Brown <kbrown@cornell.edu>
2836
2837 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
2838
28392010-11-21 Jan Djärv <jan.h.d@swipnet.se>
2840
2841 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
2842 Define (Bug#7458).
2843 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
2844 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
2845 NSRightControlKeyMask also (Bug#7458).
2846 (keyDown): Ditto (Bug#7458).
2847 (syms_of_nsterm): Defvar ns-right-command-modifier and
2848 ns-right-control-modifier (Bug#7458).
2849
28502010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2851
2852 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
2853 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
2854
2855 * intervals.h (temp_set_point, temp_set_point_both):
2856 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
2857
28582010-11-20 Ken Brown <kbrown@cornell.edu>
2859
2860 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
2861
28622010-11-20 Eli Zaretskii <eliz@gnu.org>
2863
2864 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
2865 \xNNNNNN for hex-code display of glyphless characters.
2866
28672010-11-20 Jan Djärv <jan.h.d@swipnet.se>
2868
2869 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
2870 Set important to ! vert_only.
2871 (xg_show_toolbar_item): Don't show label horizontally if
2872 tool item isn't important.
2873 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
2874 xg_make_tool_item, or update important on existing tool item.
2875
2876 * keyboard.c (QCvert_only): New variable.
2877 (parse_tool_bar_item): Check for QCvert_only.
2878 (syms_of_keyboard): Initialize QCvert_only.
2879
2880 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
2881
28822010-11-20 Eli Zaretskii <eliz@gnu.org>
2883
2884 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
2885 same in-line.
2886
28872010-11-20 Andreas Schwab <schwab@linux-m68k.org>
2888
2889 * xfaces.c (lookup_face): Make static.
2890 * dispnew.c (copy_row_except_pointers): Likewise.
2891 * syntax.c (dec_bytepos): Likewise.
2892 (inc_bytepos): Remove.
2893 * dispextern.h (lookup_face): Remove declaration.
2894
28952010-11-19 Eli Zaretskii <eliz@gnu.org>
2896
2897 * xdisp.c (set_cursor_from_row): Display cursor after all the
2898 glyphs that come from an overlay. Don't overstep the last glyph
2899 when skipping glyphs from an overlay. (Bug#6687)
2900
29012010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
2902
2903 * alloc.c (refill_memory_reserve): Move declaration ...
2904 * lisp.h (refill_memory_reserve): ... here.
2905
2906 * strftime.c (_strftime_copytm): Add declaration.
2907
2908 * callproc.c (syms_of_callproc): Use intern_c_string.
2909
2910 Move declarations from .c files to .h files.
2911 * process.c (timers_run):
2912 * minibuf.c (quit_char):
2913 * lread.c (read_emacs_mule_char):
2914 * keyboard.c (minibuf_level, message_enable_multibyte)
2915 (pending_malloc_warning):
2916 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
2917 (Qonly): Remove declarations.
2918 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
2919 (Vselect_active_regions):
2920 * keyboard.h (timers_run): Add declarations.
2921
2922 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
2923 (tm_diff): Convert definitions to standard C.
2924 (extra_args_spec_iso): Remove, unused.
2925
29262010-11-18 Jan Djärv <jan.h.d@swipnet.se>
2927
2928 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
2929
2930 * config.in (HAVE_G_TYPE_INIT): New symbol.
2931
29322010-11-18 Eli Zaretskii <eliz@gnu.org>
2933
2934 * lread.c (Fload): Mention `load-in-progress' and
2935 `load-file-name'. (Bug#7346)
2936
2937 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
2938 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
2939 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
2940 subprocesses. Use buffer_free only ifdef subprocesses.
2941
2942 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
2943 the subprocesses version, not in the non-subprocesses one.
2944
2945 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
2946
29472010-11-17 Eli Zaretskii <eliz@gnu.org>
2948
2949 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
2950 lines on text-mode terminals. (bug#7417)
2951
29522010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
2953
2954 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
2955 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
2956
29572010-11-17 Kenichi Handa <handa@m17n.org>
2958
2959 * coding.c (Fset_terminal_coding_system_internal): Fix previous
2960 change (set charset-ID list instead of charset-symbol list).
2961
29622010-11-16 Chong Yidong <cyd@stupidchicken.com>
2963
2964 * keyboard.c (make_lispy_position): For text area clicks, record Y
2965 pixel position relative to the text area, excluding header line.
2966 Also change X and Y to Lisp_Objects, not pointers; don't return
2967 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
2968 buffer_posn_from_coords counting from the start of the text area.
2969 (Fposn_at_x_y, make_lispy_event): Callers changed.
2970
2971 * window.c (coordinates_in_window): Change X and Y to ints rather
2972 than pointers; don't return coordinates via pointers.
2973 (struct check_window_data): Change X and Y from pointers to ints.
2974 (window_from_coordinates): Remove args WX and WY; don't return
2975 coordinates via pointers.
2976 (Fcoordinates_in_window_p, window_from_coordinates):
2977 (check_window_containing, Fwindow_at): Callers changed.
2978 (window_relative_x_coord): New function.
2979
2980 * window.h (window_from_coordinates, window_relative_x_coord):
2981 Update prototypes.
2982
2983 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
2984 the start of the text area.
2985
2986 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
2987 call. Use window_relative_x_coord.
2988 (note_mouse_highlight): Change window_from_coordinates call.
2989
2990 * w32term.c (w32_read_socket):
2991 * msdos.c (dos_rawgetc):
2992 * xterm.c (handle_one_xevent): Likewise.
2993
29942010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
2995
2996 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
2997 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
2998 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
2999 Convert definitions to standard C.
3000 * regex.c: Do not include <stdlib.h>, config.h does it.
3001 Include unistd.h.
3002 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
3003 (regerror, regfree): Convert definitions to standard C.
3004 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
3005 (__mktime_internal): Convert definitions to standard C.
3006
30072010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3008
3009 * w32proc.c:
3010 * w32inevt.c:
3011 * w32heap.c:
3012 * w32.c: Remove config.h include guards.
3013
3014 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
3015 No code changes.
3016
3017 * process.c: Include <sys/ioctl.h> unconditionally,
3018 keyboard.c already does it.
3019
3020 * keyboard.c (pending_malloc_warning): Add const to match
3021 definition in alloc.c.
3022 (Fset_input_interrupt_mode): Simplify #ifdefs.
3023
30242010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3025
3026 Clean up systty.h macros.
3027 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
3028 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
3029 definition in all uses.
3030 (EMACS_TTY_TABS_OK): Remove, it has a single user.
3031 * sysdep.c (discard_tty_input, child_setup_tty)
3032 (init_sys_modes, tabs_safe_p, reset_sys_modes):
3033 * emacs.c (shut_down_emacs):
3034 * callproc.c (child_setup):
3035 * term.c (dissociate_if_controlling_tty): Inline removed macros.
3036
3037 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
3038
30392010-11-14 Chong Yidong <cyd@stupidchicken.com>
3040
3041 * w32fns.c (Fx_create_frame):
3042 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
3043 resource here; it's now done at startup.
3044
30452010-11-14 Jan Djärv <jan.h.d@swipnet.se>
3046
3047 * xterm.c (set_wm_state): Add Qnil to final cons.
3048
3049 * xselect.c (x_send_client_event): Remove unused variables cons and
3050 size.
3051
30522010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3053
3054 * keyboard.c (modify_event_symbol): Add const to array elements of
3055 arg NAME_TABLE.
3056 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
3057 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
3058 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
3059 Add const to array elements.
3060 (scroll_bar_parts): Make static. Fix position of const.
3061
3062 * w32fns.c (lispy_function_keys): Add const to extern.
3063
3064 * w32inevt.c (lispy_function_keys): Likewise.
3065
30662010-11-14 Chong Yidong <cyd@stupidchicken.com>
3067
3068 * xfns.c (Fx_create_frame): Don't check for the cursorColor
3069 resource here; it's now done at startup.
3070
30712010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
3072
3073 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
3074
3075 Fix compilation on Solaris.
3076 * sysdep.c: Do not #include <term.h>.
3077 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
3078
3079 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
3080
30812010-11-13 Jan Djärv <jan.h.d@swipnet.se>
3082
3083 * xterm.c (set_wm_state): Don't put Atom in cons, call
3084 make_fixnum_or_float on them first.
3085 (x_term_init): Initialize Xatom_net_supporting_wm_check and
3086 Xatom_net_supported correctly.
3087
3088 * xselect.c (x_send_client_event): Move CHECK_STRING ...
3089 (Fx_send_client_event): to here.
3090
30912010-11-13 Martin Rudalics <rudalics@gmx.at>
3092
3093 * window.c (Fwindow_use_time): New function.
3094
30952010-11-13 Eli Zaretskii <eliz@gnu.org>
3096
3097 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
3098 zero-width characters.
3099
3100 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
3101
3102 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
3103 box before drawing the glyphs inside it.
3104
3105 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
3106
3107 * dispextern.h (enum glyphless_display_method):
3108 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
3109 All users changed.
3110
3111 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3112 Fix comments.
3113 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
3114 whitespace in "[]", to simulate a box. Don't use uninitialized
3115 variable `width'.
3116
31172010-11-11 Julien Danjou <julien@danjou.info>
3118
3119 * xsettings.c (init_xsettings): Use already fetch atoms.
3120
3121 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
3122 from dpyinfo.
3123
3124 * xselect.c (Fx_send_client_event): Split and create
3125 x_send_client_event.
3126
3127 * lisp.h: Do not EXFUN Fx_send_client_event.
3128
3129 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
3130 from dpyinfo.
3131 (wm_supports): Use atoms from dpyinfo.
3132 (do_ewmh_fullscreen): Use atoms from dpyinfo.
3133 (x_ewmh_activate_frame): Use atoms from dpyinfo.
3134 (xembed_set_info): Use atoms from dpyinfo.
3135 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
3136 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
3137 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
3138 Get all atoms in one round-trip.
3139 (set_wm_state): Use x_send_client_event rather than
3140 Fx_send_client_event, using Atom directly.
3141 (x_ewmh_activate_frame): Ditto.
3142 (x_set_sticky): Pass atoms to set_wm_state.
3143 (do_ewmh_fullscreen): Ditto.
3144
3145 * xterm.h (x_display_info): Add Xatom_net_supported,
3146 Xatom_net_supporting_wm_check, Xatom_net_active_window,
3147 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
3148
3149 * xfns.c (Fx_show_tip): Fix typo in docstring.
3150
31512010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
3152
3153 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
3154 it's not negative.
3155
31562010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3157
3158 * font.c (font_filter_properties): Add const to array elements of
3159 properties args.
3160
3161 * font.h (font_filter_properties): Likewise.
3162
3163 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
3164 elements.
3165
3166 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
3167
31682010-11-10 Michael Albinus <michael.albinus@gmx.de>
3169
3170 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
3171 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
3172 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
3173 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
3174 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
3175
31762010-11-10 Glenn Morris <rgm@gnu.org>
3177
3178 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
3179
31802010-11-09 Eli Zaretskii <eliz@gnu.org>
3181
3182 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
3183
31842010-11-09 Chong Yidong <cyd@stupidchicken.com>
3185
3186 * image.c (free_image): Don't garbage the frame here, since this
3187 function can be called while redisplaying (Bug#7210).
3188 (uncache_image): Garbage the frame here (Bug#6426).
3189
31902010-11-09 Jan Djärv <jan.h.d@swipnet.se>
3191
3192 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
3193 parent is the root window. Check this after traversing window tree.
3194
3195 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
3196
3197 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
3198
3199 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
3200 before traversing window tree (Bug#5721).
3201
32022010-11-07 Jan Djärv <jan.h.d@swipnet.se>
3203
3204 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
3205
3206 * xdisp.c (note_mode_line_or_margin_highlight):
3207 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
3208
32092010-11-06 Eli Zaretskii <eliz@gnu.org>
3210
3211 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
3212 adjust width of tool-tip frame to the width of text, excluding the
3213 stretch glyph at the beginning of R2L glyph rows.
3214
3215 * w32fns.c (Fx_show_tip): Likewise.
3216
32172010-11-06 Jan Djärv <jan.h.d@swipnet.se>
3218
3219 * nsfont.m: Include termchar for new mouse-highlight.
3220 (nsfont_draw): Use MOUSE_HL_INFO.
3221
32222010-11-05 Eli Zaretskii <eliz@gnu.org>
3223
3224 Unify mouse-highlight code for all GUI and TTY sessions.
3225
3226 * term.c: Remove static mouse_face_* variables. All users
3227 changed.
3228 (term_show_mouse_face, term_clear_mouse_face)
3229 (fast_find_position, term_mouse_highlight): Functions deleted.
3230 (tty_draw_row_with_mouse_face): New function.
3231 (term_mouse_movement): Call note_mouse_highlight instead of
3232 term_mouse_highlight.
3233
3234 * nsterm.m (ns_update_window_begin, ns_update_window_end)
3235 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
3236 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
3237 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
3238 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
3239 Replace Display_Info with Mouse_HLInfo everywhere where
3240 mouse_face_* members were accessed for mouse highlight purposes.
3241
3242 * xterm.c (x_update_window_begin, x_update_window_end)
3243 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
3244 (handle_one_xevent, x_free_frame_resources, x_term_init):
3245 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
3246 members were accessed for mouse highlight purposes.
3247
3248 * w32term.c (x_update_window_begin, x_update_window_end)
3249 (x_update_end, w32_read_socket, x_free_frame_resources)
3250 (w32_initialize_display_info): Replace Display_Info with
3251 Mouse_HLInfo everywhere where mouse_face_* members were accessed
3252 for mouse highlight purposes.
3253
3254 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
3255 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
3256 unless the frame is on a window-system.
3257 (get_tool_bar_item, handle_tool_bar_click)
3258 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
3259 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3260 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3261 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
3262 Replace Display_Info with Mouse_HLInfo everywhere where
3263 mouse_face_* members were accessed for mouse highlight purposes.
3264 (coords_in_mouse_face_p): Move prototype out of the
3265 HAVE_WINDOW_SYSTEM conditional.
3266 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
3267 HAVE_WINDOW_SYSTEM block.
3268 (try_window_id) [HAVE_GPM || MSDOS]:
3269 Call x_clear_window_mouse_face.
3270 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
3271 systems. Call tty_draw_row_with_mouse_face for TTY systems.
3272 (show_mouse_face): Call draw_row_with_mouse_face, instead of
3273 calling draw_glyphs directly.
3274 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3275 (cursor_in_mouse_face_p, rows_from_pos_range)
3276 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
3277 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3278 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
3279 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
3280 fragments.
3281 (note_mouse_highlight): Call popup_activated for MSDOS as well.
3282 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
3283 integer.
3284 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
3285 (x_consider_frame_title, tool_bar_lines_needed):
3286 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
3287 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
3288 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
3289 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
3290 part.
3291
3292 * dispnew.c (mirror_make_current): Set Y coordinate of the
3293 mode-line and header-line rows.
3294 (init_display): Setup initial frame's output_data for text
3295 terminal frames.
3296
3297 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
3298 its own definition on msdos.c.
3299
3300 * msdos.c (show_mouse_face, clear_mouse_face)
3301 (fast_find_position, IT_note_mode_line_highlight)
3302 (IT_note_mouse_highlight): Functions deleted.
3303 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
3304 instead of IT_note_mouse_highlight.
3305 (draw_row_with_mouse_face, popup_activated): New functions.
3306 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
3307 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
3308 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
3309 where mouse_face_* members were accessed for mouse highlight
3310 purposes.
3311
3312 * msdos.h (initialize_msdos_display): Add prototype.
3313
3314 * frame.h (MOUSE_HL_INFO): New macro.
3315
3316 * lisp.h (Mouse_HLInfo): New data type.
3317
3318 * xterm.h (struct x_display_info):
3319 * w32term.h (struct w32_display_info):
3320 * nsterm.h (struct ns_display_info):
3321 * termchar.h (struct tty_display_info): Use it instead of
3322 mouse_face_* members.
3323
3324 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
3325 1st argument.
3326 (frame_to_window_pixel_xy, note_mouse_highlight)
3327 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
3328 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
3329 HAVE_WINDOW_SYSTEM conditional.
3330 (draw_row_with_mouse_face): Declare prototype.
3331 (tty_draw_row_with_mouse_face): Declare prototype.
3332
33332010-11-05 Eli Zaretskii <eliz@gnu.org>
3334
3335 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3336 Remove unused variables.
3337
33382010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
3339
3340 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
3341 logic pointed out by Eli Zaretskii.
3342
33432010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3344
3345 * coding.c (coding-category-list): Refer to set-coding-system-priority
3346 instead of the obsolete set-coding-priority in the doc string.
3347
33482010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3349
3350 * nsfont.m (nsfont_draw): Correct previous patch to return
3351 correct value.
3352 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
3353 don't change the method signature, change the return.
3354
33552010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
3356
3357 * nsfont.m (nsfont_draw)
3358 * nsimage.m (EmacsImage-setXBMColor:)
3359 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
3360
33612010-11-03 Julien Danjou <julien@danjou.info>
3362
3363 * image.c (gif_load): Add support for transparency and specified
3364 :background.
3365
33662010-11-01 Kenichi Handa <handa@m17n.org>
3367
3368 * dispextern.h (lookup_glyphless_char_display): Extern it.
3369
3370 * termhooks.h (struct terminal): New member charset_list.
3371
3372 * coding.c (Fset_terminal_coding_system_internal): Set the
3373 `charset_list' member of struct terminal.
3374
3375 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
3376 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3377
3378 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
3379 (lookup_glyphless_char_display): Set it->what at the end.
3380 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3381 (last_glyphless_glyph_merged_face_id): Make them non-static.
3382
3383 * w32term.c (x_draw_glyphless_glyph_string_foreground):
3384 Fix the arg with_background for font->driver->draw.
3385
33862010-11-01 Kenichi Handa <handa@m17n.org>
3387
3388 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
3389 Surround chp by parentheses.
3390
33912010-11-01 Kenichi Handa <handa@m17n.org>
3392
3393 Implement various display methods for glyphless characters.
3394
3395 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
3396 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
3397 (Qzero_width): New variables.
3398 (THIN_SPACE_WIDTH): New macro.
3399 (lookup_glyphless_char_display): New function.
3400 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3401 (last_glyphless_glyph_merged_face_id): New variables.
3402 (get_next_display_element): Check glyphless characters.
3403 (redisplay_internal): Initialize last_glyphless_glyph_frame and
3404 last_glyphless_glyph_face_id.
3405 (fill_glyphless_glyph_string): New function.
3406 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
3407 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
3408 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3409 (x_produce_glyphs): If a suitable font is not found, produce a
3410 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
3411 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
3412 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
3413 Qzero_width.
3414 (Vglyphless_char_display): Declare it as a Lisp variable.
3415
3416 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
3417 (struct glyph): Change the size of the member "type" to 3.
3418 Add glyphless to the union slice and u.
3419 (enum display_element_type): Add IT_GLYPHLESS.
3420 (enum glyphless_display_method): New enum.
3421 (struct it): New member glyphless_method.
3422 (Vglyphless_char_display): Extern it.
3423
3424 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
3425 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3426
3427 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
3428 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3429
3430 * nsterm.m (ns_draw_glyph_string): Handle the case
3431 GLYPHLESS_GLYPH (the detail is not yet implemented).
3432
34332010-10-31 Glenn Morris <rgm@gnu.org>
3434
3435 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
3436
3437 * frame.c (syms_of_frame) <tool-bar-mode>:
3438 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
3439
34402010-10-31 Chong Yidong <cyd@stupidchicken.com>
3441
3442 * xterm.c (x_connection_closed): Print informative error message
3443 when aborting on GTK. This requires using shut_down_emacs
3444 directly instead of Fkill_emacs.
3445
34462010-10-29 Eli Zaretskii <eliz@gnu.org>
3447
3448 * emacs.c (main): Call syms_of_filelock unconditionally.
3449
3450 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
3451 clause, but keep part of it conditioned on CLASH_DETECTION.
3452
34532010-10-29 Glenn Morris <rgm@gnu.org>
3454
3455 * nsfns.m (Fx-display-save-under, Fx-open-connection)
3456 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
3457 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
3458 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
3459 Sync docs between X, W32, NS.
3460
3461 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
3462 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
3463
34642010-10-26 Juanma Barranquero <lekktu@gmail.com>
3465
3466 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
3467 otherwise, bootstrapping on Windows fails to compile macroexp.el.
3468
34692010-10-26 Eli Zaretskii <eliz@gnu.org>
3470
3471 * cmds.c (internal_self_insert): Don't insert if argument N is
3472 zero or negative. (Bug#7281)
3473
34742010-10-26 Jan Djärv <jan.h.d@swipnet.se>
3475
3476 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
3477
34782010-10-25 Glenn Morris <rgm@gnu.org>
3479
3480 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
3481
34822010-10-24 Glenn Morris <rgm@gnu.org>
3483
3484 * w32fns.c (Fx_synchronize, Fx_change_window_property)
3485 (Fx_window_property, Fx_file_dialog):
3486 * xfns.c (Fx_synchronize, Fx_change_window_property)
3487 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
3488
34892010-10-24 Chong Yidong <cyd@stupidchicken.com>
3490
3491 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
3492
34932010-10-24 Eli Zaretskii <eliz@gnu.org>
3494
3495 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
3496
3497 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
3498 Deprecate use as a boolean flag.
3499
35002010-10-24 Jim Meyering <jim@meyering.net>
3501
3502 * emacs.c (argmatch): Don't treat "--" as "--chdir".
3503
35042010-10-24 Glenn Morris <rgm@gnu.org>
3505
3506 * w16select.c (syms_of_win16select) <selection-coding-system>:
3507 <next-selection-coding-system>:
3508 * w32select.c (syms_of_w32select) <selection-coding-system>:
3509 <next-selection-coding-system>:
3510 Sync docs with select.el.
3511
3512 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
3513 Lisp version.
3514
3515 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
3516 Sync doc with the xterm.c version.
3517
3518 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
3519 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
3520
35212010-10-23 Glenn Morris <rgm@gnu.org>
3522
3523 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
3524 * frame.c (syms_of_frame) <menu-bar-mode>:
3525 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
3526 <hourglass-delay>: Sync docs with Lisp.
3527
35282010-10-23 Eli Zaretskii <eliz@gnu.org>
3529
3530 Implement mouse highlight for bidi-reordered lines.
3531
3532 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
3533 (mouse_face_from_string_pos): New function, replaces
3534 fast_find_string_pos.
3535 (note_mouse_highlight): Call it instead of fast_find_string_pos.
3536 (note_mode_line_or_margin_highlight): Support bidi-reordered
3537 strings and R2L glyph rows. Fix comments.
3538 (note_mouse_highlight): When bidi reordering is turned on in a
3539 buffer, call next-single-property-change and
3540 previous-single-property-change with last argument nil.
3541 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
3542 glyph that stands for no text beyond the line end.
3543 (row_containing_pos): Don't return too early when CHARPOS is in a
3544 bidi-reordered continued line. Return immediately when the first
3545 hit is found in a line that is not continued, or when an exact
3546 match for CHARPOS is found.
3547 (rows_from_pos_range): New function.
3548 (mouse_face_from_buffer_pos): Use it instead of calling
3549 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
3550 function to support mouse highlight in bidi-reordered lines and
3551 not to assume that START_CHARPOS is always in mouse_face_beg_row.
3552 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
3553 that the former is always above the latter or identical to it.
3554 (show_mouse_face): Support drawing highlighted R2L lines.
3555 (coords_in_mouse_face_p): New function, bidi-aware.
3556 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
3557 Call it instead of comparing with mouse-face members of dpyinfo.
3558 (note_mode_line_or_margin_highlight): Fix confusingly swapped
3559 usage of hpos and vpos.
3560
35612010-10-22 Jan Djärv <jan.h.d@swipnet.se>
3562
3563 * xrdb.c: Include keyboard.h for MOTIF.
3564
3565 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
3566 MOTIF (Bug#7263).
3567
3568 * xfns.c: Include Xm/TextF and Xm/List.
3569 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
3570 Make ANSI prototypes.
3571
35722010-10-22 Glenn Morris <rgm@gnu.org>
3573
3574 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
3575 Remove ccl and duplicate mouse.
3576
35772010-10-21 Chong Yidong <cyd@stupidchicken.com>
3578
3579 * insdel.c (prepare_to_modify_buffer): Don't set
3580 saved-region-selection if modification hooks are disabled.
3581
35822010-10-19 Chong Yidong <cyd@stupidchicken.com>
3583
3584 * cmds.c (Fdelete_char): Doc fix.
3585
35862010-10-19 Ken Brown <kbrown@cornell.edu>
3587
3588 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
3589
35902010-10-19 Kenichi Handa <handa@m17n.org>
3591
3592 Fix incorrect font metrics when the same font is opened with
3593 different pixelsizes.
3594
3595 * xftfont.c: Include composite.h.
3596 (xftfont_shape): New function.
3597 (syms_of_xftfont): Set xftfont_driver.shape.
3598
35992010-10-18 Julien Danjou <julien@danjou.info>
3600
3601 * frame.c (Fframe_pointer_visible_p):
3602 Add `frame-pointer-visible-p' to get the pointer visibility.
3603
36042010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
3605
3606 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
3607 non-"EAGAIN"-like error to signal to Emacs that the socket should
3608 be closed.
3609
36102010-10-15 Eli Zaretskii <eliz@gnu.org>
3611
3612 * unexcoff.c (make_hdr): Fix prototype according to changes in
3613 2010-10-03T13:59:56Z!dann@ics.uci.edu.
3614
3615 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
3616
36172010-10-15 Tassilo Horn <tassilo@member.fsf.org>
3618
3619 * Makefile.in (really-oldXMenu): Fix typo in variable name that
3620 made building the X menu fail.
3621 (really-oldXMenu): Fix my previous fix.
3622
36232010-10-14 Damyan Pepper <damyanp@gmail.com>
3624
3625 Fix handling of font properties on Windows (bug#6303).
3626 * font.c (font_filter_properties): New function, refactored from
3627 ftfont_filter_properties.
3628 * font.h (font_filter_properties): Declare.
3629 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
3630 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
3631 (w32font_filter_properties): New function.
3632 (w32font_driver): Add w32font_filter_properties.
3633
36342010-10-14 Juanma Barranquero <lekktu@gmail.com>
3635
3636 * font.c (Ffont_variation_glyphs):
3637 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
3638
36392010-10-14 Juanma Barranquero <lekktu@gmail.com>
3640
3641 * w32fns.c (w32_wnd_proc, file_dialog_callback):
3642 * w32font.c (w32_generic_family):
3643 * w32inevt.c (key_event):
3644 * w32menu.c (fill_in_menu):
3645 * w32proc.c (reader_thread, w32_executable_type, compare_env)
3646 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
3647 * w32term.c (w32_read_socket): Make static.
3648
36492010-10-13 Juanma Barranquero <lekktu@gmail.com>
3650
3651 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
3652 prototypes; all callers changed.
3653
36542010-10-13 Juanma Barranquero <lekktu@gmail.com>
3655
3656 * makefile.w32-in (TLIB2): Rename from TLIBW32.
3657 (OBJ2): New macro.
3658 (WIN32OBJ, FONTOBJ): Remove.
3659 (OBJ1): Redistribute object files with OBJ2.
3660 (LIBS, $(TEMACS)): Use TLIB2.
3661 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
3662 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
3663
36642010-10-13 Juanma Barranquero <lekktu@gmail.com>
3665
3666 * emacs.c (Vdynamic_library_alist)
3667 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
3668 Doc fix.
3669
3670 * lisp.h (Vdynamic_library_alist): Declare extern.
3671
3672 * image.c (Vimage_library_alist)
3673 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
3674 (lookup_image_type): Use Vdynamic_library_alist.
3675 (Finit_image_library): Doc fix.
3676
36772010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
3678
3679 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
3680 (lispdir): Remove trailing /, update all uses.
3681
36822010-10-12 Jan Djärv <jan.h.d@swipnet.se>
3683
3684 * nsterm.m (Qleft): Declare.
3685 (ns_right_alternate_modifier): New variable.
3686 (NSRightAlternateKeyMask): New define.
3687 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
3688 ns_right_alternate_modifier isn't Qleft.
3689 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
3690 as emacs modifier for NSRightAlternateKeyMask.
3691 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
3692
36932010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3694
3695 * gnutls.c (emacs_gnutls_write): If we're trying to write before
3696 gnutls is ready, return EAGAIN as the errno.
3697
36982010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
3699
3700 * vm-limit.c:
3701 * unexhp9k800.c:
3702 * unexelf.c:
3703 * unexaix.c:
3704 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
3705
3706 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
3707 (PROFILING_LDFLAGS): Remove, not needed anymore.
3708
3709 * Makefile.in: Use $(...) everywhere instead of ${...}.
3710 (CRT_DIR): Move near potential user.
3711 (START_FILE): Move near CRT_DIR, it might use it.
3712
3713 * sysdep.c (LPASS8): Remove, unused.
3714 (emacs_ospeed): Change from being a global to a local in the only
3715 user: init_baud_rate.
3716
37172010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3718
3719 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
3720 (emacs_gnutls_write): Remove the debuggin fsync call.
3721 (emacs_gnutls_read): Return -1 if we got an error from
3722 gnutls_read. This allows us to actually read lots of data from
3723 the GnuTLS stream.
3724 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
3725 According to the documentation, this is correct, and it seems to
3726 make things work.
3727
37282010-10-09 Chong Yidong <cyd@stupidchicken.com>
3729
3730 * xterm.c (x_draw_relief_rect): Clear corner pixels.
3731
37322010-10-08 Michael Albinus <michael.albinus@gmx.de>
3733
3734 * keyboard.c: Revert last change; it was not intended to be
3735 synchronized with the trunk.
3736
37372010-10-08 Kenichi Handa <handa@m17n.org>
3738
3739 * coding.c (complement_process_encoding_system): Fix previous change.
3740
37412010-10-08 Michael Albinus <michael.albinus@gmx.de>
3742
3743 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
3744 (Fdbus_init_bus): ... here. (Bug#7113)
3745
37462010-10-08 Glenn Morris <rgm@gnu.org>
3747
3748 * buffer.c (before-change-functions, after-change-functions):
3749 Three-year overdue doc fix following 2007-08-13 change.
3750
37512010-10-08 Kenichi Handa <handa@m17n.org>
3752
3753 * coding.c (coding_inherit_eol_type): If parent doesn't specify
3754 eol-format, inherit from the system's default.
3755 (complement_process_encoding_system): Make a new coding system
3756 inherit the original eol-format.
3757
37582010-10-08 Kenichi Handa <handa@m17n.org>
3759
3760 * coding.c (complement_process_encoding_system): New function.
3761
3762 * coding.h (complement_process_encoding_system): Extern it.
3763
3764 * callproc.c (Fcall_process): Complement the coding system for
3765 encoding arguments.
3766 (Fcall_process_region): Complement the coding system for encoding
3767 the input to the process.
3768
3769 * process.c (Fstart_process): Complement the coding system for
3770 encoding arguments.
3771 (send_process): Complement the coding system for encoding what
3772 sent to the process.
3773
37742010-10-08 Kenichi Handa <handa@m17n.org>
3775
3776 * xfont.c (xfont_open): Fix setting of font->average_width from
3777 :avgwidth property (Bug#7123).
3778
37792010-10-08 Michael Albinus <michael.albinus@gmx.de>
3780
3781 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
3782 is more portable.
3783
3784 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
3785 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
3786 has not defined SIGIO.
3787
37882010-10-08 Chong Yidong <cyd@stupidchicken.com>
3789
3790 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
3791 draw the outermost line using the black relief, for legibility.
3792 Omit drawing the four corner pixels.
3793
37942010-10-04 Chong Yidong <cyd@stupidchicken.com>
3795
3796 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
3797 (read_key_sequence): Inline echo_prompt.
3798 (echo_dash): Add a dash only if key is continued (Bug#7137).
3799
38002010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
3801
3802 Remove O_RDONLY, O_WRONLY definitions, not needed.
3803 * unexcoff.c:
3804 * lread.c:
3805 * fileio.c:
3806 * doc.c:
3807 * callproc.c:
3808 * alloc.c:
3809 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
3810
38112010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
3812
3813 * gnutls.h (GNUTLS_LOG2): Convenience macro.
3814
3815 * gnutls.c: Add property list symbol holders.
3816 (emacs_gnutls_handshake): Clarify how sockets are passed to
3817 GnuTLS.
3818 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
3819 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
3820 and keyfiles to be a list of file names. Default to "NORMAL" for
3821 the priority string. Improve logging.
3822
38232010-10-03 Glenn Morris <rgm@gnu.org>
3824
3825 * fileio.c (Vdirectory_sep_char): Remove.
3826
38272010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
3828
3829 * termhooks.h: Remove #ifdef CONSP.
3830
3831 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
3832
3833 Include <fcntl.h> unconditionally.
3834 * termcap.c:
3835 * sysdep.c:
3836 * lread.c:
3837 * keyboard.c:
3838 * filelock.c:
3839 * fileio.c:
3840 * doc.c:
3841 * callproc.c:
3842 * alloc.c: Remove include guards for <fcntl.h>, process.c already
3843 does it.
3844
3845 * process.c: Do not include <sys/wait.h>, syswait.h does it.
3846
3847 * sysdep.c (flush_pending_output): Remove code, does not do
3848 anything on any platform.
3849
3850 Remove unused code.
3851 * sysdep.c (select_alarm, sys_select, read_input_waiting):
3852 Remove select emulation, all systems support select.
3853 (set_exclusive_use): Remove, the only user is in an #if 0 block.
3854 * process.c (create_process): Remove #if 0 code.
3855
3856 Remove unused arguments for unexec.
3857 The third one is never used, and the last two are always passed as zero.
3858 * emacs.c (unexec): Add declaration.
3859 (Fdump_emacs): Only pass the first two arguments to unexec.
3860 Simplify #ifdef.
3861 * unexw32.c (unexec):
3862 * unexsol.c (unexec):
3863 * unexhp9k800.c (unexec):
3864 * unexcw.c (unexec): Remove the last 3 arguments, unused.
3865 * unexelf.c (unexec): Remove the last 3 arguments, unused.
3866 (find_section): Use const.
3867 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
3868 (unexec_error): Declare it NO_RETURN.
3869 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
3870 it as an argument, remove data_start and entry_address arguments, unused.
3871 (unexec): Remove bss_start, data_start and
3872 entry_address arguments.
3873 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
3874 it as an argument, remove data_start and entry_address arguments, unused.
3875 (unexec): Remove bss_start, data_start and
3876 entry_address arguments.
3877
38782010-10-03 Juanma Barranquero <lekktu@gmail.com>
3879
3880 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
3881
3882 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
3883 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
3884 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
3885 Fix typos in docstrings.
3886 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
3887 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
3888
38892010-10-03 Chong Yidong <cyd@stupidchicken.com>
3890
3891 * keyboard.c (command_loop_1): Make sure the mark is really alive
3892 before using it (Bug#7044).
3893
38942010-10-02 Juanma Barranquero <lekktu@gmail.com>
3895
3896 * makefile.w32-in (tags): Rename target to full-tags.
3897
38982010-10-02 Eli Zaretskii <eliz@gnu.org>
3899
3900 * emacs.c (main): Remove !WINDOWSNT conditional.
3901 (Fkill_emacs): Don't mention exemption on MS-Windows.
3902
39032010-10-02 Glenn Morris <rgm@gnu.org>
3904
3905 * character.c (Fchar_bytes): Remove obsolete function.
3906 (syms_of_character): Remove Schar_bytes.
3907
3908 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
3909 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
3910 in batch-mode.
3911 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
3912 (kill-emacs-hook): Doc fix.
3913
39142010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
3915
3916 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
3917 (parse_region): Rework to take regions instead of strings, and
3918 renamed to reflect that these are the libxml functions.
3919
39202010-10-01 Eli Zaretskii <eliz@gnu.org>
3921
3922 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
3923 screen dimensions in tty->Wcm.
3924
3925 * xdisp.c (set_cursor_from_row): When the row is truncated and
3926 point is outside the range of displayed characters, position the
3927 cursor inside the scroll margin. (Bug#6349)
3928
39292010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
3930
3931 Do not include stdlib.h and string.h, config.h does it.
3932 * xfont.c:
3933 * w32term.c:
3934 * w32reg.c:
3935 * w32inevt.c:
3936 * w32heap.c:
3937 * w32console.c:
3938 * w16select.c:
3939 * unexsol.c:
3940 * term.c:
3941 * sound.c:
3942 * scroll.c (m):
3943 * gtkutil.c:
3944 * font.c:
3945 * filelock.c:
3946 * fileio.c:
3947 * dosfns.c:
3948 * dbusbind.c:
3949 * bidi.c:
3950 * callproc.c:
3951 * process.c:
3952 * msdos.c:
3953 * charset.c: Do not include stdlib.h and string.h, config.h does it.
3954
3955 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
3956 defines it.
3957
3958 * process.c: Move #include <pty.h> earlier.
3959 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
3960 (pty_name): Move definition later.
3961
3962 * nsselect.m (syms_of_nsselect):
3963 * nsmenu.m (syms_of_nsmenu):
3964 * nsfns.m (syms_of_nsfns):
3965 * msdos.c (syms_of_msdos):
3966
3967 * image.c (syms_of_image):
3968 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
3969
3970 * point.h: Remove, unused.
3971
39722010-10-01 Eli Zaretskii <eliz@gnu.org>
3973
3974 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
3975 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
3976 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
3977
39782010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
3979
3980 * xml.c (parse_string): Use const.
3981
39822010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
3983
3984 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
3985 Also only override Vprint_level if it isn't already bound, and increase
3986 the level to 8 to produce more useful backtraces for bug reports.
3987
39882010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
3989
3990 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
3991
39922010-09-30 Juanma Barranquero <lekktu@gmail.com>
3993
3994 * w32console.c (vga_stdcolor_name): Remove unused function;
3995 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
3996
39972010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
3998
3999 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
4000 (Fgnutls_boot): Start the handshake.
4001 (emacs_gnutls_read): Perform the handshake from the reader loop.
4002 (Fgnutls_boot): Remove some debugging messages.
4003 Change indentation throughout to use the Emacs style.
4004 (emacs_gnutls_handshake): Cast the fds to something that's
4005 possibly the expected length.
4006 (emacs_gnutls_write): Return -1 if we try to write before handshake.
4007
4008 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
4009
4010 * process.c (make_process): Set the gnutls_p field to zero by
4011 default.
4012 (read_process_output): Always call the gnutls_read function if the
4013 stream is a gnutls stream.
4014 (send_process): Ditto for writes.
4015
4016 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
4017 or write anything until the state is GNUTLS_STAGE_READY.
4018 (Fgnutls_boot): Mark the stream as being a gnutls stream.
4019
40202010-09-29 Eli Zaretskii <eliz@gnu.org>
4021
4022 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
4023 NEUTRAL_DIR.
4024 (handle_invisible_prop, iterate_out_of_display_property)
4025 (next_element_from_buffer): If bidi_it.first_elt is set, call
4026 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
4027 (Bug#7128)
4028
4029 * print.c (print_object): Fix format string and argument types for
4030 printing a Lisp_Misc_Marker.
4031
4032 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
4033 (load_overlay_strings, get_overlay_strings_1)
4034 (get_overlay_strings, forward_to_next_line_start)
4035 (back_to_previous_visible_line_start, reseat, reseat_to_string)
4036 (get_next_display_element, next_element_from_string)
4037 (next_element_from_c_string, next_element_from_buffer)
4038 (move_it_vertically_backward, move_it_by_lines, add_to_log)
4039 (message_dolog, message_log_check_duplicate, message2_nolog)
4040 (message3, message3_nolog, vmessage, set_message, set_message_1)
4041 (hscroll_window_tree, text_outside_line_unchanged_p)
4042 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
4043 (find_last_unchanged_at_beg_row)
4044 (find_first_unchanged_at_end_row, row_containing_pos)
4045 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
4046 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
4047 Use EMACS_INT for buffer and string positions.
4048
4049 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
4050 (row_containing_pos): Adjust prototype.
4051
4052 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
4053 (message2_nolog, set_message): Adjust prototypes.
4054
40552010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4056
4057 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
4058 (Fgnutls_boot): Use SDATA.
4059 (Fgnutls_handshake): Remove unused var `max_log_level'.
4060
40612010-09-27 Michael Albinus <michael.albinus@gmx.de>
4062
4063 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
4064 (Bug#7113)
4065
40662010-09-27 Jan Djärv <jan.h.d@swipnet.se>
4067
4068 * xgselect.c (xg_select): Clear file descriptors not set from
4069 rfds and wfds.
4070
4071 * process.c (wait_reading_process_output): Add missing FD_CLR
4072 for write_mask (must mirror connect_wait_mask).
4073
40742010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4075
4076 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
4077 prefix.
4078 (Fgnutls_boot): Use changed process members. Use log level with a
4079 function parameter to set it. Bring back Emacs-level debugging
4080 messages at log level 1 and 2.
4081
4082 * process.c (make_process): Initialize gnutls_log_level.
4083
4084 * process.h: Add gnutls_log_level and rename x509_cred and
4085 anon_cred to have the gnutls_ prefix for consistency.
4086
4087 * gnutls.h (GNUTLS_LOG): Add convenience macro.
4088
40892010-09-27 Juanma Barranquero <lekktu@gmail.com>
4090
4091 * w32.c (g_b_init_get_sid_identifier_authority)
4092 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
4093 Remove, not used.
4094 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
4095 (init_winsock): Remove useless assignment.
4096 (open_process_token, get_token_information, lookup_account_sid)
4097 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
4098 (get_security_descriptor_owner, get_security_descriptor_group)
4099 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
4100 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
4101 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
4102 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
4103 (unc_volume_file_attributes, convert_from_time_t)
4104 (create_toolhelp32_snapshot, process32_first, process32_next)
4105 (open_thread_token, impersonate_self, revert_to_self)
4106 (get_process_memory_info, get_process_working_set_size)
4107 (global_memory_status, global_memory_status_ex, socket_to_fd)
4108 (shutdown_handler): Make static.
4109
41102010-09-27 Michael Albinus <michael.albinus@gmx.de>
4111
4112 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
4113 (xd_pending_messages): Functions removed.
4114 (xd_read_queued_messages): Add parameters fd, *data, for_read in
4115 order to be compatible with add_read_fd. Determine bus from data,
4116 and call xd_read_message just for this bus.
4117 (xd_add_watch): Use xd_read_queued_messages as callback function.
4118 Add data.
4119
4120 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
4121
41222010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4123
4124 * gnutls.c (gnutls_log_function): Add more debugging.
4125 (emacs_gnutls_read): Don't infloop while reading.
4126
41272010-09-27 Kenichi Handa <handa@m17n.org>
4128
4129 These changes are to remove restriction on the number of glyphs in
4130 one composition.
4131
4132 * dispextern.h (struct glyph): Change the member "slice" to union.
4133 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
4134 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4135
4136 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
4137 instead of glyph->slice.
4138 (marginal_area_string): Likewise.
4139
4140 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
4141 glyph->u.cmp.
4142 (append_composite_glyph): Likewise.
4143
4144 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
4145 glyph->u.cmp.
4146 (fill_gstring_glyph_string, x_get_glyph_overhangs)
4147 (append_composite_glyph): Likewise.
4148 (fill_image_glyph_string): Use glyph->slice.img instead of
4149 glyph->slice.
4150 (append_glyph, produce_image_glyph, append_stretch_glyph)
4151 (note_mouse_highlight): Likewise.
4152
41532010-09-26 Jan Djärv <jan.h.d@swipnet.se>
4154
4155 * process.c (add_keyboard_wait_descriptor)
4156 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
4157 (wait_reading_process_output): Don't pass write_mask to select
4158 if SELECT_CANT_DO_WRITE_MASK is defined.
4159 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
4160
4161 * process.h (add_read_fd, delete_read_fd, add_write_fd)
4162 (delete_write_fd): Declare.
4163
4164 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
4165 (write_mask): New variable.
4166 (max_input_desc): Rename from max_keyboard_desc.
4167 (fd_callback_info): New variable.
4168 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
4169 New functions.
4170 (Fmake_network_process): FD_SET write_mask.
4171 (deactivate_process): FD_CLR write_mask.
4172 (wait_reading_process_output): Connecting renamed to Writeok.
4173 check_connect removed. check_write is new. Remove references to gpm.
4174 Use Writeok/check_write unconditionally (i.e. no #ifdef
4175 NON_BLOCKING_CONNECT) instead of Connecting.
4176 Loop over file descriptors and call callbacks in fd_callback_info
4177 if file descriptor is ready for I/O.
4178 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
4179 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
4180 (keyboard_bit_set): Use max_input_desc.
4181 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
4182 Remove #ifdef subprocesses. Use max_input_desc.
4183 (init_process): Initialize write_mask and fd_callback_info.
4184
4185 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
4186
4187 * dbusbind.c: Include process.h.
4188 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
4189 (xd_read_message_1): New functions.
4190 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
4191 Handle watch for both read and write.
4192 (Fdbus_init_bus): Also register xd_toggle_watch.
4193 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4194 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
4195 to dbus_connection_flush.
4196 (xd_read_message): Move most of the code to xd_read_message_1.
4197 Call xd_read_message_1 until status is COMPLETE.
4198
41992010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
4200
4201 * term.c: Do not include sys/ioctl.h, not needed.
4202 (init_tty): Reorder code to reduce the number of #ifdefs.
4203 No code changes.
4204
42052010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4206
4207 * process.h: Set up GnuTLS support.
4208
4209 * process.c (make_process, Fstart_process)
4210 (read_process_output, send_process): Set up GnuTLS support for
4211 process input/output file descriptors.
4212
4213 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
4214
4215 * gnutls.c: The source code for GnuTLS support in Emacs.
4216
4217 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
4218
4219 * config.in: Set up GnuTLS support.
4220
4221 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
4222 (obj, LIBES): Set up GnuTLS support.
4223
42242010-09-26 Juanma Barranquero <lekktu@gmail.com>
4225
4226 * w32.c (get_emacs_configuration_options): Fix previous change.
4227
42282010-09-25 Chong Yidong <cyd@stupidchicken.com>
4229
4230 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
4231 alive before using it (Bug#6977).
4232
42332010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4234
4235 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
4236
4237 * dispextern.h: EMACS_INT/int fixup.
4238
4239 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
4240 fixup.
4241
4242 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
4243
42442010-09-25 Eli Zaretskii <eliz@gnu.org>
4245
4246 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
4247 (Fselect_window, window_scroll_pixel_based)
4248 (window_scroll_line_based, Frecenter, Fset_window_configuration):
4249 Use EMACS_INT for buffer positions.
4250
4251 * textprop.c (validate_interval_range, interval_of)
4252 (property_change_between_p, Fadd_text_properties)
4253 (set_text_properties_1, Fremove_text_properties)
4254 (Fremove_list_of_text_properties, Ftext_property_any)
4255 (Ftext_property_not_all, copy_text_properties)
4256 (text_property_list, extend_property_ranges)
4257 (verify_interval_modification): Use EMACS_INT for buffer
4258 positions.
4259
4260 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
4261 for buffer positions.
4262
4263 * process.c (read_process_output, send_process)
4264 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
4265 and string positions and size.
4266
4267 * print.c (print_object, print_string, strout): Use EMACS_INT for
4268 string indices.
4269
4270 * minibuf.c (string_to_object): Use EMACS_INT for string position
4271 and size.
4272
4273 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
4274
4275 * lread.c <read_from_string_index, read_from_string_index_byte>
4276 <read_from_string_limit, readchar_count>: Define EMACS_INT.
4277 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
4278 buffer positions and string length.
4279
4280 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
4281 EMACS_INT.
4282 (echo_truncate, adjust_point_for_property, read_char)
4283 (gen_help_event, make_lispy_event, modify_event_symbol)
4284 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
4285 for buffer positions and string length.
4286
4287 * keyboard.h (gen_help_event): Adjust prototype.
4288
4289 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
4290
4291 * commands.h <last_point_position>: Declare EMACS_INT.
4292
4293 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
4294 (truncate_echo_area): Accept EMACS_INT argument.
4295
4296 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
4297
4298 * lisp.h (truncate_echo_area): Adjust prototype.
4299
4300 * composite.c (composition_adjust_point): Return EMACS_INT.
4301
4302 * composite.h (composition_adjust_point): Adjust prototype.
4303
43042010-09-25 Juanma Barranquero <lekktu@gmail.com>
4305
4306 * process.c (Fmake_network_process): When arg :host is 'local,
4307 use address 127.0.0.1, not name "localhost". (Bug#6781)
4308
43092010-09-24 Eli Zaretskii <eliz@gnu.org>
4310
4311 * indent.c (Fcurrent_indentation, indented_beyond_p)
4312 (compute_motion): Use EMACS_INT for buffer position variables.
4313
4314 * lisp.h (indented_beyond_p): Adjust prototype.
4315
4316 * buffer.c (overlay_strings): Return EMACS_INT.
4317
4318 * buffer.h (overlay_strings): Adjust prototype.
4319
4320 * region-cache.c (pp_cache): Adjust format to arguments.
4321
4322 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
4323 (call_debugger): Use EMACS_INT for specpdl_size related variables.
4324 (verror): Use EMACS_INT for size of allocated buffer.
4325
4326 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
4327 positions.
4328
4329 * xdisp.c (redisplay_internal, try_window_id)
4330 (set_cursor_from_row, find_first_unchanged_at_end_row):
4331 Use EMACS_INT for buffer positions.
4332
4333 * dispextern.h (set_cursor_from_row): Adjust prototype.
4334
4335 * dispnew.c (increment_matrix_positions)
4336 (increment_row_positions, copy_glyph_row_contents)
4337 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
4338 positions.
4339
4340 * dispextern.h (mode_line_string, marginal_area_string)
4341 (increment_matrix_positions, increment_row_positions):
4342 Adjust prototypes.
4343
4344 * data.c (Faref, Faset): Use EMACS_INT for string length and
4345 positions.
4346
4347 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
4348 characters to insert.
4349
4350 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
4351 position and size.
4352
4353 * syntax.c (scan_words, update_syntax_table)
4354 (prev_char_comend_first, back_comment, skip_chars)
4355 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
4356 Use EMACS_INT for buffer and string positions.
4357
4358 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
4359
4360 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
4361 positions.
4362
43632010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4364
4365 * scroll.c (calculate_scrolling, line_ins_del)
4366 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
4367 conversion.
4368
4369 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
4370 (region_cache_backward, region_cache_forward)
4371 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
4372 conversion.
4373
4374 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4375
4376 * eval.c (verror): Fix EMACS_INT/int conversion.
4377
4378 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
4379 (print_preprocess, print_check_string_charset_prop)
4380 (print_object): Fix EMACS_INT/int conversion.
4381
4382 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4383
43842010-09-24 Eli Zaretskii <eliz@gnu.org>
4385
4386 * callproc.c (Fcall_process): Use EMACS_INT for count of
4387 characters read from the subprocess.
4388
4389 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
4390 positions.
4391 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
4392 positions.
4393
4394 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
4395 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
4396 length.
4397 (advance_to_char_boundary, Fset_buffer_multibyte)
4398 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4399 (overlay_touches_p, record_overlay_string, overlay_strings)
4400 (recenter_overlay_lists, fix_start_end_in_overlays)
4401 (modify_overlay, Fmove_overlay, report_overlay_modification)
4402 (evaporate_overlays): Use EMACS_INT for buffer positions.
4403
4404 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
4405 Adjust prototypes.
4406
4407 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
4408 positions.
4409
4410 * fns.c (Fcompare_strings, Fstring_lessp, concat)
4411 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
4412 (Fsubstring_no_properties, substring_both, Ffillarray)
4413 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
4414 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
4415 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
4416 (Fmd5): Use EMACS_INT for buffer and string positions and length
4417 variables and arguments.
4418
4419 * lisp.h (substring_both): Adjust prototype.
4420
44212010-09-24 Juanma Barranquero <lekktu@gmail.com>
4422
4423 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
4424 * w32fns.c (clipboard_sequence_fn): Don't declare.
4425 (globals_of_w32fns): Don't initialize it.
4426
44272010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4428
4429 * syntax.c (back_comment): Detect the case where a 1-char comment
4430 starter is also the 2nd char of a 2-char comment ender.
4431
44322010-09-23 Jan Djärv <jan.h.d@swipnet.se>
4433
4434 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
4435
44362010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4437
4438 * eval.c (verror): EMACS_INT/int cleanup.
4439
4440 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
4441 unwind_protect more than 2GB worth of functions.
4442
4443 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
4444
4445 * lisp.h: Have oblookup take EMACS_INT to allow interning big
4446 string and avoid compiler warnings.
4447 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
4448 all users.
4449
4450 * lread.c (oblookup): EMACS_INT/int cleanup.
4451
4452 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
4453
44542010-09-23 Eli Zaretskii <eliz@gnu.org>
4455
4456 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
4457
4458 * lisp.h (clip_to_bounds): Adjust prototype.
4459
4460 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
4461
44622010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4463
4464 * lisp.h: doprnt.c EMACS_INT/int cleanup.
4465
4466 * doprnt.c (doprnt): EMACS_INT/int cleanup.
4467
4468 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
4469 cleanup.
4470
4471 * lisp.h: Change the definition of all marker.c functions that
4472 take and return buffer stuff to be EMACS_INT instead of int.
4473
4474 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
4475 (buf_charpos_to_bytepos, bytepos_to_charpos)
4476 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
4477 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
4478 for all buffer positions.
4479
44802010-09-23 Chong Yidong <cyd@stupidchicken.com>
4481
4482 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4483 (split_interval_right, find_interval, next_interval)
4484 (delete_node, delete_interval, interval_deletion_adjustment)
4485 (adjust_intervals_for_deletion, merge_interval_right)
4486 (merge_interval_left, graft_intervals_into_buffer)
4487 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
4488
4489 * intervals.h (traverse_intervals): Update prototype.
4490
44912010-09-23 Eli Zaretskii <eliz@gnu.org>
4492
4493 * indent.c (compute_motion): Use EMACS_INT for arguments to
4494 region_cache_forward.
4495
4496 * region-cache.c (struct boundary, struct region_cache):
4497 Use EMACS_INT for positions.
4498 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
4499 (delete_cache_boundaries, set_cache_region)
4500 (invalidate_region_cache, know_region_cache)
4501 (region_cache_forward, region_cache_backward, pp_cache):
4502 Use EMACS_INT for buffer positions.
4503
4504 * region-cache.h (know_region_cache, invalidate_region_cache)
4505 (region_cache_forward, region_cache_backward): Adjust prototypes.
4506
4507 * search.c (string_match_1, fast_c_string_match_ignore_case)
4508 (looking_at_1, scan_buffer, scan_newline)
4509 (find_next_newline_no_quit, find_before_next_newline)
4510 (search_command, trivial_regexp_p, search_buffer, simple_search)
4511 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
4512 and string positions and length.
4513
4514 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
4515 (find_before_next_newline): Adjust prototypes.
4516
4517 * editfns.c (transpose_markers, update_buffer_properties)
4518 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
4519 (get_pos_property, Fconstrain_to_field)
4520 (Fline_beginning_position, Fline_end_position, Fprevious_char)
4521 (Fchar_after, Fchar_before, Finsert_char)
4522 (Finsert_buffer_substring, Fcompare_buffer_substrings)
4523 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
4524 Use EMACS_INT for buffer and string position variables.
4525 (Finsert_char): Protect against too large insertions.
4526
4527 * lisp.h (clip_to_bounds): Adjust prototype.
4528
4529 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4530 (balance_an_interval, split_interval_right, split_interval_left)
4531 (find_interval, next_interval, update_interval)
4532 (adjust_intervals_for_insertion, delete_node, delete_interval)
4533 (interval_deletion_adjustment, adjust_intervals_for_deletion)
4534 (offset_intervals, merge_interval_right, merge_interval_left)
4535 (graft_intervals_into_buffer, adjust_for_invis_intang)
4536 (move_if_not_intangible, get_local_map, copy_intervals)
4537 (copy_intervals_to_string, compare_string_intervals)
4538 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
4539 and for interval tree size.
4540
4541 * intervals.h (traverse_intervals, split_interval_right)
4542 (split_interval_left, find_interval, offset_intervals)
4543 (graft_intervals_into_buffer, copy_intervals)
4544 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
4545 (update_interval): Adjust prototypes.
4546
4547 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
4548 Use EMACS_INT for buffer position variables and arguments.
4549
4550 * composite.c (get_composition_id, find_composition)
4551 (run_composition_function, compose_text)
4552 (composition_gstring_width, autocmp_chars)
4553 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
4554 for buffer positions and string length variables and arguments.
4555
4556 * composite.h (get_composition_id, find_composition, compose_text)
4557 (composition_gstring_width): Adjust prototypes.
4558
4559 * editfns.c (Fformat): Use EMACS_INT for string size variables.
4560
4561 * xdisp.c (store_mode_line_noprop, display_mode_element):
4562 Use EMACS_INT for string positions.
4563
4564 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
4565 position arguments.
4566
4567 * intervals.h (get_property_and_range): Adjust prototype.
4568
4569 * character.c (parse_str_as_multibyte, str_as_multibyte)
4570 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4571 (string_count_byte8, string_escape_byte8, c_string_width)
4572 (strwidth, lisp_string_width, multibyte_chars_in_text):
4573 Use EMACS_INT for string length variables and arguments.
4574
4575 * character.h (parse_str_as_multibyte, str_as_multibyte)
4576 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4577 (c_string_width, strwidth, lisp_string_width):
4578 Adjust prototypes.
4579
4580 * font.c (font_intern_prop): Use EMACS_INT for string length
4581 variables.
4582
4583 * font.c (font_intern_prop): Use EMACS_INT for string length
4584 variables.
4585
4586 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
4587 variables.
4588
4589 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
4590 (Fmake_string): Protect against too large strings.
4591 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4592 (live_misc_p): Use ptrdiff_t instead of int for pointer
4593 differences.
4594 (string_bytes, check_sblock, check_string_free_list)
4595 (allocate_string_data, compact_small_strings, Fmake_string)
4596 (Fmake_bool_vector, make_string, make_unibyte_string)
4597 (make_multibyte_string, make_string_from_bytes)
4598 (make_specified_string_string, Fmake_list, Fmake_vector):
4599 Use EMACS_INT for string length variables and arguments.
4600 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
4601 (Fpurecopy): Use EMACS_INT for string size.
4602 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
4603 for vector size.
4604
4605 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
4606 (make_string_from_bytes, make_specified_string_string)
4607 (make_pure_string, string_bytes, check_point_in_composition):
4608 Adjust prototypes.
4609
46102010-09-22 Eli Zaretskii <eliz@gnu.org>
4611
4612 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
4613 (check_translation): Use EMACS_INT for buffer positions and
4614 length.
4615
4616 * undo.c (record_marker_adjustment, record_delete)
4617 (record_change, record_point, record_insert)
4618 (record_property_change, Fprimitive_undo): Use EMACS_INT for
4619 buffer positions.
4620
4621 * lisp.h (record_marker_adjustment, record_delete)
4622 (record_change, record_point, record_insert)
4623 (record_property_change, Fprimitive_undo): Adjust prototypes.
4624
46252010-09-22 Juanma Barranquero <lekktu@gmail.com>
4626 Eli Zaretskii <eliz@gnu.org>
4627
4628 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
4629
46302010-09-22 Eli Zaretskii <eliz@gnu.org>
4631
4632 * minibuf.c (Fminibuffer_contents)
4633 (Fminibuffer_contents_no_properties)
4634 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
4635 positions.
4636
4637 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
4638 mark.
4639
4640 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
4641 (allocate_string_data): Accept EMACS_INT for string length.
4642
4643 * editfns.c (Ffield_string, Ffield_string_no_properties)
4644 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
4645 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
4646 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
4647 (Ffield_end): Use EMACS_INT for buffer positions.
4648
4649 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
4650 point with mark.
4651
4652 * lisp.h (allocate_string_data, make_uninit_string)
4653 (make_uninit_multibyte_string, make_buffer_string)
4654 (make_buffer_string_both): Adjust prototypes.
4655
46562010-09-22 Chong Yidong <cyd@stupidchicken.com>
4657
4658 * xml.c: Switch to GNU indentation.
4659 (make_dom): Change parse tree format to match xml.el.
4660 (Fxml_parse_html_string_internal): Rename from html-parse-string.
4661 (Fxml_parse_string_internal): Rename from xml-parse-string.
4662
46632010-09-22 Kenichi Handa <handa@m17n.org>
4664
4665 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
4666 only if we are not at a composition.
4667 (set_iterator_to_next): Give it->end_charpos to
4668 composition_compute_stop_pos.
4669 (set_iterator_to_next, next_element_from_buffer): Likewise.
4670
4671 * dispnew.c (buffer_posn_from_coords): Fix position when the
4672 current display element is a grapheme cluster in bidi-reordered
4673 region.
4674
46752010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4676
4677 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
4678 the regions may overlap.
4679
46802010-09-21 Juanma Barranquero <lekktu@gmail.com>
4681
4682 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
4683
46842010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
4685
4686 * emacs.c: Do not include sys/ioctl.h, not needed.
4687
4688 * doprnt.c: Do not include stdlib.h, config.h does it.
4689 Move #include before macro definition.
4690
46912010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
4692
4693 * Makefile.in (temacs): Link using $(CC) not $(LD).
4694 (LD_FIRSTFLAG): Define using autoconf.
4695 (LD): Remove.
4696
4697 Remove HAVE_TERMIOS definitions.
4698 * s/usg5-4-common.h (HAVE_TERMIOS):
4699 * s/template.h (HAVE_TERMIOS):
4700 * s/gnu-linux.h (HAVE_TERMIOS):
4701 * s/darwin.h (HAVE_TERMIOS):
4702 * s/cygwin.h (HAVE_TERMIOS):
4703 * s/bsd-common.h (HAVE_TERMIOS):
4704 * s/aix4-2.h (HAVE_TERMIOS):
4705 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
4706 defined on all non-MS platforms.
4707 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
4708
4709 * xterm.c (xt_action_hook): Use const.
4710
47112010-09-20 Juanma Barranquero <lekktu@gmail.com>
4712
4713 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
4714 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
4715 (gethostname) [!HAVE_SOCKETS]: Remove.
4716 (SOCK_REPLACE_HANDLE): Remove macro.
4717 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
4718 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
4719 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
4720 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
4721
47222010-09-18 Eli Zaretskii <eliz@gnu.org>
4723
4724 * deps.mk (xml.o): Add dependencies.
4725
4726 * xdisp.c (Fcurrent_bidi_paragraph_direction):
4727 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
4728
4729 * bidi.c (bidi_paragraph_init): Accept an additional argument
4730 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
4731 search back until a paragraph with a strong directional character
4732 is found, and use that to determine paragraph's base direction.
4733
4734 * dispextern.h (bidi_paragraph_init): Update prototype.
4735
47362010-09-17 Eli Zaretskii <eliz@gnu.org>
4737
4738 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
4739 of w32api >= 3.15. (Bug#6989)
4740
47412010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4742
4743 * process.c (wait_reading_process_output): Don't message about
4744 accept-process-output unless the time limit really is zero.
4745
47462010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4747
4748 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
4749 int/Lisp_Object mixup).
4750
47512010-09-17 Jan Djärv <jan.h.d@swipnet.se>
4752
4753 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
4754 not HELP.
4755
47562010-09-17 Stephen Berman <stephen.berman@gmx.net>
4757
4758 * frame.c (Ftool_bar_pixel_width): New function to expose tool
4759 bar's pixel width to Lisp (Bug#7048).
4760
47612010-09-14 Juanma Barranquero <lekktu@gmail.com>
4762
4763 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
4764
47652010-09-17 Jan Djärv <jan.h.d@swipnet.se>
4766
4767 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
4768 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
4769
47702010-09-17 Kenichi Handa <handa@m17n.org>
4771
4772 * ftfont.c (ftfont_check_otf): Fix previous change.
4773
47742010-09-14 Kenichi Handa <handa@m17n.org>
4775
4776 * ftfont.c (ftfont_check_otf): Fix the case of checking just
4777 existence of GSUB or GPOS.
4778
47792010-09-14 Juanma Barranquero <lekktu@gmail.com>
4780
4781 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
4782
47832010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4784
4785 * xml.c (parse_buffer): Rename to parse_string(), since that's
4786 what it does.
4787 (parse_string): Return nil when the document can't be parsed.
4788
47892010-09-14 Jan Djärv <jan.h.d@swipnet.se>
4790
4791 * xterm.c (get_current_vm_state): New function.
4792 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
4793 want_fullscreen so set_wm_state calls are few (Bug#7013).
4794 (x_handle_net_wm_state): Move code to get_current_vm_state and
4795 call that function.
4796
47972010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
4798
4799 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
4800
48012010-09-14 Kenichi Handa <handa@m17n.org>
4802
4803 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
4804 we may use designation or locking-shift.
4805
48062010-09-14 Kenichi Handa <handa@m17n.org>
4807
4808 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
4809 sequence when the source is multibyte.
4810
48112010-09-14 Andreas Schwab <schwab@linux-m68k.org>
4812
4813 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
4814 Don't make first argument optional. Doc fix.
4815
48162010-09-14 Leo <sdl.web@gmail.com> (tiny change)
4817
4818 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
4819 parameters for the doc string.
4820
48212010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4822
4823 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
4824
48252010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4826
4827 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
4828 (syms_of_fns): Don't defsubr Sy_or_n_p.
4829 * lisp.h: Don't declare Fy_or_n_p.
4830 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
4831
48322010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
4833
4834 * xml.c (Fxml_parse_buffer): New function to parse XML files.
4835
48362010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4837
4838 * xml.c: New file.
4839 (Fhtml_parse_buffer): New function to interface to the libxml2
4840 html parsing function.
4841
48422010-09-05 Juanma Barranquero <lekktu@gmail.com>
4843
4844 * biditype.h: Regenerate.
4845
48462010-09-04 Andreas Schwab <schwab@linux-m68k.org>
4847
4848 * nsimage.m (ns_load_image): Check argument types.
4849
4850 * image.c: Remove all uses of gcpro.
4851 (xpm_load): Check all lisp types.
4852 (pbm_load): Likewise.
4853 (png_load): Likewise.
4854 (jpeg_load): Likewise.
4855 (tiff_load): Likewise.
4856 (gif_load): Likewise.
4857 (imagemagick_load_image): Likewise.
4858 (imagemagick_load): Likewise.
4859 (svg_load): Likewise.
4860 (gs_load): Likewise.
4861
48622010-09-04 Eli Zaretskii <eliz@gnu.org>
4863
4864 * w32uniscribe.c (uniscribe_shape): Update commentary.
4865 Don't try to reorder grapheme clusters, since LGSTRING should always
4866 hold them in the logical order.
4867 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
4868 return glyph codes in the logical order.
4869
48702010-09-04 Andreas Schwab <schwab@linux-m68k.org>
4871
4872 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
4873 (imagemagick_load_image): Fix type mismatch.
4874 (Fimagemagick_types): Likewise. Doc fix.
4875
48762010-09-02 Jan Djärv <jan.h.d@swipnet.se>
4877
4878 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
4879
4880 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
4881
4882 * xselect.c: Remove declaration of cut-buffer objects and functions.
4883 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
4884 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
4885 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
4886 (Fx_rotate_cut_buffers_internal): Remove.
4887 (syms_of_xselect): Remove defsubr of above.
4888 Remove intern of QCUT_BUFFERn.
4889
48902010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
4891
4892 * cmds.c (Vblink_paren_function): Remove.
4893 (internal_self_insert): Make it insert N chars at a time.
4894 Don't call blink-paren-function.
4895 (Fself_insert_command): Adjust accordingly.
4896 (syms_of_cmds): Don't declare blink-paren-function.
4897
48982010-08-31 Kenichi Handa <handa@m17n.org>
4899
4900 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
4901 characters.
4902
4903 * term.c (encode_terminal_code): Fix the previous change.
4904 (produce_glyphs): Don't set it->char_to_display here.
4905 Don't handle unibyte-display-via-language-environment here.
4906 (produce_special_glyphs): Set temp_it.char_to_display before
4907 calling produce_glyphs.
4908
4909 * xdisp.c (get_next_display_element): Set it->char_to_display
4910 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
4911 characters.
4912 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
4913 calling PRODUCE_GLYPHS.
4914 (append_space_for_newline): Save and store it->char_to_display.
4915 Set it->char_to_display before calling PRODUCE_GLYPHS.
4916 (extend_face_to_end_of_line): Set it->char_to_display before
4917 calling PRODUCE_GLYPHS.
4918 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
4919 character to its byte value.
4920 (get_char_glyph_code): New function.
4921 (produce_stretch_glyph): Set it2.char_to_display too before
4922 calling x_produce_glyphs.
4923 (x_produce_glyphs): Simplify by using the same code for ASCII and
4924 non-ASCII characters. Don't set it->char_to_display here.
4925 Don't handle unibyte-display-via-language-environment here. For a
4926 character of no glyph, use font->space_width instead of FONT_WIDTH.
4927
49282010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
4929
4930 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
4931
49322010-08-31 Chong Yidong <cyd@stupidchicken.com>
4933
4934 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
4935
49362010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
4937
4938 * marker.c (Fcopy_marker): Make the first arg optional.
4939
49402010-08-30 Kenichi Handa <handa@m17n.org>
4941
4942 * composite.c (composition_update_it): Fix computing of
4943 cmp_it->width.
4944
49452010-08-29 Kenichi Handa <handa@m17n.org>
4946
4947 * term.c (encode_terminal_code): Encode byte chars to the
4948 corresponding bytes.
4949
49502010-08-29 Jan Djärv <jan.h.d@swipnet.se>
4951
4952 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
4953
49542010-08-26 Kenichi Handa <handa@m17n.org>
4955
4956 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
4957 on calling composition_compute_stop_pos.
4958
49592010-08-25 Kenichi Handa <handa@m17n.org>
4960
4961 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
4962 :otf.
4963
4964 * composite.c (composition_compute_stop_pos): Don't break
4965 composition at PT.
4966 (composition_reseat_it): Likewise. Fix calculation of character
4967 position starting a composition.
4968 (Fcomposition_get_gstring): Don't limit the number of components
4969 for automatic composition.
4970
49712010-08-25 Kenichi Handa <handa@m17n.org>
4972
4973 * composite.c (composition_compute_stop_pos): In forward search,
4974 pay attention to the possibility that some character after ENDPOS
4975 will be composed with charactrs before ENDPOS.
4976
49772010-08-24 Chong Yidong <cyd@stupidchicken.com>
4978
4979 * keyboard.c (command_loop_1): Don't clobber primary selection
4980 during handle-switch-frame (Bug#6872).
4981
49822010-08-23 Michael Albinus <michael.albinus@gmx.de>
4983
4984 * dbusbind.c: Accept UNIX domain sockets as bus address.
4985 (Fdbus_close_bus): New function.
4986 (Vdbus_registered_buses): New variable.
4987 (xd_initialize): Implement string as bus address.
4988 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
4989 (Fdbus_get_unique_name, Fdbus_call_method)
4990 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4991 (Fdbus_method_error_internal, Fdbus_send_signal)
4992 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
4993 check. This is done in xd_initialize_bus. Adapt doc string, if
4994 necessary.
4995 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
4996 Vdbus_registered_buses.
4997 (Vdbus_registered_objects_table): Create hash.
4998
49992010-08-22 Juri Linkov <juri@jurta.org>
5000
5001 * keyboard.c (Fexecute_extended_command): Move reading a command name
5002 with `completing-read' to a new Elisp function `read-extended-command'.
5003 Call it to read a command to `function' (bug#5364, bug#5214).
5004
50052010-08-22 Chong Yidong <cyd@stupidchicken.com>
5006
5007 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
5008
50092010-08-22 Andreas Schwab <schwab@linux-m68k.org>
5010
5011 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
5012 instead of SAFE_ALLOCA.
5013
50142010-08-22 Chong Yidong <cyd@stupidchicken.com>
5015
5016 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
5017 (Bug#6214).
5018
50192010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5020
5021 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
5022
50232010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5024
5025 * doc.c (Fsnarf_documentation): Initialize skip_file before
5026 build-files test.
5027
50282010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
5029
5030 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
5031 New definitions.
5032 (HAVE_TERMIO): Remove.
5033
50342010-08-22 Eli Zaretskii <eliz@gnu.org>
5035
5036 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
5037
5038 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
5039 for w32.
5040
5041 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
5042 it's done in nt/config.nt.
5043
5044 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
5045
5046 * unexcoff.c (report_error, make_hdr, write_segment)
5047 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
5048 Convert argument lists and prototypes to ANSI C.
5049 (make_hdr, write_segment): Remove unused variables.
5050 (unexec): Remove commented-out line. Initialize `new' to shut up
5051 compiler warnings.
5052
50532010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
5054
5055 Simplify termio code.
5056 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
5057 HAVE_TERMIO code is obsolete.
5058 Replace HAVE_TERMIOS conditionals with !DOS_NT.
5059 * systty.h: Do not define HAVE_TCATTR.
5060 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
5061 Do not define EMACS_HAVE_TTY_PGRP. Only define
5062 EMACS_GET_TTY_PGRP for !DOS_NT.
5063 * sysdep.c: Include sysselect.h unconditionally. Do not include
5064 sys/ioctl.h and termios.h, systty.h does it.
5065 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
5066 (init_baud_rate): Remove HAVE_TERMIO code.
5067 (child_setup_tty): Remove HAVE_TERMIO code.
5068 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
5069 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
5070 (new_ltchars, new_tchars): Remove, unused.
5071 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
5072 code. Remove special casing for __mips__, it was a no-op.
5073 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
5074 (init_sys_modes): Remove HPUX special case.
5075 * process.c: Include stdlib.h unconditionally. Do not include
5076 fcntl.h, systty.h does it. Remove conditional code for
5077 HAVE_SERIAL, it is always true.
5078 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
5079 always true when SIGNALS_VIA_CHARACTERS is true.
5080 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
5081 !WINDOWSNT means HAVE_TERMIOS.
5082 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
5083 conditional, which is true for all HAVE_TERMIOS systems.
5084 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
5085 instead of HAVE_TERMIOS.
5086 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
5087 EMACS_HAVE_TTY_PGRP.
5088 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
5089 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
5090 anyway.
5091
50922010-08-21 Eli Zaretskii <eliz@gnu.org>
5093
5094 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
5095 mirroring pixel positions.
5096
50972010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
5098
5099 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
5100 write only.
5101 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
5102 malloc_sbrk_used, nothing uses them.
5103
5104 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
5105 defined, unconditionally defined in lisp.h.
5106
5107 * term.c: Do not include <termios.h>, systty.h does it.
5108
5109 * s/unixware.h (HAVE_TCATTR):
5110 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
5111 systty.h defines it when HAVE_TERMIOS is defined.
5112
51132010-08-20 Eli Zaretskii <eliz@gnu.org>
5114
5115 * dispnew.c (buffer_posn_from_coords): Fix last change for text
5116 terminals: add one-character offset for R2L lines.
5117
5118 * emacs.c <emacs_version>: Add a comment regarding
5119 msdos/mainmake.v2's dependency on the syntax of this declaration.
5120
51212010-08-20 Eli Zaretskii <eliz@gnu.org>
5122
5123 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
5124 position for R2L lines by mirroring the pixel position wrt the
5125 text are box. Improve commentary.
5126
51272010-08-20 Andreas Schwab <schwab@linux-m68k.org>
5128
5129 * image.c (imagemagick_clear_image): Remove debugging output.
5130
51312010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
5132
5133 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
5134 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
5135 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
5136 self-insert-face.
5137 (syms_of_cmds): Initialize the new vars.
5138
51392010-08-19 Jason Rumney <jasonr@gnu.org>
5140
5141 * w32menu.c (set_frame_menubar): Remove call to undefined function.
5142
5143 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
5144
51452010-08-19 Jan Djärv <jan.h.d@swipnet.se>
5146
5147 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
5148
51492010-08-18 Eli Zaretskii <eliz@gnu.org>
5150
5151 * xterm.c (x_draw_bar_cursor):
5152 * w32term.c (x_draw_bar_cursor): If the character under cursor is
5153 R2L, draw the bar cursor on its right rather than on its left.
5154
51552010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
5156
5157 * eval.c (Fdefmacro): Only obey one declaration.
5158
5159 * casefiddle.c (casify_region): Setup gl_state.
5160
51612010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5162
5163 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
5164
51652010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5166
5167 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
5168
51692010-08-18 David De La Harpe Golden <david@harpegolden.net>
5170
5171 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
5172 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
5173 QPRIMARY => NXPrimaryPboard.
5174 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
5175 NXPrimaryPboard => QPRIMARY.
5176 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
5177 NXSecondaryPboard = SecondarySelection.
5178 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
5179
51802010-08-18 Joakim Verona <joakim@verona.se>
5181
5182 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
5183 defined:
5184 (imagemagick_image_p): New function to test for ImageMagic image.
5185 (imagemagick_load): New function to load ImageMagick image.
5186 (imagemagick_load_image): New function, helper for imagemagick_load.
5187 (imagemagick-types): New function.
5188 (Qimagemagick): New Lisp_object.
5189 (imagemagick-render-type): New variable, decides which renderer to use.
5190
51912010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
5192
5193 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
5194 is a string.
5195
51962010-08-17 Jan Djärv <jan.h.d@swipnet.se>
5197
5198 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
5199 x_set_tool_bar_position handler.
5200
52012010-08-17 Eli Zaretskii <eliz@gnu.org>
5202
5203 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
5204 x_set_tool_bar_position handler, needed to support changes from
5205 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
5206
52072010-08-16 Jan Djärv <jan.h.d@swipnet.se>
5208
5209 * nsselect.m: Include keyboard.h for QPRIMARY, remove its
5210 declaration (Bug#6863).
5211 (syms_of_nsselect): Don't intern QPRIMARY.
5212
5213 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
5214
5215 * keyboard.h (QPRIMARY): Declare (Bug#6864).
5216
52172010-08-16 Chong Yidong <cyd@stupidchicken.com>
5218
5219 * keyboard.c (command_loop_1): Avoid setting selection twice,
5220 since it's done in deactivate-mark as well.
5221 (Vselect_active_regions): Change default to t. Replace `lazy'
5222 with non-default value `only', meaning only set PRIMARY for
5223 temporarily active regions.
5224
5225 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
5226 select-active-regions.
5227
52282010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5229
5230 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
5231 isn't a string.
5232
52332010-08-15 Andreas Schwab <schwab@linux-m68k.org>
5234
5235 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
5236
52372010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5238
5239 * keyboard.c (parse_tool_bar_item): malloc buf.
5240 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
5241 new_lbl (Bug#6855).
5242
52432010-08-14 Eli Zaretskii <eliz@gnu.org>
5244
5245 * xterm.c (x_draw_stretch_glyph_string):
5246 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
5247 the cursor on the right edge of the stretch glyph.
5248
5249 * xdisp.c (window_box_right_offset, window_box_right):
5250 Fix commentary.
5251
5252 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
5253 direction when point is inside a run of whitespace characters.
5254
5255 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
5256
52572010-08-14 Jason Rumney <jasonr@gnu.org>
5258
5259 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
5260
52612010-08-14 Chong Yidong <cyd@stupidchicken.com>
5262
5263 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
5264
52652010-08-13 Jason Rumney <jasonr@gnu.org>
5266
5267 * w32menu.c (simple_dialog_show): Use unicode message box if available.
5268 (MessageBoxW_Proc): New function typedef.
5269 (unicode-message-box): New function pointer.
5270 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
5271
52722010-08-13 Jan Djärv <jan.h.d@swipnet.se>
5273
5274 * frame.h (Qtool_bar_position): Declare.
5275
5276 * xfns.c (Fx_create_frame): Call x_default_parameter for
5277 Qtool_bar_position.
5278
52792010-08-13 Eli Zaretskii <eliz@gnu.org>
5280
5281 * unexcoff.c: Remove the parts used when "emacs" is not defined.
5282 (report_error, report_error_1): Ditto.
5283 (write_segment): Remove "#if 0" unused code.
5284 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
5285 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
5286 (start_of_text): Remove unused function (was used only if NO_REMAP
5287 was NOT defined).
5288
5289 * msdos.c (IT_set_face): Fix format string to match argument
5290 types.
5291 (IT_write_glyphs, IT_note_mode_line_highlight)
5292 (IT_set_frame_parameters): Remove unused variables.
5293 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
5294 (IT_set_terminal_modes): Disambiguate expression in if clause.
5295 (Fmsdos_remember_default_colors): Return Qnil.
5296 (IT_set_frame_parameters): Add parens to disambiguate boolean
5297 expression for logging the cursor type to termscript.
5298 (keyboard_layout_list, keypad_translate_map)
5299 (grey_key_translate_map): Add braces in inner initializers.
5300 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
5301 (dos_rawgetc): Remove unused label.
5302 (XMenuActivate): Add braces to remove ambiguous `else'.
5303 (dos_ttraw): Always return a value.
5304 (spawnve): Declare.
5305 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
5306
5307 * dosfns.h (x_set_title): Declare.
5308
5309 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
5310 Remove unused variables.
5311
5312 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
5313 variables.
5314 (init_dosfns): Declare get_lim_data.
5315 (system_process_attributes): Declare Fget_internal_run_time.
5316
5317 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
5318 list to be consistent with menu.h.
5319
5320 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
5321 warnings due to mixing of "char *" and "const char *".
5322
53232010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5324
5325 Introduce a new comment style "c" flag.
5326 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
5327 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
5328 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
5329 (syntax_prefix_flag_p): New function.
5330 (Fstring_to_syntax): Understand new "c" flag.
5331 (Finternal_describe_syntax_value): Recognize new flag; use the
5332 SYNTAX_FLAGS_* macros.
5333 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
5334 comment style to accomodate the new styles.
5335 (back_comment, forw_comment, Fforward_comment, scan_lists)
5336 (scan_sexps_forward): Update code to obey the new comment style flag.
5337
5338 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
5339
5340 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
5341
53422010-08-11 Jan Djärv <jan.h.d@swipnet.se>
5343
5344 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
5345 first.
5346 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
5347
5348 * gtkutil.h (xg_check_special_colors): Declare.
5349
5350 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
5351 (xg_create_frame_widgets): Connect theme name changes to
5352 style_changed_cb.
5353
5354 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
5355 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
5356 (x_term_init): Use char[] display_opt and name_opt instead of
5357 string literal. file is const char*.
5358
5359 * xsmfns.c (NOSPLASH_OPT): Change to char[].
5360 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
5361 props. Free them at the end.
5362
5363 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
5364
5365 * xrdb.c (get_system_app): Make path const and use char *p for
5366 non-const char.
5367
5368 * xmenu.c (Fx_popup_dialog): error_name is const char*.
5369 (xmenu_show): error parameter is const char **. pane_string is const
5370 char *.
5371 (button_names): Is const char *.
5372 (xdialog_show): error_name and pane_string is const.
5373
5374 * process.h (synch_process_death): Is const char*.
5375
5376 * w32menu.c (w32_menu_show):
5377 * nsmenu.m (ns_menu_show): error parameter is const char **.
5378
5379 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
5380 is const char **.
5381
5382 * menu.c (Fx_popup_menu): error_name is const.
5383
5384 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
5385 with unsigned char and XtPointer with void *.
5386
5387 * gtkutil.h: Replace widget_value with struct _widget_value.
5388 (enum button_type, struct _widget_value): Remove and use the one from
5389 keyboard.h.
5390
5391 * gtkutil.c (get_utf8_string): Always return an allocated string.
5392 Parameter is const.
5393 (create_dialog, xg_create_one_menuitem, create_menus)
5394 (xg_item_label_same_p, xg_update_menu_item): Free result from
5395 get_utf8_string.
5396 (xg_separator_p, xg_item_label_same_p): label is const.
5397
5398 * font.h (font_open_by_name): Make name const.
5399
5400 * font.c (font_open_by_name): Make name const.
5401
5402 * floatfns.c (matherr): Use a const char* variable for x->name.
5403
5404 * emacs.c (main): Pass char[] to putenv instead of literal.
5405
5406 * callproc.c (synch_process_death): Make const.
5407 (Fcall_process): Make signame const.
5408
5409 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
5410 (addDisplayItemWithImage): Use const char*.
5411
5412 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
5413 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
5414
5415 * nsfont.m (ns_descriptor_to_entity): Use const char*.
5416
5417 * keyboard.h (_widget_value): name, value and key are const char*.
5418
5419 * unexmacosx.c (unexec_error): Use const char *.
5420
54212010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5422
5423 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5424 (font_parse_name, font_open_by_name):
5425 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5426 (font_parse_name, font_open_by_name): Remove const.
5427
54282010-08-09 Andreas Schwab <schwab@linux-m68k.org>
5429
5430 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
5431 definition.
5432
5433 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
5434 * m/amdx86-64.h: Likewise.
5435 * m/arm.h: Likewise.
5436 * m/hp800.h: Likewise.
5437 * m/ia64.h: Likewise.
5438 * m/ibmrs6000.h: Likewise.
5439 * m/ibms390.h: Likewise.
5440 * m/intel386.h: Likewise.
5441 * m/iris4d.h: Likewise.
5442 * m/m68k.h: Likewise.
5443 * m/macppc.h: Likewise.
5444 * m/mips.h: Likewise.
5445 * m/sh3.h: Likewise.
5446 * m/sparc.h: Likewise.
5447 * m/template.h: Likewise.
5448 * m/vax.h: Likewise.
5449 * m/xtensa.h: Likewise.
5450 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
5451 WORDS_BIG_ENDIAN.
5452 * lisp.h: Likewise.
5453 * md5.c: Likewise.
5454 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
5455
54562010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5457
5458 Use const char* instead of char*.
5459 Reduce the number of warnings with -Wwrite-strings.
5460 * xrdb.c (get_environ_db, get_system_name):
5461 * unexelf.c (find_section):
5462 * term.c (string_cost, string_cost_one_line, per_line_cost)
5463 (get_named_tty, init_tty):
5464 * sysdep.c (sys_subshell):
5465 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
5466 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
5467 * search.c (Freplace_match):
5468 * process.c (Fmake_network_process, send_process, init_process):
5469 * lread.c (Fload, init_lread):
5470 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
5471 * keyboard.c (parse_tool_bar_item, struct event_head):
5472 * gtkutil.h (xg_get_font_name):
5473 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
5474 (make_widget_for_menu_item, make_menu_item, create_menus)
5475 (xg_make_tool_item):
5476 * font.c (parse_matrix, font_parse_name):
5477 * floatfns.c (rounding_driver, float_error_fn_name):
5478 * filelock.c (get_boot_time_1, lock_file_1):
5479 * fileio.c (barf_or_query_if_file_exists, check_writable):
5480 * editfns.c (get_system_name, get_operating_system_release)
5481 (Fencode_time, Fset_time_zone_rule):
5482 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
5483 * buffer.c (defvar_per_buffer): Use const.
5484
54852010-08-08 Kenichi Handa <handa@m17n.org>
5486
5487 * charset.c: Include <stdlib.h>.
5488 (struct charset_sort_data): New struct.
5489 (charset_compare): New function.
5490 (Fsort_charsets): New function.
5491 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
5492
5493 * coding.c (decode_coding_iso_2022): Fix checking of dimension
5494 number in CTEXT extended segment.
5495
54962010-08-08 Juanma Barranquero <lekktu@gmail.com>
5497
5498 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
5499 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
5500
55012010-08-08 Juanma Barranquero <lekktu@gmail.com>
5502
5503 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
5504 (Fhash_table_size): Fix typos in docstrings.
5505 (Fmake_hash_table): Doc fix.
5506
55072010-08-08 Juanma Barranquero <lekktu@gmail.com>
5508
5509 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
5510 Doc fix (bug#5625).
5511
55122010-08-08 Ken Brown <kbrown@cornell.edu>
5513
5514 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
5515 the MSDOS definition.
5516
55172010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
5518
5519 Use const char* instead of char*.
5520 * xterm.c (x_create_toolkit_scroll_bar):
5521 * xfont.c (xfont_list_pattern):
5522 * xfns.c (x_default_scroll_bar_color_parameter)
5523 (xic_create_fontsetname, x_default_font_parameter)
5524 (x_screen_planes):
5525 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
5526 (store_mode_line_string, decode_mode_spec, display_string):
5527 * menu.c (digest_single_submenu):
5528 * keymap.h (initial_define_key, initial_define_lispy_key):
5529 * keymap.c (initial_define_key, initial_define_lispy_key):
5530 * image.c (image_error, image_keyword):
5531 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
5532 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
5533 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
5534 (ftfont_list, ftfont_match):
5535 * frame.c (frame_parm_table):
5536 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5537 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5538 (font_add_log, font_deferred_log):
5539 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5540 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5541 (font_add_log, font_deferred_log):
5542 * emacs.c (argmatch):
5543 * dispextern.h (struct it):
5544 * coding.c (ENCODE_DESIGNATION):
5545 * charset.c (define_charset_internal): Use const.
5546
5547 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
5548
5549 * xrdb.c: Remove include guard.
5550 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
5551 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
5552 realloc->xrealloc instead of using #defines.
5553
55542010-08-08 Eli Zaretskii <eliz@gnu.org>
5555
5556 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
5557 * editfns.c (Fline_beginning_position, Fline_end_position):
5558 State in the doc strings that start and end of line are in the
5559 logical order.
5560
5561 * xdisp.c (display_line): Move the handling of overlay arrow after
5562 the call to find_row_edges. (Bug#6699)
5563
55642010-08-07 Chong Yidong <cyd@stupidchicken.com>
5565
5566 * keyboard.c (command_loop_1):
5567 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
5568
55692010-08-07 Chong Yidong <cyd@stupidchicken.com>
5570
5571 * insdel.c (prepare_to_modify_buffer): Save active region text to
5572 Vsaved_region_selection.
5573
5574 * xselect.c (QPRIMARY): Move to keyboard.c.
5575
5576 * keyboard.c (Vselect_active_regions): Move from simple.el.
5577 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
5578 (command_loop_1): Set window selection prior to deactivating the mark.
5579
55802010-08-07 Juanma Barranquero <lekktu@gmail.com>
5581
5582 * alloc.c (lisp_malloc):
5583 * buffer.c (set_buffer_internal, set_buffer_internal_1):
5584 * charset.h (emacs_mule_charset):
5585 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
5586 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
5587 (bitch_at_user):
5588 * lisp.h (Fcheck_coding_system, Fget_text_property)
5589 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
5590 Remove duplicate declarations.
5591
55922010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
5593
5594 * process.c: Simplify include logic.
5595
5596 * keyboard.h (quit_char): Add declaration.
5597 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
5598 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
5599 Add declarations.
5600 * sysdep.c:
5601 * w32.c: Remove the above declarations.
5602
5603 Remove extern declarations in .c files, .h files have them.
5604 * xterm.c:
5605 * xdisp.c:
5606 * msdos.c:
5607 * image.c:
5608 * gtkutil.c:
5609 * fileio.c:
5610 * eval.c: Remove declarations.
5611
5612 * frame.c (frame_params): Make const.
5613
5614 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
5615
5616 * emacs.c (emacs_copyright, emacs_version): Make static.
5617 (Vinitial_window_system, Vauto_save_list_file_name)
5618 (Vinhibit_redisplay): Remove declarations.
5619 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
5620 for AIX.
5621
5622 Use const for some arrays and functions.
5623 * xterm.h (xg_set_icon_from_xpm_data):
5624 * xfns.c (xg_set_icon_from_xpm_data):
5625 * term.c (fkeys):
5626 * keyboard.c (lispy_accent_keys, lispy_function_keys)
5627 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
5628 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
5629 (frame.c frame_parms):
5630 * emacs-icon.h (gnu_xpm_bits):
5631 * callint.c (callint_argfuns): Use const.
5632
56332010-08-06 Jan Djärv <jan.h.d@swipnet.se>
5634
5635 * sysdep.c: Move include term.h last of includes (Bug#6812).
5636
56372010-08-06 Eli Zaretskii <eliz@gnu.org>
5638
5639 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
5640
5641 * msdos.c (IT_display_cursor): Log cursor position on termscript.
5642
5643 * .gdbinit (pgx): Display the avoid_cursor_p flag.
5644
56452010-08-06 Juanma Barranquero <lekktu@gmail.com>
5646
5647 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
5648
56492010-08-06 Jan Djärv <jan.h.d@swipnet.se>
5650
5651 * xterm.h (x_get_focus_frame): Declare.
5652
5653 * keyboard.h (poll_for_input_1): Unconditionally declare.
5654
5655 * nsterm.h (x_set_menu_bar_lines): Declare.
5656
5657 * window.c: Don't include menu.h, it depends on lots of other .h-files.
5658
5659 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
5660
5661 * window.c: Include menu.h.
5662
5663 * unexmacosx.c (print_region_list, print_regions)
5664 (build_region_list, find_emacs_zone_regions)
5665 (unexec_regions_merge, read_load_commands, dump_it)
5666 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
5667
5668 * term.c: Check HAVE_SYS_IOCTL_H.
5669
5670 * sysdep.c: Check HAVE_TERM_H.
5671
5672 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
5673
5674 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
5675 (ns_ring_bell, ns_defined_color, hide_hourglass)
5676 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
5677 Convert to ANSI C prototypes.
5678 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
5679 before code.
5680
5681 * nsterm.h : Include sysselect.h.
5682 (x_sync, x_get_focus_frame, x_set_mouse_position)
5683 (x_set_mouse_pixel_position, x_make_frame_visible)
5684 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
5685 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
5686 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
5687 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
5688 Declare.
5689
5690 * nsmenu.m (popup_activated, name_is_separator)
5691 (syms_of_nsmenu): Convert to ANSI C prototypes.
5692 (runMenuAt): Prototypes and move declarations before code.
5693
5694 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
5695
5696 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
5697 prototypes.
5698
5699 * nsfns.m (have_menus_p, ns_display_info_for_name)
5700 (x_set_cursor_type, ns_appkit_version_str)
5701 (ns_appkit_version_int, ns_do_applescript)
5702 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
5703 (syms_of_nsfns): Convert to ANSI C prototypes.
5704
5705 * menu.h (x_set_menu_bar_line): Declare.
5706 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
5707
5708 * lisp.h (fmod_float): Declare.
5709
5710 * image.c (xpm_scan, xpm_make_color_table_v)
5711 (xpm_put_color_table_v, xpm_get_color_table_v)
5712 (xpm_make_color_table_h, xpm_put_color_table_h)
5713 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
5714 (xpm_load): Convert to ANSI C prototypes.
5715
5716 * emacs.c: Include nsterm.h if HAVE_NS.
5717
5718 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
5719
57202010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
5721
5722 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
5723 subprocesses, only MSDOS does not define HAVE_SOCKETS.
5724 (socket_options): Use const char* for name.
5725
57262010-08-06 Juanma Barranquero <lekktu@gmail.com>
5727
5728 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
5729
5730 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
5731 Don't declare xmalloc_widget_value and digest_single_submenu.
5732
5733 * w32font.c (Qlatin): Remove declaration.
5734
5735 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
5736
5737 * dired.c (compile_pattern): Restore declaration.
5738
57392010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
5740
5741 Remove extern declarations in .c files, .h files have them.
5742 * data.c:
5743 * dired.c:
5744 * editfns.c:
5745 * filelock.c:
5746 * fns.c:
5747 * font.c:
5748 * fontset.c:
5749 * frame.c:
5750 * fringe.c:
5751 * ftfont.c:
5752 * gtkutil.c:
5753 * indent.c:
5754 * keyboard.c:
5755 * keymap.c:
5756 * lread.c:
5757 * menu.c:
5758 * print.c:
5759 * search.c:
5760 * sound.c:
5761 * window.c:
5762 * xdisp.c:
5763 * xfaces.c:
5764 * xfns.c:
5765 * xfont.c:
5766 * xftfont.c:
5767 * xmenu.c:
5768 * xterm.c: Remove declarations.
5769
5770 Cleanup syssignal.h.
5771 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
5772 (main_thread): Move down to remove #ifdef.
5773 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
5774 Remove conditional definition following unconditional ones.
5775
5776 * lisp.h: Remove HAVE_SHM code, unused.
5777 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
5778 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
5779 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
5780 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
5781 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
5782 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
5783 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
5784 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
5785 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
5786 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
5787 (Qwindow_scroll_functions, Vafter_load_alist)
5788 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
5789 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
5790 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
5791 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
5792 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
5793 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
5794 (initial_argv, last_nonmenu_event, load_in_progress)
5795 (noninteractive_need_newline, scroll_margin): Add declarations.
5796
5797 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
5798 Remove declarations, menu.h has them.
5799 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
5800 (Vinput_method_function, Qinput_method_function)
5801 (Qevent_symbol_element_mask, last_event_timestamp):
5802 * dispextern.h (Voverflow_newline_into_fringe):
5803 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
5804 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
5805 (syms_of_w32font, syms_of_nsfont):
5806 * fontset.h (find_font_encoding, Qlatin):
5807 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
5808 (Vtool_bar_mode, set_frame_menubar):
5809 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
5810 * xterm.h (Qx_gtk_map_stock):
5811 * keymap.h (meta_prefix_char): Add declarations.
5812
5813 * term.c: Remove dead code.
5814
5815 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
5816 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
5817 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
5818 which is what was there before BSD_PGRPS was removed.
5819
58202010-08-05 Eli Zaretskii <eliz@gnu.org>
5821
5822 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
5823
5824 * unexcoff.c: Renamed from unexec.c.
5825
58262010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
5827
5828 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
5829
58302010-08-03 Johan Bockgård <bojohan@gnu.org>
5831
5832 * data.c (Flocal_variable_p): Handle variable aliases correctly.
5833 (Bug#6744)
5834
58352010-08-02 Jan Djärv <jan.h.d@swipnet.se>
5836
5837 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
5838 to TRUE if depth of screen is < 16.
5839
5840 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
5841 USE_GTK_TOOLTIP.
5842 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
5843 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
5844 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
5845 USE_GTK_TOOLTIP.
5846 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
5847
5848 * xterm.h (USE_GTK_TOOLTIP): New define.
5849 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
5850
5851 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
5852 to Control-D (Bug#6771).
5853
58542010-08-02 Juanma Barranquero <lekktu@gmail.com>
5855
5856 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
5857 Wording by Drew Adams <drew.adams@oracle.com>.
5858
58592010-08-01 Jan Djärv <jan.h.d@swipnet.se>
5860
5861 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
5862 ttip_lbl.
5863
5864 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
5865 calling gtk_widget_queue_draw.
5866 (x_free_frame_resources): Call xg_free_frame_widgets.
5867
5868 * xfns.c (x_gtk_use_system_tooltips): New variable.
5869 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
5870 new gtkutil tooltip functions to show the tooltip.
5871 (Fx_hide_tip): Call xg_hide_tooltip.
5872 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
5873
5874 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
5875 (xg_show_tooltip, xg_hide_tooltip): Declare.
5876
5877 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
5878 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
5879 New functions.
5880 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
5881 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
5882 Remove code that is commented out.
5883
58842010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
5885
5886 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
5887
58882010-07-31 Chong Yidong <cyd@stupidchicken.com>
5889
5890 * xselect.c (x_own_selection): Use list4.
5891
58922010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
5893
5894 * buffer.c (Qwindow): Do not define, already defined in data.c.
5895 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
5896
58972010-07-29 Chad Brown <yandros@mit.edu>
5898
5899 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
5900 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
5901 * config.in: Undef HAVE_DIRENT_H.
5902 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
5903 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
5904
59052010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
5906
5907 Rename s/usg5-4.h -> s/usg5-4-common.h.
5908 * s/usg5-4.h: Rename file to ...
5909 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
5910 * s/unixware.h:
5911 * s/sol2-6.h:
5912 * s/irix6-5.h: Update includes accordingly.
5913
59142010-07-29 Jan Djärv <jan.h.d@swipnet.se>
5915
5916 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
5917
5918 * xterm.h (struct x_output): Add toolbar_top_height,
5919 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
5920 Remove toolbar_height.
5921 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
5922 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
5923 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
5924 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
5925
5926 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
5927
5928 * xfns.c (x_set_tool_bar_position): New function.
5929 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
5930 (x_frame_parm_handlers): Add x_set_tool_bar_position.
5931 (syms_of_xfns): If USE_GTK, provide move-toolbar.
5932
5933 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
5934 and FRAME_TOOLBAR_LEFT_WIDTH.
5935
5936 * gtkutil.h (xg_change_toolbar_position): Declare.
5937
5938 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
5939 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
5940 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
5941 (xg_create_frame_widgets): Create a hobox for placing widgets
5942 vertically. Use gtk_box_pack_start.
5943 (xg_height_or_width_changed): Rename from xg_height_changed.
5944 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
5945 (xg_update_frame_menubar, free_frame_menubar): Change to
5946 xg_height_or_width_changed.
5947 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
5948 size correctly. Remove hardcoded 4, instead use handlebox size -
5949 toolbar size.
5950 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
5951 size correctly. Use handlebox size + toolbar size as additional size.
5952 (xg_pack_tool_bar): POS is a new parameter.
5953 Set orientation of tool bar based on pos.
5954 Only make handlebox_widget if NULL.
5955 Check if tool bar goes to vbox or hbox depending on pos.
5956 (xg_update_tool_bar_sizes): New function.
5957 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
5958 height, call xg_update_tool_bar_sizes instead.
5959 (free_frame_tool_bar): Remove from hbox or vbox depending on
5960 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
5961 (xg_change_toolbar_position): New function.
5962
5963 * frame.h (struct frame): Add tool_bar_position.
5964 (Qbottom): Declare.
5965
5966 * frame.c (Qtool_bar_position): New variable.
5967 (make_frame): Set tool_bar_position to Qtop.
5968 (frame_parms): Add tool-bar-position.
5969 (x_report_frame_params): Store tool_bar_position.
5970 (x_set_fringe_width): Reset wm size hint after fringe changes.
5971
59722010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
5973
5974 Make lisp_time_argument declaration work on all systems.
5975 * lisp.h (lisp_time_argument): Move declaration ...
5976 * systime.h (lisp_time_argument): ... here
5977 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
5978
59792010-07-29 Jan Djärv <jan.h.d@swipnet.se>
5980
5981 * vm-limit.c (POINTER): Add typedef for it.
5982 (start_of_data): Change return type from POINTER to char *.
5983
5984 * frame.h (Qtty_color_mode): Move declaration out of ifdef
5985 HAVE_WINDOW_SYSTEM.
5986
59872010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
5988
5989 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
5990 Remove reference to __osf__, unused.
5991
5992 * mem-limits.h: Remove duplicated includes.
5993 (NULL): Remove definition, unused.
5994 (POINTER): Remove definition.
5995 (start_of_data): Use char* in prototype, as the function
5996 definition does.
5997
5998 Remove extern declarations from .c files, and them to .h files.
5999 * keyboard.h (Qhelp_echo, waiting_for_input)
6000 (input_available_clear_time, ignore_mouse_drag_p)
6001 (Vdouble_click_time, real_this_command, Vthis_original_command):
6002 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
6003 (Voverriding_local_map_menu_flag):
6004 * lisp.h (Qinteractive_form, use_file_dialog)
6005 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
6006 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
6007 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
6008 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
6009 (Qfunction, debug_on_next_call, Qfield)
6010 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
6011 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
6012 (Qfile_directory_p, Qinsert_file_contents)
6013 (Qcompletion_ignore_case, Qcompletion_ignore_case)
6014 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
6015 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
6016 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
6017 (Qminibuffer_prompt)
6018 (Vtemporary_file_directory,char_ins_del_vector, Qface):
6019 * xterm.h (gray_bitmap_width, gray_bitmap_height)
6020 (gray_bitmap_bits, xic_create_fontsetname):
6021 * coding.h (Vtranslation_table_for_input): Add extern declarations.
6022
6023 * xsmfns.c (Vuser_login_name):
6024 * xrdb.c (Vdouble_click_time):
6025 * xfaces.c (xic_create_fontsetname):
6026 * w32select.c (waiting_for_input):
6027 * print.c (minibuffer_auto_raise):
6028 * msdos.c (Qhelp_echo):
6029 * macros.c (real_this_command):
6030 * keymap.c (Voverriding_local_map):
6031 * xterm.c (poll_for_input_1, gray_bitmap_width)
6032 (gray_bitmap_height, gray_bitmap_bits;
6033 * xmenu.c ( Voverriding_local_map)
6034 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
6035 (use_file_dialog, Xt_app_con):
6036 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
6037 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
6038 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
6039 (Qtool_bar_lines, ignore_mouse_drag_p):
6040 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
6041 (Qrear_nonsticky, nconc2):
6042 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
6043 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
6044 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
6045 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
6046 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
6047 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
6048 (gc_in_progress):
6049 * doc.c (Voverriding_local_map, Qremap):
6050 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
6051 (Vcompletion_regexp_list):
6052 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
6053 (Qcompletion_ignore_case):
6054 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
6055 (Vhistory_length, Vthis_original_command, real_this_command)
6056 (Qface, Qminibuffer_prompt, history_delete_duplicates):
6057 * image.c (Qrisky_local_variable):
6058 * fontset.c (QCname):
6059 * fns.c (minibuffer_auto_raise, QCname):
6060 * dispnew.c (char_ins_del_cost):
6061 * composite.c (font_fill_lglyph_metrics):
6062 * cmds.c (Qface, Vtranslation_table_for_input):
6063 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
6064 * ccl.c (charset_unicode):
6065 * callproc.c (Vtemporary_file_directory):
6066 * buffer.c (emacs_strerror): Remove extern declarations.
6067
6068 * data.c (Qwindow): Make non-static, used from other files too.
6069 * frame.c (validate_x_resource_name): Remove shadow definition for i.
6070
6071 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
6072 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
6073 * s/usg5-4.h (COFF):
6074 * s/template.h:
6075 * s/msdos.h (COFF, NO_REMAP):
6076 * s/ms-w32.h (NO_REMAP):
6077 * s/hpux10-20.h (NO_REMAP):
6078 * m/sparc.h (SEGMENT_MASK):
6079 * m/m68k.h (NO_REMAP):
6080 * m/intel386.h (SEGMENT_MASK):
6081 * m/arm.h (NO_REMAP):
6082 * m/alpha.h (COFF):
6083 * m/template.h: Remove references to unused defines.
6084
60852010-07-28 Jan Djärv <jan.h.d@swipnet.se>
6086
6087 * xsettings.c (Ftool_bar_get_system_style): Also check for
6088 Qtext_image_horiz.
6089
6090 * xdisp.c (Qtext_image_horiz): Define.
6091 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
6092 to documentation of tool-bar-style.
6093
6094 * lisp.h (Qtext_image_horiz): Declare.
6095
6096 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
6097 style text_image_horiz.
6098
60992010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
6100
6101 * emacs.c (Fkill_emacs): Remove return statement.
6102
6103 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
6104 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
6105 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
6106 Remove local extern declarations.
6107
6108 * xmenu.c: Do not included lwlib.h, not needed.
6109
6110 * m/iris4d.h (XUINT, XSET): Remove, not needed.
6111
6112 * process.c: Move definitions earlier to minimize #ifdefs.
6113
6114 * xterm.h (x_get_customization_string, x_load_resources)
6115 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
6116 (x_check_errors, x_property_data_to_lisp, defined_color)
6117 (xic_set_xfontset, x_defined_color): Use const.
6118
6119 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
6120 (x_text_icon, x_check_errors, x_connection_closed): Use const.
6121
6122 * xselect.c (selection_data_to_lisp_data)
6123 (x_property_data_to_lisp):
6124 * xrdb.c (x_get_string_resource, file_p)
6125 (x_get_customization_string, magic_file_p, search_magic_path)
6126 (get_system_app, get_user_app, x_load_resources, x_get_resource)
6127 (x_get_string_resource): Use const.
6128
6129 * xfns.c: Include xlwmenu.h when USE_LUCID.
6130 (x_defined_color, xic_set_xfontset): Use const.
6131 (Fx_hide_tip): Remove local extern declaration.
6132
6133 * xfaces.c (Qmouse_face): Remove declaration.
6134 (face_color_gray_p, tty_defined_color, defined_color)
6135 (face_color_gray_p, face_color_supported_p): Add const.
6136
6137 * xdisp.c (do_mouse_tracking): Remove declaration.
6138 (add_to_log): Use const.
6139
6140 * minibuf.c (Qmouse_face): Remove declaration.
6141
6142 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
6143
6144 * keyboard.h (do_mouse_tracking): Add declaration.
6145
6146 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
6147 (QCdata, QCtype, Qcenter): Remove declarations.
6148
6149 * frame.c (x_get_resource_string, x_get_string_resource)
6150 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6151 (x_default_parameter): Use const.
6152
6153 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
6154 (QCheight, QCsize, QCname): Remove declarations.
6155
6156 * emacs.c (main): Remove local extern declaration.
6157
6158 * editfns.c (region_limit, syms_of_editfns): Remove local extern
6159 declarations.
6160
6161 * dispnew.c: Remove duplicate #include <unistd.h>.
6162 (update_window, update_frame_1, init_display): Remove local extern
6163 declarations.
6164
6165 * dispextern.h (add_to_log): Remove declaration.
6166 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6167 (x_frame_get_and_record_arg, x_default_parameter): Add const.
6168
6169 * dired.c (scmp): Add const.
6170 (directory_files_internal): Remove local extern declaration.
6171
6172 * data.c (Finteractive_form): Use const.
6173
6174 * composite.c (syms_of_composite): Remove local extern declarations.
6175
6176 * charset.c (add_to_log): Remove declaration.
6177
6178 * character.c (strwidth, parse_str_to_multibyte): Add const.
6179
6180 * character.h (strwidth, parse_str_to_multibyte): Likewise.
6181
6182 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
6183
6184 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
6185 (Lisp_Subr): Make doc and intspec constant.
6186 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
6187 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
6188 (QCheight, QCsize, QCname, QCwidth, QCforeground)
6189 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
6190 (display_arg): Add declarations.
6191
61922010-07-27 Christoph Scholtes <cschol2112@gmail.com>
6193
6194 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
6195
6196 * window.c (Fwindow_height): Doc fix (bug#6518).
6197
61982010-07-27 Juanma Barranquero <lekktu@gmail.com>
6199
6200 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
6201
62022010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
6203
6204 * keyboard.c (Ftop_level, Fexit_recursive_edit)
6205 (Fabort_recursive_edit): Remove return statements in NO_RETURN
6206 functions.
6207
6208 * frame.h (Qtty_color_mode): Add declaration.
6209
6210 * lisp.h (Ftop_level, Fexit_recursive_edit)
6211 (Fabort_recursive_edit): Mark as NO_RETURN.
6212
62132010-07-26 Kenichi Handa <handa@m17n.org>
6214
6215 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
6216 number of glyphs gets smaller than the original length. (Bug#6621)
6217
62182010-07-26 Juanma Barranquero <lekktu@gmail.com>
6219
6220 * lread.c (unreadpure, mapatoms_1): Make static.
6221
62222010-07-25 Juanma Barranquero <lekktu@gmail.com>
6223
6224 * terminfo.c (tparam): Fix prototype of tparm.
6225
62262010-07-25 Andreas Schwab <schwab@linux-m68k.org>
6227
6228 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
6229 find start of text segment.
6230 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
6231 is defined.
6232
6233 * callproc.c (set_initial_environment): Avoid unbalanced braces.
6234
62352010-07-25 Ken Brown <kbrown@cornell.edu>
6236
6237 * vm-limit.c (check_memory_limits): Fix previous change;
6238 accidentally reverted an earlier change.
6239
62402010-07-25 Ken Brown <kbrown@cornell.edu>
6241
6242 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
6243 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
6244
62452010-07-25 Juanma Barranquero <lekktu@gmail.com>
6246
6247 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
6248 * dired.c (opendir, readdir): Fix prototypes.
6249 * editfns.c (w32_get_internal_run_time): Fix prototypes.
6250 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
6251 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
6252 (telldir): Remove declaration.
6253 * ralloc.c (real_morecore, __morecore): Fix prototypes.
6254 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
6255 * syssignal.h (strsignal): Fix prototype.
6256 * term.c (tparam): Fix prototype.
6257 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
6258 (term_get_fkeys): Set inside "#ifndef DOS_NT".
6259 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
6260 and __morecore.
6261 * w32gui.h (XParseGeometry): Fix prototype.
6262 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
6263 * w32term.c (my_set_focus): Declare inside #if 0.
6264 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
6265 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
6266 (drain_message_queue, get_next_msg, post_msg, parse_button)
6267 (ClipboardSequence_Proc): Fix prototypes.
6268 (wait_for_sync): Remove declaration.
6269
62702010-07-24 Juanma Barranquero <lekktu@gmail.com>
6271
6272 * w32fns.c (w32_to_x_color): Remove, unused.
6273
62742010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6275
6276 * lisp.h: Remove leftover P_.
6277
62782010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
6279
6280 * ecrt0.c, unexalpha.c: Remove files, unused.
6281
62822010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6283
6284 * cmds.c (internal_self_insert): Make static.
6285 * lisp.h (internal_self_insert): Remove declaration.
6286
62872010-07-23 Juanma Barranquero <lekktu@gmail.com>
6288
6289 * alloc.c (free_float):
6290 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
6291 * frame.c (delete_frame_handler):
6292 * ralloc.c (reorder_bloc):
6293 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
6294 Remove unused static functions.
6295
6296 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
6297 it is called only from NS code.
6298
6299 * w32term.c (my_set_focus): #ifdef away; it is called only from
6300 "#ifdef 0" code.
6301
6302 * w32fns.c (x_edge_detection):
6303 * xfaces.c (may_use_scalable_font_p):
6304 Remove obsolete static declarations.
6305
63062010-07-20 Juanma Barranquero <lekktu@gmail.com>
6307
6308 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
6309 (emacs_blocked_realloc, uninterrupt_malloc):
6310 * fringe.c (w32_reset_fringes):
6311 * image.c (convert_mono_to_color_image, lookup_rgb_color)
6312 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
6313 * sound.c (be2hs, do_play_sound):
6314 * vm-limit.c (get_lim_data, ret_lim_data):
6315 * w32term.c (x_free_frame_resources):
6316 * xfaces.c (x_create_gc, x_free_gc):
6317 Convert definitions to standard C.
6318
63192010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
6320
6321 * eval.c (Feval, Ffuncall): Use the new names.
6322
6323 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
6324 (DEFUN): Add braces around the union initialisation and use ## to
6325 specify the right union alternative and avoid a cast.
6326
63272010-07-18 Juanma Barranquero <lekktu@gmail.com>
6328
6329 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
6330
63312010-07-17 Chong Yidong <cyd@stupidchicken.com>
6332
6333 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
6334
63352010-07-17 Jan Djärv <jan.h.d@swipnet.se>
6336
6337 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
6338 is related to the menu bar (Bug#6499).
6339 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
6340
63412010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6342
6343 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
6344
6345 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
6346
6347 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
6348 i.e. don't put back ButtonRelease (Bug#6608).
6349
6350 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
6351 instead of Window. Call xg_event_is_for_menubar when
6352 USE_GTK (Bug#6499).
6353
6354 * gtkutil.h (xg_event_is_for_menubar): Declare.
6355
6356 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
6357
63582010-07-16 Eli Zaretskii <eliz@gnu.org>
6359
6360 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
6361 when it's the same as the old foreground. (Bug#6609)
6362
63632010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6364
6365 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
6366 widget is non-null (Bug#6645).
6367
63682010-07-15 Andreas Schwab <schwab@linux-m68k.org>
6369
6370 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
6371 Convert old-style definition.
6372
6373 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
6374 timestamp argument.
6375
63762010-07-15 Eli Zaretskii <eliz@gnu.org>
6377
6378 * fringe.c (update_window_fringes): Restore mistakenly reverted
6379 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
6380
63812010-07-14 Jan Djärv <jan.h.d@swipnet.se>
6382
6383 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
6384 (SET_SAVED_KEY_EVENT): Remove (not used).
6385 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
6386 remove size parameter.
6387 (handle_one_xevent): Check popup_activated () for menu for Xt also.
6388 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
6389 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
6390 ButtonRelease.
6391 (x_set_window_size_1): scroll_bar_actual_width is always
6392 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
6393
6394 * xdisp.c (pending_menu_activation): Remove extern declaration.
6395 (prepare_menu_bars): Remove setting of pending_menu_activation.
6396
6397 * xmenu.c (pending_menu_activation): Remove.
6398 (x_activate_menubar): Set popup_activated_flag for Xt also.
6399 Remove setting of pending_menu_activation.
6400 (set_frame_menubar): Remove check of pending_menu_activation.
6401 Declare menubar_size before code. Correct spelling in comment.
6402
64032010-07-14 Kenichi Handa <handa@m17n.org>
6404
6405 * font.c (font_open_entity): Cancel previous change.
6406 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
6407
64082010-07-13 Eli Zaretskii <eliz@gnu.org>
6409
6410 Remove subprocesses #ifdefs.
6411 * process.c <inhibit_sentinels>: Move to the common part.
6412 (Fwaiting_for_user_input_p): Move to the common part; return nil
6413 if async subprocesses aren't supported.
6414 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
6415 MS-DOS. Remove "#ifdef subprocesses".
6416 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
6417 (gettimeofday): Remove "#ifdef subprocesses".
6418 (wait_without_blocking): Remove function.
6419 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
6420 Remove "#ifdef subprocesses".
6421 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
6422 compiled on MS-DOS.
6423 * callproc.c (Fcall_process) [!MSDOS]: Don't call
6424 wait_for_termination on MS-DOS.
6425 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
6426 initialization of inhibit_sentinels.
6427 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
6428 subprocesses" conditional.
6429 * callproc.c (Fcall_process) [!subprocesses]: Don't call
6430 wait_for_termination, since `buffer' cannot be an integer when
6431 async subprocesses are not supported
6432 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
6433 for ifdefing away the call to Fprocess_status.
6434
6435 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
6436 away the entire body of the function.
6437
64382010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
6439
6440 Remove subprocesses #ifdefs from term.c.
6441 * process.c (add_keyboard_wait_descriptor)
6442 (delete_keyboard_wait_descriptor): Move to common section, do
6443 nothing when subprocesses is not defined.
6444 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
6445 Remove subprocesses #ifdefs.
6446
6447 Convert maybe_fatal to standard C.
6448 * lisp.h (verror): Declare.
6449 * eval.c (verror): New function containing the code from ...
6450 (error): ... this. Call verror.
6451 * term.c (vfatal): New function containing the code from ...
6452 (fatal): ... this. Call vfatal.
6453 (maybe_fatal): Convert to standard C, use variable number of
6454 arguments. Declare as non-return.
6455 (init_tty): Fix maybe_fatal call.
6456
64572010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6458
6459 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
6460 (_scroll_bar_note_movement): Convert definitions to standard C.
6461 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
6462 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
6463
64642010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6465
6466 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
6467 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
6468 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
6469 (xaw_jump_callback, xaw_scroll_callback)
6470 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
6471 (x_wm_set_size_hint, x_activate_timeout_atimer):
6472 Convert definitions to standard C.
6473 * xmenu.c (menubar_id_to_frame, popup_get_selection)
6474 (popup_activate_callback, popup_deactivate_callback)
6475 (menu_highlight_callback, menubar_selection_callback)
6476 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
6477 (free_frame_menubar, popup_selection_callback, as)
6478 (create_and_show_popup_menu, dialog_selection_callback)
6479 (create_and_show_dialog):
6480 * xfns.c (hack_wm_protocols, x_window):
6481 * xfaces.c (x_update_menu_appearance):
6482 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
6483 (char_to_pixel_size, round_size_to_char, get_wm_shell)
6484 (set_frame_size, update_wm_hints, setup_frame_gcs)
6485 (update_various_frame_slots, update_from_various_frame_slots)
6486 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
6487 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
6488 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
6489
64902010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6491
6492 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
6493
64942010-07-12 Eli Zaretskii <eliz@gnu.org>
6495
6496 * process.c (setup_process_coding_systems): Move to the part
6497 shared by non-subprocesses systems, and make its body empty when
6498 subprocesses is not defined.
6499 (close_process_descs): Move to the part shared by non-subprocesses
6500 systems.
6501 (wait_reading_process_output) [!subprocesses]: Convert arg list to
6502 ANSI C.
6503
65042010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6505
6506 * editfns.c (transpose_markers): Convert old-style definition.
6507 * emacs.c (abort, shut_down_emacs, fixup_locale)
6508 (synchronize_system_time_locale)
6509 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
6510 * floatfns.c (extract_float, matherr, init_floatfns)
6511 (syms_of_floatfns): Likewise.
6512 * fns.c (make_hash_table): Likewise.
6513 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
6514 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
6515 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
6516 (ftfont_variation_glyphs): Likewise.
6517 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
6518 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
6519 * lread.c (read_filtered_event): Likewise.
6520 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
6521 * process.c (wait_reading_process_output): Likewise.
6522 * scroll.c (do_line_insertion_deletion_costs): Likewise.
6523 * search.c (search_buffer, boyer_moore): Likewise.
6524 * syntax.c (scan_sexps_forward): Likewise.
6525 * xdisp.c (try_scrolling): Likewise.
6526 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
6527 (face_at_string_position): Likewise.
6528 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
6529 * xselect.c (x_get_window_property, receive_incremental_selection)
6530 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
6531 Likewise.
6532 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
6533
65342010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6535
6536 * callproc.c (child_setup): Remove subprocesses conditional.
6537 Remove code dealing with SET_EMACS_PRIORITY, unused.
6538
6539 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
6540 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
6541
6542 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
6543 (__do_global_dtors, __main): Use void in definition.
6544 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
6545 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
6546 the only users from ...
6547 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
6548 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
6549 (HAVE_VOLATILE): Remove, unused.
6550
6551 Convert more function definitions to standard C.
6552 * xdisp.c (window_box_edges, handle_single_display_spec)
6553 (display_string): Convert definition to standard C.
6554 * scroll.c (do_direct_scrolling, scrolling_1):
6555 * dispnew.c (allocate_matrices_for_frame_redisplay)
6556 (mirrored_line_dance):
6557 * coding.c (code_convert_string):
6558 * charset.c (map_charset_chars):
6559 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
6560 (Fregister_ccl_program, Fregister_code_conversion_map):
6561 * keyboard.c (kbd_buffer_nr_stored): Likewise.
6562 (head_table): Make static and const.
6563
65642010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6565
6566 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
6567 (PROFILING_LDFLAGS): Set from substitution.
6568 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
6569 CFLAGS last.
6570
65712010-07-12 Kenichi Handa <handa@m17n.org>
6572
6573 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
6574 (shortlisp): Likewise.
6575
6576 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
6577
6578 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
6579 of FONT_ENTITY_INDEX.
6580 (Ffont_get): If KEY is :otf and the font-object doesn't have the
6581 property, get the property value dynamically.
6582 (Ffont_put): Accept font-entity and font-object too.
6583 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
6584 return value changed.
6585 (syms_of_font): Adjust for the above change.
6586
65872010-07-11 Andreas Schwab <schwab@linux-m68k.org>
6588
6589 * blockinput.h: Remove obsolete comment.
6590
6591 * lisp.h: Include <stddef.h>.
6592 (OFFSETOF): Don't define.
6593 (VECSIZE): Use offsetof instead of OFFSETOF.
6594 (PSEUDOVECSIZE): Likewise.
6595 * process.c (conv_sockaddr_to_lisp): Likewise.
6596 * alloc.c: Don't include <stddef.h>.
6597 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
6598
6599 * process.c: Remove obsolete comment.
6600
66012010-07-11 Chong Yidong <cyd@stupidchicken.com>
6602
6603 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
6604
66052010-07-11 Andreas Schwab <schwab@linux-m68k.org>
6606
6607 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
6608 index, rindex.
6609 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
6610 * editfns.c (Fuser_full_name, Fformat): Likewise.
6611 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
6612 * fileio.c (Ffile_symlink_p): Likewise.
6613 * filelock.c (current_lock_owner): Likewise.
6614 * font.c (font_parse_name, font_parse_family_registry): Likewise.
6615 * fontset.c (fontset_pattern_regexp): Likewise.
6616 * lread.c (read1): Likewise.
6617 * sysdep.c (init_system_name): Likewise.
6618 * xfns.c (select_visual): Likewise.
6619 * s/hpux10-20.h (index, rindex): Don't define.
6620 * s/ms-w32.h (index): Likewise.
6621 * s/usg5-4.h: Likewise.
6622
6623 * callproc.c (relocate_fd): Use F_DUPFD if defined.
6624
6625 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
6626 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
6627 (egetenv): Likewise.
6628 * doprnt.c (doprnt): Likewise.
6629 * editfns.c (set_time_zone_rule, format2): Likewise.
6630 * emacs.c (decode_env_path): Likewise.
6631 * eval.c (signal_error, error): Likewise.
6632 * insdel.c (replace_range_2): Likewise.
6633 * keyboard.c (cmd_error_internal): Likewise.
6634 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
6635 * print.c (write_string, write_string_1, print_error_message):
6636 Likewise.
6637 * vm-limit.c (warn_function, memory_warnings): Likewise.
6638 * xdisp.c (message1, message1_nolog, message_with_string)
6639 (vmessage, message, message_nolog): Likewise.
6640 * emacs.c: Remove duplicate declaration.
6641 * keyboard.h: Likewise.
6642 * lisp.h: Update prototypes.
6643
6644 * eval.c: Fix indentation problem.
6645
6646 * keyboard.c: Include "process.h".
6647
6648 * eval.c: Remove obsolete noinline declaration.
6649 * fns.c: Likewise.
6650
66512010-07-11 Ken Raeburn <raeburn@raeburn.org>
6652
6653 * doprnt.c (doprnt): Take a va_list argument instead of count and
6654 pointer.
6655 * eval.c (error): Change to a standard-C variadic function.
6656 * xdisp.c (vmessage): Rename from message, made static, and
6657 changed to take a va_list argument.
6658 (message): New variadic wrapper.
6659 (message_nolog): Now a variadic function, calling vmessage.
6660 * lisp.h: Include stdarg.h for va_list.
6661 (doprnt, error, message, message_nolog): Decls updated.
6662
66632010-07-11 Eli Zaretskii <eliz@gnu.org>
6664
6665 * process.c (syms_of_process) <delete-exited-processes>: Define
6666 even if !subprocesses.
6667 (delete_exited_processes): Ditto.
6668
6669 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
6670 (delete_exited_processes): Don't define.
6671
66722010-07-10 Chong Yidong <cyd@stupidchicken.com>
6673
6674 * frame.c (make_frame): Initialize menu_bar_lines and
6675 tool_bar_lines members.
6676 (make_initial_frame, make_terminal_frame):
6677 Initialize menu_bar_lines using value of menu-bar-mode.
6678
6679 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
6680
66812010-07-10 Eli Zaretskii <eliz@gnu.org>
6682
6683 * process.c: Reshuffle #include's. Condition some of the global
6684 and static variables on `subprocesses'.
6685 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
6686 Leave only one implementation.
6687 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
6688 (kill_buffer_processes, Flist_system_processes)
6689 (Fprocess_attributes, init_process, syms_of_process): Unify the
6690 implementations for with subprocesses and without them.
6691
66922010-07-09 Jan Djärv <jan.h.d@swipnet.se>
6693
6694 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
6695 correct size for Motif.
6696 (free_frame_menubar): Call x_set_window_size to update frame size.
6697
6698 * xfns.c (x_window): Set borderWidth to 0 for pane and
6699 EmacsFrame. Frame size calculation is wrong otherwise.
6700
67012010-07-09 Michael Albinus <michael.albinus@gmx.de>
6702
6703 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
6704 allows to suppress errors when polling in Emacs' main loop.
6705 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
6706 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
6707 (Fdbus_method_error_internal, Fdbus_send_signal)
6708 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
6709 (Fdbus_register_method): Use it. (Bug#6579)
6710
67112010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
6712
6713 * alloc.c: Convert DEFUNs to standard C.
6714 * buffer.c:
6715 * bytecode.c:
6716 * callint.c:
6717 * callproc.c:
6718 * casefiddle.c:
6719 * casetab.c:
6720 * category.c:
6721 * character.c:
6722 * charset.c:
6723 * chartab.c:
6724 * cmds.c:
6725 * coding.c:
6726 * composite.c:
6727 * data.c:
6728 * dbusbind.c:
6729 * dired.c:
6730 * dispnew.c:
6731 * doc.c:
6732 * dosfns.c:
6733 * editfns.c:
6734 * emacs.c:
6735 * eval.c:
6736 * fileio.c:
6737 * filelock.c:
6738 * floatfns.c:
6739 * fns.c:
6740 * font.c:
6741 * fontset.c:
6742 * frame.c:
6743 * fringe.c:
6744 * image.c:
6745 * indent.c:
6746 * insdel.c:
6747 * keyboard.c:
6748 * keymap.c:
6749 * lread.c:
6750 * macros.c:
6751 * marker.c:
6752 * menu.c:
6753 * minibuf.c:
6754 * msdos.c:
6755 * nsfns.m:
6756 * nsmenu.m:
6757 * nsselect.m:
6758 * print.c:
6759 * process.c:
6760 * search.c:
6761 * sound.c:
6762 * syntax.c:
6763 * term.c:
6764 * terminal.c:
6765 * textprop.c:
6766 * undo.c:
6767 * w16select.c:
6768 * w32console.c:
6769 * w32fns.c:
6770 * w32font.c:
6771 * w32menu.c:
6772 * w32proc.c:
6773 * w32select.c:
6774 * window.c:
6775 * xdisp.c:
6776 * xfaces.c:
6777 * xfns.c:
6778 * xmenu.c:
6779 * xselect.c:
6780 * xsettings.c:
6781 * xsmfns.c: Likewise.
6782
67832010-07-08 Eli Zaretskii <eliz@gnu.org>
6784
6785 * process.c (kbd_is_on_hold, hold_keyboard_input)
6786 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
6787
67882010-07-08 Jan Djärv <jan.h.d@swipnet.se>
6789
6790 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
6791 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
6792 unless USE_LUCID.
6793
67942010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
6795
6796 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
6797 declaration.
6798
6799 Clean up include guards.
6800 * tparam.c: Remove include guards for config.h, string.h and code
6801 that assumes #ifndef emacs.
6802 * termcap.c:
6803 * unexalpha.c:
6804 * sysdep.c:
6805 * filemode.c:
6806 * filelock.c:
6807 * bidi.c: Likewise.
6808
6809 Remove prefix-args.c
6810 * prefix-args.c: Remove file.
6811 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
6812 * Makefile.in (temacs${EXEEXT}): Remove references to
6813 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
6814 (mostlyclean): Remove reference to prefix-args.
6815 (prefix-args): Remove.
6816
6817 Simplify cstart_of_data, start_of_code and related code.
6818 * mem-limits.h: Remove !emacs and _LIBC conditional code.
6819 (start_of_data): Merge into start_of_data function.
6820 * sysdep.c (start_of_text): Remove. Move simplified versions of
6821 it in the only users: unexaix.c and unexec.c.
6822 (read_input_waiting): Remove local declaration of quit_char.
6823 (start, etext): Remove declarations.
6824 (start_of_data): Merge with the version in mem-limits.h and move
6825 to vm-limits.c.
6826 * vm-limit.c (start_of_data): Merged and simplified version of the
6827 code formerly in mem-limits.h and sysdep.c.
6828 * unexec.c (start): New declaration, moved from sysdep.c.
6829 (start_of_text): Simplified version of the code formerly in sysdep.c.
6830 * unexaix.c (start_of_text): Simplified version of the code
6831 formerly in sysdep.c.
6832 * m/alpha.h (HAVE_TEXT_START): Remove.
6833 (TEXT_START): Move ...
6834 * unexalpha.c (TEXT_START): ... here.
6835 * s/hpux10-20.h (TEXT_START): Remove.
6836 * s/darwin.h (TEXT_START):
6837 * m/mips.h (TEXT_START):
6838 * m/macppc.h (HAVE_TEXT_START):
6839 * m/m68k.h (TEXT_START):
6840 * m/iris4d.h (TEXT_START):
6841 * m/intel386.h (TEXT_START):
6842 * m/ibmrs6000.h (TEXT_START):
6843 * m/ia64.h (HAVE_TEXT_START):
6844 * s/msdos.h (TEXT_START): Likewise.
6845
68462010-07-07 Andreas Schwab <schwab@linux-m68k.org>
6847
6848 * alloc.c (overrun_check_malloc, overrun_check_realloc)
6849 (overrun_check_free, xstrdup, allocate_string)
6850 (allocate_string_data, compact_small_strings, Fmake_string)
6851 (make_unibyte_string, make_multibyte_string)
6852 (make_string_from_bytes, make_specified_string, make_float)
6853 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
6854 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
6855 memcpy, memmove, memset, memcmp.
6856 * atimer.c (start_atimer, set_alarm): Likewise.
6857 * buffer.c (clone_per_buffer_values, report_overlay_modification)
6858 (mmap_realloc, init_buffer_once): Likewise.
6859 * callint.c (Fcall_interactively): Likewise.
6860 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
6861 (getenv_internal_1): Likewise.
6862 * casefiddle.c (casify_object): Likewise.
6863 * ccl.c (ccl_driver): Likewise.
6864 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
6865 * charset.c (load_charset_map_from_file)
6866 (load_charset_map_from_file, load_charset_map_from_vector)
6867 (Fdefine_charset_internal): Likewise.
6868 * cm.c (Wcm_clear): Likewise.
6869 * coding.c (decode_eol, decode_coding_object)
6870 (Fset_coding_system_priority, make_subsidiaries): Likewise.
6871 * data.c (Faset): Likewise.
6872 * dired.c (directory_files_internal, file_name_completion_stat):
6873 Likewise.
6874 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
6875 (clear_glyph_row, copy_row_except_pointers)
6876 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
6877 (save_current_matrix, restore_current_matrix)
6878 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
6879 (mirror_line_dance, scrolling_window): Likewise.
6880 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
6881 Likewise.
6882 * doprnt.c (doprnt): Likewise.
6883 * editfns.c (Fuser_full_name, make_buffer_string_both)
6884 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
6885 * emacs.c (sort_args): Likewise.
6886 * eval.c (Fapply, Ffuncall): Likewise.
6887 * fileio.c (Ffile_name_directory, make_temp_name)
6888 (Fexpand_file_name, search_embedded_absfilename)
6889 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
6890 (auto_save_error): Likewise.
6891 * fns.c (Fstring_equal, Fcopy_sequence, concat)
6892 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
6893 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
6894 (Fmake_hash_table): Likewise.
6895 * fringe.c (Fdefine_fringe_bitmap): Likewise.
6896 * ftfont.c (ftfont_text_extents): Likewise.
6897 * getloadavg.c (getloadavg): Likewise.
6898 * image.c (define_image_type, make_image, make_image_cache)
6899 (x_create_x_image_and_pixmap, xbm_image_p)
6900 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
6901 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
6902 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
6903 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
6904 (tiff_image_p, tiff_read_from_memory, gif_image_p)
6905 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
6906 Likewise.
6907 * indent.c (scan_for_column, compute_motion): Likewise.
6908 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
6909 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
6910 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
6911 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
6912 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
6913 (store_user_signal_events, menu_bar_items, tool_bar_items)
6914 (process_tool_bar_item, append_tool_bar_item)
6915 (read_char_minibuf_menu_prompt, read_key_sequence)
6916 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
6917 Likewise.
6918 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
6919 Likewise.
6920 * lisp.h (STRING_COPYIN): Likewise.
6921 * lread.c (Fload, read1, oblookup): Likewise.
6922 * msdos.c (Frecent_doskeys): Likewise.
6923 * nsfns.m (Fx_create_frame): Likewise.
6924 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
6925 Likewise.
6926 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
6927 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
6928 Likewise.
6929 * nsmenu.m (ns_update_menubar): Likewise.
6930 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
6931 * print.c (print_unwind, printchar, strout, print_string)
6932 (print_error_message): Likewise.
6933 * process.c (conv_lisp_to_sockaddr, set_socket_option)
6934 (Fmake_network_process, Fnetwork_interface_list)
6935 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
6936 (init_process): Likewise.
6937 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
6938 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
6939 Likewise.
6940 * scroll.c (do_scrolling, do_direct_scrolling)
6941 (scrolling_max_lines_saved): Likewise.
6942 * search.c (search_buffer, wordify, Freplace_match): Likewise.
6943 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
6944 * syntax.c (skip_chars, skip_syntaxes): Likewise.
6945 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
6946 (emacs_set_tty): Likewise.
6947 * term.c (encode_terminal_code, calculate_costs)
6948 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
6949 Likewise.
6950 * termcap.c (tgetst1, gobble_line): Likewise.
6951 * termhooks.h (EVENT_INIT): Likewise.
6952 * tparam.c (tparam1): Likewise.
6953 * unexalpha.c (unexec): Likewise.
6954 * unexec.c (write_segment): Likewise.
6955 * unexmacosx.c (unexec_write_zero): Likewise.
6956 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
6957 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
6958 * w32font.c (w32font_list_family, w32font_text_extents)
6959 (w32font_list_internal, w32font_match_internal)
6960 (w32font_open_internal, compute_metrics, Fx_select_font):
6961 Likewise.
6962 * w32menu.c (set_frame_menubar, add_menu_item)
6963 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
6964 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
6965 * w32uniscribe.c (uniscribe_list_family): Likewise.
6966 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
6967 * window.c (make_window, replace_window, set_window_buffer)
6968 (Fsplit_window): Likewise.
6969 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
6970 (add_to_log, message3, x_consider_frame_title)
6971 (append_space_for_newline, extend_face_to_end_of_line)
6972 (decode_mode_spec_coding, init_glyph_string): Likewise.
6973 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
6974 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
6975 (face_attr_equal_p, make_realized_face, make_face_cache)
6976 (free_realized_faces, lookup_named_face, smaller_face)
6977 (face_with_height, lookup_derived_face)
6978 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
6979 (Finternal_set_font_selection_order, realize_default_face)
6980 (compute_char_face, face_at_buffer_position)
6981 (face_for_overlay_string, face_at_string_position, merge_faces):
6982 Likewise.
6983 * xfns.c (xic_create_fontsetname, Fx_create_frame)
6984 (Fx_window_property, x_create_tip_frame)
6985 (Fx_backspace_delete_keys_p): Likewise.
6986 * xfont.c (xfont_list, xfont_match, xfont_list_family)
6987 (xfont_text_extents): Likewise.
6988 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
6989 * xrdb.c (magic_file_p, x_get_resource): Likewise.
6990 * xselect.c (x_queue_event, x_get_window_property)
6991 (receive_incremental_selection): Likewise.
6992 * xsmfns.c (x_session_check_input): Likewise.
6993 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
6994 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
6995 Likewise.
6996 * character.h (BCOPY_SHORT): Removed.
6997 * config.in: Regenerate.
6998 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
6999 * emacs.c (main) [PROFILING]: Don't declare
7000 dump_opcode_frequencies.
7001 * lisp.h (safe_bcopy): Remove declaration.
7002 (memset) [!HAVE_MEMSET]: Declare.
7003 (memcpy) [!HAVE_MEMCPY]: Likewise.
7004 (memmove) [!HAVE_MEMMOVE]: Likewise.
7005 (memcmp) [!HAVE_MEMCMP]: Likewise.
7006 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
7007 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
7008 Don't define.
7009 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
7010 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
7011 (BCOPY_DOWNWARD_SAFE): Don't define.
7012 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
7013 (memcpy) [!HAVE_MEMCPY]: Define.
7014 (memmove) [!HAVE_MEMMOVE]: Define.
7015 (memcmp) [!HAVE_MEMCMP]: Define.
7016
70172010-07-07 Jan Djärv <jan.h.d@swipnet.se>
7018
7019 * process.c (kbd_is_on_hold): New variable.
7020 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7021 New functions.
7022 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
7023 select on empty input mask.
7024 (init_process): Initialize kbd_is_on_hold to 0.
7025
7026 * process.h (hold_keyboard_input, unhold_keyboard_input)
7027 (kbd_on_hold_p): Declare.
7028
7029 * keyboard.c (input_available_signal): Declare.
7030 (kbd_buffer_nr_stored): New function.
7031 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
7032 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
7033 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
7034 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
7035 (tty_read_avail_input): If input is on hold, return.
7036 Don't read more that free slots in kbd_buffer (Bug#6571).
7037
70382010-07-07 Eli Zaretskii <eliz@gnu.org>
7039
7040 * msdos.h:
7041 * msdos.c:
7042 * dosfns.c:
7043 * w16select.c: Convert function definitions to ANSI C.
7044
7045 * msdos.h (ctrl_break_func, install_ctrl_break_check):
7046 Remove unused prototypes.
7047
70482010-07-07 Juanma Barranquero <lekktu@gmail.com>
7049
7050 * coding.c, sysdep.c: Convert some more functions to standard C.
7051
70522010-07-07 Juanma Barranquero <lekktu@gmail.com>
7053
7054 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
7055 (encode_coding_object): Use SPECPDL_INDEX.
7056 (syms_of_coding): Use DOS_NT.
7057
70582010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
7059
7060 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
7061
7062 Make the function member of Lisp_Subr use standard C prototypes.
7063 * lisp.h (struct Lisp_Subr): Use a union for the function member.
7064 (DECL_ALIGN): Add a cast for the function.
7065 * eval.c (Feval, Ffuncall): Use the proper type for each type
7066 function call.
7067
70682010-07-06 Chong Yidong <cyd@stupidchicken.com>
7069
7070 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
7071 fringe face id, so face-remapping-alist works (Bug#6091).
7072
70732010-07-06 Juanma Barranquero <lekktu@gmail.com>
7074
7075 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
7076 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
7077 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
7078
70792010-07-06 Andreas Schwab <schwab@linux-m68k.org>
7080
7081 * xterm.c (x_get_keysym_name): Change type of parameter to int.
7082 * lisp.h: Declare x_get_keysym_name.
7083 * keyboard.c (modify_event_symbol): Don't declare
7084 x_get_keysym_name here.
7085
70862010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
7087
7088 * ecrt0.c: Revert conversion to standard C.
7089
70902010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7091
7092 * vm-limit.c (memory_warnings):
7093 * keyboard.c (modify_event_symbol):
7094 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
7095 (round2, emacs_rint):
7096 * process.c (send_process, old_sigpipe): Convert function
7097 definitions and declarations to standard C.
7098
70992010-07-05 Juanma Barranquero <lekktu@gmail.com>
7100
7101 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
7102 * xdisp.c: Convert function definitions to standard C.
7103
7104 * cm.c (cmputc): Arg C is now int, not char.
7105 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
7106
71072010-07-05 James Cloos <cloos@jhcloos.com>
7108
7109 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
7110
7111 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
7112 _NET_WM_ICON_NAME atoms.
7113
7114 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
7115 and _NET_WM_ICON_NAME properties, too, matching what is
7116 done in the Gtk+ case.
7117
71182010-07-05 Jan Djärv <jan.h.d@swipnet.se>
7119
7120 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
7121
7122 * xsmfns.c (SSDATA): New macro.
7123 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
7124 passed to strlen/strcpy/strcat.
7125 (create_client_leader_window): Surround with #ifndef USE_GTK.
7126 Cast 7:th arg to XChangeProperty to (unsigned char *).
7127
7128 * xsettings.c (something_changedCB, parse_settings)
7129 (apply_xft_settings): Reformat prototype.
7130 (something_changedCB, init_gconf): Remove unused variable i.
7131 (read_settings): Remove unused variable long_len.
7132
7133 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
7134 (xg_get_image_for_pixmap, create_dialog)
7135 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
7136 (menuitem_highlight_callback, make_menu_item)
7137 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
7138 (xg_create_scroll_bar, xg_update_scrollbar_pos)
7139 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
7140 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
7141 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
7142 (xg_tool_bar_item_expose_callback): Reformat prototype.
7143 (xg_update_menubar): GList *group => GSList *group.
7144 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
7145 before use.
7146 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
7147 to GTK_IMAGE (wimage).
7148
71492010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7150
7151 * atimer.c: Use "" instead of <> for local includes for
7152 consistency with the rest of the code.
7153
7154 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
7155 * xrdb.c (get_system_name):
7156 * window.c (shrink_windows):
7157 * syntax.c (forw_comment):
7158 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7159 (ins_del_costs):
7160 * mem-limits.h (start_of_data):
7161 * lread.c (readevalloop):
7162 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
7163 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
7164 * frame.c (x_get_focus_frame):
7165 * floatfns.c (fmod_float):
7166 * fileio.c (choose_write_coding_system):
7167 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
7168 (malloc_initialize_hook, sort_args, synchronize_locale):
7169 * doprnt.c (doprnt):
7170 * dired.c (compile_pattern):
7171 * data.c (fmod_float):
7172 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
7173 (map_char_table_for_charset):
7174 * charset.c (define_charset_internal):
7175 * alloc.c (Fgarbage_collect): Convert declarations or definitions
7176 to standard C.
7177
71782010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
7179 Stefan Monnier <monnier@iro.umontreal.ca>
7180
7181 * lread.c (read1): Fix up last change to not mess up `c'.
7182
71832010-07-04 Juanma Barranquero <lekktu@gmail.com>
7184
7185 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
7186
71872010-07-04 Juanma Barranquero <lekktu@gmail.com>
7188
7189 Fix prototypes.
7190
7191 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
7192 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
7193 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
7194 arg, as required by internal_condition_case_1.
7195 * print.c (strout): Use const char* for arg PTR.
7196 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
7197 (analyse_first): Fix "const const".
7198 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
7199 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
7200 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
7201
72022010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
7203
7204 * alloc.c: Convert function definitions to standard C.
7205 * atimer.c:
7206 * bidi.c:
7207 * bytecode.c:
7208 * callint.c:
7209 * callproc.c:
7210 * casefiddle.c:
7211 * casetab.c:
7212 * category.c:
7213 * ccl.c:
7214 * character.c:
7215 * charset.c:
7216 * chartab.c:
7217 * cmds.c:
7218 * coding.c:
7219 * composite.c:
7220 * data.c:
7221 * dbusbind.c:
7222 * dired.c:
7223 * dispnew.c:
7224 * doc.c:
7225 * doprnt.c:
7226 * ecrt0.c:
7227 * editfns.c:
7228 * fileio.c:
7229 * filelock.c:
7230 * filemode.c:
7231 * fns.c:
7232 * font.c:
7233 * fontset.c:
7234 * frame.c:
7235 * fringe.c:
7236 * ftfont.c:
7237 * ftxfont.c:
7238 * gtkutil.c:
7239 * indent.c:
7240 * insdel.c:
7241 * intervals.c:
7242 * keymap.c:
7243 * lread.c:
7244 * macros.c:
7245 * marker.c:
7246 * md5.c:
7247 * menu.c:
7248 * minibuf.c:
7249 * prefix-args.c:
7250 * print.c:
7251 * ralloc.c:
7252 * regex.c:
7253 * region-cache.c:
7254 * scroll.c:
7255 * search.c:
7256 * sound.c:
7257 * strftime.c:
7258 * syntax.c:
7259 * sysdep.c:
7260 * termcap.c:
7261 * terminal.c:
7262 * terminfo.c:
7263 * textprop.c:
7264 * tparam.c:
7265 * undo.c:
7266 * unexelf.c:
7267 * window.c:
7268 * xfaces.c:
7269 * xfns.c:
7270 * xfont.c:
7271 * xftfont.c:
7272 * xgselect.c:
7273 * xmenu.c:
7274 * xrdb.c:
7275 * xselect.c:
7276 * xsettings.c:
7277 * xsmfns.c:
7278 * xterm.c: Likewise.
7279
72802010-07-03 Eli Zaretskii <eliz@gnu.org>
7281
7282 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
7283 frames other than the initial one. Fix reversal of colors when
7284 `reverse' is specified in the frame parameters.
7285 Call update_face_from_frame_parameter instead of
7286 internal-set-lisp-face-attribute. Initialize screen colors from
7287 initial_screen_colors[] when f->default_face_done_p is zero,
7288 instead of depending on being called with default-frame-alist as
7289 the alist argument.
7290
7291 * xfaces.c (update_face_from_frame_parameter): Move out of
7292 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
7293 with HAVE_WINDOW_SYSTEM.
7294
7295 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
7296 to menu-bar-mode, if not set in the frame parameters or in
7297 default-frame-alist.
7298
7299 * w32console.c (sys_tputs): Adjust argument list to prototype in
7300 term.c.
7301
73022010-07-03 Juanma Barranquero <lekktu@gmail.com>
7303
7304 * lisp.h (memory_warnings): Fix prototype.
7305
7306 * cm.h (evalcost): Fix prototype.
7307
7308 * cm.c (evalcost): Fix arg type.
7309
73102010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7311
7312 * term.c (term_clear_mouse_face, Fidentity):
7313 * syssignal.h (signal_handler_t):
7314 * lisp.h (memory_warnings):
7315 * coding.h (preferred_coding_system):
7316 * cm.h (evalcost):
7317 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
7318
73192010-07-02 Eli Zaretskii <eliz@gnu.org>
7320
7321 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
7322 from prototypes.
7323
7324 * msdos.h (load_pixmap): Don't define away.
7325
73262010-07-02 Jan Djärv <jan.h.d@swipnet.se>
7327
7328 * lisp.h:
7329 * atimer.h: Remove define for P_.
7330
7331 * alloc.c: Remove __P and P_ from .c and .m files.
7332 * atimer.c:
7333 * buffer.c:
7334 * callint.c:
7335 * category.c:
7336 * charset.c:
7337 * chartab.c:
7338 * cm.c:
7339 * coding.c:
7340 * composite.c:
7341 * data.c:
7342 * dired.c:
7343 * dispnew.c:
7344 * doc.c:
7345 * editfns.c:
7346 * emacs.c:
7347 * eval.c:
7348 * fileio.c:
7349 * filelock.c:
7350 * fns.c:
7351 * font.c:
7352 * fontset.c:
7353 * frame.c:
7354 * ftfont.c:
7355 * ftxfont.c:
7356 * gmalloc.c:
7357 * gtkutil.c:
7358 * image.c:
7359 * indent.c:
7360 * intervals.c:
7361 * keyboard.c:
7362 * keymap.c:
7363 * lread.c:
7364 * marker.c:
7365 * menu.c:
7366 * minibuf.c:
7367 * print.c:
7368 * process.c:
7369 * scroll.c:
7370 * search.c:
7371 * sound.c:
7372 * strftime.c:
7373 * syntax.c:
7374 * sysdep.c:
7375 * term.c:
7376 * terminal.c:
7377 * textprop.c:
7378 * unexalpha.c:
7379 * w32console.c:
7380 * w32fns.c:
7381 * w32font.c:
7382 * w32menu.c:
7383 * w32term.c:
7384 * w32uniscribe.c:
7385 * window.c:
7386 * xdisp.c:
7387 * xfaces.c:
7388 * xfns.c:
7389 * xfont.c:
7390 * xftfont.c:
7391 * xmenu.c:
7392 * xselect.c:
7393 * xterm.c: Likewise.
7394
7395 Remove P_ and __P macros.
7396 * atimer.h: Remove P_ and __P macros.
7397 * buffer.h:
7398 * category.h:
7399 * ccl.h:
7400 * character.h:
7401 * charset.h:
7402 * cm.h:
7403 * coding.h:
7404 * composite.h:
7405 * dispextern.h:
7406 * disptab.h:
7407 * dosfns.h:
7408 * font.h:
7409 * fontset.h:
7410 * frame.h:
7411 * gtkutil.h:
7412 * indent.h:
7413 * intervals.h:
7414 * keyboard.h:
7415 * keymap.h:
7416 * lisp.h:
7417 * macros.h:
7418 * md5.h:
7419 * menu.h:
7420 * msdos.h:
7421 * nsterm.h:
7422 * puresize.h:
7423 * region-cache.h:
7424 * syntax.h:
7425 * syssignal.h:
7426 * systime.h:
7427 * termhooks.h:
7428 * w32font.h:
7429 * w32term.h:
7430 * widget.h:
7431 * window.h:
7432 * xgselect.h:
7433 * xsettings.h:
7434 * xterm.h: Likewise.
7435
74362010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7437
7438 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
7439
7440 Cleanup old code.
7441 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
7442 * syssignal.h: Remove code for Lynx, not supported anymore.
7443 * vm-limit.c: Remove unused code the depends on emacs not being
7444 defined and NO_LIM_DATA being defined.
7445 * mem-limits.h: Remove dead code.
7446
74472010-07-01 Jan Djärv <jan.h.d@swipnet.se>
7448
7449 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
7450
7451 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
7452 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
7453
7454 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
7455 parameters, they are already absolute.
7456
7457 * nsterm.m (x_set_window_size, initFrameFromEmacs):
7458 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
7459
7460 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
7461
7462 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
7463 Update FRAME_TOOLBAR_HEIGHT.
7464
7465 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
7466 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
7467
74682010-06-30 Chong Yidong <cyd@stupidchicken.com>
7469
7470 * frame.c (get_future_frame_param, Fmake_terminal_frame):
7471 Don't check default-frame-alist.
7472
74732010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7474
7475 * process.c (create_process): Avoid using invalid file descriptors.
7476
7477 * callproc.c (child_setup): Avoid closing a file descriptor twice.
7478
74792010-06-30 Jan Djärv <jan.h.d@swipnet.se>
7480
7481 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
7482 Improve documentation. Return font regardless of use_system_font.
7483 (syms_of_xsettings): Improve documentation for font-use-system-font.
7484
74852010-07-10 Chong Yidong <cyd@stupidchicken.com>
7486
7487 * xfaces.c (realize_face): Garbage the frame if a face is removed
7488 (Bug#6593).
7489
74902010-07-05 Andreas Schwab <schwab@linux-m68k.org>
7491
7492 * keyboard.c: Remove duplicate <setjmp.h>.
7493 (read_key_sequence): Remove volatile qualifiers.
7494
74952010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7496
7497 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
7498 (struct glyph_row): New members left_fringe_offset and
7499 right_fringe_offset.
7500
7501 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
7502 specially.
7503 * w32term.c (w32_draw_fringe_bitmap): Likewise.
7504 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
7505
7506 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
7507 Take account of bitmap offset.
7508 (draw_window_fringes): Take account of window vscroll.
7509 (update_window_fringes): Likewise. Extend top-aligned top indicator
7510 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
7511 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
7512 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
7513
75142010-07-04 Juanma Barranquero <lekktu@gmail.com>
7515
7516 * w32fns.c (Qtooltip): Declare.
7517 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
7518
75192010-07-03 Jan Djärv <jan.h.d@swipnet.se>
7520
7521 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
7522 grab on just Press (Bug#6499).
7523
75242010-07-02 Chong Yidong <cyd@stupidchicken.com>
7525
7526 * frame.c (Qtooltip): New var.
7527 (delete_frame): Use it. Fix faulty if statement. Don't update
7528 mode line for tooltip frames. Suggested by Martin Rudalics.
7529
7530 * xfns.c (x_create_tip_frame):
7531 * w32fns.c (x_create_tip_frame): Use it.
7532
75332010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
7534
7535 * xftfont.c (xftfont_open): Check font width one by one also when
7536 spacing is dual.
7537
7538 * ftfont.c (ftfont_open): Ditto.
7539
75402010-06-30 Glenn Morris <rgm@gnu.org>
7541
7542 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
7543
7544 * Makefile.in (CANNOT_DUMP): Update for configure name change.
7545
7546 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
7547 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
7548 * s/darwin.h (SYSTEM_MALLOC):
7549 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
7550
75512010-06-29 Jan Djärv <jan.h.d@swipnet.se>
7552
7553 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
7554 (ns_get_screen): Don't assign integer to f.
7555 (Fx_display_color_cells): Declarations before statements.
7556
75572010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7558
7559 * xfns.c (x_default_font_parameter): Remove got_from_system
7560 (Bug#6526).
7561
7562 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
7563 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
7564 New defines based on what configure finds.
7565
7566 * xterm.c (XTflash): Use gtk_widget_get_window.
7567 (xg_scroll_callback): Use gtk_adjustment_get_upper and
7568 gtk_adjustment_get_page_size.
7569 (handle_one_xevent): Use gtk_widget_get_mapped.
7570 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
7571 messages.
7572
7573 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
7574
7575 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
7576 HAVE_GTK_FILE_SELECTION_NEW.
7577
7578 * gtkutil.c (xg_display_open, xg_display_close):
7579 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
7580 (xg_display_open): Return type is void.
7581 (gtk_widget_set_has_window)
7582 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
7583 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
7584 (gtk_adjustment_set_page_increment)
7585 (gtk_adjustment_get_step_increment): #define these if not found
7586 by configure.
7587 (remove_submenu): New define based on Gtk+ version.
7588 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
7589 Use gtk_widget_get_window.
7590 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
7591 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
7592 (create_dialog): Use gtk_dialog_get_action_area and
7593 gtk_dialog_get_content_area.
7594 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
7595 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
7596 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
7597 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
7598 Use g_object_ref and g_object_unref.
7599 (xg_update_menu_item, xg_tool_bar_menu_proxy):
7600 Use gtk_widget_get_sensitive.
7601 (xg_update_submenu): Use remove_submenu.
7602 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
7603 properties instead to get old x and y position.
7604 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
7605 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
7606 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
7607 (xg_get_tool_bar_widgets): New function.
7608 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
7609 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
7610 (toolbar_set_orientation): New #define based on if configure
7611 finds gtk_orientable_set_orientation.
7612 (xg_create_tool_bar): Call toolbar_set_orientation.
7613 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
7614 instead of gtk_box_pack_start_defaults.
7615
76162010-06-28 Chong Yidong <cyd@stupidchicken.com>
7617
7618 * cmds.c (Fdelete_backward_char): Move into Lisp.
7619
76202010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
7621
7622 * s/freebsd.h (BSD4_2): Remove redundant definition.
7623 bsd-common.h defines it already.
7624
76252010-06-27 Chong Yidong <cyd@stupidchicken.com>
7626
7627 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
7628 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
7629 tool-bar-mode, which are now set using these X resources at
7630 startup, to determine the defaults (Bug#2249).
7631
7632 * w32fns.c (Fx_create_frame):
7633 * nsfns.m (Fx_create_frame): Likewise.
7634
7635 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
7636
76372010-06-24 Juanma Barranquero <lekktu@gmail.com>
7638
7639 * gtkutil.c (xg_update_scrollbar_pos):
7640 Avoid C99 mid-block variable declaration.
7641
76422010-06-22 Jan Djärv <jan.h.d@swipnet.se>
7643
7644 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
7645
7646 * gtkutil.h (xg_show_scroll_bar): Remove.
7647
7648 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
7649 if height is less than scroll bar min size.
7650 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
7651
7652 * xfns.c (x_default_font_parameter): Try to open font from system
7653 before using it (bug#6478). Rename got_from_gconf to got_from_system.
7654
76552010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
7656
7657 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
7658
76592010-06-20 Eli Zaretskii <eliz@gnu.org>
7660
7661 * xdisp.c (try_scrolling): When scroll-conservatively is set to
7662 most-positive-fixnum, be extra accurate when scrolling window
7663 start, to avoid missing the cursor line.
7664
76652010-06-19 Eli Zaretskii <eliz@gnu.org>
7666
7667 * xdisp.c (try_scrolling): Compute the limit for searching point
7668 in forward scroll from scroll_max, instead of an arbitrary limit
7669 of 10 screen lines.
7670 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
7671 and
7672 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
7673 for details.
7674
76752010-06-16 Glenn Morris <rgm@gnu.org>
7676
7677 * editfns.c (Fbyte_to_string): Pacify compiler.
7678
76792010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
7680
7681 * lread.c (read1): Phase out old-style backquotes a bit more.
7682
76832010-06-12 Eli Zaretskii <eliz@gnu.org>
7684
7685 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
7686 bidimirror.h.
7687
7688 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
7689
7690 * bidi.c (bidi_initialize): Remove explicit initialization of
7691 bidi_type_table; include biditype.h instead. Don't support
7692 entries whose second codepoint is zero. Initialize bidi_mirror_table.
7693 (bidi_mirror_char): Use bidi_mirror_table.
7694
7695 * biditype.h: New file.
7696
7697 * bidimirror.h: New file.
7698
7699 * window.c (syms_of_window): Doc fix (bug#6409).
7700
77012010-06-12 Romain Francoise <romain@orebokech.com>
7702
7703 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
7704 ediff-hook.
7705
77062010-06-10 Glenn Morris <rgm@gnu.org>
7707
7708 * editfns.c (Fbyte_to_string): Pacify compiler.
7709
7710 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
7711
77122010-06-26 Andreas Schwab <schwab@linux-m68k.org>
7713
7714 * alloc.c (Fmake_byte_code): Don't access undefined argument
7715 (Bug#6517).
7716
77172010-06-25 Chong Yidong <cyd@stupidchicken.com>
7718
7719 * xdisp.c (next_element_from_image): Ensure that after-strings are
7720 read the next time we hit handle_stop (Bug#1336).
7721
77222010-06-23 Andreas Schwab <schwab@linux-m68k.org>
7723
7724 * lread.c (read1): Signal error if #s is not followed by paren.
7725
77262010-06-19 Chong Yidong <cyd@stupidchicken.com>
7727
7728 * image.c (free_image): Mark frame as garbaged (Bug#6426).
7729
7730 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
7731
77322010-06-15 Glenn Morris <rgm@gnu.org>
7733
7734 * editfns.c (Fbyte_to_string): Pacify compiler.
7735
77362010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
7737
7738 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
7739 Check `object's type before accessing its guts.
7740
77412010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
7742
7743 * s/usg5-4.h: Fix previous change.
7744 Suggested by Lawrence Mitchell <wence@gmx.li>
7745
77462010-06-08 Andreas Schwab <schwab@linux-m68k.org>
7747
7748 * minibuf.c (Fall_completions): Add more checks.
7749
77502010-06-08 Juanma Barranquero <lekktu@gmail.com>
7751
7752 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
7753
77542010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
7755
7756 * lread.c (X_OK): Remove, unused.
7757
7758 * dispnew.c: Remove obsolete comment.
7759
7760 Remove INCLUDED_FCNTL.
7761 * xterm.c (INCLUDED_FCNTL):
7762 * callproc.c (INCLUDED_FCNTL):
7763 * alloc.c (INCLUDED_FCNTL):
7764 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
7765 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
7766
77672010-06-07 Martin Rudalics <rudalics@gmx.at>
7768
7769 * window.c (Fselect_window): Move `record_buffer' up to the
7770 beginning of this function, so the buffer gets recorded
7771 even if the selected window does not change.
7772 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
7773
77742010-06-07 Juanma Barranquero <lekktu@gmail.com>
7775
7776 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
7777 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
7778
77792010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
7780
7781 Remove BSTRING related code, all platforms define it.
7782 * s/usg5-4.h (BSTRING): Remove definition.
7783 * s/template.h (BSTRING):
7784 * s/msdos.h (BSTRING):
7785 * s/ms-w32.h (BSTRING):
7786 * s/hpux10-20.h (BSTRING):
7787 * s/gnu-linux.h (BSTRING):
7788 * s/darwin.h (BSTRING):
7789 * s/cygwin.h (BSTRING):
7790 * s/bsd-common.h (BSTRING):
7791 * s/aix4-2.h (BSTRING): Likewise.
7792 * sysdep.c: Remove code depending on BSTRING not being defined.
7793
77942010-06-05 Juanma Barranquero <lekktu@gmail.com>
7795
7796 Remove obsolete macro BASE_LEADING_CODE_P.
7797 * character.h (BASE_LEADING_CODE_P): Remove.
7798 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
7799 * buffer.c (Fset_buffer_multibyte):
7800 * indent.c (scan_for_column, compute_motion):
7801 * insdel.c (count_combining_before, count_combining_after):
7802 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
7803
78042010-06-04 Juanma Barranquero <lekktu@gmail.com>
7805
7806 Turn `directory-sep-char' into a noop.
7807
7808 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
7809 (DIRECTORY_SEP): Define unconditionally.
7810
7811 * s/ms-w32.h (DIRECTORY_SEP): Remove.
7812
7813 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
7814 call dostounix_filename directly.
7815
7816 * fileio.c (CORRECT_DIR_SEPS): Remove.
7817 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
7818 (Fsubstitute_in_file_name): Use dostounix_filename instead.
7819 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
7820 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
7821
7822 * w32proc.c (CORRECT_DIR_SEPS): Remove.
7823 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
7824
78252010-06-03 Andreas Schwab <schwab@linux-m68k.org>
7826
7827 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
7828 (Bug#6346)
7829
78302010-06-03 Juanma Barranquero <lekktu@gmail.com>
7831
7832 * ccl.c (Fccl_program_p): Fix typo in docstring.
7833
78342010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
7835
7836 Move UNEXEC definition to autoconf.
7837 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
7838 * s/sol2-10.h (UNEXEC):
7839 * s/irix6-5.h (UNEXEC):
7840 * s/hpux10-20.h (UNEXEC):
7841 * s/gnu-linux.h (UNEXEC):
7842 * s/darwin.h (UNEXEC):
7843 * s/cygwin.h (UNEXEC):
7844 * s/bsd-common.h (UNEXEC):
7845 * s/aix4-2.h (UNEXEC):
7846 * m/alpha.h (UNEXEC): Likewise.
7847 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
7848
78492010-06-03 Juanma Barranquero <lekktu@gmail.com>
7850
7851 Remove obsolete pre-unicode2 macros.
7852 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
7853 * composite.c (composition_reseat_it):
7854 * data.c (Faset):
7855 * fns.c (Ffillarray):
7856 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
7857 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
7858
78592010-06-03 Juri Linkov <juri@jurta.org>
7860
7861 * buffer.c (Fother_buffer): Add CHECK_FRAME.
7862 (Fswitch_to_buffer): Remove unused variable `err'.
7863
78642010-06-03 Glenn Morris <rgm@gnu.org>
7865
7866 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
7867
7868 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
7869 now that AH_BOTTOM does it.
7870
7871 * m/hp800.h (HAVE_ALLOCA):
7872 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
7873
7874 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
7875 Remove NOT_C_CODE tests, it is always true now.
7876
78772010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
7878
7879 Fix config.h includes.
7880 * xsettings.c:
7881 * xgselect.c:
7882 * nsterm.m:
7883 * nsselect.m:
7884 * nsimage.m:
7885 * nsfont.m:
7886 * nsfns.m:
7887 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
7888 other files do.
7889
7890 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
7891
7892 * s/sol2-6.h: Remove obsolete comments.
7893
7894 Remove unnecessary alloca.h includes.
7895 * keymap.c: Do not include alloca.h, config.h does that.
7896 * sysdep.c: Likewise. Do not define fwrite, not used.
7897
78982010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
7899
7900 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
7901 the HAVE_TERMIO where it belongs (bug#6149).
7902
79032010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
7904
7905 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
7906 of bug#6305).
7907
79082010-05-30 Eli Zaretskii <eliz@gnu.org>
7909
7910 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
7911 state is always cached (bug#6306).
7912
79132010-05-29 Eli Zaretskii <eliz@gnu.org>
7914
7915 Fix cursor motion in bidi-reordered continued lines.
7916 * xdisp.c (try_cursor_movement): Backup to non-continuation line
7917 only after finding point's row. Fix the logic. Rewrite the loop
7918 over continuation lines in bidi-reordered buffers.
7919 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
7920 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
7921
79222010-05-28 Michael Albinus <michael.albinus@gmx.de>
7923
7924 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
7925
79262010-05-28 Kenichi Handa <handa@m17n.org>
7927
7928 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
7929 Don't sheck SPEC if it is nil.
7930 (font_list_entities): Call font_delete_unmatched if
7931 Vface_ignored_fonts is non-nil. (Bug#6287)
7932
79332010-05-28 Glenn Morris <rgm@gnu.org>
7934
7935 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
7936
79372010-05-27 Chong Yidong <cyd@stupidchicken.com>
7938
7939 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
7940 whether to trash.
7941 (internal_delete_file, Frename_file): Callers changed.
7942 (delete_by_moving_to_trash): Doc fix.
7943 (Fdelete_directory_internal): Don't move to trash.
7944
7945 * callproc.c (delete_temp_file):
7946 * buffer.c (Fkill_buffer): Callers changed.
7947
7948 * lisp.h: Update prototype.
7949
79502010-05-27 Chong Yidong <cyd@stupidchicken.com>
7951
7952 * xdisp.c (redisplay_window): After redisplay, check if point is
7953 still valid before setting it (Bug#6177).
7954
79552010-05-27 Glenn Morris <rgm@gnu.org>
7956
7957 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
7958 Convert comments to Makefile format.
7959
7960 * Makefile.in (bootstrap-clean): No more Makefile.c.
7961
79622010-05-26 Glenn Morris <rgm@gnu.org>
7963
7964 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
7965 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
7966
7967 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
7968 Remove.
7969 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
7970
79712010-05-26 Kenichi Handa <handa@m17n.org>
7972
7973 * composite.c (composition_compute_stop_pos): Fix condition for
7974 backward scanning.
7975
79762010-05-25 Glenn Morris <rgm@gnu.org>
7977
7978 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
7979 Move before TEMACS_LDFLAGS.
7980 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
7981 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
7982
7983 * Makefile.in (NOT_C_CODE): No longer define.
7984 (config.h): No longer include.
7985
7986 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
7987 variables it may reference.
7988
7989 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
7990 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
7991
79922010-05-25 Kenichi Handa <handa@m17n.org>
7993
7994 * dispextern.h (struct composition_it): New members rule_idx and
7995 charpos.
7996
7997 * xdisp.c (set_iterator_to_next): While scanning backward, assume
7998 that the character positions of IT point the last character of the
7999 current grapheme cluster.
8000 (next_element_from_composition): Don't change character positions
8001 of IT.
8002 (append_composite_glyph): Set glyph->charpos to
8003 it->cmp_it.charpos.
8004
8005 * composite.c (autocmp_chars): Change the first argument to RULE,
8006 and try composition with RULE only.
8007 (composition_compute_stop_pos): Record the index number of the
8008 composition rule in CMP_IT->rule_idx.
8009 (composition_reseat_it): Call autocmp_chars repeatedly until the
8010 correct rule of the composition is found.
8011 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
8012 is at the last character of the current grapheme cluster when
8013 CMP_IT->reversed_p is nonzero.
8014
80152010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8016
8017 * editfns.c (Fbyte_to_string): New function.
8018
80192010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8020
8021 * process.c (Fmake_network_process): Set :host to nil if it's not used.
8022 Suggested by Masatake YAMATO <yamato@redhat.com>.
8023
80242010-05-23 Eli Zaretskii <eliz@gnu.org>
8025
8026 * dispextern.h (init_iterator): Sync prototype with changed definition.
8027
80282010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
8029
8030 * s/netbsd.h: If terminfo is found, use it in preference to
8031 termcap. (Bug#6190) [Backport from trunk]
8032
80332010-05-19 Eli Zaretskii <eliz@gnu.org>
8034
8035 Redesign and reimplement bidi-aware edge positions of glyph rows.
8036
8037 * dispextern.h (struct glyph_row): New members minpos and maxpos.
8038 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
8039 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
8040 and maxpos members instead of start.pos and end.pos, respectively.
8041
8042 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
8043 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
8044 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
8045 (try_window_reusing_current_matrix, try_window_id):
8046 Use ROW->minpos rather than ROW->start.pos.
8047 (init_from_display_pos, init_iterator): Use EMACS_INT for
8048 character and byte positions.
8049 (find_row_edges): Rename from find_row_end. Accept additional
8050 arguments for minimum and maximum buffer positions seen by
8051 display_line for this row. Don't use iterator to find the
8052 position following the maximum one; instead, increment the
8053 position found by display_line directly. Fix logic; eol_pos
8054 should be tested before the rest. Handle the case of characters
8055 delivered from display vector (bug#6036). Fix tests related to
8056 it->method. Handle the truncated_on_right_p rows.
8057 (RECORD_MAX_MIN_POS): New macro.
8058 (display_line): Use it to record the minimum and maximum buffer
8059 positions for glyphs in the row being assembled. Record the
8060 position of the newline that terminates the line. If word wrap is
8061 in effect, restore minimum and maximum positions seen up to the
8062 wrap point, when iterator returns to it.
8063 (try_window_reusing_current_matrix): Give up if in bidi-reordered
8064 row and cursor not already at point. Restore original pre-bidi
8065 code for unidirectional buffers.
8066
8067 * dispnew.c (increment_row_positions, check_matrix_invariants):
8068 Increment and check row->start.pos and row->end.pos, in addition
8069 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
8070
8071 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
8072 Display truncated_on_left_p and truncated_on_right_p flags.
8073 Formatting fixes.
8074 (pmtxrows): Display the ordinal number of each row. Don't display
8075 rows beyond the last one.
8076
8077 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
8078 it is not copied by bidi_copy_it.
8079
80802010-05-22 Eli Zaretskii <eliz@gnu.org>
8081
8082 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
8083 (Bug#6237)
8084
80852010-05-22 Chong Yidong <cyd@stupidchicken.com>
8086
8087 * image.c (Fimage_flush): Rename from image-refresh.
8088
80892010-05-21 Chong Yidong <cyd@stupidchicken.com>
8090
8091 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
8092 just one window.
8093
8094 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
8095 (clear_image_cache): If the number of cached images is unusually
8096 large, decrease the cache eviction delay (Bug#6230).
8097
80982010-05-21 Glenn Morris <rgm@gnu.org>
8099
8100 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
8101 Move these rules to ns.mk.
8102 * ns.mk: New file.
8103
8104 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
8105
8106 * Makefile.in (CANNOT_DUMP): New, set by configure.
8107 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
8108
81092010-05-20 Juri Linkov <juri@jurta.org>
8110
8111 * fileio.c (Fdelete_file): Change interative spec to use
8112 `read-file-name' like in `find-file-read-args' where the default
8113 value is `default-directory' instead of `buffer-file-name'.
8114 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
8115
81162010-05-20 Kevin Ryde <user42@zip.com.au>
8117
8118 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
8119 (Voverriding_terminal_local_map, Vsystem_key_alist)
8120 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
8121
81222010-05-20 Glenn Morris <rgm@gnu.org>
8123
8124 * Makefile.in (DEPDIR): New constant.
8125 (DEPFLAGS): Set with configure, not cpp.
8126 (MKDEPDIR): New, set by configure.
8127 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
8128 (clean): Use $DEPDIR.
8129 (deps_frag): Include from configure.
8130 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
8131 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
8132
8133 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
8134 Fix reallocation of the cache. (Bug#6210)
8135
81362010-05-19 Glenn Morris <rgm@gnu.org>
8137
8138 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
8139
8140 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
8141 (GNULIB_VAR): Remove.
8142 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
8143
8144 * m/ibms390x.h (LINKER):
8145 * m/macppc.h (LINKER) [GNU_LINUX]:
8146 * s/aix4-2.h (ORDINARY_LINK):
8147 * s/cygwin.h (LINKER):
8148 * s/darwin.h (ORDINARY_LINK):
8149 * s/gnu.h (ORDINARY_LINK):
8150 * s/netbsd.h (LINKER):
8151 * s/usg5-4.h (ORDINARY_LINK):
8152 Move to configure.
8153
8154 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
8155
81562010-05-18 Chong Yidong <cyd@stupidchicken.com>
8157
8158 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
8159 prevent stack overflow if number of arguments is too large
8160 (Bug#6214).
8161
81622010-05-18 Juanma Barranquero <lekktu@gmail.com>
8163
8164 * charset.c (load_charset_map_from_file): Don't call close after fclose.
8165
81662010-05-18 Glenn Morris <rgm@gnu.org>
8167
8168 * s/gnu-linux.h: Combine two conditionals.
8169
8170 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
8171 $(POST_ALLOC_OBJ).
8172
8173 * Makefile.in (RALLOC_OBJ): New, set by configure.
8174 (rallocobj): Replace with the previous variable.
8175 (otherobj): Use $RALLOC_OBJ.
8176
8177 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
8178 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
8179
8180 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
8181 (gmallocobj, vmlimitobj): Replace with previous two variables.
8182 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
8183
81842010-05-17 Glenn Morris <rgm@gnu.org>
8185
8186 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
8187 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
8188
81892010-05-16 Glenn Morris <rgm@gnu.org>
8190
8191 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
8192
8193 * Makefile.in (clean): Get rid of HAVE_NS conditional.
8194
8195 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
8196 trailing "/".
8197
8198 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
8199 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
8200
8201 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
8202 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
8203 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
8204 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
8205 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
8206
8207 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
8208 Remove ${STARTFLAGS}, nothing ever sets it.
8209
82102010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
8211
8212 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
8213
82142010-05-16 Glenn Morris <rgm@gnu.org>
8215
8216 * Makefile.in (LIBX_BASE): Always define.
8217
8218 * Makefile.in (LIBX_OTHER): Move out of cpp section.
8219
8220 * Makefile.in (LIBXT): Always define.
8221
82222010-05-15 Glenn Morris <rgm@gnu.org>
8223
8224 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
8225
8226 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
8227 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
8228
82292010-05-15 Ken Raeburn <raeburn@raeburn.org>
8230
8231 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
8232 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
8233
8234 * emacs.c (main): Initialize initial-environment and
8235 process-environment before generating from env, not after.
8236
8237 Handle --version reasonably in CANNOT_DUMP configuration.
8238 * emacs.c (emacs_version, emacs_copyright): New string variables.
8239 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
8240 (syms_of_emacs): Defvar them, and initialize them from the C
8241 string variables.
8242 (main): If initialization hasn't been done, print initial version
8243 info from the C strings, instead of starting an interactive session.
8244
82452010-05-15 Eli Zaretskii <eliz@gnu.org>
8246
8247 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
8248 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
8249 (bidi_paragraph_init): Remove redundant assertion that we are at
8250 the beginning of a line after call to bidi_find_paragraph_start.
8251
8252 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
8253 (syms_of_xdisp): Defsubr it.
8254
8255 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
8256
8257 * Makefile.in: Fix MSDOS-related comments.
8258
82592010-05-15 Glenn Morris <rgm@gnu.org>
8260
8261 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
8262 (really-lwlib, really-oldXMenu): Always define.
8263 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
8264
8265 * Makefile.in: Simplify cpp conditional.
8266
8267 * Makefile.in (${ns_appdir}): Simplify using umask.
8268
8269 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
8270
82712010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
8272
8273 * eval.c (specbind): Remove left-over duplicate test.
8274 Disallow let-binding frame-local vars. Add comment.
8275
82762010-05-14 Eli Zaretskii <eliz@gnu.org>
8277
8278 Make the cache of bidi iterator states dynamically allocated.
8279 * bidi.c (bidi_cache_shrink): New function.
8280 (bidi_init_it): Call it.
8281 (bidi_cache_iterator_state): Enlarge the cache if needed.
8282
8283 * bidi.c (bidi_move_to_visually_next): Rename from
8284 bidi_get_next_char_visually. All callers changed.
8285
82862010-05-14 Kenichi Handa <handa@m17n.org>
8287
8288 * dispextern.h (struct composition_it): New member reversed_p.
8289
8290 * composite.c (composition_compute_stop_pos): Search backward if
8291 ENDPOS < CHARPOS.
8292 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
8293 Set CMP_IT->reversed_p.
8294 (composition_update_it): Pay attention to CMP_IT->reversed_p.
8295
8296 * xdisp.c (set_iterator_to_next):
8297 Call composition_compute_stop_pos with negative ENDPOS if we are
8298 scanning backward. Call composition_compute_stop_pos if scan
8299 direction is changed.
8300 (next_element_from_buffer): Call composition_compute_stop_pos with
8301 negative ENDPOS if we are scanning backward.
8302 (next_element_from_composition): Pay attention to
8303 IT->cmp_it.reversed_p.
8304
83052010-05-14 Kenichi Handa <handa@m17n.org>
8306
8307 * font.c (font_range): Return the range for the font found at first.
8308
83092010-05-14 Glenn Morris <rgm@gnu.org>
8310
8311 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
8312
8313 * Makefile.in (mktime, X11, register): Move undefs to configure.
8314
8315 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
8316 (MSDOS_X_OBJ): New variable.
8317 (MSDOS_SUPPORT_REAL): New constant.
8318 (MSDOS_SUPPORT): Set as a variable, not with cpp.
8319 (obj): Use MSDOS_X_OBJ.
8320 (lisp): Use MSDOS_SUPPORT as a variable.
8321
8322 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
8323 (GPM_MOUSE_SUPPORT): Now it's a constant.
8324 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
8325 not cpp.
8326
8327 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
8328 (ns_appresdir): Remove, unused.
8329
8330 * Makefile.in (SHELL): Move outside cpp section.
8331
8332 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
8333
83342010-05-13 Glenn Morris <rgm@gnu.org>
8335
8336 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
8337 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
8338
8339 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
8340 HAVE_WINDOW_SYSTEM must be too.
8341
8342 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
8343 (lisp): Remove WINNT_SUPPORT.
8344
8345 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
8346 Let configure set these variables (to empty) in this case as well.
8347
8348 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
8349 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
8350
8351 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
8352 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
8353 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
8354 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
8355 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
8356 the values output by configure.
8357 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
8358
83592010-05-12 Glenn Morris <rgm@gnu.org>
8360
8361 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
8362 (LINKER_WAS_SPECIFIED): Remove.
8363
8364 * Makefile.in (LIB_GCC): Set using configure, not cpp.
8365 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
8366 * m/arm.h (LIB_GCC) [GNU_LINUX]:
8367 * s/cygwin.h (LIB_GCC):
8368 * s/freebsd.h (LIB_GCC):
8369 * s/gnu-linux.h (LIB_GCC):
8370 * s/msdos.h (LIB_GCC):
8371 * s/netbsd.h (LIB_GCC):
8372 Move to configure.
8373
83742010-05-11 Karel Klíč <kklic@redhat.com>
8375
8376 * ftfont.c: Fix incorrect parentheses of #if condition for
8377 definining M17N_FLT_USE_NEW_FEATURE.
8378
83792010-05-11 Glenn Morris <rgm@gnu.org>
8380
8381 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
8382 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
8383
83842010-05-10 Eli Zaretskii <eliz@gnu.org>
8385
8386 * xdisp.c (init_iterator): Don't turn on bidi reordering in
8387 unibyte buffers. See
8388 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
8389
83902010-05-10 Glenn Morris <rgm@gnu.org>
8391
8392 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
8393 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
8394 (LIBES): Use LIBS_SYSTEM as a variable.
8395 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
8396 * s/aix4-2.h (LIBS_SYSTEM):
8397 * s/freebsd.h (LIBS_SYSTEM):
8398 * s/hpux10-20.h (LIBS_SYSTEM):
8399 * s/sol2-6.h (LIBS_SYSTEM):
8400 * s/unixware.h (LIBS_SYSTEM):
8401 Move to configure.
8402
8403 * s/aix4-2.h (MAIL_USE_LOCKF):
8404 * s/bsd-common.h (MAIL_USE_FLOCK):
8405 * s/darwin.h (MAIL_USE_FLOCK):
8406 * s/gnu-linux.h (MAIL_USE_FLOCK):
8407 * s/irix6-5.h (MAIL_USE_FLOCK):
8408 * s/template.h (MAIL_USE_FLOCK):
8409 Move to configure.
8410
84112010-05-08 Chong Yidong <cyd@stupidchicken.com>
8412
8413 * Version 23.2 released.
8414
84152010-05-08 Andreas Schwab <schwab@linux-m68k.org>
8416
8417 * composite.c (autocmp_chars): Save point as marker before calling
8418 auto-composition-function (Bug#5984).
8419
8420 * lisp.h (restore_point_unwind): Add prototype.
8421
8422 * fileio.c (restore_point_unwind): Remove static attribute.
8423
84242010-05-08 Kenichi Handa <handa@m17n.org>
8425
8426 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
8427 new feature of libotf and m17n-flt.
8428 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
8429 Call OTF_check_features even if no specific feature is given.
8430 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
8431 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
8432 that OUT is NULL. Use OTF_drive_gsub_with_log and
8433 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
8434 OTF_drive_gpos.
8435 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
8436 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
8437 Setup mflt_enable_new_feature and mflt_try_otf.
8438
84392010-05-08 Jan Djärv <jan.h.d@swipnet.se>
8440
8441 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
8442
8443 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
8444 box and toolbar (Bug #6139).
8445 (xg_create_tool_bar): Remove comment (Bug #6139).
8446 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
8447 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
8448
84492010-05-08 Juanma Barranquero <lekktu@gmail.com>
8450
8451 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
8452 Update dependencies.
8453
84542010-05-08 Eli Zaretskii <eliz@gnu.org>
8455
8456 * fringe.c (update_window_fringes): Set up truncation bitmaps for
8457 R2L lines.
8458
84592010-05-08 Glenn Morris <rgm@gnu.org>
8460
8461 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
8462
8463 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
8464 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
8465 (termcapobj): Replace with TERMCAP_OBJ.
8466 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
8467 (LIBES): Use LIBS_TERMCAP as a variable.
8468
8469 * s/freebsd.h (osreldate.h): No longer include, since this file
8470 does not use __FreeBSD_version any more.
8471
8472 * s/aix4-2.h (TERMINFO):
8473 * s/cygwin.h (TERMINFO):
8474 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8475 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
8476 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8477 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8478 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
8479 * s/irix6-5.h (TERMINFO):
8480 * s/netbsd.h (LIBS_TERMCAP):
8481 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
8482 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
8483 * s/usg5-4.h (TERMINFO):
8484 Move to configure.
8485
84862010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8487
8488 * eval.c (unbind_to): Don't unbind a local binding into the global
8489 binding when the local binding disappeared. Inversely, don't unbind
8490 a global binding into a newly created local binding.
8491 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
8492 can specify the frame to use, when applicable. Adjust callers.
8493
84942010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
8495 Stefan Monnier <monnier@iro.umontreal.ca>
8496
8497 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
8498
84992010-05-07 Eli Zaretskii <eliz@gnu.org>
8500
8501 * w32fns.c: Include w32.h.
8502 (Fw32_shell_execute): Decode the error message before passing it
8503 to `error'. (Bug#6126)
8504
8505 * msdos.c (dos_set_window_size):
8506 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
8507 instead of `XSYMBOL (foo)->value'.
8508
85092010-05-07 Eli Zaretskii <eliz@gnu.org>
8510
8511 Fix the MS-DOS build, broken by autoconfiscation.
8512
8513 * Makefile.in: Don't use Make-style comments past the "start of
8514 cpp stuff" line.
8515 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
8516
8517 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
8518 edited directly by msdos/sed1v2.inp).
8519
85202010-05-07 Glenn Morris <rgm@gnu.org>
8521
8522 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
8523 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
8524 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
8525 move out of cpp section.
8526 * s/freebsd.h (LD_SWITCH_SYSTEM):
8527 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
8528 * s/netbsd.h (LD_SWITCH_SYSTEM):
8529 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
8530
85312010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
8532
8533 Define LIB_STANDARD and START_FILES using autoconf.
8534 * s/usg5-4.h (LIB_STANDARD):
8535 * s/netbsd.h (START_FILES):
8536 * s/irix6-5.h (LIB_STANDARD):
8537 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
8538 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
8539 * s/freebsd.h (START_FILES):
8540 * s/darwin.h (START_FILES):
8541 * s/cygwin.h (START_FILES):
8542 * s/aix4-2.h (LIB_STANDARD):
8543 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
8544 * Makefile.in (STARTFILES): Rename to START_FILES, define using
8545 autoconf, not cpp.
8546
85472010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
8548
8549 Remove NEED_BSDTTY and NEED_UNISTD_H.
8550 * s/hpux10-20.h (NEED_BSDTTY): Remove.
8551 * s/aix4-2.h (NEED_UNISTD_H): Remove.
8552 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
8553 <sys/ptyio.h> and <unistd.h>.
8554
8555 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
8556
8557 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
8558 * s/gnu.h (START_FILES): Remove empty definition.
8559
85602010-05-06 Jan Djärv <jan.h.d@swipnet.se>
8561
8562 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
8563
85642010-05-06 Glenn Morris <rgm@gnu.org>
8565
8566 * Makefile.in (CPP, LN_S): Remove unused variables.
8567
85682010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8569
8570 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
8571
85722010-05-05 Lawrence Mitchell <wence@gmx.li>
8573
8574 * m/sparc.h: Fix typo in earlier change.
8575
85762010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8577
8578 Misc tweaks.
8579 * eval.c (Fdefvaralias): Remove unintended nested if.
8580 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
8581
85822010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
8583
8584 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
8585
85862010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
8587
8588 Remove BSD_PGRPS.
8589 * s/bsd-common.h (BSD_PGRPS): Remove undef.
8590 * s/gnu-linux.h (BSD_PGRPS): Remove.
8591 * term.c (dissociate_if_controlling_tty):
8592 * sysdep.c (narrow_foreground_group, widen_foreground_group)
8593 (init_sys_modes, reset_sys_modes):
8594 * emacs.c (main):
8595 * callproc.c (Fcall_process, child_setup): Remove code depending
8596 on BSD_PGRPS.
8597
8598 Remove POSIX_SIGNALS.
8599 * s/usg5-4.h (POSIX_SIGNALS):
8600 * s/netbsd.h (POSIX_SIGNALS):
8601 * s/msdos.h (POSIX_SIGNALS):
8602 * s/ms-w32.h (POSIX_SIGNALS):
8603 * s/hpux11.h (POSIX_SIGNALS):
8604 * s/gnu.h (POSIX_SIGNALS):
8605 * s/gnu-linux.h (POSIX_SIGNALS):
8606 * s/freebsd.h (POSIX_SIGNALS):
8607 * s/darwin.h (POSIX_SIGNALS):
8608 * s/cygwin.h (POSIX_SIGNALS):
8609 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
8610 * s/unixware.h:
8611 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
8612 * process.c (create_process):
8613 * syssignal.h:
8614 * sysdep.c (wait_for_termination, init_signals):
8615 * process.c (create_process):
8616 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
8617 remove all code that assumes the contrary.
8618
86192010-05-04 Glenn Morris <rgm@gnu.org>
8620
8621 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
8622 variable.
8623 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
8624 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
8625 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
8626 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
8627 LD_SWITCH_SYSTEM_tmp.
8628 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
8629 New variables, set by configure.
8630
8631 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
8632 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
8633 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
8634 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
8635 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
8636
8637 * s/aix4-2.h (C_SWITCH_SYSTEM):
8638 * m/alpha.h (C_SWITCH_MACHINE):
8639 Move to configure.in.
8640 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
8641 New variables, set by configure.
8642 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
8643 $c_switch_machine and $c_switch_system.
8644
86452010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
8646
8647 * s/hpux10-20.h (LIB_STANDARD): New definition.
8648 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
8649 on it, not used anymore.
8650
86512010-05-03 Chong Yidong <cyd@stupidchicken.com>
8652
8653 * eval.c (internal_condition_case_n): Rename from
8654 internal_condition_case_2.
8655 (internal_condition_case_2): New function.
8656
8657 * xdisp.c (safe_call): Use internal_condition_case_n.
8658
8659 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
8660 (internal_delete_file, Frename_file): Callers changed.
8661
8662 * buffer.c (Fkill_buffer):
8663 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
8664
8665 * lisp.h: Update prototypes.
8666
86672010-05-03 Glenn Morris <rgm@gnu.org>
8668
8669 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
8670 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
8671 (LIBXT): Set with configure, not cpp.
8672 (LIBX): Remove.
8673 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
8674
86752010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
8676
8677 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
8678 The FreeBSD is not needed, the default works, Solaris version is
8679 not needed, and the remaining case is not supported by configure.
8680
86812010-05-02 Jan Djärv <jan.h.d@swipnet.se>
8682
8683 * xsmfns.c (CHDIR_OPT): New define.
8684 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
8685 restarting emacs.
8686
8687 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
8688 shut_down_emacs.
8689
8690 * emacs.c (USAGE1): Mention --chdir.
8691 (main): Handle --chdir.
8692 (standard_args): Add --chdir.
8693 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
8694 #5552).
8695
86962010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
8697
8698 Remove LD_SWITCH_MACHINE.
8699 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
8700 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
8701
8702 Clean up IRIX code.
8703 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
8704 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
8705
8706 Clean up AIX code.
8707 * m/ibmrs6000.inp: Remove file, unused.
8708 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
8709 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
8710 definition ...
8711 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
8712
8713 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
8714 unused.
8715
87162010-05-01 Eli Zaretskii <eliz@gnu.org>
8717
8718 Emulate POSIX_SIGNALS on MS-Windows.
8719
8720 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
8721 (SIG_SETMASK, SIG_UNBLOCK): Define.
8722
8723 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
8724 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
8725 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
8726
8727 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
8728 New stubs.
8729
8730 Miscellaneous fixes of bidi display.
8731
8732 * xdisp.c (find_row_end): New function, refactored from display_line.
8733 (display_line): Use it.
8734 (extend_face_to_end_of_line): In almost-filled rows, extend only
8735 if the row is R2L and not continued.
8736 (display_line): Fix prepending of truncation glyphs to R2L rows.
8737 Preserve overlay and string info in row->end.
8738 (insert_left_trunc_glyphs): Support addition of left truncation
8739 glyphs to R2L rows.
8740 (set_cursor_from_row): Don't place cursor on the vertical border
8741 glyph between adjacent windows. Fix a crash when a display string
8742 is continued to the next line. Don't return zero if cursor was
8743 found by `cursor' property of a display string.
8744 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
8745 test for that explicitly.
8746
87472010-05-01 Glenn Morris <rgm@gnu.org>
8748
8749 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
8750 for clarity.
8751 (OTHER_OBJ): Remove.
8752 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
8753 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
8754
87552010-05-01 Karel Klíč <kklic@redhat.com>
8756
8757 * fileio.c (Ffile_selinux_context): Context functions may return null.
8758
87592010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
8760
8761 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
8762
87632010-04-30 Glenn Morris <rgm@gnu.org>
8764
8765 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
8766 (OTHER_OBJ): Define as a separate variable, for clarity.
8767
87682010-04-30 Jan Djärv <jan.h.d@swipnet.se>
8769
8770 * xsettings.c: Include limits.h and update file comment.
8771
87722010-04-30 Glenn Morris <rgm@gnu.org>
8773
8774 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
8775 Set with configure, not cpp.
8776 (LIBW): Remove, replace with $TOOLKIT_LIBW.
8777
8778 * Makefile.in (mallocobj): Remove.
8779 (otherobj): Simplify using @OTHER_OBJ@.
8780
8781 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
8782 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
8783 Don't bother making nsgui.h dependency platform-specific.
8784
8785 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
8786
87872010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
8788
8789 * process.c (read_process_output, exec_sentinel): Don't burp if the
8790 sentinel/filter kills the current buffer (bug#6060).
8791
8792 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
8793 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
8794 Remove unused var `args'.
8795 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
8796 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
8797 * doc.c (store_function_docstring): Use XSETCAR.
8798
87992010-04-28 Glenn Morris <rgm@gnu.org>
8800
8801 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
8802 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
8803
8804 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
8805
8806 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
8807 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
8808
8809 * Makefile.in (FONT_OBJ): New, set by configure.
8810 (FONT_DRIVERS): Use $FONT_OBJ.
8811
8812 * Makefile.in (LIBXMU): Set with configure, not cpp.
8813 * s/aix4-2.h (LIBXMU):
8814 * s/hpux10-20.h (LIBXMU):
8815 Remove definition, now set in configure.
8816
8817 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
8818
8819 * m/amdx86-64.h [i386]: Move this test to configure.in.
8820
88212010-04-27 Glenn Morris <rgm@gnu.org>
8822
8823 * Makefile.in (LIBXTR6): Set with configure, not cpp.
8824 * s/unixware.h (NEED_LIBW): Remove definition.
8825
8826 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
8827 (TOOLKIT_LIBW): New, set by configure.
8828 (@X_TOOLKIT_TYPE@): No longer define it.
8829
8830 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
8831 (MOTIF_LIBW): Set with configure, not cpp.
8832 * s/aix4-2.h (LIB_MOTIF):
8833 * s/gnu-linux.h (LIB_MOTIF):
8834 * s/unixware.h (LIB_MOTIF): Move to configure.in.
8835
88362010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
8837
8838 Reduce CPP usage.
8839 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
8840 (obj): Use autoconf for unexec instead of cpp.
8841 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
8842 Remove definitions and undefs. Inline definitions in the only user.
8843 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
8844
88452010-04-27 Glenn Morris <rgm@gnu.org>
8846
8847 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
8848 since the defaults (set by the system file) are fine in most cases.
8849 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
8850 * m/ibms390x.h (START_FILES, LIB_STANDARD):
8851 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
8852 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
8853 Remove definitions, since they are set correctly in s/gnu-linux.h.
8854 * s/freebsd.h (START_FILES, LIB_STANDARD):
8855 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
8856 * s/hpux10-20.h (START_FILES):
8857 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
8858 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
8859
8860 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
8861 (MOTIF_LIBW): Use $LIBXP.
8862 (otherobj): Use $WIDGET_OBJ.
8863
88642010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
8865
8866 * Makefile.in (LIBS_MACHINE): Remove, unused.
8867
8868 Use autoconf instead of cpp for LIB_MATH.
8869 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
8870 * s/cygwin.h (LIB_MATH): Likewise.
8871 * Makefile.in (LIB_MATH): Do not define with cpp.
8872 (LIBES): Use autoconf for LIB_MATH.
8873
88742010-04-26 Kenichi Handa <handa@m17n.org>
8875
8876 * composite.c (Ffind_composition_internal): Fix the return value
8877 for an automatic composition.
8878
88792010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
8880
8881 Remove all NO_ARG_ARRAY uses.
8882 * fns.c (concat2, concat3, nconc2):
8883 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
8884 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
8885 * m/xtensa.h (NO_ARG_ARRAY):
8886 * m/template.h (NO_ARG_ARRAY):
8887 * m/sparc.h (NO_ARG_ARRAY):
8888 * m/sh3.h (NO_ARG_ARRAY):
8889 * m/mips.h (NO_ARG_ARRAY):
8890 * m/macppc.h (NO_ARG_ARRAY):
8891 * m/iris4d.h (NO_ARG_ARRAY):
8892 * m/intel386.h (NO_ARG_ARRAY):
8893 * m/ibms390x.h (NO_ARG_ARRAY):
8894 * m/ibms390.h (NO_ARG_ARRAY):
8895 * m/ibmrs6000.h (NO_ARG_ARRAY):
8896 * m/ia64.h (NO_ARG_ARRAY):
8897 * m/hp800.h (NO_ARG_ARRAY):
8898 * m/arm.h (NO_ARG_ARRAY):
8899 * m/amdx86-64.h (NO_ARG_ARRAY):
8900 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
8901
89022010-04-25 Eli Zaretskii <eliz@gnu.org>
8903
8904 * xdisp.c (display_line): Don't assume 2nd call to
8905 get_next_display_element cannot return zero. (Bug#6030)
8906 (iterate_out_of_display_property): New function, body from pop_it.
8907 (pop_it): Use it.
8908
89092010-04-24 Glenn Morris <rgm@gnu.org>
8910
8911 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
8912 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
8913 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
8914 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
8915
89162010-04-24 Eli Zaretskii <eliz@gnu.org>
8917
8918 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
8919 use `get_next_display_element' and `set_iterator_to_next' to
8920 advance to the next character, when looking for the character that
8921 begins the next row.
8922
8923 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
8924 definition of "struct Lisp_Symbol".
8925
89262010-04-24 Glenn Morris <rgm@gnu.org>
8927
8928 * Makefile.in (CRT_DIR): New variable, set by configure.
8929 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
8930 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
8931
89322010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
8933
8934 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
8935
8936 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
8937
8938 Remove redundant flags.
8939 * s/freebsd.h (C_SWITCH_SYSTEM):
8940 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
8941 * s/netbsd.h (C_SWITCH_SYSTEM):
8942 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
8943 of these.
8944
8945 Simplify m/intel386.h.
8946 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
8947 user: ecrt0.c.
8948 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
8949 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
8950 the only user: s/unixware.h.
8951 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
8952 from m/intel386.h.
8953 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
8954 Definitions moved here from m/intel386.h.
8955
8956 * m/mips.h: Remove #if 0 code.
8957
89582010-04-23 Eli Zaretskii <eliz@gnu.org>
8959
8960 Fix display of composed characters from L2R scripts in bidi buffers.
8961 * xdisp.c (set_iterator_to_next, next_element_from_composition):
8962 After advancing IT past the composition, resync the bidi iterator
8963 with IT's position. (Bug#5977)
8964
89652010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
8966
8967 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
8968 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
8969
89702010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8971
8972 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
8973
89742010-04-23 Eli Zaretskii <eliz@gnu.org>
8975
8976 Support `display' text properties and overlay strings in bidi buffers.
8977 * xdisp.c (pop_it): When the stack is popped after displaying
8978 from a string, bidi-iterate to exit from the text portion covered
8979 by the `display' property or overlay. (Bug#5988, bug#5920)
8980
89812010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
8982
8983 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
8984 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
8985
8986 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
8987 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
8988
8989 Simplify STARTFILES definition.
8990 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
8991 relying on Makefile.in to define it.
8992 * s/cygwin.h (START_FILES): Likewise.
8993 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
8994
8995 Clean up Solaris code.
8996 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
8997 (LIB_MOTIF): Remove, configure takes care of this.
8998 (NOT_USING_MOTIF): Remove, unused.
8999 * xrdb.c: Remove #if 0-ed #include.
9000 (SYSV): Remove conditional for old SysV.
9001 * sysdep.c (closedir): Remove conditional code for Solaris,
9002 Solaris has closedir.
9003
90042010-04-22 Jan Djärv <jan.h.d@swipnet.se>
9005
9006 * xsettings.c (read_and_apply_settings): Check if current_font is
9007 NULL before strcmp (Bug#6001).
9008
90092010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
9010
9011 Clean up HP-UX files.
9012 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
9013 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
9014 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
9015 * s/hpux10-20.h: ... to the only user, here.
9016
90172010-04-21 Eli Zaretskii <eliz@gnu.org>
9018
9019 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
9020 use buffer-local values of paragraph-start and paragraph-separate.
9021 <paragraph_start_re, paragraph_separate_re>: Rename from
9022 fallback_paragraph_start_re and fallback_paragraph_separate_re.
9023 (Bug#5992)
9024
90252010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9026
9027 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
9028 current_tool_bar_style are new.
9029 (store_config_changed_event): Rename from store_font_changed_event.
9030 (XSETTINGS_TOOL_BAR_STYLE): New define.
9031 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
9032 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
9033 HAVE_XFT.
9034 (something_changedCB): store_font_changed_event is now
9035 store_config_changed_event.
9036 (parse_settings): Rename from parse_xft_settings.
9037 Read non-xft xsettings outside #ifdef HAVE_XFT.
9038 (read_settings): Rename from read_xft_settings.
9039 (apply_xft_settings): Take current settings as parameter. Do not
9040 call read_(xft)_settings.
9041 (read_and_apply_settings): New function.
9042 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
9043 Call read_and_apply_settings if there are settings to be read.
9044 (init_xsettings): Rename from init_xfd_settings.
9045 Call read_and_apply_settings unconditionally.
9046 (xsettings_initialize): Call init_xsettings.
9047 (Ftool_bar_get_system_style): New function.
9048 (syms_of_xsettings): Define Qmonospace_font_name and
9049 Qtool_bar_style. Initialize current_tool_bar_style to nil.
9050 defsubr Stool_bar_get_system_style. Fprovide on
9051 dynamic-setting.
9052 Move misplaced HAVE_GCONF.
9053
9054 * xsettings.h (Ftool_bar_get_system_style): Declare.
9055
9056 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
9057 Qtext, Qboth, Qboth_horiz are new.
9058 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
9059 Vtool_bar_style, tool_bar_max_label_size.
9060
9061 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
9062
9063 * keyboard.c: QClabel is new.
9064 (parse_tool_bar_item): Take out QClabel from tool bar items.
9065 Try to construct a label if ther is no QClabel.
9066 (syms_of_keyboard): Intern :label as QClabel.
9067
9068 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
9069 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
9070 New.
9071
9072 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
9073 dynamic-setting.el.
9074
9075 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
9076 (xg_make_tool_item, xg_show_toolbar_item): New function.
9077 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
9078 Call xg_make_tool_item to make a tool bar item.
9079 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
9080
9081 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
9082 into account for toolbars.
9083
90842010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9085
9086 * data.c (make_blv): Declarations before code (Bug#5993).
9087
90882010-04-21 Glenn Morris <rgm@gnu.org>
9089
9090 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
9091 Define using autoconf, not cpp.
9092 (LIBXSM): New variable, set by autoconf.
9093 (LIBXT): Use $LIBXSM.
9094
90952010-04-21 Dan Nicolaescu <local_user@dannlt>
9096
9097 Remove NOMULTIPLEJOBS, unused.
9098 * s/template.h (NOMULTIPLEJOBS):
9099 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
9100
9101 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
9102 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
9103 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
9104 detects -znocombreloc and passes it to the linker
9105 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
9106
91072010-04-21 Glenn Morris <rgm@gnu.org>
9108
9109 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
9110
91112010-04-21 Karel Klíč <kklic@redhat.com>
9112
9113 * Makefile.in (LIBSELINUX_LIBS): New.
9114 (LIBES): Add $LIBSELINUX_LIBS.
9115 * eval.c, lisp.h (call7): New function.
9116 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
9117 (Ffile_selinux_context, Fset_file_selinux_context):
9118 New functions.
9119 (Fcopy_file): New parameter preserve-selinux-context.
9120 (Frename_file): Preserve selinux context when renaming by copy-file.
9121
91222010-04-21 Juanma Barranquero <lekktu@gmail.com>
9123 Eli Zaretskii <eliz@gnu.org>
9124
9125 Don't depend on cm.c or termcap.c on Windows, use stubs.
9126 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
9127 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
9128 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
9129 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
9130 (sys_tputs, sys_tgetstr): New stubs.
9131 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
9132 (tputs, tgetstr): New; define to sys_*.
9133
91342010-04-20 Juanma Barranquero <lekktu@gmail.com>
9135
9136 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
9137
91382010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9139
9140 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9141 Just signal a warning rather than an error when inside a let.
9142 (Fmake_variable_frame_local): Add the same test.
9143
9144 * font.c (syms_of_font): Make the style table vars read-only.
9145
9146 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
9147 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
9148
9149 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
9150
91512010-04-20 Eli Zaretskii <eliz@gnu.org>
9152
9153 Fix R2L paragraph display on TTY.
9154
9155 * xdisp.c (unproduce_glyphs): New function.
9156 (display_line): Use it when produced glyphs are discarded from R2L
9157 glyph rows.
9158 (append_composite_glyph): In R2L rows, prepend the glyph rather
9159 than appending it.
9160
9161 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
9162 rather than append it. Set up the resolved_level and bidi_type
9163 attributes of the appended glyph.
9164 (produce_special_glyphs): Mirror the backslash continuation
9165 character in R2L lines.
9166
9167 Implement display of R2L paragraphs in GUI sessions.
9168
9169 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
9170 append_stretch_glyph.
9171 (set_cursor_from_row) <cursor_x>: Remove unused variable.
9172 Fix off-by-one error in computing x at end of text in the row.
9173 (append_stretch_glyph): In reversed row, prepend the glyph rather
9174 than append it. Set resolved_level and bidi_type of the glyph.
9175 (extend_face_to_end_of_line): If the row is reversed, prepend a
9176 stretch glyph whose width is such that the rightmost glyph will be
9177 drawn at the right margin of the window. Fix off-by-one error on
9178 TTY frames in testing whether a line needs face extension.
9179 Fix face extension at ZV. If this is the last glyph row, use
9180 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
9181 region face.
9182 (set_cursor_from_row, display_line):
9183 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
9184 row->continuation_lines_width.
9185 (next_element_from_buffer): Don't call bidi_paragraph_init if we
9186 are at ZV. Fixes a crash when reseated to ZV by
9187 try_window_reusing_current_matrix.
9188 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
9189 which happens with R2L glyph rows. Fixes a crash when inserting a
9190 character at end of an R2L line.
9191 (set_cursor_from_row): Don't be fooled by truncated rows: don't
9192 treat them as having zero-width characters. Improve comments.
9193 Don't reverse pos_before and pos_after for reversed glyph rows.
9194 Set cursor.x to negative value when the cursor might be on the
9195 left fringe.
9196 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
9197 left fringe, not the right one.
9198 (notice_overwritten_cursor, draw_phys_cursor_glyph)
9199 (erase_phys_cursor): For reversed cursor_row, support cursor on
9200 the left fringe.
9201
9202 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
9203 of continuation indicators on the fringes.
9204 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
9205 left fringe.
9206
9207 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
9208 draw cursor on the left fringe.
9209
9210 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
9211 cursor on the left fringe.
9212
9213 * dispnew.c (update_text_area): Handle reversed desired rows when
9214 the cursor is on the left fringe.
9215 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
9216 below, not by 0, for when the cursor is on the left fringe.
9217
92182010-04-20 Jan Djärv <jan.h.d@swipnet.se>
9219
9220 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
9221 widget is a scrollbar.
9222
92232010-04-20 Kenichi Handa <handa@m17n.org>
9224
9225 * charset.c (char_charset): Consider Vcharset_non_preferred_head
9226 only when the arg CHARSET_LIST is nil.
9227
92282010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9229
9230 Make variable forwarding explicit rather the using special values.
9231 Basically, this makes the structure of buffer-local values and object
9232 forwarding explicit in the type of Lisp_Symbols rather than use
9233 special Lisp_Objects for that. This tends to lead to slightly more
9234 verbose code, but is more C-like, simpler, and makes it easier to make
9235 sure we handled all cases, among other things by letting the compiler
9236 help us check it.
9237 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
9238 Removing forwarding objects.
9239 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
9240 (struct Lisp_Symbol): Make the various forms of variable-forwarding
9241 explicit rather than hiding them inside Lisp_Object "values".
9242 (XFWDTYPE): New macro.
9243 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
9244 (XBUFFER_LOCAL_VALUE): Remove.
9245 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
9246 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
9247 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
9248 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
9249 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
9250 Remove the Lisp_Misc_* header.
9251 (struct Lisp_Buffer_Local_Value): Redefine.
9252 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
9253 (struct Lisp_Misc_Any): Add filler to get the right size.
9254 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
9255 Lisp_Intfwd.
9256 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
9257 (DEFVAR_KBOARD): Allocate a forwarding object.
9258 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
9259 (let_shadows_global_binding_p): New function.
9260 (union Lisp_Val_Fwd): New type.
9261 (make_blv): New function.
9262 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
9263 (store_symval_forwarding, swap_in_global_binding, Fboundp)
9264 (swap_in_symval_forwarding, find_symbol_value, Fset)
9265 (let_shadows_buffer_binding_p, set_internal, default_value)
9266 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
9267 (Fkill_local_variable, Fmake_variable_frame_local)
9268 (Flocal_variable_p, Flocal_variable_if_set_p)
9269 (Fvariable_binding_locus):
9270 * xdisp.c (select_frame_for_redisplay):
9271 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
9272 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
9273 * frame.c (store_frame_param):
9274 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
9275 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
9276 value structure.
9277 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
9278 (clone_per_buffer_values): Only adjust markers into the current buffer.
9279 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
9280 (Fbuffer_local_value, set_buffer_internal_1)
9281 (swap_out_buffer_local_variables):
9282 Adapt to the new symbol value structure.
9283 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
9284 (defvar_per_buffer): Take a new arg for the fwd object.
9285 (buffer_lisp_local_variables): Return a proper alist (different fix
9286 for bug#4138).
9287 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
9288 (Fgarbage_collect): Don't handle buffer_defaults specially.
9289 (mark_object): Handle new symbol value structure rather than the old
9290 special Lisp_Misc_* objects.
9291 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
9292 * term.c (set_tty_color_mode):
9293 * bidi.c (bidi_initialize): Don't access the ->value field directly.
9294 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
9295 a buffer_local_flags.
9296 * print.c (print_object): Get rid of impossible forwarding objects.
9297
92982010-04-19 Eli Zaretskii <eliz@gnu.org>
9299
9300 * bidi.c (bidi_get_type, bidi_get_category)
9301 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
9302 (bidi_type_of_next_char, bidi_level_of_next_char):
9303 Declare static. Use `INLINE' rather than `inline'.
9304
93052010-04-19 Juanma Barranquero <lekktu@gmail.com>
9306
9307 * dired.c (Ffile_attributes): Fix typo in docstring.
9308
93092010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9310
9311 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
9312 NSInteger (Bug#5811).
9313
93142010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9315
9316 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
9317 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
9318
93192010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9320
9321 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
9322
93232010-04-19 Chong Yidong <cyd@stupidchicken.com>
9324
9325 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
9326 terminal frames (Bug#5837).
9327
93282010-04-19 Eli Zaretskii <eliz@gnu.org>
9329
9330 * .gdbinit (xsubchartable): New command.
9331
93322010-04-19 Eli Zaretskii <eliz@gnu.org>
9333
9334 * xdisp.c (display_line): Don't write beyond the last glyph row in
9335 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
9336 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
9337 and
9338 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
9339
93402010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9341
9342 * alloc.c (Fpurecopy): Hash-cons if requested.
9343 (syms_of_alloc): Update purify-flag docstring.
9344
93452010-04-18 Jan Djärv <jan.h.d@swipnet.se>
9346
9347 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
9348 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
9349
93502010-04-17 Eli Zaretskii <eliz@gnu.org>
9351
9352 Fix a crash when an NSM character is inserted at BEGV.
9353
9354 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
9355 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
9356 NEUTRAL_B or UNKNOWN_BT.
9357
93582010-04-16 Eli Zaretskii <eliz@gnu.org>
9359
9360 * xdisp.c (set_cursor_from_row): Don't consider possibility of
9361 other rows with cursor unless they are different from this row and
9362 this row is part of a continued line. (Bug#5943)
9363
93642010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
9365
9366 * s/freebsd.h: Restore osreldate.h include.
9367 Suggested by Naohiro Aota.
9368
93692010-04-16 Jan Djärv <jan.h.d@swipnet.se>
9370
9371 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
9372
93732010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
9374
9375 * s/cygwin.h: Avoid linking against static libgcc.
9376
93772010-04-15 Juri Linkov <juri@jurta.org>
9378
9379 * window.c: Add Qscroll_command.
9380 Remove Vscroll_preserve_screen_position_commands.
9381 (window_scroll_pixel_based, window_scroll_line_based): Check the
9382 `scroll-command' property on the last command instead of searching
9383 the last command in Vscroll_preserve_screen_position_commands.
9384 (syms_of_window): Initialize and staticpro `Qscroll_command'.
9385 Put Qscroll_command property on Qscroll_up and Qscroll_down.
9386 (scroll-preserve-screen-position): Doc fix.
9387 (Vscroll_preserve_screen_position_commands): Remove variable.
9388
93892010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
9390
9391 * xdisp.c (message): Do not use NO_ARG_ARRAY.
9392
93932010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
9394
9395 Reduce cpp use in Makefile.in.
9396 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
9397 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
9398 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
9399 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
9400 (CRT0_COMPILE): Remove, inline it in the only user.
9401
94022010-04-14 Juri Linkov <juri@jurta.org>
9403
9404 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
9405 `scroll-up-command' and `M-v' from `scroll-down' to
9406 `scroll-down-command'.
9407
94082010-04-14 Juri Linkov <juri@jurta.org>
9409
9410 * window.c (Vscroll_preserve_screen_position_commands): New variable
9411 with the default value as the list of Qscroll_down and Qscroll_up.
9412 (window_scroll_pixel_based, window_scroll_line_based): Search the
9413 last command in the list Vscroll_preserve_screen_position_commands
9414 instead of comparing with Qscroll_up and Qscroll_down.
9415
94162010-04-13 Jan Djärv <jan.h.d@swipnet.se>
9417
9418 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
9419 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
9420 does that.
9421
9422 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
9423 to zero.
9424
94252010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9426
9427 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
9428
9429 Try to solve the problem of spurious EOF chars in long lines of text
9430 sent to interactive subprocesses.
9431 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
9432 (system_process_attributes): Remove unused var `ttotal'.
9433 * process.c (send_process): Don't bother breaking long line with EOF
9434 chars when talking to ttys any more.
9435 (wait_reading_process_output): Output a warning when called in such
9436 a way that it could block without being interruptible.
9437
9438 Try to detect file modification within the same second.
9439 * buffer.h (struct buffer): New field modtime_size.
9440 * buffer.c (reset_buffer): Initialize it.
9441 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
9442 (Fverify_visited_file_modtime): Check it.
9443 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
9444 (Fset_visited_file_modtime): Set (or clear) it.
9445
94462010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9447
9448 * process.c (status_notify): Remove unused var `ro'.
9449
94502010-04-12 Jan Djärv <jan.h.d@swipnet.se>
9451
9452 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
9453 more than one visual (Bug#5938).
9454
94552010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
9456
9457 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
9458 Undefine.
9459
94602010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
9461
9462 Remove C_SWITCH_SYSTEM_TEMACS.
9463 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
9464 (malloc, realloc, free): Use emacs, not temacs for conditional
9465 definition.
9466
9467 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
9468 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
9469
9470 Use autoconf, not cpp for some variables.
9471 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
9472 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
9473 (ALL_CFLAGS): Use them as make variables.
9474 (really-lwlib, really-oldXMenu): Do not pass them.
9475
94762010-04-11 Jan Djärv <jan.h.d@swipnet.se>
9477
9478 * xmenu.c (apply_systemfont_to_dialog): New.
9479 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
9480
94812010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9482
9483 * process.c (exec_sentinel): Preserve current-buffer.
9484
9485 * process.c (read_process_output): Move the save-current-buffer to
9486 apply to both the filter and the non-filter branches.
9487
94882010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
9489
9490 * s/msdos.h (UNEXEC): New definition.
9491
94922010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9493
9494 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
9495 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
9496
9497 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
9498 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
9499 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
9500 TRY_WINDOW_CHECK_MARGINS.
9501
9502 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
9503 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
9504 width only when it is for padding.
9505
95062010-04-09 Jan Djärv <jan.h.d@swipnet.se>
9507
9508 * xfns.c (Fx_show_tip): Call try_window in a loop until
9509 fonts_changed_p is zero (Bug#2423).
9510
95112010-04-08 Eli Zaretskii <eliz@gnu.org>
9512
9513 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
9514 the end of TEXT_AREA. (Bug#5856)
9515
95162010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9517
9518 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
9519 HAVE_GCONF.
9520
95212010-04-08 Eli Zaretskii <eliz@gnu.org>
9522
9523 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
9524 prev.orig_type, for resolving type of NSM. (Bug#5858)
9525
95262010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9527
9528 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
9529 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
9530 in current_font.
9531 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
9532 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
9533 New functions.
9534 (syms_of_xsettings): Initialize current_font.
9535 defsubr Sfont_get_system_normal_font.
9536
9537 * xsettings.h (Ffont_get_system_normal_font)
9538 (xsettings_get_system_normal_font): Declare.
9539
9540 * xfns.c (extern xlwmenu_default_font): Remove.
9541 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
9542 to xlwmenu.c.
9543
9544 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
9545 menu items in UTF-8.
9546
9547 * xmenu.c: Include xsettings.h and xlwmenu.h if USE_LUCID.
9548 (apply_systemfont_to_menu): New function.
9549 (set_frame_menubar, create_and_show_popup_menu):
9550 Call apply_systemfont_to_menu.
9551
95522010-04-07 Jan Djärv <jan.h.d@swipnet.se>
9553
9554 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
9555 FRAME_LINE_TO_PIXEL_Y.
9556
9557 * xterm.c (x_set_window_size_1): Don't add border_width/height to
9558 pixelwidth/height.
9559
95602010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
9561
9562 Simplify code for HP machines.
9563 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
9564 for GNU_LINUX, not needed.
9565 (UNEXEC, NEED_BSDTTY): Move definitions...
9566 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
9567
9568 * m/iris4d.h (UNEXEC): Move definition ...
9569 * s/irix6-5.h (UNEXEC): ... here.
9570
95712010-04-04 Jan Djärv <jan.h.d@swipnet.se>
9572
9573 * xfns.c (set_machine_and_pid_properties): New function.
9574 (Fx_create_frame): Call set_machine_and_pid_properties.
9575
95762010-04-03 Eli Zaretskii <eliz@gnu.org>
9577
9578 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
9579 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
9580 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
9581
9582 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
9583 in this function. (Bug#5703)
9584
95852010-04-03 Chong Yidong <cyd@stupidchicken.com>
9586
9587 * nsterm.h: Fix last change.
9588
95892010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
9590
9591 * m/intel386.h (NO_REMAP): Move definition ...
9592 * s/msdos.h (NO_REMAP): ... here.
9593
9594 * m/vax.h (CRT0_DUMMIES): Remove, unused.
9595
9596 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
9597 used on those platforms.
9598
95992010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
9600
9601 Remove extern errno declarations.
9602 * xterm.c:
9603 * xrdb.c:
9604 * w32term.c:
9605 * unexec.c:
9606 * unexaix.c:
9607 * sysdep.c:
9608 * process.c:
9609 * lread.c:
9610 * keyboard.c:
9611 * floatfns.c:
9612 * filelock.c:
9613 * fileio.c:
9614 * emacs.c (main):
9615 * ecrt0.c:
9616 * dispnew.c:
9617 * callproc.c:
9618 * buffer.c: Remove errno extern declarations.
9619 * s/netbsd.h (NEED_ERRNO): Remove.
9620
96212010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
9622
9623 Remove all uses of LIBX11_SYSTEM.
9624 * Makefile.in (LIBX11_SYSTEM): Remove.
9625 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
9626 instead.
9627
96282010-04-01 Eli Zaretskii <eliz@gnu.org>
9629
9630 Remove support for DJGPP v1.x (bug#5813).
9631
9632 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
9633 * s/msdos.h:
9634 * unexec.c (make_hdr, copy_text_and_data):
9635 * sysdep.c (wait_for_termination, sys_subshell):
9636 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
9637 (IT_set_terminal_modes, __write, _rename, gethostname)
9638 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
9639 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
9640 the value of __DJGPP__.
9641 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
9642 compatibility code.
9643 * lread.c:
9644 * gmalloc.c (memalign):
9645 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
9646 * emacs.c (main):
9647 * dosfns.c (init_dosfns):
9648 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
9649
96502010-04-01 Eli Zaretskii <eliz@gnu.org>
9651
9652 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
9653 string with `cursor' property comes from an `after-string'
9654 overlay. (Bug#5816)
9655
96562010-04-01 Glenn Morris <rgm@gnu.org>
9657
9658 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
9659 Define as Makefile variables.
9660 (LIBX): Use above variables rather than directly using autoconf.
9661
96622010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
9663
9664 Clean up BSD_SYSTEM use.
9665 * xterm.c:
9666 * process.c:
9667 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
9668 for including <sys/ioctl.h>.
9669 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
9670 code is only used for MSDOS.
9671
96722010-03-31 Juri Linkov <juri@jurta.org>
9673
9674 * image.c: Add `Qextension_data'.
9675 (syms_of_image): Initialize and staticpro `Qextension_data'.
9676 (Fimage_metadata): Rename from `Fimage_extension_data'.
9677 (gif_load): Put GIF extension data to the property
9678 `Qextension_data'.
9679
96802010-03-31 Chong Yidong <cyd@stupidchicken.com>
9681
9682 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
9683 * nsterm.h: Fix prototype.
9684
96852010-03-31 Eli Zaretskii <eliz@gnu.org>
9686
9687 * xdisp.c (highlight_trailing_whitespace): Support highlight of
9688 trailing whitespace in right-to-left rows.
9689
96902010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9691
9692 Get rid of the direct_output optimizations.
9693 * keyboard.c (nonundocount): Remove extern declaration.
9694 (command_loop_1): Remove brittle optimisation for cheap and
9695 common operations.
9696 * xdisp.c (redisplay_internal): Don't bother checking
9697 redisplay_performed_directly_p any more.
9698 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
9699 any more.
9700 * dispnew.c (redisplay_performed_directly_p)
9701 (direct_output_for_insert, direct_output_forward_char):
9702 * dispextern.h (redisplay_performed_directly_p)
9703 (direct_output_for_insert, direct_output_forward_char): Remove.
9704 * cmds.c (nonundocount): Make it static.
9705
97062010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
9707
9708 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
9709
97102010-03-31 Jan Djärv <jan.h.d@swipnet.se>
9711
9712 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
9713 invisible (Bug#5766).
9714
97152010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
9716
9717 * xdisp.c (x_consider_frame_title, update_window_cursor):
9718 Remove HAVE_NS conditionals.
9719 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
9720
9721 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
9722 filename for the title.
9723 (ns_set_doc_edited): Do nothing if the selected window is a
9724 minibuffer window.
9725
9726 * nsterm.h: Add prototypes for ns_set_name_as_filename and
9727 ns_set_doc_edited.
9728
9729 * nsterm.m: Remove unneeded prototype.
9730
97312010-03-31 Glenn Morris <rgm@gnu.org>
9732
9733 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
9734 in the DOC file. (Bug#5336)
9735
97362010-03-31 Chong Yidong <cyd@stupidchicken.com>
9737
9738 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
9739
97402010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9741
9742 * window.c (keys_of_window): Remove redundant/overridden bindings.
9743
97442010-03-30 Eli Zaretskii <eliz@gnu.org>
9745
9746 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
9747 Restore original behavior when the iterator is not bidi_p.
9748
97492010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
9750
9751 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
9752
97532010-03-30 Eli Zaretskii <eliz@gnu.org>
9754
9755 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
9756 are outside the range of cached character positions.
9757
97582010-03-30 Juanma Barranquero <lekktu@gmail.com>
9759
9760 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
9761
97622010-03-30 Eli Zaretskii <eliz@gnu.org>
9763
9764 Initial support for bidirectional editing.
9765
9766 * Makefile.in (obj): Include bidi.o.
9767 (bidi.o): New target.
9768
9769 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
9770 ($(BLD)/bidi.$(O)): New target.
9771
9772 * bidi.c: New file.
9773
9774 * buffer.h (struct buffer): New members bidi_display_reordering
9775 and bidi_paragraph_direction.
9776
9777 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
9778 and bidi_paragraph_direction.
9779 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
9780 and bidi-paragraph-direction.
9781 (Fbuffer_swap_text): Swap the values of
9782 bidi_display_reordering and bidi_paragraph_direction.
9783
9784 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
9785 (bidi_type_t, bidi_dir_t): New types.
9786 (bidi_saved_info, bidi_stack, bidi_it): New structures.
9787 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
9788 prev_stop, base_level_stop, and eol_pos.
9789 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
9790 (IT_STACK_SIZE): Enlarge to 5.
9791 (struct glyph_row): New member reversed_p.
9792 <string_buffer_position>: Update prototype.
9793 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
9794 glyph_row if bidi_it.paragraph_dir == R2L.
9795 (struct glyph): New members resolved_level and bidi_type.
9796
9797 * dispnew.c (direct_output_forward_char): Give up if we need bidi
9798 processing or buffer's direction is right-to-left.
9799 (prepare_desired_row): Preserve the reversed_p flag.
9800 (row_equal_p): Compare the reversed_p attributes as well.
9801
9802 * xdisp.c (init_iterator): Initialize it->bidi_p.
9803 Call bidi_init_it and set it->paragraph_embedding from the current
9804 buffer's value of bidi_paragraph_direction.
9805 (reseat_1): Initialize bidi_it.first_elt.
9806 (set_iterator_to_next, next_element_from_buffer): Use the value of
9807 paragraph_embedding to determine the paragraph direction.
9808 (set_iterator_to_next): Under bidi reordering, call
9809 bidi_get_next_char_visually. Call bidi_paragraph_init if the
9810 new_paragraph flag is set in the bidi iterator.
9811 (next_element_from_buffer): If bidi_it.first_elt is set,
9812 initialize paragraph direction and find the first character to
9813 display in the visual order. If reseated to a middle of a line,
9814 prime the bidi iterator starting at the line's beginning.
9815 Handle the situation where we overstepped stop_charpos due to
9816 non-linearity of the bidi iteration. Likewise for when we back up
9817 beyond the previous stop_charpos. When moving across stop_charpos,
9818 record it in prev_stop.
9819 (display_line): Set row->end and it->start for the next row to the
9820 next character in logical order. Always extend reversed_p rows to
9821 the end of line, even if they end at ZV. Copy the reversed_p flag
9822 to the next glyph row. Keep calling set_cursor_from_row for
9823 bidi-reordered rows even if we already have a possible candidate
9824 for cursor position. Set row_end after all the row's glyphs have
9825 been produced, by looping over the glyphs. Record the position
9826 after EOL in it->eol_pos, and use it to set end_pos of the last
9827 row produced for a continued line.
9828 <Qright_to_left, Qleft_to_right>: New variables.
9829 (syms_of_xdisp): Initialize and staticpro them.
9830 (string_buffer_position_lim): New function.
9831 (string_buffer_position): Most of code moved to
9832 string_buffer_position_lim. Last argument and return value are
9833 now EMACS_INT; all callers changed.
9834 (set_cursor_from_row): Rewritten to support bidirectional text and
9835 reversed glyph rows.
9836 (text_outside_line_unchanged_p, try_window_id):
9837 Disable optimizations if we are reordering bidirectional text and the
9838 paragraph direction can be affected by the change.
9839 (append_glyph, append_composite_glyph)
9840 (produce_image_glyph, append_stretch_glyph): Set the
9841 resolved_level and bidi_type members of each glyph.
9842 (append_glyph): If the glyph row is reversed, prepend the glyph
9843 rather than appending it.
9844 (handle_stop_backwards): New function.
9845 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
9846 (reseat): Call handle_stop_backwards to recompute prev_stop and
9847 base_level_stop for the new position.
9848 (handle_invisible_prop): Under bidi iteration, skip invisible text
9849 using bidi_get_next_char_visually. If we are `reseat'ed, init the
9850 paragraph direction. Update IT->prev_stop after skipping
9851 invisible text.
9852 (move_it_in_display_line_to): New variables prev_method
9853 and prev_pos. Compare for strict equality in
9854 BUFFER_POS_REACHED_P.
9855 (try_cursor_movement): Examine all the candidate rows that occlude
9856 point, to return the best match. If rows are bidi-reordered
9857 and point moved backwards, back up to the row that is not a
9858 continuation line, and start looking for a suitable row from
9859 there.
9860
9861 * term.c (append_glyph): Reverse glyphs by pre-pending them,
9862 rather than appending, if the glyph_row's reversed_p flag is set.
9863 Set the resolved_level and bidi_type members of each glyph.
9864
9865 * .gdbinit (pbiditype): New command.
9866 (pgx): Use it to display bidi level and type of the glyph.
9867 (pitx): Display some bidi information about the iterator.
9868 (prowlims, pmtxrows): New commands.
9869
98702010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
9871
9872 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
9873 * s/usg5-4.h (LIBS_DEBUG):
9874 * s/irix6-5.h (C_DEBUG_SWITCH):
9875 * s/gnu-linux.h (LIBS_DEBUG):
9876 * s/darwin.h (LIBS_DEBUG):
9877 * s/bsd-common.h (LIBS_DEBUG):
9878 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
9879 * m/iris4d.h (LIBS_DEBUG):
9880 * m/hp800.h (LIBS_DEBUG): Remove definitions.
9881
9882 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
9883 (LIBS_DEBUG): Remove definition.
9884
98852010-03-27 Chong Yidong <cyd@stupidchicken.com>
9886
9887 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
9888 Windows.
9889
98902010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9891
9892 * process.c (Fmake_network_process): Don't call turn_on_atimers around
9893 `connect' (Bug#5723).
9894
98952010-03-25 Helmut Eller <eller.helmut@gmail.com>
9896
9897 * process.c (Fmake_network_process): Call `select' for interrupted
9898 `connect' rather than creating new socket (Bug#5173).
9899
99002010-03-24 Jan Djärv <jan.h.d@swipnet.se>
9901
9902 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
9903
9904 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
9905
9906 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
9907
99082010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9909
9910 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
9911 XLoadQueryFont.
9912
99132010-03-24 Kenichi Handa <handa@m17n.org>
9914
9915 * coding.c (decode_coding_ccl): Fix previous change for the
9916 multibyte case.
9917 (encode_coding_ccl): Don't setup ccl program here. Fix for the
9918 case that the output buffer is fullfilled.
9919 (encode_coding): Setup ccl program here.
9920
99212010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
9922
9923 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
9924
9925 Simplify LIBS_MACHINE definitions.
9926 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
9927 * m/iris4d.h (LIBS_MACHINE): Likewise.
9928 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
9929 * s/aix4-2.h (LIBS_SYSTEM): ... here.
9930 * s/netbsd.h: Remove commented out code.
9931
99322010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
9933
9934 Remove dead code dealing with POSIX_SIGNALS.
9935 * atimer.c (set_alarm): Remove dead code, all USG systems define
9936 POSIX_SIGNALS.
9937 * data.c (arith_error): Likewise.
9938 * keyboard.c (input_available_signal, handle_user_signal)
9939 (interrupt_signal): Likewise.
9940 * process.c (sigchld_handler): Likewise.
9941 (create_process): Remove if 0 code. Remove HPUX conditional when
9942 !defined (POSIX_SIGNALS), it cannot be true.
9943 * syssignal.h: Remove USG5_4 and USG conditionals when
9944 !POSIX_SIGNALS, they cannot be true.
9945
9946 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
9947 NO_SOCK_SIGIO, not used anymore.
9948
99492010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
9950
9951 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
9952 support vax on BSDs.
9953
9954 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
9955 * s/aix4-2.h (ORDINARY_LINK): ... here.
9956
99572010-03-21 Andreas Schwab <schwab@linux-m68k.org>
9958
9959 * Makefile.in (abs_builddir): Define.
9960 (bootstrap_exe): Use it.
9961 (VPATH): Use $(srcdir) instead of @srcdir@.
9962
99632010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
9964
9965 * Makefile.in (bootstrap_exe): Use an absolute name.
9966
99672010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
9968
9969 Remove support for old GNU/Linux using libc version 5.
9970 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
9971 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
9972
9973 Consolidate redundant definitions in s/bsd-common.h.
9974 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
9975 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
9976 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
9977 doing it in all files that include this one.
9978 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
9979 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
9980 (LDAV_SYMBOL, KERNEL_FILE): Remove.
9981 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
9982 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
9983 (LDAV_SYMBOL, KERNEL_FILE): Remove.
9984 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
9985 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
9986 (LDAV_SYMBOL, KERNEL_FILE): Remove.
9987
9988 Consolidate redundant definitions.
9989 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
9990 it's undefined in all files that include this one.
9991 (POSIX_SIGNALS): Define here instead of doing it in all files that
9992 include this one.
9993 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
9994 (POSIX_SIGNALS): Do not define.
9995 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
9996 (POSIX_SIGNALS): Do not define.
9997 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
9998 (POSIX_SIGNALS): Do not define.
9999
10000 Remove support for old UNIX System V systems.
10001 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
10002 * s/usg-5-4-2.h: Remove.
10003
10004 Remove support for Solaris on PPC and for old versions.
10005 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
10006 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
10007 that cancel each other.
10008 * s/sol2-3.h:
10009 * s/sol2-4.h:
10010 * s/sol2-5.h: Remove.
10011 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
10012 (NO_REMAP): Remove, unused.
10013 (UNEXEC): Move definition ...
10014 * s/aix4-2.h (UNEXEC): ... here.
10015
10016 * s/openbsd.h: Remove support for non-ELF and for systems that do
10017 not support shared libraries.
10018 * s/netbsd.h:
10019 * s/freebsd.h: Likewise.
10020
100212010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10022
10023 Remove non-working support for lynxos 3.0.
10024 * s/lynxos.h: Remove file.
10025
10026 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
10027 COFF_BSD_SYMBOLS, nothing defines it anymore.
10028
100292010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10030
10031 Remove obsolete uses of HAVE_SHM.
10032 * emacs.c (standard_args):
10033 (Fdump_emacs):
10034 (syms_of_emacs): Remove code depending on HAVE_SHM.
10035
10036 * alloc.c: Remove HAVE_SHM dependent definition.
10037
10038 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
10039
100402010-03-18 Glenn Morris <rgm@gnu.org>
10041
10042 * emacs.c (USAGE4): Hard-code bug address.
10043 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
10044 (bug_reporting_address): Remove.
10045 (main): Don't call bug_reporting_address.
10046
10047 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
10048 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
10049
100502010-03-15 Chong Yidong <cyd@stupidchicken.com>
10051
10052 * xfns.c (Fx_create_frame):
10053 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
10054 on left.
10055
100562010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
10057
10058 * editfns.c (Fformat): Account for string precision when computing
10059 field width (Bug#5710).
10060
100612010-03-12 Chong Yidong <cyd@stupidchicken.com>
10062
10063 * xfns.c (Fx_create_frame): Set default to Qright.
10064
10065 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
10066 all window systems.
10067
100682010-03-12 Eli Zaretskii <eliz@gnu.org>
10069
10070 These changes remove termcap.c from the build on Posix platforms.
10071 * Makefile.in (termcapobj): Move termcap.o from here...
10072 (MSDOS_OBJ): ...to here.
10073 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
10074 now identical to when LIBS_TERMCAP is defined.
10075
10076 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
10077
10078 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
10079
10080 * config.in: Regenerated. (See top-level ChangeLog.)
10081
100822010-03-10 Chong Yidong <cyd@stupidchicken.com>
10083
10084 * Branch for 23.2.
10085
100862010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10087
10088 Cleanup setup of gl_state in various parts of the code.
10089 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
10090 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
10091 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
10092 (skip_chars):
10093 * regex.c (regex_compile): Use it.
10094 (re_compile_pattern): Don't set gl_state.current_syntax_table since
10095 it's now set in regex_compile when/if we need it.
10096
100972010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
10098
10099 Make it possible to C-g in a tight bytecode loop again (bug#5680).
10100 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
10101 (QUIT): Use it to consolidate code and remove redundancy.
10102 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
10103
10104 * regex.c (regex_compile): Setup gl_state as well.
10105
10106 * syntax.c (skip_chars): Setup gl_state (bug#3823).
10107 (in_classes): Use CONSP before XCAR/XCDR.
10108
101092010-03-03 Chong Yidong <cyd@stupidchicken.com>
10110
10111 * keymap.c (Fwhere_is_internal): Use Fequal to compare
10112 definitions, so that keyboard macros are correctly handled
10113 (Bug#5481).
10114
101152010-03-02 Eli Zaretskii <eliz@gnu.org>
10116
10117 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
10118 text that could be relocated inside the call to emacs_mule_char.
10119 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
10120 (CODING_DECODE_CHAR): Add a comment describing its purpose.
10121
101222010-03-02 Kenichi Handa <handa@m17n.org>
10123
10124 * character.c (parse_str_as_multibyte): Fix handling of the
10125 multibyte form of raw-bytes.
10126 (str_as_multibyte): Likewise.
10127
10128 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
10129 form of raw-bytes.
10130
101312010-02-28 Chong Yidong <cyd@stupidchicken.com>
10132
10133 * charset.c (load_charset_map_from_file)
10134 (load_charset_map_from_vector): Zero out allocated
10135 charset_map_entries before using them.
10136
101372010-02-27 Andreas Schwab <schwab@linux-m68k.org>
10138
10139 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
10140
101412010-02-27 Chong Yidong <cyd@stupidchicken.com>
10142
10143 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
10144 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
10145
101462010-02-26 Kenichi Handa <handa@m17n.org>
10147
10148 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
10149
10150 * xdisp.c (reseat_to_string): Fix previous change.
10151
101522010-02-26 David Reitter <david.reitter@gmail.com>
10153
10154 * nsfont.m (nsfont_draw): ns_antialias_text should be a
10155 Lisp_Object (Bug#4736).
10156
101572010-02-25 Kenichi Handa <handa@m17n.org>
10158
10159 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
10160
101612010-02-24 Jan Djärv <jan.h.d@swipnet.se>
10162
10163 * xterm.c (XTflash): Move declarations before statements.
10164
10165 * gtkutil.c (xg_get_gdk_display): Remove (unused).
10166 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
10167 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
10168 (xg_create_tool_bar): Remove unused variables.
10169 (x_wm_set_size_hint): Move declarations before statements.
10170 (xg_create_frame_widgets): Remove variable grav.
10171
101722010-02-21 Chong Yidong <cyd@stupidchicken.com>
10173
10174 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
10175
101762010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
10177
10178 * term.c (fatal): Add a final \n if needed (bug#5596).
10179
101802010-02-18 Chong Yidong <cyd@stupidchicken.com>
10181
10182 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
10183
101842010-02-18 Glenn Morris <rgm@gnu.org>
10185
10186 * callint.c (Finteractive): Doc fix.
10187
101882010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10189
10190 * coding.c (record_conversion_result):
10191 Handle CODING_RESULT_INSUFFICIENT_DST.
10192 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
10193 memory allocation error.
10194
101952010-02-17 Kenichi Handa <handa@m17n.org>
10196
10197 * coding.c (decode_coding_ccl): Don't setup ccl program here.
10198 Fix for the case that the output buffer is fullfilled.
10199 (decode_coding): Setup ccl program here. Keep looping when the
10200 decoder stopped because the output buffer is
10201 fullfilled (bug#5534).
10202
10203 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
10204
102052010-02-13 Jan Djärv <jan.h.d@swipnet.se>
10206
10207 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
10208 bug #5571.
10209 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
10210 overdrawn.
10211
102122010-02-10 Jan Djärv <jan.h.d@swipnet.se>
10213
10214 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
10215 doing_interact here.
10216 (ice_connection_closed): New function.
10217 (x_session_check_input, smc_die_CB, ice_io_error_handler)
10218 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
10219 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
10220 returns I/O error.
10221 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
10222 bug #5512.
10223
102242010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
10225
10226 * nsfont.m (nsfont_open): The system's value for the font descent
10227 is negative, so round it down to avoid clipping.
10228
102292010-02-06 Chong Yidong <cyd@stupidchicken.com>
10230
10231 * charset.c (load_charset_map_from_file)
10232 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
10233 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
10234
102352010-02-05 Chong Yidong <cyd@stupidchicken.com>
10236
10237 * charset.c (load_charset_map_from_file): Allocate large
10238 charset_map_entries structure on the heap rather than the stack.
10239 (Bug#5526).
10240
102412010-01-31 Kenichi Handa <handa@m17n.org>
10242
10243 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
10244 size in NAME is invalid, return -1 (Bug#5396).
10245
102462010-01-31 Chong Yidong <cyd@stupidchicken.com>
10247
10248 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
10249 <deactivated@gmail.com> (Bug#3605).
10250
102512010-01-31 David De La Harpe Golden <david@harpegolden.net>
10252
10253 * fileio.c (Frename_file): Correctly rename symlinks to
10254 directories (Bug#5496).
10255
102562010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
10257
10258 * nsterm.m (ns_ring_bell): Handle visible bell like X.
10259
102602010-01-30 Andreas Schwab <schwab@linux-m68k.org>
10261
10262 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
10263
102642010-01-29 Chong Yidong <cyd@stupidchicken.com>
10265
10266 * frame.c (DEFAULT_ROWS): Change default to 35.
10267
10268 * xfns.c (x_default_font_parameter): Change default XFT font to
10269 monospace-10 (Bug#3643).
10270
102712010-01-29 Eli Zaretskii <eliz@gnu.org>
10272
10273 * w32inevt.c (key_event): Remove unnecessary comparison of
10274 event->uChar.AsciiChar with 128.
10275
102762010-01-28 Chong Yidong <cyd@stupidchicken.com>
10277
10278 * fileio.c (Frename_file): Fix last change (Bug#5487).
10279
10280 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
10281
10282 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
10283
102842010-01-28 Jan Djärv <jan.h.d@swipnet.se>
10285
10286 * xfns.c (Fx_create_frame): Remove window size matching code from
10287 2010-01-15.
10288 (x_get_current_desktop, x_get_desktop_workarea): Remove.
10289
102902010-01-27 Jason Rumney <jasonr@gnu.org>
10291
10292 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
10293 (key_event): Use unicode for characters 128 and higher (Bug#4567).
10294
102952010-01-27 Kenichi Handa <handa@m17n.org>
10296
10297 * regex.c (analyse_first): Fix setting of fastmap for unibyte
10298 pattern string (Bug#4209).
10299
103002010-01-27 David De La Harpe Golden <david@harpegolden.net>
10301
10302 * fileio.c (Frename_file): Call copy-directory and
10303 delete-directory for directories, in order to handle cross-device
10304 renaming (Bug#3353).
10305
103062010-01-25 Jan Djärv <jan.h.d@swipnet.se>
10307
10308 * xfns.c (Fx_create_frame): If frame height is too big, try
10309 sizes 24 and 10. Bug #3643.
10310
103112010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
10312
10313 Try and fix bug#788, hopefully for real this time.
10314 * keymap.c (shadow_lookup): Add `remap' arg.
10315 (describe_map, describe_vector): Update calls to shadow_lookup.
10316 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
10317 `remapped' so this flag is applicable to `sequence'. Be careful to
10318 perform remapping during shadow_lookup check of remapped_sequences.
10319
103202010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
10321
10322 * image.c (png_load): Use png_sig_cmp instead of the obsolete
10323 png_check_sig, which has been removed in libpng 1.4.
10324
103252010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
10326
10327 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
10328 lacks this header file).
10329
103302010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10331
10332 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
10333 as in Emacs 22.
10334
103352010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10336
10337 * lisp.h (make_pure_string): String pointer arg now points to const.
10338
10339 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
10340 args now point to const.
10341
103422010-01-22 Eli Zaretskii <eliz@gnu.org>
10343
10344 * lread.c (Fload): Don't treat files without .elc extension as
10345 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
10346 them. (bug#5303)
10347
103482010-01-20 Kenichi Handa <handa@m17n.org>
10349
10350 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
10351 treat the source as actual byte sequence.
10352
103532010-01-19 Alan Mackenzie <acm@muc.de>
10354
10355 Fix spurious before-change-functions invocation from (insert ?\n).
10356 * textprop.c (set_text_properties): Rename parameter
10357 `signal_after_change_p' to `coherent_change_p', and make the
10358 invocation of `modify_region' conditional on it.
10359
103602010-01-19 Jan Djärv <jan.h.d@swipnet.se>
10361
10362 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
10363 for debug purpose.
10364 (syms_of_xsettings): Declare xft-settings.
10365
103662010-01-18 Chong Yidong <cyd@stupidchicken.com>
10367
10368 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
10369
103702010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10371
10372 * xterm.c (event_handler_gdk): Block input (Bug#5037).
10373
103742010-01-16 Chong Yidong <cyd@stupidchicken.com>
10375
10376 * emacs.c (standard_args): Adjust arg priorities to reflect how
10377 they are processed in startup.el.
10378
103792010-01-16 Andreas Schwab <schwab@linux-m68k.org>
10380
10381 * Makefile.in (lisp, shortlisp): Update.
10382
103832010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10384
10385 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
10386 code, link the new kboard into all_kboard before running Lisp code,
10387 and protect the new terminal with GCPRO (Bug#5365).
10388 (x_term_init): Remove unused var `atom'.
10389 (x_delete_display, x_delete_terminal): Remove unused var `i'.
10390
103912010-01-15 Jan Djärv <jan.h.d@swipnet.se>
10392
10393 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
10394 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
10395 to find out usable size of the desktop. Don't make frames larger than
10396 this. Bug #3643.
10397
103982010-01-15 Kenichi Handa <handa@m17n.org>
10399
10400 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
10401
104022010-01-15 Chong Yidong <cyd@stupidchicken.com>
10403
10404 * nsterm.m (Qnone): Define.
10405
10406 * nsfns.m (Qnone): Move definition to nsterm.m.
10407
104082010-01-14 Kenichi Handa <handa@m17n.org>
10409
10410 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
10411 systems.
10412
104132010-01-14 Kenichi Handa <handa@m17n.org>
10414
10415 Make auto-composition work on all buffers even if they are
10416 fundamental mode.
10417
10418 * composite.c (Vauto_composition_mode): New variable.
10419 (composition_compute_stop_pos): Check Vauto_composition_mode
10420 instead of Vauto_composition_function.
10421 (composition_adjust_point, Ffind_composition_internal): Likewise.
10422 (syms_of_composite): Declare Lisp variable
10423 "auto-composition-mode" here.
10424
104252010-01-13 Chong Yidong <cyd@stupidchicken.com>
10426
10427 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
10428 during call to vendor-specific-keysyms (Bug#5365).
10429
104302010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10431
10432 * keyboard.c (input_available_signal) [SYNC_INPUT]:
10433 Call SIGNAL_THREAD_CHECK (Bug#5333).
10434
10435 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
10436 Call SIGNAL_THREAD_CHECK.
10437
104382010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
10439
10440 Try to fix bug#5314. This is probably not the final word, tho.
10441 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
10442 recent-auto-save-p as a side-effect.
10443 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
10444 * buffer.c (Fkill_buffer, reset_buffer):
10445 * editfns.c (Fsubst_char_in_region):
10446 * fileio.c (Finsert_file_contents, Fdo_auto_save)
10447 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
10448
104492010-01-13 Kenichi Handa <handa@m17n.org>
10450
10451 Display buffer name, etc. in mode line by composing correctly.
10452
10453 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
10454 STRING is not nil.
10455 (display_mode_element): Adjust for the change of
10456 decode_mode_spec and display_line.
10457 (decode_mode_spec): Change arg MULTIBYTE to STRING.
10458 (display_string): Handle the case that STRING is non-null and
10459 LISP_STRING is not nil.
10460
10461 * xterm.c (x_draw_composite_glyph_string_foreground):
10462 Pay attention to s->face->overstrike.
10463
10464 * composite.c (composition_reseat_it): Don't check PT if STRING is
10465 non nil.
10466
104672010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10468
10469 * keyboard.c (read_char): Don't apply previous change when current
10470 buffer is unchanged by command execution.
10471
104722010-01-12 Jan Djärv <jan.h.d@swipnet.se>
10473
10474 * keyboard.c (read_char): Return after executing from special map.
10475
104762010-01-12 Glenn Morris <rgm@gnu.org>
10477
10478 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
10479 bug-gnu-emacs rather than emacs-pretest-bug.
10480
104812010-01-11 Chong Yidong <cyd@stupidchicken.com>
10482
10483 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
10484 initializing the Lisp variables that depend on them.
10485
104862010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10487
10488 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
10489 Clear areas that will not be updated after change of menu bar lines.
10490 Clear the menu bar window's current matrix when the window gets empty.
10491
104922010-01-09 Chong Yidong <cyd@stupidchicken.com>
10493
10494 * intervals.h, textprop.c (extend_property_ranges): Return value
10495 and args changed. Discard properties that begin at or after the
10496 new end (Bug#5306).
10497
10498 * editfns.c (Fformat): Caller changed.
10499
10500 * nsterm.m (ns_set_default_prefs): Delete function.
10501 (syms_of_nsterm): Initialize ns_command_modifier,
10502 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
10503 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
10504
10505 * xdisp.c (pos_visible_p): Check for invisible text at the correct
10506 position (Bug#4040).
10507
105082010-01-09 Eli Zaretskii <eliz@gnu.org>
10509
10510 * editfns.c (Ffloat_time): Doc fix.
10511
105122010-01-09 Jan Djärv <jan.h.d@swipnet.se>
10513
10514 * xfns.c (Fx_create_frame): Don't create frame larger than display
10515 by default bug#3643.
10516
105172010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10518
10519 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
10520 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
10521 windows above internal border.
10522
10523 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
10524 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
10525 windows above internal border.
10526
10527 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
10528 tool bar windows specially.
10529
10530 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
10531
10532 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
10533 specially.
10534 (XTflash): Take account of menu bar height.
10535
10536 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
10537 specially.
10538
105392010-01-08 Jan Djärv <jan.h.d@swipnet.se>
10540
10541 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
10542 also be true before we can return early (bug #5339).
10543
105442010-01-06 David Reitter <david.reitter@gmail.com>
10545
10546 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
10547 (Fns_display_usable_bounds): Rewrite, computing bounds properly
10548 (Bug#3233).
10549
105502010-01-06 Jan Djärv <jan.h.d@swipnet.se>
10551
10552 * font.c (font_open_entity): Enable chache and call cached_font_ok
10553 for the driver if defined.
10554 (QCuser_spec): New symbol.
10555 (font_spec_from_name): Save name as user-spec.
10556 (font_load_for_lface): Keep user-spec instead of name.
10557 (font_open_by_name): Save name as user-spec.
10558 (syms_of_font): Initialize QCuser_spec.
10559 (font_clear_prop): Clear name if it exists in font (bug#5157).
10560
10561 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
10562 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
10563 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
10564
10565 * font.h (struct font_driver): Add cached_font_ok.
10566
10567 * xterm.c (x_clear_frame): Queue draw for scroll bars.
10568
105692010-01-05 Jan Djärv <jan.h.d@swipnet.se>
10570
10571 * xterm.c (x_new_font): Move code for setting rows/cols before
10572 resizing ...
10573 (x_set_window_size): ... to here. Bug #2568.
10574
10575 * gtkutil.c (xg_clear_under_internal_border): New function.
10576 (xg_frame_resized, xg_frame_set_char_size):
10577 Call xg_clear_under_internal_border.
10578 (xg_update_scrollbar_pos): Clear under old scroll bar position.
10579
105802010-01-05 Chong Yidong <cyd@stupidchicken.com>
10581
10582 * keyboard.c (read_key_sequence): Catch keyboard switch after
10583 making a new tty frame (Bug#5095).
10584
105852010-01-05 Kenichi Handa <handa@m17n.org>
10586
10587 * fontset.c (fontset_find_font): Fix getting the frame pointer.
10588
105892010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
10590
10591 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
10592 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
10593 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
10594
105952010-01-03 Michael Albinus <michael.albinus@gmx.de>
10596
10597 * dbusbind.c (xd_add_watch): Improve debug message.
10598 (xd_remove_watch): Improve debug message. If DATA is the session
10599 bus, unset D-Bus session environment.
10600 (Fdbus_init_bus): Pass the bus as argument to
10601 dbus_connection_set_watch_functions. (Bug#5283)
10602
106032010-01-01 Chong Yidong <cyd@stupidchicken.com>
10604
10605 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
10606
10607 * lread.c (syms_of_lread): Make it clearer that these are the
10608 names of loaded files (Bug#5068).
10609
10610 * eval.c (run_hook_with_args): Handle the case where the global
10611 value has the obsolete single-function form (Bug#5026).
10612
106132009-12-27 Chong Yidong <cyd@stupidchicken.com>
10614
10615 * minibuf.c (Fall_completions): Minor optimization.
10616
106172009-12-26 Eli Zaretskii <eliz@gnu.org>
10618
10619 * .gdbinit (pgx): Fix display of composite glyphs.
10620 Display cmp.from and cmp.to as well.
10621 (pitx): Fix last change.
10622
106232009-12-25 Kenichi Handa <handa@m17n.org>
10624
10625 * composite.h (composition_adjust_point): Update prototype.
10626
10627 * composite.c (composition_reseat_it): Don't make a composition
10628 spanning over point.
10629 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
10630 composable characters.
10631 (composition_adjust_point): New arg NEW_PT. Callers changed.
10632
10633 * keyboard.c (command_loop_1): Force redisplay if the last point
10634 was within a composition.
10635 (adjust_point_for_property): Don't adjust point for automatic
10636 composition when called after buffer modification.
10637
106382009-12-19 Eli Zaretskii <eliz@gnu.org>
10639
10640 * .gdbinit (pitx): Don't use enum names, use their values.
10641 Remove reference to non-existing value GET_FROM_COMPOSITION.
10642 (pgx): Don't use enum names, use their values.
10643 (pitmethod): New helper command.
10644 (pitx): Use it to display iteration method.
10645 (pgrowit): New command.
10646
10647 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
10648
10649 Update dependencies in Makefile.in.
10650
10651 * Makefile.in (alloc.o): Depend on termhooks.h.
10652 (atimer.o): Depend on blockinput.h.
10653 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
10654 and frame.h.
10655 (callint.o): Depend on systime.h, coding.h, and composite.h.
10656 (callproc.o): Depend on buffer.h.
10657 (casefiddle.o): Don't depend on charset.h.
10658 (casetab.o): Depend on character.h.
10659 (ccl.o): Depend on composite.h.
10660 (chartab.o): Depend on ccl.h.
10661 (cm.o): Depend on dispextern.h.
10662 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
10663 (coding.o): Don't depend on $(INTERVALS_H).
10664 (composite.o): Don't depend on dispextern.h explicitly (it's in
10665 $(INTERVALS_H)). Depend on ccl.h.
10666 (data.o): Depend on systime.h, coding.h, composite.h,
10667 dispextern.h, font.h, and ccl.h.
10668 (dired.o): Depend on composite.h.
10669 (dispnew.o): Depend on coding.h. Don't depend explicitly on
10670 composite.h (it's in $(INTERVALS_H)).
10671 (doc.o): Depend on systime.h, coding.h, and composite.h.
10672 (editfns.o): Don't depend explicitly on dispextern.h.
10673 (emacs.o): Depend on frame.h and coding.h.
10674 (eval.o): Depend on coding.h, composite.h, and xterm.h.
10675 (fileio.o): Depend on frame.h and commands.h. Don't depend
10676 explicitly on dispextern.h.
10677 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
10678 composite.h.
10679 (fns.o): Don't depend on termhooks.h.
10680 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
10681 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
10682 coding.h, $(INTERVALS_H), window.h, xterm.h.
10683 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
10684 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
10685 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
10686 fontset.h, ccl.h, and ftfont.h.
10687 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
10688 (gtkutil.o): Depend on dispextern.h and composite.h.
10689 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
10690 termhooks.h, and ccl.h.
10691 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
10692 (intervals.o): Depend on systime.h and coding.h.
10693 (keyboard.o): Depend on composite.h and coding.h.
10694 (keymap.o): Depend on coding.h and frame.h.
10695 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
10696 (macros.o): Depend on systime.h, coding.h, and composite.h.
10697 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
10698 and atimer.h.
10699 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
10700 dispextern.h explicitly.
10701 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
10702 Don't depend explicitly on dispextern.h and composite.h.
10703 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
10704 (regex.o): Don't depend on charset.h.
10705 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
10706 (search.o): Don't depend explicitly on composite.h.
10707 (sound.o): Depend on atimer.h and systime.h.
10708 (syntax.o): Don't depend explicitly on composite.h.
10709 (sysdep.o): Depend on coding.h and composite.h.
10710 (term.o): Depend on xterm.h and buffer.h.
10711 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
10712 (textprop.o): Don't depend on dispextern.h explicitly.
10713 (undo.o): Depend on dispextern.h.
10714 (window.o): Depend on coding.h and termhooks.h. Don't depend on
10715 dispextern.h and composite.h explicitly.
10716 (xdisp.o): Depend on ccl.h.
10717 (xfaces.o): Depend on coding.h and ccl.h.
10718 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
10719 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
10720 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
10721 ftfont.h.
10722 (xgselect.o): New dependency.
10723 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
10724 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
10725 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
10726 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
10727 (xsmfns.o): Depend on frame.h and dispextern.h.
10728 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
10729 sysselect.h.
10730
107312009-12-19 Andreas Schwab <schwab@linux-m68k.org>
10732
10733 * font.c (Fclear_font_cache): Pass correct cache argument to
10734 font_clear_cache.
10735
107362009-12-16 Andreas Schwab <schwab@linux-m68k.org>
10737
10738 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
10739 twice.
10740
107412009-12-15 Chong Yidong <cyd@stupidchicken.com>
10742
10743 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
10744 calling file-remote-p. Reported by Jim Meyering.
10745
107462009-12-15 Michael Albinus <michael.albinus@gmx.de>
10747
10748 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
10749 avoid compiler warnings. (Bug #5217)
10750
107512009-12-14 Kenichi Handa <handa@m17n.org>
10752
10753 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
10754 in 8-bit encoding.
10755
107562009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
10757
10758 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
10759 tooltip windows.
10760
107612009-12-13 Jan Djärv <jan.h.d@swipnet.se>
10762
10763 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
10764 Xatom_net_window_type.
10765
10766 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
10767 Xatom_net_window_type.
10768
10769 * xterm.c (my_log_handler): New function.
10770 (x_term_init): Set my_log_handler as log handler during gtk_init
10771 so we can filter out buggy messages. (Bug #5120).
10772
10773 * xterm.c (xg_scroll_callback): Parameter list changed,
10774 use parameter GtkScrollType to determine scroll/line/page.
10775 Only allow dragging if a button < 4 is grabbed (bug #5177).
10776 (xg_end_scroll_callback): New function.
10777 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
10778 xg_create_scroll_bar.
10779
10780 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
10781 (scroll_end_callback): Remove.
10782 (xg_create_scroll_bar): Add parameter end_callback, bind it to
10783 button-release-event. Replace value-changed event with change-value,
10784 bug #5177.
10785 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
10786 bug #5177.
10787
10788 * gtkutil.h (XG_LAST_SB_DATA): Remove.
10789 (xg_create_scroll_bar): Add GCallback end_callback.
10790
10791 * xftfont.c (QClcdfilter): New variable.
10792 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
10793 (syms_of_xftfont): Initialize QClcdfilter.
10794
107952009-12-12 Jan Djärv <jan.h.d@swipnet.se>
10796
10797 * xsettings.c (struct xsettings): Add member seen.
10798 (parse_xft_settings): Update member seen with what we have read.
10799 Return non-zero if Xft-settings have been parsed, 0 otherwise.
10800 (apply_xft_settings): Only update Xft settings with what member seen
10801 indicates as new.
10802
108032009-12-12 Eli Zaretskii <eliz@gnu.org>
10804
10805 * dispextern.h (struct text_pos): Use EMACS_INT.
10806 (struct glyph): Use EMACS_INT for charpos.
10807 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
10808 region_beg_charpos, region_end_charpos,
10809 redisplay_end_trigger_charpos, and also for
10810 iterator_stack_entry.end_charpos and
10811 iterator_stack_entry.stop_charpos.
10812
108132009-12-12 Jan Djärv <jan.h.d@swipnet.se>
10814
10815 * gtkutil.c (scroll_end_callback): New function (bug #5177).
10816 (xg_create_scroll_bar): Call scroll_end_callback on button release
10817 event (bug #5177).
10818 (xg_event_is_for_scrollbar): != replaced with ==.
10819
108202009-12-12 Kenichi Handa <handa@m17n.org>
10821
10822 * ftfont.c (struct ftfont_info): New member matrix.
10823 (ftfont_open): Setup xftfont_info->matrix.
10824 (MFLTFontFT): New member matrix.
10825 (FLOOR, CEIL, ROUND): New macros.
10826 (ftfont_get_metrics): Handle matrix transformation.
10827 (ftfont_shape_by_flt): New arg matrix. Callers changed.
10828
10829 * xftfont.c (struct xftfont_info): New member matrix.
10830 (xftfont_open): Setup xftfont_info->matrix.
10831
108322009-12-10 Kenichi Handa <handa@m17n.org>
10833
10834 * xdisp.c (append_space_for_newline): Consider face-remapping.
10835
108362009-12-09 Andreas Schwab <schwab@linux-m68k.org>
10837
10838 * xsettings.c: Include "keyboard.h".
10839
10840 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
10841
10842 Fix implicit function declarations.
10843 * cmds.c: Include "frame.h".
10844 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
10845 * frame.h: Move declaration of delete_frame outside of
10846 HAVE_WINDOW_SYSTEM.
10847
108482009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
10849
10850 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
10851
10852 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
10853 GTK builds.
10854
108552009-12-07 Andreas Schwab <schwab@linux-m68k.org>
10856
10857 * unexelf.c (unexec): Don't search for .data twice.
10858
108592009-12-05 Chong Yidong <cyd@stupidchicken.com>
10860
10861 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
10862 if push failed.
10863 (handle_line_prefix): Set avoid_cursor_p here. Check return value
10864 of push_display_prop (Bug#5000).
10865
10866 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
10867 value of font_list_entities (Bug#5085).
10868
108692009-12-04 Juanma Barranquero <lekktu@gmail.com>
10870
10871 Fix `string-to-number' to deal consistently with integers and floats.
10872 * lread.c (isfloat_string): New argument ignore_trailing to accept all
10873 trailing characters, not just whitespace.
10874 (read1): Pass new arg 0 to keep old behavior.
10875 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
10876 trailing chars, as it is already done for integers. Doc fixes.
10877 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
10878
108792009-12-04 Eli Zaretskii <eliz@gnu.org>
10880
10881 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
10882 Delete unused enumeration value.
10883
108842009-12-03 Eli Zaretskii <eliz@gnu.org>
10885
10886 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
10887
108882009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
10889
10890 * process.c (Fmake_network_process): Fix up the tests for
10891 "connectionless socket", so they DTRT for seqpacket sockets as well.
10892
108932009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
10894
10895 * process.c (Qseqpacket): New symbol.
10896 (HAVE_SEQPACKET): New macro.
10897 (Fmake_network_process): Accept new :type `seqpacket'.
10898 (init_process): Add `seqpacket' feature when applicable.
10899 (syms_of_process): Initialize Qseqpacket.
10900
109012009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10902
10903 * font.c (font_load_for_lface, font_open_by_name): Don't store name
10904 if entity is Qnil.
10905
109062009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
10907
10908 * print.c (print_preprocess): Preprocess the key_and_value table of
10909 hashtables, even tho they're "hidden" (bug#5082).
10910
109112009-11-29 Jan Djärv <jan.h.d@swipnet.se>
10912
10913 * frame.c (frame_make_pointer_invisible)
10914 (frame_make_pointer_visible): Declare f before statements.
10915
109162009-11-28 Eli Zaretskii <eliz@gnu.org>
10917
10918 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
10919 omitted dependencies on lisp.h.
10920
109212009-11-27 Jan Djärv <jan.h.d@swipnet.se>
10922
10923 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
10924 is NULL.
10925
10926 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
10927
10928 * frame.c (frame_make_pointer_invisible)
10929 (frame_make_pointer_visible): Just return if there isn't any selected
10930 frame.
10931
10932 * search.c (simple_search): Remove warning by making *p const.
10933
109342009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
10935
10936 * xdisp.c (power_letter): Remove duplicate const.
10937
109382009-11-25 Jan Djärv <jan.h.d@swipnet.se>
10939
10940 * term.c (delete_tty): Remove check for last terminal (bug#4970).
10941
10942 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
10943 defaults (bug #5025).
10944
109452009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
10946
10947 * insdel.c (adjust_markers_for_delete): Move it in the
10948 right direction! (bug#4803)
10949
109502009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10951
10952 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
10953
10954 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
10955
109562009-11-24 Glenn Morris <rgm@gnu.org>
10957
10958 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
10959
109602009-11-23 Jan Djärv <jan.h.d@swipnet.se>
10961
10962 * Makefile.in: Must create deps for ecrt0.o in its rule.
10963
10964 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
10965 because that is what Gtk+ font dialog understands.
10966
10967 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
10968 of Fcopy_sequence.
10969 (font_open_by_name): Put name given into QCname for font-object returned.
10970
10971 * frame.c (x_set_font): Save original font name as frame parameter
10972 font-parameter.
10973
10974 * xsettings.c (set_default_xft_settings): New function.
10975 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
10976 is found.
10977
109782009-11-22 Andreas Schwab <schwab@linux-m68k.org>
10979
10980 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
10981 searching backwards through multibyte buffer.
10982
109832009-11-21 Jan Djärv <jan.h.d@swipnet.se>
10984
10985 * xterm.c: #include xgselect.h.
10986 (x_initialize): Call xgselect_initialize.
10987
10988 * xsettings.c (something_changedCB): C++ comments => C comments.
10989 (init_gconf): Do not deal with any GLib file descriptors, xg_select
10990 does that now.
10991
10992 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
10993 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
10994 (scroll_bar_button_cb): Remove.
10995 (create_menus): C++ comments => C comments. Don't bind grab-notify
10996 event.
10997 (xg_create_scroll_bar): Don't bind button-press-event and
10998 button-release-event.
10999
11000 * process.c: Include xgselect.h if defined (USE_GTK) ||
11001 defined (HAVE_GCONF).
11002 (wait_reading_process_output): Call xg_select for the same condition.
11003
11004 * xgselect.c (xg_select): New function to better integrate with
11005 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
11006
11007 * xgselect.h: New file, declare xg_select, xgselect_initialize.
11008
11009 * Makefile.in (XOBJ): Add xgselect.o.
11010
110112009-11-21 Andreas Schwab <schwab@linux-m68k.org>
11012
11013 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
11014 Remove ignored second argument. All callers changed.
11015 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
11016 (RE_STRING_CHAR_AND_LENGTH): Likewise.
11017 * xdisp.c (string_char_and_length): Likewise.
11018
110192009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
11020
11021 * xterm.c (x_new_font):
11022 * print.c (print_object):
11023 * cmds.c (Fself_insert_command): Move declarations before statements.
11024
110252009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11026
11027 * s/cygwin.h: Remove unneeded linker flags.
11028
110292009-11-20 Jan Djärv <jan.h.d@swipnet.se>
11030
11031 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
11032
11033 * xsettings.h: Declare xsettings_get_system_font.
11034
11035 * xsettings.c (xsettings_get_system_font): New function.
11036 (init_gconf): No use initiating gconf unless we have Xft also.
11037 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
11038 HAVE_GCONF.
11039
11040 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
11041 add a blank entry so it doesn't collapse into nothing.
11042
110432009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11044
11045 * lread.c (Funintern): Comment out last change.
11046
110472009-11-19 Richard Stallman <rms@gnu.org>
11048
11049 * lread.c (Funintern): Error if symbol is t or nil.
11050
110512009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11052
11053 * insdel.c (make_gap_larger): Don't make as many assumptions about the
11054 representation of Lisp integers.
11055 Reported by MJ Chan <mjchan.inbox@gmail.com>.
11056
110572009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11058
11059 * lisp.h: Remove declaration of Ffont_get_system_font.
11060 * xfns.c: Move include of "xsettings.h".
11061 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
11062
110632009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11064
11065 * xsettings.c (something_changedCB, Ffont_get_system_font):
11066 Check use_system_font.
11067 (syms_of_xsettings): DEFVAR font-use-system-font.
11068
110692009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11070
11071 * xfns.c (x_default_font_parameter): Remove dead assignment.
11072
11073 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
11074
110752009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11076
11077 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
11078 not have FC_LCD_*. #define them if not there.
11079
11080 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
11081
11082 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
11083
11084 * xterm.c (handle_one_xevent): Call xft_settings_event for
11085 ClientMessage, PropertyNotify and DestroyNotify.
11086 (x_term_init): If we have XFT, get DPI from Xft.dpi.
11087 Call xsettings_initialize.
11088
11089 * xftfont.c (xftfont_fix_match): New function.
11090 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
11091 Call xftfont_fix_match after XftFontMatch.
11092
11093 * xfont.c (xfont_driver): Initialize all members.
11094
11095 * xfns.c (x_default_font_parameter):
11096 Try font from Ffont_get_system_font.
11097 Do not get font from x_default_parameter if we got one from
11098 Ffont_get_system_font.
11099 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
11100
11101 * w32font.c (w32font_driver): Initialize all members.
11102
11103 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
11104
11105 * lisp.h: Declare syms_of_xsettings.
11106
11107 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
11108 Handle CONFIG_CHANGED_EVENT.
11109
11110 * ftfont.c (ftfont_filter_properties): New function.
11111
11112 * frame.c (x_set_font): Remove unused variable lval.
11113
11114 * font.h (struct font_driver): Add filter_properties.
11115
11116 * font.c (font_put_extra): Don't return if val is nil, it means
11117 boolean option is off.
11118 (font_parse_fcname): Collect all extra properties in extra_props
11119 and call filter_properties for all drivers with extra_props and
11120 font as parameter.
11121 (font_open_entity): Do not use cache, it does not pick up new
11122 fontconfig settings like hinting.
11123 (font_load_for_lface): If spec had a name in it, store it in entity.
11124
11125 * emacs.c (main): Call syms_of_xsettings.
11126
11127 * config.in: HAVE_GCONF is new.
11128
11129 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
11130 xsettings.o is new.
11131
111322009-11-17 Kenichi Handa <handa@m17n.org>
11133
11134 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
11135 back to the default font in case that no suitable font is found.
11136
111372009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11138
11139 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
11140 Suggested by Chad Brown <yandros@mit.edu>.
11141 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
11142
111432009-11-16 Jan Djärv <jan.h.d@swipnet.se>
11144
11145 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
11146
111472009-11-14 Andreas Schwab <schwab@linux-m68k.org>
11148
11149 * Makefile.in: Ignore errors from mkdir when creating deps directory.
11150
111512009-11-14 Jan Djärv <jan.h.d@swipnet.se>
11152
11153 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
11154 has a parent.
11155
11156 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
11157 dependency files in deps/. Include those files into Makefile.
11158
11159 * config.in: Generated (AUTO_DEPEND).
11160
111612009-11-13 Michael Albinus <michael.albinus@gmx.de>
11162
11163 * dbusbind.c (Vdbus_registered_objects_table): Rename from
11164 Vdbus_registered_functions_table, because it contains also
11165 properties. Fix docstring.
11166 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
11167
111682009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11169
11170 * alloc.c (mark_object): Don't reprocess marked strings.
11171 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
11172 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
11173
111742009-11-13 Kenichi Handa <handa@m17n.org>
11175
11176 * category.c (word_boundary_p): Adjust for the change of the
11177 semantics of Vword_combining_categories.
11178 (Vword_combining_categories): Describe the slight change of the
11179 semantics.
11180
111812009-11-13 Eli Zaretskii <eliz@gnu.org>
11182
11183 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
11184
11185 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
11186
111872009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11188
11189 * xdisp.c (syms_of_xdisp): Fix typo in last change.
11190
111912009-11-12 Juanma Barranquero <lekktu@gmail.com>
11192
11193 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
11194
111952009-11-11 David Reitter <david.reitter@gmail.com>
11196
11197 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
11198 variables to fix 2009-11-09 change.
11199
112002009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11201
11202 * process.c (ifflag_def): Make flag_sym constant.
11203 (Fnetwork_interface_info): Use a constant pointer.
11204 (ifflag_table):
11205 * xfns.c (cursor_bits):
11206 * xdisp.c (power_letter):
11207 * termcap.c (speeds, esctab):
11208 * sysdep.c (baud_convert):
11209 * keyboard.c (lispy_accent_codes, modifier_names):
11210 * image.c (xbm_format, xpm_format, pbm_format, png_format)
11211 (jpeg_format, tiff_format, gif_format, svg_format)
11212 (interlace_start, interlace_increment, gs_format):
11213 * gtkutil.c (separator_names):
11214 * fringe.c (swap_nibble):
11215 * fns.c (base64_value_to_char, base64_char_to_value):
11216 * fileio.c (make_temp_name_tbl):
11217 * coding.c (suffixes): Make constant.
11218
11219 * frame.c (make_initial_frame):
11220 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
11221 build_string.
11222 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
11223
11224 * s/freebsd.h:
11225 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
11226
11227 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
11228 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
11229
11230 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
11231 * xterm.c (syms_of_xterm):
11232 * xfaces.c (syms_of_xfaces):
11233 * xdisp.c (syms_of_xdisp):
11234 * lread.c (syms_of_lread):
11235 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
11236 build_string.
11237
11238 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
11239
112402009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11241
11242 * fns.c (Fplist_get): Merge the active and the commented out code.
11243
112442009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11245
11246 * keyboard.h: Declare timer_check.
11247
11248 * keyboard.c (timer_check_2): New function that does what the old
11249 timer_check did.
11250 (timer_check): Call timer_check_2 until -1 or a non-zero time is
11251 returned, i.e. don't return -1 with timers pending.
11252
11253 * process.c: Remove extern declaration of timer_check.
11254
11255 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
11256 even if timer_check returned -1.
11257
11258 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
11259 xg_dialog_data.
11260 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
11261 the event loop.
11262 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
11263 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
11264 Destroy the dialog after xg_dialog_run.
11265
112662009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11267
11268 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
11269
112702009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11271
11272 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
11273
112742009-11-09 Juanma Barranquero <lekktu@gmail.com>
11275
11276 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
11277
112782009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
11279
11280 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
11281 w32menu.c, and nsmenu.m.
11282 Simplify the obsolete case where position is nil.
11283 (cleanup_popup_menu): New function, moved from nsmenu.m.
11284 (struct skp): Remove slot `notreal'.
11285 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
11286 adjust callers.
11287 (single_menu_item): Adjust call to parse_menu_item.
11288 (syms_of_menu): Defsubr x-popup-menu.
11289 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
11290 (keymap_panes): Don't export any more.
11291 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
11292 (xmenu_show): Declare.
11293 * keyboard.c (parse_menu_item): Remove arg `notreal'.
11294 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
11295 * keyboard.h (parse_menu_item): Update declaration.
11296 * xmenu.c (Fx_popup_menu): Remove.
11297 (syms_of_xmenu): Don't defsubr x-popup-menu.
11298 * w32menu.c (Fx_popup_menu): Remove.
11299 (syms_of_w32menu): Don't defsubr x-popup-menu.
11300 * nsmenu.m (cleanup_popup_menu): Remove.
11301 (ns_menu_show): Rename from ns_popup_menu and remove all the code
11302 moved to menu.c's Fx_popup_menu.
11303 (Fx_popup_menu): Remove.
11304 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
11305 menu_items (it's done in menu.c already).
11306
113072009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
11308
11309 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
11310 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
11311
113122009-11-08 Chong Yidong <cyd@stupidchicken.com>
11313
11314 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
11315 xmenu_show. Hide any tooltip before opening a menu.
11316 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
11317 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
11318
113192009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11320
11321 Let integers use up 2 tags to give them one extra bit and thus double
11322 their range.
11323 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
11324 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
11325 New macros.
11326 (enum Lisp_Type): Use them. Give explicit values.
11327 (Lisp_Type_Limit): Remove.
11328 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
11329 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
11330 Pay attention to USE_2_TAGS_FOR_INTS.
11331 (INTEGERP): Use LISP_INT_TAG_P.
11332 * fns.c (internal_equal): Simplify the default case.
11333 (sxhash): Use case_Lisp_Int.
11334 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
11335 any more.
11336 (Ftype_of): Use case_Lisp_Int.
11337 (store_symval_forwarding): Take into account the fact that Ints can
11338 now have more than one tag.
11339 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
11340 (buffer_slot_type_mismatch):
11341 * xfaces.c (face_attr_equal_p):
11342 * print.c (print_object):
11343 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
11344 Use case_Lisp_Int.
11345
113462009-11-06 Eli Zaretskii <eliz@gnu.org>
11347
11348 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
11349
11350 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
11351 warning.
11352
113532009-11-06 Jan Djärv <jan.h.d@swipnet.se>
11354
11355 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
11356
11357 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
11358
11359 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
11360 ButtonPressRelease and MotionNotify (bug#4870).
11361
113622009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
11363
11364 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
11365
11366 * xterm.c (syms_of_xterm):
11367 * xselect.c (syms_of_xselect):
11368 * xmenu.c (syms_of_xmenu):
11369 * xfns.c (syms_of_xfns):
11370 * xfaces.c (syms_of_xfaces):
11371 * xdisp.c (syms_of_xdisp):
11372 * window.c (syms_of_window):
11373 * w32fns.c (syms_of_w32fns):
11374 * undo.c (syms_of_undo):
11375 * textprop.c (syms_of_textprop):
11376 * terminal.c (syms_of_terminal):
11377 * syntax.c (syms_of_syntax):
11378 * sound.c (syms_of_sound):
11379 * search.c (syms_of_search):
11380 * print.c (syms_of_print):
11381 * minibuf.c (syms_of_minibuf):
11382 * macros.c (syms_of_macros):
11383 * keymap.c (syms_of_keymap, initial_define_key)
11384 (initial_define_lispy_key):
11385 * keyboard.c (syms_of_keyboard):
11386 * insdel.c (syms_of_insdel):
11387 * image.c (syms_of_image):
11388 * fringe.c (syms_of_fringe):
11389 * frame.c (syms_of_frame):
11390 * fontset.c (syms_of_fontset):
11391 * fns.c (syms_of_fns):
11392 * fns.c (syms_of_fns):
11393 * fileio.c (syms_of_fileio):
11394 * fileio.c (syms_of_fileio):
11395 * eval.c (syms_of_eval):
11396 * doc.c (syms_of_doc):
11397 * dispnew.c (syms_of_display):
11398 * dired.c (syms_of_dired):
11399 * dbusbind.c (syms_of_dbusbind):
11400 * data.c (syms_of_data):
11401 * composite.c (syms_of_composite):
11402 * coding.c (syms_of_coding):
11403 * cmds.c (syms_of_cmds):
11404 * charset.c (define_charset_internal, syms_of_character):
11405 * ccl.c (syms_of_ccl):
11406 * category.c (syms_of_category, init_category_once):
11407 * casetab.c (syms_of_casetab):
11408 * casefiddle.c (syms_of_casefiddle):
11409 * callint.c (syms_of_callint):
11410 * bytecode.c (syms_of_bytecode):
11411 * buffer.c (keys_of_buffer, syms_of_buffer):
11412 * alloc.c (syms_of_alloc):
11413 * process.c (syms_of_process, init_process):
11414 * lread.c (syms_of_lread, init_obarray):
11415 * font.c (build_style_table):
11416 * emacs.c (syms_of_emacs, main): Replace calls to intern with
11417 intern_c_string, calls to make_pure_string with
11418 make_pure_c_string. Use pure_cons instead of Fcons.
11419
11420 * process.c (socket_options): Make it const.
11421 (set_socket_option, init_process): Use a const pointer.
11422
11423 * lread.c (intern_c_string): New function.
11424 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11425 (defvar_int): Uset it. Make the name const char*.
11426
11427 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11428 (defvar_int): Update prototypes.
11429 (DEFUN, EXFUN): Support for prototypes is now required.
11430 (intern_c_string): New prototype.
11431 (struct Lisp_Subr): Make symbol_name constant.
11432
11433 * font.c (struct table_entry): Remove unused member. Make NAMES
11434 constant.
11435 (weight_table, slant_table, width_table): Make constant.
11436
11437 * emacs.c (struct standard_args): Make name and longname constant.
11438
11439 * character.h (DEFSYM): Use intern_c_string.
11440
114412009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11442
11443 * alloc.c (make_pure_c_string): New function.
11444
11445 * eval.c (Fautoload): Purecopy all arguments.
11446
114472009-11-05 Kenichi Handa <handa@m17n.org>
11448
11449 * fileio.c (Finsert_file_contents): Be sure set coding-system of
11450 the buffer in case of replace.
11451
114522009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
11453
11454 * puresize.h (BASE_PURESIZE): Increase to 1620000.
11455
114562009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11457
11458 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
11459 when applicable (bug#4851).
11460
11461 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
11462 (P_): Support for prototypes is now required.
11463
114642009-10-31 Chong Yidong <cyd@stupidchicken.com>
11465
11466 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
11467 (Bug#4827).
11468
114692009-10-30 Eli Zaretskii <eliz@gnu.org>
11470
11471 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
11472
114732009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
11474
11475 * puresize.h (BASE_PURESIZE): Increase to 1470000.
11476
11477 * lread.c (Fload): Purecopy the file name when building
11478 Vpreloaded_file_list.
11479
114802009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
11481
11482 * w32fns.c (syms_of_w32fns): Change default value of
11483 w32-scroll-lock-modifier to nil. (Bug#2827)
11484
114852009-10-26 Juanma Barranquero <lekktu@gmail.com>
11486
11487 * minibuf.c (Fall_completions): Fix typos in docstring.
11488
114892009-10-26 Andreas Schwab <schwab@redhat.com>
11490
11491 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
11492
114932009-10-26 Juanma Barranquero <lekktu@gmail.com>
11494
11495 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
11496 For delta < 0, skip check that only makes sense when the mini-window
11497 is going to be enlarged. (Bug#4534)
11498
114992009-10-25 Chong Yidong <cyd@stupidchicken.com>
11500
11501 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
11502 string in menu maps (Bug#4471).
11503
115042009-10-24 Chong Yidong <cyd@stupidchicken.com>
11505
11506 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
11507 FRAME_NS_VIEW on terminal frames (Bug#4765).
11508
115092009-10-24 Andreas Schwab <schwab@linux-m68k.org>
11510
11511 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
11512 DBUS_TYPE_UINTnn separately to get proper sign extension.
11513
11514 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
11515 can properly handle unsigned types.
11516 (make_uid, make_gid): Remove.
11517
11518 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
11519 types again.
11520
11521 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
11522 (system_process_attributes): Likewise.
11523
115242009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
11525
11526 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
11527
11528 * eval.c (Fautoload): Purecopy the filename. Simplify.
11529
11530 * category.c (Fdefine_category): Purecopy docstring.
11531
115322009-10-23 Andreas Schwab <schwab@linux-m68k.org>
11533
11534 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
11535
11536 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
11537
115382009-10-23 Chong Yidong <cyd@stupidchicken.com>
11539
11540 * window.c (Fwindow_edges, Fwindow_pixel_edges)
11541 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
11542 (Bug#4775).
11543
115442009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11545
11546 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
11547 (init_fileio_once):
11548 * lisp.h (init_fileio_once): Remove.
11549 * emacs.c (main): Don't call init_fileio_once.
11550
115512009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11552
11553 * puresize.h (BASE_PURESIZE): Increase to 1430000.
11554
115552009-10-21 Andreas Schwab <schwab@linux-m68k.org>
11556
11557 * doprnt.c (doprnt): Fix overflow check.
11558
115592009-10-21 Jan Djärv <jan.h.d@swipnet.se>
11560
11561 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
11562
11563 * xterm.h (x_wait_for_event): Declare it.
11564
11565 * xterm.c (pending_event_wait): New variable.
11566 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
11567 see pending_event_wait.eventtype.
11568 (handle_one_xevent): Don't change gravity when parent changes.
11569 (x_new_font): Call change_frame_size with new rows/columns before we
11570 try to resize the frame.
11571 (x_wait_for_event): New function.
11572 (x_set_window_size_1): Don't change gravity unless change_gravity
11573 is set.
11574 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
11575 don't change frame size, instead wait for the ConfigureNotify.
11576 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
11577 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
11578 (x_initialize): Initialize pending_event_wait.
11579
11580 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
11581 size.
11582
11583 * widget.c (EmacsFrameSetValues): Add comment.
11584 (EmacsFrameSetCharSize): Just call x_set_window_size.
11585
11586 * gtkutil.c (xg_frame_set_char_size): Flush events and call
11587 x_wait_for_event.
11588 (flush_and_sync): Remove again.
11589 (xg_get_font_name): Suggest monospace if no previous font is known.
11590
115912009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11592
11593 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
11594 8th bit, since that only made sense in the ASCII world (bug#4751).
11595
115962009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11597
11598 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
11599 processing pending events when event is filtered for input method.
11600 (Bug#3681)
11601
116022009-10-20 Juanma Barranquero <lekktu@gmail.com>
11603
11604 * fns.c: Add #endif accidentally removed in previous change.
11605
116062009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11607
11608 * fns.c: Remove code for unsupported system: MAC_OS.
11609 * image.c: Likewise. Include setjmp.h.
11610
116112009-10-19 Jan Djärv <jan.h.d@swipnet.se>
11612
11613 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
11614 pixel -1 (bug #4742).
11615
116162009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11617
11618 * process.c (create_pty): Remove conditionals for no longer
11619 supported systems: UNIPLUS and RTU.
11620
11621 * xterm.c:
11622 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
11623
11624 * alloc.c: Do not define struct catchtag.
11625 * eval.c: Move struct catchtag definition ...
11626 * lisp.h: ... here.
11627
11628 * image.c: Move png.h #include earlier to avoid warnings.
11629
11630 * xterm.c:
11631 * xsmfns.c:
11632 * xselect.c:
11633 * xrdb.c:
11634 * xmenu.c:
11635 * xftfont.c:
11636 * xfont.c:
11637 * xfns.c:
11638 * xfaces.c:
11639 * xdisp.c:
11640 * window.c:
11641 * widget.c:
11642 * w32xfns.c:
11643 * w32uniscribe.c:
11644 * w32term.c:
11645 * w32select.c:
11646 * w32reg.c:
11647 * w32proc.c:
11648 * w32menu.c:
11649 * w32inevt.c:
11650 * w32heap.c:
11651 * w32font.c:
11652 * w32fns.c:
11653 * w32console.c:
11654 * w32.c:
11655 * w16select.c:
11656 * vm-limit.c:
11657 * unexsol.c:
11658 * unexec.c:
11659 * unexcw.c:
11660 * unexaix.c:
11661 * undo.c:
11662 * tparam.c:
11663 * textprop.c:
11664 * terminfo.c:
11665 * terminal.c:
11666 * termcap.c:
11667 * term.c:
11668 * syntax.c:
11669 * sound.c:
11670 * sheap.c:
11671 * search.c:
11672 * scroll.c:
11673 * region-cache.c:
11674 * regex.c:
11675 * ralloc.c:
11676 * process.c:
11677 * print.c:
11678 * nsterm.m:
11679 * nsselect.m:
11680 * nsmenu.m:
11681 * nsimage.m:
11682 * nsfont.m:
11683 * nsfns.m:
11684 * msdos.c:
11685 * minibuf.c:
11686 * menu.c:
11687 * marker.c:
11688 * macros.c:
11689 * keymap.c:
11690 * keyboard.c:
11691 * intervals.c:
11692 * insdel.c:
11693 * indent.c:
11694 * gtkutil.c:
11695 * ftxfont.c:
11696 * ftfont.c:
11697 * fringe.c:
11698 * frame.c:
11699 * fontset.c:
11700 * font.c:
11701 * fns.c:
11702 * floatfns.c:
11703 * filelock.c:
11704 * fileio.c:
11705 * emacs.c:
11706 * editfns.c:
11707 * dosfns.c:
11708 * doprnt.c:
11709 * doc.c:
11710 * dispnew.c:
11711 * dired.c:
11712 * dbusbind.c:
11713 * data.c:
11714 * composite.c:
11715 * coding.c:
11716 * cmds.c:
11717 * cm.c:
11718 * chartab.c:
11719 * charset.c:
11720 * character.c:
11721 * ccl.c:
11722 * category.c:
11723 * casetab.c:
11724 * casefiddle.c:
11725 * callproc.c:
11726 * callint.c:
11727 * bytecode.c:
11728 * buffer.c:
11729 * atimer.c: Include setjmp.h. (Bug#4643)
11730
117312009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
11732
11733 Remove leftover table unibyte_to_multibyte_table.
11734 * character.c (unibyte_to_multibyte_table): Remove.
11735 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
11736 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
11737 * character.h (UNIBYTE_TO_CHAR): New macro.
11738 (MAKE_CHAR_MULTIBYTE): Use it.
11739 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
11740 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
11741 (message_dolog, set_message_1):
11742 * search.c (Freplace_match):
11743 * editfns.c (Fcompare_buffer_substrings):
11744 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
11745 (concat):
11746 * insdel.c (copy_text, count_size_as_multibyte):
11747 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
11748 * term.c (produce_glyphs):
11749 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
11750 * regex.c (RE_CHAR_TO_MULTIBYTE):
11751 * cmds.c (internal_self_insert):
11752 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
11753
11754 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
11755
117562009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
11757
11758 * puresize.h (BASE_PURESIZE): Increase to 1310000.
11759
117602009-10-16 Juanma Barranquero <lekktu@gmail.com>
11761
11762 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
11763
117642009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
11765
11766 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
11767 still needed under Tiger.
11768
11769 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
11770
11771 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
11772 __Apple__.
11773
11774 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
11775
117762009-10-15 Kenichi Handa <handa@m17n.org>
11777
11778 * print.c (print_object): Escape a symbol like "2E10" too.
11779
117802009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
11781
11782 Cleanups and changes for 64-bit compile under Snow Leopard.
11783 Based on suggestions by Erik Charlebois.
11784
11785 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
11786
11787 * nsfont.m (ns_char_width): Replace deprecated call.
11788 (ns_findfonts, nsfont_list_family): Use long format in printf, and
11789 cast argument.
11790 (nsfont_open): Use ns_char_width() everywhere.
11791 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
11792
11793 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
11794
11795 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
11796 where appropriate.
11797
11798 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
11799 where appropriate.
11800 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
11801 Use stringWithUTF8String.
11802 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
11803
11804 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
11805 Add formal protocol mention to inheritance.
11806 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
11807
11808 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
11809 Fix printf format.
11810 (ns_query_color): Use CGFloat where appropriate.
11811 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
11812 (EmacsScroller-mouseDown:): Use long format in printf, and cast
11813 argument.
11814
11815 * config.in (NS_HAVE_NSINTEGER): Drop.
11816
11817 * dbusbind.c (dbus-method-return-internal)
11818 (dbus-method-error-internal): Use long format in printf, and cast
11819 argument.
11820
11821 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
11822 in printf, and cast argument.
11823
11824 * process.c (list_processes_1): Use long format in printf, and
11825 cast argument.
11826
118272009-10-11 Glenn Morris <rgm@gnu.org>
11828
11829 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
11830
118312009-10-08 Jan Djärv <jan.h.d@swipnet.se>
11832
11833 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
11834 menu bar with a small width so it doesn't enlarge the frame.
11835
118362009-10-08 Juanma Barranquero <lekktu@gmail.com>
11837
11838 * fontset.c (Fset_fontset_font): Fix typos in error messages.
11839
118402009-10-06 Glenn Morris <rgm@gnu.org>
11841
11842 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
11843 SOME_MACHINE_LISP (this enters indirectly via DOC).
11844
118452009-10-05 Eli Zaretskii <eliz@gnu.org>
11846
11847 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
11848
118492009-10-04 Eli Zaretskii <eliz@gnu.org>
11850
11851 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
11852 Doc fix.
11853
118542009-10-03 Martin Rudalics <rudalics@gmx.at>
11855
11856 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
11857
118582009-10-02 Michael Albinus <michael.albinus@gmx.de>
11859
11860 * lisp.h (Qdelete_directory_internal): Remove, because it is not
11861 used anymore outside fileio.c.
11862
11863 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
11864
118652009-10-01 Juanma Barranquero <lekktu@gmail.com>
11866
11867 * lisp.h (Qdelete_directory_internal):
11868 Declare, instead of Qdelete_directory.
11869
11870 * w32fns.c (Fsystem_move_file_to_trash): Use it.
11871
118722009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
11873
11874 * eval.c (Fcalled_interactively_p): Add `kind' argument.
11875
118762009-10-01 Michael Albinus <michael.albinus@gmx.de>
11877
11878 * fileio.c (Fdelete_directory_internal): Rename from
11879 Fdelete_directory. It is not a command anymore. It has no file
11880 name handler.
11881
118822009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
11883
11884 * xdisp.c (get_next_display_element): Use an enum in last change.
11885
118862009-09-28 Kenichi Handa <handa@m17n.org>
11887
11888 * xdisp.c (get_next_display_element): Pay attention to
11889 unibyte_display_via_language_environment in handling
11890 Vnobreak_char_display.
11891
118922009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
11893
11894 * nsterm.h (ns_app_name): New extern variable.
11895
11896 * nsterm.m (ns_app_name): New variable.
11897 (ns_term_init): Set and use it.
11898 (ns_term_shutdown): Use it.
11899
11900 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
11901 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
11902
11903 * nsfns.m (ns_set_name_iconic, ns_set_name)
11904 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
11905 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
11906
11907 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
11908 Remove double-casting in client_data comparison.
11909
119102009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11911
11912 * keyboard.c (make_lispy_event): Remember last wheel direction.
11913 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
11914
119152009-09-26 Glenn Morris <rgm@gnu.org>
11916
11917 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
11918 internal.elc. Add term/pc-win.elc.
11919 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
11920 term/x-win.elc.
11921 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
11922 term/w32-win.elc.
11923 (NS_SUPPORT): New.
11924 (lisp): Add NS_SUPPORT.
11925 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
11926
119272009-09-25 David Reitter <david.reitter@gmail.com>
11928
11929 * nsmenu.m (EmacsMenu-clear): Recognize application menu
11930 on Mac OS X 10.6+ (bug#4513).
11931
119322009-09-24 Juanma Barranquero <lekktu@gmail.com>
11933
11934 * frame.c (xrdb_get_resource): Return nil for empty string resources;
11935 some parts of Emacs code (like font selection) don't grok them.
11936 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
11937
119382009-09-24 Andreas Schwab <schwab@redhat.com>
11939
11940 * coding.c (decode_coding_iso_2022): Fix operator precedence.
11941
119422009-09-24 Juanma Barranquero <lekktu@gmail.com>
11943
11944 * dired.c (Fdirectory_files): Fix typo in docstring.
11945
119462009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
11947
11948 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
11949 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
11950 (EmacsScroller-setPosition:portion:whole:): Remove -display call
11951 under GNUstep.
11952 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
11953
11954 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
11955 glyph advancement.
11956
119572009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
11958
11959 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
11960 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
11961
11962 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
11963 deleted (bug #4492).
11964
11965 * nsfont.m (Vns_reg_to_script): New lisp variable.
11966 (syms_of_nsfont): Declare it.
11967 (ns_registry_to_script): New function.
11968 (ns_get_req_script): Call it.
11969 (ns_findfonts): Don't give up on non-unicode registry.
11970
11971 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
11972
119732009-09-20 Tom Tromey <tromey@redhat.com>
11974
11975 * eval.c (find_handler_clause): Make stack-trace-on-error work in
11976 batch mode (bug#4228).
11977
119782009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
11979
11980 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
11981 carefully. (Bug #4339)
11982
119832009-09-18 Chong Yidong <cyd@stupidchicken.com>
11984
11985 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
11986
119872009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
11988
11989 * emacs.c (inhibit_x_resources): Update doc string for NS.
11990 (main) [HAVE_NS]: Don't process --no-init-file option.
11991 Remove legacy code for -NXHost. Fix error printf in daemon case.
11992
11993 * nsterm.h (ns_no_defaults): Remove.
11994
11995 * nsterm.m (ns_no_defaults): Remove.
11996 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
11997 (ns_use_qd_smoothing): Remove legacy variable.
11998 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
11999 don't update the NSWindow itself.
12000 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
12001 Improve state detection and store user rect ourselves. (Bug #3581)
12002
12003 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
12004 ns_use_qd_smoothing.
12005
12006 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
12007 platform versions. Drop support for emacs-20-style face specs.
12008 (x-close-connection): Drop PSFlush() under OS X.
12009 (x-focus-frame): Activate the app first. (Bug #4180)
12010
120112009-09-17 Juanma Barranquero <lekktu@gmail.com>
12012
12013 * emacs.c (inhibit_x_resources): New variable.
12014 (main) [HAVE_NS]: Don't process --quick command line option.
12015 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
12016
12017 * lisp.h (inhibit_x_resources): Declare it extern.
12018
12019 * w32reg.c (x_get_string_resource):
12020 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
12021
120222009-09-17 Eli Zaretskii <eliz@gnu.org>
12023
12024 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
12025 Add lisp/term/internal.elc.
12026
120272009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
12028
12029 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
12030 (bug#4461).
12031
120322009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
12033
12034 * puresize.h (BASE_PURESIZE): Increase to 1290000.
12035
12036 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
12037 (OBJECTS_MACHINE): Remove, unused.
12038
120392009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12040
12041 * frame.c (x_get_resource_string): Remove unused.
12042
120432009-09-15 Jan Djärv <jan.h.d@swipnet.se>
12044
12045 * xterm.c (x_new_font): Call change_frame_size before calling
12046 x_set_window_size, in case frame size won't change.
12047
12048 * frame.c (x_set_font): Remove dead code.
12049
120502009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
12051
12052 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
12053
120542009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12055
12056 * lread.c (Fload): Don't output a message after loading an obsolete
12057 package any more (done in Lisp now).
12058
120592009-09-12 Chong Yidong <cyd@stupidchicken.com>
12060
12061 * fns.c (syms_of_fns): Doc fix (Bug#4227).
12062
120632009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12064
12065 * keymap.c (Fwhere_is_internal): Use nconc2.
12066
120672009-09-11 Alan Mackenzie <acm@muc.de>
12068
12069 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
12070 batch mode.
12071
120722009-09-11 Andreas Schwab <schwab@linux-m68k.org>
12073
12074 * xdisp.c (display_mode_element): Detect cycles.
12075
120762009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12077
12078 * keymap.c (where_is_internal): Don't erroneously return nil right after
12079 filling the cache.
12080 (where_is_internal_1): Fix up typo.
12081
120822009-09-11 Glenn Morris <rgm@gnu.org>
12083
12084 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
12085 share a common doc-string.
12086
120872009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12088
12089 * keymap.c (get_keymap): Return the actual keymap symbol rather than
12090 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
12091
12092 * keymap.c (QCadvertised_binding): New constant.
12093 (syms_of_keymap): Initialize it.
12094 (Fwhere_is_internal): Try and use bindings from :advertised-binding
12095 if applicable.
12096
120972009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
12098
12099 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
12100 (parse_menu_item): Streamline since bindings are recomputed all the
12101 time anyway. Don't bother checking Vdefine_key_rebound_commands any
12102 more and don't support lmenu's menu-alias any more either.
12103
12104 * keymap.c (where_is_internal_data): Make noindirect a boolean.
12105 (where_is_internal): Strip it down to only traverse the keymaps.
12106 Move the cache handling from Fwhere_is_internal to here.
12107 (Fwhere_is_internal): Move the handling of remapping and the choice of
12108 the best binding from where_is_internal to here.
12109 Unify the cached/noncached paths, so remapping is also handled
12110 correctly when the cache is used, and so the cache can be used to
12111 speed up remap-handling when applicable.
12112 Give preference to non-remapped bindings.
12113 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
12114 non-remapped bindings.
12115 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
12116 command remapping.
12117
12118 * xdisp.c (display_mode_element): Move list length limit from 50 to
12119 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
12120
121212009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
12122
12123 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
12124
121252009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
12126
12127 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
12128 (Bug#4334)
12129
12130 * keymap.c (where_is_internal): Filter out shadowed remappings.
12131 Assume that where_is_internal returns unshadowed bindings to simplify
12132 the code and get rid of the gotos. Use ASIZE.
12133
121342009-09-04 Jan Djärv <jan.h.d@swipnet.se>
12135
12136 * xterm.c (x_focus_changed): If we get a focusout and pointer
12137 is invisible, make it visible.
12138
12139 * xterm.h: Remove condition for declaration of
12140 x_*_window_to_frame.
12141
121422009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
12143
12144 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
12145 initial terminal as well.
12146
121472009-09-02 Jan Djärv <jan.h.d@swipnet.se>
12148
12149 * xterm.h: Rename x_non_menubar_window_to_frame to
12150 x_menubar_window_to_frame.
12151
12152 * xterm.c: Remove declarations also in xterm.h.
12153 (XTmouse_position): Do not return valid positions
12154 for clicks in the menubar and the toolbar for Gtk+.
12155
12156 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
12157 if the widget for the event has the same top level as a frame,
12158 return the frame.
12159 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
12160 internal windows, bug #4122.
12161 (x_non_menubar_window_to_frame): Remove.
12162
121632009-09-02 Glenn Morris <rgm@gnu.org>
12164
12165 * buffer.c (default-major-mode): Move most of the doc from here...
12166 (major-mode): ... to here.
12167
121682009-08-30 Nick Roberts <nickrob@snap.net.nz>
12169
12170 * process.c (wait_reading_process_output): Keep the descriptor
12171 when pty is used by a non-child process, e.g., in I/O buffer of
12172 GDB this allows inferior to be restarted.
12173
121742009-08-29 Eli Zaretskii <eliz@gnu.org>
12175
12176 * xdisp.c (redisplay_internal): Remove redundant test and collapse
12177 both branches into one.
12178
121792009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
12180
12181 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
12182 (main): Use enable-multibyte-characters rather than
12183 default-enable-multibyte-characters. Output a warning message when
12184 running a unibyte session.
12185
121862009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12187
12188 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
12189 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
12190 (copy_data_segment): Also copy __program_vars section.
12191 (copy_dyld_info) [LC_DYLD_INFO]: New function.
12192 (dump_it) [LC_DYLD_INFO]: Use it.
12193
12194 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
12195
121962009-08-28 Eli Zaretskii <eliz@gnu.org>
12197
12198 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
12199 $(SRC)/buildobj.h.
12200 (buildobj.h): Rename from $(SRC)/buildobj.h.
12201 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
12202 $(SRC)/buildobj.h.
12203 (clean): Add buildobj.h.
12204
122052009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
12206
12207 * print.c (print_object): Set escapeflag to 1 when printing
12208 hashtable keys and values.
12209
122102009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
12211
12212 * lread.c (read_integer): Use doubles (and potentially return a float
12213 number) as we do in string-to-number.
12214 (read1): Use strtol to read integers, signal errors on strtol's
12215 overflow and use floats if strtol's output is too large for
12216 Elisp integers.
12217
122182009-08-27 Eli Zaretskii <eliz@gnu.org>
12219
12220 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
12221 (make-buildobj-SH): Fix last change.
12222 (SRC): Move to before where it's first used.
12223
122242009-08-27 Kenichi Handa <handa@m17n.org>
12225
12226 * process.c (send_process): Use encode_coding_object instead of
12227 encode_coding_string to perform eol-conversion even if the string
12228 is unibyte.
12229
12230 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
12231 character.
12232
12233 * cmds.c (Fself_insert_command): Avoid unnecessay
12234 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
12235
122362009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
12237
12238 * callproc.c (Fcall_process): Remove always true #if.
12239
12240 * lisp.h: Replace #if 0 code for checking with text pointing to
12241 the --enable-checking configure flag.
12242
12243 * emacs.c (main): Mention the --enable-profiling configure flag
12244 instead of using CFLAGS.
12245
122462009-08-26 Ken Raeburn <raeburn@raeburn.org>
12247
12248 * Makefile.in (buildobj.h): New target.
12249 (doc.o): Depend on it.
12250 (temacs${EXEEXT}): Don't generate buildobj.lst.
12251 (mostlyclean): Delete buildobj.h, not buildobj.lst.
12252 * makefile.w32-in ($(SRC)/buildobj.h): New target.
12253 ($(BLD)/doc.$(O)): Depend on it.
12254 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
12255 provided by Eli Zaretskii.)
12256 ($(TEMACS)): Don't generate buildobj.lst.
12257 * doc.c: Include buildobj.h.
12258 (buildobj): New static variable.
12259 (Fsnarf_documentation): Use it, instead of opening and reading
12260 buildobj.lst.
12261
122622009-08-25 Michael Albinus <michael.albinus@gmx.de>
12263
12264 * dbusbind.c (Fdbus_call_method)
12265 (Fdbus_call_method_asynchronously): Use English numeric format for
12266 timeout values in doc string.
12267
122682009-08-25 Kenichi Handa <handa@m17n.org>
12269
12270 * alloc.c (mark_char_table): New function.
12271 (mark_object): Use mark_char_table for a char-table.
12272
12273 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
12274 (CHAR_TABLE_REF): Use it.
12275
122762009-08-23 Ken Raeburn <raeburn@raeburn.org>
12277
12278 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
12279 before invoking the newly build emacs to check for load-path
12280 shadowing.
12281
122822009-08-22 Glenn Morris <rgm@gnu.org>
12283
12284 * Makefile.in (bootstrap_exe): New variable.
12285 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
12286 Use ${bootstrap_exe}.
12287
122882009-08-22 Eli Zaretskii <eliz@gnu.org>
12289
12290 * coding.h (encode_coding_string): Don't encode unibyte strings.
12291 (Bug#4047)
12292
122932009-08-22 Michael Albinus <michael.albinus@gmx.de>
12294
12295 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
12296
12297 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
12298 intended as hotfix only.
12299 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
12300
123012009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12302
12303 * nsterm.m (ns_get_color): Update documentation properly for last
12304 change, and clean up loose ends in the code left by it.
12305 Fix longstanding bug with 16-bit hex parsing, and add support for
12306 yet another X11 format (rgb:r/g/b) for compatibility.
12307 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
12308 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
12309
123102009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
12311
12312 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
12313
123142009-08-20 Michael Albinus <michael.albinus@gmx.de>
12315
12316 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
12317 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
12318 (xd_initialize, xd_pending_messages): Check, whether
12319 $DBUS_SESSION_BUS_ADDRESS is set.
12320
123212009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12322
12323 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
12324
12325 * nsterm.m (ns_get_color): Remove incompatible color formats again.
12326
123272009-08-20 Glenn Morris <rgm@gnu.org>
12328
12329 * emacs.c (system-type): Doc fix.
12330
123312009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12332
12333 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
12334 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
12335
123362009-08-18 Michael Albinus <michael.albinus@gmx.de>
12337
12338 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
12339 New functions.
12340 (xd_initialize): Revert change from 2009-08-16.
12341
123422009-08-18 Kenichi Handa <handa@m17n.org>
12343
12344 * fontset.c (Ffontset_font): If a nil element is found in a
12345 font-group vector, return nil.
12346
123472009-08-17 Chong Yidong <cyd@stupidchicken.com>
12348
12349 * process.c (status_notify): Don't perform redisplay.
12350 (Fdelete_process, list_processes_1, process_send_signal):
12351 Expliticly perform redisplay.
12352 (wait_reading_process_output): Always check process status, but
12353 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
12354
123552009-08-17 Ken Raeburn <raeburn@raeburn.org>
12356
12357 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
12358 (XFLOAT_INIT): New macro for storing a float value.
12359 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
12360 * fns.c (sxhash): Copy out the value of a float in order to
12361 examine its bytes.
12362 * dbusbind.c (xd_append_arg): Likewise.
12363
12364 * emacs.c (main): Don't call syms_of_data twice.
12365
123662009-08-16 Michael Albinus <michael.albinus@gmx.de>
12367
12368 * dbusbind.c (xd_initialize): Add connection file descriptor to
12369 input_wait_mask, in order to let select() detect, whether a new
12370 message has been arrived.
12371 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
12372
123732009-08-15 Michael Albinus <michael.albinus@gmx.de>
12374
12375 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
12376 New functions.
12377
12378 * lisp.h (xd_pending_messages): Declare.
12379
12380 * keyboard.c (readable_events): Call xd_pending_messages.
12381
123822009-08-15 Chong Yidong <cyd@stupidchicken.com>
12383
12384 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
12385
12386 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
12387
12388 * buffer.c (set_buffer_internal_1)
12389 (swap_out_buffer_local_variables): Check for unbound local
12390 variables (Bug#4138).
12391
123922009-08-14 Eli Zaretskii <eliz@gnu.org>
12393
12394 * process.c (create_pty): Fix last change.
12395
123962009-08-13 Chong Yidong <cyd@stupidchicken.com>
12397
12398 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
12399 (xbm_load_image): Caller changed.
12400 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
12401
124022009-08-13 Nick Roberts <nickrob@snap.net.nz>
12403
12404 * process.c (create_pty): New function.
12405 (Fstart_process): Use it to allow Emacs to just associate a pty
12406 with the buffer. See associated change in gdb-mi.el.
12407 (list_processes_1): Deal with no program name.
12408 (start_process_unwind): Use pid == -2 to mean no process.
12409
124102009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12411
12412 * cmds.c (nonundocount): New global variable.
12413 (keys_of_cmds): Initialize it.
12414 (Fself_insert_command): Use it to combine upto 20 sequential chars
12415 into a single undo entry, just like the Qself_insert_command code in
12416 keyboard.c does.
12417 Call frame_make_pointer_invisible, also like the Qself_insert_command
12418 code in keyboard.c does.
12419 * keyboard.c (command_loop_1): Use the new global nonundocount rather
12420 than its own local replacement for it.
12421
124222009-08-10 Ken Raeburn <raeburn@raeburn.org>
12423
12424 * fns.c (concat): Don't re-set string length to its current value.
12425
12426 * coding.h (decode_coding_string, encode_coding_string):
12427 Use SBYTES macro.
12428
12429 * doprnt.c (doprnt_lisp): Delete unused function.
12430 (doprnt): Merge with doprnt1, discarding lispstrings code.
12431 * lisp.h (doprnt_lisp): Don't declare.
12432
124332009-08-07 Juri Linkov <juri@jurta.org>
12434
12435 * puresize.h (BASE_PURESIZE): Increase to 1270000.
12436
124372009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
12438
12439 * print.c (syms_of_print): Undo previous change.
12440
124412009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
12442
12443 * lread.c (read1, syms_of_lread): Read hashtables back from the
12444 readable format.
12445
12446 * print.c (print_preprocess, print_object): Print hashtables fully
12447 and readably.
12448 (syms_of_print): Provide 'hashtable-print-readable.
12449
124502009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
12451
12452 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
12453 no family set.
12454 (nsfont_open): Handle case when entity has no family.
12455
124562009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
12457
12458 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
12459 element, not a list, for match case.
12460
124612009-07-28 Kenichi Handa <handa@m17n.org>
12462
12463 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
12464 rigidly.
12465
12466 * xfont.c (xfont_list_pattern): Don't ignore the return value of
12467 font_parse_xlfd. Check font properties more rigidly.
12468
124692009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
12470
12471 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
12472 bsd-common.h.
12473
124742009-07-27 Kenichi Handa <handa@m17n.org>
12475
12476 * xfaces.c (face_with_height): Call font_clear_prop.
12477
124782009-07-26 Chong Yidong <cyd@stupidchicken.com>
12479
12480 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
12481
12482 * xterm.c (x_term_init): Use Qx.
12483
12484 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
12485
12486 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
12487 (ns_get_color): Revert 2009-07-16 change.
12488
124892009-07-25 Eli Zaretskii <eliz@gnu.org>
12490
12491 * lread.c (syms_of_lread) <force_load_messages>: New variable.
12492 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
12493
124942009-07-25 Ken Raeburn <raeburn@raeburn.org>
12495
12496 * coding.h (decode_coding_string, encode_coding_string):
12497 Use SCHARS macro.
12498
12499 * lread.c: Rewrite 2009-07-21 changes.
12500 (load_depth): Delete.
12501 (Qload_in_progress): New variable.
12502 (load_unwind): Don't reference load_depth or load_in_progress.
12503 (Fload): Likewise; specbind Qload_in_progress instead.
12504 (init_lread): Don't initialize load_depth.
12505 (syms_of_lread): Initialize and protect Qload_in_progress.
12506
125072009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
12508
12509 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
12510
125112009-07-23 Yavor Doganov <yavor@gnu.org>
12512
12513 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
12514
125152009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12516
12517 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
12518 Bugs 3792, 3720, 2402.
12519 (ns_lookup_indexed_color): Check for bad index.
12520 (ns_index_color): Init unused slot to 0.
12521 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
12522 Bug 3714, possibly 3082.
12523
125242009-07-22 Jason Rumney <jasonr@gnu.org>
12525
12526 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
12527 Position IME window at cursor (Bug#2570).
12528 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
12529 (globals_of_w32fns): Dynamically load functions required above.
12530
12531 * w32term.c (w32_draw_window_cursor): Send message to reposition
12532 any IME window.
12533
125342009-07-21 Chong Yidong <cyd@stupidchicken.com>
12535
12536 * fileio.c: Revert 2009-07-16 changes.
12537 (Vauto_save_include_big_deletions): New variable.
12538 (Fdo_auto_save): Disable auto-save only if
12539 auto-save-include-big-deletions is nil.
12540
125412009-07-21 Chong Yidong <cyd@stupidchicken.com>
12542
12543 * xdisp.c (move_it_to): For continued lines ending in a tab, take
12544 the overflowed pixels into account (Bug#3879).
12545
125462009-07-21 Ken Raeburn <raeburn@raeburn.org>
12547
12548 * lread.c (load_depth): New variable.
12549 (Fload, load_unwind, init_lread): Set it to the load recursion
12550 depth; set load_in_progress as a simple boolean based on the
12551 current load_depth. (Bug#3892)
12552
125532009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12554
12555 * nsfont.m (ns_has_attribute): Remove.
12556 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
12557
125582009-07-18 Juri Linkov <juri@jurta.org>
12559
12560 * process.c (Fset_process_query_on_exit_flag): Mention killing
12561 a buffer in docstring.
12562
125632009-07-17 Kenichi Handa <handa@m17n.org>
12564
12565 * casetab.c (shuffle): Fix the logic of setting up the cycle.
12566
125672009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12568
12569 * nsfns.m (Fns_set_alpha): Remove function.
12570 (syms_of_nsfns): Don't defsubr it.
12571
12572 * nsterm.m (ns_get_color): Remove incompatible color formats.
12573 (ns_color_to_lisp): Generate #rrggbb color format string.
12574
125752009-07-16 Richard Stallman <rms@gnu.org>
12576
12577 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
12578 (Fset_buffer_auto_saved): Handle save_length = -2.
12579
125802009-07-16 Chong Yidong <cyd@stupidchicken.com>
12581
12582 * xterm.c (Qx_gtk_map_stock): New var.
12583
12584 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
12585 of calling intern each time.
12586
125872009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12588
12589 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
12590 does tiling.
12591
12592 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
12593
125942009-07-14 Kenichi Handa <handa@m17n.org>
12595
12596 * font.c (font_vconcat_entity_vectors): New function.
12597 (struct font_sort_data): New member font_driver_preference.
12598 (font_compare): Check font_driver_preference.
12599 (font_sort_entities): The format of the first argument changed.
12600 (font_delete_unmatched): Likewise.
12601 (font_list_entities): The return type changed.
12602 (font_select_entity): The format of the second argument changed.
12603 (font_find_for_lface): Adjuste for the above changes.
12604 Don't suppress the checking of C even if the repertory supports it.
12605 (Flist_fonts): Adjust for the above changes.
12606
12607 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
12608 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
12609 Reject a font who has adstyle property that is different from a
12610 langname derived from registry property.
12611 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
12612
126132009-07-13 Eli Zaretskii <eliz@gnu.org>
12614
12615 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
12616 local copy of dirfilename.
12617
126182009-07-13 Kenichi Handa <handa@m17n.org>
12619
12620 * chartab.c (sub_char_table_ref_and_range): Fix the range check
12621 against max_char.
12622
12623 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
12624 calling XSYMBOL (sym).
12625
126262009-07-11 Eli Zaretskii <eliz@gnu.org>
12627
12628 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
12629 New function.
12630 (directory_files_internal) [WINDOWSNT]:
12631 Bind w32-get-true-file-attributes to either t or nil, depending whether
12632 the filesystem of the directory is fast or slow.
12633
12634 * w32.c (logon_network_drive): Don't assume PATH is an absolute
12635 file name.
12636 (is_slow_fs): New function.
12637 (stat): Use it to determine whether to issue more system calls to
12638 get accurate file attributes, when w32-get-true-file-attributes is
12639 `local'.
12640
126412009-07-10 Jan Djärv <jan.h.d@swipnet.se>
12642
12643 * xfns.c (Fx_select_font): Remember last font selected in
12644 x_last_font_name and use that the next time. Also try the frame
12645 parameter font-parameter as default to the font dialog.
12646
126472009-07-10 Kenichi Handa <handa@m17n.org>
12648
12649 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
12650
126512009-07-09 Eli Zaretskii <eliz@gnu.org>
12652
12653 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
12654
12655 * w32.c (stat): Treat UNC file names as residing on remote
12656 drives. (Bug#3542)
12657
126582009-07-09 Kenichi Handa <handa@m17n.org>
12659
12660 * fontset.c (fontset_find_font): Fix previous change.
12661
126622009-07-08 Michael Albinus <michael.albinus@gmx.de>
12663
12664 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
12665 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
12666 error flag.
12667
126682009-07-08 Kenichi Handa <handa@m17n.org>
12669
12670 * fontset.c (fontset_find_font): Fix the logic of handling
12671 charset_matched.
12672 (font_for_char): Delete unused var.
12673 (generate_ascii_font_name): Delete it.
12674
12675 * coding.h (JIS_TO_SJIS2): Fix the code range check.
12676
12677 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
12678 (encode_coding_sjis): Fix the code range check.
12679
126802009-07-07 Chong Yidong <cyd@stupidchicken.com>
12681
12682 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
12683 (Fexpand_file_name): Copy string data properly (Bug#3772).
12684
126852009-07-07 Jan Djärv <jan.h.d@swipnet.se>
12686
12687 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
12688 first MapNotify.
12689
126902009-07-07 Kenichi Handa <handa@m17n.org>
12691
12692 * character.h (unibyte_has_multibyte_table): Delete extern.
12693 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
12694
12695 * charset.c (Fset_charset_priority): Update charset_unibyte.
12696 (syms_of_charset): Initialize charset_unibyte.
12697
12698 * character.c (unibyte_has_multibyte_table): Delete it.
12699 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
12700 charset_unibyte.
12701 (multibyte_char_to_unibyte_safe): Likewise.
12702 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
12703
12704 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
12705 (x_produce_glyphs): Likewise.
12706
12707 * .gdbinit (xcharset): Fix the treating $arg0.
12708
127092009-07-04 Eli Zaretskii <eliz@gnu.org>
12710
12711 Emulation of `getloadavg' on MS-Windows.
12712 * w32.c: Include float.h.
12713 (g_b_init_get_native_system_info, g_b_init_get_system_times)
12714 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
12715 (get_native_system_info, get_system_times): New functions.
12716 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
12717 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
12718 (globals_of_w32): Initialize g_b_init_get_native_system_info,
12719 g_b_init_get_system_times, and num_of_processors.
12720
127212009-07-03 Jason Rumney <jasonr@gnu.org>
12722
12723 * w32term.c (w32_initialize): Use standard types.
12724
127252009-07-03 Eli Zaretskii <eliz@gnu.org>
12726
12727 * dired.c (Ffile_attributes): Decode user and group names by the
12728 locale's encoding. (Bug#3443)
12729
127302009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
12731
12732 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
12733 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
12734
12735 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
12736
12737 * term.c (init_tty): Remove spurious #ifdef.
12738
12739 * m/mips.h: Mention this file is also used for netbsd.
12740 * m/pmax.h: Remove file.
12741
127422009-07-03 Jan Djärv <jan.h.d@swipnet.se>
12743
12744 * xterm.h (struct x_display_info): Add invisible_cursor.
12745 (struct x_output): Add current_cursor.
12746
12747 * xterm.c (XTtoggle_invisible_pointer): New function.
12748 (x_define_frame_cursor): Don't define cursor if invisible or the
12749 same as before. Set current_cursor.
12750 (x_create_terminal): Set toggle_invisible_pointer_hook.
12751
12752 * xfns.c (make_invisible_cursor): New function.
12753 (x_set_mouse_color): Call make_invisible_cursor.
12754 Set current_cursor.
12755 (x_window): Set current_cursor.
12756
12757 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
12758
12759 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
12760 inserting a character.
12761 (read_avail_input): Call frame_make_pointer_visible.
12762
12763 * frame.c (Vmake_pointer_invisible): New variable.
12764 (frame_make_pointer_invisible, frame_make_pointer_visible):
12765 New functions.
12766 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
12767
12768 * frame.h: Declare frame_make_pointer_invisible and
12769 frame_make_pointer_visible.
12770 (struct frame): Add pointer_invisible.
12771
127722009-07-02 Jan Djärv <jan.h.d@swipnet.se>
12773
12774 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
12775 frame isn't visible.
12776 (xg_frame_resized): If width/height is -1, get size of window
12777 from X server.
12778
12779 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
12780 for MapNotify.
12781
12782 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
12783 here or call change_frame_size. Just call flush_and_sync.
12784 (flush_and_sync): Reintroduce.
12785
127862009-07-01 Jan Djärv <jan.h.d@swipnet.se>
12787
12788 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
12789
12790 * xterm.c (x_handle_net_wm_state): Also look for sticky.
12791 (x_term_init): Initialize Xatom_net_wm_state_sticky.
12792
12793 * frame.h: Declare Qsticky.
12794
12795 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
12796
12797 * nsfns.m (ns_frame_parm_handlers): Ditto.
12798
12799 * frame.c: Declare Qsticky.
12800 (frame_parms): Add sticky.
12801
12802 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
12803
12804 * xterm.h: Declare x_set_sticky.
12805
12806 * xterm.c (x_set_sticky): New function.
12807
12808 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
12809 (xg_tool_bar_menu_proxy): Attach enter/leave events to
12810 xg_tool_bar_proxy_help_callback.
12811
12812 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
12813
12814 * frame.c: Qmaximized is new.
12815 (x_set_frame_parameters): Do not handle fullscreen specially.
12816 Only set width and height if explicitly set.
12817 (x_set_fullscreen): Handle Qmaximized.
12818 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
12819 (syms_of_frame): Initialize Qmaximized.
12820
12821 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
12822 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
12823
12824 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
12825 for Expose event. Add call to x_check_fullscreen for MapNotify event.
12826 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
12827 set gravity to NorthWestGravity when USE_GTK.
12828 (set_wm_state): New function.
12829 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
12830 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
12831 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
12832 or the case when no window manager is running. That means remove calls
12833 to x_real_positions and x_fullscreen_adjust.
12834
12835 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
12836 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
12837 flush_and_sync.
12838 (xg_height_changed): New function.
12839 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
12840 and gtk_window_set_policy. Set frame gravity after parsing the
12841 geometry string.
12842 (xg_update_frame_menubar, free_frame_menubar)
12843 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
12844 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
12845 Remove calls to xg_frame_set_char_size.
12846
128472009-07-01 Kenichi Handa <handa@m17n.org>
12848
12849 * keyboard.c (decode_keyboard_code): New function.
12850 (tty_read_avail_input): Decode the input bytes if necessary.
12851
12852 * coding.c (setup_coding_system):
12853 Initialize coding->carryover_bytes to 0.
12854 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
12855 use Qno_conversion.
12856
128572009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12858
12859 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
12860
128612009-06-30 Chong Yidong <cyd@stupidchicken.com>
12862
12863 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
12864
128652009-06-30 Jason Rumney <jasonr@gnu.org>
12866
12867 * w32term.c (w32_initialize): Use GetModuleHandle for library that
12868 is already loaded.
12869 Set user model ID if supported (bug#1849).
12870
128712009-06-29 Jim Meyering <meyering@redhat.com>
12872
12873 Remove useless if-before-xfree test.
12874 * nsfont.m (nsfont_close): Remove useless test.
12875 * term.c (delete_tty): Likewise.
12876 * w32.c (system_process_attributes): Likewise.
12877 * w32font.c (w32font_close): Likewise.
12878 * xfaces.c (x_free_gc): Likewise.
12879 * xselect.c (buffer): Likewise.
12880
128812009-06-28 Andreas Schwab <schwab@linux-m68k.org>
12882
12883 * process.c (send_process): Keep decoded string in a local
12884 variable and protect it from GC. (Bug#3521)
12885
128862009-06-28 Eli Zaretskii <eliz@gnu.org>
12887
12888 * term.c (create_tty_output) [MSDOS]: #ifdef away.
12889 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
12890
128912009-06-28 Chong Yidong <cyd@stupidchicken.com>
12892
12893 * xdisp.c (start_display, handle_face_prop)
12894 (move_it_vertically_backward, cursor_row_fully_visible_p)
12895 (redisplay_window, try_window_id, produce_image_glyph):
12896 Delete some #ifdef-ed out code chunks that are now obsolete.
12897
12898 * xterm.c (x_update_window_begin, x_new_focus_frame)
12899 (x_scroll_bar_handle_click, handle_one_xevent)
12900 (handle_one_xevent, XTread_socket, x_focus_on_frame)
12901 (x_make_frame_visible, x_make_frame_invisible)
12902 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
12903 code chunks that are now obsolete.
12904
129052009-06-28 Michael Albinus <michael.albinus@gmx.de>
12906
12907 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
12908 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
12909 for hours, when optimzation is enabled.
12910 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
12911 (xd_read_message): Make them static.
12912
129132009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
12914
12915 * term.c (turn_on_face): Allow simultaneously bold and dim
12916 terminal faces (Bug#3530).
12917
129182009-06-27 Chong Yidong <cyd@stupidchicken.com>
12919
12920 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
12921
12922 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
12923 truncation glyphs (Bug#3686).
12924
129252009-06-27 Glenn Morris <rgm@gnu.org>
12926
12927 * m/pmax.h: Restore file, with only netbsd portions.
12928
129292009-06-26 David Reitter <david.reitter@gmail.com>
12930
12931 * nsterm.m (keydown): Avoid infinite loop.
12932
129332009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
12934
12935 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
12936 the arg FORCE_SYMBOL.
12937
129382009-06-25 Kenichi Handa <handa@m17n.org>
12939
12940 * fontset.c (fontset_find_font): When a usable rfont_def is found
12941 in a fallback font-group, make it the first element of the group.
12942
129432009-06-24 Chong Yidong <cyd@stupidchicken.com>
12944
12945 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
12946
129472009-06-24 Kenichi Handa <handa@m17n.org>
12948
12949 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
12950 set for C.
12951 (fontset_font): Record the availability of a font for C both in
12952 the realized fontsets of the current one and the default one.
12953
129542009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
12955
12956 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
12957 conditional, it is always defined on AIX.
12958
129592009-06-23 Miles Bader <miles@gnu.org>
12960
12961 * window.c (Vrecenter_redisplay): New variable.
12962 (syms_of_window): Initialize it.
12963 (Qtty): New extern declaration.
12964 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
12965
129662009-06-23 Jim Meyering <meyering@redhat.com>
12967
12968 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
12969 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
12970 pointer dereferences are guaranteed to be valid.
12971
129722009-06-23 Kenichi Handa <handa@m17n.org>
12973
12974 * emacs.c (main): Call init_font ().
12975
12976 * font.h (Vfont_log): Extern it.
12977 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
12978
12979 * font.c (font_sort_entities, font_list_entities)
12980 (font_matching_entity, font_open_entity)
12981 (font_close_object): Change font_add_log to FONT_ADD_LOG.
12982 (Vfont_log): Delete static.
12983 (font_log_env_checked): Delete this variable.
12984 (font_add_log): Don't check font_log_env_checked.
12985 (font_deferred_log): Check Vfont_log.
12986 (init_font): New function.
12987
12988 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
12989
12990 * w32font.c: Change font_add_log to FONT_ADD_LOG.
12991
12992 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
12993
12994 * xfont.c: Change font_add_log to FONT_ADD_LOG.
12995
12996 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
12997 (face_for_char): Don't call font_deferred_log here.
12998 (font_for_char): Likewise.
12999
130002009-06-22 Chong Yidong <cyd@stupidchicken.com>
13001
13002 * w32term.c (x_draw_glyph_string): Use the glyph string's width
13003 rather than its background_width for drawing the overline and
13004 underline (Bug#489).
13005
13006 * xterm.c (x_draw_glyph_string): Use the glyph string's width
13007 rather than its background_width for drawing the overline and
13008 underline (Bug#489).
13009 (xg_default_icon_file): New variable.
13010 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
13011 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
13012
13013 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
13014 (load_overlay_strings): Remove externs.
13015 (fast_find_position): Function deleted.
13016 (mouse_face_from_buffer_pos): New function, based on
13017 fast_find_position. Correctly handle before-strings,
13018 display-strings, and after-strings (Bug#1220).
13019 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
13020
130212009-06-21 Chong Yidong <cyd@stupidchicken.com>
13022
13023 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
13024 (move_it_in_display_line_to, move_it_in_display_line_to)
13025 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
13026
130272009-06-21 Chong Yidong <cyd@stupidchicken.com>
13028
13029 * Branch for 23.1.
13030
130312009-06-21 Jason Rumney <jasonr@gnu.org>
13032
13033 * w32term.c (keyboard_codepage): New static variable.
13034 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
13035 (w32_read_socket) [WM_CHAR]: Use it to decode character
13036 input (bug#3237).
13037 (w32_initialize): Initialize it.
13038 (codepage_for_locale): New function.
13039
130402009-06-20 Ken Raeburn <raeburn@raeburn.org>
13041
13042 * process.c (status_message): Pass Faset index argument as a lisp
13043 object, so as to work with USE_LISP_UNION_TYPE.
13044
130452009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13046
13047 * coding.c (Ffind_coding_systems_region_internal):
13048 Cache checked characters.
13049
130502009-06-18 Kenichi Handa <handa@m17n.org>
13051
13052 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
13053
130542009-06-18 Andreas Schwab <aschwab@redhat.com>
13055
13056 * xdisp.c (redisplay_internal): Check that the frame is still
13057 live after redisplay of its windows.
13058 (redisplay_windows): Check that the window is still live.
13059
130602009-06-17 Andreas Schwab <schwab@linux-m68k.org>
13061
13062 * coding.c (detect_coding_utf_16): Fix previous change.
13063
130642009-06-16 Kenichi Handa <handa@m17n.org>
13065
13066 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
13067 UTF-16 by checking the dispersion of Eth and Oth bytes.
13068
130692009-06-15 Andreas Schwab <schwab@linux-m68k.org>
13070
13071 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
13072
130732009-06-15 Kenichi Handa <handa@m17n.org>
13074
13075 * process.c (status_message): Fix previous change. Be sure to
13076 decode a localized string.
13077
130782009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13079
13080 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
13081 add comment explaining why.
13082
130832009-06-14 Sidney Markowitz <sidney@sidney.com>
13084
13085 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
13086
130872009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
13088
13089 * nsfont.m (ns_attribute_value): Remove.
13090 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
13091 (ns_has_attribute): Shrink the normal range.
13092 (ns_findfonts): Don't worry about requested spec in determining
13093 need for synthItal.
13094 (ns_get_covering_families): Retain scriptToFamilies.
13095
130962009-06-14 Seiji Zenitani <zenitani@mac.com>
13097
13098 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
13099
131002009-06-11 Kenichi Handa <handa@m17n.org>
13101
13102 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13103 overhang for the static composition case.
13104
131052009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13106
13107 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13108 overhang for the automatic composition case.
13109
13110 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
13111 composition case.
13112
131132009-06-10 Chong Yidong <cyd@stupidchicken.com>
13114
13115 * xdisp.c (get_next_display_element): When handling wrap-prefix
13116 and line-prefix, treat \n as a control character (bug#3502).
13117
131182009-06-10 Kenichi Handa <handa@m17n.org>
13119
13120 * font.c (font_parse_family_registry): Fix for one-char foundry.
13121 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
13122
131232009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
13124
13125 * process.c (status_message): Fix handling of multibyte signal
13126 string (Bug#3499).
13127
131282009-06-09 Jim Meyering <meyering@redhat.com>
13129
13130 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
13131 color name is missing.
13132
131332009-06-09 Kenichi Handa <handa@m17n.org>
13134
13135 * charset.c (Fmap_charset_chars): In docstring, state clearly that
13136 FROM-CODE and TO-CODE are codepoints of CHARSET.
13137
131382009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13139
13140 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
13141
131422009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13143
13144 Changes to support :script/:lang/:otf in NS font driver.
13145 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
13146 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
13147 indicate not part of font driver interface, and change callers.
13148 (ns_get_family): Remove pointless null check.
13149 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
13150 ns_spec_to_descriptor, ns_descriptor_to_entity.
13151 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
13152 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
13153 (ns_spec_to_descriptor, ns_descriptor_to_entity)
13154 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
13155 (ns_get_req_script, ns_accumulate_script_ranges)
13156 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
13157 New functions.
13158 (nsfont_list, nsfont_match): Use ns_findfonts.
13159 (nsfont_open): Use font descriptor instead of traits.
13160 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
13161 (dump_glyphstring): Rename to ns_dump_glyphstring.
13162
13163 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
13164
13165 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
13166
13167 * fontset.c (fontset_from_font): Remove NS-specific code.
13168
131692009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
13170
13171 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
13172 nonactive windows.
13173
131742009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
13175
13176 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
13177
131782009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13179
13180 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
13181
131822009-06-07 Chong Yidong <cyd@stupidchicken.com>
13183
13184 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
13185 account for the overflowing of newlines into the last glyph on the
13186 display line (Bug#3482).
13187
131882009-06-05 David Reitter <david.reitter@gmail.com>
13189
13190 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
13191 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
13192 Fns_selection_exists_p, Fns_selection_owner_p.
13193
131942009-06-03 Jason Rumney <jasonr@gnu.org>
13195
13196 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
13197 available. (Bug#3379)
13198
131992009-05-29 Kenichi Handa <handa@m17n.org>
13200
13201 * coding.c (get_translation_table):
13202 Check Venable_character_translation.
13203
132042009-05-26 David Reitter <david.reitter@gmail.com>
13205
13206 * nsterm.m (ns_raise_frame): Only raise frame if visible.
13207 (x_make_frame_visible): Move frame to front rather than calling
13208 ns_raise_frame().
13209 (keyDown:): Do not swallow events that aren't re-sent if frame
13210 isn't key window.
13211 (drawRect:): Do not set visibility/iconified flags because
13212 drawRect may be called by NSView even if the frame is hidden.
13213
13214 * nsfns.m (Fx_create_frame): Follow other ports in
13215 determining visibility; default to t. Ensure async_visible is set.
13216
132172009-05-23 Eli Zaretskii <eliz@gnu.org>
13218
13219 * dired.c (Ffile_attributes): Doc fix.
13220
132212009-05-22 Chong Yidong <cyd@stupidchicken.com>
13222
13223 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
13224
132252009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13226
13227 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
13228 and xfont_scratch_props.
13229 (syms_of_xfont): Do it here instead.
13230 (xfont_find_ccl_program): Delete, unused.
13231 (xfont_open): Delete unused var `i'.
13232
132332009-05-21 Kenichi Handa <handa@m17n.org>
13234
13235 * fontset.c (Qlatin): Don't make it static.
13236
13237 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
13238 New functions.
13239 (xfont_scripts_cache, xfont_scratch_props): New variables.
13240 (Qlatin, Vscalable_fonts_allowed): Extern it.
13241 (xfont_list_pattern): Argument changed. Callers changed.
13242 Check Vscalable_fonts_allowed. Check the support of a script.
13243 (xfont_list): Don't reject a font spec with :script property.
13244 (xfont_has_char): Fix setting of encoding.
13245 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
13246 xfont_scratch_props.
13247
132482009-05-19 Kenichi Handa <handa@m17n.org>
13249
13250 * font.c (font_sort_entities): Rename from font_sort_entites.
13251 Callers changed.
13252
132532009-05-18 Kenichi Handa <handa@m17n.org>
13254
13255 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
13256
132572009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
13258
13259 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
13260 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
13261
132622009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13263
13264 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
13265 (x_delete_terminal): Dissociate resource database from display and
13266 then call XrmDestroyDatabase before closing display.
13267
132682009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
13269
13270 * nsterm.m (ns_read_socket): Remove unused variable.
13271 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
13272 whether selected frame is viable before raising it (based on patch
13273 by David Reitter), and improve commentary.
13274 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
13275
132762009-05-15 Kenichi Handa <handa@m17n.org>
13277
13278 * font.c (Ffont_spec): Check arguments.
13279
132802009-05-14 Chong Yidong <cyd@stupidchicken.com>
13281
13282 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
13283 weight when testing attributes (Bug#3282).
13284
132852009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13286
13287 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
13288 what we expect to get in the next ConfigureNotify event.
13289
13290 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
13291 before Xft one (Bug#1696).
13292
132932009-05-07 David Reitter <david.reitter@gmail.com>
13294
13295 * nsfns.m (Fx_display_planes): Compute bitplanes using
13296 NSBitsPerPixelFromDepth (Bug#3207).
13297
132982009-05-10 Chong Yidong <cyd@stupidchicken.com>
13299
13300 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
13301
133022009-05-10 Ulrich Mueller <ulm@gentoo.org>
13303
13304 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
13305
133062009-05-07 David Reitter <david.reitter@gmail.com>
13307
13308 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
13309 Respect mouse face background.
13310
133112009-05-07 David Reitter <david.reitter@gmail.com>
13312
13313 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
13314 Mouse movement/highlight: bracket drawing operations
13315 in ns_update_begin and ns_update_end.
13316
133172009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13318
13319 * nsfns.m (ns_get_screen): Rewrite.
13320 Don't presume selected-frame is of type `ns'.
13321
13322 * font.c (font_update_drivers): Sanity fallback to avoid disabling
13323 all drivers.
13324
13325 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
13326
133272009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13328
13329 * keyboard.h (add_user_signal): Fix typo in extern.
13330
13331 * lisp.h (add_user_signal): Remove extern.
13332
13333 * unexelf.c (unexec): Consider a section to precede the .bss section
13334 if its addresses overlap that of .bss.
13335 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
13336 instead of dumping process.
13337
133382009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13339
13340 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
13341
133422009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13343
13344 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
13345
133462009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
13347
13348 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
13349 any statements.
13350
133512009-05-02 Andreas Schwab <schwab@linux-m68k.org>
13352
13353 * process.c (read_process_output): Make sure the current buffer is
13354 always restored.
13355
13356 * coding.c (record_conversion_result): Don't modify
13357 Vlast_code_conversion_error for successful result.
13358 (alloc_destination): Don't clobber conversion result. (Bug#1650)
13359
133602009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13361
13362 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
13363 (load_charset_map): Remove unnecessary code.
13364
133652009-04-30 David Reitter <david.reitter@gmail.com>
13366
13367 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
13368 through f24.
13369
133702009-04-30 Chong Yidong <cyd@stupidchicken.com>
13371
13372 * xfaces.c (face_at_buffer_position): New arg base_face_id.
13373
13374 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
13375 face_at_buffer_position.
13376 (face_before_or_after_it_pos, get_next_display_element)
13377 (note_mouse_highlight): Update face_at_buffer_position call.
13378
13379 * term.c (term_mouse_highlight):
13380 * msdos.c (IT_note_mouse_highlight):
13381 * fontset.c (Finternal_char_font):
13382 * font.c (font_at, font_range): Update face_at_buffer_position call.
13383
13384 * dispextern.h (face_at_buffer_position): Update prototype.
13385
133862009-04-30 Kenichi Handa <handa@m17n.org>
13387
13388 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
13389
133902009-04-29 Andreas Schwab <schwab@linux-m68k.org>
13391
13392 * callproc.c (Fcall_process): Fix GC protection. Make sure
13393 current buffer is always restored.
13394
133952009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13396
13397 * atimer.c (init_atimer): Also clear stopped_atimers.
13398
13399 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
13400
13401 * process.c (create_process): Clean up merger residues of
13402 2008-07-17 change.
13403
134042009-04-29 Ulrich Mueller <ulm@gentoo.org>
13405
13406 * lread.c (Vread_circle): New variable.
13407 (read1): Disable recursive read if Vread_circle is nil.
13408
134092009-04-29 Kenichi Handa <handa@m17n.org>
13410
13411 * fontset.h (set_default_ascii_font): Delete extern.
13412
13413 * fontset.c (set_default_ascii_font): Delete this unused function.
13414
13415 * frame.c (x_set_font): When ARG is a font-object, check if the
13416 font-object matches with the ASCII font-spec of the frame's
13417 fontset. If not, create a new fontset for the frame. (Bug #3075)
13418
134192009-04-28 Andreas Schwab <schwab@linux-m68k.org>
13420
13421 * fns.c (Flocale_info): Protect vector from GC during decoding.
13422
13423 * process.c (Fstart_process): Protect argv strings from GC during
13424 encoding.
13425
134262009-04-27 Andreas Schwab <schwab@linux-m68k.org>
13427
13428 * sysdep.c: Include <ctype.h>.
13429
134302009-04-27 David Reitter <david.reitter@gmail.com>
13431
13432 * nsfont.m (nsfont_open): Remove unused variable shrink.
13433 Remove commented-out code.
13434
134352009-04-26 Johan Bockgård <bojohan@gnu.org>
13436
13437 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
13438
134392009-04-25 Jason Rumney <jasonr@gnu.org>
13440
13441 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
13442
134432009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13444
13445 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
13446 Swap bytes in short integer if fringe bitmap width > 8.
13447
134482009-04-23 Kenichi Handa <handa@m17n.org>
13449
13450 * xfaces.c (Fx_list_fonts): If a font size is specified in
13451 PATTERN, set it in returned scalable fonts.
13452
134532009-04-22 Chong Yidong <cyd@stupidchicken.com>
13454
13455 * keyboard.c (Fset_input_meta_mode): Doc fix.
13456
13457 * dispnew.c (Fsend_string_to_terminal): Doc fix.
13458
13459 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
13460
13461 * coding.c (Fterminal_coding_system): Doc fix.
13462
13463 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
13464 (Fx_display_pixel_height, Fx_display_planes)
13465 (Fx_display_color_cells, Fx_server_max_request_size)
13466 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
13467 (Fx_display_mm_height, Fx_display_mm_width)
13468 (Fx_display_backing_store, Fx_display_visual_class)
13469 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
13470 Doc fixes, replacing "terminal id" with "terminal object".
13471 (check_x_display_info): Handle terminal objects instead of
13472 terminal ids.
13473
13474 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
13475 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
13476 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
13477 Doc fixes, replacing "terminal id" with "terminal object".
13478
134792009-04-21 Kenichi Handa <handa@m17n.org>
13480
13481 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
13482 (font_score): Check AVGWIDTH too.
13483
13484 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
13485 worst case.
13486 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
13487 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
13488
134892009-04-19 Jason Rumney <jasonr@gnu.org>
13490
13491 The following changes fix Bug#3005 for wide glyphs on each platform,
13492 without reintroducing Bug#1258 for stretch glyphs.
13493
13494 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
13495 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
13496 get_phys_cursor_geometry.
13497
13498 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
13499 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
13500 using get_phys_cursor_geometry.
13501
13502 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
13503 correctly calculated.
13504
135052009-04-19 Jan Djärv <jan.h.d@swipnet.se>
13506
13507 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
13508 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
13509 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
13510 is deprecated.
13511
135122009-04-18 Andreas Schwab <schwab@linux-m68k.org>
13513
13514 * font.c (font_put_frame_data): Use xfree instead of free.
13515
135162009-04-17 Juanma Barranquero <lekktu@gmail.com>
13517
13518 * w32font.c (Qja, Qko): Remove declarations.
13519 (syms_of_w32font): Don't DEFSYM them.
13520
135212009-04-17 Chong Yidong <cyd@stupidchicken.com>
13522
13523 * font.c (Qja, Qko): Move definitions here from ftfont.c.
13524
13525 * font.h (Qja, Qko): Extern them.
13526
13527 * ftfont.c (Qja, Qko): Remove declarations.
13528
13529 * xfont.c (Qja, Qko): Remove declarations.
13530
135312009-04-17 Kenichi Handa <handa@m17n.org>
13532
13533 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
13534 string from a vector to handle Latin-1 characters correctly.
13535
13536 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
13537 entity even if the cache hits.
13538
135392009-04-16 Andreas Schwab <schwab@linux-m68k.org>
13540
13541 * search.c (boyer_moore): Use zero as marker value for a possible
13542 match instead of depending on overflow behavior. (Bug#2844)
13543
13544 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
13545 * lisp.h: Adjust prototypes.
13546
135472009-04-16 Chong Yidong <cyd@stupidchicken.com>
13548
13549 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
13550 change (Bug#3003).
13551
135522009-04-16 Kenichi Handa <handa@m17n.org>
13553
13554 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
13555
13556 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
13557 adstyle.
13558
13559 * ftfont.c (Qja, Qko): Don't make them static.
13560 (enum ftfont_cache_for): New enum.
13561 (fc_charset_table): Undo the previous change.
13562 (ftfont_get_latin1_charset): Delete it.
13563 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
13564 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
13565 non-scarable font, try to get AVERAGE_WIDTH.
13566 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
13567 Change ft_face_cache from a list of a hash-table. Don't check
13568 `ja' and `ko' adstyle here.
13569 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
13570 FTFONT_CACHE_FOR_CHARET.
13571 (ftfont_get_charset): Undo the previous change.
13572 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
13573 (ftfont_close): Likewise.
13574 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
13575
13576 * font.c (font_sort_entites): Change the meaning of the arg
13577 BEST-ONLY. Don't optimize for VEC of lenght 1.
13578 (font_select_entity): Just return the value of font_sort_entites.
13579
13580 * xfaces.c (merge_face_vectors): Reflect font properties in
13581 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
13582 font_clear_prop if a face attribute doesn't change.
13583
13584 * charset.h (charset_ksc5601): Extern it.
13585
13586 * charset.c (charset_ksc5601): New variable.
13587 (Fdefine_charset_internal): Set charset_ksc5601.
13588 (init_charset_once): Initialize charset_ksc5601 to -1.
13589
135902009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
13591
13592 * fileio.c (history_delete_duplicates): Remove unused declaration.
13593
13594 * callint.c (history_delete_duplicates): New declaration.
13595 (Fcall_interactively): Remove command history duplicates when
13596 history_delete_duplicates is true.
13597
135982009-04-14 Eli Zaretskii <eliz@gnu.org>
13599
13600 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
13601
136022009-04-14 Kenichi Handa <handa@m17n.org>
13603
13604 * font.c (Ffont_info): Fix docstring. Fix the second element of
13605 the returned value (bug#2949).
13606
136072009-04-14 Chong Yidong <cyd@stupidchicken.com>
13608
13609 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
13610
136112009-04-14 Kenichi Handa <handa@m17n.org>
13612
13613 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
13614 encoding charset is ascii_compatible.
13615
13616 * charset.c (Fdefine_charset_internal): Make charset
13617 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
13618 code_offset is 0, and covers all ASCII characters.
13619
136202009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
13621
13622 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
13623 (ns_string_to_pasteboard_internal):
13624 * nsmenu.m (process_dialog):
13625 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
13626 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
13627 * lisp.h (Fx_load_color_file): Declare.
13628
136292009-04-13 Kenichi Handa <handa@m17n.org>
13630
13631 * font.c (font_delete_unmatched): Preserve the order of list elements.
13632 (font_select_entity): Suppress the code to optimize for the same
13633 kind of fonts.
13634 (font_load_for_lface): Get a font that supports at least ASCII
13635 characters.
13636
13637 * ftfont.c (Qja, Qko): New variables.
13638 (fc_charset_table): Delete uniquifier data for iso8859-1.
13639 (ftfont_get_latin1_charset): New function.
13640 (get_adstyle_property): New function.
13641 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
13642 bitmap fonts.
13643 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
13644 Delete iso-8859-1 range from the charset of fonts whose adstyle is
13645 `ko' or `ja'.
13646 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
13647 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
13648 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
13649 property.
13650 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
13651 (syms_of_ftfont): DEFSYM Qja and Qko.
13652
136532009-04-09 Kenichi Handa <handa@m17n.org>
13654
13655 * charset.c (map_charset_chars): For a charset of `superset'
13656 method, fix calculation of code range.
13657
13658 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
13659 from the list of extra properties.
13660 (font_clear_prop): Be sure to delete `:name' font property.
13661
136622009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13663
13664 * dispnew.c (redraw_overlapping_rows): Fix detection of
13665 overlapping for topmost and bottommost rows.
13666
13667 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
13668
136692009-04-06 Jason Rumney <jasonr@gnu.org>
13670
13671 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
13672
136732009-04-06 Kenichi Handa <handa@m17n.org>
13674
13675 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
13676
13677 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
13678
136792009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13680
13681 * ftfont.c (ftfont_open): Fix checking of the return value of
13682 FT_Load_Char. Fix setting font->underline_thickness.
13683
136842009-04-04 Chong Yidong <cyd@stupidchicken.com>
13685
13686 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
13687 (Fterminal_parameters, Fterminal_parameter)
13688 (Fset_terminal_parameter): In doc string, refer to terminal
13689 objects rather than terminal ids.
13690
136912009-04-04 Eli Zaretskii <eliz@gnu.org>
13692
13693 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
13694 ret_lim_data. (Bug#2867)
13695
136962009-04-03 Chong Yidong <cyd@stupidchicken.com>
13697
13698 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
13699 so they don't get wider than the window, matching 2006-01-23
13700 change to the partner function in xdisp.c (Bug#2800).
13701
137022009-04-03 Kenichi Handa <handa@m17n.org>
13703
13704 * print.c (print_object): Make each lowest sub_char_table start a
13705 new line (Bug#2866).
13706
137072009-04-02 Kenichi Handa <handa@m17n.org>
13708
13709 * fontset.c (fontset_font): Record no-font when a fontset
13710 explicitly tells not to try another font-specs.
13711
137122009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
13713
13714 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
13715
137162009-03-30 Kenichi Handa <handa@m17n.org>
13717
13718 * fontset.c (fontset_from_font): Specify only registry in a
13719 font-spec for all characters supported by that registry.
13720
13721 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
13722 even if HAVE_M17N_FLT is not defined.
13723
137242009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
13725
13726 * ftfont.c: Conditionalize prototyping and use of
13727 ftfont_variation_glyphs.
13728
137292009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13730
13731 * frame.c (delete_frame): Work around compiler bug.
13732
13733 * editfns.c (general_insert_function): Adjust to insdel.c changes.
13734 * insdel.c (prepare_to_modify_buffer, signal_before_change):
13735 Some more EMACS_INT.
13736 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
13737
13738 * xdisp.c (dump_glyph): Fix typo.
13739
13740 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
13741 (adjust_markers_gap_motion, adjust_markers_for_delete)
13742 (adjust_markers_for_insert, adjust_point)
13743 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
13744 (make_gap, copy_text, count_size_as_multibyte, insert)
13745 (insert_and_inherit, insert_before_markers)
13746 (insert_before_markers_and_inherit, insert_1)
13747 (count_combining_before, count_combining_after, insert_1_both)
13748 (insert_from_string, insert_from_string_before_markers)
13749 (insert_from_string_1, insert_from_gap, insert_from_buffer)
13750 (insert_from_buffer_1, adjust_after_replace)
13751 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
13752 (replace_range_2, del_range, del_range_1, del_range_byte)
13753 (del_range_both, del_range_2, modify_region)
13754 (prepare_to_modify_buffer, signal_before_change)
13755 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
13756 for buffer positions and sizes.
13757 * lisp.h: Adjust prototypes accordingly.
13758
13759 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
13760 (non_regular_inserted, non_regular_nbytes, read_non_regular)
13761 (Finsert_file_contents): Use EMACS_INT for buffer positions.
13762
13763 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
13764
137652009-03-27 Jan Djärv <jan.h.d@swipnet.se>
13766
13767 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
13768 lines and columns so we keep the same pixel height and width.
13769
13770 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
13771 the property _NET_WM_STATE has changed.
13772 (x_handle_net_wm_state): New function to update frame parameter
13773 fullscreen.
13774 (x_term_init): Initialize atoms for _NET_WM_STATE.
13775
13776 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
13777
137782009-03-27 Kevin Ryde <user42@zip.com.au>
13779
13780 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
13781 Gpm_GetEvent as an error that justifies closing the filedescriptor.
13782 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
13783 (Fgpm_mouse_stop): Pass that new parameter.
13784 * termhooks.h (close_gpm): Adjust prototype.
13785
137862009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13787
13788 * lisp.h (Fx_focus_frame): Declare.
13789
13790 * callint.c (Fcall_interactively): For '^' just delegate the work to
13791 handle-shift-selection.
13792 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
13793
137942009-03-24 Chong Yidong <cyd@stupidchicken.com>
13795
13796 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
13797
13798 * data.c (Qinteractive_form): New variable.
13799 (Finteractive_form): Use it.
13800
13801 * eval.c (Fcommandp): Use Qinteractive_form.
13802
138032009-03-24 Jason Rumney <jasonr@gnu.org>
13804
13805 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
13806 Calculate total size precisely. Decode environment variables
13807 before substituting. (Bug#38)
13808
138092009-03-24 Kenichi Handa <handa@m17n.org>
13810
13811 * font.c (find_font_encoding): Return Qnil for unsupported
13812 encoding (Bug#2722).
13813
138142009-03-23 Jan Djärv <jan.h.d@swipnet.se>
13815
13816 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
13817 that gdpy is set.
13818
138192009-03-22 Alan Mackenzie <acm@muc.de>
13820
13821 * callint.c (Finteractive): Clarify the doc string - even
13822 promptless elements need \n separators.
13823
138242009-03-22 Jason Rumney <jasonr@gnu.org>
13825
13826 * w32term.c (syms_of_w32term): Doc fix for
13827 x-use-underline-position-properties.
13828
138292009-03-21 Eli Zaretskii <eliz@gnu.org>
13830
13831 * w32.c (getpwuid): Change argument type to unsigned.
13832 (struct w32_id): Change type of `rid' member to unsigned.
13833 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
13834 argument ID to unsigned. All callers changed.
13835 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
13836
138372009-03-20 Eli Zaretskii <eliz@gnu.org>
13838
13839 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
13840 negative, produce a float value.
13841
13842 * dired.c (make_uid, make_gid): New functions.
13843 (Ffile_attributes): Use them to avoid negative UID and GID.
13844
138452009-03-20 Juanma Barranquero <lekktu@gmail.com>
13846
13847 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
13848 (syms_of_keyboard) <command-hook-internal, input-method-function>:
13849 Fix typos in docstrings.
13850
138512009-03-19 Kenichi Handa <handa@m17n.org>
13852
13853 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
13854 changed, use font_load_for_lface to get a new font object.
13855 Call free_realized_fontset after handling ASCII font change.
13856
13857 * frame.c (x_set_font): Handle the case that ARG is a cons.
13858
138592009-03-19 Glenn Morris <rgm@gnu.org>
13860
13861 * fileio.c (Fsubstitute_in_file_name): Doc fix.
13862
138632009-03-19 Chong Yidong <cyd@stupidchicken.com>
13864
13865 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
13866
138672009-03-19 Kenichi Handa <handa@m17n.org>
13868
13869 * charset.c (load_charset_map_from_file): When a mapfile can't be
13870 loaded, signal an error.
13871
138722009-03-18 Eli Zaretskii <eliz@gnu.org>
13873
13874 * dired.c (Ffile_attributes): Make sure UID and GID are always
13875 positive, even if the value is too large for a positive EMACS_INT.
13876 Doc fix.
13877
13878 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
13879
138802009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13881
13882 * xmenu.c (xdialog_show): Move Fredisplay call ...
13883 (Fx_popup_dialog): ... here.
13884
138852009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
13886
13887 * dired.c (file_name_completion): Disable the first optimization just
13888 installed, since it is not implemented correctly.
13889
138902009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
13891
13892 * dired.c (file_name_completion): Check completion-ignored-extensions
13893 only if the entry can affect bestmatch.
13894 Stop the search early, as Ftry_completion already does.
13895
138962009-03-17 Chong Yidong <cyd@stupidchicken.com>
13897
13898 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
13899
139002009-03-15 Chong Yidong <cyd@stupidchicken.com>
13901
13902 * keyboard.c (parse_menu_item): Don't display remappings as menu
13903 equivalent bindings (Bug#788).
13904
139052009-03-15 Jason Rumney <jasonr@gnu.org>
13906
13907 * w32term.h (WM_EMACS_PAINT): New message.
13908 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
13909 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
13910 before passing to lisp thread. (Bug#950)
13911
139122009-03-14 David Reitter <david.reitter@gmail.com>
13913
13914 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
13915 variable as it was never reset.
13916 (ns_term_init): Remove initialization of Lisp-settable defaults
13917 and ns_expand_space.
13918 (-setPanelFromDefaultValues): Remove ns_expand_space.
13919 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
13920 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
13921 i.e. no additional spacing, similar to Carbon port.
13922
13923 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
13924 * nsfns.m (ns-popup-prefs-panel): Remove.
13925
139262009-03-14 Jan Djärv <jan.h.d@swipnet.se>
13927
13928 * sound.c (alsa_configure): Remove call to deprecated
13929 snd_pcm_sw_params_set_xfer_align.
13930
139312009-03-14 Stephen Berman <stephen.berman@gmx.net>
13932
13933 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
13934 after clicking in a detached tool bar.
13935 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
13936
139372009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
13938
13939 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
13940 int/Lisp_Object mixup).
13941
139422009-03-13 Kenichi Handa <handa@m17n.org>
13943
13944 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
13945 Handle NAME nil and t correctly. Callers changed.
13946 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
13947 (set_fontset_font): Change ARG to a vector. Handle range_list in
13948 ARG correctly.
13949 (Fset_fontset_font): Fix the case that TARGET is both a script
13950 name and charset name. Adjust the arg to set_fontset_font for
13951 the above change.
13952 (fontset_from_font): Fix previous change.
13953 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
13954 entry. If FONTSET is the default fontset, don't set the extra
13955 slot of the returning char-table.
13956
139572009-03-12 Juanma Barranquero <lekktu@gmail.com>
13958
13959 * nsfns.m (Fx_close_connection): Doc fix.
13960 (Fns_do_applescript): Reflow docstring.
13961 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
13962 (Fx_display_pixel_width, Fx_display_pixel_height)
13963 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
13964 Fix typos in docstrings.
13965 (Fns_set_alpha): Fix typos in error messages.
13966
139672009-03-12 David Reitter <david.reitter@gmail.com>
13968
13969 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
13970 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
13971 were used for such events.
13972
13973 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
13974 (toggleToolbar, performDragOperation, runHelp): Use it.
13975
13976 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
13977 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
13978
139792009-03-11 Kenichi Handa <handa@m17n.org>
13980
13981 * font.h (font_open_by_spec): Extern it.
13982
13983 * font.c (font_open_by_spec): New function.
13984 (font_open_by_name): Use font_open_by_spec.
13985
13986 * frame.c (x_set_font): When ARG is a font-object, don't alter the
13987 fontset of the frame.
13988
13989 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
13990 modify the default font of frames that use this fontset.
13991 (num_auto_fontsets): New variable.
13992 (fontset_from_font): Use num_auto_fontsets to decide a fontset
13993 name. Be sure to set FONTSET_ASCII to the correct font name.
13994 (update_auto_fontset_alist): New function.
13995
139962009-03-11 Juanma Barranquero <lekktu@gmail.com>
13997
13998 * makefile.w32-in: Update dependencies.
13999
140002009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14001
14002 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
14003
140042009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14005
14006 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
14007
140082009-03-10 Chong Yidong <cyd@stupidchicken.com>
14009
14010 * lread.c (Feval_buffer): Doc fix.
14011
140122009-03-09 Kenichi Handa <handa@m17n.org>
14013
14014 * charset.c (Qfile_name_handler_alist): Extern it.
14015 (load_charset_map_from_file): Temporarily bind
14016 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
14017
140182009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
14019
14020 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
14021 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
14022
140232009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14024
14025 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
14026 (x_set_window_size): Change back to calculated method of setting
14027 toolbar height under Cocoa. (Bug#2546)
14028 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
14029 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
14030
14031 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
14032
14033 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
14034 accelerator in parens under GNUstep.
14035
140362009-03-06 Kenichi Handa <handa@m17n.org>
14037
14038 These changes are to detect incorrect composition sequence without
14039 looking ahead the source. (Bug#2370)
14040
14041 * coding.h: Include "composite.h".
14042 (enum compisition_state): New enum.
14043 (struct compisition_status): New struct.
14044 (struct iso_2022_spec): New member cmp_status.
14045 (struct emacs_mule_spec): New struct.
14046 (struct coding_system): New members ctext_extended_segment_len and
14047 embedded_utf_8. Change the union member
14048 spec.emacs_mule_full_support to spec.emacs_mule.
14049
14050 * coding.c (CODING_ISO_CMP_STATUS): New macro.
14051 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
14052 (MAX_ANNOTATION_LENGTH): Define to 5.
14053 (ADD_COMPOSITION_DATA): New arg nbytes.
14054 (emacs_mule_char): New arg cmp_status.
14055 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
14056 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
14057 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
14058 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
14059 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
14060 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
14061 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
14062 (EMACS_MULE_COMPOSITION_END): New macro.
14063 (emacs_mule_finish_composition): New function.
14064 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
14065 (decode_coding_emacs_mule): Avoid long looking ahead while
14066 handling composition.
14067 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
14068 (ENCODE_COMPOSITION_RULE): New macro.
14069 (finish_composition): New function.
14070 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
14071 (DECODE_COMPOSITION_START): New implementation.
14072 (DECODE_COMPOSITION_END): Likewise.
14073 (STORE_COMPOSITION_RULE): New macro.
14074 (decode_coding_iso_2022): Avoid long looking ahead while handling
14075 composition, CTEXT extended segment, and embedded UTF-8.
14076 (setup_coding_system): For a coding of type iso-2022, reset
14077 CODING_ISO_EXTSEGMENT_LEN (coding) and
14078 CODING_ISO_EMBEDDED_UTF_8 (coding).
14079 (get_translation): Delete arguments last_block, from_nchars,
14080 to_nchars. Callers changed.
14081 (produce_chars): Don't modify charbuf. Adjusted for the change of
14082 get_translation.
14083 (produce_composition): Adjust for the new annotation sequence.
14084 (handle_composition_annotation): Likewise.
14085 (consume_chars): Adjust for the change of get_translation.
14086
140872009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
14088
14089 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
14090
140912009-03-05 Kenichi Handa <handa@m17n.org>
14092
14093 * font.c (font_select_entity): New function.
14094 (font_find_for_lface): Use font_select_entity to select a font.
14095
14096 * fontset.c (fontset_find_font): If a font found without
14097 restricting to the characters C doesn't support C, try to find a
14098 font with C restriction.
14099
141002009-03-04 Nikolaj Schumacher <me@nschum.de>
14101
14102 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
14103
141042009-03-04 Jason Rumney <jasonr@gnu.org>
14105
14106 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
14107 characters that have already been read. (Bug#2569)
14108
14109 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
14110 Log an error message if check_image_size failed.
14111 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
14112 (gs_load): Mention max-image-size in size error message. (Bug#2560)
14113
141142009-03-02 Eli Zaretskii <eliz@gnu.org>
14115
14116 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
14117 when decoding process output.
14118
141192009-03-01 Richard M Stallman <rms@gnu.org>
14120
14121 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
14122
14123 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
14124
141252009-02-28 Eli Zaretskii <eliz@gnu.org>
14126
14127 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
14128 (decode_coding_emacs_mule, decode_coding_iso_2022)
14129 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14130 (decode_coding_raw_text, decode_coding_charset)
14131 (setup_coding_system, decode_eol, decode_coding, consume_chars):
14132 Honor inhibit-eol-conversion. (Bug #2186)
14133
141342009-02-28 Jason Rumney <jasonr@gnu.org>
14135
14136 * coding.c (detect_coding_charset): If not checking latin extra,
14137 fail on characters between 0x80 and 0xA0. (Bug#2354)
14138
141392009-02-28 Eli Zaretskii <eliz@gnu.org>
14140
14141 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
14142 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
14143
141442009-02-27 Glenn Morris <rgm@gnu.org>
14145
14146 * callint.c (Finteractive): Doc fix.
14147
141482009-02-27 Kenichi Handa <handa@m17n.org>
14149
14150 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
14151
141522009-02-27 Chong Yidong <cyd@stupidchicken.com>
14153
14154 * font.c (font_style_to_value): Set value for unknown symbols to
14155 100 instead of 255.
14156 (weight_table, slant_table, width_table): Treat "unspecified" as
14157 the default value.
14158
141592009-02-26 Juanma Barranquero <lekktu@gmail.com>
14160
14161 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
14162
141632009-02-25 Juanma Barranquero <lekktu@gmail.com>
14164
14165 * lread.c (Fload): Stop checking Vloads_in_progress and signal
14166 error as soon as a recursive load is detected.
14167
141682009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14169
14170 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
14171 before caching.
14172
141732009-02-24 Kenichi Handa <handa@m17n.org>
14174
14175 * fontset.c (fontset_find_font): Fix the condition for checking
14176 unavailable font.
14177
141782009-02-24 Glenn Morris <rgm@gnu.org>
14179
14180 * xfaces.c (Finternal_set_font_selection_order): Remove leading
14181 whitespace that confuses documentation.
14182
141832009-02-23 Miles Bader <miles@gnu.org>
14184
14185 * process.c (Flist_system_processes, Fprocess_attributes)
14186 (syms_of_process): Rename `system-process-attributes' to
14187 `process-attributes'.
14188
141892009-02-22 Andreas Schwab <schwab@linux-m68k.org>
14190
14191 * coding.h (struct coding_system): Make safe_charsets a pointer to
14192 unsigned char.
14193 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
14194 being 255.
14195 (SAFE_CHARSET_P): Likewise.
14196 (setup_iso_safe_charsets): Properly setup safe_charsets.
14197 (Fdefine_coding_system_internal): Likewise.
14198 (setup_coding_system): Likewise. Remove unneeded casts.
14199 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
14200 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
14201 Remove unneeded casts.
14202
14203 * insdel.c (del_range_2): Don't modify gap contents when called
14204 from decode_coding_object. (Bug#1809)
14205
142062009-02-21 Chong Yidong <cyd@stupidchicken.com>
14207
14208 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
14209 Qfont_object.
14210 (Ftype_of): Recognize font objects.
14211
14212 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
14213
14214 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
14215 Definitions moved to data.c.
14216
142172009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14218
14219 * nsterm.m (x_make_frame_invisible): Unset async_visible,
14220 async_iconified. Based on a patch by Christian Lynbech
14221 <christian.lynbech@tieto.com>.
14222 (EmacsView-windowDidMiniaturize:): Unset async_visible.
14223
142242009-02-20 Glenn Morris <rgm@gnu.org>
14225
14226 * syntax.c (Fskip_chars_forward): Fix doc typo.
14227
142282009-02-20 Chong Yidong <cyd@stupidchicken.com>
14229
14230 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
14231
142322009-02-19 Chong Yidong <cyd@stupidchicken.com>
14233
14234 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
14235
142362009-02-19 Kenichi Handa <handa@m17n.org>
14237
14238 * coding.c (detect_coding): Preserve coding->mode.
14239 Don't overflow coding->carryover. (Bug#2370)
14240
142412009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
14242
14243 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
14244
142452009-02-18 Kenichi Handa <handa@m17n.org>
14246
14247 * font.c (font_check_otf_features): Fix handling of `nil' element.
14248 (Ffont_spec): Describe :lang and :otf in the docstring.
14249
142502009-02-16 Andreas Schwab <schwab@suse.de>
14251
14252 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
14253 string.
14254
142552009-02-16 Kenichi Handa <handa@m17n.org>
14256
14257 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
14258 (Bug#1723)
14259
142602009-02-14 Chong Yidong <cyd@stupidchicken.com>
14261
14262 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
14263
14264 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
14265 (handle_line_prefix): Suppress wrapping of wrap prefixes.
14266
142672009-02-14 Eli Zaretskii <eliz@gnu.org>
14268
14269 * msdos.c (MAX_SCREEN_BUF): New macro.
14270 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
14271 Encode the entire run of glyphs sharing the same face, instead of
14272 doing that one glyph at a time (fixes a bug with displaying
14273 double-size characters).
14274
142752009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
14276
14277 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
14278
14279 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
14280 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
14281 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
14282
14283 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
14284 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
14285
142862009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14287
14288 * keyboard.c (adjust_point_for_property): Allow stopping between two
14289 invisible areas.
14290
142912009-02-12 Jason Rumney <jasonr@gnu.org>
14292
14293 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
14294 (add_font_entity_to_list): Call check_face_name even when family
14295 is unspecified.
14296
14297 * w32term.c (x_display_pixel_height, x_display_pixel_width):
14298 Release DC when finished. Use NULL window to refer to desktop.
14299 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
14300
14301 * w32font.c (add_font_entity_to_list): Fix check for substituted
14302 raster fonts. (Bug#2219)
14303
143042009-02-12 Kenichi Handa <handa@m17n.org>
14305
14306 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
14307 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
14308 (autocmp_chars): Use fast_looking_at. Don't compose more
14309 characters than MAX_COMPOSITION_COMPONENTS.
14310 (find_automatic_composition): While looking forward and backward,
14311 check static composition. Fix where to stop looking forward.
14312 (composition_adjust_point): Fix checking of static composition.
14313 (Fcomposition_get_gstring): Pay attention to
14314 MAX_COMPOSITION_COMPONENTS.
14315
14316 * lisp.h (fast_looking_at): Extern it.
14317
14318 * search.c (fast_looking_at): New function.
14319
14320 * term.c (encode_terminal_code): Adjust for the change of
14321 <struct glyph>.u.cmp.to.
14322 (append_composite_glyph): Likewise.
14323
14324 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
14325 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
14326 composition.
14327 (append_composite_glyph): Adjust for the change of
14328 <strcut glyph>.u.cmp.to.
14329
143302009-02-11 Juanma Barranquero <lekktu@gmail.com>
14331
14332 * casetab.c (init_casetab_once):
14333 * coding.c (ALLOC_CONVERSION_WORK_AREA):
14334 * font.c (font_update_lface):
14335 * fontset.c (Fnew_fontset):
14336 * ftfont.c (ftfont_drive_otf):
14337 * xfont.c (xfont_open):
14338 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
14339
143402009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14341
14342 * fileio.c (Fwrite_region): !NILP -> CONSP.
14343
143442009-02-10 Andreas Schwab <schwab@suse.de>
14345
14346 * process.c (send_process): Properly relocate pointer into data
14347 when using encoded data. (Bug#2272)
14348
143492009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
14350
14351 * coding.c (detect_coding_charset): Fix previous change.
14352
143532009-02-08 Jason Rumney <jasonr@gnu.org>
14354
14355 * w32fns.c (w32_hide_hourglass): Handle case where frame
14356 disappeared while hourglass was displayed. (Bug #2193)
14357
143582009-02-07 Andreas Schwab <schwab@suse.de>
14359
14360 * unexelf.c (unexec): Fix error message.
14361
143622009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
14363
14364 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
14365 when modal window is active. (Bug #2152)
14366 (applicationShouldTerminate:): Remove now-unneeded while loop
14367 around NSRunAlertPanel.
14368
14369 * nsmenu.m (popupSession): New file-global variable.
14370 (pop_down_menu): End the popupSession before closing dialog.
14371 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
14372 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
14373 don't query NSApp for events (just sleep instead).
14374
143752009-02-07 Eli Zaretskii <eliz@gnu.org>
14376
14377 * coding.c (syms_of_coding) <translation-table-for-input>:
14378 Modify doc string to discourage use for character code unification.
14379
143802009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14381
14382 * atimer.c (run_timers): Update pending_atimers.
14383
143842009-02-06 Chong Yidong <cyd@stupidchicken.com>
14385
14386 * image.c (svg_load_image): Fix last change.
14387
14388 * xfns.c (Fx_create_frame): Signal an error if no font is
14389 found (Bug#2147).
14390
143912009-02-05 Juanma Barranquero <lekktu@gmail.com>
14392
14393 * character.c (syms_of_character) <script-representative-chars>:
14394 Fix typo in docstring.
14395
143962009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
14397
14398 * nsmenu.m (pop_down_menu): New function.
14399 (ns_popup_dialog): Call it on unwind.
14400 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
14401 call timer_check() (Bug#2154).
14402 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
14403 handling_signal is set.
14404 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
14405
14406 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
14407
14408 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
14409
14410 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
14411
14412 * keyboard.c (poll_for_input_1, handle_async_input):
14413 Set handling_signal under HAVE_NS.
14414
144152009-02-04 Glenn Morris <rgm@gnu.org>
14416
14417 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
14418
144192009-02-04 Kenichi Handa <handa@m17n.org>
14420
14421 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
14422
14423 * charset.c (Fchar_charset): New optional arg restriction.
14424
14425 * coding.h (coding_system_charset_list): Extern it.
14426
14427 * coding.c (coding_system_charset_list): New function.
14428
14429 * composite.c: Include coding.h and termhooks.h.
14430 (composition_gstring_p): Fix for the terminal case.
14431 (composition_gstring_width): Likewise.
14432 (fill_gstring_body): Likewise.
14433 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
14434 the frame.
14435 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
14436 is within a composition.
14437 (Fcomposition_get_gstring): Fix the terminal case.
14438
14439 * term.c (encode_terminal_code): Fix handling of composition.
14440 (produce_composite_glyph): For static composition, get pixel_width
14441 from struct composition.
14442
144432009-02-02 Andreas Schwab <schwab@suse.de>
14444
14445 * unexelf.c (unexec): Handle unaligned bss offset.
14446
144472009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14448
14449 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
14450 XT,w32read_socket changes to ns_read_socket.
14451
14452 * keyboard.c (handle_interrupt): Don't call
14453 quit_throw_to_read_char() under NS.
14454
14455 * blockinput.h: Remove NS-specific code.
14456
144572009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
14458
14459 * dispnew.c (window_change_signal): Don't try to get the size of a
14460 suspended tty frame.
14461 * term.c (Fresume_tty): Resize if the size has changed while the
14462 tty was suspended.
14463
14464 * alloc.c (mark_stack): Properly conditionalize previous change.
14465
144662009-01-30 Juanma Barranquero <lekktu@gmail.com>
14467
14468 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
14469 * w32term.c (w32_read_socket) [SYNC_INPUT]:
14470 Remove; this code is not used on Windows.
14471
144722009-01-30 Eli Zaretskii <eliz@gnu.org>
14473
14474 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
14475 EOLs that also has stray ^M characters.
14476
144772009-01-30 Juanma Barranquero <lekktu@gmail.com>
14478
14479 * atimer.c (run_timers, alarm_signal_handler):
14480 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
14481 * w32inevt.c (w32_console_read_socket):
14482 * w32term.c (w32_read_socket):
14483 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
14484
144852009-01-30 Chong Yidong <cyd@stupidchicken.com>
14486
14487 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
14488 Initialize it as a relative filename pattern.
14489 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
14490 (Fcall_process_region): Simplify temp file creation using
14491 temporary-file-directory.
14492
144932009-01-29 Eli Zaretskii <eliz@gnu.org>
14494
14495 * msdos.c: Rename pending_signals to msdos_pending_signals.
14496 (sig_suspender, sigprocmask): Adjust.
14497
144982009-01-29 Chong Yidong <cyd@stupidchicken.com>
14499
14500 * keyboard.c (pending_signals): New var.
14501 (poll_for_input, input_available_signal, init_keyboard): Set it.
14502 (process_pending_signals): New function.
14503
14504 * lisp.h (QUIT): Check pending_signals instead of
14505 interrupt_input_pending. Use process_pending_signals.
14506
14507 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
14508
14509 * process.c (wait_reading_process_output): Use process_pending_signals.
14510
14511 * sysdep.c (emacs_write): Use process_pending_signals.
14512
14513 * xterm.c (XTread_socket): Update pending_signals.
14514
14515 * w32term.c (w32_read_socket): Update pending_signals.
14516
14517 * w32inevt.c (w32_console_read_socket): Update pending_signals.
14518
145192009-01-29 Kenichi Handa <handa@m17n.org>
14520
14521 * xftfont.c (xftfont_has_char): New function.
14522 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
14523
145242009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14525
14526 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
14527 under GNUstep.
14528 (ns_query_color): New declaration.
14529
14530 * nsterm.m (ns_confirm_quit): New variable.
14531 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
14532 (EmacsApp-applicationShouldTerminate:): Use it.
14533 (EmacsPrefsController): Let user set it.
14534 (ns_query_color): New function.
14535 (ns_defined_color): Use it.
14536 (ns_initialize): Drop.
14537 (ns_term_init): Add two lines from ns_initialize(), and set
14538 input_interrupt_mode to nil.
14539
14540 * image.c (svg_load_image): Don't right-shift background RGB when
14541 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
14542
145432009-01-28 Kenichi Handa <handa@m17n.org>
14544
14545 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14546 (fontset_get_font_group): Remember that no font-group is specified
14547 for C.
14548
145492009-01-27 Chong Yidong <cyd@stupidchicken.com>
14550
14551 * fns.c (concat): Check for string overflow (bug#1787).
14552
14553 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
14554 Quadruple undo limits (bug#1501).
14555
145562009-01-27 Kenichi Handa <handa@m17n.org>
14557
14558 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
14559 directly use GT_Get_Char_index.
14560
14561 * xftfont.c (struct xftfont_info): New member `index'.
14562
14563 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14564 (Ffontset_font): Adjust for the change of fontset entry.
14565
145662009-01-26 Kenichi Handa <handa@m17n.org>
14567
14568 * fontset.c (fontset_find_font): Fix handling of non-cons return
14569 value of fontset_get_font_group.
14570 (fontset_font): Revert last change.
14571
145722009-01-26 Jason Rumney <jasonr@gnu.org>
14573
14574 * w32font.c (w32font_list_internal): Return quickly if registry is
14575 unknown. Simplify final return.
14576 (add_font_entity_to_list): Break complex logic down into more
14577 manageable chunks. Move unknown registry check to
14578 w32font_list_internal.
14579
145802009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
14581
14582 Changes to remove Feval calls from GUI under NS.
14583
14584 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
14585 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
14586 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
14587
14588 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
14589 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
14590 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
14591 instead of NON_ASCII_KEYSTROKE_EVENT.
14592 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
14593 (EmacsApp-applicationShouldTerminate:): Query user.
14594 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
14595 instead of Feval.
14596
14597 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
14598
14599 * keyboard.c (kbd_buffer_get_event): Check for it.
14600 (keys_of_keyboard): Define lispy keys for
14601 ns-put/unput-working-text.
14602
14603 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
14604 versions.
14605 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
14606
146072009-01-25 Chong Yidong <cyd@stupidchicken.com>
14608
14609 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
14610 setting current_buffer directly. (Bug#2044)
14611
146122009-01-24 Chong Yidong <cyd@stupidchicken.com>
14613
14614 * fontset.c (fontset_font): If we know there is no font, don't do
14615 any work. (Bug#1952, bug#1990).
14616
14617 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
14618
146192009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
14620
14621 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
14622 (ns_no_defaults): New declaration.
14623 (main): Use it.
14624
14625 * nsterm.h (ns_no_defaults): New declaration.
14626
14627 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
14628
14629 * nsterm.m (ns_no_defaults): New variable.
14630 (ns_initialize): Don't read defaults when ns_no_defaults.
14631 (EmacsView-readSelectionFromPasteboard:)
14632 (writeSelectionToPasteboard:types:): New stubbed-out methods for
14633 NSServicesRequests protocol. (Bug#1435)
14634 (ns_dumpglyphs_stretch): New function.
14635 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
14636 of 2008-11-15 to other terms. (Bug#615)
14637
14638 * nsimage.m (setPixmapData:): Set to ignore image DPI.
14639
146402009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
14641
14642 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
14643 call for Sparc64.
14644
146452009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14646
14647 * nsfns.m:
14648 * nsgui.h:
14649 * nsmenu.m:
14650 * nsselect.m:
14651 * nsterm.h:
14652 * nsterm.m: Remove '23' comments that indicated code added during
14653 update from emacs-20 -> emacs-23.
14654
146552009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14656
14657 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
14658 ns_alternate_modifier. (Bug#1217)
14659
14660 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
14661 Display all shortcuts, including those w/o super modifier.
14662
14663 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
14664
146652009-01-22 Chong Yidong <cyd@stupidchicken.com>
14666
14667 * fileio.c (Vwrite_region_post_annotation_function)
14668 (Vwrite_region_annotation_buffers): New vars.
14669 (build_annotations_unwind): Just reset
14670 Vwrite_region_annotation_buffers.
14671 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
14672 Call write-region-post-annotation-function.
14673 (build_annotations): Add to Vwrite_region_annotation_buffers if
14674 buffer changes.
14675
146762009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
14677
14678 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
14679 Tiger.
14680 * nsfns.m (ns_do_applescript):
14681 Conditionalize typeUTF16ExternalRepresentation on Tiger.
14682
146832009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
14684
14685 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
14686
146872009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
14688
14689 * nsmenu.m (NSMENUPROFILE): Change #if style.
14690
14691 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
14692
14693 * nsterm.m (x_set_frame_alpha): Add prototype.
14694 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
14695 handle Ctrl-tab. (Bug#1841)
14696 (ns_get_color): Use unsigned long long for scanned hex string value.
14697 (ns_term_shutdown): Abort on non SIGTERM signals.
14698 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
14699 (EmacsPrefsController-setPanelFromDefaultValues): New function.
14700 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
14701 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
14702 (ns_defined_color): Fix settings of the XColor variable fields:
14703 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
14704
14705 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
14706 DPI. (Bug#1316)
14707 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
14708 values in onTiger section.
14709
147102009-01-19 Chong Yidong <cyd@stupidchicken.com>
14711
14712 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
14713 Check return value of font_spec_from_name.
14714 (Fx_list_fonts): Doc fix. (Bug#1951)
14715
14716 * font.c (font_spec_from_name): Return Qnil if font name could not
14717 be parsed.
14718 (font_parse_name): Treat a `?' character as part of an XLFD.
14719
14720 * fns.c (Fsubstring): Doc fix.
14721
147222009-01-19 Kenichi Handa <handa@m17n.org>
14723
14724 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
14725 (ftfont_list): Likewise.
14726
147272009-01-18 Juanma Barranquero <lekktu@gmail.com>
14728
14729 * dbusbind.c (Fdbus_register_signal):
14730 * process.c (conv_sockaddr_to_lisp):
14731 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
14732
14733 * callproc.c (Fgetenv_internal): Doc fix.
14734
147352009-01-16 Chong Yidong <cyd@stupidchicken.com>
14736
14737 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
14738 it is not even used.
14739
147402009-01-16 Glenn Morris <rgm@gnu.org>
14741
14742 * font.c (Ffont_variation_glyphs): Silence compiler.
14743
147442009-01-15 Juanma Barranquero <lekktu@gmail.com>
14745
14746 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
14747 Reported by David Robinow <drobinow@gmail.com>.
14748
147492009-01-15 Kenichi Handa <handa@m17n.org>
14750
14751 * coding.c (detect_coding_system): Fix handling of null_byte_found.
14752
147532009-01-14 Jason Rumney <jasonr@gnu.org>
14754
14755 * frame.c (x_set_font): Always store a font to the font parameter,
14756 never a fontset. (Bug#1562)
14757
147582009-01-14 Kenichi Handa <handa@m17n.org>
14759
14760 * coding.c (TWO_MORE_BYTES): New macro.
14761 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
14762
147632009-01-13 Chong Yidong <cyd@stupidchicken.com>
14764
14765 * font.c (font_clear_prop): If clearing the family, clear the font
14766 width index too.
14767
14768 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
14769
147702009-01-12 Juanma Barranquero <lekktu@gmail.com>
14771
14772 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
14773 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
14774 functions, use sizeof.
14775
147762009-01-12 Martin Rudalics <rudalics@gmx.at>
14777
14778 * keyboard.c (read_char): Fix case where last_nonmenu_event
14779 returned a bad value with submenus. (Bug#447)
14780
147812009-01-12 Chong Yidong <cyd@stupidchicken.com>
14782
14783 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
14784 family, clear the font width index too.
14785
147862009-01-11 Jason Rumney <jasonr@gnu.org>
14787
14788 * keyboard.c (cmd_error_internal): Exit when errors occur before
14789 frame creation and not in daemon mode. (Bug#1836)
14790
147912009-01-10 Chong Yidong <cyd@stupidchicken.com>
14792
14793 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
14794 of a display vector, backtrack.
14795 (try_window_reusing_current_matrix): Check glyph type before
14796 referencing charpos member.
14797
147982009-01-10 Eli Zaretskii <eliz@gnu.org>
14799
14800 Fix Bug #876:
14801
14802 * coding.c (inhibit_null_byte_detection): New variable.
14803 (detect_coding, detect_coding_system): Don't pay attention to null
14804 bytes if inhibit_null_byte_detection is non-zero.
14805 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
14806 <inhibit-iso-escape-detection>: Doc fix.
14807
148082009-01-09 Jason Rumney <jasonr@gnu.org>
14809
14810 * w32font.c (add_font_entity_to_list): Don't report unknown
14811 Windows charset as any unrecognized registry. (Bug#1548)
14812 Only report Unicode Plane 2 fonts as unicode-sip.
14813
148142009-01-09 Chong Yidong <cyd@stupidchicken.com>
14815
14816 * xfaces.c (Fx_font_family_list): Delete function.
14817 Move compatibility version to faces.el.
14818
14819 * font.c (Ffont_family_list): Return a list of strings, not symbols.
14820
148212009-01-09 Martin Rudalics <rudalics@gmx.at>
14822
14823 * frame.c (x_set_frame_parameters): Remember requested value for
14824 fullscreen before it's reset by the parameter handler.
14825
148262009-01-09 Glenn Morris <rgm@gnu.org>
14827
14828 * keyboard.c (last_command_char): For clarity, rename to...
14829 (last_command_event): ... and update all users.
14830 (last_input_char): For clarity, rename to...
14831 (last_input_event): ... and update all users.
14832 (last-command-char, last-input-char): Move to subr.el as aliases.
14833 * cmds.c, commands.h: Update for last_command_char rename.
14834
148352009-01-08 Chong Yidong <cyd@stupidchicken.com>
14836
14837 * font.c (font_open_for_lface): Handle unspecified height attribute.
14838
148392009-01-08 Jason Rumney <jasonr@gnu.org>
14840
14841 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
14842 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
14843 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
14844 Don't declare.
14845 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
14846 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
14847
148482009-01-07 Kenichi Handa <handa@m17n.org>
14849
14850 * fileio.c (Finsert_file_contents): In the case of replace,
14851 remember the coding system used for decoding in
14852 coding_system (Bug#1039).
14853
14854 * coding.c (decode_coding_utf_8): Check byte_after_cr before
14855 breaking the loop. (Bug#870)
14856 (decode_coding_utf_16, decode_coding_emacs_mule)
14857 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14858 (decode_coding_charset): Likewise.
14859
148602009-01-05 Martin Rudalics <rudalics@gmx.at>
14861
14862 * frame.c (x_set_frame_parameters): Make sure height (width) get
14863 applied when fullwidth (fullheight) is set. (Bug#1522)
14864
148652009-01-04 Juanma Barranquero <lekktu@gmail.com>
14866
14867 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
14868 (utc_base): Declare as ULONGLONG, not long double.
14869 (convert_time_raw): Delete.
14870 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
14871 (initialize_utc_base): New function.
14872 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
14873 (convert_from_time_t): Use initialize_utc_base; compute result with
14874 64-bit arithmetic.
14875 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
14876
148772009-01-03 Eli Zaretskii <eliz@gnu.org>
14878
14879 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
14880 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
14881 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
14882 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
14883 [!subprocesses]: Define.
14884 (syms_of_process) [!subprocesses]: Intern and staticpro them.
14885 (Flist_system_processes, Fsystem_process_attributes)
14886 [!subprocesses]: Call list_system_processes and
14887 system_process_attributes instead of returning Qnil.
14888
14889 * dosfns.c (system_process_attributes, list_system_processes):
14890 New functions.
14891
14892 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
14893
14894 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
14895 Don't use the default (no-op) implementation.
14896
148972009-01-03 Jason Rumney <jasonr@gnu.org>
14898
14899 * keyboard.c (parse_modifiers_uncached): Wheel events are
14900 clicks (bug#687).
14901
14902 * w32term.c (x_query_colors, x_query_color): New functions.
14903
14904 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
14905 (svg_load_image): Cast returned pointers from dynamically loaded
14906 functions. Eliminate W32 specific code.
14907
149082009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
14909
14910 * nsfns.m (x_set_foreground_color, x_set_background_color)
14911 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
14912 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
14913 x_ prefix instead of ns_. Update references.
14914 (syms_of_nsfns): Add a FIXME comment.
14915
14916 * nsterm.m (x_set_cursor_type): New prototype.
14917 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
14918
14919 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
14920 for Solaris instead of incorrectly providing Qutime and Qcutime.
14921
149222009-01-02 Eli Zaretskii <eliz@gnu.org>
14923
14924 * w32.c (process_times): Compute sum of utime and stime.
14925 (system_process_attributes): Add Qtime to the alist.
14926
14927 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
14928 and add them to the alist.
14929
14930 * process.c (top level) <Qtime, Qctime>: New variables.
14931 (syms_of_process): staticpro them.
14932 (Fsystem_process_attributes): Add their documentation to the doc
14933 string.
14934
14935 * process.h: Declare Qtime and Qctime.
14936
149372009-01-02 Jason Rumney <jasonr@gnu.org>
14938
14939 * image.c (Qgobject): New symbol.
14940 (syms_of_image): Initialize it.
14941 (init_svg_functions): Load some functions from gobject library.
14942
149432009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
14944
14945 * frame.c (make_terminal_frame): Remove redundant code and useless
14946 block.
14947
149482009-01-01 Andreas Schwab <schwab@suse.de>
14949
14950 * process.c (conv_sockaddr_to_lisp): Add workaround for
14951 getsockname bug on BSD.
14952
149532009-01-01 Chong Yidong <cyd@stupidchicken.com>
14954
14955 * xfns.c (x_create_tip_frame): Set border width of the X window.
14956
14957 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
14958
149592009-01-01 Jason Rumney <jasonr@gnu.org>
14960
14961 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
14962 Don't block input, as per earlier xterm.c changes.
14963
149642008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
14965
14966 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
14967 (ns_appkit_version_int): New function.
14968 (x-server-version): Use ns_appkit_version_int and follow 21+
14969 convention of returning 3 integers.
14970
149712008-12-30 Kenichi Handa <handa@m17n.org>
14972
14973 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
14974 (CHAR_SURROGATE_PAIR_P): New macro.
14975
14976 * font.h (struct font_driver): New member get_variation_glyphs.
14977
14978 * font.c (font_range): Don't require a font for a variation selector.
14979 (Ffont_variation_glyphs): New function.
14980 (syms_of_font): Defsubr it.
14981
14982 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
14983 ftfont_variation_glyphs.
14984 (setup_otf_gstring): New function.
14985 (ftfont_drive_otf): Use it.
14986 (ftfont_shape_by_flt): Handle variation selector.
14987 (ftfont_variation_glyphs): New function.
14988
149892008-12-30 Martin Rudalics <rudalics@gmx.at>
14990
14991 * frame.c (Vemacs_iconified): Remove.
14992
149932008-12-30 Jason Rumney <jasonr@gnu.org>
14994
14995 * frame.c (store_frame_param, x_get_arg): Enable newer code on
14996 WINDOWSNT too, as related changes have already been synced. (Bug#117)
14997
149982008-12-30 Chong Yidong <cyd@stupidchicken.com>
14999
15000 * indent.c (Fvertical_motion): Don't advance iterator if we have
15001 reseated to the desired position.
15002
15003 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
15004 checking for pos match.
15005
150062008-12-30 Kenichi Handa <handa@m17n.org>
15007
15008 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
15009 just get the low 8-bit of the code.
15010
15011 * font.c (font_intern_prop): Validate str as multibyte.
15012
150132008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15014
15015 * dispextern.h (struct face): Move lface and hash from the middle
15016 of bitfields.
15017
15018 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
15019
150202008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15021
15022 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
15023 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
15024 instead of intervals.h.
15025
150262008-12-26 Andreas Schwab <schwab@suse.de>
15027
15028 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
15029 cons.
15030
150312008-12-26 Martin Rudalics <rudalics@gmx.at>
15032
15033 * textprop.c (Qminibuffer_prompt): New variable.
15034 (syms_of_textprop): Initialize it.
15035 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
15036 in minibuffer-prompt face. (Bug#1662)
15037
150382008-12-25 Jason Rumney <jasonr@gnu.org>
15039
15040 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
15041
150422008-12-24 Jason Rumney <jasonr@gnu.org>
15043
15044 * ralloc.c (r_alloc_reset_variable): New function.
15045
15046 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
15047 record of what points where. (Bug#716)
15048
150492008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
15050
15051 * minibuf.c (read_minibuf): Follow the non-interactive case when
15052 running as a daemon, before detaching.
15053
150542008-12-22 Andreas Schwab <schwab@suse.de>
15055
15056 * buffer.c (init_buffer): Use realloc instead of xrealloc.
15057 * gtkutil.c (free_widget_value): Use xfree instead of free.
15058
150592008-12-22 Martin Rudalics <rudalics@gmx.at>
15060
15061 * frame.c (delete_frame): New function derived from
15062 Fdelete_frame to handle Qnoelisp value for FORCE argument.
15063 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
15064 (Fdelete_frame): Call delete_frame. Remove line from doc-string
15065 saying that FORCE non-nil doesn't run `delete-frame-functions'.
15066 * frame.h: Extern delete_frame.
15067 * window.c (window_loop):
15068 * terminal.c (delete_terminal):
15069 * xterm.c (x_connection_closed):
15070 * xfns.c (Fx_hide_tip):
15071 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
15072
150732008-12-21 Jason Rumney <jasonr@gnu.org>
15074
15075 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
15076 when character maps to .notdef character.
15077
150782008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
15079
15080 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
15081
150822008-12-20 Jason Rumney <jasonr@gnu.org>
15083
15084 * frame.c (Fmake_terminal_frame): Raise an error when called from
15085 a graphical frame on Windows. (Bug#1325)
15086
150872008-12-20 Jan Djärv <jan.h.d@swipnet.se>
15088
15089 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
15090
150912008-12-20 Chong Yidong <cyd@stupidchicken.com>
15092
15093 * minibuf.c (Fread_buffer): Doc fix.
15094
150952008-12-20 Jason Rumney <jasonr@gnu.org>
15096
15097 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
15098 server name in UNC paths. (Bug#719)
15099
15100 * coding.c (decode_coding): Clear chars_at_source flag when using
15101 charbuf. (Bug#1035)
15102
151032008-12-19 Daniel Engeler <engeler@gmail.com>
15104
15105 * sysdep.c (serial_configure): Fix typo.
15106
151072008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15108
15109 * sysdep.c: Include alloca.h.
15110 (system_process_attributes): Add implementation for Solaris.
15111
15112 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
15113
151142008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15115
15116 Reorganize implementation of Flist_system_processes and
15117 Fsystem_process_attributes. No functional changes.
15118 * process.c: Don't #include pwd.h, grp.h and limits.h.
15119 (Flist_system_processes): Just call list_system_processes.
15120 (Fsystem_process_attributes): Just call system_process_attributes.
15121 (procfs_list_system_processes, time_from_jiffies)
15122 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15123 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
15124
15125 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
15126 (list_system_processes): Rename from
15127 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
15128 Provide a do nothing implementation.
15129 (system_process_attributes): Rename from
15130 procfs_list_system_processes.
15131 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15132 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
15133
15134 * w32.c (list_system_processes): Rename from
15135 w32_list_system_processes.
15136 (system_process_attributes): Rename from
15137 w32_system_process_attributes.
15138
15139 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
15140
15141 * process.h (w32_list_system_processes)
15142 (w32_system_process_attributes): Remove.
15143 (list_system_processes, system_process_attributes):
15144 New prototypes.
15145
151462008-12-19 Kenichi Handa <handa@m17n.org>
15147
15148 * xfont.c (xfont_decode_coding_xlfd): New function.
15149 (xfont_encode_coding_xlfd): New function.
15150 (xfont_list_pattern): Decode XLFD by iso-8859-1.
15151 (xfont_list): Decode and encode XLFD by iso-8859-1.
15152 (xfont_match): Likewise.
15153 (xfont_list_family): Likewise.
15154 (xfont_open): Likewise.
15155
15156 * ftfont.c (ftfont_open): Generate a multibyte string if given
15157 names are utf-8.
15158
15159 * xftfont.c (xftfont_open): Generate a multibyte string if given
15160 names are utf-8.
15161
151622008-12-18 Jan Djärv <jan.h.d@swipnet.se>
15163
15164 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
15165 changed.
15166 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
15167 clicked on a detached tool bar button.
15168
151692008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
15170
15171 * emacs.c (main): Print and error and exit when no data is read
15172 from the pipe.
15173
151742008-12-17 Jason Rumney <jasonr@gnu.org>
15175
15176 * w32font.c (w32font_has_char): Always return -1.
15177
151782008-12-16 Kenichi Handa <handa@m17n.org>
15179
15180 * font.c (font_open_entity): Fix previous change.
15181
151822008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
15183
15184 * process.c: Include <limits.h>.
15185
151862008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
15187
15188 * font.c (font_update_drivers): Fix mistake in reconstructing the
15189 driver list.
15190
151912008-12-16 Chong Yidong <cyd@stupidchicken.com>
15192
15193 * font.c (font_clear_cache): Fix format of font cache data.
15194
151952008-12-15 Chong Yidong <cyd@stupidchicken.com>
15196
15197 * xftfont.c (xftfont_open): Free Xft font pattern if
15198 XftFontOpenPattern fails.
15199
15200 * xterm.c (x_free_frame_resources): Remove extraneous call to
15201 free_frame_faces.
15202
152032008-12-13 Chong Yidong <cyd@stupidchicken.com>
15204
15205 * xterm.c (x_delete_display): Move xim_close_dpy call to
15206 x_delete_terminal.
15207 (x_delete_terminal): Call xim_close_dpy.
15208
152092008-12-13 Jason Rumney <jasonr@gnu.org>
15210
15211 * w32font.c (intern_font_name): New function.
15212 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
15213 (w32font_open_internal, Fx_select_font): Decode font name.
15214 (fill_in_logfont, list_all_matching_fonts): Encode font name.
15215
15216 * w32font.h (intern_font_name): Declare new function.
15217
15218 * w32uniscribe.c (add_opentype_font_name_to_list):
15219 Use intern_font_name.
15220
152212008-12-13 Chong Yidong <cyd@stupidchicken.com>
15222
15223 * frame.c (Fdelete_frame): Call free_font_driver_list.
15224
15225 * font.c (free_font_driver_list): Implement missing function.
15226
15227 * w32term.c (w32_term_init): Don't initialize the image cache
15228 here; it will be done in init_frame_faces.
15229
15230 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
15231 (struct x_display_info): Remove unused member null_pixel.
15232 New member xim_callback_data.
15233
15234 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
15235 (xim_initialize): Save pointer to callback function data.
15236 (xim_close_dpy): Free callback function data. Call XCloseIM,
15237 reverting 2008-11-04 change by David Smith.
15238 (x_term_init): Don't initialize the image cache here; it will be
15239 done in init_frame_faces. Remove ancient "null_pixel" cruft.
15240 (x_delete_display): Free x_dnd_atoms member.
15241
152422008-12-13 Kenichi Handa <handa@m17n.org>
15243
15244 * font.c (font_rescale_ratio): Move from xfaces.c.
15245 Argument type changed. Handle a font-spec too.
15246 (font_score): Check Vface_font_rescale_alist.
15247 (font_open_entity): Likewise. (Bug#1547)
15248
15249 * xfaces.c (font_rescale_ratio): Move to font.c.
15250
152512008-12-13 Chong Yidong <cyd@stupidchicken.com>
15252
15253 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
15254
152552008-12-12 Jason Rumney <jasonr@gnu.org>
15256
15257 * w32fns.c (x_display_info_for_name, Fx_open_connection):
15258 Set Vwindow_system_version to the real w32 major version.
15259
152602008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
15261
15262 * term.c (init_tty): Move setting the terminal name before the
15263 potential user: maybe_fatal.
15264
152652008-12-11 Chong Yidong <cyd@stupidchicken.com>
15266
15267 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
15268 all callers changed. Call free_frame_faces to free the face cache.
15269
152702008-12-11 Jason Rumney <jasonr@gnu.org>
15271
15272 * w32font.c (fill_in_logfont): Don't assume symbol script means
15273 SYMBOL_CHARSET. (Bug#547)
15274
15275 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
15276 size for surrogates. (Bug#1096, bug#872)
15277
152782008-12-11 Juanma Barranquero <lekktu@gmail.com>
15279
15280 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
15281
152822008-12-11 Juanma Barranquero <lekktu@gmail.com>
15283
15284 * process.c (Fsystem_process_attributes, syms_of_process):
15285 Fix typo in name of Ssystem_process_attributes.
15286 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
15287
152882008-12-11 Juanma Barranquero <lekktu@gmail.com>
15289
15290 * syntax.c (Fmodify_syntax_entry): Doc fix.
15291
152922008-12-10 Juanma Barranquero <lekktu@gmail.com>
15293
15294 * font.c (Ffont_spec): Move usage to end of docstring.
15295
152962008-12-10 Jason Rumney <jasonr@gnu.org>
15297
15298 * w32font.c (Qcham): New symbol.
15299 (font_supported_scripts): Add cham, and comments for other new
15300 scripts in bitfield from OpenType spec.
15301 (add_font_entity_to_list): Limit unicode-sip fonts to those that
15302 contain characters beyond the bmp.
15303
153042008-12-10 Kenichi Handa <handa@m17n.org>
15305
15306 * ftfont.c (fc_charset_table): Add "unicode-sip".
15307 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
15308 Qunicode_sip.
15309
153102008-12-10 Juanma Barranquero <lekktu@gmail.com>
15311
15312 * coding.c (QCdefault_char): Rename from QCdefalut_char.
15313 (Fcoding_system_put): Use QCdefault_char.
15314 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
15315
153162008-12-09 Chong Yidong <cyd@stupidchicken.com>
15317
15318 * xftfont.c (syms_of_xftfont): Fix typo.
15319
15320 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
15321
153222008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
15323
15324 * emacs.c (main): Close daemon_pipe on exec.
15325
153262008-12-08 Chong Yidong <cyd@stupidchicken.com>
15327
15328 * termchar.h (struct tty): New members termcap_term_buffer and
15329 termcap_strings_buffer.
15330
15331 * term.c (encode_terminal_code): Free any previous memory blocks
15332 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
15333 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
15334 All callers changed.
15335 (init_tty): Store termcap data and string buffers in new struct
15336 tty members termcap_term_buffer and termcap_strings_buffer.
15337 (delete_tty): Free them.
15338 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
15339
153402008-12-07 Seiji Zenitani <zenitani@mac.com>
15341
15342 * nsfns.m (ns_set_background_color): Remove code duplication.
15343 It was a substitute for face-transparency on OS X 10.3.
15344
153452008-12-06 Chong Yidong <cyd@stupidchicken.com>
15346
15347 * coding.c (make_conversion_work_buffer): Disable buffer
15348 modification hooks in the work buffer.
15349
153502008-12-05 Eli Zaretskii <eliz@gnu.org>
15351
15352 * process.c (procfs_system_process_attributes): If `nread' has a
15353 negative value, assign zero to it.
15354
153552008-12-05 Chong Yidong <cyd@stupidchicken.com>
15356
15357 * eval.c (Vdebug_on_error): Doc fix.
15358
153592008-12-05 Kenichi Handa <handa@m17n.org>
15360
15361 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
15362 second character is a combining character.
15363
153642008-12-05 Eli Zaretskii <eliz@gnu.org>
15365
15366 * process.c (procfs_system_process_attributes): Don't use cmd,
15367 cmdsize, and q without initializing them first.
15368
153692008-12-04 Jason Rumney <jasonr@gnu.org>
15370
15371 * w32font.c (w32font_draw): Initialize orig_clip before getting
15372 it, and delete it when finished.
15373
153742008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
15375
15376 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
15377 case when running as a daemon before detaching.
15378
153792008-12-03 Juanma Barranquero <lekktu@gmail.com>
15380
15381 * w32.c (init_environment): Don't unload library shell32.dll.
15382
153832008-12-03 Kenichi Handa <handa@m17n.org>
15384
15385 * font.c (font_at): Set `multibyte' at first.
15386
15387 * coding.c (decode_coding_charset): Check type of an element of
15388 vector VALIDS.
15389 (encode_coding_emacs_mule): Be sure to set `code'.
15390
15391 * fontset.c (face_for_char): Handle invalid charset property correctly.
15392 (font_for_char): Likewise.
15393
153942008-12-03 Chong Yidong <cyd@stupidchicken.com>
15395
15396 * font.c (Fopen_font): Compute pixel size correctly.
15397 (font_update_lface): Handle fonts with corrupted size specs,
15398 i.e. non-int and non-float.
15399
15400 * ftfont.c (ftfont_match): Initialize entity variable.
15401 (ftfont_resolve_generic_family): Avoid using uninitialized var.
15402 (ftfont_list_family): Initialize list var earlier.
15403
15404 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
15405
15406 * xterm.c (x_draw_glyph_string): Fall back on
15407 underline_minimum_offset for underline position.
15408
154092008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15410
15411 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
15412
15413 * character.c (c_string_width): Specify the type for LEN.
15414
154152008-12-03 Kenichi Handa <handa@m17n.org>
15416
15417 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
15418 (decode_coding_utf_8): Likewise.
15419 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
15420 (produce_chars): Initialize consumed_chars to 0.
15421
154222008-12-02 Chong Yidong <cyd@stupidchicken.com>
15423
15424 * keyboard.c (make_lispy_position): Only use PT if the selected
15425 window is current.
15426
154272008-12-02 Andreas Schwab <schwab@suse.de>
15428
15429 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
15430
15431 * doprnt.c (doprnt1): Fix size of charbuf.
15432
154332008-12-02 Chong Yidong <cyd@stupidchicken.com>
15434
15435 * keyboard.c (timer_check): Revert last change.
15436
154372008-12-02 Juanma Barranquero <lekktu@gmail.com>
15438
15439 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
15440
154412008-12-01 Juanma Barranquero <lekktu@gmail.com>
15442
15443 * makefile.w32-in: Update dependencies.
15444 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
15445
154462008-12-01 Andreas Schwab <schwab@suse.de>
15447
15448 * font.c (register_font_driver): Use xmalloc.
15449 (font_put_frame_data): Likewise.
15450
154512008-12-01 Chong Yidong <cyd@stupidchicken.com>
15452
15453 * xfaces.c (realize_x_face): Make abort condition clearer.
15454
15455 * gtkutil.c (update_frame_tool_bar): Initialize variable.
15456
154572008-11-30 Chong Yidong <cyd@stupidchicken.com>
15458
15459 * keyboard.c (timer_check): After a timer runs, ensure that the
15460 selected window's buffer is current.
15461
154622008-11-30 Juanma Barranquero <lekktu@gmail.com>
15463
15464 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
15465 It was accidentally restored by the Unicode merge.
15466
15467 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
15468
154692008-11-29 Juanma Barranquero <lekktu@gmail.com>
15470
15471 * w32proc.c: Include "coding.h".
15472 (Fw32_short_file_name): Encode filename passed to Windows API.
15473 (Fw32_long_file_name): Encode filename passed to Windows API and
15474 decode back the result. (Bug#1433)
15475
154762008-11-29 Kenichi Handa <handa@m17n.org>
15477
15478 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
15479 not before accessing it.
15480
15481 * charset.c (Fdefine_charset_internal): After calculating
15482 min_char, max_char, and fastmap, copy the charset structure again.
15483 (encode_char): Fix the previous change.
15484
154852008-11-28 Seiji Zenitani <zenitani@mac.com>
15486
15487 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
15488
15489 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
15490
15491 * nsterm.m (x_set_frame_alpha): New function.
15492
154932008-11-27 Eli Zaretskii <eliz@gnu.org>
15494
15495 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
15496
154972008-11-27 Juanma Barranquero <lekktu@gmail.com>
15498
15499 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
15500 pointer to check_face_name.
15501
155022008-11-27 Kenichi Handa <handa@m17n.org>
15503
15504 * category.h (SET_CATEGORY_SET): Call set_category_set.
15505 (set_category_set): Extern it.
15506
15507 * category.c (hash_get_category_set): New function.
15508 (Fmodify_category_entry): Adjust for the change of
15509 char_table_ref_and_range. Call hash_get_category_set to get a
15510 category set to store in the table.
15511
15512 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
15513 Funify_charset.
15514
15515 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
15516 (DECODE_CHAR): Check if the decoder vector is ready.
15517 (ENCODE_CHAR): Check if the encoder char-table is ready.
15518 (maybe_unify_char): Extern it.
15519
15520 * charset.c (Vchar_unified_charset_table): Delete it.
15521 (inhibit_load_charset_map): New variable.
15522 (temp_charset_work): New variable.
15523 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
15524 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
15525 New macros.
15526 (load_charset_map): Meaning of control_flag changed.
15527 If inhibit_load_charset_map is nonzero, setup a table in
15528 temp_charset_work.
15529 (load_charset): New argument control_flag.
15530 (map_charset_for_dump): New function.
15531 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
15532 map_charset_for_dump.
15533 (Fdefine_charset_internal): If the charset method is MAP, load
15534 mapping tables by calling load_charset.
15535 (Funify_charset): Don't load a mapping table but directly set
15536 Vchar_unify_table.
15537 (maybe_unify_char): New function.
15538 (decode_char): Don't handle the deleted method MAP_DEFERRED.
15539 Handle the case of inhibit_load_charset_map being nonzero.
15540 (encode_char): Don't handle the deleted method MAP_DEFERRED.
15541 Handle the case of inhibit_load_charset_map being nonzero.
15542 (Fclear_charset_maps): Just free temp_charset_work.
15543 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
15544 variable.
15545
15546 * chartab.c (sub_char_table_ref_and_range): Adjust for the
15547 change of char_table_ref_and_range.
15548 (char_table_ref_and_range): Change the meaning of argument FROM
15549 and TO. Now the caller must provide initial values for *FROM
15550 and *TO.
15551
15552 * fontset.c (fontset_add): Adjust for the change of
15553 char_table_ref_and_range.
15554 (fontset_get_font_group): Likewise.
15555 (Ffontset_info): Likewise.
15556
15557 * keymap.c (describe_vector): Adjust for the change of
15558 char_table_ref_and_range. For char-table, put boundary between
15559 non-ASCII and 8-bit characters.
15560
15561 * print.c (print_object): For bool-vector, delete unnecessary
15562 check of ASCII_BYTE_P.
15563
155642008-11-26 Jason Rumney <jasonr@gnu.org>
15565
15566 * w32font.c (w32font_open_internal): Don't include external
15567 leading in font height. (Bug#879)
15568
155692008-11-26 Glenn Morris <rgm@gnu.org>
15570
15571 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
15572 redefinition with ifdef. (Bug#1383)
15573
155742008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15575
15576 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
15577
155782008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15579
15580 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
15581 New EmacsView methods.
15582 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
15583 Fixes bug #1048,1357,1414.
15584
155852008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15586
15587 Fix bug #1362.
15588 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
15589 is not an indexed color.
15590 * nsterm.m (free_indexed_color): Add argument checking.
15591 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
15592
155932008-11-24 Chong Yidong <cyd@stupidchicken.com>
15594
15595 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
15596 Document confirm-after-completion value for
15597 minibuffer-completion-confirm.
15598
155992008-11-24 Jason Rumney <jasonr@gnu.org>
15600
15601 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
15602 warning.
15603
156042008-11-23 Jason Rumney <jasonr@gnu.org>
15605
15606 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
15607 restored before returning.
15608
15609 * w32font.c (check_face_name): New function.
15610 (add_font_entity_to_list): Use it to filter out common substituted
15611 fonts. (Bug#642)
15612
156132008-11-22 Martin Rudalics <rudalics@gmx.at>
15614
15615 * buffer.c (Fswitch_to_buffer): Reword and mention new option
15616 confirm-nonexistent-file-or-buffer in doc-string.
15617
156182008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15619
15620 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
15621 Fix copy/paste typo. Add checks.
15622
156232008-11-21 Kenichi Handa <handa@m17n.org>
15624
15625 * coding.c (detect_coding_iso_2022): Reject invalid composition
15626 sequence.
15627 (DECODE_COMPOSITION_START): If the current source is the last
15628 block, and the current composition doesn't end, regard this
15629 sequence as invalid.
15630 (decode_coding_iso_2022): Handle invalid composition sequence.
15631
156322008-11-20 Martin Rudalics <rudalics@gmx.at>
15633
15634 * window.c (coordinates_in_window): Don't return
15635 ON_VERTICAL_BORDER for the rightmost position of a mode/header
15636 line when the window is not the rightmost one. (Bug#1372)
15637
156382008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
15639
15640 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
15641
156422008-11-15 Eli Zaretskii <eliz@gnu.org>
15643
15644 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
15645 and bright_bg if noninteractive is non-zero.
15646
156472008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15648
15649 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
15650 x_draw_glyph_string_background.
15651
15652 * w32term.c (x_draw_glyph_string): Likewise.
15653
156542008-11-15 Chong Yidong <cyd@stupidchicken.com>
15655
15656 * xterm.c (x_draw_glyph_string): Stop drawing the background of
15657 the next glyph string once past the overhang width.
15658
15659 * nsterm.m (ns_draw_glyph_string): Likewise.
15660
15661 * w32term.c (x_draw_glyph_string): Likewise.
15662
156632008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
15664
15665 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
15666 double file close.
15667
156682008-11-14 Martin Rudalics <rudalics@gmx.at>
15669
15670 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
15671 dedicated status of window before attempting to display another
15672 buffer in it.
15673
156742008-11-14 Juanma Barranquero <lekktu@gmail.com>
15675
15676 * msdos.c (Fmsdos_long_file_names):
15677 (syms_of_msdos) <dos-unsupported-char-glyph>:
15678 * dosfns.c (Fint86): Fix typos in docstrings.
15679
156802008-11-14 Eli Zaretskii <eliz@gnu.org>
15681
15682 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
15683
156842008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
15685
15686 * puresize.h (BASE_PURESIZE): Increase to 1260000.
15687
156882008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
15689
15690 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
15691
15692 * frame.h: Negative alpha means "don't touch".
15693
15694 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
15695
15696 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
15697
156982008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
15699
15700 * hftctl.c:
15701 * chpdef.h:
15702 * acldef.h: Remove files used only for systems no longer supported.
15703
15704 * Makefile.in: Fix .o alphabetical ordering.
15705 (hftctl.o): Remove dependency, file removed.
15706 (keymap.o, print.o): Depend on charset.h.
15707
157082008-11-10 Kenichi Handa <handa@m17n.org>
15709
15710 * character.c (Fget_byte): Fix and make it faster for unibyte target.
15711
157122008-11-08 Chong Yidong <cyd@stupidchicken.com>
15713
15714 * dired.c (file_name_completion): If completion_ignore_case is
15715 enabled, ignore case when checking completion-regexp-list.
15716
157172008-11-08 Eli Zaretskii <eliz@gnu.org>
15718
15719 * vm-limit.c (get_lim_data): Fix last change.
15720
157212008-11-08 Kenichi Handa <handa@m17n.org>
15722
15723 * character.c (Fget_byte): New function.
15724 (syms_of_character): Defsubr Fget_byte.
15725
157262008-11-07 Chong Yidong <cyd@stupidchicken.com>
15727
15728 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
15729 cursor position is valid after scrolling.
15730
157312008-11-06 Juanma Barranquero <lekktu@gmail.com>
15732
15733 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
15734
157352008-11-06 Glenn Morris <rgm@gnu.org>
15736
15737 * xterm.c (handle_one_xevent): Don't let popup menus cause
15738 mouse-autoselect-window related window switching. (Bug#1261)
15739
157402008-11-04 David Smith <davidsmith@acm.org> (tiny change)
15741
15742 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
15743
157442008-11-04 Andreas Schwab <schwab@suse.de>
15745
15746 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
15747
157482008-11-03 Chong Yidong <cyd@stupidchicken.com>
15749
15750 * xfns.c (Fx_wm_set_size_hint): New function.
15751
157522008-11-03 Martin Rudalics <rudalics@gmx.at>
15753
15754 * textprop.c (Fprevious_single_char_property_change): Return 0
15755 when there's no change in a string. (Bug#1301)
15756
157572008-11-02 Martin Rudalics <rudalics@gmx.at>
15758
15759 * frame.c (do_switch_frame): New argument NORECORD passed to
15760 Fselect_window.
15761 (Fselect_frame): New argument NORECORD passed to
15762 do_switch_frame.
15763 (Fset_frame_selected_window): New argument NORECORD passed to
15764 Fselect_frame.
15765 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
15766 in call of do_switch_frame.
15767 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
15768 Handle NORECORD argument in call of Fselect_frame.
15769 * lisp.h (do_switch_frame, Fselect_frame)
15770 (Fset_frame_selected_window): Adjust declarations.
15771 * window.c (select_frame_norecord): New function.
15772 (run_window_configuration_change_hook): Use it and call
15773 Fselect_frame with NORECORD set.
15774 (Fselect_window): Pass NORECORD to Fselect_frame.
15775 (Fset_window_configuration): Handle NORECORD argument in call of
15776 do_switch_frame.
15777 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
15778 Fset_frame_selected_window.
15779 * keyboard.c (command_loop_1): Handle NORECORD in call of
15780 Fselect_frame (currently ifdefd).
15781
157822008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
15783
15784 * emacs.c (USAGE2): Untabify.
15785
157862008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
15787
15788 * composite.c (fill_gstring_header): Fix copy/paste typo.
15789
157902008-10-31 Martin Rudalics <rudalics@gmx.at>
15791
15792 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
15793 (Fother_window): Rename argument and rewrite doc-string.
15794 (select_window_norecord): Fix return value. (Bug#1276)
15795
157962008-10-30 Juanma Barranquero <lekktu@gmail.com>
15797
15798 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
15799 new frames overriding foreground for tooltips. Based on similar patch
15800 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
15801
158022008-10-29 Chong Yidong <cyd@stupidchicken.com>
15803
15804 * emacs.c (Fdaemon_initialized): Initialize nfd.
15805
158062008-10-29 Martin Rudalics <rudalics@gmx.at>
15807
15808 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
15809 (Fwindow_text_height): Clarify doc-strings.
15810 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
15811 doc-string of window-scroll-functions.
15812
158132008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
15814
15815 * category.c (syms_of_category): Fix typo in docstring.
15816
158172008-10-28 Juanma Barranquero <lekktu@gmail.com>
15818
15819 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
15820 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
15821 Fix typos in docstrings.
15822
158232008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
15824
15825 * emacs.c (daemon_pipe): Make non-static.
15826 (IS_DAEMON): Move definition ...
15827 * lisp.h (IS_DAEMON): ... here.
15828 (daemon_pipe): Declare.
15829 (is_daemon): Remove.
15830 * dispnew.c (init_display): Use IS_DAEMON.
15831
158322008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15833
15834 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
15835 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
15836
15837 * emacs.c (is_daemon): Remove.
15838 (main): Don't set is_daemon.
15839 (IS_DAEMON): New macro.
15840 (Fdaemonp, Fdaemon_initialized): Use it.
15841 (Fdaemon_initialized): Write a char into the pipe to make sure the
15842 parent exits.
15843 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
15844
158452008-10-27 Chong Yidong <cyd@stupidchicken.com>
15846
15847 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
15848 over-sized glyph, draw it with the default glyph width.
15849
15850 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
15851 glyph, draw it with the default glyph width.
15852
15853 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
15854 glyph, draw it with the default glyph width.
15855
15856 * xdisp.c (try_scrolling): When computing the distance from the
15857 scroll margin to PT, try moving some distance past the window
15858 bottom before giving up.
15859
158602008-10-27 Martin Rudalics <rudalics@gmx.at>
15861
15862 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
15863 (Fset_window_buffer): Explain in doc-string that a window can be
15864 "strongly" dedicated to its buffer.
15865
158662008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
15867
15868 * emacs.c (daemon_name): New variable.
15869 (main): Deal with --daemon=SERVER_NAME.
15870 (Fdaemonp): Return a name if one was passed to --daemon.
15871
158722008-10-26 Romain Francoise <romain@orebokech.com>
15873
15874 * emacs.c (daemon_pipe): New variable.
15875 (main): Create a pipe before forking, make the parent exit only after
15876 the child has closed its end of the pipe. Move closing the
15877 descriptors ...
15878 (Fdaemon_initialized): ... here. New function.
15879
158802008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
15881
15882 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
15883 the previous unoptimized table.
15884
15885 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
15886 the distinction between non-nil and non-t value of `dedicated'.
15887
158882008-10-25 Chong Yidong <cyd@stupidchicken.com>
15889
15890 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
15891 read_char_minibuf_menu_text is large enough to hold the menu string.
15892
158932008-10-25 Martin Rudalics <rudalics@gmx.at>
15894
15895 * window.c (Fget_buffer_window, Fdelete_windows_on)
15896 (Freplace_buffer_in_windows): Make buffer argument optional and
15897 rename to buffer_or_name.
15898
158992008-10-24 Chong Yidong <cyd@stupidchicken.com>
15900
15901 * xdisp.c (handle_single_display_spec, handle_display_prop):
15902 Undo 2005-05-16 change.
15903 (handle_stop): Pop iterator if it's loaded with an empty string.
15904 (get_overlay_strings_1): Don't save iterator if it's loaded with
15905 an empty string (bug#1201).
15906
159072008-10-24 Kenichi Handa <handa@m17n.org>
15908
15909 * ftfont.c (ftfont_otf_features): Fix previous change.
15910 (ftfont_otf_capability): Check FeatureList.FeatureCount before
15911 calling ftfont_otf_features.
15912
159132008-10-24 Kenichi Handa <handa@m17n.org>
15914
15915 * font.c (font_match_p): Fix for the case that a vector of
15916 characters is in script-representative-chars.
15917
159182008-10-24 Michael Albinus <michael.albinus@gmx.de>
15919
15920 * dbusbind.c (xd_in_read_queued_messages): New variable.
15921 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
15922 (xd_read_queued_messages): Catch Qdbus_error from the macros.
15923 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
15924 macro. (Bug#1186)
15925
159262008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
15927
15928 * s/sol2-10.h: New file.
15929
159302008-10-23 Juanma Barranquero <lekktu@gmail.com>
15931
15932 * xdisp.c (fill_glyph_string): Fix typo in source (though the
15933 poor beast has survived 9+ years and the jump from xterm.c!).
15934
159352008-10-23 Martin Rudalics <rudalics@gmx.at>
15936
15937 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
15938 Reword doc-string.
15939 (Fbury_buffer): In doc-string say what happens to the buffer's window.
15940
159412008-10-23 Juanma Barranquero <lekktu@gmail.com>
15942
15943 * character.c (syms_of_character) <script-representative-chars>:
15944 <unicode-category-table>: Doc fixes.
15945
159462008-10-23 Noah Friedman <friedman@splode.com>
15947
15948 * coding.c (make_conversion_work_buffer): Check that
15949 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
15950 Fget_buffer_create.
15951
159522008-10-23 Kenichi Handa <handa@m17n.org>
15953
15954 * font.c (font_add_log): Check the values of extra properties.
15955
159562008-10-22 Martin Rudalics <rudalics@gmx.at>
15957
15958 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
15959 Reword doc-string.
15960 (Fset_window_parameter): Use NILP.
15961 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
15962 (Frecenter): Use "selected" instead of "current" window in doc-strings.
15963
159642008-10-22 Juanma Barranquero <lekktu@gmail.com>
15965
15966 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
15967
159682008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
15969
15970 * nsfns.m (ns_appkit_version): New function.
15971 (x-server-version): Use it.
15972 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
15973 (x-server-vendor): Don't check_ns().
15974
15975 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
15976
159772008-10-22 Juanma Barranquero <lekktu@gmail.com>
15978
15979 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
15980 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
15981
159822008-10-22 Kenichi Handa <handa@m17n.org>
15983
15984 * syntax.c (scan_words): Call word_boundary_p instead of comparing
15985 scripts.
15986
15987 * category.c (word_boundary_p): Check scripts instead of charset.
15988 Handle nil value in word-separating-categories and
15989 word-combining-categories.
15990 (syms_of_category): Fix docstrings of word-separating-categories
15991 and word-combining-categories.
15992
159932008-10-21 Eli Zaretskii <eliz@gnu.org>
15994
15995 * coding.c (Fencode_coding_region, Fdecode_coding_region)
15996 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
15997
159982008-10-21 Martin Rudalics <rudalics@gmx.at>
15999
16000 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
16001 Rename arg "buffer" to "buffer_or_name".
16002 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
16003 it optional.
16004 (no_switch_window): Remove since the return value is not used.
16005 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
16006 Consider window as dedicated when Fwindow_dedicated_p returns a
16007 non-nil value.
16008 * lisp.h: Remove prototype for no_switch_window.
16009
160102008-10-21 Jan Djärv <jan.h.d@swipnet.se>
16011
16012 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
16013 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
16014
160152008-10-21 Kenichi Handa <handa@m17n.org>
16016
16017 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
16018 check Vlatin_extra_code_table.
16019
160202008-10-20 Eli Zaretskii <eliz@gnu.org>
16021
16022 * fileio.c (Fset_file_modes): Doc fix.
16023
160242008-10-19 Michael Albinus <michael.albinus@gmx.de>
16025
16026 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
16027 in arrays.
16028
160292008-10-19 Martin Rudalics <rudalics@gmx.at>
16030
16031 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16032 Mention kill-buffer in doc-string.
16033 (Fset_window_buffer): Reinsert tem check removed in last commit.
16034 (Fenlarge_window, Fshrink_window): Have argument names and
16035 doc-string follow Elisp manual more closely.
16036
160372008-10-18 Eli Zaretskii <eliz@gnu.org>
16038
16039 * fileio.c (Fset_file_modes): Doc fix.
16040
160412008-10-18 Martin Rudalics <rudalics@gmx.at>
16042
16043 * window.c (Fwindow_width, Fset_window_start)
16044 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
16045 (Fdelete_windows_on, Freplace_buffer_in_windows):
16046 Make doc-strings follow code and Elisp manual more closely.
16047 (Fwindow_dedicated_p): Make window argument optional.
16048 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
16049 (Fset_window_buffer): Respect any non-nil dedicated value for
16050 window. Rename "buffer" argument to "buffer_or_name".
16051
160522008-10-18 Ulrich Mueller <ulm@gentoo.org>
16053
16054 * m/sh3.h: New file, machine description for SuperH.
16055
160562008-10-17 Martin Rudalics <rudalics@gmx.at>
16057
16058 * window.c (Fsplit_window): Rename arg horflag to horizontal.
16059
160602008-10-17 Kenichi Handa <handa@m17n.org>
16061
16062 * ftfont.c (ftfont_otf_features): Fix indexing
16063 gsub_gpos->FeatureList.Feature. Check the validity of indices.
16064
160652008-10-16 Magnus Henoch <mange@freemail.hu>
16066
16067 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
16068 (Fdbus_call_method_asynchronously): Ditto.
16069 This change makes C-h f display the argument list.
16070
160712008-10-16 Chong Yidong <cyd@stupidchicken.com>
16072
16073 * fileio.c (Fexpand_file_name): Doc fix.
16074
16075 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
16076 of :foreground and :background equivalent to unspecified (20.x
16077 compatibility).
16078
160792008-10-15 Eli Zaretskii <eliz@gnu.org>
16080
16081 * buffer.c (syms_of_buffer): Doc fix.
16082
160832008-10-14 Kenichi Handa <handa@m17n.org>
16084
16085 * font.c (font_clear_prop): When clearing font width, clear the
16086 average width field too.
16087
160882008-10-12 Andreas Schwab <schwab@suse.de>
16089
16090 * ftfont.c (ftfont_shape_by_flt): Make static.
16091 * ftfont.h (ftfont_shape_by_flt): Don't declare.
16092
16093 * font.c: Don't include <m17n-flt.h>.
16094
160952008-10-10 Eli Zaretskii <eliz@gnu.org>
16096
16097 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
16098
160992008-10-09 Eli Zaretskii <eliz@gnu.org>
16100
16101 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
16102 away code.
16103
161042008-10-09 Chong Yidong <cyd@stupidchicken.com>
16105
16106 * dispnew.c (update_text_area): Avoid looping due to large glyph
16107 overhangs (bug#1070).
16108
161092008-10-09 Kenichi Handa <handa@m17n.org>
16110
16111 * fontset.c (face_for_char): If face->fontset is negative, just
16112 return ascii_face.
16113
16114 * font.c (font_delete_unmatched): Fix previous change.
16115 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
16116
161172008-10-09 Martin Rudalics <rudalics@gmx.at>
16118
16119 * frame.c (Fraise_frame): On text-only terminals select frame in
16120 order to make it visible. (Bug#1061)
16121
161222008-10-08 Chong Yidong <cyd@stupidchicken.com>
16123
16124 * fontset.c (fontset_find_font): Check frame validity.
16125
161262008-10-07 Chong Yidong <cyd@stupidchicken.com>
16127
16128 * gtkutil.c (xg_display_open): Reset default display if none exists.
16129 (xg_display_close): Allow Emacs to close all displays (bug#985).
16130
161312008-10-06 Andreas Schwab <schwab@suse.de>
16132
16133 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
16134
161352008-10-06 Chong Yidong <cyd@stupidchicken.com>
16136
16137 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
16138
16139 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
16140
16141 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
16142 during initialization.
16143
161442008-10-04 Eli Zaretskii <eliz@gnu.org>
16145
16146 * xdisp.c (redisplay_internal): If frame switched, redisplay the
16147 whole thing on MSDOS frames as well as on a TTY.
16148
16149 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
16150 well as for TTY.
16151 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
16152 well as on a TTY.
16153
16154 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
16155 as well as for TTY.
16156
16157 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
16158
16159 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
16160 MSDOS frames as well.
16161
161622008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16163
16164 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
16165 correct arguments.
16166 * menu.c (find_and_return_menu_selection): Add cast.
16167
161682008-10-03 Glenn Morris <rgm@gnu.org>
16169
16170 * emacs.c (USAGE1): Add --daemon.
16171
161722008-10-02 Eli Zaretskii <eliz@gnu.org>
16173
16174 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
16175 100, so it's in percents as advertised.
16176
161772008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16178
16179 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
16180 (ns_output.current_cursor, ns_output.desired_cursor)
16181 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
16182 (FRAME_NEW_CURSOR_COLOR): Remove.
16183
16184 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
16185 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
16186 enumeration (HOLLOW_BOX_CURSOR, etc.).
16187
16188 * nsterm.m (ns_frame_rehighlight): Remove commented code.
16189 (draw_window_cursor): Simplify code.
16190 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
16191 Don't change cursor type. In latter, call rehighlight instead of doing
16192 updates manually.
16193 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
16194 Use core Emacs cursor types.
16195
16196 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
16197
161982008-10-02 Martin Rudalics <rudalics@gmx.at>
16199
16200 * process.c (Faccept_process_output): Fix doc-string.
16201
162022008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
16203
16204 * gmalloc.c (__sbrk): Also define for uClibc.
16205
16206 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
16207 for uClibc.
16208
162092008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16210
16211 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
16212 styles.
16213 (nsfont_open): Reenable the cache.
16214
162152008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16216
16217 * font.c (font_matching_entity): Reflect ATTRS in font selection.
16218 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
16219
162202008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
16221
16222 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
16223 a suspended terminal.
16224
162252008-09-30 Michael Albinus <michael.albinus@gmx.de>
16226
16227 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
16228
162292008-09-30 Eli Zaretskii <eliz@gnu.org>
16230
16231 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
16232
162332008-09-30 Chong Yidong <cyd@stupidchicken.com>
16234
16235 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
16236 in a continued line coincides with a line beginning.
16237
162382008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
16239
16240 * nsfont.m (nsfont_trait_distance): Fix bug.
16241 (nsfont_list): Return a list rather than a vector (syncs with Handa
16242 changes of 2008-05-14).
16243 (nsfont_open): Improve logging.
16244
162452008-09-29 Andreas Schwab <schwab@suse.de>
16246
16247 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
16248
162492008-09-28 Martin Rudalics <rudalics@gmx.at>
16250
16251 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
16252 name as char-resolve-modifiers.
16253 Reported by: Markus Triska <markus.triska@gmx.at>
16254
162552008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
16256
16257 * dispnew.c (init_display): Return earlier when running as a daemon.
16258
162592008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16260
16261 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
16262
162632008-09-27 Eli Zaretskii <eliz@gnu.org>
16264
16265 * composite.c (Fcomposition_get_gstring)
16266 (Fcompose_region_internal, Fcompose_string_internal)
16267 (Ffind_composition_internal): Doc fix.
16268 (syms_of_composite) <compose-chars-after-function>: Doc fix.
16269 (syms_of_composite) <auto-composition-function>: Doc fix.
16270 (syms_of_composite) <composition-function-table>: Doc fix.
16271
162722008-09-25 Chong Yidong <cyd@stupidchicken.com>
16273
16274 * search.c (wordify): New argument for lax word-ends.
16275 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
16276
162772008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
16278
16279 * lisp.h (is_daemon): Declare.
16280 * dispnew.c (init_display): Do not try to initialize the terminal
16281 when running as a daemon.
16282
162832008-09-22 Chong Yidong <cyd@stupidchicken.com>
16284
16285 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
16286 x_display_pixel_height.
16287
162882008-09-22 Martin Rudalics <rudalics@gmx.at>
16289
16290 * undo.c (record_point): Don't call Fundo_boundary for first
16291 change. (Bug#731)
16292
162932008-09-22 Juanma Barranquero <lekktu@gmail.com>
16294
16295 * emacs.c (Fdaemonp): Doc fix.
16296
162972008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
16298
16299 * emacs.c (main): Place #ifdef in the proper place.
16300
163012008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16302
16303 * emacs.c (standard_args): Add --daemon.
16304 (main): Disconnect from the terminal when --daemon is passed.
16305 (is_daemon): New variable.
16306 (Fdaemonp): New function.
16307 (syms_of_emacs): Defsubr it.
16308
163092008-09-20 Chong Yidong <cyd@stupidchicken.com>
16310
16311 * xdisp.c (get_next_display_element): Handle string display
16312 correctly when checking for the end of a box run.
16313
163142008-09-20 Glenn Morris <rgm@gnu.org>
16315
16316 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
16317 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
16318 (Frename_file): Avoid copying to trash if a rename involves
16319 a delete. (Bug#964).
16320
163212008-09-20 Eli Zaretskii <eliz@gnu.org>
16322
16323 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
16324 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
16325 frames as well as termcap frames.
16326 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
16327 get_named_tty.
16328
163292008-09-19 Eli Zaretskii <eliz@gnu.org>
16330
16331 * process.c (procfs_system_process_attributes): Fix cmdline in
16332 case /proc/PID/cmdline is empty.
16333
16334 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
16335 x_display_pixel_height.
16336
163372008-09-19 Juanma Barranquero <lekktu@gmail.com>
16338
16339 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
16340
16341 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16342 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
16343
163442008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
16345
16346 * dispextern.h (struct it): Move line_wrap away from the middle of
16347 bitfields. Move voffset in struct iterator_stack_entry after the
16348 bitfields. Move tab_width near after another short.
16349
163502008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
16351
16352 * frame.h (struct frame): Move alpha from the middle of bitfields.
16353
16354 * window.h (struct window): Move frozen_window_start_p after the
16355 rest of the bitfields to reduce padding.
16356
163572008-09-18 Chong Yidong <cyd@stupidchicken.com>
16358
16359 * xterm.h (x_display_info): Remove `height' and `width' members.
16360
16361 * nsterm.h (ns_display_info): Remove `height' and `width' members.
16362
16363 * w32term.h (w32_display_info): Remove `height', `width',
16364 `height_in', and `width_in' members.
16365
16366 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16367 New functions.
16368 (x_calc_absolute_position): Use them.
16369 (x_term_init): Omit removed `height' and `width' members.
16370
16371 * w32term.c (x_display_pixel_height, x_display_pixel_width):
16372 New functions.
16373 (w32_read_socket, x_calc_absolute_position): Use them.
16374 (w32_initialize_display_info, w32_term_init): Omit removed members
16375 of w32_display_info.
16376
16377 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
16378 New functions.
16379 (ns_initialize_display_info): Omit removed members of ns_display_info.
16380
16381 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16382 New functions.
16383 (x_calc_absolute_position): Use them.
16384 (x_term_init): Omit removed `height' and `width' members.
16385
16386 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16387 (compute_tip_xy):
16388 * frame.c (x_fullscreen_adjust):
16389 * xmenu.c (menu_position_func): Use x_display_pixel_height and
16390 x_display_pixel_width.
16391
163922008-09-18 Kenichi Handa <handa@m17n.org>
16393
16394 * composite.c (fill_gstring_header): Don't check FROM and TO here.
16395 (composition_compute_stop_pos): Fix handling of static composition.
16396 (Fcomposition_get_gstring): Check FROM and TO at first.
16397
163982008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
16399
16400 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
16401 mixup (YAILOM).
16402
164032008-09-17 Chong Yidong <cyd@stupidchicken.com>
16404
16405 * indent.c (Fvertical_motion): Use position reported by iterator
16406 instead of PT for determining screen motion (bug#943).
16407
164082008-09-17 Romain Francoise <romain@orebokech.com>
16409
16410 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
16411
164122008-09-17 Kenichi Handa <handa@m17n.org>
16413
16414 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
16415
16416 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
16417 if necessary.
16418
164192008-09-16 Kenichi Handa <handa@m17n.org>
16420
16421 * coding.c (make_conversion_work_buffer): Avoid calling
16422 Fget_buffer_create if it is not necessary.
16423
164242008-09-15 Martin Rudalics <rudalics@gmx.at>
16425
16426 * window.c (Fselect_window): Don't update window_select_count and
16427 use_time when norecord is not nil.
16428
164292008-09-14 Kenichi Handa <handa@m17n.org>
16430
16431 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
16432 specpdl_ptr.
16433
164342008-09-12 Kenichi Handa <handa@m17n.org>
16435
16436 * indent.c (scan_for_column): Don't handle automatic composition
16437 if the current buffer is not associated with a window.
16438
16439 * composite.c (composition_reseat_it): If the current buffer is
16440 not associated with a window, ignore the automatic composition.
16441 (find_automatic_composition): Likewise.
16442
164432008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16444
16445 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
16446 (Fgpm_mouse_stop): Use it.
16447 * termhooks.h (close_gpm): Declare.
16448 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
16449 connection if Gpm_GetEvent fails.
16450
16451 * window.c (set_window_buffer): Always preserve current-buffer.
16452
164532008-09-12 Glenn Morris <rgm@gnu.org>
16454
16455 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
16456
164572008-09-11 Glenn Morris <rgm@gnu.org>
16458
16459 * charset.c (charset-map-path): Doc fix.
16460
164612008-09-10 Kenichi Handa <handa@m17n.org>
16462
16463 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
16464
16465 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
16466 compose a grapheme cluster with the preceding base glyph.
16467
16468 * composite.c (composition_compute_stop_pos): Fix previous change.
16469 Reset cmp_it->id to -1 at first.
16470
164712008-09-10 Glenn Morris <rgm@gnu.org>
16472
16473 * Makefile.in (character.o, chartab.o): Fix config.h typo.
16474
164752008-09-09 Chong Yidong <cyd@stupidchicken.com>
16476
16477 * keyboard.c (read_key_sequence): Reapply translation maps when
16478 switching keyboards.
16479
164802008-09-09 Kenichi Handa <handa@m17n.org>
16481
16482 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
16483 characters.
16484
16485 * composite.c (FORWARD_CHAR): Fix calculation
16486 of (POSITION).pos_byte.
16487 (composition_compute_stop_pos): Limit the search of composition to
16488 at most 500 characters ahead. If we reach the limit or find a
16489 newline, set cmp_it->ch to -2 and return 0.
16490 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
16491
164922008-09-08 Kenichi Handa <handa@m17n.org>
16493
16494 * indent.c (Fvertical_motion): Be sure to set
16495 it_overshoot_expected if it.cmp_it.id is non-negative.
16496
164972008-09-07 Andreas Schwab <schwab@suse.de>
16498
16499 * callproc.c (Fcall_process): Don't hold references to string data
16500 across garbage collection. Move initialisation of new_argv down
16501 to avoid compiler bug.
16502
165032008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16504
16505 * process.c (Fsystem_process_attributes): Doc fix.
16506
165072008-09-07 Chong Yidong <cyd@stupidchicken.com>
16508
16509 * callproc.c (Fcall_process): Canonicalize current directory name.
16510
16511 * xdisp.c (move_it_to): When moving by vpos, ensure that the
16512 iterator advances to the next line if the current line ends in a
16513 continued tab.
16514
165152008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
16516
16517 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
16518 member to point to cmp_from.
16519
16520 * xdisp.c: Doc fix for references to gidx data member.
16521
165222008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16523
16524 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
16525
165262008-09-07 Kenichi Handa <handa@m17n.org>
16527
16528 * composite.c (FORWARD_CHAR): Check STOP after
16529 incrementing (POSITION).pos.
16530
165312008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16532
16533 * process.c (Fsystem_process_attributes): Doc fix.
16534
165352008-09-06 Chong Yidong <cyd@stupidchicken.com>
16536
16537 * keyboard.c (Ftop_level): Doc fix.
16538
165392008-09-06 Eli Zaretskii <eliz@gnu.org>
16540
16541 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
16542 minibuffer, don't let lower part of menu invade the echo area.
16543
16544 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
16545 "char *q" to access menu text and advance through it. Revert the
16546 change that displayed ">" instead of ASCII character 0x10.
16547
165482008-09-05 Eli Zaretskii <eliz@gnu.org>
16549
16550 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
16551 toggle boxes and radio buttons on MS-DOS as well.
16552
165532008-09-05 Kenichi Handa <handa@m17n.org>
16554
16555 * composite.c (autocmp_chars): Check lookback count.
16556 (composition_compute_stop_pos): Set cmp_it->lookback.
16557 (composition_reseat_it): Check lookback count.
16558 (struct position_record): New struct.
16559 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
16560 (find_automatic_composition): New function.
16561 (composition_adjust_point): Use find_automatic_composition.
16562
16563 * dispextern.h (struct composition_it): New member lookback.
16564
165652008-09-02 Chong Yidong <cyd@stupidchicken.com>
16566
16567 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
16568 if moving by a single line.
16569
165702008-09-02 Andreas Schwab <schwab@suse.de>
16571
16572 * xterm.c (x_delete_display): Fix merge error.
16573
16574 * fileio.c (Fexpand_file_name): Remove unused variables.
16575
165762008-09-02 Eli Zaretskii <eliz@gnu.org>
16577
16578 * fileio.c (Fexpand_file_name): Copy argument `name' into local
16579 storage on all platforms, not just on DOS_NT.
16580
165812008-09-02 Jason Rumney <jasonr@gnu.org>
16582
16583 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
16584 Ensure mouse is not grabbed after menu is finished.
16585
165862008-09-01 Chong Yidong <cyd@stupidchicken.com>
16587
16588 * xfaces.c (Finternal_set_alternative_font_family_alist)
16589 (Finternal_set_alternative_font_registry_alist): Properly copy
16590 entire alist structure.
16591
165922008-09-01 Kenichi Handa <handa@m17n.org>
16593
16594 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
16595 representative chars of the script is a vector.
16596 (ftfont_list): Handle the case where the representative chars of
16597 the script is a vector.
16598
16599 * character.c (syms_of_character): Docstring of
16600 script-representative-chars fixed.
16601
166022008-08-31 Eli Zaretskii <eliz@gnu.org>
16603
16604 * msdos.c (BUILD_CHAR_GLYPH): New macro.
16605 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
16606 the menu. Allocate larger buffer for `text', to account for
16607 possible ^C characters.
16608
166092008-08-31 Martin Rudalics <rudalics@gmx.at>
16610
16611 * xdisp.c (prepare_menu_bars): Don't call
16612 Vwindow_size_change_functions with arg Qt.
16613
166142008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
16615
16616 * font.h (font_range):
16617 * fileio.c (report_file_error):
16618 * composite.c (composition_update_it): Yet another int/Lisp_Object
16619 mixup (YAILOM).
16620
166212008-08-30 Glenn Morris <rgm@gnu.org>
16622
16623 * data.c (Fmake_variable_frame_local): Doc fix.
16624
16625 * frame.c (Fmodify_frame_parameters): Doc fix.
16626
166272008-08-30 Eli Zaretskii <eliz@gnu.org>
16628
16629 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
16630 needed by GetTokenInformation.
16631 (w32_system_process_attributes): Check return values of all system
16632 APIs.
16633
16634 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
16635 only when the state changes.
16636 (IT_update_begin, IT_update_end): Add termscript trace.
16637
16638 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
16639 clipboard is unavailable. Set dst to NULL if it doesn't point to
16640 malloc'ed data.
16641 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
16642 passing random values to xfree.
16643
16644 * dispnew.c (init_display): Set `tty's association in frame's
16645 parameters alist to the name of the terminal device, if that is known.
16646
166472008-08-29 Jason Rumney <jasonr@gnu.org>
16648
16649 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
16650
166512008-08-29 Eli Zaretskii <eliz@gnu.org>
16652
16653 * composite.c (fill_gstring_body): Avoid compiler warnings.
16654
16655 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
16656 LGLYPH_SET_CODE to avoid compiler warnings.
16657
16658 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
16659
16660 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
16661
16662 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
16663 LGLYPH_SET_CODE.
16664
166652008-08-29 Kenichi Handa <handa@m17n.org>
16666
16667 * fileio.c (report_file_error): Don't downcase the first character
16668 of errstring if it is still unibyte.
16669
166702008-08-29 Kenichi Handa <handa@m17n.org>
16671
16672 These changes are to re-implement the automatic composition so
16673 that it doesn't use text properties.
16674
16675 * Makefile.in (ftfont.o): Depend on composite.h.
16676 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
16677
16678 * character.h (Vunicode_category_table): Extern it.
16679
16680 * character.c (Vunicode_category_table): New variable.
16681 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
16682
16683 * chartab.c (optimize_sub_char_table): Perform more greedy
16684 optimization.
16685
16686 * composite.h (enum composition_method):
16687 Delete COMPOSITION_WITH_GLYPH_STRING.
16688 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
16689 (Vcomposition_function_table): Extern it.
16690 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
16691 (composition_gstring_put_cache, composition_gstring_from_id)
16692 (composition_gstring_p, composition_gstring_width)
16693 (composition_compute_stop_pos, composition_reseat_it)
16694 (composition_update_it, composition_adjust_point): Extern them.
16695 (Fcomposition_get_gstring): EXFUN it.
16696
16697 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
16698 (Vcomposition_function_table)
16699 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
16700 (gstring_hash_table, gstring_work, gstring_work_headers):
16701 New variables.
16702 (gstring_lookup_cache, composition_gstring_put_cache)
16703 (composition_gstring_from_id, composition_gstring_p)
16704 (composition_gstring_width, fill_gstring_header)
16705 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
16706 (composition_reseat_it, composition_update_it)
16707 (composition_adjust_point, Fcomposition_get_gstring): New functions.
16708 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
16709 and gstring_work_headers. DEFVAR_LISP composition-function-table.
16710 Defsubr composition_get_gstring.
16711
16712 * dispextern.h (struct glyph): New union u.cmp. Delete the member
16713 cmp_id.
16714 (struct glyph_string): Delete the member gidx. New members
16715 cmp_id, cmp_from, and cmp_to.
16716 (enum it_method): Delete GET_FROM_COMPOSITION.
16717 (struct composition_it): New struct.
16718 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
16719 Delete c, len, cmp_id, cmp_len in u.comp.
16720
16721 * font.h (enum lgstring_indices): Delete it.
16722 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
16723 (enum lglyph_indices): Likewise.
16724 (font_range): Adjust extern.
16725 (font_fill_lglyph_metrics): Extern it.
16726
16727 * font.c (QCf): New variable.
16728 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
16729 (font_prepare_composition): Delete this function.
16730 (font_range): Type and arguments changed.
16731 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
16732 (font_fill_lglyph_metrics): New function.
16733 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
16734 (syms_of_font): DEFSYM QCf. Delete defsubr for
16735 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
16736 Defsubr Sfont_shape_gstring.
16737
16738 * fontset.h (font_for_char): Extern it.
16739
16740 * fontset.c (font_for_char): New function.
16741
16742 * ftfont.c: Include composite.h.
16743 (ftfont_resolve_generic_family): Add langset "en" to pattern.
16744 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
16745
16746 * indent.c: Include composite.h and dispextern.h.
16747 (check_composition): Delete this function.
16748 (scan_for_column): Handle composition by
16749 composition_compute_stop_pos, composition_reseat_it, and
16750 composition_update_it.
16751 (compute_motion): Likewise.
16752 (Fvertical_motion): Fix checking of composition.
16753
16754 * keyboard.c (adjust_point_for_property): Check composition by
16755 composition_adjust_point.
16756
16757 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
16758 struct glyph_string.
16759
16760 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
16761 (append_composite_glyph): Adjust for the change of struct it and
16762 struct glyph.
16763 (produce_composite_glyph): Likewise.
16764
16765 * w32term.c (x_draw_composite_glyph_string_foreground):
16766 Adjust for the change of struct glyph_string.
16767 (x_draw_glyph_string): Likewise.
16768
16769 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
16770 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
16771
16772 * xdisp.c: Include font.h.
16773 (it_props): Delete the entry for Qauto_composed.
16774 (init_iterator): Initialize it->cmp_it.id to -1.
16775 (compute_stop_pos): Call composition_compute_stop_pos.
16776 (face_before_or_after_it_pos): Adjust for the change of struct it.
16777 (handle_auto_composed_prop): Delete it.
16778 (handle_composition_prop): Handle only static composition.
16779 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
16780 from xassert. Initialize it->cmp_it.stop_pos.
16781 (push_it): Adjust for the change of struct it.
16782 (pop_it): Likewise.
16783 (get_next_element): Delete next_element_from_composition.
16784 (CHAR_COMPOSED_P): New macro.
16785 (get_next_display_element): For automatic composition, get a face
16786 from the font in the glyph-string.
16787 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
16788 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
16789 (next_element_from_string): Check if the character at the current
16790 position is composed by CHAR_COMPOSED_P.
16791 (next_element_from_buffer): Likewise.
16792 (next_element_from_composition): Adjust for the change of struct it.
16793 Update it->cmp_it.
16794 (dump_glyph): Adjust for the change of struct glyph.
16795 (fill_composite_glyph_string): Adjust for the change of struct
16796 it and struct glyph. Don't handle automatic composition here.
16797 (fill_gstring_glyph_string): New function.
16798 (x_get_glyph_overhangs): Handle automatic composition.
16799 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
16800 (BUILD_GSTRING_GLYPH_STRING): New macro.
16801 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
16802 automatic composition.
16803 (append_composite_glyph): Adjust for the change of struct it and
16804 struct glyph.
16805 (x_produce_glyphs): Adjust for the change of struct it.
16806
16807 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16808 the change of struct glyph_string.
16809 (x_draw_glyph_string): Likewise.
16810
168112008-08-29 Glenn Morris <rgm@gnu.org>
16812
16813 * buffer.c (word-wrap): Doc fix.
16814 * xdisp.c (truncate-partial-width-windows): Doc fix.
16815 Increase default to 50.
16816
168172008-08-29 Chong Yidong <cyd@stupidchicken.com>
16818
16819 * xdisp.c (update_tool_bar_unwind): New function.
16820 (update_tool_bar): Temporarily set selected frame before building
16821 tool-bar items.
16822
168232008-08-28 Michael Albinus <michael.albinus@gmx.de>
16824
16825 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
16826 snprintf, respectively.
16827 (xd_append_arg): Convert strings with Fstring_make_unibyte.
16828
168292008-08-28 Chong Yidong <cyd@stupidchicken.com>
16830
16831 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
16832 LDFLAGS to GNUstep CC invocation.
16833
168342008-08-27 Chong Yidong <cyd@stupidchicken.com>
16835
16836 * indent.c (Fvertical_motion): Revert last change. Handle the
16837 general case where we are moving forward, and PT spans multiple
16838 screen lines.
16839
16840 * eval.c (find_handler_clause): Temporarily increase
16841 max-lisp-eval-depth while printing the backtrace buffer, to
16842 guarantee that help-mode code can run.
16843
168442008-08-27 Eli Zaretskii <eliz@gnu.org>
16845
16846 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
16847 colors under -rv.
16848 (IT_set_frame_parameters): Don't swap foreground and background
16849 colors if `(reverse . t)' is present in the frame properties.
16850 (internal_terminal_init): Call init_frame_faces only for the
16851 initial frame.
16852
168532008-08-27 Andreas Schwab <schwab@suse.de>
16854
16855 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
16856
168572008-08-27 Andreas Schwab <schwab@suse.de>
16858
16859 * search.c (search_buffer): Set char_base to zero only at the end.
16860
168612008-08-27 Kenichi Handa <handa@m17n.org>
16862
16863 * fileio.c (report_file_error): Fix handling of multibyte error string.
16864
168652008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
16866
16867 * xterm.c (x_term_init): Temporarily hide the partially
16868 initialized terminal while calling vendor-specific-keysyms.
16869
168702008-08-26 Eli Zaretskii <eliz@gnu.org>
16871
16872 * msdos.c (internal_terminal_init): Most initializations done only
16873 once, especially initial_screen_colors[] and termscript open.
16874
168752008-08-26 Chong Yidong <cyd@stupidchicken.com>
16876
16877 * eval.c (Fcondition_case): Doc fix.
16878
16879 * widgetprv.h (EmacsFramePart): Change font member to the new font
16880 struct.
16881
16882 * widget.c: Include character.h and font.h for XSETFONT.
16883 (setup_frame_gcs): Compute X font id from font struct, just once.
16884
168852008-08-26 Eli Zaretskii <eliz@gnu.org>
16886
16887 * term.c (get_named_tty): Fix last change.
16888
168892008-08-26 Chong Yidong <cyd@stupidchicken.com>
16890
16891 * indent.c (Fvertical_motion): If moving forward starting from a
16892 multi-line string, move the iterator to the last line of that string.
16893
168942008-08-25 Eli Zaretskii <eliz@gnu.org>
16895
16896 * frame.c (do_switch_frame): Mark previously displayed frame as
16897 obscured for FRAME_MSDOS_P frames as well.
16898
168992008-08-24 Eli Zaretskii <eliz@gnu.org>
16900
16901 * frame.c (make_terminal_frame): Initialize f->terminal,
16902 f->terminal->reference_count, and scroll bars on MS-DOS as well.
16903 Set the top frame to newly created frame.
16904 (Fmake_terminal_frame): Reuse the_only_display_info.
16905
16906 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
16907 estimating available memory.
16908
169092008-08-23 David Reitter <david.reitter@gmail.com>
16910
16911 * nsterm.m (ns_draw_window_cursor): Don't call
16912 NSDisableScreenUpdates and NSEnableScreenUpdates on
16913 non-NS_IMPL_COCOA systems.
16914
169152008-08-23 Andreas Schwab <schwab@suse.de>
16916
16917 * process.c (procfs_system_process_attributes): Fix use of
16918 uninitialized variables.
16919
169202008-08-23 Eli Zaretskii <eliz@gnu.org>
16921
16922 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
16923
16924 * dispnew.c (init_display): Remove MS-DOS specific conditions for
16925 calling tty-set-up-initial-frame-faces.
16926
16927 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
16928 Allow MSDOS frames along with X frames.
16929
16930 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
16931 addition to output_termcap.
16932
16933 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
16934
16935 * termchar.h (FRAME_TTY): Support output_msdos_raw.
16936 (struct tty_display_info) [MSDOS]: Add fields related to mouse
16937 highlight.
16938
16939 * process.c [!subprocesses]: Define QCname.
16940 (syms_of_process): Intern and staticpro it.
16941
16942 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
16943 Adjust for changes in encoding/decoding routines.
16944 Use encode_coding_object and decode_coding_object instead of
16945 encode_coding and decode_coding.
16946
16947 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
16948
16949 * dosfns.c: Include frame.h before termhooks.h.
16950 (dos_cleanup): Use CURTTY ()->termscript instead of a global
16951 variable termscript.
16952
16953 * s/msdos.h (USER_FULL_NAME): Define.
16954 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
16955
16956 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
16957 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
16958 pw->pw_gecos.
16959
16960 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
16961 SELECTED_FRAME as additional (1st) argument.
16962 (tty_read_avail_input): Handle output_msdos_raw in
16963 addition to output_termcap.
16964
16965 * msdos.c: Include frame.h before termhooks.h.
16966 (mouse_on, mouse_off, mouse_moveto, mouse_init)
16967 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
16968 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
16969 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
16970 (IT_set_terminal_modes, IT_reset_terminal_modes)
16971 (IT_set_frame_parameters): Use tty->termscript instead of a global
16972 variable termscript.
16973 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
16974 global variable terminal_coding. Don't refer to
16975 Vnonascii_translation_table.
16976 (internal_terminal_init): Set Vwindow_system in current_kboard.
16977 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
16978 Announce date and time of session start, if termscript is open.
16979 Don't zero out the_only_display_info (it is done in
16980 term.c:init_tty). Open termscript only of not already open.
16981 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
16982 here instead of dos_ttraw. Don't initialize display if this is an
16983 initial tty. Don't set FRAME_FONT.
16984 (Vwindow_system_version): Bump to 23.
16985 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
16986 is available, set up mouse_position_hook.
16987 (dos_ttraw, IT_set_terminal_modes): If called with initial
16988 terminal, do nothing.
16989 (IT_set_frame_parameters): Handle the Qtty_type frame
16990 parameter by calling internal_terminal_init.
16991 (dos_set_window_size, show_mouse_face)
16992 (clear_mouse_face, IT_note_mode_line_highlight)
16993 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
16994 (dos_rawgetc): Use tty_display_info instead of x_display_info.
16995 (initialize_msdos_display): New function.
16996 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
16997 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
16998 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
16999 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
17000 Accept additional argument: a pointer to a frame. Update all callers.
17001 (request_sigio, unrequest_sigio): Don't define, now defined on
17002 sysdep.c.
17003 (IT_write_glyphs): Rewrite to use encode_terminal_code.
17004
17005 * term.c [MSDOS]: Include msdos.h.
17006 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
17007 conditional to DOS_NT. Allow only one call to this function in a
17008 session. Don't allocate a new struct tty_display_info; instead,
17009 reuse the_only_display_info. Call get_tty_size to get screen
17010 dimensions. Call init_baud_rate to set bad_rate.
17011 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
17012 (Fsuspend_tty) [MSDOS]: Don't close input and output.
17013 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
17014 (get_tty_terminal, get_named_tty, Ftty_type)
17015 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
17016 output_termcap.
17017 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
17018 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
17019 only when subprocesses are supported.
17020
17021 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
17022 f->output_data.x.
17023 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
17024 terminal devices.
17025
17026 * msdos.h: Remove definition of struct x_display_info and struct
17027 x_output.
17028 (FRAME_FONT): Use output_data.tty.
17029 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
17030 (struct x_display_info): Rename from display_info. Update all users in
17031 msdos.c.
17032 (struct x_output): Remove background_pixel and foreground_pixel.
17033 (the_only_display_info): Rename from the_only_x_display.
17034 (dos_ttraw): Update prototype.
17035
17036 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
17037 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
17038
170392008-08-23 Jason Rumney <jasonr@gnu.org>
17040
17041 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
17042 (fn_TIFFSetDirectory): New library function used.
17043 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
17044 (tiff_load): Use :index to select among multiple images. Set count
17045 property when multiple images exist.
17046 (gif_format): Use :index, not :image.
17047
170482008-08-23 Chong Yidong <cyd@stupidchicken.com>
17049
17050 * xdisp.c (try_scrolling): Check INT_MAX instead of
17051 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
17052 to obtain INT_MAX.
17053
170542008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
17055
17056 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
17057
170582008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
17059
17060 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
17061 GNUstep library location.
17062
170632008-08-21 Chong Yidong <cyd@stupidchicken.com>
17064
17065 * xfaces.c (x_update_menu_appearance): Check validity of menu font
17066 before using it.
17067
17068 * puresize.h (BASE_PURESIZE): Increase to 1250000.
17069
170702008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
17071
17072 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
17073 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
17074 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
17075 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
17076 (EmacsApp-cursor_blink_handler): Remove declaration.
17077 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
17078 match 01 Feb 2008 changes in xterm.c.
17079 (ns_read_socket): Add cast to avoid warning.
17080 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
17081 GNUstep.
17082
170832008-08-20 Chong Yidong <cyd@stupidchicken.com>
17084
17085 * xselect.c (x_get_foreign_selection): Return nil if desired
17086 selection could not be obtained, instead of signalling an error.
17087
170882008-08-20 David Reitter <david.reitter@gmail.com>
17089
17090 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
17091 * nsterm.m: Remove ns-specific code for cursor blinking.
17092 (ns_draw_window_cursor): Clear cursor properly rather than
17093 redrawing the area. Respect width of bar cursors.
17094 These changes enable the use of generic blink-cursor-mode and
17095 generic cursor types in NS and support smooth cursor movements (do
17096 not blink off after command).
17097 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
17098 Nextstep, too.
17099
171002008-08-19 Kenichi Handa <handa@m17n.org>
17101
17102 * font.c (Vfont_log_deferred): New variable.
17103 (font_add_log): Check Vfont_log_deferred.
17104 (font_deferred_log): New function.
17105
17106 * font.h (font_deferred_log): Extern it.
17107
17108 * fontset.c (reorder_font_vector): Use encoding charset of fonts
17109 for sorting.
17110 (face_for_char): Use deferred log.
17111
171122008-08-18 Kenichi Handa <handa@m17n.org>
17113
17114 * fontset.c (face_for_char): Add font log.
17115
17116 * font.c (font_add_log): Add the font properties :script, :lang,
17117 and :otf in the log.
17118
171192008-08-17 Chong Yidong <cyd@stupidchicken.com>
17120
17121 * xdisp.c: Remove dead code.
17122 (handle_invisible_prop, next_overlay_string): Defer call to
17123 setup_for_ellipsis.
17124 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
17125
171262008-08-15 Chong Yidong <cyd@stupidchicken.com>
17127
17128 * xfaces.c (lookup_derived_face): Properly handle possible zero
17129 return value of get_lface_attributes.
17130 (merge_faces): Don't tell lookup_derived_face to signal an error
17131 if face is not found.
17132
17133 * dired.c (Fdirectory_files): Doc fix.
17134
17135 * process.c (make_process): Initialize kill_without_query struct
17136 member.
17137
171382008-08-15 Eli Zaretskii <eliz@gnu.org>
17139
17140 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
17141 Alternative calculation of totphys for Visual Studio 6.
17142
17143 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
17144
17145 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
17146 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
17147 All users changed.
17148 (stat): Only root directory passed to GetDriveType. Allow RAM
17149 disk as well as local fixed disk when w32-get-true-file-attributes
17150 is set to `local'.
17151 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
17152 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
17153 (w32_cached_id, w32_add_to_cache): New functions.
17154 (get_name_and_id): Look account names in the cache before calling
17155 lookup_account_sid.
17156 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
17157 New initialization flags.
17158 (globals_of_w32): Initialize them to zero.
17159 (w32_system_process_attributes): Use w32_cached_id and
17160 w32_add_to_cache.
17161
171622008-08-14 Lawrence Mitchell <wence@gmx.li>
17163
17164 * lread.c (Fread_char, Fread_char_exclusive): If no character
17165 event is read before timeout is reached, return nil, rather than
17166 converting to a number.
17167
171682008-08-14 Chong Yidong <cyd@stupidchicken.com>
17169
17170 * fns.c (use_dialog_box): Doc fix.
17171
17172 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
17173 on OS X.
17174
171752008-08-13 Chong Yidong <cyd@stupidchicken.com>
17176
17177 * frame.c (Qns_parse_geometry): New var.
17178 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
17179
171802008-08-11 Chong Yidong <cyd@stupidchicken.com>
17181
17182 * xdisp.c (x_produce_glyphs): Handle the case when font has no
17183 space character in calculating tabs.
17184
171852008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
17186
17187 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
17188
171892008-08-10 Glenn Morris <rgm@gnu.org>
17190
17191 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
17192 silence gcc "limited range of data type" warnings in some
17193 make_fixnum_or_float calls.
17194
171952008-08-09 Eli Zaretskii <eliz@gnu.org>
17196
17197 * w32.c (w32_system_process_attributes): If the process does not
17198 exist, return nil.
17199
17200 * w32.c: Include thelp32.h, psapi.h and coding.h.
17201 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
17202 declarations.
17203 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
17204 (Process32Next_Proc): New typedefs.
17205 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
17206 (g_b_init_process32_next, g_b_init_open_thread_token)
17207 (g_b_init_impersonate_self, g_b_init_revert_to_self)
17208 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
17209 (g_b_init_get_process_working_set_size)
17210 (g_b_init_global_memory_status_ex): New static variables.
17211 (globals_of_w32): Initialize them.
17212 (create_toolhelp32_snapshot, process32_first, process32_next)
17213 (open_thread_token, impersonate_self, revert_to_self)
17214 (get_process_memory_info, get_process_working_set_size)
17215 (global_memory_status, global_memory_status_ex): New wrapper
17216 functions.
17217 (w32_list_system_processes, w32_system_process_attributes)
17218 (enable_privilege, restore_privilege, ltime, process_times):
17219 New functions.
17220 (convert_time_raw): New function.
17221 (convert_time): Remove conversion of FILETIME into time in 100
17222 nsec units, call convert_time_raw instead.
17223
17224 * process.h (w32_list_system_processes, w32_system_process_attributes):
17225 Add prototypes.
17226 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
17227 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
17228 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
17229 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
17230
17231 * process.c (Fsystem_process_attributes): Doc fix.
17232
172332008-08-08 Chong Yidong <cyd@stupidchicken.com>
17234
17235 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
17236 a continued multi-char glyph; if so, advance to the actual glyph.
17237
172382008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
17239
17240 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
17241
17242 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
17243 (.m.o): Use it.
17244 * config.in: Regenerate.
17245
172462008-08-07 Chong Yidong <cyd@stupidchicken.com>
17247
17248 * xdisp.c (redisplay_window): Revert last change.
17249 (try_window): Check bottom scroll margin too.
17250
172512008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17252
17253 * config.in: Regenerate.
17254
17255 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
17256 -list-load-path-shadows'.
17257 (nsgui.h): Reduce number of things depending on it.
17258
172592008-08-06 Chong Yidong <cyd@stupidchicken.com>
17260
17261 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
17262 instead of window-end which does the wrong thing at eob.
17263 (try_cursor_movement): Minor optimization.
17264 (redisplay_window): If scroll margin is defined, don't assume
17265 window doesn't need scrolling.
17266
172672008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17268
17269 * config.in: Regenerate.
17270
17271 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
17272 (mostlyclean): Don't delete *.d under NS.
17273
17274 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
17275
172762008-08-06 Kenichi Handa <handa@m17n.org>
17277
17278 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
17279
172802008-08-06 Andreas Schwab <schwab@suse.de>
17281
17282 * config.in: Regenerate.
17283
172842008-08-05 Chong Yidong <cyd@stupidchicken.com>
17285
17286 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
17287 forcing a window start.
17288
17289 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
17290 (auto_save_1): Update modtime when auto-save-list-file-name is on.
17291
172922008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17293
17294 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
17295 argument.
17296
172972008-08-05 Juanma Barranquero <lekktu@gmail.com>
17298
17299 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
17300 <scroll-down-aggressively, before-change-functions>:
17301 <after-change-functions>: Reflow docstrings.
17302
173032008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17304 Ken Raeburn <raeburn@gnu.org>
17305
17306 Dock menu customization, based on a patch by Ken Raeburn, plus some
17307 other fixes.
17308 * nsmenu.m (dockMenu): New variable.
17309 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
17310
17311 * nsterm.h (dockMenu): Declare.
17312
17313 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
17314 (ns_term_init): Initialize dockMenu.
17315 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
17316 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
17317 left.
17318
17319 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
17320
173212008-08-04 Chong Yidong <cyd@stupidchicken.com>
17322
17323 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
17324
17325 * config.in: Regenerate.
17326
173272008-08-04 Seiji Zenitani <zenitani@mac.com>
17328
17329 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
17330
173312008-08-04 Chong Yidong <cyd@stupidchicken.com>
17332
17333 * nsterm.h (find_and_call_menu_selection): Fix prototype.
17334
173352008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17336
17337 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
17338
17339 * keyboard.h: Comment an #endif.
17340
17341 * lisp.h (have_menus_p): Adjust comment.
17342
17343 * menu.c (find_and_return_menu_selection): Fix comparison with
17344 client_data.
17345
17346 * nsmenu.m (popup_activated_flag): New variable.
17347 (popup_activated): New function.
17348 (menu-or-popup-active-p): New exported lisp definition.
17349 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
17350 when popup done.
17351 (ns_popup_dialog): Set popup_activated_flag.
17352
17353 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
17354 version for GNUstep (handled by conditional typedef in nsterm.m).
17355 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
17356 in rgb.txt).
17357
17358 * process.c (init_process): Use DARWIN_OS, not DARWIN.
17359
17360 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
17361
17362 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
17363
17364 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
17365 shortcircuit if popup_activated like GTK and X toolkit.
17366
17367 * m/inter386.h: Change DARWIN to DARWIN_OS.
17368
17369 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
17370 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
17371 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
17372 Expand comment on NO_SOCK_SIGIO.
17373
173742008-08-03 Chong Yidong <cyd@stupidchicken.com>
17375
17376 * nsterm.m (windowDidResize): Remove stopModal call.
17377
173782008-08-03 Andreas Schwab <schwab@suse.de>
17379
17380 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
17381 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
17382
173832008-08-02 Chong Yidong <cyd@stupidchicken.com>
17384
17385 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
17386 Don't use uninitialized pointer variable when using getrlimit.
17387
173882008-08-02 Jason Rumney <jasonr@gnu.org>
17389
17390 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
17391
173922008-08-02 Eli Zaretskii <eliz@gnu.org>
17393
17394 * alloc.c (NSTATICS): Bump to 0x640.
17395
17396 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
17397
17398 * lisp.h: Add prototype for directory_files_internal.
17399
17400 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
17401 New functions.
17402 (syms_of_process): Defsubr them. Add initializations for various
17403 Q* symbols used in procfs_system_process_attributes.
17404 (procfs_list_system_processes, procfs_system_process_attributes)
17405 [HAVE_PROCFS]: New functions.
17406 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
17407 (procfs_get_total_memory): New functions.
17408
174092008-08-01 Juanma Barranquero <lekktu@gmail.com>
17410
17411 * xfaces.c (Fx_load_color_file): Fix previous change;
17412 it is #ifdef WINDOWSNT, not WINDOWS_NT.
17413
174142008-08-01 Michael Albinus <michael.albinus@gmx.de>
17415
17416 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
17417
174182008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17419
17420 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
17421
174222008-08-01 Chong Yidong <cyd@stupidchicken.com>
17423
17424 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
17425
17426 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
17427 define NSApplicationDelegateReplySuccess.
17428 (EmacsView -converstationIdentifier): Use long instead of
17429 NSInteger for GNUstep, since it doesn't have NSInteger.
17430
17431 * xmenu.c: Revert last change.
17432
17433 * keyboard.h: Fix last change.
17434
174352008-08-01 Juanma Barranquero <lekktu@gmail.com>
17436
17437 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
17438 on Windows.
17439
174402008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17441
17442 Warning clearing and clean-up in NS port.
17443 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
17444 Add prototypes.
17445 * nsgui.h (FACE_DEFAULT): Remove, unused.
17446 (XGCValues): Change colors to unsigned long.
17447 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
17448 nsterm.m.
17449 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
17450 (ns_list_fonts): Remove, unused.
17451 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
17452 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
17453 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
17454 (nsfont_draw): Compare face colors to 0, not nil.
17455 * nsmenu.m (struct widget_value): Drop unneeded declaration.
17456 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
17457 (-addSubmenuWithTitle:): Use NSMenuItem class.
17458 (ns_popup_menu): Use NO, not NULL, for enabled setting.
17459 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
17460 (ns_clip_to_row): Make gc arg a BOOL.
17461 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
17462 ns_clip_to_row() call.
17463 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
17464 used). Cast FRAME_FONT assignments.
17465 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
17466 (ns_string_to_lispmod): Change arg to const char.
17467 (ns_term_init): Use NSMenuItem class.
17468 (EmacsApp -openFile:): Move to different section of file.
17469 (EmacsApp -application:openFiles:): Don't return a value, call
17470 -replyToOpenOrPrint:.
17471 (EmacsView -keyDown:): Fix up cast.
17472 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
17473 (EmacsView -menuDown:): Cast tag in call to
17474 find_and_call_menu_selection().
17475 (ns_list_fonts): Remove, unused.
17476 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
17477 (ns_fontname_to_xlfd): Make static.
17478 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
17479 Remove prototypes (now in keyboard.h).
17480 (next_menubar_widget_id): Remove, unused.
17481 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
17482 Remove prototypes (now in keyboard.h).
17483 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
17484
174852008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
17486
17487 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
17488 (floatfns.o): Depend on syssignal.h.
17489 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
17490
17491 * systty.h: Fix previous change that removed BSD_TERMIOS.
17492 Add comments to #ifdefs.
17493
174942008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17495
17496 * w32fns.c (w32-load-color-file): Remove.
17497 (x-open-connection): Use renamed Fx_load_color_file.
17498 * xfaces.c (x-load-color-file): Add.
17499 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
17500 Emacs.clr.
17501 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
17502
175032008-07-31 Michael Albinus <michael.albinus@gmx.de>
17504
17505 * dbusbind.c (Fdbus_call_method_asynchronously)
17506 (Fdbus_method_error_internal): New defuns.
17507 (xd_read_message): Handle also reply messages.
17508 (Vdbus_registered_functions_table): Extend docstring.
17509
175102008-07-31 Juanma Barranquero <lekktu@gmail.com>
17511
17512 * keyboard.c (gobble_input): Fix previous change.
17513
175142008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17515
17516 * bitmaps/README:
17517 * xfns.c:
17518 * termcap.c:
17519 * term.c:
17520 * syswait.h:
17521 * systty.h:
17522 * systime.h:
17523 * syssignal.h:
17524 * sysdep.c:
17525 * process.h:
17526 * process.c:
17527 * print.c:
17528 * ndir.h:
17529 * lread.c:
17530 * keyboard.c:
17531 * getpagesize.h:
17532 * floatfns.c:
17533 * fileio.c:
17534 * emacs.c:
17535 * doc.c:
17536 * dispnew.c:
17537 * dired.c:
17538 * data.c:
17539 * callproc.c:
17540 * buffer.c:
17541 * README:
17542 * Makefile.in:
17543 * s/template.h:
17544 * s/msdos.h:
17545 * m/vax.h: Remove VMS support.
17546 * s/vms.h:
17547 * vlimit.h:
17548 * uaf.h:
17549 * temacs.opt:
17550 * param.h:
17551 * ioctl.h: Remove file.
17552
175532008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17554
17555 * s/ms-w32.h (MULTI_KBOARD): Remove.
17556 * xterm.c:
17557 * xselect.c:
17558 * xfns.c:
17559 * window.c:
17560 * w32term.c:
17561 * w32fns.c:
17562 * terminal.c:
17563 * termhooks.h:
17564 * term.c:
17565 * sysdep.c:
17566 * keyboard.h:
17567 * keyboard.c:
17568 * frame.h:
17569 * frame.c:
17570 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
17571 * config.in: Regenerate.
17572
175732008-07-30 Jason Rumney <jasonr@gnu.org>
17574
17575 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
17576
17577 * w32font.c (w32font_encode_char): Leave as unicode if in range.
17578 (w32font_open_internal): Get unicode version of textmetrics.
17579 Don't enable or disable glyph indices here.
17580 (w32font_open): Disable use of glyph indices.
17581
17582 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
17583
175842008-07-30 Chong Yidong <cyd@stupidchicken.com>
17585
17586 * minibuf.c (Vread_buffer_function): Doc fix.
17587
175882008-07-30 John Paul Wallington <jpw@pobox.com>
17589
17590 * minibuf.c (read_buffer_completion_ignore_case): New var.
17591 (Fread_buffer): Use it.
17592
175932008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
17594
17595 * systty.h (sensemode): Remove empty #if. Remove reference to
17596 BSD_TERMIOS, unused.
17597
17598 * sysdep.c: Remove reference to DGUX.
17599 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
17600
17601 * config.in: Regenerate.
17602
176032008-07-30 Jason Rumney <jasonr@gnu.org>
17604
17605 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
17606
176072008-07-29 Jason Rumney <jasonr@gnu.org>
17608
17609 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
17610 is populated.
17611 (uniscribe_encode_char): Always use uniscribe.
17612 Avoid using context if cache is populated.
17613
176142008-07-29 Jan Djärv <jan.h.d@swipnet.se>
17615
17616 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
17617 open menu.
17618
17619 * gtkutil.c (menu_nav_ended): Remove.
17620 (create_menus): Remove signal connect for menu_nav_ended.
17621
176222008-07-28 Chong Yidong <cyd@stupidchicken.com>
17623
17624 * xdisp.c (redisplay_window): Check return value of
17625 compute_window_start_on_continuation_line before forcing a window
17626 start.
17627
176282008-07-28 Jason Rumney <jasonr@gnu.org>
17629
17630 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
17631
17632 * w32term.c (w32_enable_unicode_output, cleartype_active):
17633 Remove obsolete display options.
17634 (x_draw_glyph_string_background): Don't use old cleartype_active
17635 workaround.
17636 (w32_initialize): Remove cleartype_active initialization.
17637 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
17638
176392008-07-28 Andreas Schwab <schwab@suse.de>
17640
17641 * lisp.h (init_weak_hash_tables, syms_of_font)
17642 (xd_read_queued_messages, syms_of_dbusbind): Declare.
17643 (remove_hash_entry): Don't declare.
17644 * eval.c (maybe_call_debugger): Make static and move before use.
17645 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
17646 * xdisp.c: Include "gtkutil.h" if USE_GTK.
17647 * xterm.h (x_set_frame_alpha): Declare.
17648
176492008-07-28 Jan Djärv <jan.h.d@swipnet.se>
17650
17651 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
17652 (create_menus): Connect selection-done to menu_nav_ended.
17653
176542008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
17655
17656 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
17657 Set Vx_resource_name to a fallback. Replace read of 'buffered'
17658 parameter with read of 'alpha' one.
17659 (Qns_frame_parameter): Remove.
17660 * nsselect.m (selection-coding-system)
17661 (next-selection-coding-system, Vselection_coding_system)
17662 (Vnext_selection_coding_system): Drop.
17663
176642008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
17665
17666 * nsfns.m (do-applescript, do_applescript): Rename to
17667 ns-do-applescript, ns_do_applescript, and move within file.
17668
176692008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17670
17671 Remove support for Mac Carbon.
17672 * mactoolbox.c:
17673 * macterm.h:
17674 * macterm.c:
17675 * macselect.c:
17676 * macmenu.c:
17677 * macgui.h:
17678 * macfns.c:
17679 * mac.c: Remove file.
17680 * s/darwin.h:
17681 * m/intel386.h:
17682 * xfaces.c:
17683 * xdisp.c:
17684 * window.c:
17685 * tparam.c:
17686 * termhooks.h:
17687 * termcap.c:
17688 * term.c:
17689 * syssignal.h:
17690 * sysselect.h:
17691 * sysdep.c:
17692 * process.c:
17693 * lread.c:
17694 * lisp.h:
17695 * keyboard.c:
17696 * image.c:
17697 * fringe.c:
17698 * frame.h:
17699 * frame.c:
17700 * fontset.c:
17701 * font.h:
17702 * font.c:
17703 * fns.c:
17704 * fileio.c:
17705 * emacs.c:
17706 * dispnew.c:
17707 * dispextern.h:
17708 * config.in:
17709 * atimer.c:
17710 * Makefile.in: Remove code for Carbon.
17711
177122008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17713
17714 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
17715
177162008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17717
17718 * macterm.h (kCGBitmapByteOrder32Host): New define for
17719 non-universal SDKs.
17720
17721 * image.c (mac_create_cg_image_from_image, image_load_image_io)
17722 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
17723
17724 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
17725 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
17726
177272008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
17728
17729 * w32inevt.c: Include dispextern.h.
17730
177312008-07-26 Andreas Schwab <schwab@suse.de>
17732
17733 * print.c (print_object): Fix off-by-one in last change.
17734
177352008-07-25 Juanma Barranquero <lekktu@gmail.com>
17736
17737 * term.c (syms_of_term): Don't initialize default_orig_pair,
17738 default_set_foreground and default_set_background on Windows.
17739
177402008-07-25 Jason Rumney <jasonr@gnu.org>
17741
17742 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
17743 ScriptItemize. Clean up return value checking. Remove unused
17744 variables.
17745 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
17746 shaping engine.
17747
17748 * w32font.c (w32font_has_char): Handle the case where we can't
17749 determine the script for a character.
17750
177512008-07-25 Chong Yidong <cyd@stupidchicken.com>
17752
17753 * term.c (syms_of_term): Initialize default_orig_pair,
17754 default_set_foreground, and default_set_background.
17755
17756 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
17757 clash (bug#86).
17758 (getloadavg): Callers changed.
17759
17760 * image.c (svg_load_image): Fix last change.
17761 (svg_load_image): Use rsvg_handle_get_dimensions to check that
17762 image size is valid. Use g_object_unref instead of deprecated
17763 rsvg_handle_free to free rsvg handle.
17764 (x_from_xcolors): Don't initialize pixmap (silence compiler).
17765
177662008-07-25 Jason Rumney <jasonr@gnu.org>
17767
17768 * w32font.c (w32font_encode_char): Encode characters outside BMP as
17769 surrogates before looking up glyph index.
17770 (w32font_text_extents): Encode as surrogates if falling back to
17771 functions that need UTF-16 wide chars.
17772
17773 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
17774 BMP as surrogates before looking up glyph index.
17775
177762008-07-25 Chong Yidong <cyd@stupidchicken.com>
17777
17778 * image.c (svg_load_image): Check for failure in return value of
17779 rsvg_handle_get_pixbuf. Free rsvg handle when done.
17780
177812008-07-25 Jason Rumney <jasonr@gnu.org>
17782
17783 * w32font.c (Fx_select_font): Reverse sense of second arg.
17784
177852008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
17786
17787 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
17788 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
17789
17790 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
17791 (PURESIZE): Use it.
17792
177932008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
17794
17795 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
17796 * m/alpha.h (TEXT_END):
17797 * m/ibmrs6000.h (TEXT_END):
17798 * m/macppc.h (TEXT_END):
17799 * s/darwin.h (TEXT_END):
17800 * s/msdos.h (TEXT_END): Remove, unused.
17801 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
17802 * s/cygwin.h: Remove comment.
17803
17804 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
17805 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
17806 * m/intel386.h (DOT_GLOBAL_START):
17807 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
17808 (USG): Remove, file not used on USG platforms.
17809
17810 * Makefile.in (HAVE_X11): Remove empty #else.
17811
178122008-07-24 Andreas Schwab <schwab@suse.de>
17813
17814 * fileio.c (Finsert_file_contents): Properly adjust undo list
17815 after format conversion.
17816
178172008-07-24 Jan Djärv <jan.h.d@swipnet.se>
17818
17819 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
17820 (menu_nav_ended): Remove.
17821 (create_menus): Remove signal connect for menu_nav_ended.
17822 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
17823 create_menus.
17824 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
17825
178262008-07-23 Jason Rumney <jasonr@gnu.org>
17827
17828 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
17829 with opened font.
17830 (w32font_open): Set font type to gdi.
17831
17832 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
17833
178342008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
17835
17836 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
17837 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
17838 defines it.
17839 * unexec.c (ADDR_CORRECT): Define unconditionally.
17840
17841 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
17842
17843 * unexec.c: Remove code depending on !COFF and USG, the file is
17844 not used for such systems.
17845
17846 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
17847 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
17848 (LD_SWITCH_SYSTEM_1): Remove, update users.
17849
17850 * s/darwin.h (DATA_END):
17851 * m/intel386.h (DATA_END):
17852 * m/ibmrs6000.h (DATA_END):
17853 * m/alpha.h (DATA_END): Remove, unused.
17854
17855 * config.in: Regenerate.
17856 * s/ms-w32.h (subprocesses): Define unconditionally.
17857 * s/template.h (subprocesses): Update comment.
17858 * s/vms.h (subprocesses):
17859 * s/usg5-4.h (subprocesses):
17860 * s/hpux10-20.h (subprocesses):
17861 * s/gnu-linux.h (subprocesses):
17862 * s/cygwin.h (subprocesses):
17863 * s/bsd-common.h (subprocesses):
17864 * s/aix4-2.h (subprocesses):
17865 * s/darwin.h (subprocesses): Do not define, defined by default now.
17866
17867 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
17868 Remove all references.
17869 (temacs): Add GNUstep specific ld flags.
17870
17871 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
17872 similarly to what X does.
17873
178742008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
17875
17876 * nsfns.m (x-list-fonts): Remove.
17877 (syms_of_nsfns): Drop the x-list-fonts declaration.
17878 * nsterm.m: Get rid of remaining "//" comments.
17879
178802008-07-22 Chong Yidong <cyd@stupidchicken.com>
17881
17882 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
17883
17884 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
17885 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
17886 (Fns_own_selection_internal, Fx_disown_selection_internal)
17887 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
17888
17889 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
17890 ... */' style of docstrings. Doc fixes.
17891
178922008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17893
17894 * terminfo.c (UP, BC, PC): Undo previous change.
17895
17896 * nsfns.m: Rename ns prefixed functions/variables to the
17897 corresponding x versions. Update references.
17898
178992008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
17900
17901 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
17902
179032008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
17904
17905 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
17906 Remove forwarding functions.
17907 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
17908 non-static.
17909 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
17910 non-static.
17911 (ns_frame_parm_handlers): Use the new names.
17912 (syms_of_nsfns): Move to the end of file.
17913
17914 * nsterm.m (syms_of_nsterm): Move to the end of file.
17915
17916 * dispnew.c (init_display): Remove code for X10.
17917
179182008-07-22 Jason Rumney <jasonr@gnu.org>
17919
17920 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
17921 bare drive.
17922
179232008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
17924
17925 * nsterm.m (syms_of_nsterm): Remove debugging println.
17926
179272008-07-22 David Reitter <david.reitter@gmail.com>
17928
17929 * nsfns.m (do_applescript, F_do_applescript): NS version of the
17930 Carbon implementation of the same functionality: execute arbitrary
17931 AppleScript code.
17932
179332008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
17934
17935 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
17936 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
17937 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
17938 (Fx_display_mm_height, Fx_display_mm_width)
17939 (Fx_display_backing_store, Fx_display_visual_class)
17940 (Fx_display_save_under, Fx_open_connection)
17941 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
17942 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
17943 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
17944 (Fx_display_pixel_width, Fx_display_pixel_height)
17945 (Fx_display_usable_bounds, Fx_display_planes)
17946 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
17947 ... */' style of docstrings.
17948
179492008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
17950
17951 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
17952 on this platform.
17953 (mips):
17954 * m/iris4d.h (mips): Do not define.
17955 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
17956
17957 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
17958
17959 * image.c:
17960 * nsfns.m:
17961 * nsselect.m:
17962 * nsterm.h:
17963 * nsterm.m: Rename ns prefixed functions/variables to the
17964 corresponding x versions. Update references.
17965
17966 * m/ibms390x.h (NO_REMAP): Do not undefine.
17967
17968 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
17969
179702008-07-21 Chong Yidong <cyd@stupidchicken.com>
17971
17972 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
17973 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
17974 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
17975 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
17976 (Fns_display_mm_height, Fns_display_mm_width)
17977 (Fns_display_backing_store, Fns_display_visual_class)
17978 (Fns_display_save_under, Fns_open_connection)
17979 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
17980 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
17981 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
17982 (Fns_display_pixel_width, Fns_display_pixel_height)
17983 (Fns_display_usable_bounds, Fx_display_planes)
17984 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
17985
179862008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
17987
17988 * print.c (print_object): Check print_depth before searching for
17989 circularities.
17990
179912008-07-21 Michael Albinus <michael.albinus@gmx.de>
17992
17993 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
17994 only sprintf.
17995
179962008-07-21 Kenichi Handa <handa@m17n.org>
17997
17998 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
17999
180002008-07-20 Andreas Schwab <schwab@suse.de>
18001
18002 * syntax.c (find_start_pos, find_start_value)
18003 (find_start_value_byte, find_start_begv, find_defun_start)
18004 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
18005
180062008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18007
18008 * s/sol2-3.h: Insert contents of s/sol2.h.
18009 (LD_SWITCH_SYSTEM): Remove redundant definition.
18010 * s/sol2.h: Remove, unused.
18011
180122008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18013
18014 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
18015
180162008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18017
18018 * Makefile.in (ns_appdir): Fix typo in find command.
18019
180202008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18021
18022 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
18023
18024 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
18025 added not supported anymore.
18026
18027 * s/usg5-4-2.h (LIBS_SYSTEM):
18028 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
18029
18030 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18031 * s/lynxos.h (GETPGRP_NO_ARG):
18032 * s/hpux10-20.h (NO_SIOCTL_H):
18033 * s/gnu.h (GETPGRP_NO_ARG):
18034 * s/gnu-linux.h (NO_SIOCTL_H):
18035 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18036 * s/cygwin.h (GETPGRP_NO_ARG):
18037 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
18038 (C_DEBUG_SWITCH): Remove duplicate definition.
18039
18040 * m/ibms390.h: Remove boilerplate comments.
18041
18042 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
18043
18044 * process.c (HAVE_SERIAL): Consolidate ifdefs.
18045 (wait_reading_process_output): Remove code for SunOS, platform not
18046 supported anymore. Use SOLARIS2 instead of sun.
18047
180482008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18049
18050 * font.c (font_open_by_name): Under NS, default lface height to zero.
18051 (font_open_for_lface): Under NS, set size based on frame fontsize.
18052 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
18053 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
18054
180552008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18056
18057 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
18058 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
18059 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
18060 YES/NO.
18061 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
18062 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
18063 * Makefile.in (clean): Clear out build destination dir.
18064
180652008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18066
18067 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
18068 xterm, xselect.
18069 * lisp.h: Remove declaration of hash_remove.
18070 * nsgui.h: Remove redefinitions of hash_remove.
18071 * fns.c (hash_remove): Rename to hash_remove_from_table.
18072
180732008-07-19 Seiji Zenitani <zenitani@mac.com>
18074
18075 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
18076 strdup() the family UTF8String before modifying it.
18077
180782008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18079
18080 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
18081 NS_FACE_BACKGROUND with 0 instead of nil.
18082 * nsfont.m (nsfont_draw): Same.
18083
180842008-07-19 Chong Yidong <cyd@stupidchicken.com>
18085
18086 * nsfns.m (ns_set_background_color): Fix crash.
18087
180882008-07-18 Chong Yidong <cyd@stupidchicken.com>
18089
18090 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
18091
180922008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
18093
18094 * puresize.h (BASE_PURESIZE): Increase to 1240000.
18095
180962008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18097
18098 * gtkutil.c: Include <config.h> instead of "config.h".
18099
18100 * lisp.h (Foverlay_buffer): Add EXFUN.
18101
18102 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
18103 child process to complete child_setup. Undo 2005-09-21 change.
18104
18105 * s/darwin.h: Mention setsid after vfork.
18106
181072008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18108
18109 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
18110 Depend on macgui.h.
18111
18112 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
18113 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
18114
18115 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
18116 and f19.
18117 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
18118
18119 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
18120 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
18121 Remove enumerators.
18122
18123 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
18124 Check if FACE_FROM_ID returns NULL.
18125
181262008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
18127
18128 * w32inevt.c (change_frame_size): Remove extern declaration.
18129 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
18130 change_frame_size.
18131
181322008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18133
18134 * getloadavg.c: Revert last change (2008-07-15).
18135
181362008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18137
18138 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
18139 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
18140 from configure.
18141
181422008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
18143
18144 * s/sol2.h:
18145 * s/sol2-4.h: Reorganize conditionals.
18146
18147 * ecrt0.c: Remove code depending on m68000, not used anymore.
18148
18149 * fns.c (hash_remove): Make static.
18150 * lisp.h (hash_remove): Don't prototype.
18151
18152 * m/ibmrs6000.h:
18153 * m/ibms390x.h:
18154 * m/macppc.h: Remove boilerplate comments.
18155
18156 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
18157 Solaris, which does not need them.
18158
18159 * m/vax.h: Remove comments about unsupported systems.
18160
18161 * s/darwin.h: Reorganize ifdefs.
18162
181632008-07-17 Andreas Schwab <schwab@suse.de>
18164
18165 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
18166
181672008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
18168
18169 Use SDATA. Follow coding convention of placing operators at
18170 beginning of next line rather than end of previous line, and placing
18171 spaces around infix operators.
18172
18173 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
18174 in case it was defined already.
18175 USE @GNUSTEP_MAKEFILES@ rather than envvars.
18176 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
18177 ns_default.
18178 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
18179 Lisp_Objects.
18180 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
18181 (ns_defined_color, ns_color_to_lisp): Declare.
18182 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
18183 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
18184 it's accepted even with USE_LISP_UNION_TYPE.
18185 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
18186 (update_frame_tool_bar): Remove apparently obsolete tests for
18187 non-integerness of f->tool_bar_lines.
18188 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
18189 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
18190 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
18191 (nsfont_open): Don't confuse NULL for Qnil.
18192 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
18193 * menu.h (find_and_call_menu_selection):
18194 * menu.c (find_and_call_menu_selection): Use just int for vector size.
18195 (find_and_return_menu_selection): Always return something.
18196 * frame.h: Include dispextern.h for Display_Info.
18197 (display_x_get_resource): Declare.
18198
181992008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
18200
18201 * syntax.c: Remove stdio.h include accidentally introduced in
18202 Emacs.app commit.
18203 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
18204 NS_IMPL_COCOA.
18205 * keyboard.c (handle_async_input, input_available_signal): Remove
18206 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
18207
182082008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18209
18210 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
18211 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
18212 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
18213 Use SDATA.
18214
18215 * keymap.c: Remove all NS-specific code.
18216 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
18217 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
18218 where_is_preferred_modifier, return a different value depending on how
18219 preferred is the binding.
18220 (where_is_internal): Adjust accordingly.
18221 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
18222 Adjust to new preferred_sequence_p.
18223 (syms_of_keymap): Declare `where-is-preferred-modifier'.
18224 * keyboard.c (parse_solitary_modifier): Not static any more.
18225 * keyboard.h (parse_solitary_modifier): Declare.
18226
182272008-07-16 Andreas Schwab <schwab@suse.de>
18228
18229 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
18230 of easymenu.
18231
182322008-07-16 Chong Yidong <cyd@stupidchicken.com>
18233
18234 * xdisp.c (move_it_in_display_line): Account for word wrap, so
18235 that we don't move off the line.
18236
182372008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18238
18239 * keyboard.c (Qsuper): Remove.
18240 (parse_menu_item): Don't call where_is_internal specially for NS.
18241
182422008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18243
18244 * s/gnu-linux.h: Remove boilerplate comments.
18245
18246 * m/alpha.h (__ELF__): Consolidate conditions.
18247
18248 * m/m68k.h (linux): Use GNU_LINUX instead.
18249 Remove boilerplate comments.
18250
18251 * m/intel386.h: Undo refactoring from previous change.
18252 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
18253 too, remove dead code.
18254 (linux): Use GNU_LINUX instead.
18255
182562008-07-16 Jason Rumney <jasonr@gnu.org>
18257
18258 * w32gui.h: Repeat 26 June changes lost by last change.
18259
182602008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18261
18262 * systty.h: Remove code for Aix on 386, unsupported platform.
18263
18264 * s/ms-w32.h: Remove boilerplate comments.
18265 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
18266
18267 * s/gnu-linux.h (TERM): Remove support.
18268 (HAVE_SYSVIPC): Remove, unused.
18269 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
18270 for this system.
18271
18272 * process.c: Remove support for IRIS, unused.
18273 Remove support for TERM, not relevant anymore.
18274
18275 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
18276 used with the definition.
18277
18278 * s/aix4-2.h (static): Do not undef.
18279
18280 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
18281 only used on Aix.
18282 (HAVE_SYSVIPC): Remove, unused.
18283
18284 * m/hp800.h (CANNOT_DUMP): Do not undef.
18285
18286 * m/alpha.h: Fix comment.
18287
18288 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
18289 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
18290 used by this configuration.
18291 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
18292 * unexec.c: Remove code depending on HPUX and
18293 USG_SHARED_LIBRARIES, not used with this file. Remove code
18294 depending on IRIS, unused. Remove if 0-ed code.
18295
18296 * s/template.h: Remove comments about static.
18297
18298 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
18299 Remove if 0-ed code.
18300 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
18301 were the same as the default.
18302 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
18303 Remove boilerplate comments.
18304 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
18305 (HAVE_SYSVIPC): Remove, unused.
18306 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
18307
18308 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18309 Remove boilerplate comments.
18310 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18311 Remove boilerplate comments.
18312 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18313 Remove boilerplate comments.
18314 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
18315
18316 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
18317 USG systems which do not use DATA_SEG_BITS.
18318 Refactor code. Remove boilerplate comments.
18319
18320 * m/ibms390.h:
18321 * m/m68k.h:
18322 * s/bsd-common.h:
18323 * s/cygwin.h:
18324 * s/darwin.h:
18325 * s/freebsd.h:
18326 * s/gnu.h:
18327 * s/msdos.h: Remove boilerplate comments.
18328
18329 * m/iris4d.h: Remove boilerplate comments and code for systems that
18330 do not use this file.
18331 (IRIS_4D): Remove, unused.
18332
18333 * m/mips.h: Remove boilerplate comments and code for systems that
18334 do not use this file.
18335 (SIGN_EXTEND_CHAR):
18336 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
18337 * unexmips.c: Remove file, unused.
18338
18339 * editfns.c (Fuser_full_name): Replace the only use of
18340 USER_FULL_NAME with its value.
18341 * config.in: Regenerate.
18342
183432008-07-16 David Reitter <david.reitter@gmail.com>
18344
18345 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
18346 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
18347
183482008-07-16 Glenn Morris <rgm@gnu.org>
18349
18350 * emacs.c (system-type): Doc fix.
18351
183522008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
18353
18354 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
18355 If the cache doesn't work, let's fix it, rather than work around it.
18356
183572008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18358
18359 * Makefile.in: Correct additions for nsfont.o in last commit.
18360 * nsfont.m: New file (forgot last commit).
18361
183622008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18363
18364 * callproc.c (set_initial_environment):
18365 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
18366 batch-compiling for bootstrap).
18367
183682008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18369 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18370
18371 * frame.c (make_initial_frame): Call init_frame_faces(f) in
18372 CANNOT_DUMP case -- fix crash due to different init order.
18373
183742008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18375
18376 Changes and additions for NeXTstep windowing system (Cocoa and
18377 GNUstep) support.
18378
18379 * Makefile.in:
18380 * config.in: Support defines and build commands for NS port.
18381 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
18382 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
18383 * dispextern.h: Include nsgui.h and add needed typedefs under NS
18384 windowing.
18385 (struct face): Add synth_ital field.
18386 * dispnew.c: Include nsterm.h when compiling under NS windowing.
18387 (init_display): Initialize Vinitial_window_system to "ns" when so
18388 compiled.
18389 * emacs.c: Include GSConfig.h when compiling under GNUstep.
18390 (display_arg): Use under NS.
18391 (main): Under NS, allocate autorelease pool and handle command line
18392 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
18393 (standard_args): Add NS-specific args.
18394 (shut_down_emacs): Shut down NS terminal if compiled under NS.
18395 * font.c (DEFAULT_ENCODING): New variable.
18396 (font_find_for_lface): Use it.
18397 (syms_of_font): Load syms_of_nsfont under NS.
18398 * font.h: Declare nsfont_driver when compiled under NS.
18399 * fontset.c: When compiling under NS, include nsterm.h.
18400 (fontset_from_font): Autoconstruct fontset under NS.
18401 * frame.c (various): Under NS, include nsterm.h, add Qns window system
18402 symbol, document and use it.
18403 (do_switch_frame): When for_deletion under Cocoa, add
18404 Fraise_frame(Qnil).
18405 (x_set_frame_parameters): Ensure font attribute changes are picked up.
18406 (x_get_arg): Allow "yes" and "no" as boolean values.
18407 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
18408 Qright under Cocoa.
18409 (focus-follows-mouse): Default to 0 under NS.
18410 * frame.h (enum output_method): Add output_ns.
18411 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
18412 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
18413 (FRAME_WINDOW_P): NS-specific definition.
18414 * fringe.c (max_used_fringe_bitmap): Make public.
18415 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
18416 (getloadavg): Use NeXT code under descendant OS's.
18417 * image.c (includes and header section, x_create_bitmap_from_data)
18418 (x_create_bitmap_from_file, free_bitmap_record, image_background)
18419 (image_background_transparent, x_clear_image_1)
18420 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
18421 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
18422 (x_to_xcolors, x_from_xcolors, x_disable_image)
18423 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
18424 other GUIs, including XPM support using code originally written for
18425 Carbon GUI.
18426 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
18427 using NS API.
18428 (image_ascent): Use font metrics macros instead of direct struct field
18429 access.
18430 * keyboard.c (includes): Add nsterm.h when compiling under NS.
18431 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
18432 Also, handle NS as GTK for menu bar purposes.
18433 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
18434 toolkit where they differ.
18435 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
18436 use cachelist, still needed under NS.
18437 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
18438 (struct widget_value): Define it here for menu.c.
18439 * keymap.c (includes): Include modifier internals.
18440 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
18441 NS.
18442 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
18443 support for preferring sequences using certain modifiers, specified by
18444 the FIRSTONLY argument.
18445 * lisp.h (hash_remove): Rename to avoid name clash when compiling
18446 under NS GNUstep implementation.
18447 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
18448 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
18449 * menu.c: Include nsterm.h under NS.
18450 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
18451 (free_menubar_widget_tree_value, update_submenu_strings)
18452 (find_and_call_menu_selection): Treat NS as X and NT.
18453 (find_and_return_menu_selection): New function, used for popup menus.
18454 * nsgui.h:
18455 * nsterm.h:
18456 * nsfns.m:
18457 * nsimage.m:
18458 * nsmenu.m:
18459 * nsselect.m:
18460 * nsterm.m: New files.
18461 * process.c (wait_reading_process_output): Under NS, call ns_select()
18462 instead of plain select().
18463 * syntax.c (char_quoted): Under NS, avoid a crash when called near
18464 beginning of buffer.
18465 * sysselect.h (init_process): Rename when compiling under Cocoa to
18466 avoid name conflict.
18467 * termhooks.h (display_info): Add ns_display_info to union.
18468 * terminal.c (Fterminal_live_p): Add ns to terminal types.
18469 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
18470 COCOA environment.
18471 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
18472 unexec() signature. (Note, this will dump, but the resulting file
18473 crashes; unexosx is used instead; keeping around for reference and
18474 possible aid in getting dump working under GNUstep.)
18475 * w32gui.h (button_type, widget_value): Remove definitions (now in
18476 keyboard.h).
18477 * window.c: Include nsterm.h when compiling under NS.
18478 * xdisp.c (includes): Include nsterm.h when compiling under NS.
18479 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
18480 other GUI windowing systems.
18481 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
18482 GTK.
18483 (x_consider_frame_title): Under NS, set icon type and frame
18484 modified-state indicator; use ns_set_name_as_filename() when using
18485 formatted title.
18486 (update_window_cursor): Make public when compiling under NS.
18487 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
18488 (hourglass_atimer, Vhourglass_delay
18489 * xfaces.c (header section, init_frame_faces, clear_font_table)
18490 (defined_color, unload_color, x_face_list_fonts)
18491 (prepare_face_for_display): Add NS support parallel to other GUIs.
18492 Emulate GCs like other non-X GUIs.
18493 (split_font_name): Don't lowercase font name under NS.
18494 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
18495 under NS.
18496 * s/darwin.h: Add support for compilation under NS.
18497
184982008-07-15 Jason Rumney <jasonr@gnu.org>
18499
18500 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
18501 (w32_show_hourglass): Rename from show_hourglass.
18502 (w32_hide_hourglass): Rename from hide_hourglass.
18503 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
18504 (Vhourglass_delay): Declare extern.
18505 (hourglass_started): Remove.
18506
18507 * xdisp.c (Vhourglass_delay): Remove static.
18508 (hourglass_started, start_hourglass, cancel_hourglass):
18509 Don't include these versions on WINDOWSNT.
18510
185112008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18512
18513 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
18514 variables (formerly in xfns.c).
18515 (show_hourglass, hide_hourglass): New prototypes (same).
18516 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
18517 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
18518 in xfns.c).
18519 (syms_of_xdisp): Declare/initialize display-hourglass,
18520 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
18521 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
18522 formerly in xfns.c.
18523 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18524 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18525 (start_hourglass, cancel_hourglass): Remove.
18526 (show_hourglass, hide_hourglass): Remove prototypes and static
18527 modifiers.
18528 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
18529 hourglass_atimer, hourglass_shown_p declaration/initialization.
18530 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18531 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18532 (start_hourglass, cancel_hourglass): Remove.
18533 (show_hourglass, hide_hourglass): Remove prototypes and static
18534 modifiers.
18535 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
18536 hourglass_atimer, hourglass_shown_p declaration/initialization.
18537 * w32fns.c (display_hourglass_p, Vhourglass_delay)
18538 (DEFAULT_HOURGLASS_DELAY): Remove.
18539 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
18540 hourglass_shown_p declaration/initialization.
18541
185422008-07-14 Jason Rumney <jasonr@gnu.org>
18543
18544 * w32fns.c (w32_get_arg): Remove wrapper function.
18545 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
18546 directly.
18547 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
18548
185492008-07-14 Kenichi Handa <handa@m17n.org>
18550
18551 * xfont.c (xfont_open): Add workaround for X's bug.
18552
185532008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
18554
18555 * fontset.c: Include <stdio.h> unconditionally.
18556
185572008-07-13 Michael Albinus <michael.albinus@gmx.de>
18558
18559 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
18560 for filtering.
18561
185622008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
18563
18564 * s/vms.h: Use __GNUC__ instead of _GNUC_.
18565
18566 * m/macppc.h:
18567 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
18568
18569 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
18570 (SPECIAL_EMACS_INT):
18571 * m/ia64.h (SPECIAL_EMACS_INT):
18572 * m/amdx86-64.h (SPECIAL_EMACS_INT):
18573 * s/gnu.h (NLIST_STRUCT):
18574 * s/aix4-2.h (X11R5_INHIBIT_I18N):
18575 * s/gnu-linux.h (LINUX):
18576 * s/msdos.h (HAVE_FACES):
18577 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
18578
18579 * systty.h:
18580 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
18581 anymore.
18582
185832008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
18584
18585 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
18586 always defined as int.
18587
18588 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
18589 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
18590 * s/gnu-linux.h (HAVE_WAIT_HEADER):
18591 * s/freebsd.h (HAVE_WAIT_HEADER):
18592 * s/bsd-common.h (HAVE_UNION_WAIT):
18593 * s/aix4-2.h (HAVE_WAIT_HEADER):
18594 * m/mips.h (HAVE_UNION_WAIT):
18595 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
18596 (COFF, static): Do not define, they are undefined later in the file.
18597
18598 * process.c (update_status): Don't use a union.
18599 (status_convert):
18600 (sigchld_handler): Use int instead of WAITTYPE.
18601
186022008-07-12 Chong Yidong <cyd@stupidchicken.com>
18603
18604 * indent.c (Fvertical_motion): Restore hscroll before moving to
18605 goal column.
18606
186072008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
18608
18609 * lisp.h: Remove left over code.
18610
186112008-07-11 Andreas Schwab <schwab@suse.de>
18612
18613 * lisp.h: Fix logic in last change.
18614
18615 * menu.h: New file.
18616 * menu.c: Include it.
18617 * xmenu.c: Likewise.
18618 * Makefile.in: Update dependencies.
18619
186202008-07-11 Kenichi Handa <handa@m17n.org>
18621
18622 * fontset.c (fontset_from_font): Cancel the previous change.
18623
186242008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
18625
18626 * lisp.h:
18627 * w32heap.c:
18628 * emacs.c:
18629 * alloc.c: Replace all references of NO_UNION_TYPE with
18630 USE_LISP_UNION_TYPE.
18631
18632 * m/xtensa.h (NO_UNION_TYPE):
18633 * m/vax.h (NO_UNION_TYPE):
18634 * m/template.h (NO_UNION_TYPE):
18635 * m/sparc.h (NO_UNION_TYPE):
18636 * m/mips.h (NO_UNION_TYPE):
18637 * m/macppc.h (NO_UNION_TYPE):
18638 * m/m68k.h (NO_UNION_TYPE):
18639 * m/iris4d.h (NO_UNION_TYPE):
18640 * m/intel386.h (NO_UNION_TYPE):
18641 * m/ibms390x.h (NO_UNION_TYPE):
18642 * m/ibms390.h (NO_UNION_TYPE):
18643 * m/ibmrs6000.h (NO_UNION_TYPE):
18644 * m/ia64.h (NO_UNION_TYPE):
18645 * m/hp800.h (NO_UNION_TYPE):
18646 * m/arm.h (NO_UNION_TYPE):
18647 * m/amdx86-64.h (NO_UNION_TYPE):
18648 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
18649 defining it the same.
18650
186512008-07-10 Chong Yidong <cyd@stupidchicken.com>
18652
18653 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
18654
186552008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
18656
18657 * fileio.c:
18658 * sysdep.c:
18659 * systty.h:
18660 * m/ibmrs6000.h:
18661 * m/iris4d.h:
18662 * s/aix4-2.h:
18663 * s/freebsd.h:
18664 * s/gnu-linux.h:
18665 * s/hpux10-20.h:
18666 * s/hpux11.h:
18667 * s/netbsd.h:
18668 * s/sol2-3.h:
18669 * s/sol2-4.h:
18670 * s/sol2.h:
18671 * s/usg5-4.h:
18672 * s/vms.h: Remove references to unused variables.
18673
186742008-07-10 Andreas Schwab <schwab@suse.de>
18675
18676 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
18677 pattern before matching the generic family.
18678
186792008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
18680
18681 * unexec.c:
18682 * s/vms.h:
18683 * s/usg5-4-2.h:
18684 * s/sol2-5.h:
18685 * s/freebsd.h:
18686 * s/darwin.h: Remove dead code.
18687
18688 * m/template.h:
18689 * m/sparc.h:
18690 * m/mips.h:
18691 * m/m68k.h:
18692 * m/iris4d.h:
18693 * m/intel386.h:
18694 * m/ibms390x.h:
18695 * m/ibms390.h:
18696 * m/ia64.h:
18697 * m/hp800.h:
18698 * m/arm.h:
18699 * m/amdx86-64.h: Remove dead code and references to unused
18700 and compiler defined symbols.
18701
18702 * unexmips.c:
18703 * unexelf.c: Remove references to desupported systems.
18704
18705 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
18706
18707 * m/powermac.h: Remove boilerplate comments.
18708 (NO_REMAP): Remove unused definition.
18709
18710 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
18711 define them.
18712
187132008-07-10 Kenichi Handa <handa@m17n.org>
18714
18715 * xfont.c (xfont_open): Log the reason of failure.
18716
187172008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
18718
18719 * fontset.c (fontset_get_font_group):
18720 * font.c (font_check_otf): Specify argument types.
18721
187222008-07-09 Kenichi Handa <handa@m17n.org>
18723
18724 * coding.c (detect_coding_utf_8): Set detect_info->found only when
18725 non-ASCII char is found.
18726
18727 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
18728 (reorder_font_vector): Change the arg preferred_family to font.
18729 Prefer the spec matching with font.
18730 (fontset_get_font_group): New function.
18731 (fontset_find_font): Change the format of an element of a realized
18732 fontset. Use fontset_get_font_group.
18733 (fontset_font): Try the current fontset, the default fontset, the
18734 fallbacks of the current fontset, and the fallbacks of the default
18735 fontset in this order.
18736 (face_for_char): Delete the shortcut to use the current font.
18737 (fontset_from_font): Don't set fonts for Latin in the fontset.
18738
18739 * font.h (font_make_object, font_match_p): Adjust prototypes.
18740
18741 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
18742
18743 * font.c (font_make_object): New arg entity and pixelsize.
18744 (font_check_otf_features, font_check_otf): New functions.
18745 (font_match_p): Check :lang, :script, and :otf properties.
18746
18747 * xfont.c (xfont_open): Adjust it for the change of
18748 font_make_object.
18749 (xfont_text_extents): Fix initial setting of metrics.
18750
18751 * ftfont.c (struct ftfont_info): New member index, delete member
18752 fc_charset_idx. Make the member order compatible with struct
18753 xftfont_info.
18754 (fc_charset_table): Change charset names to registry names.
18755 (ftfont_pattern_entity): Delete the args registry and
18756 fc_charset_idx. Change the value of :font-entity property
18757 to (FONTNAME . INDEX). Always set :registry property to
18758 `iso10646-1'.
18759 (struct ftfont_cache_data): New struct.
18760 (ftfont_lookup_cache): New arg for_face.
18761 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
18762 (ftfont_driver): Set the member otf_capability.
18763 (ftfont_get_charset): Adjust it for the change of
18764 fc_charset_table.
18765 (OTF_TAG_SYM): New macro.
18766 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
18767 for the change of fc_charset_table.
18768 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
18769 ftfont_pattern_entity. Add FC_INDEX to objset.
18770 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
18771 and ftfont_pattern_entity.
18772 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
18773 font_make_object, struct ftfont_info.
18774 (ftfont_has_char): Use ftfont_get_fc_charset.
18775 (ftfont_otf_features, ftfont_otf_capability): New functions.
18776 (ftfont_shape): Use ftfont_get_otf.
18777 (ftfont_text_extents): Fix initial setting of metrics.
18778
18779 * xftfont.c (struct xftfont_info): New member ft_size. Make the
18780 member order compatible with struct ftfont_info.
18781 (xftfont_open): Add FC_CHARSET to the pattern.
18782 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
18783 properties if appropriate.
18784 (xftfont_close): Unlock the face.
18785 (xftfont_anchor_point, xftfont_shape): Deleted.
18786 (syms_of_xftfont): Don't set members anchor_point and shape of
18787 xftfont_driver.
18788
18789 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
18790 font_make_object.
18791
18792 * w32font.c (w32font_open): Adjust it for the change of
18793 font_make_object.
18794 (w32font_open_internal): Don't set properties of font_object here.
18795
187962008-07-08 Chong Yidong <cyd@stupidchicken.com>
18797
18798 * macfns.c (x_create_tip_frame):
18799 * w32fns.c (x_create_tip_frame):
18800 * xfns.c (x_create_tip_frame): Pass parameter argument to
18801 face-set-after-frame-default.
18802
18803 * xfaces.c (Finternal_merge_in_global_face): Save merged
18804 attributes for the default face back into the face vector.
18805
188062008-07-08 Andreas Schwab <schwab@suse.de>
18807
18808 * fontset.h: Declare fontset_from_font. Don't declare
18809 new_fontset_from_font and fontset_from_font_name.
18810 * xterm.c: Include "fontset.h".
18811 * Makefile.in (xterm.o): Update dependencies.
18812
188132008-07-08 Glenn Morris <rgm@gnu.org>
18814
18815 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
18816 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
18817
188182008-07-07 Chong Yidong <cyd@stupidchicken.com>
18819
18820 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
18821 (x_set_frame_parameters): Don't bind it.
18822
188232008-07-07 Juanma Barranquero <lekktu@gmail.com>
18824
18825 * w32fns.c (map_w32_filename): Declare extern.
18826
188272008-07-07 Jason Rumney <jasonr@gnu.org>
18828
18829 * w32term.c (WS_EX_LAYERED): Define if not already.
18830
188312008-07-06 Chong Yidong <cyd@stupidchicken.com>
18832
18833 * xfaces.c (set_font_frame_param): Don't try to set the font
18834 parameter if it is still unspecified in the lface.
18835
188362008-07-05 Chong Yidong <cyd@stupidchicken.com>
18837
18838 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
18839 face if it didn't already exist.
18840
18841 * xdisp.c (try_window_id): Give up if word-wrapping is on.
18842
188432008-07-05 Andreas Schwab <schwab@suse.de>
18844
18845 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
18846
188472008-07-05 Chong Yidong <cyd@stupidchicken.com>
18848
18849 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
18850 word-wrapping.
18851 (IT_DISPLAYING_WHITESPACE): New macro.
18852 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
18853 when word-wrapping. Simplify word-wrapping logic. Use correct
18854 pixel positions when saving copies of the iterator.
18855 (display_line): Use proper wrap point if the last character on a
18856 line was preceded by whitespace.
18857
188582008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18859
18860 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
18861
188622008-07-04 Kenichi Handa <handa@m17n.org>
18863
18864 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
18865
18866 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
18867
188682008-07-02 Jason Rumney <jasonr@gnu.org>
18869
18870 * xfns.c (syms_of_xfns): Only define x-select-font when both
18871 HAVE_FREETYPE and USE_GTK.
18872
18873 * xdisp.c (next_element_from_display_vector): Move assignment out
18874 of if statement.
18875
188762008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
18877
18878 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
18879
18880 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
18881 (syms_of_fileio): Initialize and export them.
18882 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
18883
18884 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
18885 (Fsystem_move_file_to_trash): New function.
18886 (syms_of_w32fns): Export it to lisp.
18887
188882008-07-01 Jason Rumney <jasonr@gnu.org>
18889
18890 * w32font.c (w32font_text_extents): Don't count overhang as part
18891 of width.
18892
188932008-06-30 Miles Bader <miles@gnu.org>
18894
18895 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
18896 Add `avoid_cursor_p' field.
18897
18898 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
18899 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
18900 (append_glyph, append_composite_glyph, produce_image_glyph)
18901 (append_stretch_glyph): Initialize avoid_cursor_p.
18902 (get_it_property): Rename from `get_line_height_property'.
18903 (x_produce_glyphs): Use get_it_property.
18904 (handle_line_prefix, push_display_prop): New functions.
18905 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
18906 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
18907 New variables.
18908 (syms_of_xdisp): Initialize them.
18909
189102008-06-30 Kenichi Handa <handa@m17n.org>
18911
18912 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
18913 XftDefaultSubstitute (they are called in XftFontMatch).
18914 (xftfont_open): Fix args to ftfont_font_format.
18915
18916 * ftfont.c (fc_charset_table): New member lang.
18917 (ftfont_resolve_generic_family): New arg pattern.
18918 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
18919 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
18920 (ftfont_open): Fix args to ftfont_font_format.
18921 (ftfont_font_format): New arg filename.
18922
189232008-06-30 Chong Yidong <cyd@stupidchicken.com>
18924
18925 * xfaces.c (Finternal_merge_in_global_face): If default face was
18926 modified, realize it again. Update the font face attribute.
18927
189282008-06-29 Jason Rumney <jasonr@gnu.org>
18929
18930 * w32term.c (x_set_frame_alpha): Fix logic.
18931
189322008-06-29 Kenichi Handa <handa@m17n.org>
18933
18934 * fontset.c (Finternal_char_font): Return font-object instead of
18935 font-name.
18936
18937 * composite.c (get_composition_id): Fix the width calculation for TAB.
18938
189392008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
18940
18941 * indent.c (Fvertical_motion): Properly handle float column arg.
18942
189432008-06-28 Jason Rumney <jasonr@gnu.org>
18944
18945 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
18946 (pfnSetLayeredWindowAttributes): New function pointer.
18947 (w32_initialize): Initialize it when supported.
18948 (x_set_frame_alpha): New function.
18949
18950 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
18951 (w32_frame_parm_handlers): Set alpha handler.
18952
18953 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
18954
189552008-06-27 Jason Rumney <jasonr@gnu.org>
18956
18957 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
18958 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
18959 (w32_to_x_charset, x_to_w32_charset)
18960 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
18961 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
18962 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
18963 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
18964 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
18965 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
18966 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
18967 (Qw32_charset_unicode): Remove.
18968 (syms_of_w32fns): Update for above changes.
18969
18970 * w32font.c (w32_to_x_charset, x_to_w32_charset)
18971 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
18972 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
18973 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
18974 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
18975 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
18976 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
18977 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
18978 (syms_of_w32font): Update for above changes.
18979
189802008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
18981
18982 * s/usg5-4.h: Fix previous change: keep the correct branch of a
18983 removed #if.
18984 (USG_SHARED_LIBRARIES): Remove duplicate definition.
18985
189862008-06-26 Juanma Barranquero <lekktu@gmail.com>
18987 Eli Zaretskii <eliz@gnu.org>
18988
18989 * makefile.w32-in (LOCAL_FLAGS):
18990 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
18991
18992 * sysdep.c (_spawnlp, _getpid):
18993 Declare with explicit _cdecl instead of _CRTAPI1.
18994
18995 * editfns.c (Fget_internal_run_time):
18996 Check for WINDOWSNT with #ifdef, not #if.
18997
189982008-06-26 Jason Rumney <jasonr@gnu.org>
18999
19000 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
19001
19002 * w32term.c (x_draw_glyph_string_foreground)
19003 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
19004 Use FONT_HANDLE macro.
19005 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
19006
19007 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19008 (uniscribe_encode_char): Use FONT_HANDLE macro.
19009
19010 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
19011 (w32font_text_extents): Use precast w32_font.
19012 (w32font_close): Free cached metrics.
19013 (w32font_open_internal): Allocate space for name on stack.
19014
190152008-06-26 Chong Yidong <cyd@stupidchicken.com>
19016
19017 * xdisp.c (extend_face_to_end_of_line): Fix last change.
19018
190192008-06-26 Jason Rumney <jasonr@gnu.org>
19020
19021 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
19022 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
19023
190242008-06-26 Juanma Barranquero <lekktu@gmail.com>
19025
19026 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
19027
190282008-06-26 Jason Rumney <jasonr@gnu.org>
19029
19030 * w32bdf.c, w32bdf.h: Remove obsolete files.
19031
19032 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
19033
19034 * w32gui.h: Don't include w32bdf.h.
19035 (XCharStruct, enum w32_char_font_type, W32FontStruct):
19036 Remove obsolete font support.
19037
19038 * w32font.h (struct w32font_info): Remove compat_w32_font.
19039 Add hfont member.
19040 (FONT_COMPAT): Remove obsolete macro.
19041
19042 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
19043 (w32font_encode_char, w32font_text_extents): Use new hfont member.
19044 (w32font_open_internal): Remove compat code. Set new hfont member.
19045 (Fx_select_font): Use new hfont member.
19046
19047 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19048 (uniscribe_encode_char): Use new hfont member.
19049
19050 * w32term.c (x_draw_glyph_string_foreground)
19051 (x_draw_composite_glyph_string_foreground): Use new hfont member.
19052 (x_draw_glyph_string): Use metrics in w32font_info.
19053
190542008-06-26 Kenichi Handa <handa@m17n.org>
19055
19056 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
19057
190582008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
19059
19060 * unexnext.c:
19061 * m/ews4800.h:
19062 * m/hp9000s300.h:
19063 * m/ibm370aix.h:
19064 * m/mips-siemens.h:
19065 * m/ncr386.h:
19066 * m/next.h:
19067 * m/pmax.h:
19068 * m/powerpcle.h:
19069 * m/tandem-s2.h:
19070 * s/386bsd.h:
19071 * s/bsd386.h:
19072 * s/bsd4-1.h:
19073 * s/bsd4-2.h:
19074 * s/bsdos2-1.h:
19075 * s/bsdos2.h:
19076 * s/bsdos3.h:
19077 * s/bsdos4.h:
19078 * s/nextstep.h:
19079 * s/ultrix4-3.h:
19080 * s/usg5-0.h:
19081 * s/usg5-2-2.h:
19082 * s/usg5-2.h:
19083 * s/usg5-4-3.h:
19084 * s/ux4800.h:
19085 * s/uxpds.h:
19086 * s/uxpv.h: Remove support for obsolete systems.
19087 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
19088 Remove, insert contents in s/hpux10-20.h.
19089 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
19090 Remove, insert contents in s/aix4-2.h.
19091 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
19092 * s/bsd4-3.h: Rename to ...
19093 * s/bsd-common.h: ... this.
19094 * data.c:
19095 * doc.c:
19096 * ecrt0.c:
19097 * emacs.c:
19098 * fileio.c:
19099 * floatfns.c:
19100 * keyboard.c:
19101 * mem-limits.h:
19102 * print.c:
19103 * process.c:
19104 * sysdep.c:
19105 * syssignal.h:
19106 * systty.h:
19107 * syswait.h:
19108 * term.c:
19109 * unexec.c:
19110 * unexelf.c:
19111 * unexhp9k800.c:
19112 * m/hp800.h:
19113 * m/ibmrs6000.h:
19114 * m/mips.h:
19115 * m/vax.h:
19116 * s/darwin.h:
19117 * s/freebsd.h:
19118 * s/gnu.h:
19119 * s/ms-w32.h:
19120 * s/msdos.h:
19121 * s/netbsd.h:
19122 * s/template.h: Remove references to obsolete variables.
19123
19124 * Makefile.in: Add dependencies for all unexec files.
19125 (admindir): Remove unused variable.
19126 (UNEXEC_SRC): Remove references.
19127
191282008-06-25 Chong Yidong <cyd@stupidchicken.com>
19129
19130 * xfns.c (x_default_font_parameter): If Xft is available, first
19131 try Monospace-12 for the default font.
19132
191332008-06-25 Jason Rumney <jasonr@gnu.org>
19134
19135 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
19136
191372008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19138
19139 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
19140
19141 * buffer.c (syms_of_buffer): Remove default-word-wrap.
19142
191432008-06-25 Juanma Barranquero <lekktu@gmail.com>
19144
19145 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
19146 <scroll-conservatively>: Fix typo in docstring.
19147
19148 * xselect.c (Fx_send_client_event): Doc fix.
19149
191502008-06-25 Kenichi Handa <handa@m17n.org>
19151
19152 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
19153
19154 * font.c (font_parse_fcname): Remove unused variables.
19155 (font_sort_entites): Delete the arg SPEC. Caller changed.
19156 Fix for the case of ! best_only.
19157 (font_delete_unmatched): Check DPI and AVGWIDTH too.
19158
19159 * lisp.h (Fstring_to_unibyte): EXFUN it.
19160
19161 * character.h (str_to_unibyte): Extern it.
19162
19163 * character.c (str_to_unibyte): New function.
19164
19165 * fns.c (Fstring_to_unibyte): New function.
19166 (syms_of_fns): Defsubr it.
19167
191682008-06-24 Kenichi Handa <handa@m17n.org>
19169
19170 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
19171 DPI too.
19172 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
19173
191742008-06-24 Andreas Schwab <schwab@suse.de>
19175
19176 * Makefile.in (${lispsource}loaddefs.el): Rename from
19177 ../lisp/loaddefs.el.
19178 (bootstrap-clean): Do what distclean does but don't remove
19179 Makefile.
19180 (distclean): Depend on bootstrap-clean and remove Makefile.
19181
191822008-06-24 Chong Yidong <cyd@stupidchicken.com>
19183
19184 * buffer.h (struct buffer): New member word_wrap.
19185
19186 * buffer.c (syms_of_buffer): New variables default-word-wrap and
19187 word-wrap.
19188 (init_buffer_once): Initialize them.
19189
19190 * dispextern.h (struct it): Replace bool truncate_lines_p with a
19191 line_wrap enum possessing three possible values.
19192
19193 * termopts.h: Replace truncate_partial_width_windows with
19194 Vtruncate_partial_width_windows.
19195
19196 * dispnew.c (direct_output_for_insert): Avoid direct output when
19197 inserting a space with word wrap on.
19198
19199 * indent.c (compute_motion): Obey integer values of
19200 truncate-partial-width-windows.
19201
19202 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
19203 replacing truncate_partial_width_windows.
19204 (init_iterator): If Vtruncate_partial_width_windows is an integer,
19205 truncate only if the window width is below that integer.
19206 (start_display, resize_mini_window, produce_stretch_glyph)
19207 (display_string, move_it_in_display_line_to): Use line_wrap.
19208 (back_to_previous_visible_line_start, reseat_1):
19209 Reset string_from_display_prop_p.
19210 (display_line): Extend default face to end of line when wrapping.
19211
192122008-06-24 Kim F. Storm <storm@cua.dk>
19213
19214 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
19215 to wrap continued lines at word boundaries.
19216
192172008-06-24 Jason Rumney <jasonr@gnu.org>
19218
19219 * font.c (Ffont_face_attributes): Multiply pixel size before point
19220 conversion to avoid multiplying rounding error.
19221
192222008-06-23 Jason Rumney <jasonr@gnu.org>
19223
19224 * w32term.c (x_draw_glyph_string_background)
19225 (x_draw_glyph_string): Remove old bdf font code.
19226
19227 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
19228
192292008-06-22 Kenichi Handa <handa@m17n.org>
19230
19231 * font.c (font_find_for_lface): Try the adstyle specified in
19232 the property of LFACE_FONT of LFACE (if any).
19233
192342008-06-21 Seiji Zenitani <zenitani@mac.com>
19235 Ryo Yoshitake <ryo@shiftmode.net>
19236
19237 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
19238
192392008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
19240
19241 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
19242 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
19243 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
19244 (witness-emacs): Remove.
19245 (lisp, shortlisp): Move loaddefs.el earlier.
19246 (mostlyclean): Forget about witness-emacs.
19247
192482008-06-22 Glenn Morris <rgm@gnu.org>
19249
19250 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
19251 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
19252
192532008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19254
19255 * Makefile.in (PRECOMP): Remove.
19256 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
19257 (witness-emacs): Run `compile-first'.
19258 (.el.elc): Use the new compile-onefile target.
19259
192602008-06-21 Kenichi Handa <handa@m17n.org>
19261
19262 * xftfont.c (xftfont_open): Handle QCembolden only when
19263 FC_EMBOLDEN is defined.
19264
192652008-06-21 Andreas Schwab <schwab@suse.de>
19266
19267 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
19268 (.el.elc): Likewise.
19269
192702008-06-21 Miles Bader <miles@gnu.org>
19271
19272 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
19273 build dir, not the lisp source dir.
19274
192752008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19276
19277 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
19278 (bootstrapclean): Remove.
19279 (.el.elc): New rule.
19280 (PRECOMP): New var.
19281 (../lisp/subdirs.el): Remove.
19282 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
19283 (witness-emacs): New target.
19284 (mostlyclean): Remove witness-emacs as well.
19285 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
19286 Add witness-emacs dependency.
19287
192882008-06-20 Chong Yidong <cyd@stupidchicken.com>
19289
19290 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
19291 defined by the font.
19292
192932008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19294
19295 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
19296 (bootstrap-clean): New target that keeps TAGS around.
19297 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
19298 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
19299
193002008-06-20 Jason Rumney <jasonr@gnu.org>
19301
19302 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
19303 Remove obsolete font code.
19304
19305 * w32font.c (font_matches_spec): Use csb bitfield from font signature
19306 to determine language support.
19307
193082008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19309
19310 * sysdep.c (cfsetspeed): New fun extracted from the code.
19311 (cfmakeraw): Move before first use.
19312
193132008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
19314
19315 * sysdep.c (cfmakeraw): Provide fallback implementation.
19316 (serial_configure): Provide fallback implementation of cfsetspeed.
19317
193182008-06-20 Kenichi Handa <handa@m17n.org>
19319
19320 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
19321 the pattern.
19322
19323 * fontset.c (fontset_from_font): Copy font_spec before changing
19324 the elements.
19325
19326 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
19327
193282008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19329
19330 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
19331 for explicit `font' parameters.
19332
19333 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
19334
193352008-06-19 Kenichi Handa <handa@m17n.org>
19336
19337 * frame.c: Include <ctype.h>.
19338 (x_set_font_backend): Allow spacing characters in the X resource
19339 for FontBackend.
19340
193412008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
19342
19343 * w32fns.c, xfns.c (Qfont_param): New var.
19344 (syms_of_w32fns): Initialize it.
19345 (x_default_font_parameter): Record explicit `font' into
19346 `font-parameter'.
19347
193482008-06-18 Kenichi Handa <handa@m17n.org>
19349
19350 * font.c (font_parse_xlfd): Fix previous change.
19351 (font_parse_fcname): Don't use :fc-unknown-spec.
19352 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
19353 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
19354 (font_add_log): Prepend the driver name to the resulting fonts.
19355
19356 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
19357 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
19358 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
19359
19360 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
19361 (QCembolden): New variables.
19362 (syms_of_xftfont): DEFSYM them.
19363 (xftfont_open): Call XftFontMatch. Don't trust the result of
19364 XftTextExtents8 if the pixel_size is less than 5.
19365
193662008-06-18 Andreas Schwab <schwab@suse.de>
19367
19368 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
19369 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
19370
193712008-06-18 Jason Rumney <jasonr@gnu.org>
19372
19373 * w32font.c (w32font_list, w32font_match): Add logging.
19374
19375 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
19376
193772008-06-17 Chong Yidong <cyd@stupidchicken.com>
19378
19379 * font.c (font_parse_fcname): Store divider characters for
19380 unknown-spec list. For known key symbols, intern using correct
19381 symbol name.
19382
193832008-06-17 Kenichi Handa <handa@m17n.org>
19384
19385 * xfaces.c (realize_default_face): If the frame is not on window
19386 system, set the fontset of face to nil.
19387
193882008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19389
19390 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
19391
193922008-06-16 Juanma Barranquero <lekktu@gmail.com>
19393
19394 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
19395 (build_font_name_from_vector): Delete externs.
19396
19397 * xfaces.c (struct font_name): Don't declare.
19398
193992008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
19400
19401 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
19402
194032008-06-16 Chong Yidong <cyd@stupidchicken.com>
19404
19405 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
19406
194072008-06-16 Juanma Barranquero <lekktu@gmail.com>
19408
19409 * font.c (Ffont_spec): Fix usage in docstring.
19410 (Ffont_face_attributes): Doc fix.
19411
194122008-06-16 Andreas Schwab <schwab@suse.de>
19413
19414 * font.c (Ffont_face_attributes): Fix definition.
19415
194162008-06-16 Jason Rumney <jasonr@gnu.org>
19417
19418 * font.h (font_style_symbolic_from_value): Remove.
19419
19420 * font.c (font_style_symbolic_from_value): Remove.
19421 (font_style_symbolic): Revert to pre 2008-06-13 version.
19422
19423 * w32font.c (w32_to_fc_weight): New function.
19424 (w32font_full_name, logfont_to_fcname): Use it.
19425
194262008-06-16 Kenichi Handa <handa@m17n.org>
19427
19428 * font.c (font_check_object): Delete it.
19429 (font_clear_cache): Check if a font-object is alive.
19430 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
19431 font-object to nil.
19432 (font_close_object): Don't check FONT_CLOSE_OBJECT.
19433 (font_at): Don't call font_check_object.
19434 (Ffont_get): Return a symbol for :weight, :slant, and :width.
19435
194362008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
19437
19438 * puresize.h (BASE_PURESIZE): Increase to 1230000.
19439
194402008-06-16 Chong Yidong <cyd@stupidchicken.com>
19441
19442 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
19443
194442008-06-15 Chong Yidong <cyd@stupidchicken.com>
19445
19446 * font.c (font_parse_fcname): Only one decimal point.
19447 (font_unparse_fcname): Handle data in family and foundry indices
19448 as symbols, not strings.
19449 (font_unparse_gtkname, Ffont_face_attributes): New functions.
19450
19451 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
19452
19453 * font.h (font_unparse_gtkname): Add prototype.
19454
194552008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19456
19457 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
19458
194592008-06-15 Andreas Schwab <schwab@suse.de>
19460
19461 * font.c (font_update_drivers): Fix crash when no drivers match.
19462
194632008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19464
19465 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
19466 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
19467
194682008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19469
19470 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
19471
194722008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19473
19474 * process.c (Fserial_process_configure, Fprocess_send_eof):
19475 Use EQ to compare Lisp_Objects.
19476
194772008-06-13 Jason Rumney <jasonr@gnu.org>
19478
19479 * w32fns.c (Fw32_select_font): Remove old font API function.
19480
19481 * w32font.c (logfont_to_fcname): New function.
19482 (Fx_select_font): New font dialog function compatible with
19483 GTK/fontconfig version.
19484
19485 * font.c (font_style_symbolic_from_value): New function.
19486 (font_style_symbolic): Use it.
19487
19488 * font.h (font_style_symbolic_from_value): Declare new function.
19489
194902008-06-13 Juanma Barranquero <lekktu@gmail.com>
19491
19492 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
19493 <font-width-table>: Fix typos in docstrings.
19494
194952008-06-13 Daniel Engeler <engeler@gmail.com>
19496
19497 These changes add serial port access.
19498 * process.c: Add HAVE_SERIAL.
19499 (Fdelete_process, Fprocess_status, Fset_process_buffer)
19500 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
19501 (list_processes_1, select_wrapper, Fstop_process)
19502 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
19503 (status_notify): Modify to handle serial processes.
19504 [HAVE_SERIAL] (Fserial_process_configure)
19505 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
19506 New functions.
19507 * process.h (struct Lisp_Process): Add `type'.
19508 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
19509 New functions.
19510 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
19511 serial ports.
19512 (serial_open, serial_configure): New functions.
19513 * w32.h: Add FILE_SERIAL.
19514 (struct _child_process): Add ovl_read, ovl_write.
19515
195162008-06-13 Kenichi Handa <handa@m17n.org>
19517
19518 * dispextern.h (enum lface_attribute_index): New member
19519 LFACE_FOUNDRY_INDEX.
19520
19521 * font.c (font_score): Delete arg alternate_families. Check only
19522 weight, slant, width, and size. Ignore the difference of alias
19523 style symbols.
19524 (font_sort_entites): Adjust for the above change. Reflect the
19525 order of font-driver to scores.
19526 (font_list_entities): Don't check alternate_familes here.
19527 (font_clear_prop): Handle foundry.
19528 (font_update_lface): Don't parse "foundry-family" form here.
19529 Handle FONT_FOUNDRY_INDEX.
19530 (font_find_for_lface): Likewise. Handle alternate families here.
19531 If registry is nil, try iso8859-1 and ascii-0.
19532 (font_open_for_lface): Pay attention to size in ENTITY.
19533 (font_open_by_name): Simplify by calling font_load_for_lface.
19534 (free_font_driver_list): Delete it.
19535 (font_update_drivers): Preserve the order of backends.
19536 (syms_of_font): Setting of sort_shift_bits adjusted for the change
19537 of font_score and font_sort_entites.
19538 (font_update_sort_order): Likewise.
19539
19540 * xfaces.c (LFACE_FOUNDRY): New macro.
19541 (check_lface_attrs): Check foundry.
19542 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
19543 (merge_face_vectors): Check foundry.
19544 (merge_face_ref): Likewise.
19545 (Finternal_set_lisp_face_attribute): Likewise.
19546 (x_update_menu_appearance): Likewise.
19547 (Finternal_get_lisp_face_attribute): Likewise.
19548 (lface_hash): Likewise.
19549 (lface_same_font_attributes_p): Likewise.
19550 (x_supports_face_attributes_p): Likewise.
19551 (tty_supports_face_attributes_p): Likewise.
19552 (Finternal_set_alternative_font_family_alist): Intern strings.
19553 (Finternal_set_alternative_font_registry_alist): Downcase strings.
19554 (realize_default_face): Set LFACE_FOUNDRY (lface).
19555
19556 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
19557 font-driver at first.
19558
19559 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
19560
195612008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
19562
19563 * lread.c (Fload): Use xfree, not free on saved_doc_string.
19564
195652008-06-12 Jim Meyering <meyering@redhat.com>
19566
19567 Make unexec_free handle NULL the same way free does.
19568 * unexmacosx.c (unexec_free): Ignore a NULL argument.
19569
195702008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
19571
19572 * character.h (CHAR_TO_BYTE_SAFE): New macro.
19573 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
19574 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
19575 (WEAK_ALIAS): Simplify.
19576 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
19577 when searching a unibyte buffer.
19578
195792008-06-12 Chong Yidong <cyd@stupidchicken.com>
19580
19581 * xfns.c (Fx_select_font): Rename from x-font-dialog.
19582
195832008-06-12 Juanma Barranquero <lekktu@gmail.com>
19584
19585 * w32font.c: Include ctype.h.
19586
195872008-06-11 Jason Rumney <jasonr@gnu.org>
19588
19589 * w32font.c (w32font_encode_char): Detect missing glyphs that are
19590 misreported as space.
19591 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
19592 as aliases for registry iso10646-1.
19593
195942008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
19595
19596 * buffer.c (clone_per_buffer_values): Skip `name'.
19597
195982008-06-11 Chong Yidong <cyd@stupidchicken.com>
19599
19600 * font.c (font_parse_fcname): Fix last change; accept decimal
19601 points in font size.
19602
196032008-06-10 Jason Rumney <jasonr@gnu.org>
19604
19605 * w32uniscribe.c (add_opentype_font_name_to_list):
19606 Skip non unicode fonts.
19607
196082008-06-10 Chong Yidong <cyd@stupidchicken.com>
19609
19610 * xfns.c (Fx_font_dialog): New function.
19611
19612 * gtkutil.c (xg_dialog_response_cb): Rename from
19613 xg_file_response_callback.
19614 (pop_down_dialog): Rename from pop_down_file_dialog.
19615 (xg_get_file_name): Callers changed.
19616 (xg_get_font_name): New function.
19617
19618 * gtkutil.h (xg_get_font_name): Insert prototype.
19619
196202008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
19621
19622 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
19623 x_underline_minimum_display_offset.
19624 (syms_of_xdisp): Declare it here rather than in xterm.c.
19625 * dispextern.h (underline_minimum_offset): Declare it.
19626 * w32term.c (x_draw_glyph_string): Use it.
19627 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
19628 (syms_of_xterm): Don't declare it any more.
19629 (x_draw_glyph_string): Adjust to the new name.
19630
196312008-06-10 David De La Harpe Golden <david@harpegolden.net>
19632
19633 * xterm.c (x_underline_minimum_display_offset): New var.
19634 (x_draw_glyph_string): Use it.
19635 (syms_of_xterm): Declare it.
19636
196372008-06-10 Chong Yidong <cyd@stupidchicken.com>
19638
19639 * font.c (font_parse_fcname): Accept GTK-style font names too.
19640
196412008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
19642
19643 * dired.c (file_name_completion): Don't return t if the match is exact
19644 but with different capitalization.
19645 * minibuf.c (Ftry_completion): Simplify.
19646
19647 * window.c (Vwindow_point_insertion_type): New var.
19648 (set_window_buffer): Use it.
19649 (syms_of_window): Init and export it to Lisp.
19650
196512008-06-10 Kenichi Handa <handa@m17n.org>
19652
19653 * font.h (font_intern_prop): Prototype adjusted.
19654
19655 * font.c (font_intern_prop): New arg force_symbol.
19656 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
19657 Adjust for the change of font_intern_prop.
19658
19659 * ftfont.c (ftfont_pattern_entity):
19660 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
19661 (w32_registry):
19662 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
19663 the change of font_intern_prop.
19664
196652008-06-09 Juanma Barranquero <lekktu@gmail.com>
19666
19667 * w32menu.c (digest_single_submenu): Declare extern.
19668
196692008-06-09 Jason Rumney <jasonr@gnu.org>
19670
19671 * w32term.c (x_make_frame_visible): Use alternate restore flags.
19672
19673 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
19674 (parse_single_submenu): Remove.
19675 (digest_single_submenu): Remove.
19676 (syms_of_w32menu): Don't initialise variables that have moved
19677 to menu.c.
19678 (set_frame_menubar): Sync with version in xmenu.c.
19679 (w32_menu_show): Sync with xmenu_show in xmenu.c.
19680
19681 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
19682 Make static again.
19683
196842008-06-09 Jason Rumney <jasonr@gnu.org>
19685
19686 Changes to w32 files related to the move of common menu code
19687 to menu.c on 2008-06-08 by Chong Yidong.
19688
19689 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
19690 defs to w32gui.h.
19691 (single_keymap_panes, push_menu_item, push_menu_pane):
19692 Make globally visible.
19693
19694 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
19695 (local_free, malloc_widget_value, free_widget_value)
19696 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
19697 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
19698 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
19699 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
19700 (menu_items, menu_items_allocated, menu_items_used)
19701 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
19702 (init_menu_items, finish_menu_items, discard_menu_items)
19703 (grow_menu_items, push_submenu_start, push_submenu_end)
19704 (push_left_right_boundary, push_menu_pane, push_menu_item)
19705 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
19706 (free_menubar_widget_tree_value, parse_single_submenu)
19707 (update_submenu_strings): Remove functions.
19708 (xmalloc_widget_value): Remove and declare extern.
19709
19710 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
19711 (OBJ1): Build it.
19712
19713 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
19714 (local_heap, local_alloc, local_free, malloc_widget_value)
19715 (free_widget_value): Define here.
19716
197172008-06-09 Kenichi Handa <handa@m17n.org>
19718
19719 * font.h (Qascii_0): Extern it.
19720
19721 * font.c (Qascii_0): New variable.
19722 (syms_of_font): DEFSYM it.
19723 (font_open_by_name): If the registry "iso8859-1" fails, try also
19724 "ascii-0".
19725
19726 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
19727
197282008-06-08 Kenichi Handa <handa@m17n.org>
19729
19730 * .gdbinit (xfont): New command.
19731
197322008-06-08 Andreas Schwab <schwab@suse.de>
19733
19734 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
19735 * Makefile.in (menu.o): Update dependencies.
19736
19737 * Makefile.in (obj): Always add menu.o.
19738 * emacs.c (main): Always call syms_of_menu.
19739 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
19740
197412008-06-08 Chong Yidong <cyd@stupidchicken.com>
19742
19743 * Makefile.in: Compile menu.c.
19744
19745 * lisp.h: Declare syms_of_menu.
19746
19747 * emacs.c (main): Call syms_of_menu.
19748
19749 * keyboard.h: Relocate platform-independent menu definitions from
19750 xmenu.c.
19751
19752 * menu.c: New file. Relocate platform-independent menu
19753 definitions from xmenu.c. Suggested by Adrian Robert.
19754
19755 * xmenu.c: Remove platform-independent menu definitions.
19756 (menu_items, menu_items_inuse, menu_items_allocated)
19757 (menu_items_used, menu_items_n_panes)
19758 (menu_items_submenu_depth): Move to keyboard.h.
19759 (init_menu_items, finish_menu_items, unuse_menu_items)
19760 (discard_menu_items, restore_menu_items, save_menu_items)
19761 (grow_menu_items, push_submenu_start, push_submenu_end)
19762 (push_left_right_boundary, push_menu_pane, push_menu_item)
19763 (keymap_panes, single_keymap_panes, single_menu_item)
19764 (list_of_panes, list_of_items, find_and_call_menu_selection)
19765 (xmalloc_widget_value, free_menubar_widget_value_tree)
19766 (parse_single_submenu, digest_single_submenu)
19767 (update_submenu_strings): Move to menu.c.
19768
197692008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
19770
19771 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
19772
197732008-06-06 Miles Bader <miles@gnu.org>
19774
19775 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
19776 face, not frame default.
19777
197782008-06-05 Martin Rudalics <rudalics@gmx.at>
19779
19780 * window.c (pop_up_windows, pop_up_frames)
19781 (display_buffer_reuse_frames, Vpop_up_frame_function)
19782 (Vdisplay_buffer_function, Veven_window_heights)
19783 (Vspecial_display_buffer_names, Vspecial_display_regexps)
19784 (Vspecial_display_function, Vsame_window_buffer_names)
19785 (Vsame_window_regexps, split_height_threshold)
19786 (Vsplit_window_preferred_function): Move those vars to window.el.
19787 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
19788 (Fdisplay_buffer): Move those functions to window.el.
19789 (syms_of_window): Remove corresponding declarations.
19790 (display_buffer): New function.
19791 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
19792 * dispnew.c (Flast_nonminibuf_frame): New function.
19793 * buffer.c (Fpop_to_buffer): Move to window.el.
19794
197952008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
19796
19797 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
19798
197992008-06-05 Kenichi Handa <handa@m17n.org>
19800
19801 * coding.c (detect_coding): Fix previous change.
19802 (detect_coding_system): Likewise.
19803
198042008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
19805
19806 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
19807
19808 * keymap.c (Vminibuffer_local_filename_must_match_map):
19809 Rename from Vminibuffer_local_must_match_filename_map.
19810 (syms_of_keymap):
19811 * minibuf.c (Fcompleting_read): Adjust accordingly.
19812 * commands.h: Rename declaration as well.
19813
198142008-06-05 Kenichi Handa <handa@m17n.org>
19815
19816 * font.c (Ffont_spec): Don't use font_parse_family_registry for
19817 family name.
19818 (Ffont_put): Likewise.
19819
19820 * fontset.c (fontset_find_font): Call font_open_for_lface with the
19821 current font-spec.
19822
19823 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
19824 is unspecified.
19825
19826 * xfaces.c (realize_x_face): If the font-related face attributes
19827 are the same as those of default face, realize a new fontset from
19828 default->fontset.
19829 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
19830
198312008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
19832
19833 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
19834 (move_it_in_display_line): New wrapper.
19835
19836 * window.c (window_scroll_pixel_based_preserve_x)
19837 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
19838 (window_scroll_pixel_based, window_scroll_line_based):
19839 Use them to preserve column positions.
19840 (syms_of_window): Initialize them.
19841
19842 * indent.c (Fvertical_motion): Extend first arg to allow passing an
19843 (HPOS . VPOS) pair.
19844
19845 * dispextern.h (move_it_in_display_line): Declare.
19846
198472008-06-05 Juanma Barranquero <lekktu@gmail.com>
19848
19849 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
19850 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
19851 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
19852
198532008-06-04 Juanma Barranquero <lekktu@gmail.com>
19854
19855 * window.c (Fset_window_parameter): Doc fix.
19856 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
19857
198582008-06-04 Joakim Verona <joakim@verona.se>
19859
19860 * window.h (struct window): Add new member window_parameters.
19861
19862 * window.c (Fwindow_parameters, Fwindow_parameter)
19863 (Fset_window_parameter): New defuns.
19864 (syms_of_window): Defsubr the new defuns.
19865 (make_window): Initialize window_parameters to nil.
19866
198672008-06-04 John Paul Wallington <jpw@pobox.com>
19868
19869 * eval.c (Fdefmacro): Doc fix.
19870
198712008-06-04 Kenichi Handa <handa@m17n.org>
19872
19873 * coding.c (detect_coding): Fix handling of coding->head_ascii.
19874 Be sure to call setup_coding_system when we find a proper coding system.
19875 (detect_coding_system): Fix handling of coding->head_ascii.
19876
198772008-06-03 Andreas Schwab <schwab@suse.de>
19878
19879 * font.c (font_prop_validate_spacing): Fix last change.
19880
198812008-06-03 Kenichi Handa <handa@m17n.org>
19882
19883 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
19884 (font_parse_fcname): Fix handling of unknown key.
19885
19886 * xfont.c (xfont_list): Try an alias.
19887
19888 * charset.c (char_charset): Return NULL if the arg charset_list is
19889 specified and C doesn't belong to any of them.
19890
198912008-06-02 Chip Coldwell <coldwell@redhat.com>
19892
19893 * font.c (font_pixel_size): Don't take cdr of an integer.
19894
198952008-06-02 Jim Meyering <meyering@redhat.com>
19896
19897 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
19898 * alloc.c (xfree): Return right away for a NULL arg.
19899 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
19900 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
19901 * mac.c (create_apple_event_from_event_ref): Likewise.
19902 (create_apple_event_from_drag_ref, cfstring_create_normalized):
19903 Likewise.
19904 * doprnt.c (doprnt1): Likewise.
19905 * frame.c (frame): Likewise.
19906 * keyboard.c (wipe_kboard): Likewise.
19907 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
19908 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
19909 * term.c (tty_default_color_capabilities, maybe_fatal)
19910 (delete_tty): Likewise.
19911 * w16select.c (string): Likewise.
19912 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
19913 * w32bdf.c (w32_free_bdf_font): Likewise.
19914 * w32fns.c (w32_unload_font): Likewise.
19915 * w32font.c (w32font_close): Likewise.
19916 * window.c (size_window): Likewise.
19917 * xselect.c (receive_incremental_selection): Likewise.
19918 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
19919 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
19920 * w32.c (stat): Likewise.
19921
19922 Remove useless if-before-free tests.
19923 * editfns.c (Fset_time_zone_rule): Likewise.
19924 * lread.c (nosuffix): Likewise.
19925 * ralloc.c (get_bloc): Likewise.
19926 * regex.c (reg_free): Likewise.
19927 * xftfont.c (xftfont_open, xftfont_close): Likewise.
19928 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
19929 * xsmfns.c (smc_save_yourself_CB): Likewise.
19930
199312008-06-02 Kenichi Handa <handa@m17n.org>
19932
19933 * font.c (font_find_for_lface): Handle float font size.
19934 (font_open_for_lface): Likewise.
19935
19936 * xfaces.c (x_supports_face_attributes_p): Check face->font before
19937 comparing the properties.
19938
199392008-06-01 Jason Rumney <jasonr@gnu.org>
19940
19941 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
19942 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
19943 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
19944 Don't add empty script list.
19945 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
19946
199472008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19948
19949 * Makefile.in (dot, dotdot): Remove, update users.
19950 ".." has been used elsewhere in the file for a long time.
19951 (LIBXT_STATIC): Remove conditional based on unused variable.
19952
199532008-06-01 Miles Bader <miles@gnu.org>
19954
19955 * xfaces.c (Vface_remapping_alist): New variable.
19956 (syms_of_xfaces): Initialize it.
19957 (enum named_merge_point_kind): New type.
19958 (struct named_merge_point): Add `named_merge_point_kind' field.
19959 (push_named_merge_point): Make cycle detection respect different
19960 named-merge-point kinds.
19961 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
19962 Remove face-name alias resolution.
19963 (lface_from_face_name): New definition using
19964 `lface_from_face_name_no_resolve'.
19965 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
19966 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
19967 (get_lface_attributes): New definition that layers face-remapping on
19968 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
19969 (lookup_basic_face): New function.
19970 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
19971 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
19972 `get_lface_attributes'.
19973 (face_at_buffer_position): Use `lookup_basic_face' to lookup
19974 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
19975 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
19976
19977 * xdisp.c (init_iterator): Pass base_face_id through
19978 `lookup_basic_face' when we actually use it as a face-id.
19979 (handle_single_display_prop): Use `lookup_basic_face' to lookup
19980 DEFAULT_FACE_ID.
19981
19982 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
19983 lookup the initial face-id.
19984
19985 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
19986
199872008-06-01 Juanma Barranquero <lekktu@gmail.com>
19988
19989 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
19990 (Fremove_text_properties): Fix typos in docstrings.
19991
199922008-05-31 Kenichi Handa <handa@m17n.org>
19993
19994 * font.c (font_list_entities): Fix the car part of data to be
19995 stored in the cache.
19996
19997 * ftfont.c (ftfont_font_format): Don't use strcasestr.
19998
199992008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20000
20001 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
20002 Add a `test' argument so another predicate than `equal' can be used.
20003 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
20004 (map_char_table): Remove unused vars `c' and `i'.
20005 * lisp.h (Foptimize_char_table): Adjust declaration.
20006 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
20007
200082008-05-30 Kenichi Handa <handa@m17n.org>
20009
20010 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
20011 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
20012 defined.
20013
200142008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20015
20016 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20017 (Fmake_variable_frame_local): Disallow mixing buffer-local and
20018 frame-local settings for the same variable.
20019
200202008-05-30 Kenichi Handa <handa@m17n.org>
20021
20022 * fontset.c (Ffont_info): Move to font.c.
20023 (syms_of_fontset): Delete defsubr of Sfont_info.
20024
20025 * font.c (font_style_to_value, font_score): Delete casting of the
20026 args to xstcasecmp.
20027 (register_font_driver): Increment num_font_drivers only when
20028 registering the driver globally.
20029 (Ffont_info): Move from fontset.c. Handle a font object too.
20030 (syms_of_font): Defsubr Sfont_info.
20031
200322008-05-29 Kenichi Handa <handa@m17n.org>
20033
20034 * coding.h (enum define_coding_utf8_arg_index): New enum.
20035 (enum coding_attr_index): Change coding_attr_utf_16_bom to
20036 coding_attr_utf_bom.
20037 (enum utf_bom_type): Rename from utf_16_bom_type.
20038 (struct utf_16_spec): Adjust for the above change.
20039 (struct coding_system): Add utf_8_bom in `spec' union.
20040
20041 * coding.c (CODING_UTF_8_BOM): New macro.
20042 (enum coding_category): Delete coding_category_utf_8, add
20043 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
20044 coding_category_utf_8_sig.
20045 (CATEGORY_MASK_UTF_8): Delete it.
20046 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
20047 (CATEGORY_MASK_UTF_8_SIG): New macros.
20048 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
20049 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
20050 CATEGORY_MASK_UTF_8_SIG.
20051 (CATEGORY_MASK_UTF_8): New macro.
20052 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
20053 (detect_coding_utf_8): Check BOM.
20054 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
20055 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
20056 (encode_coding_utf_16): Likewise.
20057 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
20058 (detect_coding, detect_coding_system): Handle utf-8-auto.
20059 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
20060 (syms_of_coding): Fix setting up of Vcoding_category_table.
20061
200622008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
20063
20064 * process.c (Faccept_process_output): If `millisec' is non-nil,
20065 `seconds' default to 0.
20066 (wait_reading_process_output): Also return non-nil if we read output
20067 from a non-running process.
20068
200692008-05-29 Jason Rumney <jasonr@gnu.org>
20070
20071 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
20072 `raster' specified.
20073 (add_font_entity_to_list): Allow non-opentype truetype fonts back
20074 in the uniscribe backend, but disallow any font that has no
20075 unicode subrange support.
20076
200772008-05-29 Juanma Barranquero <lekktu@gmail.com>
20078
20079 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
20080 Fix typos in docstrings.
20081
200822008-05-29 Kenichi Handa <handa@m17n.org>
20083
20084 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
20085 (Fx_family_fonts): Set frame correctly.
20086
200872008-05-28 Jason Rumney <jasonr@gnu.org>
20088
20089 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
20090
200912008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
20092
20093 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
20094 calling build_annotations.
20095
200962008-05-28 Juanma Barranquero <lekktu@gmail.com>
20097
20098 * coding.c (Fdecode_coding_region, Fencode_coding_region)
20099 (Fencode_coding_string):
20100 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
20101 <latin-extra-code-table>: Fix typos in docstrings.
20102 (syms_of_coding) <coding-system-alist>: Doc fix.
20103 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
20104
201052008-05-28 Kenichi Handa <handa@m17n.org>
20106
20107 * fontset.c (Ffont_info): Don't call font_close_object.
20108
20109 * font.c (font_parse_family_registry): Use Ffont_put to validate
20110 foundry and family.
20111 (font_delete_unmatched): Don't check spacing.
20112 (font_list_entities): Add spacing to the spec to list fonts.
20113
20114 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
20115 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
20116
20117 * coding.c (encode_coding_raw_text): Fix previous change.
20118 (encode_coding_object): When the dst_object is a buffer and is
20119 different from src_object, move gap to PT.
20120
201212008-05-27 Chong Yidong <cyd@stupidchicken.com>
20122
20123 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
20124
201252008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20126
20127 * coding.c (encode_coding_raw_text): Set coding->produced_char for
20128 all branches. Compute it differently.
20129
20130 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
20131
201322008-05-27 Juanma Barranquero <lekktu@gmail.com>
20133
20134 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
20135 into "else if () ... else ...".
20136
201372008-05-27 Jason Rumney <jasonr@gnu.org>
20138
20139 * w32font.c (w32font_open_internal): Determine if glyph indices
20140 are likely to work here.
20141
201422008-05-27 Chong Yidong <cyd@stupidchicken.com>
20143
20144 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
20145 draw overlap glyphs with appropriate highlighting.
20146
201472008-05-27 Kenichi Handa <handa@m17n.org>
20148
20149 * xfont.c (xfont_open): Fix calculation of font->average_width.
20150
201512008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20152
20153 * casefiddle.c (casify_object): Try to guess better whether the
20154 argument is a byte or a char.
20155
201562008-05-26 Andreas Schwab <schwab@suse.de>
20157
20158 * xselect.c (x_reply_selection_request): Properly handle format == 32.
20159 Always send multiples of format size.
20160
20161 * xterm.c (x_set_frame_alpha): Fix type mismatch.
20162
201632008-05-26 Jason Rumney <jasonr@gnu.org>
20164
20165 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
20166 (compute_metrics): Don't set failure if we just cleared the cache.
20167 (w32_weight_table): Remove unused variable.
20168 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
20169 backwards compatibility.
20170
201712008-05-25 Kenichi Handa <handa@m17n.org>
20172
20173 * w32term.c (x_draw_glyph_string):
20174 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
20175
20176 * xfaces.c: Delete unused function prototypes.
20177 (xstrlwr, font_frame): Delete them.
20178 (clear_face_cache): Delete unused variable.
20179
20180 * xftfont.c (xftfont_open): Delete unused variable.
20181 If underline_thickness is not 1, adjust underline_position.
20182
20183 * ftxfont.c (ftxfont_open): Delete unused variable.
20184
20185 * fontset.c (face_for_char): Optimize for the case of no charset
20186 property.
20187
20188 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
20189 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
20190 (otf_open, font_otf_capability, generate_otf_features)
20191 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
20192 Comment out by surrounding "#if 0" and "#endif" for the moment.
20193 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
20194 (syms_of_font): Codes for accessing above commented out.
20195
201962008-05-24 Eli Zaretskii <eliz@gnu.org>
20197
20198 * w32proc.c: Include dispextern.h.
20199
20200 * w32.c: Include dispextern.h.
20201
202022008-05-23 Juanma Barranquero <lekktu@gmail.com>
20203
20204 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
20205 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
20206 Fix typos in docstrings.
20207
202082008-05-23 Jason Rumney <jasonr@gnu.org>
20209
20210 * xsmfns.c: Remove includes that are already included by config.h.
20211
202122008-05-23 Kenichi Handa <handa@m17n.org>
20213
20214 * charset.c (Qemacs, charset_emacs): New variables.
20215 (char_charset): Fix for non-Unicode characters.
20216 (syms_of_charset): Define charset_emacs.
20217
20218 * w32term.c (x_draw_glyph_string): Be sure to update
20219 s->underline_thickness and s->underline_position. Be sure to draw
20220 underline within the current line area.
20221
20222 * xterm.c (x_draw_glyph_string): Be sure to update
20223 s->underline_thickness and s->underline_position. Be sure to draw
20224 underline within the current line area.
20225
20226 * fontset.c: Delete unused variables and add casting for char *
20227 throughout the file.
20228 (fontset_font): Try the fallback fonts of the current fontset
20229 before consulting the default fontset.
20230
20231 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
20232
20233 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
20234
202352008-05-22 Jason Rumney <jasonr@gnu.org>
20236
20237 * font.c: Don't include strings.h.
20238
20239 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
20240
20241 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
20242 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
20243 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
20244 to call xstrcasecmp.
20245
20246 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
20247
20248 * fontset.c (fs_query_fontset): Use xstrcasecmp.
20249
20250 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
20251
20252 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
20253
202542008-05-22 Kenichi Handa <handa@m17n.org>
20255
20256 * puresize.h (BASE_PURESIZE): Increase to 1220000.
20257
20258 * font.c (font_prop_validate_style): Adjust for the format
20259 change of font_style_table.
20260
20261 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
20262 two args.
20263
20264 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
20265 two args.
20266
202672008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
20268
20269 * minibuf.c (keys_of_minibuf): Delete.
20270 * lisp.h (keys_of_minibuf): Delete.
20271 * emacs.c (main): Don't call keys_of_minibuf.
20272
202732008-05-22 Kenichi Handa <handa@m17n.org>
20274
20275 * ftfont.c (ftfont_resolve_generic_family): Rename from
20276 ftfont_list_generic_family. Return a single family for each
20277 generic family.
20278 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
20279 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
20280 Call font_add_log.
20281 (ftfont_match): Call font_add_log.
20282
20283 * font.h (Ffont_xlfd_name): EXFUN adjusted.
20284 (FONT_DEBUG): Define it.
20285 (font_add_log): Extern it.
20286 (font_assert): Rename from xassert.
20287
20288 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
20289 (xfont_list_family): Call font_add_log.
20290 (xfont_match): Likewise.
20291 (memq_no_quit): Delete.
20292
20293 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
20294 call of Ffont_xlfd_name.
20295
20296 * xfaces.c (struct table_entry, slant_table, weight_table)
20297 (swidth_table): Move to font.c.
20298
20299 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
20300 xassert are changed to font_assert. Delete many unused variables.
20301 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
20302 New variables.
20303 (struct table_entry): Move from xfaces.c and modified.
20304 (weight_table, slant_table, width_table): Move from xfaces.c and
20305 contents adjusted for the change of struct table_entry.
20306 (font_style_to_value, font_style_symbolic): Adjust for the
20307 format change of font_style_table.
20308 (font_parse_family_registry): Don't overwrite existing foundry and
20309 family of font_spec.
20310 (font_score): Fix calculation of diff for sizes.
20311 (font_sort_entites): Call font_add_log.
20312 (font_delete_unmatched): Return a newly created list.
20313 (font_list_entities): Fix previous change. Call font_add_log.
20314 (font_matching_entity, font_open_entity, font_close_entity):
20315 Call font_add_log.
20316 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
20317 (Finternal_set_font_style_table): Delete.
20318 (BUILD_STYLE_TABLE): New macro.
20319 (build_style_table): New function.
20320 (Vfont_log, font_log_env_checked): New variables.
20321 (font_add_log): New function.
20322 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
20323 Declare Lisp variables "font-weight-table", "font-slant-table",
20324 "font-width-table", and "font-log". Initialize font_style_table.
20325
203262008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
20327
20328 * xterm.c (x_set_frame_alpha): Move declarations before statements.
20329
203302008-05-21 Seiji Zenitani <zenitani@mac.com>
20331 Ryo Yoshitake <ryo@shiftmode.net>
20332
20333 * frame.c (Qalpha): Add a new frame parameter `alpha'.
20334 (Vframe_alpha_lower_limit): New variable.
20335 (x_set_alpha): New function.
20336
20337 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
20338
20339 * xfns.c (x-create-frame, Qalpha):
20340 Initialize the frame parameter `alpha'.
20341 * xterm.c (OPAQUE, OPACITY): New.
20342 (x_set_frame_alpha): New function.
20343 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
20344
20345 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
20346 * w32fns.c (w32_frame_parm_handlers): Likewise.
20347
203482008-05-20 Jason Rumney <jasonr@gnu.org>
20349
20350 * w32font.c (add_font_entity_to_list): Don't add non-opentype
20351 truetype fonts to opentype list.
20352
203532008-05-20 Juanma Barranquero <lekktu@gmail.com>
20354
20355 * fontset.c (Ffontset_info): Doc fix.
20356 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
20357 <ignore-relative-composition>: Fix typos in docstrings.
20358
20359 * font.c (syms-of-font) <font-encoding-alist>:
20360 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
20361 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
20362 (Ffont_otf_alternates): Doc fixes.
20363
203642008-05-20 Kenichi Handa <handa@m17n.org>
20365
20366 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
20367 font.h through out the file.
20368 (FONT_DRIVERS): Rename from FONTOBJ.
20369 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
20370 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
20371
20372 * emacs.c (main): Call syms_of_font unconditionally.
20373
20374 * font.h (find_font_encoding): Extern it.
20375
20376 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
20377 fontset.c.
20378 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
20379 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
20380 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
20381 only when HAVE_WINDOW_SYSTEM is defined.
20382 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
20383 when HAVE_WINDOW_SYSTEM is defined.
20384
20385 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
20386 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
20387
20388 * xfaces.c: Include font.h unconditionally.
20389 (merge_face_ref, merge_face_vectors)
20390 (Finternal_set_lisp_face_attribute): Cancel the previous change.
20391
203922008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
20393
20394 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
20395 indirect_variable.
20396 * eval.c (lisp_indirect_variable): New fun.
20397 (Fuser_variable_p): Use it.
20398
203992008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
20400
20401 * lisp.h (indirect_variable):
20402 * data.c (indirect_variable, let_shadows_buffer_binding_p):
20403 Use Lisp_Symbol pointers rather than Lisp_Object.
20404 Adjust callers.
20405 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
20406 To this end, change calling-convention.
20407
20408 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
20409 if some non-hidden buffers are selected by string&pred.
20410
204112008-05-19 Chong Yidong <cyd@stupidchicken.com>
20412
20413 * process.c (wait_reading_process_output): Always check status
20414 when in batch mode.
20415
204162008-05-19 Kenichi Handa <handa@m17n.org>
20417
20418 * font.c (font_list_entities): Fix handling of cache.
20419 (font_matching_entity): Likewise.
20420
20421 * ftfont.c (cs_iso8859_1): Delete.
20422 (ft_face_cache): New variable.
20423 (struct ftfont_info): New member fc_charset_idx.
20424 (ftfont_build_basic_charsets): Delete.
20425 (fc_charset_table): New variable.
20426 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
20427 . FC_CHARSET_IDX) as :font-entity property in the font entity.
20428 Callers changed.
20429 (ftfont_lookup_cache, ftfont_get_charset): New functions.
20430 (ftfont_spec_pattern): New argument fc_charset_idx.
20431 Check registry more rigidly. Change callers.
20432 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
20433 change of :font-entity property of the font.
20434
20435 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
20436 property of the font.
20437
204382008-05-18 Juanma Barranquero <lekktu@gmail.com>
20439
20440 * coding.c (Fcoding_system_p): Rename argument to match docstring.
20441 (Funencodable_char_position, Fcheck_coding_systems_region)
20442 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
20443 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
20444 (Ffind_operation_coding_system, Fset_coding_system_priority)
20445 (Fcoding_system_eol_type): Doc fixes.
20446
204472008-05-17 Glenn Morris <rgm@gnu.org>
20448
20449 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
20450
204512008-05-16 Eli Zaretskii <eliz@gnu.org>
20452
20453 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
20454 and st_gid.
20455
20456 * frame.c (Fdelete_frame): Don't call font_update_drivers if
20457 HAVE_WINDOW_SYSTEM is not defined.
20458
20459 * xfaces.c (merge_face_ref, merge_face_vectors)
20460 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
20461 HAVE_WINDOW_SYSTEM is defined.
20462 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
20463
204642008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
20465
20466 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
20467
204682008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20469
20470 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
20471
204722008-05-15 Kenichi Handa <handa@m17n.org>
20473
20474 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
20475 preference.
20476
204772008-05-15 Glenn Morris <rgm@gnu.org>
20478
20479 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
20480
204812008-05-15 Chong Yidong <cyd@stupidchicken.com>
20482
20483 * fns.c (init_fns): Don't initialize weak_hash_tables here.
20484 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
20485
20486 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
20487
204882008-05-15 Kenichi Handa <handa@m17n.org>
20489
20490 * ftfont.c (ftfont_list): Downcase family name to check generic
20491 families.
20492
20493 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
20494 font-spec for QCfont value.
20495
20496 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
20497 buffer. Check the return value of it.
20498
204992008-05-14 Jason Rumney <jasonr@gnu.org>
20500
20501 * w32term.c (w32_get_glyph_overhangs): Remove.
20502 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
20503
205042008-05-14 Kenichi Handa <handa@m17n.org>
20505
20506 * font.c (font_prop_validate): Make nil a valid value.
20507 (font_clear_cache): Check if the cached vector of entities is nil
20508 or not.
20509
205102008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20511
20512 * emacs.c (main_thread): Conditionalize on
20513 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20514 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
20515
20516 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
20517 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
20518 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20519
205202008-05-14 Kenichi Handa <handa@m17n.org>
20521
20522 * coding.c (detect_coding_iso_2022): Ignore a coding category that
20523 has no corresponding coding system.
20524
205252008-05-14 Jason Rumney <jasonr@gnu.org>
20526
20527 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
20528
20529 * w32font.h (w32font_open_internal): Update declaration.
20530
20531 * w32font.c (w32font_open_internal): Change last argument from
20532 w32font_info struct to font object. Fill in font object from
20533 font_entity. Get Outline metrics if possible. Use them to
20534 calculate underline position and thickness. Use xlfd name as name
20535 property. Don't set codepage.
20536 (w32font_open): Pass font_object to w32font_open_internal. Don't
20537 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
20538 (w32font_draw): Use s->font.
20539 (clear_cached_metrics): Don't clear non-existent blocks.
20540
20541 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
20542 font was not found.
20543 (x_draw_glyph_string): Use underline position and thickness from font.
20544
20545 * w32uniscribe.c (uniscribe_open): Pass font_object to
20546 w32font_open_internal.
20547
205482008-05-14 Kenichi Handa <handa@m17n.org>
20549
20550 These changes are to delete all legacy font-handling codes, and
20551 make Emacs use only font-backends.
20552
20553 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
20554 (frame.o, image.o, print.o): Depend on $(FONTSRC).
20555
20556 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
20557
20558 * charset.h (Vcharset_non_preferred_head)
20559 (Vcurrent_iso639_language): Extern them.
20560
20561 * charset.c (Vcharset_non_preferred_head): New variable.
20562 (Vcurrent_iso639_language): New variable.
20563 (syms_of_charset): Declare it as a Lisp variable.
20564 (char_charset): Don't check non preferred charsets. As a last
20565 resort, return charset_unicode.
20566 (Fset_charset_priority): Update Vcharset_non_preferred_head.
20567
20568 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
20569 conditionals. Don't check enable_font_backend. Delete all codes
20570 used only when USE_FONT_BACKEND is not defined.
20571
20572 * dispextern.h (struct glyph_string): Change type of `font' to
20573 `struct font *'.
20574 (struct glyph_string): New member underline_position and
20575 underline_thickness.
20576 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
20577 (struct face): Change type of `font' to `struct font *'.
20578 Remove members `font_name', `font_info_id'.
20579 (per_char_metric, encode_char): Delete externs.
20580 (calc_pixel_width_or_height): Adjust the prototype.
20581
20582 * emacs.c (enable_font_backend): Delete extern.
20583 (main): Don't set enable_font_backend. Don't check the command
20584 line argument "-disable-font-backend".
20585
20586 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
20587 (enum font_property_index): New members FONT_DPI_INDEX,
20588 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
20589 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
20590 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
20591 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
20592 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
20593 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
20594 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
20595 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
20596 (struct font_spec, struct font_entity): New structs.
20597 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
20598 (struct font): Many members from old "struct font_info" moved to
20599 here. Members font and entity deleted.
20600 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
20601 the new font-related objects.
20602 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
20603 (CHECK_FONT_GET_OBJECT): Likewise.
20604 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
20605 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
20606 (struct font_driver): New members case_sensitive anc check.
20607 Type of the member list and open changed.
20608 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
20609 (font_symbolic_width, font_find_object, font_get_spec)
20610 (font_set_lface_from_name): Delete extern.
20611 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
20612
20613 * font.c: Include <strings.h>.
20614 (enable_font_backend): Delete it.
20615 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
20616 (CHECK_VALIDATE_FONT_SPEC): Delete it.
20617 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
20618 (null_string): Delete it.
20619 (null_vector): Make it static.
20620 (font_family_alist): Delete it.
20621 (Qnormal): Extern it.
20622 (QCextra, QClanguage): Delete it.
20623 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
20624 (font_make_spec, font_make_entity, font_make_object)
20625 (font_intern_prop): Rename from intern_downcase. Don't downcase
20626 the string. Callers changed.
20627 (font_pixel_size): Adjust for the format change of font-related
20628 objects.
20629 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
20630 (font_style_to_value, font_style_symbolic): New function.
20631 (build_font_family_alist): Delete it.
20632 (font_registry_charsets): Use Fassoc_string instead of
20633 assq_no_quit.
20634 (font_prop_validate_symbol): Don't return null_string.
20635 (font_prop_validate_style): Adjust for the change of
20636 style-related values in a font vector.
20637 (font_property_table): Delete entries for QClanguage and
20638 QCantialias, add entries for QCavgwidth.
20639 (get_font_prop_index): Delete the 2nd argument FROM.
20640 (font_prop_validate): Arguments changed.
20641 (font_put_extra): Adjust for the change of font-related objects.
20642 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
20643 (font_parse_fcname, font_unparse_fcname)
20644 (font_prepare_composition): Likewise.
20645 (font_parse_family_registry): Rename from font_merge_old_spec.
20646 (otf_open): Delete the 1st arg entity.
20647 (font_otf_capability): Adjust for the above change.
20648 (font_score): New arg alternate_families. Adjusted for the change
20649 of font-related objects.
20650 (font_sort_entites): New arg best_only.
20651 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
20652 Delete them.
20653 (font_match_p): Check alternate families.
20654 (font_find_object): Delete it.
20655 (font_check_object): New function.
20656 (font_clear_cache): Adjust for the change of font-related objects.
20657 (font_delete_unmatched): New arg.
20658 (font_list_entities): Call font_driver->list with a spec that
20659 doesn't specify style-related properties.
20660 (font_matching_entity): Arguments changed. Caller changed.
20661 (font_open_entity): Adjust for the change of font-related objects.
20662 (font_close_object, font_has_char, font_encode_char)
20663 (font_get_name, font_get_spec): Likewise.
20664 (font_spec_from_name, font_clear_prop, font_update_lface):
20665 New functions.
20666 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
20667 (font_prepare_for_face, font_done_for_face, font_open_by_name)
20668 (font_at): Adjust for the change of font-related objects.
20669 (font_range): New function.
20670 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
20671 (Ffont_xlfd_name): Adjust for the change of font-related objects.
20672 (Fcopy_font_spec, Fmerge_font_spec): New function.
20673 (Ffont_family_list): Rename from list-families.
20674 (Finternal_set_font_style_table): Arguments changed.
20675 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
20676 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
20677 change of font-related objects.
20678 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
20679
20680 * fontset.h (struct font_info): Delete it. Most members go to
20681 struct font.
20682 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
20683 (enum FONT_SPEC_INDEX): Delete it.
20684 (font_info, list_fonts_func, load_font_func, query_font_func)
20685 (set_frame_fontset_func, find_ccl_program_func)
20686 (get_font_repertory_func, new_fontset_from_font_name):
20687 Delete externs.
20688 (fontset_from_font_name): Extern it.
20689 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
20690 (FONT_INFO_FROM_FACE): Deleted.
20691 (face_for_font): Adjust prototype.
20692
20693 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
20694 conditionals. Don't check enable_font_backend. Delete all codes
20695 used only when USE_FONT_BACKEND is not defined.
20696 (get_font_info_func, list_font_func, load_font_func)
20697 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
20698 (get_font_repertory_func): Delete them.
20699 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
20700 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
20701 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
20702 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
20703 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
20704 (fontset_compare_rfontdef): New function.
20705 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
20706 rfont-defs by qsort. Adjusted for the change of font-group vector.
20707 (load_font_get_repertory): Deleted.
20708 (fontset_find_font): Use new macros to ref/set elements of
20709 font-def and rfont-def.
20710 (fontset_font): Fix the timing of remembering that no font for C.
20711 (free_face_fontset): Do nothing if the face has no fontset.
20712 (face_suitable_for_char_p): Use new macros to ref/set elements of
20713 rfont-def.
20714 (face_for_char): Likewise. Call face_for_char with font_object.
20715 (fs_load_font): Delete. Delete #pragma surrounding it.
20716 (fs_query_fontset): Use strcasecmp instead of strcmp.
20717 (generate_ascii_font_name): Adjust for the format change of
20718 font-spec.
20719 (Fset_fontset_font): Likewise. Use new macros to set elements of
20720 font-def.
20721 (Fnew_fontset): Use font_unparse_xlfd to generate
20722 FONTSET_ASCII (fontset).
20723 (new_fontset_from_font_name): Deleted.
20724 (fontset_from_font): Rename from new_fontset_from_font. Check if
20725 a fontset is already created for the font. FIx updating of
20726 Vfontset_alias_alist.
20727 (fontset_ascii_font): Deleted.
20728 (Ffont_info): Adjust for the format change of font-spec.
20729 (Finternal_char_font): Likewise.
20730 (Ffontset_info): Likewise.
20731 (syms_of_fontset): Don't check load_font_func.
20732
20733 * fns.c (internal_equal): Handle PREV_FONT.
20734
20735 * frame.h: Delete USE_FONT_BACKEND conditional.
20736
20737 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
20738 conditionals. Don't check enable_font_backend. Delete all codes
20739 used only when USE_FONT_BACKEND is not defined.
20740 (x_set_font): Call x_new_font, not x_new_fontset2.
20741 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
20742 already set for the frame.
20743
20744 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
20745 Make a font-entity by font_make_entity. Use font_intern_prop instead
20746 of intern_downcase. Use FONT_SET_STYLE to set a style-related
20747 font property. If a font is scalable, set avgwidth property to 0.
20748 Set font-entity property by font_put_extra.
20749 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
20750 (ffont_driver): Adjust for the change of struct font_driver.
20751 (ftfont_spec_pattern): New function.
20752 (ftfont_list): Return a list, not vector.
20753 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
20754 (ftfont_list_family): Don't downcase names.
20755 (ftfont_free_entity): Deleted.
20756 (ftfont_open): Return a font-object. Adjusted for the change of
20757 struct font. Get underline_thickness and underline_position from
20758 font property. Don't update dpyinfo->smallest_font_height and
20759 dpyinfo->smallest_char_width.
20760 (ftfont_close): Don't free `struct font'.
20761 (ftfont_has_char): Adjust for the format change of font-entity.
20762 (ftfont_encode_char, ftfont_text_extents): Likewise.
20763
20764 * ftxfont.c (ftxfont_list): Return a list, not vector.
20765 (ftxfont_open): Return a font-object. Adjusted for the change of
20766 struct font. Get underline_thickness and underline_position from
20767 font property. Don't update dpyinfo->smallest_font_height and
20768 dpyinfo->smallest_char_width.
20769 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
20770 (ftxfont_draw): Adjust for the change of struct font.
20771
20772 * image.c (image_ascent): Don't include "charset.h".
20773 Include "character.h" and "font.h".
20774
20775 * lisp.h (enum pvec_type): New member PREV_FONT.
20776 (Fassoc_string): EXFUN it.
20777
20778 * print.c: Include font.h.
20779 (print_object): Handle font-related objects.
20780
20781 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
20782 conditionals. Don't check enable_font_backend. Delete all codes
20783 used only when USE_FONT_BACKEND is not defined.
20784 (handle_auto_composed_prop): Do nothing if it->f is not on a
20785 window system. Check how many following characters can be
20786 displayed by the same font.
20787 (calc_pixel_width_or_height): Type of the 4th arg is changed to
20788 'struct font *'.
20789 (get_char_face_and_encoding): Assign the whole encoding task to
20790 the `encode-char' method of a font driver.
20791 (fill_composite_glyph_string): Adjust for the change of `struct
20792 face' and `struct glyph_string'.
20793 (fill_glyph_string): Likewise.
20794 (get_per_char_metric): Arguments changed.
20795 (x_get_glyph_overhangs): Adjust for the change of `struct face'
20796 and `struct glyph_string'.
20797 (produce_stretch_glyph, calc_line_height_property)
20798 (x_produce_glyphs): Likewise.
20799
20800 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
20801 conditionals. Don't check enable_font_backend. Delete all codes
20802 used only when USE_FONT_BACKEND is not defined.
20803 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
20804 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
20805 (Qp): Extern them.
20806 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
20807 Deleted.
20808 (struct font_name): Deleted.
20809 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
20810 (compare_fonts_by_sort_order): New function.
20811 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
20812 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
20813 Deleted.
20814 (Fx_family_fonts): Use font_list_entities, and sort fonts by
20815 compare_fonts_by_sort_order.
20816 (Fx_font_family_list): Call Ffont_family_list.
20817 (face_numeric_value, face_numeric_weight, face_numeric_slant)
20818 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
20819 (face_symbolic_slant, face_symbolic_swidth)
20820 (split_font_name_into_vector, build_font_name_from_vector)
20821 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
20822 (font_rescale_ratio, split_font_name, build_font_name)
20823 (free_font_names, sort_fonts, x_face_list_fonts)
20824 (face_font_available_p, sorted_font_list, cmp_font_names)
20825 (font_list_1, concat_font_list, font_list, remove_duplicates):
20826 Deleted.
20827 (Fx_list_fonts): Use Ffont_list.
20828 (LFACE_AVGWIDTH): Deleted.
20829 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
20830 by FONTP.
20831 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
20832 (set_lface_from_font_name): Delete it.
20833 (set_lface_from_font): Rename from
20834 set_lface_from_font_and_fontset. Caller changed. Don't set
20835 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
20836 for face.
20837 (merge_face_vectors): Copy font-spec if necessary.
20838 Clear properties of the font-spec if necessary.
20839 (merge_face_ref): Clear properties of the font-spec if necessary.
20840 (Finternal_set_lisp_face_attribute): Likewise.
20841 (set_font_frame_param): Use font_load_for_lface to load a
20842 font-object, and call Fmodify_frame_parameters with it.
20843 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
20844 font name by Ffont_xlfd_name.
20845 (Finternal_lisp_face_attribute_values): Don't check QCweight,
20846 QCslant, and QCwidth.
20847 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
20848 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
20849 Compare fonts by EQ.
20850 (lookup_non_ascii_face): Deleted.
20851 (face_for_font): The 2nd argument changed.
20852 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
20853 Check atomic font properties by case insensitive.
20854 (realize_non_ascii_face): Set face->overstrike correctly.
20855 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
20856 (dump_realized_face): Get font name from
20857 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
20858
20859 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
20860 conditionals. Don't check enable_font_backend. Delete all codes
20861 used only when USE_FONT_BACKEND is not defined.
20862 (xic_create_xfontset): Original code deleted and renamed from
20863 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
20864 (x_make_gc): Don't set GCFont in GCs.
20865 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
20866 opened by "fixed".
20867 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
20868 find_ccl_program_func, query_font_func, set_frame_fontset_func,
20869 get_font_repertory_func.
20870
20871 * xfont.c: Include <stdlib.h> and "ccl.h".
20872 (struct xfont_info): New structure.
20873 (xfont_query_font): Deleted.
20874 (xfont_find_ccl_program): Rename from x_find_ccl_program and
20875 moved from xterm.c.
20876 (xfont_driver): Adjust for the change of struct font_driver.
20877 (compare_font_names): New function.
20878 (xfont_list_pattern): Sort font names case insensitively.
20879 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
20880 (xfont_list): Return a list, not vector.
20881 (xfont_match): If the font doesn't have QCname property, generate
20882 a name from the other font properties.
20883 (xfont_open): Return a font-object. Adjusted for the change of
20884 struct font. Get underline_thickness and underline_position from
20885 font property. Don't update dpyinfo->smallest_font_height and
20886 dpyinfo->smallest_char_width.
20887 (xfont_close): Don't free struct font.
20888 (xfont_prepare_face): Adjust for the change of struct font.
20889 (xfont_done_face): Deleted.
20890 (xfont_has_char): Adjust for the change of struct font.
20891 (xfont_encode_char, xfont_draw): Likewise.
20892 (xfont_check): New function.
20893
20894 * xftfont.c (xftfont_list): Adjust for the change of `list'
20895 callback function.
20896 (xftfont_match): Adjust for the format change of font-entity.
20897 (xftfont_open): Adjust for the format change of font-entity and
20898 font-object. Adjusted for the change of struct font. Return a
20899 font-object. Don't update dpyinfo->smallest_font_height and
20900 dpyinfo->smallest_char_width.
20901 (xftfont_close): Block input while calling XftFontClose.
20902 (xftfont_prepare_face): Don't block input while calling
20903 xftfont_get_colors. Adjusted for the change of struct font.
20904 (xftfont_shape): Return value of error case fixed.
20905
20906 * xrdb.c (x_load_resources): Don't setup a fontset resource.
20907
20908 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
20909 conditionals.
20910 (FONT_WIDTH): Return (f)->max_width.
20911 (struct x_display_info): Delete member `font'.
20912 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
20913 (x_find_ccl_program, x_get_font_repertory): Delete externs.
20914 (struct x_output): Change type of `font' to `struct font *'.
20915
20916 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
20917 conditionals. Don't check enable_font_backend. Delete all codes
20918 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
20919 (x_per_char_metric, x_encode_char): Deleted.
20920 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
20921 (x_compute_glyph_string_overhangs): Adjust for the change of
20922 `struct face'.
20923 (x_draw_glyph_string_foreground)
20924 (x_draw_composite_glyph_string_foreground): Likewise.
20925 (x_draw_glyph_string): Likewise. Use font->underline_position and
20926 font->underline_thickness.
20927 (x_new_font): Rename from x_new_fontset2.
20928 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
20929 (x_check_font): Call `check' method of a font driver.
20930 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
20931 (x_query_font, x_get_font_repertory): Deleted.
20932 (x_find_ccl_program): Rename and moved to xfont.c.
20933 (x_redisplay_interface): Adjust for the change of `struct
20934 redisplay_interface'.
20935
20936 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
20937 conditionals. Don't check enable_font_backend. Delete all codes
20938 used only when USE_FONT_BACKEND is not defined. Surround non-used
20939 code by "#ifdef OLD_FONT" and "endif".
20940 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
20941
20942 * w32font.h (struct w32font_info): New member.
20943 (FONT_COMPAT): New macro.
20944 (w32font_open_internal): Prototype adjusted.
20945
20946 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
20947 OLD_FONT" and "endif".
20948
20949 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
20950 conditionals. Don't check enable_font_backend. Delete all codes
20951 used only when USE_FONT_BACKEND is not defined.
20952 (w32font_open): Return a font-object. Make a font-object by
20953 font_make_object. Adjusted for the change of struct w32font_info.
20954 (w32font_close): Don't free struct font. Adjusted for the change
20955 of struct w32font_info.
20956 (w32font_encode_char, w32font_text_extents, w32font_draw):
20957 Adjust for the change of struct w32font_info.
20958 (w32font_draw): Likewise.
20959 (w32font_list_internal): Return a list, not vector.
20960 (w32font_open_internal): Change the 4th arg to font-object.
20961 Adjusted for the change of struct w32font_info and font-object format.
20962 (add_font_name_to_list): Don't downcase names.
20963 (w32_enumfont_pattern_entity): Make a font-entity by
20964 font_make_entity. Adjusted for the format change of font-entity.
20965 Use FONT_SET_STYLE to set a style-related font property. If a
20966 font is scalable, set avgwidth property to 0. Set font-entity
20967 property by font_put_extra.
20968 (font_matches_spec): Adjust for the format change of font-entity.
20969 (w32_weight_table, w32_decode_weight): New variables.
20970 (w32_encode_weight): New function.
20971 (fill_in_logfont): Adjust for the format change of font-spec.
20972 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
20973 weight value.
20974 (w32font_driver): Adjust for the change of struct font_driver.
20975
20976 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
20977 conditionals. Don't check enable_font_backend. Surround non-used
20978 code by "#ifdef OLD_FONT" and "endif".
20979 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
20980 (FONT_AVG_WIDTH): Adjust for the change of struct font.
20981
20982 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
20983 conditionals. Don't check enable_font_backend. Delete all codes
20984 used only when USE_FONT_BACKEND is not defined. Surround non-used
20985 code by "#ifdef OLD_FONT" and "endif".
20986
20987 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
20988 (uniscribe_open): Return value changed to font-object.
20989 Adjusted for the format change of font-object.
20990 (uniscribe_otf_capability): Adjust for the change of struct font.
20991 (add_opentype_font_name_to_list): Don't downcase names.
20992 (uniscribe_font_driver): Adjust for the change of struct
20993 font_driver.
20994
209952008-05-13 Chong Yidong <cyd@stupidchicken.com>
20996
20997 * dispnew.c (update_frame_1): Check if tty output is still valid
20998 before flushing it.
20999
210002008-05-13 Jan Djärv <jan.h.d@swipnet.se>
21001
21002 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
21003 to Gtk+ menus.
21004
210052008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21006
21007 * dired.c (file_name_completion): Tweak the code so as to always do it
21008 in a single pass. Tighten the scope of some variables.
21009
21010 * dired.c (Qdefault_directory): New var.
21011 (file_name_completion): Use it instead of Fexpand_file_name.
21012 (syms_of_dired): Initialize it.
21013
210142008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21015
21016 * fileio.c (double_dollars): Remove dead code.
21017
210182008-05-10 Eli Zaretskii <eliz@gnu.org>
21019
21020 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
21021 Mention w32-get-true-file-attributes in doc string.
21022
21023 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
21024
210252008-05-09 Glenn Morris <rgm@gnu.org>
21026
21027 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
21028 2008-04-23.
21029
210302008-05-09 Eli Zaretskii <eliz@gnu.org>
21031
21032 Support for reporting owner and group of each file on MS-Windows:
21033 * dired.c (stat_uname, stat_gname): New functions, with special
21034 implementation for w32.
21035 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
21036
21037 * w32.c: Rename the_passwd_* to dflt_passwd_*.
21038 (dflt_group_name): New static variable.
21039 (dflt_group): Rename from the_group.
21040 (init_user_info): Init dflt_group fields. Get user's group name
21041 from LookupAccountSid.
21042 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
21043 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
21044 New initialization states.
21045 (globals_of_w32): Initialize them to zero. Initialize the default
21046 group name to "None".
21047 (GetFileSecurity_Name): New global var, the name of the function
21048 to call for GetFileSecurity.
21049 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
21050 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
21051 (get_file_security, get_security_descriptor_owner)
21052 (get_security_descriptor_group, is_valid_sid)
21053 (get_file_security_desc, get_rid, get_name_and_id)
21054 (get_file_owner_and_group): New functions.
21055 (stat): Use get_file_security_desc and get_file_owner_and_group to
21056 report the owner and primary group of each file. Don't ignore the
21057 high 32 bits of file's size, now that st_size is 64-bit wide.
21058 Fix test when to get true file attributes.
21059 (init_user_info): Use get_rid instead of equivalent inline code.
21060 (fstat): Don't ignore the high 32 bits of file's size.
21061
210622008-05-09 Chong Yidong <cyd@stupidchicken.com>
21063
21064 * image.c (png_load): Use correct bit-depth for setting background
21065 color.
21066
210672008-05-08 Eli Zaretskii <eliz@gnu.org>
21068
21069 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
21070 epa-hook.elc.
21071
210722008-05-08 Juanma Barranquero <lekktu@gmail.com>
21073
21074 * font.c (Ffont_match_p): Don't use `iff' in docstring.
21075
210762008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
21077
21078 * macfns.c (Fx_create_frame): Make a copy of frame parameters
21079 because the original parameters are in pure storage now.
21080 (mac_window): Remove unused params. Update callers.
21081
210822008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
21083
21084 * lread.c (substitute_object_recurse): Use lower-level primitives.
21085 Don't signal errors when traversing sub-char-tables.
21086 Don't loop over all the possible characters when traversing char-tables.
21087
21088 * print.c (print_preprocess): Add sub-char-tables to the print-table,
21089 just like we do in print.c.
21090
210912008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
21092
21093 * minibuf.c (Ftry_completion): Remove code left over from when we used
21094 scmp instead of Fcompare_strings.
21095
210962008-05-04 Juanma Barranquero <lekktu@gmail.com>
21097
21098 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
21099
211002008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21101
21102 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
21103 Create bitmap context in native byte order.
21104
21105 * macterm.c (XDrawLine)
21106 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
21107 context in native byte order.
21108
211092008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21110
21111 * config.in: Regenerate.
21112
21113 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
21114 New definitions for Image I/O support.
21115 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
21116 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
21117 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21118 (mac_data_provider_release_data, image_load_image_io)
21119 [USE_MAC_IMAGE_IO]: New functions.
21120 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
21121 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
21122 (init_image_func_pointer) [MAC_OSX]: Remove function.
21123 (image_load_quartz2d) [MAC_OSX]: Check availability of
21124 CGImageCreateWithPNGDataProvider at compile time.
21125 Use lowercase `false' for boolean constant.
21126 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
21127 Use image_load_image_io.
21128 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
21129 Don't check MyCGImageCreateWithPNGDataProvider.
21130 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
21131 Don't call init_image_func_pointer.
21132
21133 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
21134
21135 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
21136 Make variable non-static.
21137 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
21138 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21139
21140 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
21141 (RED_FROM_ULONG): Mask off higher bits.
21142 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
21143
21144 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
21145 Include AvailabilityMacros.h.
21146 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
21147 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
21148
211492008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
21150
21151 * chartab.c (Fset_char_table_range): If range is t, really set all
21152 chars to that value.
21153
211542008-05-03 Eli Zaretskii <eliz@gnu.org>
21155
21156 * dired.c (Ffile_attributes): Don't allow the device number become
21157 negative.
21158
211592008-05-02 Daiki Ueno <ueno@unixuser.org>
21160
21161 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
21162
211632008-05-02 Juri Linkov <juri@jurta.org>
21164
21165 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
21166 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
21167 DEFAULT argument as a list of default values in docstrings.
21168
211692008-05-01 Chong Yidong <cyd@stupidchicken.com>
21170
21171 * puresize.h (BASE_PURESIZE): Increase to 1210000.
21172
211732008-05-01 Martin Rudalics <rudalics@gmx.at>
21174
21175 * dispnew.c (change_frame_size_1): Preserve small windows when
21176 shrinking frames by calling set_window_height|width with third
21177 arg 2.
21178
21179 * window.h (struct window): Replace field too_small_ok by field
21180 resize_proportionally.
21181
21182 * window.c (make_window): Initialize resize_proportionally.
21183 (enlarge_window): Temporarily set resize_proportionally to make
21184 sure that shrink_windows does scale the window proportionally.
21185 (shrink_windows): When window has resize_proportionally set try
21186 to shrink it proportionally by stealing from other windows.
21187 (struct saved_window, Fset_window_configuration)
21188 (compare_window_configurations): Handle resize_proportionally.
21189 (WINDOW_TOTAL_SIZE): New macro.
21190 (window_min_size, shrink_windows, size_window): Use it.
21191 (check_min_window_sizes): Remove. Invalid values of
21192 window-min-height|width are handled by window_min_size_2 now.
21193 (size_window, Fsplit_window, enlarge_window)
21194 (adjust_window_trailing_edge, grow_mini_window): Don't call
21195 check_min_window_sizes.
21196 (window_min_size_2, window_min_size_1, window_min_size):
21197 New argument safe_p for retrieving "safe" minimum sizes.
21198 (Fdisplay_buffer, Fsplit_window, enlarge_window)
21199 (adjust_window_trailing_edge, grow_mini_window):
21200 Adjust arguments of window_min_size... functions.
21201 (shrink_windows): Argument min_size removed. New argument
21202 safe_p allows shrinking windows to their safe minimum sizes.
21203 Calculate minimum size and decide whether a window shall be
21204 deleted for each window individually.
21205 (size_window): When nodelete_p equals 2, tell shrink_windows to
21206 delete windows only if their new minimum size is no more safe.
21207 (shrink_window_lowest_first): Call window_min_size_1 to make
21208 sure to preserve modeline of bottom-most window when resizing
21209 the minibuffer.
21210 (Fset_window_configuration, Fcurrent_window_configuration)
21211 (compare_window_configurations): Do not handle
21212 window-min-height|width any more.
21213 (syms_of_window): Clarify window-min-height|width doc-strings.
21214
212152008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
21216
21217 * dired.c (file_name_completion): Fix up the encoding/decoding issue
21218 some more. Copy some of the code from Ftry_completions.
21219 Remove special case code that dates back to initial revision when the
21220 slash was only added when necessary and that can't trigger nowadays.
21221
212222008-04-27 Kenichi Handa <handa@m17n.org>
21223
21224 * font.c (font_prop_validate): Signal `error' instead of `font'.
21225
212262008-04-29 Jason Rumney <jasonr@gnu.org>
21227
21228 * w32fns.c (Fw32_battery_status): New defun.
21229 (syms_of_w32fns): Defsubr it.
21230
212312008-04-28 Andreas Schwab <schwab@suse.de>
21232
21233 * dired.c (file_name_completion): Fix another mixing of encoded
21234 and decoded names.
21235
212362008-04-28 Juanma Barranquero <lekktu@gmail.com>
21237
21238 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
21239
212402008-04-27 Juanma Barranquero <lekktu@gmail.com>
21241
21242 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
21243
212442008-04-27 Andreas Schwab <schwab@suse.de>
21245
21246 * dired.c (file_name_completion): Fix inappropriate mixing of
21247 encoded and decoded names.
21248
21249 * xterm.c (XTread_socket): Fix use of uninitialized variable.
21250
21251 * puresize.h (BASE_PURESIZE): Increase to 1200000.
21252
212532008-04-26 Eli Zaretskii <eliz@gnu.org>
21254
21255 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
21256 2008-03-31, it's not needed anymore with `struct stat' definition
21257 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
21258 for the same reasons.
21259
212602008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
21261
21262 * m/sparc.h: Additional redefinitions for GNU/Linux.
21263
212642008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21265
21266 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
21267 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
21268 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
21269 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
21270 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21271 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
21272 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21273 Likewise.
21274
21275 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
21276 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
21277 (mac_ax_number_of_characters): Add externs.
21278 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21279 [USE_MAC_TSM]: Likewise.
21280 (mac_handle_text_input_event) [MAC_OSX]:
21281 Handle kEventTextInputOffsetToPos for no active input area case.
21282 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21283 (mac_handle_document_access_event)
21284 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
21285 (install_application_handler) [MAC_OSX]: Register handlers for
21286 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21287 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21288 Register mac_handle_document_access_event.
21289
21290 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
21291 Make functions non-static.
21292
212932008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
21294
21295 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
21296 (read_file_name_completion_ignore_case, insert_default_directory)
21297 (Qdefault_directory): Move to minibuffer.el.
21298 (Fread_file_name): Call the new `read-file-name' instead.
21299
213002008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21301
21302 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
21303 Make function non-static.
21304 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
21305 Remove function.
21306 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21307 Move to mactoolbox.c.
21308 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
21309
21310 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
21311 (mac_rect_make): New macro.
21312
21313 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
21314 instead of float.
21315 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21316 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
21317 (XSetBackground) [USE_CG_DRAWING]: Likewise.
21318 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
21319 CGRectMake.
21320 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21321 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
21322 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
21323 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21324 instead of WindowRef in argument type.
21325 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
21326 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
21327 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
21328 instead of DISPLAY. All uses changed.
21329 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
21330 (x_calc_absolute_position): Simplify so as not to use
21331 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
21332
21333 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21334 instead of WindowRef in argument type.
21335 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
21336 [TARGET_API_MAC_CARBON]: Remove externs.
21337 (create_apple_event, mac_event_parameters_to_lisp)
21338 [TARGET_API_MAC_CARBON]: Add externs.
21339
21340 * mactoolbox.c (Vmac_ts_script_language_on_focus)
21341 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
21342 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
21343 is clicked.
21344 (x_activate_menubar): Remove extern for saved_menu_event_location.
21345 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21346 Move from mac.c.
21347
213482008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21349
21350 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
21351 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
21352
213532008-04-23 Jason Rumney <jasonr@gnu.org>
21354
21355 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
21356 attributes only for local files.
21357
21358 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
21359 default to Qlocal.
21360
213612008-04-22 Juri Linkov <juri@jurta.org>
21362
21363 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
21364 read-buffer-to-switch instead of using the letter "B".
21365
213662008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
21367
21368 * fileio.c (Qdefault_directory): New variable.
21369 (Fread_file_name): Use it to pass `dir' to the completion functions.
21370
213712008-04-20 Chong Yidong <cyd@stupidchicken.com>
21372
21373 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
21374
213752008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
21376
21377 * keyboard.c (Vpre_help_message): Remove.
21378 (show_help_echo): Remove default C code.
21379
21380 * dired.c (directory_files_internal, file_name_completion):
21381 Only call ENCODE_FILE if the string is indeed decoded.
21382
213832008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21384
21385 * Makefile.in (TOOLKIT_DEFINES): Remove.
21386 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
21387
213882008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21389
21390 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
21391 (mactoolbox.o): New target.
21392
21393 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
21394 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
21395
21396 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
21397 Use mac_set_frame_window_background instead of XSetWindowBackground.
21398 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
21399 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
21400 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
21401 instead of SetWindowTitleWithCFString.
21402 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
21403 Move function to mactoolbox.c.
21404 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
21405 Use mac_set_window_modified instead of SetWindowModified.
21406 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
21407 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
21408 (Fx_focus_frame): Use mac_front_non_floating_window instead of
21409 FrontNonFloatingWindow. Use mac_activate_window instead of
21410 ActivateWindow. Use mac_active_non_floating_window instead of
21411 ActiveNonFloatingWindow.
21412 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
21413 Use mac_show_hourglass and mac_hide_hourglass.
21414 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
21415 instead of GetGlobalMouse.
21416 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
21417 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
21418 Use mac_bring_window_to_front instead of BringToFront.
21419 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
21420 mactoolbox.c.
21421 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
21422 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
21423 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
21424 mactoolbox.c.
21425
21426 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
21427 (XtPointer): Move typedef from macmenu.c.
21428 (enum button_type): Move enum from macmenu.c.
21429 (widget_value): Move typedef from macmenu.c.
21430 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
21431 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21432 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21433 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21434 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21435 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21436 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21437 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
21438 (Selection): Move typedef from macselect.c.
21439 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
21440 macterm.c.
21441 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
21442 (mac_is_window_collapsed, mac_bring_window_to_front)
21443 (mac_send_window_behind, mac_hide_window, mac_show_window)
21444 (mac_collapse_window, mac_front_non_floating_window)
21445 (mac_active_non_floating_window, mac_activate_window)
21446 (mac_move_window_structure, mac_move_window, mac_size_window)
21447 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
21448
21449 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
21450 (enum mac_menu_kind): Move enum to mactoolbox.c.
21451 (min_menu_id): Move variable to mactoolbox.c.
21452 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
21453 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
21454 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
21455 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
21456 [TARGET_API_MAC_CARBON]: Likewise.
21457 (XtPointer): Move typedef to macgui.h.
21458 (enum button_type): Move enum to macgui.h.
21459 (widget_value): Move typedef to macgui.h.
21460 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21461 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21462 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21463 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21464 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21465 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21466 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
21467 (popup_activated_flag): Make variable non-static.
21468 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
21469 (add_menu_item, fill_menu, dispose_menus):
21470 Move functions to mactoolbox.c.
21471 (restore_show_help_function, menu_target_item_handler)
21472 (install_menu_target_item_handler, mac_handle_dialog_event)
21473 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
21474 [TARGET_API_MAC_CARBON]: Likewise.
21475 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
21476 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21477 (find_and_call_menu_selection, name_is_separator): Make function
21478 non-static.
21479 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
21480 to mactoolbox.c.
21481 (set_frame_menubar): Don't call install_menu_quit_handler.
21482 (menu_item_selection): New variable.
21483 (mac_menu_show): Use create_and_show_popup_menu.
21484 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
21485 selection but set variable menu_item_selection. All uses changed.
21486 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
21487 Call install_menu_quit_handler. Move to mactoolbox.c.
21488
21489 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
21490 (Selection): Move typedef to macgui.h.
21491 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
21492 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
21493 Make variables non-static.
21494 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21495 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
21496 Make functions non-static.
21497 (Vmac_service_selection) [MAC_OSX]: Likewise.
21498 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
21499 (mac_valid_selection_target_p, mac_clear_selection)
21500 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21501 (mac_put_selection_value, mac_selection_has_target_p)
21502 (mac_get_selection_value, mac_get_selection_target_list)
21503 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
21504 Move functions to mactoolbox.c.
21505 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
21506 Likewise.
21507 (copy_scrap_flavor_data, mac_handle_service_event)
21508 (install_service_handler) [MAC_OSX]: Likewise.
21509 (syms_of_macselect) <Vmac_dnd_known_types>:
21510 Use mac_dnd_default_known_types.
21511
21512 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
21513 Move to mactoolbox.c.
21514 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
21515 (Fx_selection_owner_p): Add EXFUN.
21516 (install_window_handler, remove_window_handler, XSetWindowBackground):
21517 Remove externs.
21518 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
21519 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
21520 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
21521 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
21522 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
21523 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
21524 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
21525 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
21526 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
21527 (create_and_show_popup_menu, mac_get_selection_from_symbol)
21528 (mac_valid_selection_target_p, mac_clear_selection)
21529 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21530 (mac_put_selection_value, mac_selection_has_target_p)
21531 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
21532 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
21533 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
21534 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21535 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
21536 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21537 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
21538 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21539 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21540
21541 * mactoolbox.c: New file.
21542
215432008-04-18 Jason Rumney <jasonr@gnu.org>
21544
21545 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
21546
215472008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21548
21549 * character.c (Fmultibyte_char_to_unibyte):
21550 Return latin1 chars unchanged.
21551
21552 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
21553 relocated if it points to `name'.
21554
215552008-04-17 Kenichi Handa <handa@m17n.org>
21556
21557 * data.c (Faset): Allow setting a multibyte character in an
21558 ASCII-only unibyte string.
21559
21560 * lisp.h (STRING_SET_MULTIBYTE): New macro.
21561
215622008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
21563
21564 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
21565 done in config.h.
21566
215672008-04-16 Juanma Barranquero <lekktu@gmail.com>
21568
21569 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
21570 (Fchar_direction): Add usage in the docstring.
21571
215722008-04-15 Chong Yidong <cyd@stupidchicken.com>
21573
21574 * keyboard.c (read_key_sequence): Remove always-true checks.
21575
215762008-04-14 Jason Rumney <jasonr@gnu.org>
21577
21578 * w32font.c (w32font_open_internal): Set max_bounds.descent in
21579 compatibility struct, for better underline positioning.
21580
215812008-04-13 David Hansen <david.hansen@gmx.net>
21582
21583 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
21584 string.
21585
215862008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
21587
21588 * m/hp800.h (XUINT, XSET): Remove.
21589
215902008-04-12 Juanma Barranquero <lekktu@gmail.com>
21591
21592 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
21593 previous change.
21594
215952008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
21596
21597 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
21598 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
21599
216002008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
21601
21602 * keymap.h (map_keymap_canonical): Declare.
21603 * xmenu.c (single_keymap_panes): Use it.
21604
216052008-04-11 Glenn Morris <rgm@gnu.org>
21606
21607 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
21608 set the target's value to that of the alias.
21609
216102008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
21611
21612 * term.c (set_tty_color_mode): Left over typo.
21613
216142008-04-10 Michael Albinus <michael.albinus@gmx.de>
21615
21616 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
21617 only after check for file name handler functions. Signal, when
21618 native functionality is not supported.
21619 (syms_of_fileio): Declare it unconditionally.
21620
216212008-04-10 Jason Rumney <jasonr@gnu.org>
21622
21623 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
21624 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
21625
21626 * w32.c (logon_network_drive): Also logon to remote drives that
21627 are mapped to drive letters.
21628
216292008-04-10 Glenn Morris <rgm@gnu.org>
21630
21631 * xdisp.c (truncate-partial-width-windows): Doc fix.
21632
216332008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
21634
21635 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
21636 Move functions to minibuffer.el.
21637 (syms_of_fileio): Don't declare them.
21638
216392008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
21640
21641 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
21642 (syms_of_minibuf): Remove its initialization.
21643
21644 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
21645
216462008-04-09 Juanma Barranquero <lekktu@gmail.com>
21647
21648 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
21649
216502008-04-09 Jason Rumney <jasonr@gnu.org>
21651
21652 * makefile.w32-in (distclean): Delete makefile too.
21653 (maintainer-clean): New target.
21654
21655 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
21656
21657 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
21658 for new font backend and composite cases.
21659
216602008-04-09 Jan Djärv <jan.h.d@swipnet.se>
21661
21662 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
21663 Most of the code moved to run_timers.
21664 (do_pending_atimers): Call run_timers.
21665 (run_timers): New function.
21666
21667 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
21668 run atimers.
21669
21670 * process.c (wait_reading_process_output): The same as above.
21671
216722008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
21673
21674 * minibuf.c (last_exact_completion): Remove variable.
21675 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
21676 (complete_and_exit_1, complete_and_exit_2)
21677 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
21678 (Fdisplay_completion_list, display_completion_list_1)
21679 (Fminibuffer_completion_help, Fself_insert_and_exit)
21680 (Fexit_minibuffer, Fminibuffer_message): Move functions to
21681 minibuffer.el.
21682 (syms_of_minibuf): Remove corresponding initializations.
21683
21684 * keyboard.c (Qdeactivate_mark): New var.
21685 (command_loop_1): Use it to call `deactivate-mark'.
21686 (syms_of_keyboard): Initialize it.
21687
21688 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
21689 to another frame.
21690 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
21691 Don't call set_tty_color_mode.
21692 (store_frame_param): Reset previous_frame rather than call
21693 set_tty_color_mode.
21694 * term.c (set_tty_color_mode): Rewrite.
21695 * dispextern.h (set_tty_color_mode): New type.
21696 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
21697
216982008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
21699
21700 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
21701 for generic chars, which do not exist any more in emacs-unicode.
21702
217032008-04-08 Michael Albinus <michael.albinus@gmx.de>
21704
21705 * coding.c (detect_coding_emacs_mule)
21706 (Ffind_operation_coding_system): Fix typo.
21707
217082008-04-08 Jason Rumney <jasonr@gnu.org>
21709
21710 * w32uniscribe.c (SNAME): Extract only symbol name.
21711
21712 * w32font.h (struct w32_metric_cache): New struct.
21713 (w32font_info): Use it.
21714 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
21715 (CACHE_BLOCKSIZE): New constants.
21716
21717 * w32font.c (Qja, Qko, Qzh): New symbols.
21718 (syms_of_w32font): Initialise them.
21719 (font_matches_spec): Use them to filter by language.
21720 (recompute_cached_metrics): Remove function.
21721 (compute_metrics, clear_cached_metrics): New functions.
21722 (w32font_encode_char): Use them to manage metric cache.
21723 (w32font_text_extents): Cache metrics for all glyphs on demand.
21724 Delay converting glyph indices to WORD until needed.
21725 (w32font_open_internal): Initialize metric cache to empty.
21726 (registry_to_w32_charset): Charset should always be a symbol.
21727 (fill_in_logfont, list_all_matching_fonts): Family should
21728 always be a symbol.
21729
217302008-04-06 Jason Rumney <jasonr@gnu.org>
21731
21732 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
21733 Give up if glyph indices not supported. Use uniscribe obtained
21734 ABC widths for individual metrics. Map glyph clusters back to
21735 characters using fClusterStart flag. Return number of glyphs
21736 produced, not chars processed.
21737 (uniscribe_shape): Map char at FROM to current glyph.
21738
217392008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21740
21741 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
21742 Use SetMenuItemHierarchicalMenu.
21743
217442008-04-05 Jason Rumney <jasonr@gnu.org>
21745
21746 * image.c (pbm_load): Allow color values up to 65535.
21747 Throw an error if max_color_idx is outside the supported range.
21748 Report an error when image size is invalid.
21749 Read two bytes at a time when raw images have max_color_idx above 255.
21750
217512008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
21752
21753 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
21754 append "CCL: Quitted" when the CCL program is quitted.
21755 (setup_ccl_program): Initialize ccl->quit_silently to zero.
21756
21757 * ccl.h (struct ccl_program): New member quit_silently.
21758
217592008-04-05 Chong Yidong <cyd@stupidchicken.com>
21760
21761 * search.c (compile_pattern_1): Treat non-nil and non-string of
21762 search-spaces-regexp as nil.
21763
21764 * minibuf.c (Fassoc_string): Tweak docstring.
21765
217662008-04-05 Eli Zaretskii <eliz@gnu.org>
21767
21768 * dired.c (Ffile_attributes): Support inode numbers wider than 32
21769 bits. Remove ugly WINDOWSNT-specific kludge introduced on
21770 2008-03-14 to force inode be positive.
21771
21772 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
21773 _S_* ones, since we now use our own sys/stat.h.
21774 (stat, fstat): Don't mangle the inode number.
21775 (init_user_info): Don't restrict UID and GID to 0-60000 range.
21776
217772008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21778
21779 * frame.h (struct frame): Give one more bit to `visible' since we use
21780 values larger than 1 to indicate obscured frames on ttys.
21781
21782 * keymap.c (Qkeymap_canonicalize): New var.
21783 (Fmap_keymap_internal): New fun.
21784 (describe_map): Use keymap-canonicalize.
21785
21786 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
21787 (Fundo_boundary): Set them.
21788 (syms_of_undo): Initialize them.
21789 (record_point): Use them instead of last_point_position*.
21790 (last_undo_buffer): Change type.
21791
217922008-04-04 Jason Rumney <jasonr@gnu.org>
21793
21794 * w32font.c (w32font_text_extents): Use font's ascent and descent.
21795 (recompute_cached_metrics): Don't set ascent and descent per char.
21796
21797 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
21798 (uniscribe_check_otf): Add GC protection before consing.
21799 Rearrange loop for counting features.
21800
218012008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
21802
21803 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
21804 buffer with byte-size of source buffer.
21805
218062008-04-03 Chong Yidong <cyd@stupidchicken.com>
21807
21808 * callint.c (Fcall_interactively): Handle temporary region even
21809 when shift-select-mode is off.
21810
218112008-04-03 Jason Rumney <jasonr@gnu.org>
21812
21813 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
21814
218152008-04-03 Kenichi Handa <handa@m17n.org>
21816
21817 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
21818 (CATEGORY_MASK_UTF_16): Likewise.
21819 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
21820 binary file.
21821 (detect_coding): Add null-byte detection for a binary file.
21822 (detect_coding_system): Likewise.
21823
218242008-04-03 Jason Rumney <jasonr@gnu.org>
21825
21826 * w32uniscribe.c: New file.
21827
21828 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
21829
21830 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
21831
21832 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
21833 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
21834 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
21835 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
21836 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
21837 (Qphonetic): New symbols.
21838 (syms_of_w32font): Initialize them.
21839 (font_supported_scripts): Use them.
21840 (w32font_list_family): List all charsets.
21841 (w32font_text_extents, recompute_cached_metrics): Fix metric
21842 calculations.
21843 (w32_enumfont_pattern_entity): Make full_type a DWORD.
21844 Give opentype fonts their own format.
21845 (font_matches_spec): New arguments backend and logfont.
21846 Handle :otf spec for uniscribe backend.
21847 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
21848 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
21849
21850 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
21851 font backend.
21852 (globals_of_w32fns): Initialize uniscribe font backend.
21853
21854 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
21855 dependencies.
21856 (w32uniscribe.$(O)): New file to build.
21857 (FONT_OBJ): Include w32uniscribe.$(O).
21858 (LIBS): Add uniscribe libraries.
21859
21860 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
21861
218622008-04-02 Chong Yidong <cyd@stupidchicken.com>
21863
21864 * callint.c (Vshift_select_mode): New var.
21865 (Finteractive): Document new ^ spec.
21866 (Fcall_interactively): Call handle-shift-selection if the ^ spec
21867 is present.
21868
21869 * keyboard.c (Vthis_command_keys_shift_translated): New var.
21870 (command_loop_1): Avoid running the direct display versions of
21871 forward-char and backward-char if shift-selection may occur.
21872 (read_key_sequence): Set Vthis_command_keys_shift_translated if
21873 shift-translation takes place.
21874
21875 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
21876 avoid clobbering by define-minor-mode.
21877
21878 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
21879 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
21880
21881 * syntax.c (Fforward_word): Add ^ interactive spec.
21882
21883 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
21884 (Fscroll_right): Add ^ interactive spec.
21885
218862008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21887
21888 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
21889
21890 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
21891
21892 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
21893
218942008-03-31 Juri Linkov <juri@jurta.org>
21895
21896 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
21897
218982008-03-30 Jan Djärv <jan.h.d@swipnet.se>
21899
21900 * gtkutil.c (xg_set_geometry): Fix indentation.
21901 (xg_resize_outer_widget): Remove.
21902 (x_wm_size_hint_off): Fix indentation.
21903 (xg_frame_set_char_size): Call flush_and_sync after
21904 gtk_window_resize.
21905 (x_wm_set_size_hint): Pass NULL as geometry window to
21906 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
21907 Add menu bar and tool bar height to base height.
21908 (xg_update_frame_menubar, free_frame_menubar)
21909 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
21910 (update_frame_tool_bar, free_frame_tool_bar):
21911 Change xg_resize_outer_widget to xg_frame_set_char_size.
21912
219132008-03-30 Michael Albinus <michael.albinus@gmx.de>
21914
21915 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
21916 (Fdbus_call_method): New parameter TIMEOUT.
21917 (dbus-send-signal): Optimize UNGCPRO call.
21918
219192008-03-29 Juri Linkov <juri@jurta.org>
21920
21921 * window.c (Fdisplay_buffer): Move call to
21922 Vsplit_window_preferred_function out of conditions that check
21923 if window is eligible for vertical splitting.
21924 When Vsplit_window_preferred_function is non-nil, call it and use
21925 its non-nil return value as window. Otherwise, continue doing
21926 vertical splitting using Fsplit_window with arg horflag=nil.
21927 (syms_of_window) <Vsplit_window_preferred_function>: Change the
21928 default value from `split-window' to nil.
21929
219302008-03-29 Juri Linkov <juri@jurta.org>
21931
21932 * callint.c (Fcall_interactively): Revert 2008-03-16 change
21933 for interactive code letters 'b' and 'B'.
21934
219352008-03-29 Eli Zaretskii <eliz@gnu.org>
21936
21937 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
21938 multibyte string.
21939
219402008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
21941
21942 * keyboard.c (pending_funcalls): New var.
21943 (timer_check): Run it.
21944 (syms_of_keyboard): Initialize it.
21945 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
21946 (Vdelete_terminal_functions): New vars.
21947 (syms_of_terminal): Initialize them.
21948 (Fdelete_terminal): Run delete-terminal-functions.
21949 * xdisp.c (safe_eval): Rewrite.
21950 (safe_call2): New fun.
21951 * frame.c (Qdelete_frame_functions): New var.
21952 (syms_of_frame): Initialize it.
21953 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
21954 * lisp.h (safe_call2, pending_funcalls): Declare.
21955
219562008-03-28 Andreas Schwab <schwab@suse.de>
21957
21958 * indent.c (Fmove_to_column): Move declaration before statements.
21959
219602008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
21961
21962 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
21963 (struct frame): Use bit fields for boolean vars.
21964
21965 * process.c (server_accept_connection): Simplify naming.
21966 (emacs_get_tty_pgrp): Use SDATA.
21967
21968 * coding.c (decode_coding_object): Fix last change.
21969
219702008-03-27 Jason Rumney <jasonr@gnu.org>
21971
21972 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
21973
219742008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
21975
21976 * charset.c (Fdefine_charset_internal): Change the way of
21977 registering charsets in Vcharset_order_list.
21978 (syms_of_charset): Make the charset `eight-bit' supplementary.
21979
219802008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
21981
21982 * regex.c (EXTEND_BUFFER): Change order of pointer addition
21983 operations, to avoid having the difference between pointers
21984 overflow.
21985
219862008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
21987
21988 * indent.c (check_display_width): New fun.
21989 (scan_for_column): Use it.
21990
21991 * data.c (syms_of_data): Mark most-positive-fixnum and
21992 most-negative-fixnum as constants.
21993
21994 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
21995
21996 * indent.c (scan_for_column): Extract from current_column_1.
21997 Merge with the same code from Fmove_to_column.
21998 (current_column_1, Fmove_to_column): Use it.
21999
220002008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
22001
22002 * keymap.c (map_keymap_internal): New fun.
22003 (map_keymap): Use it.
22004 (Fmap_keymap_internal): New fun.
22005 (Fmap_keymap): Remove left-out test from before make_save_value.
22006
22007 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
22008
22009 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
22010 Use XCAR/XCDR.
22011
22012 * process.h (struct Lisp_Process): Remove filter_multibyte.
22013 * process.c (QCfilter_multibyte): Remove.
22014 (setup_process_coding_systems): Don't use filter_multibyte.
22015 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
22016 (read_process_output): Don't adjust multibyteness to filter_multibyte.
22017 (Fset_process_filter_multibyte): Change the coding-system to
22018 approximate the previous behavior.
22019 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
22020 coding-system.
22021
22022 * coding.c (decode_coding_object): When not decoding into a buffer,
22023 obey the coding system's preference of (uni|multi)byte.
22024
220252008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22026
22027 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
22028 every char is changed and has a different byte-length.
22029 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
22030 Fix int -> EMACS_INT.
22031
220322008-03-23 David Hansen <david.hansen@gmx.net>
22033
22034 * dbusbind.c (xd_read_message): Remove extra copying of message
22035 strings. Check for NULL `interface' or `member'.
22036
220372008-03-22 Eli Zaretskii <eliz@gnu.org>
22038
22039 * w32.c (readdir): If FindFirstFile/FindNextFile return in
22040 cFileName a file name that includes `?' characters, use the 8+3
22041 alias in cAlternateFileName instead.
22042
220432008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
22044
22045 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
22046
220472008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22048
22049 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
22050 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
22051 work on current_buffer only instead (that was already the case
22052 for some of the code anyway).
22053 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
22054 (temp_set_point, temp_set_point_both): Use EMACS_INT.
22055 (SET_PT, SET_PT_BOTH): Adjust.
22056 * intervals.h (set_point, temp_set_point, set_point_both)
22057 (temp_set_point_both): Remove redundant declarations.
22058
220592008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22060
22061 * fileio.c (Finsert_file_contents):
22062 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
22063 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
22064 when buffer != current_buffer anyway.
22065
220662008-03-20 Andreas Schwab <schwab@suse.de>
22067
22068 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
22069 as default.
22070
220712008-03-19 Jason Rumney <jasonr@gnu.org>
22072
22073 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
22074 (syms_of_w32fns): Initialize them.
22075 (HOURGLASS_ID): New constant.
22076 (x_window_to_frame): Don't check hourglass_window.
22077 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
22078 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
22079 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
22080 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
22081 Only change the cursor if hourglass is not active.
22082 (Fx_create_frame): Initialize frame's current_cursor.
22083 (hourglass_atimer): Remove.
22084 (hourglass_started): New function.
22085 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
22086 (show_hourglass): Adapt to w32, changing argument to frame.
22087
22088 * w32term.h (struct w32_output): Remove hourglass_window.
22089 Add current_cursor.
22090
22091 * eval.c (call_debugger, Fsignal):
22092 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
22093 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
22094 (Fexecute_extended_command, cancel_hourglass_unwind):
22095 * minibuf.c (read_minibuf):
22096 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
22097
220982008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
22099
22100 * window.c (run_funs): New fun.
22101 (run_window_configuration_change_hook): Use it to run the buffer-local
22102 and the global part of the hook.
22103
22104 * xdisp.c (format_mode_line_unwind_data): Add window argument.
22105 (unwind_format_mode_line): Restore selected window.
22106 (x_consider_frame_title, Fformat_mode_line): Set selected window.
22107
221082008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
22109
22110 * editfns.c (Fchar_equal): Check they are valid characters.
22111
22112 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
22113
221142008-03-17 Andreas Schwab <schwab@suse.de>
22115
22116 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
22117 against a charset.
22118
22119 * lisp.h (Fbuffer_list): Declare.
22120
221212008-03-17 Jan Djärv <jan.h.d@swipnet.se>
22122
22123 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
22124 handlebox_widget is != 0.
22125
221262008-03-16 Juri Linkov <juri@jurta.org>
22127
22128 * callint.c (Fcall_interactively): For interactive code letters
22129 'b' and 'B' put the buffer list into the list of default "future"
22130 values of the minibuffer.
22131
221322008-03-16 Andreas Schwab <schwab@suse.de>
22133
22134 * keyboard.c (read_key_sequence): Fix downcasing of letters with
22135 modifiers.
22136
22137 * regex.c (re_match_2_internal): Correct matching of a charset
22138 against latin-1 characters.
22139
221402008-03-16 Kenichi Handa <handa@m17n.org>
22141
22142 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
22143 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
22144 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
22145 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
22146 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
22147 CHAR_STRING_ADVANCE.
22148 (produce_chars): Fix for the case that the source and the
22149 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
22150 instead of CHAR_STRING_ADVANCE.
22151 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
22152 STRING_CHAR_ADVANCE.
22153
221542008-03-15 Andreas Schwab <schwab@suse.de>
22155
22156 * regex.c (re_match_2_internal): Correct matching of eight bit
22157 characters in unibyte strings.
22158
221592008-03-15 Martin Rudalics <rudalics@gmx.at>
22160
22161 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
22162 at end of range when it coincides with the end of the buffer.
22163
221642008-03-14 Eli Zaretskii <eliz@gnu.org>
22165
22166 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
22167
22168 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
22169
221702008-03-14 Jason Rumney <jasonr@gnu.org>
22171
22172 * editfns.c (initial_tz): New variable.
22173 (syms_of_editfns): Initialize it.
22174 (Fset_time_zone_rule): Set it when first called.
22175 Use it when TZSTRING is nil.
22176
22177 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
22178 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
22179 (monitor_from_point_fn, get_monitor_info_fn): New globals.
22180 (globals_of_w32fns): Initialize them.
22181 (compute_tip_xy): Use them to position tooltips.
22182
221832008-03-14 Glenn Morris <rgm@gnu.org>
22184
22185 * emacs.c (main): Revert previous change.
22186 (standard_args): Revert -internal-script back to -scriptload,
22187 and remove the long-option form.
22188
221892008-03-13 Glenn Morris <rgm@gnu.org>
22190
22191 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
22192 Remove option -enable-font-backend.
22193
221942008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
22195
22196 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
22197
221982008-03-11 Jan Djärv <jan.h.d@swipnet.se>
22199
22200 * xterm.c (x_connection_closed): For GTK: If this is the last
22201 terminal just exit without closing the display.
22202
222032008-03-11 Jason Rumney <jasonr@gnu.org>
22204
22205 * w32font.c (w32font_full_name): Use floor to round.
22206
222072008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
22208
22209 * sound.c (alsa_configure): Declare vol at beginning of block.
22210
22211 * fontset.c (Ffontset_info): Remove extra semicolon.
22212
222132008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
22214
22215 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
22216 size of resulting string.
22217
222182008-03-10 Jason Rumney <jasonr@gnu.org>
22219
22220 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
22221
222222008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22223
22224 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
22225 Don't pretend as if characters with display property haven't been
22226 consumed for string-replacing-string case.
22227
222282008-03-08 Kim F. Storm <storm@cua.dk>
22229
22230 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
22231 (get_next_display_element, next_element_from_string)
22232 (next_element_from_ellipsis, next_element_from_buffer): Use it.
22233
222342008-03-08 Andreas Schwab <schwab@suse.de>
22235
22236 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
22237
222382008-03-06 Jason Rumney <jasonr@gnu.org>
22239
22240 * w32font.c (w32_registry): Take font_type argument. Use ANSI
22241 when charset not specified. Only translate ANSI to unicode when
22242 font_type is truetype.
22243 (w32font_coverage_ok): New function.
22244 (add_font_entity_to_list): Use it to filter unsuitable fonts.
22245
222462008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
22247
22248 * lread.c (Fread_char): Resolve modifiers.
22249 (Fread_char_exclusive): Likewise.
22250
22251 * character.c (char_resolve_modifier_mask): New function.
22252 (char_string): Use char_resolve_modifier_mask.
22253 (Fchar_resolve_modifiers): New function.
22254 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
22255 function.
22256
222572008-03-04 Jason Rumney <jasonr@gnu.org>
22258
22259 * makefile.w32-in: Always include w32font.c in the build.
22260 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
22261
222622008-03-04 Andreas Schwab <schwab@suse.de>
22263
22264 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
22265 (versionclean): Likewise.
22266
222672008-03-04 Juanma Barranquero <lekktu@gmail.com>
22268
22269 * .cvsignore: Add oo.
22270
222712008-03-03 Andreas Schwab <schwab@suse.de>
22272
22273 * coding.c (decode_coding_object): Inhibit gap shrinking while
22274 decoding in place.
22275
222762008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
22277
22278 * w32term.c: Remove unused include "gnu.h".
22279 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
22280
22281 * gnu.h: Rename to ...
22282 * emacs-icon.h: ... this.
22283 * xterm.c: Use emacs-icon.h instead of gnu.h.
22284 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
22285
222862008-03-03 Juanma Barranquero <lekktu@gmail.com>
22287
22288 * w32font.c: Include math.h.
22289
222902008-03-03 Jason Rumney <jasonr@gnu.org>
22291
22292 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
22293 Compute options separately.
22294 (w32font_open_internal): Set glyph_idx before caching metrics.
22295
22296 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
22297 Define if system headers don't.
22298 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
22299 (w32font_encode_char): Don't declare here.
22300
22301 * w32font.c (Quniscribe, QCformat): New symbols.
22302 (syms_of_w32font): Define them.
22303 (w32font_has_char): Indicate uncertainty.
22304 (w32font_encode_char): Encode as glyph point. Make static.
22305 (recompute_cached_metrics): New function.
22306 (w32font_open_internal): Use it. Set font to use glyph points
22307 initially. Set format based on type of font.
22308 (w32font_text_extents, w32font_draw): Optionally use glyph points.
22309 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
22310 on it. Set format based on information available here.
22311 (add_font_entity_to_list): Identify backend based on opentype_only.
22312
223132008-03-02 Andreas Schwab <schwab@suse.de>
22314
22315 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
22316
22317 * coding.c (decode_coding_big5, produce_chars):
22318 Fix typos in last change.
22319
223202008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
22321
22322 * gnu.h: New icon.
22323
223242008-03-02 Kenichi Handa <handa@m17n.org>
22325
22326 * coding.c (decode_coding_utf_8): When eol-type of CODING is
22327 `dos', don't decode '\r' if that is the last in the source.
22328 (decode_coding_utf_16, decode_coding_emacs_mule)
22329 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22330 (decode_coding_raw_text, decode_coding_charset): Likewise.
22331 (produce_chars): Don't decode EOL here. Use EMACS_INT.
22332
223332008-03-01 Jason Rumney <jasonr@gnu.org>
22334
22335 * w32font.c (w32font_full_name): Report point size for scalable fonts.
22336
223372008-03-01 Kim F. Storm <storm@cua.dk>
22338
22339 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
22340
223412008-03-01 Jason Rumney <jasonr@gnu.org>
22342
22343 * w32font.c (w32font_full_name): New function.
22344 (w32font_open_internal): Use it.
22345
223462008-03-01 Kim F. Storm <storm@cua.dk>
22347
22348 * dispnew.c (line_draw_cost): Fix invalid glyph check.
22349
223502008-03-01 Jason Rumney <jasonr@gnu.org>
22351
22352 * font.c (font_unparse_fcname): Increase len when style is a symbol.
22353
223542008-03-01 Jan Djärv <jan.h.d@swipnet.se>
22355
22356 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
22357 xg_frame_resized when the event is for the edit widget.
22358
22359 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
22360
22361 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
22362 set_char_size.
22363 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
22364 operations on widgets here. Just set frame size if needed.
22365 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
22366 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
22367 (x_wm_set_size_hint): Set size hints on the edit widget only, not
22368 the whole frame.
22369 (xg_create_tool_bar): Move attachment of the tool bar to
22370 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
22371 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
22372
223732008-03-01 Jason Rumney <jasonr@gnu.org>
22374
22375 * w32fns.c (w32_msg_pump): Disable debug code.
22376
223772008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22378
22379 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
22380
223812008-02-29 Chong Yidong <cyd@stupidchicken.com>
22382
22383 * xdisp.c (next_overlay_string): Don't set
22384 overlay_strings_at_end_processed_p if we're currently reading from
22385 a display string.
22386
223872008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
22388
22389 * xdisp.c (get_overlay_strings_1): Fix typo.
22390
223912008-02-29 Chong Yidong <cyd@stupidchicken.com>
22392
22393 * xdisp.c (get_overlay_strings_1): Add missing argument type.
22394
223952008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
22396
22397 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
22398
22399 * xdisp.c (display_mode_element): Cancel the previous change.
22400 (decode_mode_spec): Likewise.
22401 (handle_auto_composed_prop): Don't make composition if it->string
22402 is a string.
22403
224042008-02-27 Kim F. Storm <storm@cua.dk>
22405
22406 * lisp.h (GLYPH): Change type from int to struct with separate char
22407 and face_id members.
22408 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
22409 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
22410 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
22411 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
22412 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
22413 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
22414 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
22415 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
22416 handle new Lisp glyph code encoding, either an integer or a cons.
22417
22418 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
22419 (GLYPH_ALIAS): Delete.
22420 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
22421 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
22422 (GLYPH_FROM_CHAR): Replace macro by ...
22423 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
22424
22425 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
22426 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
22427 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
22428 (GLYPH_INVALID_P): New macro.
22429 (spec_glyph_lookup_face): Update prototype.
22430
22431 * dispnew.c (line_draw_cost): Adapt to new glyph type.
22432 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
22433 new glyph code encoding.
22434 (spec_glyph_lookup_face): No return value; update passed glyph instead.
22435 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
22436
22437 * xdisp.c (get_next_display_element, next_element_from_display_vector):
22438 Adapt to new glyph type and new glyph code encoding.
22439
22440 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
22441
22442 * indent.c (current_column, current_column_1, Fmove_to_column)
22443 (compute_motion): Adapt to new glyph code encoding.
22444
22445 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
22446
224472008-02-27 Chong Yidong <cyd@stupidchicken.com>
22448
22449 * process.c (wait_reading_process_output): Check for window
22450 changes caused by timers.
22451 Suggested by Johan Bockgård.
22452
224532008-02-27 Glenn Morris <rgm@gnu.org>
22454
22455 * emacs.c (USAGE1): Add `--disable-font-backend'.
22456
224572008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
22458
22459 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
22460 is made to the buffer.
22461
224622008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
22463
22464 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
22465 (face_at_string_position):
22466 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
22467 (face_at_string_position):
22468 * xdisp.c (display_string, next_overlay_change):
22469 * buffer.h (overlays_at):
22470 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
22471 Update callers.
22472
224732008-02-26 Chong Yidong <cyd@stupidchicken.com>
22474
22475 * editfns.c (Fformat): Doc fix.
22476
224772008-02-26 Juanma Barranquero <lekktu@gmail.com>
22478
22479 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
22480 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
22481 (Ffont_otf_alternates, Fquery_font): Doc fixes.
22482
224832008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22484
22485 * buffer.c (Fbuffer_swap_text): New function.
22486 (syms_of_buffer): Defsubr it.
22487
224882008-02-25 Chong Yidong <cyd@stupidchicken.com>
22489
22490 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
22491
224922008-02-25 Jason Rumney <jasonr@gnu.org>
22493
22494 * w32font.c (w32font_draw): Draw one character at a time when padding.
22495
224962008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22497
22498 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
22499 Handle a nil arg. Use run_window_configuration_change_hook.
22500 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
22501 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
22502 Use run_window_configuration_change_hook.
22503
225042008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22505
22506 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
22507 1-pixel width.
22508
225092008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22510
22511 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
22512 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
22513 if the glyph in the font is zero pixel with.
22514
22515 * dispextern.h (struct glyph_string): New member padding_p.
22516
22517 * w32font.c (w32font_draw): Pay attention to s->padding_p.
22518
22519 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
22520
22521 * xfont.c (xfont_draw): Pay attention to s->padding_p.
22522
22523 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
22524
22525 * font.c: If the font driver doesn't have `shape' function, return Qnil.
22526
225272008-02-25 Jason Rumney <jasonr@gnu.org>
22528
22529 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
22530
225312008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
22532
22533 Allow fine-grained image-cache flushing.
22534 * dispextern.h (struct image): Add `dependencies' field.
22535 (clear_image_caches): Change arg to Lisp_Object.
22536 * image.c (make_image): Initialize `dependencies' field.
22537 (clear_image_cache): Change arg to allow fine-grained flushing.
22538 Perform the flush even if image-cache-eviction-delay is nil.
22539 (clear_image_caches): Change arg to Lisp_Object.
22540 (Fclear_image_cache): Expand meaning of the argument.
22541 (mark_image): Mark `dependencies' field.
22542 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
22543 (lface_hash): Use XHASH rather than XFASTINT.
22544 (face_at_buffer_position): Fix int -> EMACS_INT position.
22545 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
22546 (select_frame_for_redisplay): Remove code duplication.
22547 (redisplay_internal): Adapt arg to call to clear_image_caches.
22548
225492008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
22550
22551 * s/vms4-0.h:
22552 * s/vms4-2.h:
22553 * s/vms4-4.h:
22554 * s/vms5-5.h: Remove, unused.
22555
22556 * s/irix5-2.h:
22557 * s/irix6-0.h:
22558 * s/riscos5.h:
22559 * s/mach-bsd4-3.h:
22560 * m/mips4.h: Remove files for obsolete systems.
22561
22562 * Makefile.in:
22563 * filelock.c:
22564 * unexmips.c:
22565 * m/hp9000s300.h:
22566 * m/iris4d.h:
22567 * s/aix3-1.h:
22568 * s/hpux.h:
22569 * s/msdos.h:
22570 * s/usg5-0.h:
22571 * s/usg5-2-2.h:
22572 * s/usg5-2.h:
22573 * s/usg5-3.h: Remove references to obsolete variables.
22574
22575 * s/irix5-0.h: Remove, move all the contents ...
22576 * s/irix6-5.h: ... here. Simplify.
22577 * config.in: Regenerate.
22578
225792008-02-24 Jason Rumney <jasonr@gnu.org>
22580
22581 * w32term.c (x_draw_glyph_string_background): Clear the background
22582 manually when cleartype is in use.
22583 (x_draw_glyph_string_foreground): Draw text transparently when
22584 cleartype is in use.
22585
22586 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
22587 a font into it unless we have to.
22588
225892008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
22590
22591 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
22592 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
22593
225942008-02-18 Jason Rumney <jasonr@gnu.org>
22595
22596 * w32fns.c (Fw32_shell_execute): Encode parameters.
22597
225982008-02-09 Eli Zaretskii <eliz@gnu.org>
22599
22600 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
22601
226022008-02-05 Juanma Barranquero <lekktu@gmail.com>
22603
22604 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
22605
226062008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
22607
22608 * xterm.c (x_set_offset): Don't change the gravity if
22609 CHANGE_GRAVITY is -1.
22610
226112008-02-23 Chong Yidong <cyd@stupidchicken.com>
22612
22613 * fileio.c (auto_save_error_occurred): New var.
22614 (auto_save_error): Set it.
22615 (Fdo_auto_save): Don't overwrite the error message if an auto-save
22616 error occurred.
22617
226182008-02-23 Eli Zaretskii <eliz@gnu.org>
22619
22620 * w32.c (globals_of_w32): Add initializations for
22621 g_b_init_get_sid_sub_authority and
22622 g_b_init_get_sid_sub_authority_count.
22623
226242008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
22625
22626 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
22627 (font_parse_xlfd): Use them for sanity check.
22628 (Finternal_set_font_style_table): Make sure the table is bijective.
22629
22630 Consolidate the image_cache to the terminal struct.
22631 * termhooks.h (P_): Remove redundant def.
22632 (struct terminal): New field `image_cache'.
22633 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
22634 of FRAME_X_IMAGE_CACHE.
22635 * xterm.h (struct x_display_info): Remove image_cache field.
22636 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
22637 * w32term.h (struct w32_display_info): Remove image_cache field.
22638 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
22639 * macterm.h (struct mac_display_info): Remove image_cache field.
22640 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
22641 * xterm.c (x_term_init):
22642 * w32term.c (w32_term_init):
22643 * macterm.c (mac_term_init): Set the image_cache in the terminal.
22644 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
22645 Remove declarations.
22646 (clear_image_caches, mark_image_cache): New declarations.
22647 * xfaces.c (clear_face_cache):
22648 * xdisp.c (redisplay_internal): Use clear_image_caches.
22649 * image.c (clear_image_cache): Don't check that a frame is on
22650 a window-system before checking if it shares the same cache.
22651 (clear_image_caches): New function.
22652 (Fclear_image_cache): Use it.
22653 (mark_image): Move from allo.c.
22654 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
22655 * alloc.c (mark_image, mark_image_cache): Move to image.c.
22656 (mark_object): Don't call mark_image_cache for frames.
22657 (mark_terminals): Call mark_image_cache.
22658
22659 * lisp.h (Fdelete_terminal): Declare.
22660
22661 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
22662 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
22663 wrong_type_argument.
22664
226652008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
22666
22667 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
22668 malayalam.el, and tamil.el. Add sinhala.el.
22669
226702008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
22671
22672 * xterm.c (x_connection_closed): Consolidate identical tests.
22673 (x_delete_terminal): Don't crash if called via x_connection_closed.
22674
226752008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
22676
22677 * xdisp.c (decode_mode_spec): New arg string.
22678 (display_mode_element): Adjust for the above change.
22679
226802008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
22681
22682 * callint.c (Fcall_interactively): Use AREF.
22683
226842008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
22685
22686 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
22687
226882008-02-18 Jan Djärv <jan.h.d@swipnet.se>
22689
22690 * xfns.c (Fx_show_tip): Set string to " " if empty.
22691
226922008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
22693
22694 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
22695 with Qt.
22696
226972008-02-17 Kenichi Handa <handa@m17n.org>
22698
22699 * ftfont.c (ftfont_shape): Return Lispy number.
22700
22701 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
22702 for GCs.
22703 (Finternal_set_font_selection_order): Call font_update_sort_order
22704 only when enable_font_backend is set.
22705 (realize_x_face): Set face->font_info to that of default face only
22706 when enable_font_backend is set.
22707
22708 * xdisp.c (handle_composition_prop): Set it->c to the fist
22709 character of the composed region.
22710 (fill_composite_glyph_string): Set base_face->font_info to
22711 s->font_info. Get a face for ascii from base_face->ascii_face.
22712 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
22713 with a face already decided.
22714 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
22715 non-negative.
22716 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
22717 call font_prepare_composition unconditionally.
22718
22719 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
22720
22721 * xterm.h (struct x_display_info): New member font.
22722
22723 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
22724 (x_set_mouse_face_gc, x_new_font): Likewise.
22725 (x_term_init): Setup display_info->font.
22726 (x_delete_terminal): Free display_info->font.
22727
22728 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
22729
22730 * ftxfont.c (ftxfont_default_fid): Delete it.
22731 (ftxfont_open): Set xfont->fid to 0.
22732 (ftxfont_end_for_frame): Clear data specific to the frame and the
22733 font-driver.
22734
22735 * xftfont.c (xftfont_default_fid): Delete it.
22736 (xftfont_open): Set xfont->fid to 0.
22737
22738 * fontset.c (FONTSET_OBJLIST): New macro.
22739 (fontset_find_font): Update font-object list of the fontset.
22740 (free_realized_fontset): New function.
22741 (free_face_fontset): Call free_realized_fontset.
22742 (Ffont_info): Call font_close_object only when enable_font_backend
22743 is set.
22744
22745 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
22746 [HAVE_NTGUI]: Include w32term.h.
22747 [MAC_OS]: Include macterm.ch.
22748 (font_otf_ValueRecord): Use make_number.
22749 (font_finish_cache): Fix handling of reference count.
22750 (font_clear_cache): Update num_fonts.
22751 (font_open_entity): Update smallest_char_width and
22752 smallest_font_height of the frame.
22753 (font_close_object): Update num_fonts.
22754 (Fclear_font_cache): Fix finding the target cache data.
22755
227562008-02-16 Glenn Morris <rgm@gnu.org>
22757
22758 * fontset.c (Finternal_char_font): Fix compilation warning.
22759
227602008-02-16 Eli Zaretskii <eliz@gnu.org>
22761
22762 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
22763 instead of char arrays. Enlarge the size of array passed to
22764 get_token_information.
22765
22766 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
22767 warnings.
22768
227692008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
22770
22771 * .gdbinit: Don't set `args', it breaks gdb --args.
22772
227732008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
22774
22775 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
22776 within a narrowed buffer.
22777
227782008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
22779
22780 * coding.c (decode_coding_object, encode_coding_object):
22781 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
22782
227832008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
22784
22785 * coding.c (coding_set_destination): Use BEG_BYTE rather than
22786 hardcoding 1.
22787 (detect_coding_system):
22788 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
22789 (string_char_to_byte, string_byte_to_char, insert_from_gap):
22790 * insdel.c (insert_from_gap):
22791 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
22792 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
22793 (string_to_multibyte):
22794 * character.c (chars_in_text, multibyte_chars_in_text):
22795 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
22796
22797 * character.h (FETCH_STRING_CHAR_ADVANCE)
22798 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
22799 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
22800 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
22801
22802 * casefiddle.c (casify_region): Only call after-change and composition
22803 functions on the part of the region that was changed.
22804
22805 * keyboard.c (read_avail_input):
22806 * frame.c (Fdelete_frame): Call Fdelete_terminal.
22807
228082008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
22809
22810 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
22811 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
22812
228132008-02-11 Juanma Barranquero <lekktu@gmail.com>
22814
22815 * w32menu.c (push_submenu_start, push_submenu_end)
22816 (push_left_right_boundary, push_menu_pane, push_menu_item):
22817 * keyboard.c (read_key_sequence): Don't pass args with side effects
22818 to AREF, it fails when compiling with -DENABLE_CHECKING.
22819
228202008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
22821
22822 * Makefile.in (${lispsource}international/charprop.el):
22823 Delete this target.
22824
22825 * search.c (boyer_moore): Fix incorrect synching of the trunk and
22826 emacs-unicode-2.
22827
228282008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
22829
22830 * terminal.c (Fdelete_terminal): Clean up the `force' path.
22831
228322008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
22833
22834 * frame.c (Qnoelisp): New symbol.
22835 (syms_of_frame): Initialize it.
22836 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
22837 harmless Elisp code, from a strong `force' from x_connection_closed.
22838 * frame.h (Qnoelisp): Declare.
22839 * xterm.c (x_connection_closed): Pass `noelisp'.
22840
22841 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
22842 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
22843 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
22844 rather than `int' for the type of `type'.
22845
228462008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
22847
22848 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
22849
22850 * Makefile.in (GNUC): Remove support for gcc-1.x.
22851
228522008-02-10 Richard Stallman <rms@gnu.org>
22853
22854 * lisp.h (ASET): Use AREF, not ASLOT.
22855
228562008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
22857
22858 * lisp.h (ASET): Check bounds.
22859
228602008-02-10 Glenn Morris <rgm@gnu.org>
22861
22862 * buffer.c (mode-name): Doc fix.
22863
228642008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
22865
22866 * Makefile.in:
22867 * emacs.c:
22868 * gmalloc.c:
22869 * keyboard.c:
22870 * lisp.h:
22871 * m/ibm370aix.h:
22872 * process.c:
22873 * regex.c:
22874 * s/hpux.h:
22875 * sysdep.c:
22876 * sysselect.h:
22877 * systty.h:
22878 * unexec.c:
22879 * w32term.c:
22880 * xsmfns.c:
22881 * xterm.c: Remove code that deals with obsolete variables.
22882
22883 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
22884
22885 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
22886 nothing else needs it anymore.
22887
228882008-02-09 Eli Zaretskii <eliz@gnu.org>
22889
22890 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
22891 instead of unibyte_char_to_multibyte.
22892
228932008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
22894
22895 * s/gnu-linux.h: Remove commented out code.
22896
22897 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
22898
22899 * Makefile.in: Update what RMS says about using autoconf.
22900 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
22901 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
22902 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
22903 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
22904
229052008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
22906
22907 * keymap.c (Fkey_description): Move side effect outside of macro call.
22908
22909 * xfaces.c (Finternal_make_lisp_face):
22910 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
22911
22912 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
22913 (syms_of_fontset): Use ASET.
22914
22915 * fns.c (concat): Move side effect outside of macro call.
22916 (hash_clear): Use ASET.
22917
229182008-02-08 Richard Stallman <rms@gnu.org>
22919
22920 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
22921 If FORCE, and frame has a surrogate minibuffer for another frame,
22922 delete the other frame first.
22923
229242008-02-07 Timo Savola <timo.savola@iki.fi>
22925
22926 * xterm.c (x_detect_focus_change): Handle embed client message.
22927 (handle_one_xevent): Ditto.
22928 (handle_one_xevent): If embedded and we get a button press/release,
22929 request focus.
22930 (xembed_set_info, xembed_send_message): New functions.
22931 (x_make_frame_visible): Call xembed_set_info if embedded.
22932 (x_make_frame_invisible): Call xembed_set_info if embedded.
22933 (x_term_init): Initialize Xatom_XEMBED.
22934 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
22935 (x_iconify_frame): Ditto.
22936
22937 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
22938 (enum xembed_info, enum xembed_message, enum xembed_focus)
22939 (enum xembed_modifier, enum xembed_accelerator): New.
22940 (xembed_set_info, xembed_send_message): Declare.
22941 (FRAME_X_EMBEDDED_P): New.
22942
22943 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
22944 gtk_plug_new.
22945
22946 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
22947 window ID of a frame.
22948 (x_window): Reparent frame if embedded.
22949 (Fx_create_frame): Don't set border width if embedded.
22950
22951 * emacs.c (USAGE3): Add --parent-id.
22952 (standard_args): Ditto.
22953
229542008-02-07 Jan Djärv <jan.h.d@swipnet.se>
22955
22956 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
22957
229582008-02-07 Jim Meyering <meyering@redhat.com>
22959
22960 Use "do...while (0)", not "if (1)...else" in macro definitions.
22961 The latter provokes a warning from gcc about the empty else, when
22962 followed by ";". Also, without that trailing semicolon, it would
22963 silently swallow up any following statement.
22964 * syntax.h (SETUP_SYNTAX_TABLE)
22965 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
22966 * buffer.h (DECODE_POSITION): Likewise.
22967 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
22968 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
22969 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
22970 (FETCH_CHAR_ADVANCE): Likewise.
22971 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
22972
229732008-02-07 Jim Meyering <meyering@redhat.com>
22974
22975 * lread.c [lint]: Don't include <sys/inode.h>.
22976
229772008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
22978
22979 * xselect.c (x_handle_dnd_message):
22980 * xmenu.c (digest_single_submenu, xmenu_show):
22981 * xdisp.c (with_echo_area_buffer_unwind_data)
22982 (format_mode_line_unwind_data, unwind_format_mode_line)
22983 (display_menu_bar):
22984 * eval.c (Ffetch_bytecode):
22985 * doc.c (store_function_docstring):
22986 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
22987 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
22988 * buffer.c (add_overlay_mod_hooklist): Use ASET.
22989
229902008-02-07 Kenichi Handa <handa@m17n.org>
22991
22992 * ftxfont.c (ftxfont_open): Don't set
22993 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
22994
22995 * ftfont.c (ftfont_open): Fix previous change.
22996
229972008-02-06 Jason Rumney <jasonr@gnu.org>
22998
22999 * w32font.c (w32font_text_extents): Fill in lbearing metric.
23000 Use cached metrics for ASCII characters.
23001 (w32font_open_internal): Don't set font's owning_frame.
23002 Cache metrics for ASCII characters.
23003
23004 * w32font.h (struct w32font_info): Add ascii_metrics.
23005 Remove owning_frame.
23006
230072008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
23008
23009 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
23010 to negative value.
23011
23012 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
23013
23014 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
23015
23016 * charset.c (syms_of_charset): Set QCtest and Qeq.
23017
230182008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
23019
23020 * process.c (Fstart_process):
23021 * callproc.c (Fcall_process): Handle the case where
23022 Funhandled_file_name_directory returns nil.
23023
23024 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
23025 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
23026 * font.c (check_gstring): Use them and AREF to access the vector before
23027 we know it's really a gstring.
23028 (Ffont_shape_text): Fix typo.
23029 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
23030
23031 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
23032 Declare.
23033
23034 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
23035
230362008-02-05 Jason Rumney <jasonr@gnu.org>
23037
23038 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
23039 Set smallest_font_height and smallest_char_width in display info.
23040
230412008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
23042
23043 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
23044
230452008-02-05 Miles Bader <miles@gnu.org>
23046
23047 * xfaces.c (get_lface_attributes, merge_named_face)
23048 (lookup_named_face, lookup_derived_face, realize_named_face):
23049 Revert 2008-02-01 change by cyd@stupidchicken.com.
23050
230512008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
23052
23053 * fontset.c (Ffontset_info): Handle the case of inhibitting the
23054 fallback fonts.
23055 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
23056
230572008-02-04 Jason Rumney <jasonr@gnu.org>
23058
23059 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
23060 set full_name.
23061 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
23062
230632008-02-03 Jason Rumney <jasonr@gnu.org>
23064
23065 * makefile.w32-in (OBJ1): Include font.o here.
23066 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
23067
230682008-02-02 Jason Rumney <jasonr@gnu.org>
23069
23070 * makefile.w32-in (temacs): Bump EMHEAP to 21.
23071
230722008-02-01 Jason Rumney <jasonr@gnu.org>
23073
23074 * s/cygwin.h: Define VIRT_ADDR_VARIES.
23075
23076 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
23077
230782008-02-01 Andreas Schwab <schwab@suse.de>
23079
23080 * Makefile.in (shortlisp, lisp): Update for rename of
23081 ../lisp/language/myanmar.el.
23082
230832008-02-01 Chong Yidong <cyd@stupidchicken.com>
23084
23085 * xfaces.c (get_lface_attributes): Delete function.
23086 (merge_named_face, lookup_named_face, lookup_derived_face)
23087 (realize_named_face): Call lface_from_face_name directly, and use
23088 the fact that merge_face_vectors does not alter its FROM argument.
23089
230902008-02-01 Jason Rumney <jasonr@gnu.org>
23091
23092 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
23093 input in the default locale. Handle non-Unicode multibyte input.
23094
230952008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23096
23097 * fontset.c (reorder_font_vector): Exclude nil elements from the
23098 font group. Don't try multiple fonts.
23099 (fontset_font): Adjust for the above change.
23100 (Finternal_char_font): Return nil if the found font doesn't
23101 contain the character ch.
23102
23103 * Makefile.in (lisp, shortlisp): Add cham.el.
23104
231052008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23106
23107 * font.h (FONTP): Make it return 1 also for a font-object.
23108
23109 * .gdbinit (xfontset): New function.
23110
23111 * font.c (font_find_for_lface): Check if the character C is
23112 supported or not only for the first font.
23113
23114 * fontset.c (reorder_font_vector): Fix typo.
23115 (fontset_find_font): Don't add a font-spec specifying a script.
23116 Use 0 (not Qt) for the indication of empty font-group. Change the
23117 format of RFONT-DEF. Return Qt if no font in the font-group
23118 support the character.
23119 (fontset_font): Adjust for the above change. If no font was
23120 found the character, remember that.
23121 (face_for_char): Adjust for the change of RFONT-DEF.
23122 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
23123 no font for the target.
23124 (Finternal_char_font): Adjust for the change of RFONT-DEF.
23125
231262008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23127
23128 * font.c (font_load_for_face): Handle the case that the font in
23129 face->lface is a string.
23130
231312008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23132
23133 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
23134
231352008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23136
23137 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
23138 Fix previous change. If the frame is not on a window system,
23139 signal an error.
23140
231412008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23142
23143 * coding.c (decode_coding_object, encode_coding_object):
23144 Adjust marker positions after conversion.
23145
23146 * lisp.h (struct Lisp_Marker): New member need_adjustment.
23147
231482008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23149
23150 * font.c (font_find_for_lface): Fix the handling of the return
23151 value of font_has_char.
23152 (Ffont_shape_text): Fix previous change.
23153
23154 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
23155 (fontset_ref_and_range): Delete it.
23156 (fontset_find_font): Call char_table_ref_and_range instead of
23157 FONTSET_REF_AND_RANGE.
23158 (make_fontset): Don't setup font groups of Latin here.
23159 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
23160 (new_fontset_from_font): Make the specified font the default for
23161 all Latin characters.
23162
231632008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23164
23165 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
23166 is on a window system before accessing the fontset of the frame.
23167
231682008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23169
23170 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
23171
23172 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
23173 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
23174
23175 * font.c (Ffont_shape_text): If the font driver doesn't have a
23176 shaper function, make zero-width glyphs to have at least one-pixel
23177 width. Fix setting of `to' field of glyphs.
23178
231792008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23180
23181 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
23182 glyphs.
23183
23184 * font.h (struct font_driver): Improve docstring of member `shape'.
23185
231862008-02-01 Kenichi Handa <handa@m17n.org>
23187
23188 * composite.c (syms_of_composite): Fix docstring of
23189 auto-composition-function.
23190
23191 * font.h (LGLYPH_SIZE): New macro.
23192
23193 * font.c (Ffont_fill_gstring): Stop filling when a character not
23194 supported by the font is found.
23195 (Ffont_shape_text): When a shape callback function returns nil,
23196 try at most two more times with larger gstring.
23197 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
23198
23199 * xdisp.c (handle_auto_composed_prop): Change the argument to
23200 auto-composition-function.
23201
23202 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
23203 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
23204 Lispy glyph and store it in the lgstring.
23205
23206 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
23207
23208 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
23209
232102008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23211
23212 * font.c (Ffont_shape_text): Avoid unnecessary composition.
23213
23214 * fontset.c (Vfont_encoding_charset_alist): New variable.
23215 (syms_of_fontset): DEFVAR it.
23216 (reorder_font_vector, fontset_find_font): Optimize for the case of
23217 no need of reordering.
23218 (face_for_char): Map the charset property by
23219 Vfont_encoding_charset_alist.
23220
232212008-02-01 Jason Rumney <jasonr@gnu.org>
23222
23223 * w32font.c (logfonts_match): Don't check adstyle here.
23224 (font_matches_spec): Check here against physical font instead.
23225 (add_font_entity_to_list): Avoid some substitutions.
23226
23227 * font.c (font_parse_fcname): Default weight and slant to normal.
23228 (font_score): Prefer normal fonts if weight or slant unspecified.
23229 (font_score) [WINDOWSNT]: Scale weight difference down to closer
23230 match freetype scores.
23231
232322008-02-01 Jason Rumney <jasonr@gnu.org>
23233
23234 * w32font.c (w32font_text_extents): Don't use the frame stored in the
23235 font, as it may have been deleted.
23236 (w32_enumfont_pattern_entity): Map generic family to adstyle using
23237 most common hyphenless variation.
23238 (logfonts_match): Check generic family.
23239 (font_matches_spec): Don't check generic family here.
23240 (fill_in_logfont): Set generic family based on adstyle.
23241
23242 * w32font.h (w32font_get_cache): Update declaration.
23243
232442008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23245
23246 * ftfont.c (ftfont_get_cache): Adjust the argument type.
23247
23248 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
23249 If none of the new drivers are available, call font_update_drivers
23250 with the old drivers.
23251
23252 * w32font.c (w32font_get_cache): Adjust the argument type.
23253
23254 * xfont.c (xfont_get_cache): Adjust the argument type.
23255
23256 * font.h (struct font_driver): Change argument type of get_cache.
23257
23258 * xftfont.c (xftfont_start_for_frame): Delete prototype.
23259
23260 * font.c (Ffont_get): Fix arguments to Fassoc.
23261 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
23262 (font_clear_cache): New function.
23263 (font_list_entities, font_matching_entity): Use font_get_cache.
23264 (font_update_drivers): Call font_clear_cache when finishing a driver.
23265
23266 * fontset.c (fontset_find_font): Fix previous change.
23267
232682008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23269
23270 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
23271 dpyinfo->font_table.
23272 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
23273 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
23274
23275 * font.c (font_at): Handle the case that the arg C is negative.
23276 Handle the unibyte case.
23277 (Ffont_at): Call font_at with the arg C -1.
23278
23279 * xdisp.c (handle_auto_composed_prop): Don't get a character at
23280 the position here, and call font_at with the arg C -1.
23281 Don't check the range of the existing composition at the point.
23282
232832008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23284
23285 * fontset.c (fontset_add): New args charset_id and family.
23286 Change caller.
23287 (load_font_get_repertory, fontset_find_font): Assume that
23288 font_spec is always a font-spec object.
23289 (Fset_fontset_font): Always store a font-spec object in a fontset.
23290
23291 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
23292 instead of get_property_and_range.
23293
232942008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23295
23296 * xftfont.c (struct xftfont_info): Delete the member ft_face.
23297 (xftfont_open): Don't keep locking face.
23298 (xftfont_close): Don't unlock face.
23299 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
23300
23301 * fontset.c (fontset_find_font): Don't prefer a font of
23302 supplementary charset.
23303
233042008-02-01 Kenichi Handa <handa@m17n.org>
23305
23306 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
23307 script, langsys_tag to langsys, new member script.
23308 (OTF_TAG_STR): Terminate by '\0'.
23309 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
23310 listing to the script specified in that property. Fix arg to
23311 OTF_check_features.
23312
233132008-02-01 Jason Rumney <jasonr@gnu.org>
23314
23315 * w32font.h: New file.
23316
23317 * w32font.c: Include it.
23318 (struct w32font_info): Add owning_frame field. Move to w32font.h.
23319 (w32font_open): Set owning_frame.
23320 (w32font_text_extents): Use owning_frame.
23321 (struct font_callback_data): Add opentype_only field.
23322 (add_font_entity_to_list): Use it to filter fonts.
23323 Don't check against full name.
23324 (w32font_list_internal): New function.
23325 (w32font_list): Use it.
23326 (w32font_match_internal): New function.
23327 (w32font_match): Use it.
23328 (w32font_open_internal): New function.
23329 (w32font_open): Use it.
23330 (w32font_get_cache, w32font_close, w32font_has_char)
23331 (w32font_encode_char, w32font_text_extents, w32font_draw):
23332 Make non-static.
23333
23334 * makefile.w32-in (w32font.o): Depend on w32font.h.
23335
233362008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23337
23338 * charset.c (Fdefine_charset_internal): Record a supplementary
23339 charset at the tail of Vcharset_order_list.
23340
23341 * font.c (Ffont_shape_text): Fix the return value.
23342
23343 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
23344
23345 * xdisp.c (handle_auto_composed_prop): Fix previous change.
23346
233472008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23348
23349 * ftfont.c (struct OpenTypeSpec): New struct.
23350 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
23351 (ftfont_get_open_type_spec): New function.
23352 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
23353
23354 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
23355
233562008-02-01 Jason Rumney <jasonr@gnu.org>
23357
23358 * w32font.c (add_font_entity_to_list): Compare only the beginning
23359 of full name.
23360
233612008-02-01 Kenichi Handa <handa@m17n.org>
23362
23363 * xdisp.c (handle_auto_composed_prop): Simplify the code.
23364 Never return HANDLED_RECOMPUTE_PROPS.
23365
233662008-02-01 Kenichi Handa <handa@m17n.org>
23367
23368 * font.c (font_gstring_produce): Delete it.
23369
23370 * composite.h (COMPOSITION_METHOD):
23371 Handle COMPOSITION_WITH_GLYPH_STRING.
23372
233732008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23374
23375 * xfont.c (Qx): Delete.
23376 (syms_of_xfont): Don't initialize Qx.
23377
23378 * composite.h (enum composition_method):
23379 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
23380
233812008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23382
23383 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
23384 (choose_face_font): Accept new form of font-spec.
23385
23386 * frame.h (font_driver_list): Declare it unconditionally.
23387 (struct frame): Define members font_driver_list and font_data_list
23388 unconditionally.
23389
23390 * fontset.c: Include "font.h" unconditionally.
23391 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
23392 (Fset_fontset_font): Accept a font-spec object.
23393
23394 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
23395 PIXEL_SIZE part a wild card.
23396
23397 * dispextern.h (struct glyph_string): Define members clip and
23398 num_clips unconditionally.
23399 (struct face): Define members font_info and extra unconditionally.
23400
23401 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
23402 ftfont_info only when HAVE_LIBOTF is defined.
23403
234042008-02-01 Andreas Schwab <schwab@suse.de>
23405
23406 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
23407 and end.
23408
234092008-02-01 Jason Rumney <jasonr@gnu.org>
23410
23411 * w32font.c (w32font_driver): Add new fields.
23412
234132008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23414
23415 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
23416 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
23417 (LIBES): Add @M17N_FLT_CFLAGS@.
23418
23419 * composite.c (compose_text): Don't treat the new style
23420 composition specially.
23421
23422 * emacs.c (main): Call syms_of_font unconditionally.
23423
23424 * font.h (FONT_ENTITY_NOT_LOADABLE)
23425 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
23426 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
23427 (struct font_driver): New member shape.
23428 (font_registry_charsets): Extern it.
23429 (font_find_for_lface, font_prepare_composition): Adjust prototype.
23430 (font_otf_capability, font_drive_otf): Delete their externs.
23431
23432 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
23433 (font_charset_alist, font_registry_charsets): Move from xfont.c
23434 and rename.
23435 (font_prop_validate_otf): New function.
23436 (font_property_table): Register it for QCotf.
23437 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
23438 (font_drive_otf): Delete.
23439 (font_prepare_composition): New arg F. Adjust for the change of
23440 lispy gstring.
23441 (font_find_for_lface): New arg C.
23442 (font_load_for_face): Adjust for the change of font_find_for_lface.
23443 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
23444 lispy gstring.
23445 (Ffont_shape_text): New function.
23446 (Fopen_font): If the font size is not given, use 12-pixel.
23447 (Ffont_at): New arg STRING.
23448 (syms_of_font): Initialize font_charset_alist.
23449 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
23450 conditionally.
23451
23452 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
23453 fonts of the same font-spec. Change the format of RFONT-DEF.
23454 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
23455 Adjust for the change of RFONT-DEF.
23456 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
23457
23458 * ftfont.h: New file.
23459
23460 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
23461 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23462 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23463 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
23464 font_otf_capability and font_drive_otf, set ftfont_shape.
23465 (ftfont_list): Adjust for the change of :otf property value.
23466 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
23467 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
23468 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
23469 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23470 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
23471 (otf_gstring, gstring, m17n_flt_initialized): New variables.
23472
23473 * w32term.c (x_draw_composite_glyph_string_foreground):
23474 Adjust for the change of lispy gstring.
23475
23476 * xdisp.c (handle_composition_prop): Adjust for the change of
23477 lispy gstring. Call a function for auto-composition with the
23478 third arg it->window.
23479 (fill_composite_glyph_string): Adjust for the change of lispy string.
23480 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
23481
23482 * xfaces.c (set_font_frame_param): Adjust for the change of
23483 font_find_for_lface.
23484
23485 * xfont.c (x_font_charset_alist): Move to font.c and rename.
23486 (xfont_registry_charsets): Likewise. Change caller.
23487 (syms_of_xfont): Don't handle x_font_charset_alist.
23488
23489 * xftfont.c: Include "ftfont.h".
23490 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23491 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23492 (xftfont_close) [HAVE_LIBOTF]: Close otf.
23493 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23494 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
23495 Set xftfont_driver.shape to xftfont_shape.
23496
23497 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
23498 the change of lispy gstring.
23499
235002008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23501
23502 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
23503
235042008-02-01 Jason Rumney <jasonr@gnu.org>
23505
23506 * w32font.c (w32font_draw): Fill background manually.
23507
235082008-02-01 Jason Rumney <jasonr@gnu.org>
23509
23510 * font.c (Qfontp): Remove unused symbol.
23511 (QCantialias): New symbol.
23512 (syms_of_font): Define it.
23513 (font_property_table): Set a validator for QCantialias.
23514
23515 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
23516 Define if not already.
23517 (QCfamily): Share with xfaces.c.
23518 (Qstandard, Qsubpixel, Qnatural): New symbols.
23519 (syms_of_w32font): Define them. Don't define QCfamily here.
23520 (w32_antialias_type, lispy_antialias_type): New functions.
23521 (w32_enumfont_pattern_entity): New arg requested_font.
23522 Set antialias parameter if non-default was requested.
23523 (fill_in_logfont): Fill in lfQuality if :antialias specified.
23524
235252008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23526
23527 * lread.c (read1): Undo the previous change.
23528
235292008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
23530
23531 * frame.c (Fdelete_frame): Call font_update_drivers only when
23532 USE_FONT_BACKEND is defined.
23533
235342008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23535
23536 * font.h (struct font_bitmap): New member bits_per_pixel.
23537 (struct font_driver): New members start_for_frame and end_for_frame.
23538 (struct font_data_list): New struct.
23539 (font_put_frame_data, font_get_frame_data): Extern them.
23540
23541 * frame.h (struct frame): New member font_data_list.
23542
23543 * font.c (font_update_drivers): Call driver->start_for_frame and
23544 driver->end_for_frame at proper timings.
23545 (font_put_frame_data, font_get_frame_data): New functions.
23546 (Ffont_spec): Add usage in the docstring.
23547
23548 * frame.c (make_frame): Initialize f->font_data_list to NULL.
23549 (Fdelete_frame): Call font_update_drivers.
23550
23551 * xftfont.c (struct xftface_info): Delete the member xft_draw.
23552 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
23553 (xftfont_get_xft_draw): New function.
23554 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
23555 (xftfont_end_for_frame): New function.
23556 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
23557
23558 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
23559 Change argument. Cache GCs in the per-frame data.
23560 (struct ftxfont_frame_data): New struct.
23561 (ftxfont_draw_bitmap): New arg gc_fore and flush.
23562 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
23563 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
23564 (ftxfont_end_for_frame): New function.
23565 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
23566
23567 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
23568
235692008-02-01 Kenichi Handa <handa@m17n.org>
23570
23571 * xselect.c (Vselection_coding_system)
23572 (Vnext_selection_coding_system): Delete them.
23573 (syms_of_xselect): Don't declare selection-coding-system and
23574 next-selection-coding-system. They are declared in select.el.
23575
235762008-02-01 Jason Rumney <jasonr@gnu.org>
23577
23578 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
23579
23580 * w32fns.c: Include imm.h.
23581 (get_composition_string_fn, get_ime_context_fn): New optional
23582 system functions.
23583 (globals_of_w32fns): Load them from imm32.dll.
23584 (ignore_ime_char): New flag.
23585 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
23586 WM_IME_ENDCOMPOSITION messages.
23587
23588 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
23589 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
23590
235912008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23592
23593 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
23594 (READCHAR_REPORT_MULTIBYTE): New macro.
23595 (readchar): New 2nd arg MULTIBYTE.
23596 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
23597 Make symbol's name multibyte according to the multibyteness of the
23598 source.
23599
236002008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23601
23602 * xfaces.c (face_for_overlay_string): Call lookup_face with
23603 correct arguments (fix of synching with the trunk).
23604
236052008-02-01 Kenichi Handa <handa@m17n.org>
23606
23607 * font.c (font_prop_validate_symbol, font_prop_validate_style)
23608 (font_prop_validate_non_neg, font_prop_validate_spacing):
23609 Delete argument prop_index.
23610 (font_property_table): Change arguments to validater. Change Callers.
23611 (font_lispy_object): Delete.
23612 (font_at): Use font_find_object instead fo font_lispy_object.
23613
236142008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23615
23616 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
23617 and file names.
23618
236192008-02-01 Jason Rumney <jasonr@gnu.org>
23620
23621 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
23622 (font_matches_spec): Remove debug output.
23623 (add_font_entity_to_list): Avoid using substituted fonts.
23624
236252008-02-01 Jason Rumney <jasonr@gnu.org>
23626
23627 * doc.c (Fsnarf_documentation):
23628 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
23629
236302008-02-01 Miles Bader <miles@gnu.org>
23631
23632 * dispextern.h (struct glyph_row): Only define "clip" field if
23633 HAVE_WINDOW_SYSTEM is defined.
23634
236352008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
23636
23637 Fix up multi-tty merge.
23638
23639 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
23640 and indentation.
23641
23642 * xfaces.c (free_realized_face, clear_face_gcs):
23643 Include font_done_for_face in the input_blocked section, just in case.
23644
23645 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
23646 (get_char_face_and_encoding): Undo last change and remove the *other*
23647 duplicate definition (i.e. keep the one that's better scoped and that
23648 includes code for the font-backend).
23649
23650 * terminal.c (create_terminal): Default keyboard_coding to
23651 `no-conversion' and terminal_coding to `undecided'.
23652
23653 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
23654
23655 * fontset.c (free_realized_fontsets): Check that the table entry does
23656 contain a fontset before trying to compare it to `base'.
23657
23658 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
23659 syms_of_charset, and syms_of_coding earlier because init_window_once
23660 now needs Vcoding_system_hash_table to be setup.
23661
23662 * coding.h (default_buffer_file_coding): Remove.
23663
23664 * coding.c (default_buffer_file_coding): Remove.
23665 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
23666 than ->symbol, and use the terminal-local coding system.
23667 (syms_of_coding): Don't setup the coding-systems that are not
23668 terminal-local.
23669 (Fdefine_coding_system_internal): Use XCAR/XCDR.
23670
23671 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
23672 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
23673
23674 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
23675 in chartab.c and were re-added here by mistake.
23676 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
23677
23678 * doc.c (Fsnarf_documentation):
23679 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
23680 src to etc.
23681
23682 * ChangeLog.10: Add mistakenly removed entry.
23683
236842008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
23685
23686 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
23687
236882008-02-01 Miles Bader <miles@gnu.org>
23689
23690 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
23691 Add extra args to FACE_FOR_CHAR.
23692
236932008-02-01 Kenichi Handa <handa@m17n.org>
23694
23695 * keymap.c (where_is_internal_1): If key is a cons, store the copy
23696 in sequence.
23697
23698 * chartab.c (map_sub_char_table, map_char_table): If the range
23699 contains just one character, call the function with that character
23700 even if the depth is not 3.
23701
237022008-02-01 Jason Rumney <jasonr@gnu.org>
23703
23704 * w32font.c (w32font_text_extents): Calculate metrics for the
23705 whole string.
23706
237072008-02-01 Jason Rumney <jasonr@gnu.org>
23708
23709 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
23710
237112008-02-01 Jason Rumney <jasonr@gnu.org>
23712
23713 * w32term.c (x_set_glyph_string_clipping):
23714 Use get_glyph_string_clip_rects.
23715 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
23716 Adjust for the change of struct glyph_string.
23717
23718 * w32font.c (w32font_draw): Do clipping here.
23719
237202008-02-01 Kenichi Handa <handa@m17n.org>
23721
23722 * xftfont.c (xftfont_draw): Adjust for the change of struct
23723 glyph_string.
23724
23725 * xterm.c (x_set_glyph_string_clipping):
23726 Use get_glyph_string_clip_rects.
23727 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
23728 Adjust for the change of struct glyph_string.
23729
23730 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
23731 the resulting clip(s}.
23732 (expose_overlaps): Add arg r. Change callers. Set it to
23733 row->clip temporarily.
23734 (expose_window): Redraw rows overlapping the exposed area.
23735
23736 * dispextern.h (struct glyph_row): New member clip.
23737 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
23738 clip_height, new member clip, and num_clips.
23739
237402008-02-01 Kenichi Handa <handa@m17n.org>
23741
23742 * data.c (Fchar_or_string_p): Fix docstring.
23743
237442008-02-01 Kenichi Handa <handa@m17n.org>
23745
23746 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
23747 create a temporary XftDraw object.
23748
237492008-02-01 Kenichi Handa <handa@m17n.org>
23750
23751 * font.c (Ffontp): Fix docstring.
23752
23753 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
23754 strong evidence of ISO-2022.
23755
237562008-02-01 Kenichi Handa <handa@m17n.org>
23757
23758 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
23759 SYNTAX_ENTRY_FOLLOW_PARENT.
23760
237612008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
23762
23763 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
23764 its type.
23765 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
23766 Update to the new type of weak_hash_tables and next_weak.
23767
23768 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
23769 a plain C pointer to Lisp_Hash_Table.
23770
23771 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
23772 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
23773 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
23774 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
23775 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
23776 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
23777 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
23778 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
23779 (GC_EQ): Remove since they've been identical to their non-GC_
23780 alter-egos ever since the markbit was eradicated.
23781
23782 * alloc.c:
23783 * buffer.c:
23784 * buffer.h:
23785 * data.c:
23786 * fileio.c:
23787 * filelock.c:
23788 * fns.c:
23789 * frame.h:
23790 * lisp.h:
23791 * macterm.c:
23792 * print.c:
23793 * process.c:
23794 * w32fns.c:
23795 * w32menu.c:
23796 * w32term.c:
23797 * xfns.c:
23798 * xmenu.c:
23799 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
23800
238012008-02-01 Kenichi Handa <handa@m17n.org>
23802
23803 * chartab.c (map_sub_char_table): Make it work for the top-level
23804 char-table. Fix handling of parent char-table.
23805 (map_char_table): Adjust for the above change.
23806
238072008-02-01 Jason Rumney <jasonr@gnu.org>
23808
23809 * w32font.c (Qgdi): Rename from Qw32.
23810
238112008-02-01 Jason Rumney <jasonr@gnu.org>
23812
23813 * w32bdf.c (get_quoted_string): Make function static.
23814
238152008-02-01 Kenichi Handa <handa@m17n.org>
23816
23817 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
23818 bigger ascent and descent than those of the font, use them as
23819 font's ascent and descent.
23820
238212008-02-01 Kenichi Handa <handa@m17n.org>
23822
23823 * Makefile.in (${lispsource}international/charprop.el): Move this
23824 target within "#ifdef HAVE_UNIDATA" and "#endif".
23825
238262008-02-01 Kenichi Handa <handa@m17n.org>
23827
23828 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
23829 (shortlisp): Add ../lisp/language/tai-viet.el.
23830
238312008-02-01 Ulrich Mueller <ulm@gentoo.org>
23832
23833 * Makefile.in (${lispsource}international/charprop.el): Depend on
23834 temacs${EXEEXT}.
23835
238362008-02-01 Jason Rumney <jasonr@gnu.org>
23837
23838 * w32font.c (w32font_close): Delete the GDI font object.
23839
23840 * w32menu.c: Include character.h.
23841
23842 * w32proc.c: Likewise.
23843
23844 * w32select.c: Likewise.
23845
23846 * makefile.w32-in (w32proc.o): Depend on character.h.
23847
238482008-02-01 Jason Rumney <jasonr@gnu.org>
23849
23850 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
23851
23852 * w32menu.c (syms_of_w32menu): Likewise.
23853
23854 * w32proc.c (syms_of_ntproc): Likewise.
23855
23856 * w32select.c (syms_of_w32select): Likewise.
23857
23858 * w32term.c (syms_of_w32term): Likewise.
23859
238602008-02-01 Jason Rumney <jasonr@gnu.org>
23861
23862 * w32font.c (w32font_draw): Delete brush after using it.
23863
238642008-02-01 Jason Rumney <jasonr@gnu.org>
23865
23866 * w32font.c (w32font_open): Don't set font_idx.
23867 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
23868 to font settings.
23869 (w32font_draw): Fill background explicitly.
23870
238712008-02-01 Jason Rumney <jasonr@gnu.org>
23872
23873 * w32term.c (w32_initialize): Don't call w32font_initialize.
23874
23875 * w32font.c (w32font_info): Remove subranges.
23876 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
23877 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
23878 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
23879 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
23880 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
23881 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
23882 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
23883 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
23884 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
23885 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
23886 New symbols.
23887 (font_callback_data): New struct.
23888 (w32font_list, w32font_match): Use it.
23889 (w32font_open): Don't populate subranges.
23890 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
23891 (w32font_encode_char): Always return unicode code-point as-is.
23892 (w32font_text_extents): Supply a transformation matrix to
23893 GetGlyphOutline. Never look up by glyph index. Avoid looping
23894 twice. Use unicode version of GetTexExtentPoint32 instead of
23895 glyph index version.
23896 (set_fonts_frame): Remove.
23897 (w32_enumfont_pattern_entity): Add frame parameter, use it to
23898 set frame parameter. Use backward compatible fake foundries.
23899 Save generic family in extra slot under QCfamily. Make width slot
23900 constant. Save QCspacing value. Save list of scripts instead of
23901 binary subranges.
23902 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
23903 (add_font_entity_to_list): Use font_callback_data struct.
23904 Filter unwanted fonts.
23905 (add_one_font_entity_to_list): Use font_callback_data struct.
23906 (w32_registry): Default to iso10646_1.
23907 (fill_in_logfont): Use dpi from extra slot. Don't bother with
23908 string font registries. Don't fill in font name if it is a generic
23909 family name, fill family instead. Use spacing, family and script
23910 extra info to fill pitch, family and charset fields.
23911 (list_all_matching_fonts): Use font_callback_data struct.
23912 (unicode_range_for_char): Remove.
23913 (font_supported_scripts): New function.
23914 (w32font_initialize): Remove.
23915 (syms_of_w32font): Update which symbols are defined.
23916
239172008-02-01 Jason Rumney <jasonr@gnu.org>
23918
23919 * font.c (font_pixel_size): Reverse assq_no_quit args.
23920
23921 * w32term.h (FONT_WIDTH): Report max width, not average.
23922 (FONT_MAX_WIDTH): Remove.
23923 (FONT_AVG_WIDTH): New macro.
23924
23925 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
23926 redefinition of FONT_WIDTH.
23927
23928 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
23929 (w32_cache_char_metrics): Use FONT_WIDTH.
23930
23931 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
23932
239332008-02-01 Jason Rumney <jasonr@gnu.org>
23934
23935 * w32font.c (w32font_open): Make lfHeight negative.
23936
23937 * w32fns.c (x_default_font_parameter): Use new style font name.
23938 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
23939
239402008-02-01 Jason Rumney <jasonr@gnu.org>
23941
23942 * w32font.c (QCsubranges): New symbol.
23943 (w32font_open, w32font_has_char): Get subranges from subproperty
23944 of extra.
23945 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
23946 (syms_of_w32font): Define :subranges symbol.
23947
23948 * font.c (font_put_extra): Expose externally.
23949
23950 * font.h (font_put_extra): Move declaration from font.c.
23951
23952 * font.c (Ffont_get): Use font driver to determine otf capability.
23953 (adjust_anchor): Check if driver defines anchor_point before using.
23954
23955 * w32font.c (w32font_open): Handle size, height and pixel_size better.
23956 (w32font_draw): Use options.
23957 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
23958 Fix detection of truetype fonts.
23959 (registry_to_w32_charset): Handle charsets other than iso8859-1
23960 expressed as lisp symbols.
23961 (w32_registry): Express charset as lisp symbol.
23962 (fill_in_logfont): Reverse pixel and point height logic.
23963 Don't set width here. Set quality to default.
23964
23965 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
23966 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
23967
23968 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
23969 Remove redundant loop and allocation.
23970
23971 * makefile.w32-in (font.o, w32font.o): New objects.
23972 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
23973 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
23974
23975 * xdisp.c (fill_composite_glyph_string): Make the first arg to
23976 STORE_XCHARB a valid l-value.
23977
23978 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
23979 calculations for non-Truetype fonts.
23980 (x_draw_glyph_string): Sync with xterm.c.
23981 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
23982 Remove redundant code.
23983 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
23984
23985 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
23986 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
23987
23988 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
23989 (x_to_w32_charset, w32_to_x_charset): Expose externally.
23990
23991 * w32font.c: New file for w32 font backend.
23992
239932008-02-01 Kenichi Handa <handa@m17n.org>
23994
23995 * term.c: Don't include "buffer.h" twice.
23996
239972008-02-01 Kenichi Handa <handa@m17n.org>
23998
23999 * character.c (Funibyte_string): New function.
24000 (syms_of_character): Defsubr it.
24001
240022008-02-01 Jason Rumney <jasonr@gnu.org>
24003
24004 * w32term.c [USE_FONT_BACKEND]:
24005 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
24006 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
24007 (x_draw_glyph_string, x_draw_glyph_string_foreground)
24008 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
24009 (x_free_frame_resources): Sync with xterm.c.
24010
240112008-02-01 Andreas Schwab <schwab@suse.de>
24012
24013 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
24014 char-table size.
24015
240162008-02-01 Kenichi Handa <handa@m17n.org>
24017
24018 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
24019
240202008-02-01 Kenichi Handa <handa@m17n.org>
24021
24022 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
24023 font_otf_gpos, add font_drive_otf.
24024
24025 * fontset.c (fontset_find_font): Pay attention to font size
24026 specified for a font.
24027 (reorder_font_vector): Check contents of font_def.
24028
24029 * font.c (struct otf_list): Delete it.
24030 (otf_list): Make it a lisp variable.
24031 (otf_open): Use lispy otf_list.
24032 (generate_otf_features): Rename from parse_gsub_gpos_spec.
24033 (check_otf_features): New function.
24034 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
24035 New functions.
24036 (font_drive_otf): New function merging font_otf_gsub and
24037 font_otf_gpos.
24038 (font_open_for_lface): New arg spec. Change argument order.
24039 (font_load_for_face): Adjust for the change of font_open_for_lface.
24040 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
24041 Ffont_otf_gpos.
24042 (syms_of_font): Staticpro otf_list. Delete defsubr of
24043 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
24044
24045 * xfaces.c (set_font_frame_param): Adjust for the change of
24046 font_open_for_lface.
24047
24048 * font.h (font_open_for_lface): Adjust prototype.
24049 (struct font_driver): Delete members otf_gsub and otf_gpos, add
24050 member otf_drive.
24051 (font_otf_gsub, font_otf_gpos): Delete externs.
24052 (font_drive_otf): Extern it.
24053
240542008-02-01 Kenichi Handa <handa@m17n.org>
24055
24056 * font.c (font_at): If the window W is not on a window system,
24057 return Qnil.
24058
24059 * coding.c (produce_chars, encode_coding): Don't call
24060 insert_from_gap if no characters to produce.
24061
240622008-02-01 Kenichi Handa <handa@m17n.org>
24063
24064 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
24065 Fclear_face_cache.
24066
24067 * xfaces.c (face_for_font): Check also face->font==font->font.font.
24068
240692008-02-01 Miles Bader <miles@gnu.org>
24070
24071 * emacs.c (main): Change default value of `enable_font_backend' to 1.
24072 Parse "--disable-font-backend" option.
24073 (standard_args): Add "--disable-font-backend" option.
24074
240752008-02-01 Kenichi Handa <handa@m17n.org>
24076
24077 * fontset.c (fontset_find_font): New function.
24078 (fontset_font): Use fontset_find_font.
24079 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
24080 Register the specified font for all Latin characters.
24081 (new_fontset_from_font): Register the specified font for all Latin
24082 characters.
24083 (dump_fontset): For a realized fontset, include the base fontset
24084 name in the returned vector.
24085
240862008-02-01 Kenichi Handa <handa@m17n.org>
24087
24088 * character.h (CHAR_STRING): Cast C to unsigned on calling
24089 char_string.
24090
24091 * character.c (char_string): Type of arg C changed to unsigned.
24092 Signal an error if C is an invalid character code.
24093
24094 * editfns.c (general_insert_function, Fchar_to_string):
24095 Use CHARACTERP, not INTEGERP.
24096
240972008-02-01 Kenichi Handa <handa@m17n.org>
24098
24099 * character.h (MIN_MULTIBYTE_LEADING_CODE)
24100 (MAX_MULTIBYTE_LEADING_CODE): New macros.
24101
24102 * regex.c (analyse_first): Fix for multibyte characters in "case
24103 charset:" and "case categoryspec:".
24104
241052008-02-01 Andreas Schwab <schwab@suse.de>
24106
24107 * Makefile.in (LIBES): Move standard libraries to the end.
24108
241092008-02-01 Kenichi Handa <handa@m17n.org>
24110
24111 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
24112 nonzero, don't shrink the buffer nextb.
24113
24114 * buffer.h (struct buffer_text): New member inhibit_shrinking.
24115
24116 * coding.c (coding_alloc_by_making_gap): New arg offset.
24117 (alloc_destination): Call coding_alloc_by_making_gap with the arg
24118 offset.
24119 (decode_coding_iso_2022): Update coding->safe_charsets.
24120 (decode_coding_gap): Temporarily set
24121 current_buffer->text->inhibit_shrinking to 1.
24122
241232008-02-01 Kenichi Handa <handa@m17n.org>
24124
24125 * xterm.c (x_draw_composite_glyph_string_foreground):
24126 Fix indexing into elements of s->cmp and s->char2b.
24127
241282008-02-01 Juanma Barranquero <lekktu@gmail.com>
24129
24130 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
24131
241322008-02-01 Kenichi Handa <handa@m17n.org>
24133
24134 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
24135 target_multibyte instead of multibyte.
24136 (re_match_2_internal): Call bcmp_translate with target_multibyte.
24137 (bcmp_translate): Change the argument name from multibyte to
24138 target_multibyte.
24139
241402008-02-01 Kenichi Handa <handa@m17n.org>
24141
24142 These changes are to compile a regexp into a pattern that can be
24143 used both for multibyte and unibyte targets.
24144
24145 * Makefile.in (search.o): Depend on charset.h.
24146
24147 * character.c (multibyte_char_to_unibyte_safe): New function.
24148
24149 * search.c: Include "charset.h".
24150 (compile_pattern_1): Delete argument multibyte. Don't set
24151 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
24152 (compile_pattern): Don't compare cp->buf.target_multibyte.
24153 Compare cp->buf.charset_unibyte.
24154 (compile_pattern): Set cp->buf.target_multibyte.
24155
24156 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
24157
24158 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
24159
24160 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
24161 multibyte. Change callers.
24162 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
24163 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
24164 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
24165 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
24166 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
24167 (regex_compile): Make the compiled pattern usable both for
24168 multibyte and unibyte targets.
24169 (analyse_first): Make the fastmap usable both for multibyte and
24170 unibyte targets.
24171 (TRANSLATE_VIA_MULTIBYTE): Delete.
24172 (re_match_2_internal): Pay attention to the case that the
24173 multibyteness of bufp and target may be different.
24174
241752008-02-01 Kenichi Handa <handa@m17n.org>
24176
24177 * xdisp.c (x_produce_glyphs): When a font is not found, make the
24178 empty box occupy at least one column width.
24179
241802008-02-01 Miles Bader <miles@gnu.org>
24181
24182 * Makefile.in: Remove redundant HAVE_XFT clause.
24183
241842008-02-01 Kenichi Handa <handa@m17n.org>
24185
24186 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
24187
241882008-02-01 Kenichi Handa <handa@m17n.org>
24189
24190 * fontset.c (Finternal_char_font): Fix for the case of POSITION
24191 being nil.
24192
241932008-02-01 Kenichi Handa <handa@m17n.org>
24194
24195 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
24196
241972008-02-01 Kenichi Handa <handa@m17n.org>
24198
24199 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
24200
242012008-02-01 Kenichi Handa <handa@m17n.org>
24202
24203 * search.c (simple_search): Fix previous change.
24204
242052008-02-01 Kenichi Handa <handa@m17n.org>
24206
24207 * xftfont.c (ftfont_font_format): Extern declaration.
24208
24209 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
24210
24211 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
24212 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
24213
24214 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
24215 (ftfont_font_format): Fix previous change.
24216
24217 * font.h (Ffont_xlfd_name): EXFUN it.
24218
24219 * font.c (font_parse_xlfd): Fix the array size of `f'.
24220 (register_font_driver): Use EQ to compare driver->type.
24221
24222 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
24223 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
24224 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
24225
242262008-02-01 Kenichi Handa <handa@m17n.org>
24227
24228 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
24229 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
24230
242312008-02-01 Kenichi Handa <handa@m17n.org>
24232
24233 * xfont.c (xfont_open): Set font->format.
24234
24235 * xftfont.c (xftfont_open): Set font->format.
24236
24237 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
24238 (ftfont_list): Include FC_FONTFORMAT in FcObject.
24239 (ftfont_open): Set font->format.
24240 (ftfont_font_format): New function.
24241
24242 * font.h (struct font): New member format.
24243
24244 * font.c (Qopentype): New variable.
24245 (syms_of_font): Defsym it.
24246 (Fquery_font): Change the format of the last element of the return
24247 value.
24248
242492008-02-01 Kenichi Handa <handa@m17n.org>
24250
24251 * xfns.c (xic_create_xfontset): Try the default fontset name as a
24252 last resort.
24253
242542008-02-01 Kenichi Handa <handa@m17n.org>
24255
24256 * coding.c (detect_coding_charset): Fix detection of multi-byte
24257 charset.
24258
242592008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
24260
24261 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
24262
242632008-02-01 Kenichi Handa <handa@m17n.org>
24264
24265 * xdisp.c (get_next_display_element): Set it->face_id for the
24266 first component of a composition.
24267 (x_produce_glyphs): Check if the font is changed or not for composition.
24268
242692008-02-01 Kenichi Handa <handa@m17n.org>
24270
24271 * fontset.c (Qlatin): New variable.
24272 (syms_of_fontset): Define it as a lisp symbol.
24273 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
24274
242752008-02-01 Kenichi Handa <handa@m17n.org>
24276
24277 * font.c (font_unparse_fcname): Pay attention to the case that
24278 some of font property is a null string.
24279
242802008-02-01 Kenichi Handa <handa@m17n.org>
24281
24282 * term.c: Include "composite.h".
24283 (encode_terminal_code): Output all components of composition.
24284 Check the size of encode_terminal_src.
24285 (produce_glyphs): For composition, call produce_composite_glyph.
24286 (append_composite_glyph, produce_composite_glyph): New functions.
24287
24288 * xdisp.c (x_produce_glyphs): In handling composition, if a font
24289 is not found, get font_info from the current ascii face.
24290
242912008-02-01 Kenichi Handa <handa@m17n.org>
24292
24293 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
24294 buffer-file-name to Qnil before calling insert_from_buffer.
24295
24296 * font.c (font_unparse_fcname): Pay attention to the case that
24297 foundry is a null string.
24298
242992008-02-01 Kenichi Handa <handa@m17n.org>
24300
24301 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
24302
24303 * font.c (Qunicode_sip): New variable.
24304 (syms_of_font): Declare it as a Lisp symbol.
24305
24306 * font.h (Qunicode_sip): Extern it.
24307
243082008-02-01 Kenichi Handa <handa@m17n.org>
24309
24310 * composite.c (get_composition_id): Pay attention to TAB component.
24311
24312 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
24313 TAB. Adjust for the change of s->char2b which always points to
24314 the first element of allocated memory.
24315
24316 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
24317
24318 * xdisp.c (handle_composition_prop): Set it->c to the first
24319 non-TAB component.
24320 (fill_composite_glyph_string): Change argument.
24321 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
24322 (x_produce_glyphs): Fix handling of left/right padding.
24323
243242008-02-01 Kenichi Handa <handa@m17n.org>
24325
24326 * coding.c (detect_coding_system): Fix for handling off
24327 inhibit_iso_escape_detection. Fix for the case that no coding
24328 system is defined for a specific coding category.
24329
243302008-02-01 Kenichi Handa <handa@m17n.org>
24331
24332 * font.c (font_matching_entity): Delete unused local var.
24333
24334 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
24335 opening a font.
24336
24337 * fileio.c (Finsert_file_contents): On recovering a file, assume
24338 Unix-like eol.
24339 (choose_write_coding_system): On auto-saving a file, force
24340 Unix-like eol.
24341
24342 * coding.c (setup_coding_system): Fix setting of
24343 coding->common_flags based on eol_type.
24344 (coding_inherit_eol_type): If PARENT is not nil, be sure to
24345 inherit from it.
24346
243472008-02-01 Kenichi Handa <handa@m17n.org>
24348
24349 * alloc.c (NSTATICS): Increas to 0x600.
24350
243512008-02-01 Kenichi Handa <handa@m17n.org>
24352
24353 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
24354 (ftfont_list): Don't check :name property.
24355 (ftfont_match): New function.
24356 (ftfont_pattern_entity): If the pattern doesn't contain
24357 FC_SPACING, don't assume FC_MONO.
24358
24359 * font.h (struct font_driver): New member `match'.
24360 (font_update_drivers): Adjust prototype.
24361
24362 * font.c (font_parse_fcname, font_parse_name): Don't change :name
24363 property of FONT.
24364 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
24365 Define them unconditionally.
24366 (font_matching_entity): New function.
24367 (font_open_by_name): Try font_matching_entity if exact match is
24368 not found.
24369 (font_update_drivers): Delete the arg FONT. Return a list of
24370 actually used backends. Don't free faces, font caches here.
24371 Don't store data in frame parameters. Don't call x_set_font.
24372 (Ffont_spec): Store :name property as is.
24373 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
24374 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
24375 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
24376 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
24377 Call font->driver->otf_gsub instead of font_otf_gsub.
24378
24379 * frame.c (x_set_font_backend): Do more works that were done in
24380 font_update_drivers before.
24381
24382 * xfont.c (xfont_match): New function.
24383 (xfont_driver): Set xfont_driver.match to xfont_match.
24384 (xfont_draw): Set font in GC if necessary.
24385
24386 * ftxfont.c (ftxfont_match): New function.
24387 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
24388
24389 * xftfont.c (xftfont_match): New function.
24390 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
24391
243922008-02-01 Kenichi Handa <handa@m17n.org>
24393
24394 * font.h (struct font): New member scalable.
24395 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
24396 (font_otf_gsub): Adjust prototype.
24397
24398 * font.c (font_otf_capability): Fix handling of the default langsys.
24399 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
24400 Check the contents of SPEC.
24401 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
24402 (check_gstring): New function.
24403 (REPLACEMENT_CHARACTER): New macro.
24404 (font_otf_gsub): New arg alternate_subst. Be sure to set all
24405 glyph codes of GSTRING.
24406 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
24407 (font_prepare_composition): Set cmp->glyph_len.
24408 (font_open_entity): Set font->scalable.
24409 (Ffont_get): Handle :otf property.
24410 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
24411 New functions.
24412 (Fquery_font): Use font->font.full_name.
24413 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
24414 Sfont_otf_alternates.
24415
24416 * ftfont.c (ftfont_open): Set font->font.full_name and
24417 font->font.name properly. Fix calculation of font->font.height
24418 and font->min_width.
24419
24420 * ftxfont.c (ftxfont_create_gcs): New function.
24421 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
24422 (ftxfont_draw_backgrond): Fix filling region.
24423 (ftxfont_default_fid): New function.
24424 (ftxfont_open): Set xfont->fid to the return value of
24425 ftxfont_default_fid.
24426 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
24427 (ftxfont_done_face): Free only GCs that are created by
24428 ftxfont_create_gcs.
24429 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
24430
24431 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
24432 Clip to src->width, etc (not src->clip_XXX).
24433
24434 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
24435 FontBackend frame parameter.
24436
244372008-02-01 Kenichi Handa <handa@m17n.org>
24438
24439 * font.h (struct font_driver_list): New member `on'.
24440 (Fclear_font_cache): EXFUN it.
24441 (font_update_drivers): Extern it.
24442
24443 * font.c (font_unparse_fcname): Fix typo (swidth->width).
24444 (font_list_entities): Check driver_list->on.
24445 (register_font_driver): Initialize `on' member to 0.
24446 (font_update_drivers): New function.
24447 (Fclear_font_cache): Check driver_list->on.
24448
24449 * frame.h (Qfont_backend): Extern it.
24450 (x_set_font_backend): Extern it.
24451
24452 * frame.c (Qfont_backend): New variable.
24453 (frame_parms): New element for font-backend.
24454 (x_set_font_backend): New function.
24455
24456 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
24457 FontBackend frame parameter.
24458 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
24459 x_set_font_backend.
24460
24461 * xfont.c (xfont_list): Don't try listing by :name property if the
24462 name is not for XLFD.
24463
244642008-02-01 Kenichi Handa <handa@m17n.org>
24465
24466 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
24467 (LGLYPH_SET_TO): New macros.
24468 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
24469 element of G is vector or not.
24470 (font_at): Extern it.
24471
24472 * font.c: Include window.h.
24473 (font_lispy_object): New function.
24474 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
24475 end of valid glyph.
24476 (font_close_object): Fix getting (struct font *).
24477 (font_at): New function.
24478 (Ffont_get): If FONT is a font-object, get entity from it.
24479 (Ffont_make_gstring): Initialize elements of glyphs with nil.
24480 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
24481 Fix range check.
24482 (Ffont_at): New function.
24483 (syms_of_font): Defsubr Sfont_at.
24484
24485 * xdisp.c (it_props): Move the entry for Qauto_composed to just
24486 before the entry for Qcomposition.
24487 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
24488 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
24489 the font in gstring.
24490 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
24491 LGLYPH_FORM (g) to detect the end of valid glyph.
24492 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
24493 we are composing with gstring.
24494
24495 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
24496 Check if adjustment is vector or not.
24497
24498 * Makefile.in (font.o): Make it depends on window.h.
24499
245002008-02-01 Kenichi Handa <handa@m17n.org>
24501
24502 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
24503 adjustment is vector or not.
24504
245052008-02-01 Miles Bader <miles@gnu.org>
24506
24507 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
24508
245092008-02-01 Kenichi Handa <handa@m17n.org>
24510
24511 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
24512 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
24513 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
24514
24515 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
24516 (DEVICE_DELTA): Fix typo.
24517 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
24518 LGLYPH format.
24519
24520 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
24521 the change of LGLYPH format.
24522
245232008-02-01 Kenichi Handa <handa@m17n.org>
24524
24525 * ftfont.c (ftfont_list): Fix typo.
24526 (ftfont_build_basic_charsets): Don't include letters with diacritics.
24527
245282008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24529
24530 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
24531
24532 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
24533 xftface_info is non-NULL.
24534
245352008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24536
24537 * ftfont.c (ftfont_list): Move misplaced #endif.
24538
245392008-02-01 Kenichi Handa <handa@m17n.org>
24540
24541 * ftfont.c (ftfont_list): Pay attention to the case that
24542 FC_CAPABILITY is not defined.
24543
245442008-02-01 Kenichi Handa <handa@m17n.org>
24545
24546 * xftfont.c (xftfont_open): Set charset related members to -1.
24547
24548 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
24549 QCname.
24550 (ftfont_open): Set charset related members to -1.
24551
24552 * fontset.c (Votf_script_alist): New variable.
24553 (syms_of_fontset): Initialize it.
24554 (fontset_font): Delete unused variable.
24555
24556 * fontset.h (Votf_script_alist): Extern it.
24557
24558 * font.c (font_find_for_lface): Optimize code.
24559
24560 * font.h (font_close_object, font_merge_old_spec): Extern them.
24561
245622008-02-01 Kenichi Handa <handa@m17n.org>
24563
24564 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
24565 (syms_of_font): Initialize them.
24566 (font_pixel_size): Allow float value in dpi.
24567 (font_prop_validate_type): Delete.
24568 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
24569 Change caller.
24570 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
24571 (font_prop_validate_extra): Delete.
24572 (font_prop_validate_spacing): New function.
24573 (font_property_table): Add elements for all known properties.
24574 (get_font_prop_index): Rename from check_font_prop_name.
24575 New argument FROM. Change caller.
24576 (font_prop_validate): Validate all known properties.
24577 (font_put_extra): Delete argument force. Change caller.
24578 (font_expand_wildcards): Make it static. Fix the way of shrinking
24579 the possible range.
24580 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
24581 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
24582 Change caller.
24583 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
24584 (font_parse_fcname): Delete argument merge. Fix parsing of point
24585 size. Don't validate properties values here. Change caller.
24586 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
24587 (font_open_by_name): Delete unused variable.
24588 (Ffont_spec): Likewise. Validate property values.
24589 (Ffont_match_p): New function.
24590
24591 * font.h (QCscalable): Extern it.
24592 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
24593
24594 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
24595
24596 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
24597 (xfont_list_pattern): New function.
24598 (xfont_list): Use xfont_list_pattern.
24599
246002008-02-01 Kenichi Handa <handa@m17n.org>
24601
24602 * font.h (Flist_fonts): EXFUN it.
24603
246042008-02-01 Jason Rumney <jasonr@gnu.org>
24605
24606 * w32term.c (w32_initialize): Add back smoothing_type and
24607 smoothing_enabled definitions.
24608
246092008-02-01 Kenichi Handa <handa@m17n.org>
24610
24611 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
24612 s->face->font on determining underline position.
24613
246142008-02-01 Kenichi Handa <handa@m17n.org>
24615
24616 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
24617 (font_has_char): Accept font-object too.
24618 (font_find_for_lface): Try at first with a size specified in face.
24619
246202008-02-01 Kenichi Handa <handa@m17n.org>
24621
24622 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
24623 font_open_by_name.
24624
246252008-02-01 Kenichi Handa <handa@m17n.org>
24626
24627 * font.h (QCspacing, QCdpi): Extern them.
24628 (enum font_spacing): New enum.
24629 (FONT_PIXEL_SIZE_QUANTUM): New macro.
24630
24631 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
24632 (QCspacing, QCdpi): New variables.
24633 (syms_of_font): Initialize them.
24634 (font_pixel_size): New function.
24635 (font_put_extra): New function.
24636 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
24637 in FONT_EXTRA.
24638 (font_parse_fcname): Handle enumerated values (e.g. bold).
24639 Fix handling font size. Add QCname property that contains only
24640 unknown properties.
24641 (font_score): Change argument. Change caller. Pay attention to
24642 FONT_PIXEL_SIZE_QUANTUM.
24643 (font_sort_entites, font_list_entities, font_find_for_lface)
24644 (font_open_for_lface, font_open_by_name): Fix handling of font size.
24645 (Ffont_spec): Add QCname property that contains only unknown properties.
24646
24647 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
24648 Don't include weight in listing pattern, instead check weight of each
24649 listed font. Don't include scalable in pattern. Pay attention to
24650 FONT_PIXEL_SIZE_QUANTUM.
24651
246522008-02-01 Kenichi Handa <handa@m17n.org>
24653
24654 * font.c (font_parse_fcname): Fix parsing of point-size.
24655 (font_unparse_fcname): Produce symbolic names for style properties.
24656 (font_list_entities): Handle float size correctly.
24657 (font_open_by_name): Prefer `normal' property values if the name
24658 doesn't specify them.
24659
24660 * fontset.c (Finternal_char_font): Use font_get_name, not
24661 Ffont_xlfd_name.
24662
24663 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
24664 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
24665 pattern. Don't force scalable.
24666
24667 * xftfont.c (xftfont_open): For generating a name, start from
24668 96-byte buffer.
24669
246702008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24671
24672 * frame.h (x_new_fontset2): Fix prototype.
24673
246742008-02-01 Kenichi Handa <handa@m17n.org>
24675
24676 * font.h (struct font_driver): Delete member parse_name.
24677 (font_match_p, font_get_spec, font_parse_fcname)
24678 (font_unparse_fcname): Extern them.
24679 (font_get_name): Adjust prototype.
24680
24681 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
24682 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
24683 (font_expand_wildcards): Fix handling ENCODING field.
24684 Avoid unnecessary checks for weight, slant, and swidth.
24685 (font_parse_fcname): New function.
24686 (font_unparse_fcname): New function.
24687 (font_parse_name): New function.
24688 (font_match_p): New function.
24689 (font_get_name): Change return value to Lisp string.
24690 (font_get_spec): New function.
24691 (Qunspecified, Qignore_defface): Don't extern them.
24692 (font_find_for_lface): Assume that LFACE is fully specified.
24693 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
24694 object, use it for FACE.
24695 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
24696 driver->parse_name.
24697 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
24698
24699 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
24700 prototype.
24701
24702 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
24703 argument F. Don't call Fnew_fontset. Instead, directly call
24704 make_fontset.
24705
24706 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
24707
24708 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
24709 of x_new_fontset2.
24710
24711 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
24712 (Qsans__serif): New variables.
24713 (ftfont_generic_family_list): New variable.
24714 (syms_of_ftfont): Initialize the above variables.
24715 (ftfont_pattern_entity): Delete argument NAME.
24716 (ftfont_list_generic_family): New function.
24717 (ftfont_parse_name): Delete this function.
24718 (ftfont_list): Try generic family only when FcFontList found no font.
24719 (ftfont_list_family): Fix args to FcObjectSetBuild.
24720
24721 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
24722 object in attrs[LFACE_FONT_INDEX].
24723 (set_lface_from_font_name): Cancel all changes for font-backend.
24724 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
24725 function.
24726 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
24727 font object in QCfont attribute.
24728 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
24729 (realize_default_face) [USE_FONT_BACKEND]: Call
24730 set_lface_from_font_and_fontset.
24731
24732 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
24733 "fixed", and signal error here if no suitable font was found.
24734
24735 * xfont.c (xfont_parse_name): Delete this function.
24736
24737 * xftfont.c (xftfont_open): Change coding style of error
24738 handling. Generate fontconfig's fontname pattern.
24739
24740 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
24741 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
24742
24743 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
24744 Both args FONTSET and FONT_OBJECT must be existing ones.
24745
247462008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24747
24748 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
24749
247502008-02-01 Kenichi Handa <handa@m17n.org>
24751
24752 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
24753
24754 * font.h (struct font): Fix typo.
24755
24756 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
24757 XLFD_XXX_INDEX.
24758 (enum xlfd_field_mask): New enum.
24759 (intern_font_field): Change argument. Change caller. If digits
24760 are followed by non-digits, return a symbol.
24761 (font_expand_wildcards): New function.
24762 (font_parse_xlfd): Fix wildcard handling.
24763 (Ffont_spec): If :name is specified, reflect the info in the other
24764 properties.
24765
24766 * ftfont.c (ftfont_pattern_entity): Fix typo.
24767 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
24768 locale.
24769
247702008-02-01 Kenichi Handa <handa@m17n.org>
24771
24772 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
24773
24774 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
24775 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
24776 registry doesn't specify encoding part.
24777 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
24778 (font_open_by_name): At first try parsing the name.
24779 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
24780 as Lisp symbols.
24781
24782 * fontset.c (reorder_font_vector): Pay attention to the case that
24783 the 3rd element of font_def is nil.
24784 (fontset_font): For the default fontset, append one more fontset
24785 elements for a script-based font specification. Don't add script
24786 attribute on finding a font.
24787 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
24788 font name.
24789 (fontset_ascii_font): If a font can't be opened, return nil.
24790
24791 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
24792 (ftfont_pattern_entity): New function.
24793 (ftfont_get_cache): Assume that freetype_font_cache is already
24794 initialized.
24795 (ftfont_list): Handle the case that a file is specified in font
24796 name. Use ftfont_pattern_entity to generate entities.
24797 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
24798 (syms_of_ftfont): Initialize freetype_font_cache.
24799
24800 * xftfont.c (xftfont_open): Make the font name fontconfig's
24801 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
24802 (xftfont_close): Free font->font.name if not NULL.
24803
24804 * xfont.c (xfont_list): If script is specified for a font, return
24805 null_vector.
24806 (xfont_list_family): Declare argument type.
24807
24808 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
24809 name, set LFACE_FONT (lface) to nil.
24810
24811 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
24812 return Qnil.
24813
248142008-02-01 Kenichi Handa <handa@m17n.org>
24815
24816 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
24817 (standard_args): Add "-enable-font-backend".
24818
248192008-02-01 Kenichi Handa <handa@m17n.org>
24820
24821 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
24822 (struct xftdraw_list, xftdraw_list): Delete them.
24823 (register_xftdraw, check_xftdraw): Delete them.
24824 (xftfont_prepare_face): Don't call register_xftdraw.
24825 (xftfont_done_face): Don't call check_xftdraw.
24826 (xftfont_draw): Get background color only when with_background is
24827 nonzero.
24828
24829 * xfont.c (xfont_encode_char): Fix calculation of char2b.
24830
248312008-02-01 Kenichi Handa <handa@m17n.org>
24832
24833 These changes are for the new font handling codes.
24834
24835 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
24836 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
24837 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
24838 (FONTSRC, FONTOBJ): New variables.
24839 (obj): Add $(FONTOBJ).
24840 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
24841 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
24842 @LIBOTF_LIBS@.
24843 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
24844 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
24845
24846 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
24847
24848 * character.h (Vscript_representative_chars): Extern it.
24849
24850 * character.c (Vscript_representative_chars): New variable.
24851 (syms_of_character): Declare it as a Lisp variable.
24852
24853 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
24854 enable_font_backend is nonzero, accept the composition method
24855 COMPOSITION_WITH_GLYPH_STRING.
24856
24857 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
24858 enumeration COMPOSITION_WITH_GLYPH_STRING.
24859
24860 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
24861 members clip_x, clip_y, clip_width, and clip_height.
24862 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
24863
24864 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
24865 --enable-font-backend. Call syms_of_font.
24866
24867 * fns.c (assoc_no_quit): New function.
24868
24869 * fontset.h (FONT_INFO_FROM_FACE): New macro.
24870 (face_for_font, new_fontset_from_font)
24871 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
24872
24873 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
24874 (fontset_font, fontset_ascii, face_for_char)
24875 (make_fontset_for_ascii_face, Ffont_info)
24876 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
24877 is nonzero, use font-backend mechanism.
24878 (find_font_encoding): Make it non-static.
24879 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
24880 New functions.
24881
24882 * frame.h (struct frame): New members resx and resy.
24883 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
24884 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
24885
24886 * frame.c [USE_FONT_BACKEND]: Include "font.h".
24887 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
24888
24889 * lisp.h (assoc_no_quit): Extern it.
24890
24891 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
24892 Through out the file, use FONT_INFO_FROM_FACE instead of
24893 FONT_INFO_FROM_ID, use get_per_char_metric instead of
24894 rif->per_char_metric.
24895 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
24896 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
24897 (get_glyph_face_and_encoding, fill_composite_glyph_string)
24898 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
24899 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
24900 nonzero, use font-backend mechanism.
24901 (get_per_char_metric): New function.
24902
24903 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
24904 (set_lface_from_font_name)
24905 (set_font_frame_param, free_realized_face)
24906 (prepare_face_for_display, clear_face_gcs)
24907 (Finternal_set_font_selection_order, realize_x_face)
24908 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
24909 font-backend mechanism.
24910 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
24911 (load_face_font) [USE_FONT_BACKEND]: Abort.
24912 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
24913 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
24914
24915 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
24916 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
24917 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
24918 nonzero, register all available font drivers.
24919 Call x_default_font_parameter for deciding a font.
24920 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
24921
24922 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
24923 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
24924 (x_set_glyph_string_clipping_exactly)
24925 (x_compute_glyph_string_overhangs)
24926 (x_draw_glyph_string_foreground)
24927 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
24928 (x_free_frame_resources) [USE_FONT_BACKEND]: If
24929 enable_font_backend is nonzero, use font-backend mechanism.
24930 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
24931
249322008-02-01 Kenichi Handa <handa@m17n.org>
24933
24934 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
24935 system_eol_type.
24936 (syms_of_coding): Initialize system_eol_type.
24937
24938 * process.c (Fset_process_coding_system): Inherit system's eol
24939 format if necessary.
24940
249412008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24942
24943 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
24944
249452008-02-01 Kenichi Handa <handa@m17n.org>
24946
24947 * coding.c (decode_eol): Pay attention to buffer relocation in
24948 del_range_2.
24949 (decode_coding): Call decode_eol before restoring undo_list.
24950
249512008-02-01 Kenichi Handa <handa@m17n.org>
24952
24953 * charset.c (Fdefine_charset_internal): Fix setting of
24954 emacs_mule_bytes.
24955
249562008-02-01 Kenichi Handa <handa@m17n.org>
24957
24958 * keyboard.c (read_char): Check if C is a character or not before
24959 looking up Vkeyboard_translate_table.
24960
249612008-02-01 Kenichi Handa <handa@m17n.org>
24962
24963 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
24964 Fix condition to terminate the loop.
24965
249662008-02-01 Kenichi Handa <handa@m17n.org>
24967
24968 * coding.c (produce_composition): Compare charbuf[i] instead of
24969 args[i] against 0.
24970 (Fterminal_coding_system): Use EQ to compare Lisp objects.
24971
249722008-02-01 Kenichi Handa <handa@m17n.org>
24973
24974 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
24975 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
24976 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
24977 detect_coding.
24978 (emacs_mule_char): Handle old style (Emacs 20) component character
24979 of a composition.
24980 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
24981 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
24982 composition rule.
24983 (decode_coding_emacs_mule): Handle invalid bytes correctly.
24984
249852008-02-01 Kenichi Handa <handa@m17n.org>
24986
24987 * coding.c (encode_coding_ccl): Allocate destination dynamically
24988 when necessary.
24989
249902008-02-01 Kenichi Handa <handa@m17n.org>
24991
24992 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
24993 the loop. When quitted, show a proper error message.
24994
249952008-02-01 Kenichi Handa <handa@m17n.org>
24996
24997 * xterm.c (x_set_glyph_string_clipping_exactly):
24998 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
24999
25000 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
25001 character sequence.
25002 (Fccl_execute_on_string): Use ASET, not XSET.
25003
250042008-02-01 Kenichi Handa <handa@m17n.org>
25005
25006 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
25007
250082008-02-01 Kenichi Handa <handa@m17n.org>
25009
25010 * coding.c (decode_coding): Fix the condition of terminating the
25011 decoding loop.
25012
250132008-02-01 Kenichi Handa <handa@m17n.org>
25014
25015 * data.c (Faset): On setting a character bigger than 255 in a
25016 unibyte string, signal an error instead of make the string multibyte.
25017
250182008-02-01 Kenichi Handa <handa@m17n.org>
25019
25020 * charset.c (map_charset_chars): Fix for ascii-compatible charset
25021 made by a mapping table.
25022
250232008-02-01 Kenichi Handa <handa@m17n.org>
25024
25025 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
25026 not.
25027 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
25028 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
25029
25030 * xterm.c (x_draw_composite_glyph_string_foreground):
25031 Check s->face is NULL or not.
25032
250332008-02-01 Kenichi Handa <handa@m17n.org>
25034
25035 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
25036 (x_draw_glyph_string): Fix drawing of right_overhang and
25037 left_overhang around/on cursor.
25038
25039 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
25040
250412008-02-01 Kenichi Handa <handa@m17n.org>
25042
25043 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
25044
250452008-02-01 Kenichi Handa <handa@m17n.org>
25046
25047 * coding.c (Fdefine_coding_system_internal)
25048 (Fdefine_coding_system_alias): Avoid a duplicated element in
25049 Vcoding_system_alist.
25050
250512008-02-01 Kenichi Handa <handa@m17n.org>
25052
25053 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
25054
25055 * coding.c (Qcoding_system_define_form): New variable.
25056 (syms_of_coding): Intern and staticpro it.
25057 (Fcoding_system_p): Check Qcoding_system_define_form.
25058 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
25059
25060 * coding.h (CODING_SYSTEM_P): If ID is not available, call
25061 Fcoding_system_p.
25062 (CHECK_CODING_SYSTEM): If ID is not available, call
25063 Fcheck_coding_system.
25064 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
25065 Try also Fcheck_coding_system.
25066
250672008-02-01 Kenichi Handa <handa@m17n.org>
25068
25069 * coding.c (code_conversion_restore): GCPRO arg.
25070
250712008-02-01 Kenichi Handa <handa@m17n.org>
25072
25073 * character.c (lisp_string_width): Check multibyteness of STRING.
25074
250752008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25076
25077 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
25078 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
25079 (decode_mac_font_name): Use decode_coding_c_string instead of
25080 decode_coding.
25081 (x_load_font): Initialize fontp->fontset to -1.
25082 Set fontp->encoding_type.
25083
250842008-02-01 Kenichi Handa <handa@m17n.org>
25085
25086 * search.c (search_buffer): Give up BM search on case-fold-search
25087 if one of a target character has a case-equivalence of different
25088 byte length even if that target character is an ASCII.
25089 (simple_search): Fix calculation of byte length of matched text.
25090 (boyer_moore): Fix handling of case-equivalent multibyte characters.
25091
250922008-02-01 Kenichi Handa <handa@m17n.org>
25093
25094 * coding.c (decode_coding): Fix handling of invalid bytes.
25095
250962008-02-01 Kenichi Handa <handa@m17n.org>
25097
25098 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
25099 Unicode characters.
25100
251012008-02-01 Kenichi Handa <handa@m17n.org>
25102
25103 * coding.c (encode_coding_object): If a pre-write-conversion
25104 function makes a new buffer, kill it.
25105
251062008-02-01 Kenichi Handa <handa@m17n.org>
25107
25108 * coding.c (QCascii_compatible_p): New variable.
25109 (syms_of_coding): Initialize it.
25110 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
25111 calling string_char.
25112 (record_conversion_result): Add `default:' case.
25113 (coding_charset_list): Delete unused variable `coding_type'.
25114 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
25115 property in the plist of the coding system.
25116 (Fcoding_system_put): Check QCascii_compatible_p.
25117
251182008-02-01 Miles Bader <miles@gnu.org>
25119
25120 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
25121 removed calculation of frame `f', as it's now used.
25122
251232008-02-01 Kenichi Handa <handa@m17n.org>
25124
25125 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
25126 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
25127 (UNIDATA): New variable.
25128 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
25129 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
25130 Run $(RUN_TEMACS) unconditionally.
25131
251322008-02-01 Kenichi Handa <handa@m17n.org>
25133
25134 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
25135 (admindir): New variable.
25136 ($(lispsource)international/charprop.el): New target.
25137
251382008-02-01 Miles Bader <miles@gnu.org>
25139
25140 * character.c (chars-in-region): Remove obsolete function.
25141 (syms_of_character): Remove its initialization.
25142
251432008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
25144
25145 * w32select.c (validate_coding_system)
25146 (setup_windows_coding_system): New functions.
25147 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
25148 Use setup_windows_coding_system.
25149 (setup_config, Fw32_get_clipboard_data):
25150 Use validate_coding_system.
25151 (Fx_selection_exists): Move call to setup_config to a place
25152 where signals are allowed.
25153
25154 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
25155 (Fcheck_coding_system): Add declarations.
25156
251572008-02-01 Kenichi Handa <handa@m17n.org>
25158
25159 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
25160
251612008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25162
25163 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
25164 string as the second argument for x_new_fontset.
25165
251662008-02-01 Kenichi Handa <handa@m17n.org>
25167
25168 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
25169 (encode_coding_object): Use safe_call instead of call2.
25170
251712008-02-01 Kenichi Handa <handa@m17n.org>
25172
25173 * fontset.c (Fset_fontset_font): Check family element of a given vector.
25174
25175 * Makefile.in (lisp): Include charprop.el.
25176
251772008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25178
25179 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
25180 Not sure if it's unnecessary.
25181
251822008-02-01 Steven Tamm <steventamm@mac.com>
25183
25184 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
25185 some possibly unnecessary fontset checking code that crashed
25186 when creating a new frame.
25187
251882008-02-01 Kenichi Handa <handa@m17n.org>
25189
25190 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
25191 lookup_face.
25192
25193 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
25194
25195 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
25196
251972008-02-01 Kenichi Handa <handa@m17n.org>
25198
25199 * coding.c: Cancel the change done in HEAD on 2008-02-01.
25200 (coding_charset_list): New function.
25201
25202 * coding.h (coding_charset_list): Extern it.
25203
252042008-02-01 Kenichi Handa <handa@m17n.org>
25205
25206 * fontset.c (Fset_fontset_font): Call find_font_encoding with
25207 concatenation of family and registry.
25208
252092008-02-01 Kenichi Handa <handa@m17n.org>
25210
25211 * character.h (BYTE8_STRING): Fix typo.
25212
25213 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
25214 string to multibyte (sync to HEAD).
25215
25216 * casefiddle.c (casify_region): Handle changes in byte-length
25217 using replace_range_2 (sync to HEAD).
25218
252192008-02-01 Andreas Schwab <schwab@suse.de>
25220
25221 * chartab.c (map_char_table): GCPRO table and arg.
25222
252232008-02-01 Kenichi Handa <handa@m17n.org>
25224
25225 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
25226 already at limit.
25227
252282008-02-01 Kenichi Handa <handa@m17n.org>
25229
25230 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
25231 instead of fast_c_string_match_ignore_case.
25232 (find_font_encoding): Change argument to Lisp_Object.
25233 Use fast_string_match_ignore_case instead of
25234 fast_c_string_match_ignore_case. Change caller.
25235
252362008-02-01 Kenichi Handa <handa@m17n.org>
25237
25238 * xdisp.c (get_next_display_element): In unibyte case, decide to
25239 display in octal form by checking a character by
25240 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
25241
25242 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
25243
25244 * character.c (unibyte_has_multibyte_table): New variable.
25245
25246 * character.h (unibyte_has_multibyte_table): Extern it.
25247 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
25248
252492008-02-01 Kenichi Handa <handa@m17n.org>
25250
25251 * coding.c (encode_coding_iso_2022): Fix handling of charset
25252 annotation.
25253
252542008-02-01 Kenichi Handa <handa@m17n.org>
25255
25256 * coding.c (setup_coding_system): If coding_system is nil, use
25257 Qundecided.
25258 (Fterminal_coding_system): Return nil if terminal coding system is
25259 `undecided'.
25260 (syms_of_coding): Define coding-system `undecided' here.
25261 Setup terminal_coding as `undecided'.
25262
252632008-02-01 Kenichi Handa <handa@m17n.org>
25264
25265 * xdisp.c (message_dolog, set_message_1):
25266 Call unibyte_char_to_multibyte with arg type int.
25267
25268 * lread.c (read1): Fix reading of a char-table.
25269
25270 * print.c (print_object): Include sub char-table in circularities
25271 detection.
25272
252732008-02-01 Kenichi Handa <handa@m17n.org>
25274
25275 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
25276 Append the found sequences in car of ARGS instead of prepending.
25277
252782008-02-01 Kenichi Handa <handa@m17n.org>
25279
25280 * fileio.c (report_file_error): Make a unibyte string from
25281 strerror (errorno).
25282 (Fsubstitute_in_file_name): Fix the arg to
25283 unibyte_char_to_multibyte. It is evaluated twice.
25284
252852008-02-01 Kenichi Handa <handa@m17n.org>
25286
25287 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
25288
252892008-02-01 Kenichi Handa <handa@m17n.org>
25290
25291 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
25292 BOM is not found.
25293 (detect_coding, detect_coding_system): Optimization for ISO-2022
25294 when no 8-bit data is found.
25295
252962008-02-01 Jason Rumney <jasonr@gnu.org>
25297
25298 * w32fns.c (x_to_w32_font): Update to use new coding struct.
25299
253002008-02-01 Kenichi Handa <handa@m17n.org>
25301
25302 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
25303 CHARS.
25304
253052008-02-01 Steven Tamm <steventamm@mac.com>
25306
25307 * macterm.c (mac_encode_char): Add charset argument and update
25308 to use encoding_type.
25309 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
25310 switch to pure fontset.
25311 (decode_mac_font_name): Temporarily remove decoding.
25312 (x_font_name_to_mac_font_name): Temporarily remove encoding.
25313 (x_load_font): Temporarily remove encoding.
25314
253152008-02-01 Kenichi Handa <handa@m17n.org>
25316
25317 * xfaces.c (Fface_font): If frame is not on a window system,
25318 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
25319 refer to face->font.
25320 (split_font_name_into_vector, build_font_name_from_vector)
25321 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
25322 when HAVE_WINDOW_SYSTEM is defined.
25323
253242008-02-01 Kenichi Handa <handa@m17n.org>
25325
25326 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
25327 (x_produce_glyphs): Fix setting of members of cmp in case
25328 cmp->glyph_len is zero.
25329
25330 * fontset.c (Fset_fontset_font): Fix docstring.
25331 (Ffontset_info): Make it backward compatible. New arg ALL.
25332
253332008-02-01 Kim F. Storm <storm@cua.dk>
25334
25335 * process.c (read_process_output): Grow decoding_buf when needed;
25336 this could cause a crash in allocate_string and compact_small_strings.
25337
253382008-02-01 Kenichi Handa <handa@m17n.org>
25339
25340 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
25341
253422008-02-01 Kenichi Handa <handa@m17n.org>
25343
25344 * coding.c (setup_coding_system): Set coding->common_flags
25345 correctly for raw-text.
25346 (consume_chars): On encoding unibyte text by raw-text, don't check
25347 multibyte form.
25348 (encode_coding): On encoding by raw-text, never use translation tables.
25349
25350 * fileio.c (e_write): Short cut for the case of no encoding.
25351
253522008-02-01 Kenichi Handa <handa@m17n.org>
25353
25354 * coding.c (detect_coding, detect_coding_system): Delete unused
25355 variables.
25356
253572008-02-01 Kenichi Handa <handa@m17n.org>
25358
25359 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
25360 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
25361
253622008-02-01 Kenichi Handa <handa@m17n.org>
25363
25364 * coding.c (Ffind_coding_systems_region_internal):
25365 Include raw-text and no-conversion in the result.
25366
253672008-02-01 Kenichi Handa <handa@m17n.org>
25368
25369 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
25370 (load_font_get_repertory): Delete unnecessary check of ENCODING of
25371 FONT_DEF.
25372 (font_def_arg, add_arg, from_arg, to_arg): New args.
25373 (set_fontset_font): Change argument.
25374 (Fset_fontset_font): Fix for the case that TARGET is a script
25375 name and charset name.
25376 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
25377
253782008-02-01 Kenichi Handa <handa@m17n.org>
25379
25380 * fontset.c (fontset_font): Rename from fontset_face. Change return
25381 value.
25382 (face_suitable_for_char_p, face_for_char): Adjust for the change
25383 of fontset_font.
25384 (make_fontset_for_ascii_face): Fix setting of the fontset element
25385 for ASCII.
25386 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
25387 to get a font name.
25388 (Ffontset_info): Adjust for the change of fontset_font.
25389
25390 * coding.c (emacs_mule_char): Check invalid code more rigidly.
25391
25392 * character.h (LEADING_CODE_LATIN_1_MIN)
25393 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
25394
253952008-02-01 Kenichi Handa <handa@m17n.org>
25396
25397 * editfns.c (check_translation): New function.
25398 (Ftranslate_region_internal): Handle M:N mapping.
25399
254002008-02-01 Kenichi Handa <handa@m17n.org>
25401
25402 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
25403
254042008-02-01 Kenichi Handa <handa@m17n.org>
25405
25406 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
25407 goto invalid_code.
25408 (decode_coding_iso_2022): Fix handling of invalid designation.
25409
25410 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
25411 after calling code_conversion_save.
25412
254132008-02-01 Kenichi Handa <handa@m17n.org>
25414
25415 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
25416
25417 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
25418
25419 * fontset.c: Include "intervals.h".
25420 (fontset_face): Fix comparing of Lisp_Objects.
25421 (free_face_fontset, new_fontset_from_font_name):
25422 Fix Lisp_Object/int mixup.
25423
25424 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
25425
25426 * coding.c: Add many prototypes for static functions.
25427 (get_translation_table): Allow max_lookup to be NULL.
25428 (decode_coding, Ffind_coding_systems_region_internal)
25429 (Funencodable_char_position, Fcheck_coding_systems_region):
25430 Call get_translation_table with max_lookup NULL.
25431
254322008-02-01 Kenichi Handa <handa@m17n.org>
25433
25434 * coding.c (get_translation_table): Declare it as Lisp_Object.
25435 (LOOKUP_TRANSLATION_TABLE): New macro.
25436 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
25437 instead of CHAR_TABLE_REF.
25438
254392008-02-01 Kenichi Handa <handa@m17n.org>
25440
25441 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
25442 annotation data format.
25443 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
25444 Change arguments FROM and TO to single argument NCHARS. Change caller.
25445 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
25446 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
25447 (decode_coding_ccl, decode_coding_charset): Pay attention to
25448 coding->charbuf_used.
25449 (get_translation): New function.
25450 (produce_chars): New arguments translation_table and last_block.
25451 Translate characters here. Return number of carryover chars.
25452 Change caller.
25453 (produce_composition): New argument pos. Change caller.
25454 Adjust for the change of annotation data format.
25455 (produce_charset, produce_annotation): Likewise.
25456 (decode_coding, encode_coding): Don't call translate_chars.
25457 (consume_chars): New arg translation_table. Change caller.
25458 (translate_chars): Delete.
25459 (syms_of_coding): Make translation-table's number of extra slots 2.
25460
254612008-02-01 Kenichi Handa <handa@m17n.org>
25462
25463 * search.c (simple_search): Fix setting this_pos_byte in backward
25464 search.
25465
25466 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
25467 byte sequence.
25468 (detect_coding_ccl): Fix setting of the variable valids.
25469
254702008-02-01 Kenichi Handa <handa@m17n.org>
25471
25472 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
25473
25474 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
25475
25476 * editfns.c (Ftranslate_region_internal): Rename from
25477 Ftranslate_region. Accept a char-table in TABLE.
25478 (syms_of_editfns): Defsubr Stranslate_region_internal.
25479
25480 * xfaces.c (set_lface_from_font_name): If a font is specified for
25481 a frame, generate a fontset from the font.
25482 (build_scalable_font_name): If the scalable font is requested for
25483 a specific size, don't change that size.
25484 (try_font_list): Try a scalable font also in the case that a
25485 pattern string is specified.
25486
254872008-02-01 Kenichi Handa <handa@m17n.org>
25488
25489 * xfaces.c (Fface_font): New optional arg CHARACTER.
25490
254912008-02-01 Kenichi Handa <handa@m17n.org>
25492
25493 * charset.h (CHARSET_OFFSET): New macro.
25494
254952008-02-01 Kenichi Handa <handa@m17n.org>
25496
25497 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
25498
25499 * fontset.c (fontset_face): Handle the case that repertory is a
25500 char-table.
25501 (find_font_encoding): Return nil for unknown encoding.
25502 (Fset_fontset_font): Ignore a font of unknown encoding.
25503
255042008-02-01 Kenichi Handa <handa@m17n.org>
25505
25506 * keymap.c (describe_vector): Handle default value of a char table.
25507
25508 * fontset.c (fontset_face): Handle fallback fonts correctly.
25509 (Ffontset_info): Return infomation about fallback fonts.
25510
255112008-02-01 Kenichi Handa <handa@m17n.org>
25512
25513 * fontset.c (FONTSET_DEFAULT): New macro.
25514 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
25515 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
25516 the case that it is nil.
25517 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
25518 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
25519
25520 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
25521 subset or superset.
25522
255232008-02-01 Kenichi Handa <handa@m17n.org>
25524
25525 * emacs.c (main): Call init_charset after syms_of_XXX.
25526
25527 * charset.c (Vcharset_map_directory): Delete.
25528 (Vcharset_map_path): New variable.
25529 (load_charset_map_from_file): Use Vcharset_map_path instead.
25530 (init_charset): Initialize Vcharset_map_path.
25531 (syms_of_charset): Delete declaration of "charset-map-directory",
25532 add declaration of "charset-map-path".
25533
255342008-02-01 Kenichi Handa <handa@m17n.org>
25535
25536 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
25537 ASCII only string.
25538
25539 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
25540
25541 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
25542 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
25543
255442008-02-01 Kenichi Handa <handa@m17n.org>
25545
25546 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
25547
25548 * coding.c (QCmnemonic, QCdefalut_char)
25549 (QCdecode_translation_table, QCencode_translation_table)
25550 (QCpost_read_conversion, QCpre_write_conversion): New variables.
25551 (get_translation_table): Return a list of translation tables if
25552 necessary.
25553 (decode_coding): Call get_translation_table with ENCODEP 0.
25554 (char_encodable_p): If translation_table is non-nil, always call
25555 translate_char.
25556 (Fdefine_coding_system_internal): Accept list of translation
25557 tables as :encode-translation-table and :decode-translation-table.
25558 (Fcoding_system_put): New function.
25559 (syms_of_coding): Declare new symbols.
25560 Defsubr Scoding_system_put.
25561 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
25562 typically JISX0212.
25563
25564 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
25565 when the charset is superset type.
25566
25567 * character.c (translate_char): Accept list of translation tables.
25568
255692008-02-01 Kenichi Handa <handa@m17n.org>
25570
25571 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
25572 (CODING_ATTR_TRANS_TBL): New macro.
25573
25574 * coding.c (get_translation_table): New function.
25575 (translate_chars): Fix the bug of skipping annotation data.
25576 (decode_coding, encode_coding): Utilize get_translation_table.
25577 (char_encodable_p, Funencodable_char_position): Translate char if
25578 necessary.
25579 (Ffind_coding_systems_region_internal)
25580 (Fcheck_coding_systems_region): Setup translation table for encode
25581 in a coding system attribute vector in advance.
25582 (Fdefine_coding_system_internal): Allow a symbol as translation
25583 table. For shift-jis type coding system, allow 4th charset.
25584
255852008-02-01 Kenichi Handa <handa@m17n.org>
25586
25587 * coding.c (decode_coding_sjis): Check the first byte rigidly.
25588
25589 * xdisp.c (get_next_display_element): Pass -1 as POS to
25590 FACE_FOR_CHAR if displaying a C-string.
25591
255922008-02-01 Kenichi Handa <handa@m17n.org>
25593
25594 * composite.c (get_composition_id): Handle xoff and yoff in a
25595 composition rule.
25596
25597 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
25598 (struct composition): New member lbearing and rbearing.
25599
25600 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
25601 (x_get_glyph_overhangs): Handle a composition glyph.
25602 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
25603
25604 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
25605 composition glyph.
25606
256072008-02-01 Kenichi Handa <handa@m17n.org>
25608
25609 * print.c: Include charset.h.
25610 (Vprint_charset_text_property): New variable.
25611 (Qdefault): Extern it.
25612 (PRINT_STRING_NON_CHARSET_FOUND)
25613 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
25614 (print_check_string_result): New variable.
25615 (print_check_string_charset_prop): New function.
25616 (print_prune_charset_plist): New variable.
25617 (print_prune_string_charset): New function.
25618 (print_object): Call print_prune_string_charset if
25619 Vprint_charset_text_property is not t.
25620 (print_interval): Print nothing if interval->plist is nil.
25621 (syms_of_print): Declare Vprint_charset_text_property as a lisp
25622 variable. Init and staticpro print_prune_charset_plist.
25623
256242008-02-01 Kenichi Handa <handa@m17n.org>
25625
25626 * fontset.c (new_fontset_from_font_name): Use the specified font
25627 for all characters in the new fontset.
25628
25629 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
25630 OBJECT args.
25631
25632 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
25633 OBJECT args for composition too.
25634
25635 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
25636 OBJECT args.
25637
256382008-02-01 Kenichi Handa <handa@m17n.org>
25639
25640 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
25641
25642 * fontset.c (reorder_font_vector): Adjust for the change of
25643 FONT_DEF format.
25644 (fontset_face): New arg id. Change caller.
25645 (face_for_char): New args pos and object.
25646 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
25647 (fs_query_fontset): Check NAME by Fassoc too.
25648 (Fset_fontset_font): Allow non-XLFD font name.
25649 (Ffontset_info): Adjust for the change of FONT_DEF format.
25650
25651 * fontset.h (face_for_char): Adjust prototype.
25652
25653 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
25654 (append_space, extend_face_to_end_of_line)
25655 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
25656 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
25657
25658 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
25659 POS and OBJECT args.
25660
25661 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
25662 POS and OBJECT args.
25663
256642008-02-01 Jason Rumney <jasonr@gnu.org>
25665
25666 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
25667 of GlobalAlloc'ed memory.
25668
256692008-02-01 Kenichi Handa <handa@m17n.org>
25670
25671 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
25672
25673 * charset.h (charset_table_used): Delete extern.
25674
25675 * charset.c (charset_table_used): Make it static.
25676 (map_charset_chars): Fix args to c_function with.
25677
25678 * chartab.c (map_sub_char_table_for_charset): Fix args to
25679 c_function with.
25680
25681 * coding.h (enum coding_result_code):
25682 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
25683
25684 * coding.c (Qinsufficient_source, Qinconsistent_eol)
25685 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
25686 (Vlast_code_conversion_error): New variables.
25687 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
25688 (ONE_MORE_BYTE): Record error if any instead of signaling an
25689 error. If non-ASCII multibyte char is found, return the negative
25690 value of the code. All callers changed to check it.
25691 (ONE_MORE_BYTE_NO_CHECK): Likewise.
25692 (record_conversion_result): New function. Change all codes setting
25693 coding->result to call this function.
25694 (detect_coding_utf_8, decode_coding_utf_8)
25695 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
25696 Don't use the local variable incomplete.
25697 (emacs_mule_char): Change the second arg to `const'.
25698 (decode_coding): Fix of flushing out unprocessed data.
25699 (make_conversion_work_buffer): Fix making of a work buffer.
25700 (decode_coding_object): Return coding->dst_object.
25701
25702 * fontset.c (set_fontset_font): Fix args.
25703
25704 * lisp.h (CHARACTERBITS): Define as 22.
25705
25706 * process.c (send_process): Be sure to set coding->src_multibyte.
25707
25708 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
25709
257102008-02-01 Kenichi Handa <handa@m17n.org>
25711
25712 * xdisp.c (handle_auto_composed_prop): Give limit to
25713 Fnext_single_char_property_change.
25714
257152008-02-01 Kenichi Handa <handa@m17n.org>
25716
25717 * composite.c (syms_of_composite): Don't make the composition hash
25718 table weak.
25719
25720 * fontset.c (Fset_fontset_font): Fix docstring.
25721
25722 * lisp.h (detect_coding_system): Adjust prototype.
25723
25724 * fileio.c (kill_workbuf_unwind): Delete this function.
25725 (Finsert_file_contents): Adjust the call of detect_coding_system.
25726 Get conversion_buffer by code_conversion_save. Use the macro
25727 CODING_MAY_REQUIRE_DECODING. After decoding, update
25728 coding_system.
25729
25730 * coding.h (make_conversion_work_buffer): Delete extern.
25731 (code_conversion_save): Extern it.
25732
25733 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
25734 (CODING_GET_INFO): Delete argument eol_type. Change callers.
25735 (decode_coding_utf_8): Don't do eol converion.
25736 (detect_coding_utf_16): Check coding->src_chars, not
25737 coding->src_bytes. Add heuristics for those that have no signature.
25738 (decode_coding_emacs_mule, decode_coding_iso_2022)
25739 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
25740 Don't do eol converion.
25741 (adjust_coding_eol_type): Return a new coding system.
25742 (detect_coding): Don't detect eol. Fix for utf-16 detection.
25743 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
25744 each change.
25745 (decode_coding): Pay attention to undo_list. Do eol conversion for
25746 all types of coding-systems (if necessary).
25747 (Vcode_conversion_work_buf_list): Delete it.
25748 (Vcode_conversion_reused_workbuf): Rename from
25749 Vcode_conversion_reused_work_buf.
25750 (Vcode_conversion_workbuf_name): New variable.
25751 (reused_workbuf_in_use): New variable.
25752 (make_conversion_work_buffer): Delete the arg DEPTH.
25753 (code_conversion_restore): Change argument to cons.
25754 (code_conversion_save): Delete the argument BUFFER. Change callers.
25755 (detect_coding_system): New argument src_chars. Change callers.
25756 Fix for utf-16 detection.
25757 (init_coding_once): Don't use ISO_carriage_return.
25758 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
25759 reused_workbuf_in_use.
25760
257612008-02-01 Kenichi Handa <handa@m17n.org>
25762
25763 * keymap.c (store_in_keymap): Pay attention to the case that idx
25764 is a cons specifying a character range.
25765
257662008-02-01 Kenichi Handa <handa@m17n.org>
25767
25768 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
25769 HANDLED_RECOMPUTE_PROPS.
25770
25771 * coding.c (Fdefine_coding_system_internal): Fix checking of
25772 ascii compatibility.
25773
257742008-02-01 Kenichi Handa <handa@m17n.org>
25775
25776 * charset.c (find_charsets_in_text): Delete unused locale variable.
25777 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
25778
25779 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
25780 Resync charset_list to Vemacs_mule_charset_list.
25781
25782 * keymap.c (store_in_keymap): Pay attention to the case that idx
25783 is a cons specifying a character range.
25784
257852008-02-01 Kenichi Handa <handa@m17n.org>
25786
25787 * composite.c (update_compositions): Bind inhibit-read-only, etc
25788 to t before calling remove-list-of-text-properties.
25789
25790 * print.c (print_object): Always print ASCII chars as is.
25791
257922008-02-01 Kenichi Handa <handa@m17n.org>
25793
25794 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
25795
25796 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
25797 is a char table.
25798
257992008-02-01 Kenichi Handa <handa@m17n.org>
25800
25801 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
25802
258032008-02-01 Kenichi Handa <handa@m17n.org>
25804
25805 * xfaces.c (set_lface_from_font_name): Fix for the case that
25806 FONTNAME is not fontset name.
25807
258082008-02-01 Kenichi Handa <handa@m17n.org>
25809
25810 * fns.c (base64_encode_1): Fix previous change.
25811
258122008-02-01 Kenichi Handa <handa@m17n.org>
25813
25814 * fontset.c (set_fontset_font): New function.
25815 (Fset_fontset_font): If a font is specified for a charset, use
25816 map_charset_chars to store the font spec in a fontset.
25817
258182008-02-01 Kenichi Handa <handa@m17n.org>
25819
25820 * fontset.c (fontset_face): Create a fallback fontset on demand.
25821 (make_fontset): Don't create a fallback fontset here.
25822 (free_face_fontset): Free a fallback fontset (if any) too.
25823 (n_auto_fontsets): Delete this variable.
25824 (auto_fontset_alist): New variable.
25825 (new_fontset_from_font_name): Check auto_fontset_alist.
25826 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
25827 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
25828 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
25829 Defsubr Sfontset_list_all.
25830
258312008-02-01 Kenichi Handa <handa@m17n.org>
25832
25833 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
25834
258352008-02-01 Kenichi Handa <handa@m17n.org>
25836
25837 * fontset.c (Fnew_fontset): Check NAME more rigidly.
25838
258392008-02-01 Kenichi Handa <handa@m17n.org>
25840
25841 * editfns.c (Fgoto_char): Fix docstring.
25842
258432008-02-01 Kenichi Handa <handa@m17n.org>
25844
25845 * insdel.c (insert_from_gap): Adjust intervals correctly.
25846
258472008-02-01 Jason Rumney <jasonr@gnu.org>
25848
25849 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
25850 (pfnGetFontUnicodeRanges): New dynamically loaded function.
25851 (w32_initialize): Try to load it.
25852 (x_get_font_repertory): Use it if available.
25853 (w32_encode_char): Add shortcut for unicode output.
25854
25855 * w32fns.c (w32_load_system_font): Default charset to -1.
25856 (x_to_w32_charset): Match all fonts for unicode.
25857 (w32_to_x_charset): New parameter matching. Don't return partial
25858 or wildcard charsets.
25859 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
25860 (w32_codepage_for_font): Return CP_UNICODE for unicode.
25861 (w32_to_x_font): Match charset to real charset.
25862 (enum_font_cb2): Always list unicode versions.
25863
25864 * makefile.w32-in (temacs): Increase EMHEAP.
25865
258662008-02-01 Jason Rumney <jasonr@gnu.org>
25867
25868 * w32term.c (w32_encode_char): New charset parameter.
25869 font_info.encoding becomes encoding_type.
25870 (x_get_font_repertory): New function. Warning: stub only!
25871 (x_new_font): Return quickly if font already set.
25872 (x_new_fontset): fontsetname parameter is Lisp_Object.
25873 Use new fs_query_fontset. Try new_fontset_from_font_name.
25874 Use fontset_name for return value.
25875
25876 * w32term.h: Declare x_get_font_repertory.
25877
25878 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
25879 place of find_charset_in_text. Use encode_coding_object in place
25880 of encode_coding.
25881 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
25882 decode_coding.
25883
25884 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
25885 of x_new_fontset.
25886 (w32_load_system_font): Initialize charset as unicode.
25887 font_info.encoding becomes encoding_type.
25888 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
25889 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
25890 (syms_of_w32fns): Set get_font_repertory_func.
25891
25892 * w32console.c: Include character.h. Use terminal_encode_buffer
25893 from term.c.
25894 (write_glyphs): Use new version of encode_terminal_code.
25895 Use encode_coding_object in place of encode_coding.
25896
25897 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
25898 encoding becomes encoding_type.
25899
25900 * term.c (terminal_encode_buffer): Make externally visible.
25901
25902 * makefile.w32-in: Add character.h dependancies.
25903 (character.o, chartab.o): New targets.
25904
259052008-02-01 Kenichi Handa <handa@m17n.org>
25906
25907 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
25908 CODING_ID_EOL_TYPE.
25909
259102008-02-01 Andreas Schwab <schwab@suse.de>
25911
25912 * coding.c (produce_chars): Revert last change.
25913
259142008-02-01 Kenichi Handa <handa@m17n.org>
25915
25916 * charset.h (charset_unicode): Extern it.
25917
25918 * charset.c (string_xstring_p): Check by (C >= 0x100).
25919 (find_charsets_in_text): Change format of the arc CHARSETS.
25920 New arg MULTIBYTE.
25921 (Ffind_charset_region, Ffind_charset_string): Adjust for the
25922 change of find_charsets_in_text.
25923 (Fsplit_char): Fix doc. Never return unknown.
25924
25925 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
25926
25927 * coding.c (Fdefine_coding_system_alias):
25928 Update Vcoding_system_list.
25929
25930 * fontset.c (load_font_get_repertory): Pay attention to the case
25931 that ENCODING of a font is specified by a char-table.
25932
25933 * xterm.c (x_get_font_repertory): Handle the case that the
25934 encoding of font is other than Unicode.
25935
259362008-02-01 Kenichi Handa <handa@m17n.org>
25937
25938 * term.c (encode_terminal_code): Don't handle glyph-table.
25939 Check if a character is encodable by the terminal coding system.
25940 If not, produces proper number of `?'s. Update
25941 terminal_encode_buffer and terminal_encode_buf_size if necessary.
25942 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
25943
259442008-02-01 Kenichi Handa <handa@m17n.org>
25945
25946 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
25947 New variables.
25948 (encode_terminal_code): Change argument. Encode multiple
25949 characters at once. Store the result of encoding in
25950 terminal_encode_buffer.
25951 (write_glyphs, insert_glyphs): Adjust for the change of
25952 encode_terminal_code.
25953 (term_init): Initialize terminal_encode_buffer and
25954 terminal_encode_buf_size.
25955
25956 * coding.c (consume_chars): If coding->src_object is nil, don't
25957 check annotation.
25958
259592008-02-01 Kenichi Handa <handa@m17n.org>
25960
25961 * character.c (char_string): Use ASCII_CHAR_P instead of
25962 SINGLE_BYTE_CHAR_P.
25963
259642008-02-01 Kenichi Handa <handa@m17n.org>
25965
25966 * xdisp.c (handle_auto_composed_prop): Check if the last
25967 characters of auto-composed region is newly composed with the
25968 following characters.
25969 (handle_composition_prop): Fix checking of point being inside
25970 composition.
25971
259722008-02-01 Kenichi Handa <handa@m17n.org>
25973
25974 * fns.c (concat): Don't change multibyteness of the result by
25975 concatenating an 8-bit character.
25976
25977 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
25978 multibyteness of the result when newelt is an 8-bit character.
25979
259802008-02-01 Dave Love <fx@gnu.org>
25981
25982 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
25983 EMACS_INT.
25984
25985 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
25986
25987 * xfaces.c (face_numeric_value): Declare dim size_t.
25988 (Finternal_lisp_face_equal_p): Remove unused f.
25989
25990 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
25991 (MATRIX_ROW): Remove unused vars.
25992 (draw_glyphs, x_insert_glyphs, fast_find_position)
25993 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
25994 byte/char counts.
25995
25996 * regex.c (regex_compile): Remove unused var.
25997
25998 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
25999
26000 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
26001 (Faccessible_keymaps, where_is_internal): Remove unused vars.
26002
26003 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
26004
26005 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
26006
26007 * fileio.c (Fwrite_region): Remove unused var.
26008
26009 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
26010 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
26011
26012 * composite.c (Fremove_list_of_text_properties): Declare.
26013
26014 * coding.c (inhibit_pre_post_conversion): Remove (unused).
26015 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
26016 (coding_inherit_eol_type): Remove unused attrs.
26017 (detect_coding): Cast arg of detect_eol.
26018
26019 * charset.c (syms_of_charset): Remove unused var p.
26020 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
26021 byte/char counts.
26022
26023 * casetab.c (set_case_table): Remove unused var.
26024
26025 * window.c (Fdisplay_buffer, Fframe_selected_window):
26026 Remove unused vars.
26027
260282008-02-01 Dave Love <fx@gnu.org>
26029
26030 * xterm.c (x_bitmap_mask): Declare.
26031
260322008-02-01 Dave Love <fx@gnu.org>
26033
26034 * xterm.c (x_term_init): Fix type error.
26035
26036 * lisp.h: Add Funibyte_char_to_multibyte.
26037
26038 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
26039 (Fset_coding_system_priority): Doc fix.
26040
26041 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
26042
26043 * indent.c (check_composition): Make start and end EMACS_INT.
26044
26045 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
26046
26047 * xdisp.c (handle_composition_prop, check_point_in_composition):
26048 Make buffer positions EMACS_INT.
26049
26050 * composite.c (find_composition, run_composition_function)
26051 (update_compositions, Ffind_composition_internal): Make buffer
26052 positions EMACS_INT.
26053
26054 * composite.h (find_composition, update_compositions):
26055 Make position args EMACS_INT.
26056
26057 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
26058
26059 * intervals.c (get_property_and_range):
26060 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
26061
26062 * unexalpha.c: Don't include varargs.h.
26063
260642008-02-01 Dave Love <fx@gnu.org>
26065
26066 * coding.h (ENCODE_UTF_8): New.
26067
26068 * Makefile.in (gtkutil.o): Depend on coding.h.
26069
26070 * coding.c (Fset_coding_system_priority): Doc fix.
26071
260722008-02-01 Kenichi Handa <handa@m17n.org>
26073
26074 * fileio.c (Finsert_file_contents): Call setup_coding_system in
26075 the case of auto saving.
26076
260772008-02-01 Andreas Schwab <schwab@suse.de>
26078
26079 * chartab.c (map_char_table, map_char_table_for_charset):
26080 Protect `range' from GC.
26081
260822008-02-01 Kenichi Handa <handa@m17n.org>
26083
26084 * coding.c (decode_coding_sjis): Check bytes more rigidly.
26085
260862008-02-01 Kenichi Handa <handa@m17n.org>
26087
26088 * fileio.c (choose_write_coding_system): Return a decided coding system.
26089 (Fwrite_region): Set Vlast_coding_system_used to the return value
26090 of choose_write_coding_system.
26091
260922008-02-01 Kenichi Handa <handa@m17n.org>
26093
26094 * charset.c (Fset_charset_priority): Pay attention to duplicated
26095 arguments.
26096
26097 * coding.c (QCcategory): New variable.
26098 (syms_of_coding): Defsym it. Set all elements of
26099 Vcoding_category_table and their symbol values.
26100 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
26101 coding-category-XXX, and coding-category-list.
26102 (Fdefine_coding_system_internal): Add category in the plist.
26103
261042008-02-01 Kenichi Handa <handa@m17n.org>
26105
26106 * callproc.c (Fcall_process): Handle carryover correctly.
26107
26108 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
26109 (raw_text_coding_system): Check NILP (coding_system).
26110 (coding_inherit_eol_type): Check NILP (coding_system) and
26111 NILP (parent).
26112 (consume_chars): Fix for the case of raw-text.
26113
26114 * process.c (read_process_output): Handle carryover correctly.
26115
261162008-02-01 Dave Love <fx@gnu.org>
26117
26118 * regex.c (re_search_2): Fix last change.
26119
261202008-02-01 Kenichi Handa <handa@m17n.org>
26121
26122 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
26123 target_multibyte. Even in a unibyte case, return a converted
26124 multibyte char.
26125 (GET_CHAR_AFTER): New macro.
26126 (PATFETCH): Translate via multibyte char.
26127 (HANDLE_UNIBYTE_RANGE): Delete this macro.
26128 (SETUP_MULTIBYTE_RANGE): New macro.
26129 (regex_compile): Setup compiled code so that its multibyteness
26130 matches that of a target. Fix the handling of "[X-YZ]" using
26131 SETUP_MULTIBYTE_RANGE.
26132 (analyse_first) <charset>: For filling fastmap for all multibyte
26133 characters, don't check by BASE_LEADING_CODE_P.
26134 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
26135 the same as RE_MULTIBYTE_P (bufp) now.
26136 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
26137 (TARGET_CHAR_AND_LENGTH): Delete this macro.
26138 (TRANSLATE_VIA_MULTIBYTE): New macro.
26139 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
26140 It is the same as RE_MULTIBYTE_P (bufp) now.
26141 <exactn>: Translate via multibyte.
26142 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
26143 Don't translate it.
26144 <charset, charset_not>: Fetch a character by
26145 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
26146 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
26147 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
26148 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
26149 by GET_CHAR_AFTER.
26150 (bcmp_translate): Likewise.
26151
26152 * search.c (compile_pattern): Check the member target_multibyte,
26153 not the member multibyte of buf.
26154
26155 * lread.c (read1): While reading a string, set force_singlebyte
26156 and force_multibyte correctly.
26157
26158 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
26159 up of unibyte_to_multibyte_table.
26160
261612008-02-01 Kenichi Handa <handa@m17n.org>
26162
26163 * coding.c (setup_coding_system): If coding has
26164 post-read-conversion or pre-write-conversion, set
26165 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
26166 respectively.
26167 (decode_coding_gap): Run post-read-conversion if any.
26168
26169 * fileio.c (Finsert_file_contents): Even if we read into a
26170 unibyte buffer, check if we must decode the result or not.
26171
261722008-02-01 Kenichi Handa <handa@m17n.org>
26173
26174 * coding.c (make_conversion_work_buffer): Change the work buffer
26175 name to the same one as that of Emacs 21.
26176
261772008-02-01 Kenichi Handa <handa@m17n.org>
26178
26179 * coding.h (make_conversion_work_buffer): Adjust prototype.
26180 (code_conversion_restore): Don't extern it.
26181
26182 * coding.c (detected_mask): Delete unused variable.
26183 (decode_coding_iso_2022): Pay attention to the byte sequence of
26184 CTEXT extended segment, and retain those bytes as is.
26185 (decode_coding_ccl): Delete unused variable `valids'.
26186 (setup_coding_system): Delete unused variable `category'.
26187 (consume_chars): Delete unused variable `category'. Make it work
26188 for non-multibyte case.
26189 (make_conversion_work_buffer): Change argument.
26190 (saved_coding): Delete unused variable.
26191 (code_conversion_restore): Don't check saved_coding->destination.
26192 (code_conversion_save): New function.
26193 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
26194 instead of record_unwind_protect.
26195 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
26196 (detect_coding_system): Delete unused variable `mask'.
26197 (Fdefine_coding_system_internal): Delete unused variable id.
26198
26199 * fileio.c (kill_workbuf_unwind): New function.
26200 (Finsert_file_contents): On replacing, call
26201 make_conversion_work_buffer with correct args, and call
26202 record_unwind_protect with the first arg kill_workbuf_unwind.
26203
26204 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
26205
262062008-02-01 Kenichi Handa <handa@m17n.org>
26207
26208 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
26209 (fontset_add): Fix for the case that TO is less than TO1.
26210 (Ffontset_info): Don't use fallback fontset on checking the
26211 default fontset.
26212 (dump_fontset): New function for debugging.
26213
26214 * coding.c (Fdefine_coding_system_internal): Fix for the case that
26215 coding_type is Qcharset.
26216
262172008-02-01 Kenichi Handa <handa@m17n.org>
26218
26219 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
26220 (map_char_table): Don't inherit the value from the parent on
26221 initializing VAL. Adjust for the above change.
26222
262232008-02-01 Kenichi Handa <handa@m17n.org>
26224
26225 * coding.c (Qsignature, Qendian): Delete these variables.
26226 (syms_of_coding): Don't initialize them.
26227 (CATEGORY_MASK_UTF_16_AUTO): New macro.
26228 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
26229 detect_info->found.
26230 (decode_coding_utf_16): Don't detect BOM here.
26231 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
26232 is NOT utf_16_without_bom.
26233 (setup_coding_system): For a coding system of type utf-16, check
26234 if the attribute :endian is Qbig or not (not nil or not), and set
26235 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
26236 (detect_coding): If coding type is utf-16 and BOM detection is
26237 required, detect it.
26238 (Fdefine_coding_system_internal): For a coding system of type
26239 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
26240
262412008-02-01 Kenichi Handa <handa@m17n.org>
26242
26243 * coding.c (coding_set_source): Fix for the case that the current
26244 buffer is different from coding->src_object.
26245 (decode_coding_object): Don't use the conversion work buffer if
26246 DST_OBJECT is a buffer.
26247
262482008-02-01 Dave Love <fx@gnu.org>
26249
26250 * lread.c (read_emacs_mule_char) [len==2]: Index
26251 emacs_mule_charset correctly.
26252
262532008-02-01 Dave Love <fx@gnu.org>
26254
26255 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
26256 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
26257 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
26258 treated specially.)
26259 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
26260 (detected_mask): Remove Big5 bits.
26261
262622008-02-01 Kenichi Handa <handa@m17n.org>
26263
26264 The following changes are to make the font rescaling facility
26265 compatible with Emacs 21.
26266
26267 * xfaces.c (Vface_font_rescale_alist): Rename from
26268 Vface_resizing_fonts.
26269 (struct font_name): Rename member resizing_ratio to rescale_ratio.
26270 (font_rescale_ratio): Rename from font_resizing_ratio.
26271 (split_font_name): Set font->rescale_ratio.
26272 (better_font_p): Pay attention to font->rescale_ratio.
26273 (build_scalable_font_name): Likewise. Change RESX, and RESY
26274 fields.
26275 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
26276
262772008-02-01 Kenichi Handa <handa@m17n.org>
26278
26279 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
26280 (Qutf_16_le): Remove these variables.
26281 (syms_of_coding): Don't DEFSYM them.
26282 (decode_coding_utf_16): Fix handling of BOM.
26283 (encode_coding_utf_16): Fix handling of BOM.
26284
262852008-02-01 Kenichi Handa <handa@m17n.org>
26286
26287 * fileio.c (Finsert_file_contents): On replacing, before decoding
26288 the file into the work buffer, set point of the work buffer to the end.
26289
262902008-02-01 Dave Love <fx@gnu.org>
26291
26292 * coding.c (Fcheck_coding_systems_region): Fix type errors.
26293
262942008-02-01 Dave Love <fx@gnu.org>
26295
26296 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26297 and fix C types.
26298
262992008-02-01 Kenichi Handa <handa@m17n.org>
26300
26301 * xdisp.c (SKIP_GLYPHS): New macro.
26302 (set_cursor_from_row): Pay attention to string display properties.
26303
26304 * category.c (copy_category_entry): Fix for the case that RANGE
26305 is an integer.
26306
26307 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
26308
26309 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
26310
263112008-02-01 Kenichi Handa <handa@m17n.org>
26312
26313 * charset.c (Fcharset_id_internal): New function.
26314 (syms_of_charset): Defsubr it.
26315
26316 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
26317 with the last arg charset_list acquired from coding.
26318 (Fdefine_coding_system_internal): For ccl-based coding system, fix
26319 the attribute coding_attr_ccl_valids.
26320
26321 * coding.h (enum define_coding_ccl_arg_index): Set the first
26322 member coding_arg_ccl_decoder to coding_arg_max.
26323
26324 * ccl.h (ccl_driver): Adjust prototype.
26325
26326 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
26327 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
26328 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
26329 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
26330 last arg Qnil.
26331
263322008-02-01 Kenichi Handa <handa@m17n.org>
26333
26334 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
26335 call encode_char.
26336
26337 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
26338
263392008-02-01 Dave Love <fx@gnu.org>
26340
26341 * composite.c (syms_of_composite): Make composition_hash_table weak.
26342
263432008-02-01 Kenichi Handa <handa@m17n.org>
26344
26345 * dispextern.h (check_face_attributes, generate_ascii_font_name)
26346 (font_name_registry): Don't extern them.
26347 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
26348
26349 * fontset.h (Qfontset): Don't extern it.
26350 (new_fontset_from_font_name): Extern it.
26351
26352 * fontset.c: Give 8 extra slots to fontset objects.
26353 (Qfontset_info): New variable.
26354 (syms_of_fontset): Defsym it.
26355 (FONTSET_FALLBACK): New macro.
26356 (fontset_face): Try also the default fontset.
26357 (make_fontset): Realize a fallback fontset from the default fontset.
26358 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
26359 using split_font_name_into_vector and build_font_name_from_vector.
26360 (Fset_fontset_font): Access the elements of font_spec by enum
26361 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
26362 name by using split_font_name_into_vector.
26363 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
26364 generate a proper font name from the fontset name.
26365 Update Vfontset_alias_alist.
26366 (n_auto_fontsets): New variable.
26367 (new_fontset_from_font_name): New function.
26368 (Ffont_info): Store the information about fonts generated from the
26369 default fontset in the first extra slot of the returned char-table.
26370
26371 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
26372 (font_name_registry): Delete function.
26373 (split_font_name_into_vector): New function.
26374 (build_font_name_from_vector): New function.
26375 (font_list): The argument REGISTRY is now a list of registry names.
26376 (choose_face_font): If we are choosing an ASCII font, and ATTRS
26377 specifies an explicit font name, return the name as is. Make a
26378 list of registy names.
26379
26380 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
26381 of x_new_fontset.
26382 (Fx_create_frame): Don't call x_new_fontset here. Just use
26383 x_list_fonts to check the existence of fonts.
26384
26385 * xterm.h (x_new_fontset): Adjust prototype.
26386
26387 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
26388 string. Use new_fontset_from_font_name to create a fontset from a
26389 font name.
26390
263912008-02-01 Kenichi Handa <handa@m17n.org>
26392
26393 * syntax.c (Vfind_word_boundary_function_table): New name for
26394 Vnext_word_boundary_function_table.
26395 (find-word-boundary-function-table): New name for
26396 next-word-boundary-function-table.
26397
263982008-02-01 Dave Love <fx@gnu.org>
26399
26400 * Makefile.in: Fix some dependencies.
26401
26402 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
26403 set it to nil before returning.
26404
26405 * composite.c (update_compositions): Fix type error.
26406
26407 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
26408
264092008-02-01 Kenichi Handa <handa@m17n.org>
26410
26411 * xterm.c (x_new_font): Optimize for the case that the font is
26412 already set for the frame.
26413
264142008-02-01 Kenichi Handa <handa@m17n.org>
26415
26416 * chartab.c (char_table_ascii): Check if the char table contents
26417 is sub-char-table or not.
26418 (char_table_set, char_table_set_range): Fix argument to
26419 char_table_ascii.
26420
26421 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
26422 (detect_coding_utf_8, detect_coding_utf_16)
26423 (detect_coding_emacs_mule, detect_coding_iso_2022)
26424 (detect_coding_sjis, detect_coding_big5)
26425 (detect_coding_ccl, detect_coding_charset): Change argument MASK
26426 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
26427 sequence is valid in this coding system. Change callers.
26428 (MAX_ANNOTATION_LENGTH): New macro.
26429 (ADD_ANNOTATION_DATA): New macro.
26430 (ADD_COMPOSITION_DATA): Change argument. Change callers.
26431 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
26432 (ADD_CHARSET_DATA): New macro.
26433 (emacs_mule_char): New argument ID. Change callers.
26434 (decode_coding_emacs_mule, decode_coding_iso_2022)
26435 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26436 Produce charset annotation data in coding->charbuf.
26437 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
26438 to charset annotation data in coding->charbuf.
26439 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
26440 coding->common_flags if the coding system is iso-2022 based and
26441 uses designation.
26442 (produce_composition): Adjust for the new annotation data format.
26443 (produce_charset): New function.
26444 (produce_annotation): Handle charset annotation.
26445 (handle_composition_annotation, handle_charset_annotation):
26446 New functions.
26447 (consume_chars): Handle charset annotation. Utilize the above two
26448 functions.
26449 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
26450 buffer, get the deleted text as a string and set
26451 coding->src_object to that string.
26452 (detect_coding, detect_coding_system): Use the new struct
26453 coding_detection_info.
26454
26455 * coding.h (struct coding_detection_info): New structure.
26456 (struct coding_system): Adjust prototype of the member `detector'.
26457 (CODING_ANNOTATE_CHARSET_MASK): New macro.
26458
264592008-02-01 Kenichi Handa <handa@m17n.org>
26460
26461 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
26462
264632008-02-01 Dave Love <fx@gnu.org>
26464
26465 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
26466 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
26467 to new local and nullify apropos_accumulate before returning.
26468 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
26469
264702008-02-01 Kenichi Handa <handa@m17n.org>
26471
26472 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
26473 correctly.
26474
264752008-02-01 Dave Love <fx@gnu.org>
26476
26477 * fns.c (Flanginfo): Call synchronize_system_time_locale.
26478
264792008-02-01 Kenichi Handa <handa@m17n.org>
26480
26481 The following changes are to make character composition happen
26482 automatically on displaying.
26483
26484 * Makefile.in (lisp, shortlisp): Add composite.elc.
26485
26486 * composite.h (Qauto_composed, Vauto_composition_function)
26487 (Qauto_composition_function): Extern them.
26488
26489 * composite.c (Vcomposition_function_table)
26490 (Qcomposition_function_table): Delete variables.
26491 (Qauto_composed, Vauto_composition_function)
26492 (Qauto_composition_function): New variables.
26493 (run_composition_function): Don't call
26494 compose-chars-after-function.
26495 (update_compositions): Clear `auto-composed' text property.
26496 (compose_chars_in_text): Delete this function.
26497 (syms_of_composite): Staticpro Qauto_composed and
26498 Qauto_composition_function. Declare Vauto_composition_function as
26499 a Lisp variable.
26500
26501 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
26502
26503 * xdisp.c (it_props): Add an entry for Qauto_composed.
26504 (handle_auto_composed_prop): New function.
26505
26506 * xselect.c (selection_data_to_lisp_data): Don't call
26507 compose_chars_in_text.
26508
265092008-02-01 Dave Love <fx@gnu.org>
26510
26511 * keyboard.c (read_char): Modify checking around use of
26512 Vkeyboard_translate_table.
26513
26514 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26515 and fix C types.
26516
265172008-02-01 Kenichi Handa <handa@m17n.org>
26518
26519 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
26520 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
26521 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
26522 the case that the last byte is '\r' correctly.
26523 (decode_coding): Flush out the unprocessed data correctly.
26524 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
26525
265262008-02-01 Dave Love <fx@gnu.org>
26527
26528 * xterm.c (XTread_socket): Fix changes for defined keysyms.
26529 Add XK_ISO... case.
26530 (xaw_scroll_callback): Revert last change.
26531
265322008-02-01 Kenichi Handa <handa@m17n.org>
26533
26534 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
26535
265362008-02-01 Kenichi Handa <handa@m17n.org>
26537
26538 * xfaces.c (Vface_resizing_fonts): New variable.
26539 (struct font_name): New member `resizing_ratio'.
26540 (font_resizing_ratio): New function.
26541 (split_font_name): Set font->resizing_ratio.
26542 (better_font_p): Pay attention to font->resizing_ratio.
26543 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
26544 RESX, and RESY fields.
26545 (try_alternative_families): Try scalable fonts if
26546 Vscalable_fonts_allowed is not Qt.
26547 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
26548
265492008-02-01 Dave Love <fx@gnu.org>
26550
26551 * xterm.c (xaw_scroll_callback): Cast correctly.
26552
265532008-02-01 Dave Love <fx@gnu.org>
26554
26555 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
26556 (lispy_kana_keys): Comment out.
26557 (make_lispy_event) [XK_kana_A]: Comment out.
26558
26559 * xterm.c (xaw_scroll_callback): Cast call_data.
26560 (XTread_socket): Deal with ASCII keysyms.
26561 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
26562
265632008-02-01 Dave Love <fx@gnu.org>
26564
26565 * xterm.c (Vx_keysym_table): New.
26566 (syms_of_xterm): Initialize it.
26567 (XTread_socket): Use it.
26568 From head: Eliminate incorrect optimization that tried to avoid
26569 decoding the output of X*LookupString.
26570 (x_get_font_repertory): Delete charset declaration.
26571
265722008-02-01 Kenichi Handa <handa@m17n.org>
26573
26574 * coding.c (detect_coding_charset): If only ASCII bytes are found,
26575 return 0.
26576 (Fdefine_coding_system_internal):
26577 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
26578
265792008-02-01 Dave Love <fx@gnu.org>
26580
26581 * coding.c (Fcheck_coding_system): Doc fix.
26582
26583 * editfns.c (Finsert_byte): Return a proper value.
26584
265852008-02-01 Kenichi Handa <handa@m17n.org>
26586
26587 * coding.c (decode_coding): Fix args to translate_chars.
26588 Pay attention to Vstandard_translation_table_for_decode.
26589 (encode_coding): Fix args to translate_chars. Pay attention to
26590 Vstandard_translation_table_for_encode.
26591
26592 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
26593 SINGLE_BYTE_CHAR_P.
26594
26595 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
26596 not by SINGLE_BYTE_CHAR_P.
26597
26598 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
26599 SINGLE_BYTE_CHAR_P.
26600
26601 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
26602 SINGLE_BYTE_CHAR_P.
26603
26604 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
26605 by SINGLE_BYTE_CHAR_P.
26606
26607 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
26608 SINGLE_BYTE_CHAR_P.
26609
266102008-02-01 Dave Love <fx@gnu.org>
26611
26612 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
26613
266142008-02-01 Dave Love <fx@gnu.org>
26615
26616 * fns.c (Flanginfo): Fix typo.
26617
26618 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
26619
266202008-02-01 Kenichi Handa <handa@m17n.org>
26621
26622 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
26623 (detect_coding_emacs_mule, detect_coding_iso_2022)
26624 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
26625 incomplete byte sequence. Don't update *mask when correctly detected.
26626 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
26627 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
26628 (detect_coding, detect_coding_system): Adjust for the changes above.
26629
266302008-02-01 Kenichi Handa <handa@m17n.org>
26631
26632 * character.c (char_string): Rename from
26633 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
26634 (string_char): Rename from string_char.
26635
26636 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
26637 if C is greater than MAX_3_BYTE_CHAR.
26638 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
26639 Call string_char instead of string_char_with_unification.
26640
266412008-02-01 Dave Love <fx@gnu.org>
26642
26643 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
26644
266452008-02-01 Kenichi Handa <handa@m17n.org>
26646
26647 * keymap.c (push_key_description): Pay attention to force_multibyte.
26648
26649 * regex.c (re_search_2): Fix for the case of unibyte buffer.
26650
266512008-02-01 Dave Love <fx@gnu.org>
26652
26653 * charset.c (define_charset_internal): Rename `supprementary'.
26654
26655 * Makefile.in (lisp, shortlisp): Remove latin-N.
26656
266572008-02-01 Dave Love <fx@gnu.org>
26658
26659 * xfns.c (x_window, x_window): Use use_xim.
26660
26661 * xterm.c (use_xim): Initialize.
26662 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
26663 (x_term_init): Maybe set use_xim.
26664
26665 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
26666
266672008-02-01 Kenichi Handa <handa@m17n.org>
26668
26669 * search.c (search_buffer): Fix case-fold-search of multibyte
26670 characters.
26671 (boyer_moore): Rename the last argument to char_high_bits.
26672
266732008-02-01 Kenichi Handa <handa@m17n.org>
26674
26675 * xdisp.c (display_string): Fix for the case of zero width glyph.
26676
26677 * xfns.c (x_set_font): Change the error message of the case that
26678 x_new_fontset returns Qt.
26679
26680 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
26681 (Finternal_set_lisp_face_attribute): Use signal_error for the
26682 error of invalid fontset.
26683
26684 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
26685 fontset, return Qt.
26686
266872008-02-01 Dave Love <fx@gnu.org>
26688
26689 * unexelf.c (unexec): Make .got handling not SGI-specific.
26690
26691 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
26692
26693 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
26694
26695 * keyboard.c (read_key_sequence): Fix type error.
26696
26697 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
26698 Fix type error.
26699
26700 * fontset.c (fontset_add): Return Lisp_Object.
26701
267022008-02-01 Dave Love <fx@gnu.org>
26703
26704 * charset.h (charset_ordered_list_tick): Declare extern.
26705
267062008-02-01 Kenichi Handa <handa@m17n.org>
26707
26708 The following changes (and some of 2008-02-01 changes of mine) are
26709 for handling syntax, category, and case conversion for unibyte
26710 characters by converting them to multibyte on the fly. With these
26711 changes, we don't have to setup syntax and case tables for unibyte
26712 characters in each language environment.
26713
26714 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
26715 multibyte if necessary.
26716
26717 * bytecode.c (Fbyte_code): Likewise.
26718
26719 * character.h (LEADING_CODE_LATIN_1_MIN)
26720 (LEADING_CODE_LATIN_1_MAX): New macros.
26721 (unibyte_to_multibyte_table): Extern it.
26722 (unibyte_char_to_multibyte): New macro.
26723 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
26724 (CHAR_LEADING_CODE): New macro.
26725 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
26726
26727 * character.c (unibyte_to_multibyte_table): New variable.
26728 (unibyte_char_to_multibyte): Move to character.h and define as macro.
26729 (multibyte_char_to_unibyte): If C is an eight-bit character,
26730 convert it to the corresponding byte value.
26731
26732 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
26733 not 1, signals an error. Update the elements of
26734 unibyte_to_multibyte_table.
26735 (init_charset_once): Initialize unibyte_to_multibyte_table.
26736 (syms_of_charset): Define the charset `iso-8859-1'.
26737
26738 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
26739 as is without converting it to unibyte. In a unibyte buffer,
26740 convert C to multibyte before checking the syntax.
26741
26742 * lisp.h (unibyte_char_to_multibyte): Delete extern.
26743
26744 * minibuf.c (Fminibuffer_complete_word): Use the macro
26745 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
26746
26747 * regex.h (struct re_pattern_buffer): New member target_multibyte.
26748
26749 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
26750 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
26751 If that is zero, convert an eight-bit char to multibyte.
26752 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
26753 non-emacs case.
26754 (PATFETCH): Convert an eight-bit char to multibyte.
26755 (HANDLE_UNIBYTE_RANGE): New macro.
26756 (regex_compile): Setup the compiled pattern for multibyte chars
26757 even if the given regex string is unibyte. Use PATFETCH_RAW
26758 instead of PATFETCH in many places. To handle `charset'
26759 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
26760 only for ASCII chars.
26761 (analyse_first) <exactn>: Simplify because the compiled pattern
26762 is multibyte.
26763 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
26764 <charset>: Use CHAR_LEADING_CODE to get leading codes.
26765 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
26766 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
26767 multibyte always 1.
26768 (re_search_2): In emacs, set the locale variable multibyte to 1,
26769 otherwise to 0. New local variable target_multibyte. Check it
26770 to decide the multibyteness of STR1 and STR2.
26771 If target_multibyte is zero, convert unibyte chars to multibyte
26772 before translating and checking fastmap.
26773 (TARGET_CHAR_AND_LENGTH): New macro.
26774 (re_match_2_internal): In emacs, set the locale variable multibyte
26775 to 1, otherwise to 0. New local variable target_multibyte.
26776 Check it to decide the multibyteness of STR1 and STR2.
26777 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
26778 <charset, charset_not>: If multibyte is nonzero, check fastmap
26779 only for ASCII chars. Call bcmp_translate with
26780 target_multibyte, not with multibyte.
26781 <begline>: Declare the local variable C as `unsigned'.
26782 (bcmp_translate): Change the last arg name to target_multibyte.
26783
26784 * search.c (compile_pattern_1): Don't adjust the multibyteness of
26785 the regexp pattern and the matching target. Set cp->buf.multibyte
26786 to the multibyteness of the regexp pattern. Set
26787 cp->but.target_multibyte to the multibyteness of the matching target.
26788 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
26789 FETCH_STRING_CHAR_ADVANCE.
26790 (Freplace_match): Convert unibyte chars to multibyte.
26791
26792 * syntax.c (char_quoted, back_comment, scan_words)
26793 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
26794 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
26795 unibyte chars to multibyte.
26796 (skip_chars): Delete the arg syntaxp, and move the code for
26797 handling syntaxes to skip_syntaxes. Change callers.
26798 Fix the case that the multibyteness of STRING and the current
26799 buffer doesn't match.
26800 (skip_syntaxes): New function.
26801 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
26802 SINGLE_BYTE_CHAR_P.
26803
268042008-02-01 Kenichi Handa <handa@m17n.org>
26805
26806 * xfaces.c (QCfontset): New variable.
26807 (LFACE_FONTSET): New macro.
26808 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
26809 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
26810 (Finternal_set_lisp_face_attribute)
26811 (Finternal_get_lisp_face_attribute): Handle QCfontset.
26812 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
26813 check also LFACE_FONTSET_INDEX.
26814 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
26815 attrs[LFACE_FONT_INDEX].
26816 (syms_of_xfaces): Intern and staticpro QCfontset.
26817
26818 * dispextern.h (enum lface_attribute_index): New member
26819 LFACE_FONTSET_INDEX.
26820
26821 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
26822
268232008-02-01 Kenichi Handa <handa@m17n.org>
26824
26825 * coding.c (coding_set_destination): Fix coding->destination for
26826 the case converting a region.
26827 (encode_coding_utf_8): Encode eight-bit chars as single byte.
26828 (encode_coding_object): Fix coding->dst_pos and
26829 coding->dst_pos_byte for the case converting a region.
26830
26831 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
26832
26833 * character.h (BYTE8_STRING): New macro.
26834
26835 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
26836
268372008-02-01 Kenichi Handa <handa@m17n.org>
26838
26839 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
26840 characters by octal form.
26841
26842 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
26843
26844 * buffer.h (_fetch_multibyte_char_len): Delete extern.
26845 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
26846 _fetch_multibyte_char_len.
26847 (FETCH_CHAR_AS_MULTIBYTE): New macro.
26848
26849 * casetab.c (set_canon, set_identity, shuffle): Simplify.
26850
26851 * casefiddle.c (casify_object): Simplify. Handle the case that
26852 the case conversion change the byte length.
26853 (casify_region): Likewise.
26854
26855 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
26856
26857 * character.c (_fetch_multibyte_char_len): Delete this variable.
26858 (syms_of_character): Setup Vprintable_chars.
26859
26860 * editfns.c (Fchar_equal): Fix for the unibyte case.
26861 (Finsert_byte): New function.
26862 (syms_of_editfns): Defsubr it.
26863
26864 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
26865 of direct code 0x3ffff.
26866
26867 * search.c (Freplace_match): Fix for the unibyte case.
26868
268692008-02-01 Kenichi Handa <handa@m17n.org>
26870
26871 * lread.c (safe_to_load_p): Fix the logic.
26872
26873 * syntax.c (scan_words): Don't treat characters belonging to
26874 different scripts as constituting a word.
26875
26876 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
26877
26878 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
26879
26880 * emacs.c (main): In the case of --unibyte, instead of aborting on
26881 finding non-empty buffer, make it unibyte.
26882
268832008-02-01 Kenichi Handa <handa@m17n.org>
26884
26885 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
26886 to create a fontset.
26887
268882008-02-01 Dave Love <fx@gnu.org>
26889
26890 * character.c (Funibyte_char_to_multibyte): Doc fix.
26891
26892 * xfns.c [HAVE_STDLIB_H]: Fix last change.
26893
268942008-02-01 Kenichi Handa <handa@m17n.org>
26895
26896 * fontset.c (fontset_add): Make the type `int'.
26897 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
26898
26899 * character.c (unibyte_char_to_multibyte)
26900 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
26901 charset_unibyte, not charset_primary.
26902
26903 * charset.h (charset_unibyte): Extern it instead of charset_primary.
26904
26905 * charset.c (charset_unibyte): Rename from charset_primary.
26906 (Funibyte_charset): Rename from Fprimary_charset.
26907 (Fset_unibyte_charset): Rename from Fset_primary_charset.
26908 (syms_of_charset): Adjust for the above changes.
26909
26910 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
26911 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
26912 it->multibyte_p is zero.
26913
26914 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
26915 Delete extern.
26916
269172008-02-01 Kenichi Handa <handa@m17n.org>
26918
26919 * coding.c (Fdefine_coding_system_internal): Fix category setting
26920 for a coding system of type iso-2022.
26921
269222008-02-01 Kenichi Handa <handa@m17n.org>
26923
26924 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
26925
269262008-02-01 Kenichi Handa <handa@m17n.org>
26927
26928 * syntax.c (Vnext_word_boundary_function_table): New variable.
26929 (next-word-boundary-function-table): Declare it as a Lisp variable
26930 in syms_of_syntax.
26931 (scan_words): Call functions in Vnext_word_boundary_function_table
26932 if any.
26933
26934 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
26935
26936 * fontset.c (fs_load_font): If fontp->charset is not negative,
26937 return fontp without setting its members.
26938
269392008-02-01 Dave Love <fx@gnu.org>
26940
26941 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
26942
26943 * m/sparc.h (HAVE_ALLOCA): Delete.
26944
26945 * s/irix6-5.h: Don't include strings.h.
26946 (bcopy, bzero, bcmp): Don't undef.
26947
26948 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
26949
26950 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
26951 (TIOCSIGSEND): Don't test IRIX6.
26952 (bcopy, bzero, bcmp): Define conditionally.
26953
269542008-02-01 Kenichi Handa <handa@m17n.org>
26955
26956 * buffer.c (Qas, Qmake, Qto): New variables.
26957 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
26958 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
26959
26960 * callproc.c (Fcall_process): Don't call insert_1_both directly if
26961 we are inserting a process output into a multibyte buffer.
26962
26963 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
26964 multibyte_char_to_unibyte.
26965
26966 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
26967 by the primary charset, make it eight-bit char.
26968 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
26969
26970 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
26971 (charset_8_bit__control, charset_8_bit_graphic)
26972 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
26973 (define_charset_internal): New function.
26974 (syms_of_charset): Call define_charset_internal for pre-defined
26975 charsets.
26976
26977 * charset.h (charset_8_bit): Extern it.
26978
26979 * coding.c (make_conversion_work_buffer): Adjust for the change
26980 of Fset_buffer_multibyte.
26981 (encode_coding_raw_text): Increment p0 in the loop.
26982
26983 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
26984
26985 * xdisp.c (setup_echo_area_for_printing, set_message_1):
26986 Adjust for the change of Fset_buffer_multibyte.
26987
26988 * fns.c (Fstring_to_multibyte): New function.
26989 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
26990
269912008-02-01 Dave Love <fx@gnu.org>
26992
26993 * xfns.c (x_put_x_image): Declare args.
26994
26995 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
26996 (try_font_list): Declare an arg.
26997
26998 * xdisp.c (message2_nolog, set_message): Declare an arg.
26999
27000 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
27001
27002 * syntax.c (scan_sexps_forward): Declare an arg.
27003
27004 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
27005 Declare an arg.
27006
27007 * lisp.h (Fnew_fontset): Declare.
27008
27009 * keymap.c (push_key_description): Call CHARACTERP correctly.
27010
27011 * fontset.c (fontset_add): Declare args. Call make_number correctly.
27012 (face_for_char): Delete unused vars.
27013 (Fset_fontset_font): Doc fix. Delete unused vars.
27014
27015 * doc.c (Fsubstitute_command_keys): Delete unused vars.
27016
27017 * composite.c (update_compositions): Declare arg.
27018
27019 * cm.c (calccost, cmgoto): Declare args.
27020
27021 * charset.c: Remove `emacs' conditional. Doc fixes.
27022 (map_char_table_for_charset): Declare.
27023
27024 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
27025
27026 * ccl.c: Remove `emacs' conditional.
27027
270282008-02-01 Kenichi Handa <handa@m17n.org>
27029
27030 The following changes are to allow specifying multiple font
27031 patterns for a character range (specified by script or charset).
27032
27033 * Makefile.in (abbrev.o): Depend on syntax.h.
27034 (xfaces.o): Depend on charset.h.
27035
27036 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
27037 SINGLE_BYTE_CHAR_P.
27038
27039 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
27040
27041 * character.h (Vchar_script_table): Extern it.
27042
27043 * character.c (Vscript_alist): Delete.
27044 (Vchar_script_table, Qchar_script_table): New variable.
27045 (syms_of_character): Declare Vchar_script_table as a lisp variable
27046 and initialize it.
27047
27048 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
27049 have property char-table-extra-slots, make no extra slot.
27050
27051 * dispextern.h (struct face): Delete member `charset'.
27052 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
27053 SINGLE_BYTE_CHAR_P.
27054 (choose_face_font, lookup_non_ascii_face, font_name_registry):
27055 Add prototypes.
27056 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
27057 (generate_ascii_font_name): Rename from generate_ascii_font.
27058
27059 * fontset.h (get_font_repertory_func): New prototype.
27060 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
27061 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
27062
27063 * fontset.c (Qprepend, Qappend): New variables.
27064 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
27065 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
27066 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
27067 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
27068 (fontset_ref_and_range, fontset_add, reorder_font_vector)
27069 (load_font_get_repertory): New functions.
27070 (fontset_set): Delete.
27071 (fontset_face): New arg FACE. Return face ID, not face.
27072 Complete re-write to handle new fontset structure. Change caller.
27073 (free_face_fontset): Use ASET istead of AREF (X) = Y.
27074 (face_for_char): Don't call lookup_face.
27075 (make_fontset_for_ascii_face): New arg FACE.
27076 (fs_load_font): New arg CHARSET_ID. Don't check
27077 Vfont_encoding_alist here.
27078 (find_font_encoding): New function.
27079 (list_fontsets): Use STRINGP, not ! NILP.
27080 (accumulate_script_ranges): New function.
27081 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
27082 Completely re-written to handle new fontset structure.
27083 (Ffontset_font): Return a copy of element.
27084 (syms_of_fontset): Define symbols Qprepend and Qappend.
27085 Fix docstring of font-encoding-alist.
27086
27087 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
27088 (Fset_fotset_font): Fix arguments to 5.
27089
27090 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
27091
27092 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
27093 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27094 (highlight_trailing_whitespace): Adjust for the change of
27095 lookup_named_face.
27096
27097 * xfaces.c: Include charset.h.
27098 (load_face_font): Delete argument C. Change caller.
27099 (generate_ascii_font_name): Rename from generate_ascii_font.
27100 (font_name_registry): New function.
27101 (cache_face): Store ascii faces before non-ascii faces in buckets.
27102 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
27103 Lookup only ascii faces.
27104 (lookup_non_ascii_face): New function.
27105 (lookup_named_face): Delete argument C. Change caller.
27106 (lookup_derived_face): Delete argument C. Change caller.
27107 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
27108 a string, just call font_list with it.
27109 (choose_face_font): Delete arguments FACE and C. New arg
27110 FONT_SPEC. Change caller.
27111 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
27112 Change caller.
27113 (realize_non_ascii_face): New function.
27114 (realize_x_face): Call load_face_font here.
27115 (realize_tty_face): Delete argument C. Change caller.
27116 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
27117 get a face ID.
27118 (dump_realized_face): Don't print charset of FACE.
27119
27120 * xfns.c (x_set_font): Always call x_new_fontset and
27121 store_frame_parameter.
27122 (Fx_create_frame): Call x_new_fontset, not x_new_font.
27123 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
27124
27125 * xterm.h (x_get_font_repertory): Extern it.
27126
27127 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27128 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27129 it->multibyte_p is zero.
27130 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27131 (x_new_fontset): If FONTSETNAME doesn't match any existing
27132 fontsets, create a new one.
27133 (x_get_font_repertory): New function.
27134
271352008-02-01 Kenichi Handa <handa@m17n.org>
27136
27137 * coding.c (Ffind_coding_systems_region_internal): Detect an
27138 ASCII only string correctly.
27139
27140 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
27141 version is 0.
27142
271432008-02-01 Kenichi Handa <handa@m17n.org>
27144
27145 * lread.c: Include "coding.h".
27146 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
27147 (load_each_byte, unread_char): New variables.
27148 (readchar_backlog): Delete.
27149 (readchar): Return a character unless load_each_byte is nonzero.
27150 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
27151 cons. If unread_char is not -1, simply return it.
27152 (unreadchar): Handle the case that readcharfun is
27153 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
27154 (read_multibyte): Delete.
27155 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
27156 (read_emacs_mule_char): New functions.
27157 (Fload): Even if the file doesn't have the extension ".elc", if
27158 safe_to_load_p returns a positive version number, assume that the
27159 file contains bytecompiled code. If the version is less than 22,
27160 load the file while decoding multibyte sequences by emacs-mule.
27161 (readevalloop): Don't use readchar_backlog.
27162 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
27163 (Fread_from_string): Pay attention to the case that STREAM is a cons.
27164 (read_escape): Delete the arg BYTEREP.
27165 (read1): Set load_each_byte to 1 temporarily while handling
27166 #@NUMBER. Don't call read_multibyte.
27167 (read_vector): Call Fread with a cons. If readcharfun is
27168 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
27169 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
27170 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
27171 and Qload_force_doc_strings.
27172
271732008-02-01 Kenichi Handa <handa@m17n.org>
27174
27175 * xdisp.c (face_before_or_after_it_pos):
27176 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
27177
271782008-02-01 Kenichi Handa <handa@m17n.org>
27179
27180 * character.h (TRAILING_CODE_P): New macro.
27181 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
27182 (string_char_with_unification): Fix prototype.
27183 (Vscript_alist): Extern it.
27184
27185 * character.c (Vscript_alist): New variable.
27186 (string_char_with_unification, str_as_unibyte)
27187 (string_escape_byte8): Add `const' to local variables.
27188 (syms_of_character): Declare script-alist as a Lisp variable.
27189
27190 * charset.h (Vcharset_ordered_list): Extern it.
27191 (charset_ordered_list_tick): Extern it.
27192 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
27193 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
27194 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
27195 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
27196 (Funify_charset): Adjust for the change of Funify_charset.
27197
27198 * charset.c (charset_ordered_list_tick): New variable.
27199 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
27200 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
27201 deunify instead of unify a charset.
27202 (string_xstring_p): Add `const' to local variables.
27203 (find_charsets_in_text): Add `const' to arguments and local variables.
27204 (encode_char): Adjust for the change of Funify_charset.
27205 Fix detecting of invalid code.
27206 (Fset_charset_priority): Increment charset_ordered_list_tick.
27207 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
27208 and TO_CODE.
27209
27210 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
27211 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
27212 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
27213 (decode_coding_ccl, consume_chars)
27214 (Ffind_coding_systems_region_internal)
27215 (Fcheck_coding_systems_region): Add `const' to local variables.
27216
27217 * print.c (print_object): Use octal form for printing the
27218 contents of a bool vector.
27219
272202008-02-01 Dave Love <fx@gnu.org>
27221
27222 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
27223 <version == 20>: Refuse to load.
27224
272252008-02-01 Dave Love <fx@gnu.org>
27226
27227 * fns.c: Move coding.h.
27228 (Qcodeset, Qdays, Qmonths): New.
27229 (concat): Use CHARACTERP instead of INTEGERP.
27230 (Flocale_codeset): Delete.
27231 (Flanginfo): New function.
27232 (syms_of_fns): Change accordingly.
27233
27234 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
27235
272362008-02-01 Dave Love <fx@gnu.org>
27237
27238 * casetab.c (init_casetab_once, init_casetab_once):
27239 Fix CHAR_TABLE_SET call.
27240
27241 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
27242
27243 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
27244
27245 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
27246 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
27247 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
27248
27249 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
27250
27251 * coding.c (ENCODE_DESIGNATION, decode_eol)
27252 (make_conversion_work_buffer, code_conversion_restore)
27253 (Fdefine_coding_system_internal): Convert Lisp types.
27254 (code_conversion_restore): Use EQ, not ==.
27255 (Fencode_coding_string): Fix code_convert_string call.
27256
27257 * coding.h (code_convert_region): Fix prototype.
27258
27259 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
27260
27261 * fontset.c (fontset_ref, fontset_set, fs_load_font)
27262 (Ffontset_info): Convert Lisp types.
27263
27264 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
27265
27266 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
27267
27268 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
27269
27270 * chartab.c: Include "...h", not <...h> in some cases.
27271
27272 * callproc.c (Fcall_process): Remove unused variables.
27273
272742008-02-01 Dave Love <fx@gnu.org>
27275
27276 * coding.c (Fset_coding_system_priority): Allow null arg list.
27277
272782008-02-01 Dave Love <fx@gnu.org>
27279
27280 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
27281 (Fself_insert_and_exit): Use CHARACTERP.
27282
27283 * callproc.c (Fcall_process): Remove unused vars.
27284
27285 * xterm.c (XTread_socket): Add extra dead keysyms.
27286
27287 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
27288
27289 * dispextern.h: Remove prototypes for redraw_frame,
27290 redraw_garbaged_frames.
27291
27292 * cmds.c (Fself_insert_command): Use CHARACTERP.
27293
27294 * chartab.c (make_sub_char_table): Remove unused var.
27295 (Fset_char_table_default, Fmap_char_table): Doc fix.
27296
27297 * keymap.c (access_keymap): Remove generic char code.
27298 (push_key_description): Use CHARACTERP.
27299
273002008-02-01 Dave Love <fx@gnu.org>
27301
27302 * charset.c: Doc fixes.
27303 (Funify_charset): Extra checking.
27304
273052008-02-01 Dave Love <fx@gnu.org>
27306
27307 * lread.c: Remove some unused variables.
27308 (safe_to_load_p): If safe, return the magic number version byte.
27309 (Fload): Maybe use load-with-code-conversion.
27310
273112008-02-01 Kenichi Handa <handa@m17n.org>
27312
27313 * category.c (Fmodify_category_entry): Don't modify the contents
27314 of category_set for characters out of the range.
27315 Avoid unnecessary modification.
27316
27317 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
27318 Vchar_unify_table. The default value of the table is now nil.
27319
27320 * character.c (syms_of_character): Setup Vchar_width_table for
27321 eight-bit-control and raw-byte chars.
27322
27323 * charset.h (enum define_charset_arg_index):
27324 Delete charset_arg_parents and add charset_arg_subset and
27325 charset_arg_superset.
27326 (enum charset_attr_index): Delete charset_parents and add
27327 charset_subset and charset_superset.
27328 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
27329 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
27330 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
27331 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
27332 (CHARSET_SUPERSET): New macros.
27333 (charset_work): Extern it.
27334 (ENCODE_CHAR): Use charset_work.
27335 (CHAR_CHARSET_P): Adjust for the change of encoder format.
27336 (map_charset_chars): Extern it.
27337
27338 * charset.c (load_charset_map): Set the default value of encoder
27339 and deunifier char-tables to nil.
27340 (map_charset_chars): Change argument. Change callers.
27341 Use map_char_table_for_charset instead of map_char_table.
27342 (Fmap_charset_chars): New optional args from_code and to_code.
27343 (Fdefine_charset_internal): Adjust for the change of
27344 `define-charset' (:parents -> :subset or :superset).
27345 (charset_work): New variable.
27346 (encode_char, syms_of_charset): Adjust for the change of
27347 Fdefine_charset_internal.
27348 (Ffind_charset_string): Setup the vector `charsets' correctly.
27349
27350 * chartab.c (sub_char_table_ref_and_range): New arg default.
27351 Fix the previous change.
27352 (char_table_ref_and_range): Adjust for the above change.
27353 (map_sub_char_table_for_charset): New function.
27354 (map_char_table_for_charset): New function.
27355
27356 * keymap.c (describe_vector): Handle a char-table directly here.
27357 (describe_char_table): Delete.
27358
27359 * lisp.h (map_charset_chars): Delete.
27360
273612008-02-01 Dave Love <fx@gnu.org>
27362
27363 * fns.c (count_combining): Comment out (unused).
27364 (Flocale_codeset): New.
27365 (syms_of_fns): Defsubr it.
27366
27367 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
27368 (size_t): Remove.
27369
273702008-02-01 Dave Love <fx@gnu.org>
27371
27372 * Makefile.in (chartab.o): Depend on charset.h.
27373
273742008-02-01 Kenichi Handa <handa@m17n.org>
27375
27376 * character.c (syms_of_character): Set the default value of
27377 Vprintable_chars to Qnil.
27378
273792008-02-01 Dave Love <fx@gnu.org>
27380
27381 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
27382
273832008-02-01 Kenichi Handa <handa@m17n.org>
27384
27385 * charset.c (load_charset_map): Handle the case that from < to
27386 correctly.
27387
27388 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
27389 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
27390 Pay attention to raw-8-bit chars.
27391
273922008-02-01 Kenichi Handa <handa@m17n.org>
27393
27394 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
27395 It is not bytecompiled now.
27396
27397 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
27398 (charset_jisx0208): New variables.
27399 (Fdefine_charset_internal): Setup them if appropriate.
27400 (init_charset_once): Initialize them to -1.
27401
27402 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
27403 (charset_jisx0208): Extern them.
27404
27405 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
27406 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
27407 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
27408 (setup_iso_safe_charsets): Fix arguments to Fassq.
27409 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
27410 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
27411 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
27412 (encode_coding_iso_2022): Change the 1st arg to
27413 ENCODE_ISO_CHARACTER to a variable.
27414
274152008-02-01 Kenichi Handa <handa@m17n.org>
27416
27417 * charset.h (enum define_charset_arg_index): New enums
27418 charset_arg_min_code and charset_arg_max_code.
27419 (struct charset): New member char_index_offset.
27420
27421 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
27422 Take charset->char_index_offset into account.
27423 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
27424 args[charset_arg_max_code]. Setup charset.char_index_offset.
27425 (syms_of_charset): Fix args to Fdefine_charset_internal.
27426
274272008-02-01 Dave Love <fx@gnu.org>
27428
27429 * coding.c (decode_coding_utf_8): Reject overlong sequences.
27430
274312008-02-01 Dave Love <fx@gnu.org>
27432
27433 * coding.c: Doc fixes.
27434 (Fcoding_system_aliases): Fix return value.
27435 (Qmac): Remove (duplicated) definition.
27436
274372008-02-01 Dave Love <fx@gnu.org>
27438
27439 * charset.c (Fcharset_priority_list, Fset_charset_priority):
27440 New functions.
27441
27442 * character.c (Fstring): Doc fix.
27443
27444 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
27445
27446 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
27447 (font-encoding-alist): Doc fix.
27448
274492008-02-01 Dave Love <fx@gnu.org>
27450
27451 * term.c (costs_set): Declare static, non-initialized for pcc.
27452 (encode_terminal_code): Remove unused var.
27453
27454 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
27455 for K&R.
27456
27457 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
27458
27459 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
27460 (suffixes): Move out of make_subsidiaries for K&R.
27461
27462 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
27463
27464 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
27465
274662008-02-01 Dave Love <fx@gnu.org>
27467
27468 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
27469
27470 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
27471
274722008-02-01 Yong Lu <lyongu@asia-infonet.com>
27473
27474 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
27475
27476 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
27477
274782008-02-01 Kenichi Handa <handa@m17n.org>
27479
27480 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
27481 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
27482
274832008-02-01 Kenichi Handa <handa@m17n.org>
27484
27485 * coding.c (decode_coding_charset): Adjust for the change of
27486 Fdefine_coding_system_internal.
27487 (Fdefine_coding_system_internal): For a coding system of
27488 `charset' type, store a list of charset IDs in
27489 `charset_attr_charset_valids' element of coding attributes.
27490
274912008-02-01 Kenichi Handa <handa@m17n.org>
27492
27493 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
27494 (emacs_mule_char): New arg src. Delete arg `composition'.
27495 Change caller. Handle 2-byte and 3-byte charsets correctly.
27496 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
27497 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
27498 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
27499 (DECODE_EMACS_MULE_21_COMPOSITION):
27500 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
27501 sequence.
27502 (decode_coding_emacs_mule): Handle composition correctly. Rewind
27503 `src' and `consumed_chars' correctly before calling emacs_mule_char.
27504 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
27505 and alt&rule composition.
27506 (decode_coding_iso_2022): Handle composition correctly.
27507 (init_coding_once): Setup emacs_mule_bytes for private charsets.
27508
27509 * charset.c (Fdefine_charset_internal): Fix bug for the case of
27510 re-defining a charset. If the charset has :emacs-mule-id, setup
27511 emacs_mule_bytes.
27512 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
27513
275142008-02-01 Kenichi Handa <handa@m17n.org>
27515
27516 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
27517 (encode_coding_big5, encode_coding_charset): If coding requires safe
27518 encoding, produce a character specified by
27519 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
27520
275212008-02-01 Dave Love <fx@gnu.org>
27522
27523 * xterm.c (XSetIMValues): Declare.
27524
27525 * process.c: Conditionally include sys/wait.h, pty.h.
27526
27527 * print.c (print_object): Fix print format for 64-bit systems.
27528
27529 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
27530
27531 * buffer.c (emacs_strerror): Declare.
27532
27533 * fontset.c (Fclear_face_cache): Declare.
27534 (accumulate_font_info): Comment-out (unused).
27535 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
27536 variables.
27537
27538 * character.h (string_escape_byte8): Declare.
27539
27540 * charset.c (load_charset_map, load_charset_map_from_file):
27541 Remove unused vars.
27542 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
27543 (Fmap_charset_chars): Doc fix.
27544
27545 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
27546 (Fset_coding_system_priority, Fset_coding_system_priority)
27547 (Fdefine_coding_system_internal): Doc fix.
27548
275492008-02-01 Dave Love <fx@gnu.org>
27550
27551 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
27552
275532008-02-01 Kenichi Handa <handa@m17n.org>
27554
27555 * character.c (string_escape_byte8): Make multibyte string with
27556 correct size.
27557
27558 * charset.c (Fmake_char): Delete unnecessary code.
27559
275602008-02-01 Kenichi Handa <handa@m17n.org>
27561
27562 * xfns.c (x_encode_text): Allocate coding.destination here, and
27563 call encode_coding_object with dst_object Qnil.
27564
27565 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
27566 multibyte form correctly.
27567
27568 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
27569 against Vfont_encoding_alist.
27570
27571 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
27572 handling of charset list.
27573 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
27574 (decode_coding_object): Move point to coding->dst_pos before
27575 calling post-read-conversion function.
27576 (encode_coding_object): Give correct arguments to
27577 pre-write-conversion. Ignore the return value of
27578 pre-write-conversion function. Pay attention to the case that
27579 pre-write-conversion changes the current buffer. If dst_object is
27580 Qt, even if coding->src_bytes is zero, allocate at least one byte
27581 to coding->destination.
27582
27583 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
27584
27585 * charset.c (Fmake_char): Make it more backward compatible.
27586 (Fmap_charset_chars): Fix docstring.
27587
275882008-02-01 Dave Love <fx@gnu.org>
27589
27590 * coding.c: Doc fixes.
27591 (Fdefine_coding_system_alias): Use names, not symbols, in
27592 coding-system-alist.
27593
275942008-02-01 Kenichi Handa <handa@m17n.org>
27595
27596 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
27597 of calling free_realized_face.
27598
275992008-02-01 Yong Lu <lyongu@asia-infonet.com>
27600
27601 * charset.c (read_hex): Don't treat SPC as a comment starter.
27602 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
27603 (Fdecode_char): Fix typo.
27604
276052008-02-01 Kenichi Handa <handa@m17n.org>
27606
27607 * charset.h (struct charset): New member `code_space_mask'.
27608
27609 * coding.c (coding_set_source): Delete the local variable beg_byte.
27610 (encode_coding_charset, Fdefine_coding_system_internal):
27611 Delete the local variable charset.
27612 (Fdefine_coding_system_internal):
27613 Setup attrs[coding_attr_charset_valids] correctly.
27614
27615 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
27616 member to check if CODE is valid or not.
27617 (Fdefine_charset_internal): Initialize `code_space_mask' member.
27618 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
27619 is within the range of charset->min_code and carset->max_code.
27620
276212008-02-01 Dave Love <fx@gnu.org>
27622
27623 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
27624
27625 * dispextern.h (generate_ascii_font): Fix return type.
27626
27627 * xfaces.c (generate_ascii_font): Fix arg declaration.
27628
27629 * coding.c (coding_inherit_eol_type)
27630 (Fset_terminal_coding_system_internal)
27631 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
27632
276332008-02-01 Kenichi Handa <handa@m17n.org>
27634
27635 * coding.c (decode_coding_charset, encode_coding_charset):
27636 Handle multiple charsets correctly.
27637
276382008-02-01 Kenichi Handa <handa@m17n.org>
27639
27640 * search.c (boyer_moore): Fix handling of multibyte character
27641 translation.
27642
27643 * xdisp.c (display_mode_element): When the variable `elt' is
27644 changed, update `this' and `lisp_string'.
27645
276462008-02-01 Kenichi Handa <handa@m17n.org>
27647
27648 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
27649
27650 * callproc.c (Fcall_process): Be sure to give the current buffer
27651 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
27652
27653 * charset.c (struct charset_map_entries): New struct.
27654 (load_charset_map): Rename from parse_charset_map. New args
27655 entries and n_entries. Change caller.
27656 (load_charset_map_from_file): Rename from load_charset_map.
27657 Change caller. New arg control_flag. Call load_charset_map at
27658 the tail.
27659 (load_charset_map_from_vector): New function.
27660 (Fdefine_charset_internal): Setup charset.compact_codes_p.
27661 (encode_char): If the charset is compact, change a character index
27662 to a code point.
27663
27664 * coding.c (coding_alloc_by_making_gap): Check the case that the
27665 source and destination are the same correctly.
27666 (decode_coding_raw_text): Set coding->consumed_char and
27667 coding->consumed to 0.
27668 (produce_chars): If coding->chars_at_source is nonzero, update
27669 coding->consumed_char and coding->consumed before calling
27670 alloc_destination.
27671 (Fdefine_coding_system_alias): Register ALIAS in
27672 Vcoding_system_alist.
27673 (syms_of_coding): Define `no-conversion' coding system at the tail.
27674
27675 * fileio.c (Finsert_file_contents): Set coding_system instead of
27676 val. If the current buffer is multibyte, always call
27677 decode_coding_gap.
27678
27679 * xfaces.c (try_font_list): Give higher priority to fontset's
27680 family than face's family.
27681
276822008-02-01 Kenichi Handa <handa@m17n.org>
27683
27684 * callproc.c (Fcall_process): Be sure to give the current buffer
27685 to decode_coding_c_string.
27686
27687 * xfaces.c (try_font_list): Give a family specified in a fontset
27688 higher priority than a family specified in a face.
27689
276902008-02-01 Kenichi Handa <handa@m17n.org>
27691
27692 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
27693 Fix arguments to insert_from_buffer.
27694
27695 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
27696
276972008-02-01 Kenichi Handa <handa@m17n.org>
27698
27699 * coding.c (produce_chars): Set the variable `multibytep' correctly.
27700 (decode_coding_gap): Set coding->dst_multibyte correctly.
27701
277022008-02-01 Kenichi Handa <handa@m17n.org>
27703
27704 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
27705 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
27706 (encode_coding_utf_16): Substitute coding->default_char for
27707 non-Unicode characters.
27708 (decode_coding): Don't call record_insert here.
27709 (setup_coding_system): Initialize `surrogate' of
27710 coding->spec.utf_16 to 0.
27711 (EMIT_ONE_BYTE): Fix for multibyte case.
27712
27713 * insdel.c (insert_from_gap): Call record_insert.
27714
277152008-02-01 Kenichi Handa <handa@m17n.org>
27716
27717 * casefiddle.c (casify_region): Fix multibyte case.
27718
27719 * character.c (c_string_width): Add return type `int'.
27720 (char_string_with_unification): Delete arg ADVANCED.
27721
27722 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
27723 (CHAR_STRING): Adjust for the change of char_string_with_unification.
27724 (CHAR_STRING_ADVANCE): Make it do-while statement.
27725
27726 * chartab.c (sub_char_table_set_range): Optimize for the case
27727 DEPTH == 3. Add workaround code for a GCC optimization bug.
27728
27729 * charset.c (parse_charset_map): Remove an unused variable.
27730
27731 * coding.c: Delete unused variables.
27732
27733 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
27734 earlier. If inserted is zero and the coding system doesn't
27735 require flushing, don't call decode_coding_gap.
27736
27737 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
27738
277392008-02-01 Kenichi Handa <handa@m17n.org>
27740
27741 The following changes are for using Unicode as an internal
27742 character model, and use UTF-8 format for buffer/string
27743 representation.
27744
27745 * .gdbinit (xchartable): Adjust for the change of char table structure.
27746 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
27747
27748 * Makefile.in (obj): Add character.o and chartab.o.
27749 (lisp, shortlisp): Remove utf-8.elc.
27750 (*.o): For many files, change dependency on charset.h to
27751 character.h, and add dependency on character.h.
27752 (character.o, chartab.o): New targets.
27753
27754 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
27755 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
27756 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
27757 of "charset.h".
27758
27759 * dired.c, filelock.c: Include "character.h".
27760
27761 * alloc.c: Include "character.h" instead of "charset.h".
27762 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
27763 (syms_of_alloc): Remove defsubr for Smake_char_table.
27764
27765 * buffer.c: Include "character.h" instead of "charset.h", don't
27766 include "coding.h".
27767 (Fset_buffer_multibyte): Adjust for UTF-8.
27768
27769 * buffer.h: EXFUN Fbuffer_live_p.
27770
27771 * callproc.c: Include "character.h" instead of "charset.h".
27772 (Fcall_process): Big change for the new code-conversion APIs.
27773
27774 * casetab.c: Include "character.h" instead of "charset.h".
27775 (set_canon, set_identity, shuffle): Adjust for the new
27776 map_char_table spec.
27777 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
27778 accessing the char table structure.
27779
27780 * chartab.c: New file that implements char table.
27781
27782 * category.c: Include "character.h".
27783 (copy_category_entry): New function.
27784 (copy_category_table): Call map_char_table and copy_category_entry.
27785 (Fmake_category_table): Initialize all top-level slots.
27786 (char_category_set): New function.
27787 (modify_lower_category_set): Delete.
27788 (Fmodify_category_entry): Call char_table_ref_and_range.
27789
27790 * category.h (CATEGORY_SET): Just call char_category_set.
27791
27792 * ccl.c: Include "character.h".
27793 (Qccl, Qcclp): New variables.
27794 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
27795 it's less than 256.
27796 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
27797 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
27798 and DST type.
27799 (ccl_driver): Change types of argument, adjust code accordingly.
27800 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
27801 ccl_driver.
27802 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
27803
27804 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
27805 New members src_multibyte, dst_multibyte, consumed, and produced.
27806 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
27807 (CODING_SPEC_CCL_PROGRAM): New macro.
27808 (ccl_driver): Update prototype.
27809 (Qccl, Qcclp, Fccl_program_p): Extern them.
27810 (CHECK_CCL_PROGRAM): New macro.
27811
27812 * character.c, character.h, chartab.c: New files.
27813
27814 * charset.c: Mostly re-written. Move character and multibyte sequence
27815 handling codes to character.c.
27816
27817 * charset.h: Mostly re-written. Move character and multibyte sequence
27818 handling codes to character.h.
27819
27820 * coding.c, coding.h: Mostly re-written.
27821
27822 * composite.c: Include "character.h" instead of "charset.h".
27823 (CHAR_WIDTH): Move to character.h.
27824 (HASH_KEY, HASH_VALUE): Delete.
27825
27826 * composite.h (enum composition_method): Change order of enumeration
27827 symbols.
27828
27829 * data.c: Include "character.h" instead of "charset.h".
27830 (Faref): Call CHAR_TABLE_REF for a char table.
27831 (Faset): Call CHAR_TABLE_SET for a char table.
27832
27833 * dispextern.h (free_realized_face, check_face_attribytes)
27834 (generate_ascii_font): Extern them.
27835 (free_realized_multibyte_face): Delete extern.
27836
27837 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
27838 table structure.
27839
27840 * editfns.c: Include "character.h" instead of "charset.h".
27841 (Fchar_to_string): Always call CHAR_STRING.
27842
27843 * emacs.c (main): Call init_charset_once, init_charset,
27844 syms_of_chartab, and syms_of_character.
27845
27846 * fileio.c: Include "character.h" instead of "charset.h".
27847 (Finsert_file_contents): Big change for the new code-conversion API.
27848 (choose_write_coding_system, Fwrite_region): Likewise.
27849 (build_annotations_2): Delete.
27850 (e_write): Big change for the new code-conversion API.
27851
27852 * fns.c: Include "character.h" instead of "charset.h".
27853 (copy_sub_char_table): Move to chartab.c.
27854 (Fcopy_sequence): Call copy_char_table for a char table.
27855 (concat): Delete codes calling count_multibyte.
27856 (string_char_to_byte, string_byte_to_char): Adjust for the new
27857 multibyte form.
27858 (internal_equal): Adjust for the change of char table structure.
27859 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
27860 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
27861 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
27862 (char_table_translate, optimize_sub_char_table)
27863 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
27864 chartab.c.
27865 (char_table_ref_and_index): Delete.
27866 (HASH_KEY, HASH_VALUE): Move to lisp.h.
27867 (Fmd5): Call preferred_coding_system instead of accessing
27868 Vcoding_category_list. Adjust for the new code-conversion API.
27869 (syms_of_fns): Move defsubr for char table related functions to
27870 chartab.c.
27871
27872 * fontset.c: Mostly re-written.
27873
27874 * fontset.h (struct font_info): Change type of the member encoding_type.
27875 (enum FONT_SPEC_INDEX): New enum.
27876 (fontset_font_pattern, fs_load_font): Update prototype.
27877 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
27878
27879 * indent.c: Include "character.h" instead of "charset.h".
27880 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
27881
27882 * insdel.c: Include "character.h" instead of "charset.h".
27883 (copy_text): Don't refer to Vnonascii_translation_table.
27884 (insert_from_gap): New function.
27885
27886 * keyboard.c: Include "character.h" instead of "charset.h".
27887 (command_loop_1): Never call direct_output_forward_char before
27888 a non-ASCII character.
27889 (read_char): If Vkeyboard_translate_table is a char table, always
27890 translate a character.
27891
27892 * keymap.c: Include "character.h".
27893 (store_in_keymap): Handle the case that IDX is a cons.
27894 (Fdefine_key): Handle the case that KEY is a cons and the car part
27895 is also a cons (range).
27896 (push_key_description): Adjust for the new character code.
27897 (describe_vector): Call describe_char_table for a char table.
27898 (describe_char_table): New function.
27899
27900 * keymap.h (describe_char_table): Extern it.
27901
27902 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
27903 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
27904 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
27905 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
27906 Delete.
27907 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
27908 structure.
27909 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
27910 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
27911 (CHARTAB_SIZE_BITS_3): New macros.
27912 (chartab_size): Extern it.
27913 (struct Lisp_Char_Table): Re-design.
27914 (struct Lisp_Sub_Char_Table): New structure.
27915 (HASH_KEY, HASH_VALUE): Move from fns.c.
27916 (CHARACTERBITS): Define as 22.
27917 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
27918 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
27919 (GC_SUB_CHAR_TABLE_P): New macro.
27920 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
27921 (code_convert_string_norecord): Delete extern.
27922 (init_character_once, syms_of_character, init_charset)
27923 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
27924
27925 * lread.c: Include "character.h".
27926 (read_multibyte): New arg NBYTES.
27927 (read_escape): Change the meaning of returned *BYTEREP.
27928 (to_multibyte): Delete.
27929 (read1): Adjust the handling of char table and string.
27930
27931 * print.c: Include "character.h" instead of "charset.h".
27932 (print_string): Convert 8-bit raw bytes to octal form by
27933 string_escape_byte8.
27934 (print_object): Adjust for the new multibyte form. Print 8-bit
27935 raw bytes always in octal form. Handle sub char table correctly.
27936
27937 * process.c: Include "character.h" instead of "charset.h".
27938 (read_process_output, send_process): Adjust for the new
27939 code-conversion API.
27940
27941 * puresize.h (BASE_PURESIZE): Increase.
27942
27943 * regex.c: Include "character.h" instead of "charset.h".
27944 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
27945 (regex_compile): Accept a range whose starting and ending
27946 character have different leading bytes.
27947 (analyse_first): Adjust for the above change.
27948
27949 * search.c: Include "character.h" instead of "charset.h".
27950 (search_buffer, boyer_moore): Adjust for the new multibyte form.
27951 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
27952
27953 * syntax.c: Include "character.h" instead of "charset.h".
27954 (syntax_parent_lookup): Delete.
27955 (Fmodify_syntax_entry): Accept a cons as CHAR.
27956 (skip_chars): Adjust for the new multibyte form.
27957 (init_syntax_once): Call char_table_set_range instead of directly
27958 accessing the structure of a char table.
27959
27960 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
27961 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
27962 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
27963 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
27964
27965 * term.c: Include "buffer.h" and "character.h".
27966 (encode_terminal_code, write_glyphs): Adjust for the new
27967 code-conversion API.
27968 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
27969
27970 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
27971
27972 * xdisp.c: Include "character.h".
27973 (get_next_display_element): Adjust for the new multibyte form.
27974 (disp_char_vector): Adjust for the new char table structure.
27975 (decode_mode_spec_coding): Adjust for the new structure of
27976 coding system.
27977 (decode_mode_spec): Adjust for the new code-conversion API.
27978
27979 * xfaces.c: Include "character.h" instead of "charset.h".
27980 (load_face_font): Adjust for the change of choose_face_font and
27981 FS_LOAD_FONT.
27982 (generate_ascii_font): New function.
27983 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
27984 (set_font_frame_param): Adjust for the change of choose_face_font.
27985 (free_realized_face): Make it public.
27986 (free_realized_faces_for_fontset): Rename from
27987 free_realized_multibyte_face. Free also faces realized for ASCII.
27988 (choose_face_font): Change arguments. Adjust for the change of
27989 fontset_font_pattern and FS_LOAD_FONT.
27990
27991 * xfns.c: Include "character.h".
27992 (x_encode_text): Adjust for the new code-conversion API.
27993
27994 * xselect.c: Don't include "charset.h".
27995 (selection_data_to_lisp_data): Adjust for the new code conversion API.
27996
27997 * xterm.c: Include "character.h".
27998 (x_encode_char): New argument CHARSET. Change caller.
27999 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
28000 Call ENCODE_CHAR instead of SPLIT_CHAR.
28001 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
28002 CHAR_WIDTH instead of CHARSET_WIDTH.
28003 (XTread_socket): Adjust for the new code-conversion API.
28004 (x_new_font): Adjust for the change of FS_LOAD_FONT.
28005 (x_load_font): Adjust for the change of struct font.
28006
280072008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
28008
28009 * xfaces.c (face_at_buffer_position): Remove unused vars.
28010
280112008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28012
28013 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
28014 Fix overflow checking.
28015
280162008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28017
28018 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
28019 Cancel previous change.
28020
280212008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28022
28023 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
28024 ccl->eight_bit_control. Fix check for buffer overflow.
28025 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
28026 (ccl_driver): Initialize extra_bytes to 0.
28027
280282008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28029
28030 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
28031 return it ORed with ctrl_modifier.
28032
280332008-01-29 Miles Bader <miles@gnu.org>
28034
28035 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
28036
280372008-01-28 Jason Rumney <jasonr@gnu.org>
28038
28039 * w32.c (stat): Don't double check for networked drive.
28040
280412008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
28042
28043 * window.c (run_window_configuration_change_hook): New function.
28044 Code extracted from set_window_buffer. Set the selected frame.
28045 (set_window_buffer): Use it.
28046 * window.h (run_window_configuration_change_hook): Declare.
28047 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
28048
28049 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
28050
280512008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
28052
28053 * Makefile.in: Remove references to unused macros.
28054
280552008-01-26 Eli Zaretskii <eliz@gnu.org>
28056
28057 * w32.c (g_b_init_get_sid_sub_authority)
28058 (g_b_init_get_sid_sub_authority_count): New static variables.
28059 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
28060 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
28061 (init_user_info): Use them to retrieve uid and gid.
28062 Use 500/513, the Windows defaults, as Administrator's uid/gid.
28063 (fstat): Use pw_uid and pw_gid from the_passwd structure for
28064 st_uid and st_gid of the file.
28065
280662008-01-26 Jason Rumney <jasonr@gnu.org>
28067
28068 * w32.c (logon_network_drive): New function.
28069 (stat): Use it.
28070
280712008-01-26 Chong Yidong <cyd@stupidchicken.com>
28072
28073 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
28074 invisible text covered with an ellipsis.
28075
280762008-01-25 Richard Stallman <rms@gnu.org>
28077
28078 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
28079 jump back to beginning. Move some other initializations after that.
28080 (Qwindow_text_change_functions, Vwindow_text_change_functions):
28081 New variables.
28082 (syms_of_xdisp): Init them.
28083
28084 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
28085
28086 * buffer.c (reset_buffer_local_variables):
28087 Implement `permanent-local-hook'.
28088 (Qpermanent_local_hook): New variable.
28089 (syms_of_buffer): Init and staticpro it.
28090
280912008-01-25 Michael Albinus <michael.albinus@gmx.de>
28092
28093 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
28094
280952008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
28096
28097 * fns.c (Fclrhash): Return TABLE.
28098
280992008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28100
28101 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
28102 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
28103 is set even without positional changes.
28104 (x_scroll_bar_clear): Set bar->redraw_needed_p.
28105
28106 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
28107
281082008-01-23 Jason Rumney <jasonr@gnu.org>
28109
28110 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
28111
28112 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
28113 the unicode range available in MULE by locale-coding-system.
28114 Improve dbcs lead byte detection. Set event timestamp and modifiers
28115 earlier.
28116
281172008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28118
28119 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
28120 [MAC_OSX] (init_mac_osx_environment): Initialize it.
28121 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
28122 when used on child processes.
28123
281242008-01-21 Michael Albinus <michael.albinus@gmx.de>
28125
28126 * dbusbind.c (Fdbus_method_return_internal): Rename from
28127 Fdbus_method_return.
28128 (Fdbus_unregister_object): Move to dbus.el.
28129 (Fdbus_call_method, Fdbus_method_return_internal)
28130 (Fdbus_send_signal): Improve debug messages.
28131
281322008-01-20 Martin Rudalics <rudalics@gmx.at>
28133
28134 * undo.c (undo_inhibit_record_point): New variable.
28135 (syms_of_undo): Initialize it.
28136 (record_point): Don't record point when undo_inhibit_record_point
28137 is set.
28138
281392008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
28140
28141 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
28142
28143 * xdisp.c (Qauto_hscroll_mode): New var.
28144 (syms_of_xdisp): Initialize it.
28145 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
28146 window's buffer.
28147 (hscroll_windows): Don't check automatic_hscrolling_p here.
28148
28149 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
28150 vscroll if we're setting window-buffer to the value it already has.
28151
281522008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
28153
28154 * m/intel386.h: Remove references to XENIX.
28155
281562008-01-17 Andreas Schwab <schwab@suse.de>
28157
28158 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
28159 instead of HAVE_X86_64_LIB64_DIR.
28160 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
28161
281622008-01-17 Glenn Morris <rgm@gnu.org>
28163
28164 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
28165 to HAVE_X86_64_LIB64_DIR.
28166
281672008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
28168
28169 * s/irix3-3.h:
28170 * s/irix4-0.h:
28171 * s/386-ix.h:
28172 * s/domain.h:
28173 * s/hpux9-x11r4.h:
28174 * s/hpux9shxr4.h: Remove files for systems no longer supported.
28175
28176 * sysdep.c: Remove code containing references to symbols defined
28177 by unsupported systems.
28178
281792008-01-16 Glenn Morris <rgm@gnu.org>
28180
28181 * coding.c (select-safe-coding-system-function): Doc fix.
28182
281832008-01-15 Glenn Morris <rgm@gnu.org>
28184
28185 * config.in: Revert 2008-01-13 change: this is a generated file.
28186
281872008-01-13 Tom Tromey <tromey@redhat.com>
28188
28189 * lisp.h: Fix typo.
28190
281912008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28192
28193 * m/sequent-ptx.h:
28194 * m/sequent.h:
28195 * s/ptx.h:
28196 * s/ptx4-2.h:
28197 * s/ptx4.h: Remove files for systems no longer supported.
28198
28199 * callproc.c (Fcall_process): Fix previous change.
28200
282012008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28202
28203 * unexsunos4.c: Remove file, system not supported anymore.
28204
28205 * m/mips.h:
28206 * m/intel386.h:
28207 * callproc.c:
28208 * config.in:
28209 * ecrt0.c:
28210 * emacs.c:
28211 * fileio.c:
28212 * frame.c:
28213 * getpagesize.h:
28214 * keyboard.c:
28215 * lread.c:
28216 * process.c:
28217 * puresize.h:
28218 * sysdep.c:
28219 * systty.h:
28220 * syswait.h:
28221 * unexec.c:
28222 * xdisp.c:
28223 * alloc.c: Remove code containing references to symbols defined by
28224 unsupported systems.
28225
282262008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
28227
28228 * coding.c (detect_coding_mask): Fix previous change.
28229
282302008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
28231
28232 * coding.c (detect_coding_iso2022): New arg
28233 latin_extra_code_state. Allow Latin extra codes only
28234 when *latin_extra_code_state is nonzero.
28235 (detect_coding_mask): If there is a NULL byte, detect the encoding
28236 as UTF-16 or binary. If Latin extra codes exist, detect the
28237 encoding as ISO-2022 only when there's no other proper encoding is
28238 found.
28239
282402008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28241
28242 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
28243 #ifdef MAC_OS.
28244
282452008-01-08 Richard Stallman <rms@gnu.org>
28246
28247 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
28248
282492008-01-06 Nick Roberts <nickrob@snap.net.nz>
28250
28251 * keyboard.c (parse_menu_item): Don't enclose key bindings on
28252 menu bar in parentheses.
28253
282542008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
28255
28256 * m/7300.h:
28257 * m/acorn.h:
28258 * m/alliant-2800.h:
28259 * m/alliant.h:
28260 * m/alliant1.h:
28261 * m/alliant4.h:
28262 * m/altos.h:
28263 * m/amdahl.h:
28264 * m/apollo.h:
28265 * m/att3b.h:
28266 * m/aviion-intel.h:
28267 * m/aviion.h:
28268 * m/celerity.h:
28269 * m/clipper.h:
28270 * m/cnvrgnt.h:
28271 * m/convex.h:
28272 * m/cydra5.h:
28273 * m/delta88k.h:
28274 * m/dpx2.h:
28275 * m/dual.h:
28276 * m/elxsi.h:
28277 * m/f301.h:
28278 * m/gould-np1.h:
28279 * m/gould.h:
28280 * m/i860.h:
28281 * m/ibmps2-aix.h:
28282 * m/ibmrt-aix.h:
28283 * m/ibmrt.h:
28284 * m/irist.h:
28285 * m/is386.h:
28286 * m/isi-ov.h:
28287 * m/mega68.h:
28288 * m/mg1.h:
28289 * m/news-r6.h:
28290 * m/news-risc.h:
28291 * m/news.h:
28292 * m/nh3000.h:
28293 * m/nh4000.h:
28294 * m/ns16000.h:
28295 * m/ns32000.h:
28296 * m/nu.h:
28297 * m/orion.h:
28298 * m/orion105.h:
28299 * m/paragon.h:
28300 * m/pfa50.h:
28301 * m/plexus.h:
28302 * m/pyramid.h:
28303 * m/pyrmips.h:
28304 * m/sh3el.h:
28305 * m/sps7.h:
28306 * m/sr2k.h:
28307 * m/stride.h:
28308 * m/sun1.h:
28309 * m/sun2.h:
28310 * m/sun3-68881.h:
28311 * m/sun3-fpa.h:
28312 * m/sun3-soft.h:
28313 * m/sun3.h:
28314 * m/sun386.h:
28315 * m/symmetry.h:
28316 * m/tad68k.h:
28317 * m/tahoe.h:
28318 * m/targon31.h:
28319 * m/tek4300.h:
28320 * m/tekxd88.h:
28321 * m/tower32.h:
28322 * m/tower32v3.h:
28323 * m/ustation.h:
28324 * m/wicat.h:
28325 * m/xps100.h:
28326 * s/cxux.h:
28327 * s/cxux7.h:
28328 * s/dgux.h:
28329 * s/dgux4.h:
28330 * s/dgux5-4-3.h:
28331 * s/dgux5-4r2.h:
28332 * s/esix.h:
28333 * s/esix5r4.h:
28334 * s/hiuxmpp.h:
28335 * s/hiuxwe2.h:
28336 * s/iris3-5.h:
28337 * s/iris3-6.h:
28338 * s/isc2-2.h:
28339 * s/isc3-0.h:
28340 * s/isc4-0.h:
28341 * s/isc4-1.h:
28342 * s/newsos5.h:
28343 * s/newsos6.h:
28344 * s/osf1.h:
28345 * s/osf5-0.h:
28346 * s/riscix1-1.h:
28347 * s/riscix12.h:
28348 * s/sco4.h:
28349 * s/sco5.h:
28350 * s/sunos4-0.h:
28351 * s/sunos4-1.h:
28352 * s/sunos413.h:
28353 * s/sunos4shr.h:
28354 * s/umax.h:
28355 * s/unipl5-2.h:
28356 * s/xenix.h:
28357 * cxux-crt0.s:
28358 * unexapollo.c:
28359 * unexconvex.c:
28360 * unexenix.c:
28361 * unexsni.c: Remove files for systems no longer supported.
28362
28363 * m/intel386.h: Remove references to unsupported systems.
28364
28365 * w32.c (get_emacs_configuration): Remove reference to i860.
28366
28367 * sysdep.c: Remove dead code.
28368
283692008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
28370
28371 * s/rtu.h:
28372 * m/masscomp.h: Remove files. Platform is obsolete.
28373
283742008-01-04 Michael Albinus <michael.albinus@gmx.de>
28375
28376 * dbusbind.c (Fdbus_method_return): New function.
28377 (xd_read_message): Add the serial number to the event.
28378 (Fdbus_register_method): Activate the function.
28379
283802008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
28381
28382 * keyboard.c (read_key_sequence): Fix typo.
28383
283842008-01-03 Michael Albinus <michael.albinus@gmx.de>
28385
28386 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
28387 (xd_signature, xd_append_arg): Handle element type detection for
28388 empty arrays.
28389 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
28390 SDATA () calls; this must be solved more general.
28391 (Fdbus_register_signal): Use SBYTES instead of strlen.
28392
283932008-01-03 Magnus Henoch <magnus@zemdatav>
28394
28395 * dbusbind.c (xd_append_arg): Use unsigned char instead of
28396 unsigned int for byte values (necessary for big-endian platform).
28397 (Fdbus_call_method): Handle the case of no returned arguments.
28398
283992007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
28400
28401 * dbusbind.c (xd_read_message): Use non-static input_event struct.
28402
284032007-12-31 Magnus Henoch <mange@freemail.hu>
28404
28405 * dbusbind.c (xd_signature): Signature of variant is just "v".
28406
284072007-12-30 Michael Albinus <michael.albinus@gmx.de>
28408
28409 * dbusbind.c: Fix several errors and compiler warnings.
28410 Reported by Tom Tromey <tromey@redhat.com>.
28411 (XD_ERROR, XD_DEBUG_MESSAGE)
28412 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
28413 (xd_append_arg): Part for basic D-Bus types rewritten.
28414 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
28415 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
28416 appropriate.
28417 (xd_read_message): Return Qnil. Don't signal an error; it is not
28418 useful during event reading.
28419 (Fdbus_register_signal): Signal an error if the check for
28420 FUNCTIONP fails.
28421 (Fdbus_register_method): New function. The implementation is not
28422 complete, the call of the function signals an error therefore.
28423 (Fdbus_unregister_object): New function, renamed from
28424 Fdbus_unregister_signal. The initial check signals an error, if
28425 the object is not well formed.
28426
284272007-12-30 Richard Stallman <rms@gnu.org>
28428
28429 * textprop.c (get_char_property_and_overlay):
28430 Signal error if POSITION is out of range in a buffer.
28431
284322007-12-29 Martin Rudalics <rudalics@gmx.at>
28433
28434 * w32fns.c (Fx_create_frame): Make copy of frame parameters
28435 because the original parameters are in pure storage now.
28436
284372007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28438
28439 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
28440
284412007-12-22 Eli Zaretskii <eliz@gnu.org>
28442
28443 * callint.c (syms_of_callint) <command-history>: Add reference to
28444 history-length in the doc string.
28445
284462007-12-17 Jason Rumney <jasonr@gnu.org>
28447
28448 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
28449 before passing as wParam.
28450
284512007-12-22 Michael Albinus <michael.albinus@gmx.de>
28452
28453 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
28454 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
28455 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
28456 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
28457 as number.
28458 (Fdbus_call_method): Fix docstring.
28459
284602007-12-21 Michael Albinus <michael.albinus@gmx.de>
28461
28462 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
28463 New macros.
28464 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
28465 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
28466 Simplify.
28467 (xd_signature): New function.
28468 (xd_append_arg): Compute also signatures. Major rewrite.
28469 (xd_retrieve_arg): Make debug messages friendly.
28470 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
28471 Check for signatures of arguments.
28472
284732007-12-19 Michael Albinus <michael.albinus@gmx.de>
28474
28475 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
28476 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
28477 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
28478 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
28479 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
28480 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
28481 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
28482 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
28483 (xd_retrieve_value): Remove. Functionality included in ...
28484 (xd_append_arg): New function.
28485 (Fdbus_call_method, Fdbus_send_signal): Apply it.
28486
284872007-12-16 Michael Albinus <michael.albinus@gmx.de>
28488
28489 * dbusbind.c (top): Include <stdio.h>.
28490 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
28491 dbus_message_new_method_call and dbus_message_new_signal.
28492 (Fdbus_register_signal): Rename unique_name to uname.
28493 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
28494 non-existing unique name. Fix typos in matching rule. Return an
28495 object which is useful in Fdbus_unregister_signal.
28496 (Fdbus_unregister_signal): Reimplementation, in order to remove
28497 only the corresponding entry.
28498 (Vdbus_registered_functions_table): Change the order of entries.
28499 Apply these changes in xd_read_message and Fdbus_register_signal.
28500
285012007-12-16 Andreas Schwab <schwab@suse.de>
28502
28503 * fileio.c (Finsert_file_contents): Fix overflow check to not
28504 depend on undefined integer overflow.
28505
285062007-12-14 Jason Rumney <jasonr@gnu.org>
28507
28508 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
28509 for characters above 127.
28510
285112007-12-13 Jason Rumney <jasonr@gnu.org>
28512
28513 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
28514 before dereferencing array.
28515 (lookup_vk_code): Remove zero comparison.
28516
285172007-12-14 Michael Albinus <michael.albinus@gmx.de>
28518
28519 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
28520 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
28521 Use `unsigned int' instead of `uint'.
28522 (xd_read_message, Fdbus_register_signal): Split expressions into
28523 multiple lines before operators "&&" and "||", according to the
28524 GNU Coding Standards.
28525
285262007-12-14 Eli Zaretskii <eliz@gnu.org>
28527
28528 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
28529
285302007-12-12 Juri Linkov <juri@jurta.org>
28531
28532 * buffer.c (Frename_buffer): In interactive spec replace
28533 `read-buffer' with `read-string' that uses `buffer-name-history'
28534 as history, and the current buffer's name as default.
28535
285362007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
28537
28538 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
28539 manipulating the backtrace manually.
28540 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
28541 (struct backtrace, backtrace_list): Remove.
28542 (command_loop_1): Remove dead var `no_direct'.
28543
28544 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
28545 preserve non-built-in buffer-local variables.
28546 (Fkill_all_local_variables): Don't re-create&re-set permanent
28547 buffer-local variables.
28548
285492007-12-09 Juri Linkov <juri@jurta.org>
28550
28551 * buffer.c (Frename_buffer): Change interactive spec from "s" to
28552 Lisp code that uses `read-buffer' with current buffer as default.
28553
285542007-12-08 Michael Albinus <michael.albinus@gmx.de>
28555
28556 * dbusbind.c (xd_read_message): Generate an event for every
28557 registered handler. There might be several handlers registered
28558 for the same signal.
28559 (Fdbus_register_signal): Don't overwrite a registration for the
28560 same signal. Add a new registration if handlers are different.
28561 (Vdbus_registered_functions_table): Rework doc string.
28562
285632007-12-07 Michael Albinus <michael.albinus@gmx.de>
28564
28565 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
28566 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
28567 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
28568 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
28569 Unify argument lists.
28570 (xd_read_message, Fdbus_register_signal): Reorder and extend event
28571 arguments and hash table keys. Use unique name for service.
28572 (Fdbus_unregister_signal): Remove checks.
28573 (Vdbus_registered_functions_table): Fix doc string.
28574
285752007-12-05 Magnus Henoch <mange@freemail.hu>
28576
28577 * process.c (make_process): Initialize pty_flag to 0.
28578
285792007-12-05 Jason Rumney <jasonr@gnu.org>
28580
28581 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
28582 specified XBMs.
28583
285842007-12-05 Richard Stallman <rms@gnu.org>
28585
28586 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
28587
285882007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28589
28590 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
28591 New variable.
28592 (mac_try_close_socket) [MAC_OSX]: New function.
28593 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
28594 Update cfsockets_for_select. Replace invalid CFRunLoop source.
28595
28596 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
28597 Use mac_try_close_socket.
28598
285992007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28600
28601 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
28602 reloc_base.
28603 (copy_dysymtab): Compute relocation base here.
28604 (rebase_reloc_address) [__ppc64__]: New function.
28605 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
28606 changed.
28607
286082007-12-05 Jason Rumney <jasonr@gnu.org>
28609
28610 * w32proc.c (sys_spawnve): Quote args with wildcards.
28611
286122007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28613
28614 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
28615 __objc_* sections.
28616 (unrelocate) [_LP64]: Set relocation base to address of data segment.
28617
286182007-12-05 Michael Albinus <michael.albinus@gmx.de>
28619
28620 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
28621 Move check for Vdbus_registered_functions_table to
28622 xd_read_queued_messages.
28623 (xd_read_queued_messages): Protect xd_read_message calls by
28624 internal_condition_case_1.
28625
286262007-12-04 Michael Albinus <michael.albinus@gmx.de>
28627
28628 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
28629 Qdbus_system_bus and Qdbus_session_bus, respectively.
28630 (Vdbus_intern_symbols): Remove.
28631 (Vdbus_registered_functions_table): New hash table.
28632 (XD_SYMBOL_INTERN_SYMBOL): Remove.
28633 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
28634 Rewrite in order to manage registered functions by hash table
28635 Vdbus_registered_functions_table.
28636
286372007-12-03 Jan Djärv <jan.h.d@swipnet.se>
28638
28639 * xterm.c: Update URL to Window Manager Specification in comment.
28640
286412007-12-02 Michael Albinus <michael.albinus@gmx.de>
28642
28643 * config.in (HAVE_DBUS): Add.
28644
28645 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
28646 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
28647 (obj): Add $(DBUS_OBJ).
28648 (LIBES): Add $(DBUS_LIBS).
28649 (dbusbind.o): New target.
28650
28651 * dbusbind.c: New file.
28652
28653 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
28654
28655 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
28656 (Qdbus_event): New Lisp symbol.
28657 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
28658 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
28659 (keys_of_keyboard): Define dbus-event.
28660
28661 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
28662
286632007-12-01 Richard Stallman <rms@gnu.org>
28664
28665 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
28666
286672007-11-30 Jason Rumney <jasonr@gnu.org>
28668
28669 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
28670 (w32con_reset_terminal_modes): Clear screen buffer.
28671 (w32_face_attributes): Don't use color indexes that are out of range.
28672 Only reverse the default colors.
28673
28674 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
28675 WINDOWSNT.
28676
28677 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
28678
286792007-11-29 Jason Rumney <jasonr@gnu.org>
28680
28681 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
28682 (w32_face_attributes): Use Vtty_defined_color_alist to determine
28683 if the terminal colors are initialized.
28684 (unspecified_fg, unspecified_bg): Remove unused declarations.
28685
286862007-11-29 Andreas Schwab <schwab@suse.de>
28687
28688 * keyboard.c (apply_modifiers): Fix typo.
28689
286902007-11-29 Richard Stallman <rms@gnu.org>
28691
28692 * keymap.c (Fcurrent_local_map): Doc fix.
28693
286942007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
28695
28696 * s/gnu-kfreebsd.h: New file.
28697
286982007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
28699
28700 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
28701 Don't cast redundantly.
28702
28703 * keyboard.c (KEY_TO_CHAR): New macro.
28704 (parse_modifiers, apply_modifiers): Accept integer arguments.
28705 (read_key_sequence): Use them to unify the "shift->unshift" mapping
28706 for chars and symbol keys.
28707 After doing such remapping, apply function-key-map again.
28708
287092007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
28710
28711 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
28712 compiled anymore.
28713
287142007-11-26 Andreas Schwab <schwab@suse.de>
28715
28716 * process.c (list_processes_1): Fix indentation level of the
28717 command column.
28718
287192007-11-23 Andreas Schwab <schwab@suse.de>
28720
28721 * editfns.c (Fformat): Handle %c specially since it requires the
28722 argument to be of type int.
28723
287242007-11-23 Markus Triska <markus.triska@gmx.at>
28725
28726 * emacs.c (main): Call init_editfns before init_process, since
28727 init_process sets Vprocess_connection_type depending on OS release.
28728
287292007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
28730
28731 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
28732 (find_symbol_value): Use do_symval_forwarding.
28733
28734 * data.c (set_internal): Set the value in the `cons-cell' (for
28735 Buffer_Local_values) not only for frame-local variables.
28736
287372007-11-22 Andreas Schwab <schwab@suse.de>
28738
28739 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
28740 values to sprintf.
28741 * keymap.c (Fsingle_key_description): Likewise.
28742 * print.c (print_object): Likewise.
28743
287442007-11-22 Jan Djärv <jan.h.d@swipnet.se>
28745
28746 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
28747 file for image is nil.
28748
287492007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
28750
28751 * term.c: Include stdarg.h.
28752 (fatal): Implement using varargs.
28753 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
28754
287552007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
28756
28757 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
28758 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
28759 Update call to buffer_slot_type_mismatch.
28760 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
28761 (buffer_slot_type_mismatch): Update.
28762 * buffer.c (buffer_local_types): Remove.
28763 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
28764 (defvar_per_buffer): Set the type in the buffer_objfwd.
28765
287662007-11-21 Jason Rumney <jasonr@gnu.org>
28767
28768 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
28769 CreateFileMapping returns NULL on failure.
28770
287712007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
28772
28773 * search.c (Fset_match_data): Remove the `evaporate' feature.
28774 (unwind_set_match_data): Don't use the `evaporate' feature.
28775
287762007-11-21 Jason Rumney <jasonr@gnu.org>
28777
28778 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
28779
28780 * w32console.c (w32con_write_glyphs): Remove unused variables.
28781
287822007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
28783
28784 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
28785
28786 * s/darwin.h (MULTI_KBOARD): Remove.
28787
28788 * macfns.c (x_create_tip_frame, Fx_create_frame)
28789 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
28790
287912007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
28792
28793 * buffer.c (Fbuffer_local_value): Remove redundant test.
28794 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
28795 than in `current-buffer' to match the comment.
28796 Do the swap using swap_in_global_binding.
28797
28798 * data.c (store_symval_forwarding, set_internal):
28799 * eval.c (specbind): Remove dead code.
28800
28801 * coding.c (detect_coding, Fupdate_coding_systems_internal):
28802 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
28803 Since we do not want to see internal Lisp_*fwd objects here.
28804
288052007-11-18 Jan Djärv <jan.h.d@swipnet.se>
28806
28807 * sysdep.c (init_system_name): Use getaddrinfo if available.
28808
28809 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
28810 (x_scroll_bar_note_movement): start, end, with, height in struct
28811 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
28812
288132007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
28814
28815 * puresize.h (BASE_PURESIZE): Increase to 1190000.
28816
288172007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
28818
28819 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
28820 This undoes Richard's change of 14-Oct-2002.
28821
28822 * alloc.c (allocate_other_vector):
28823 * lisp.h (allocate_other_vector): Remove.
28824
28825 * window.c (struct save_window_data): Move non-lisp data to the end
28826 and make it `int' rather than Lisp_Object.
28827 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
28828 Done wrap/unwrap integer values.
28829 (Fset_window_configuration, compare_window_configurations):
28830 Update use of fields to their new types.
28831
28832 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
28833 Turn integer fields into `int'. Merge x_window_low and x_window_high.
28834 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
28835 (SET_SCROLL_BAR_X_WINDOW): Remove.
28836 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
28837 Access the new x_window field directly.
28838 * xterm.c (x_scroll_bar_create): Use a pseudovector.
28839 Don't wrap/unwrap integers into Lisp_Objects.
28840 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
28841 (x_scroll_bar_report_motion):
28842 Don't wrap/unwrap integers into Lisp_Objects.
28843 (x_term_init): Use SDATA.
28844 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
28845 (x_scroll_bar_set_handle, x_scroll_bar_remove)
28846 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
28847 (x_scroll_bar_report_motion, x_scroll_bar_clear):
28848 * xfns.c (x_set_background_color):
28849 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
28850 Access the new x_window field directly.
28851
28852 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
28853 (allocate_pseudovector): Make non-static.
28854
28855 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
28856 (allocate_pseudovector): Declare.
28857 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
28858
288592007-11-15 Andreas Schwab <schwab@suse.de>
28860
28861 * editfns.c (Fformat): Correctly format EMACS_INT values.
28862 Also take precision into account when formatting an integer.
28863
28864 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
28865
288662007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
28867
28868 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
28869 (syms_of_keyboard): Defsubr it.
28870
28871 * data.c (swap_in_global_binding): Fix longstanding bug where
28872 store_symval_forwarding was not called with the right second argument,
28873 thus causing objfwd-ing from being dropped.
28874
288752007-11-14 Juanma Barranquero <lekktu@gmail.com>
28876
28877 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
28878 (Fx_display_pixel_height, Fx_display_planes)
28879 (Fx_display_color_cells, Fx_server_max_request_size)
28880 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
28881 (Fx_display_visual_class, Fx_display_save_under):
28882 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
28883 (Fx_display_pixel_height, Fx_display_planes)
28884 (Fx_display_color_cells, Fx_server_max_request_size)
28885 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
28886 (Fx_display_mm_height, Fx_display_mm_width)
28887 (Fx_display_backing_store, Fx_display_visual_class)
28888 (Fw32_select_font, Fx_display_save_under):
28889 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
28890 (Fx_display_pixel_height, Fx_display_planes)
28891 (Fx_display_color_cells, Fx_server_max_request_size)
28892 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
28893 (Fx_display_save_under): Fix typos in docstrings.
28894
288952007-11-14 Juanma Barranquero <lekktu@gmail.com>
28896
28897 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
28898 corresponding to deleted entries; they are an implementation detail.
28899 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
28900 Remove variables.
28901 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
28902 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
28903 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
28904 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
28905 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
28906 (Fw32_define_rgb_color, Fw32_load_color_file)
28907 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
28908 Fix typos in docstrings.
28909 (Fx_server_version): Reflow docstring.
28910 (Fw32_shell_execute): Doc fixes.
28911
289122007-11-13 Juanma Barranquero <lekktu@gmail.com>
28913
28914 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
28915 if w32_parse_hot_key returned nil.
28916
289172007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
28918
28919 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
28920
289212007-11-09 Jason Rumney <jasonr@gnu.org>
28922
28923 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
28924
28925 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
28926
28927 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
28928 Remove W32_SCROLL_BAR_CLICK_EVENT.
28929
28930 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
28931 Add MULTIMEDIA_KEY_EVENT.
28932
28933 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
28934 (lispy_multimedia_keys) [WINDOWSNT]: New array.
28935 (make_lispy_event) [WINDOWSNT]: Use it to translate
28936 MULTIMEDIA_KEY_EVENT.
28937
28938 * w32term.h (WM_APPCOMMAND): Define if not already.
28939 (GET_APPCOMMAND_LPARAM): Likewise.
28940
28941 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
28942 WM_APPCOMMAND.
28943
28944 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
28945 (syms_of_w32fns): Export and initialize it.
28946 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
28947
289482007-11-09 Chong Yidong <cyd@stupidchicken.com>
28949
28950 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
28951 twice.
28952
28953 * xdisp.c (handle_face_prop): Fix last change.
28954
289552007-11-09 Richard Stallman <rms@gnu.org>
28956
28957 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
28958 not just for after-strings and before-strings.
28959 Call face_for_overlay_string and pass the overlay to it.
28960 (handle_display_prop): Determine whether property came from an overlay.
28961 Pass OVERLAY arg to handle_single_display_spec.
28962 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
28963 (load_overlay_strings): Fill in it->string_overlays.
28964 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
28965
28966 * xfaces.c (face_for_overlay_string): Function renamed from
28967 face_at_buffer_position_no_overlays, and add arg OVERLAY.
28968
28969 * dispextern.h (struct it): New elt string_overlays.
28970 New elt from_overlay, also in stack.
28971 Rearrange a few elements.
28972 (face_for_overlay_string): Decl renamed from
28973 face_at_buffer_position_no_overlays, and add argument.
28974
289752007-11-09 Richard Stallman <rms@gnu.org>
28976
28977 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
28978 to get the base face for an overlay string.
28979
28980 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
28981
28982 * xfaces.c (face_at_buffer_position_no_overlays): New function.
28983
28984 * xdisp.c (handle_stop): Move some code out of loop.
28985
289862007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28987
28988 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
28989 Fix conversion from Lisp object to ATSUFontID.
28990
289912007-11-09 Jason Rumney <jasonr@gnu.org>
28992
28993 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
28994
289952007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28996
28997 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
28998 Don't assume regions are aligned to page boundary.
28999 (print_load_command_name): Add LC_UUID if defined.
29000
290012007-11-09 Richard Stallman <rms@gnu.org>
29002
29003 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
29004
290052007-11-07 Jason Rumney <jasonr@gnu.org>
29006
29007 * s/windows95.h: Remove.
29008
290092007-11-06 Jan Djärv <jan.h.d@swipnet.se>
29010
29011 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
29012 abort with a message on unhandled store_type values.
29013
290142007-11-01 Jan Djärv <jan.h.d@swipnet.se>
29015
29016 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
29017 Remove HAVE_X11R5 and HAVE_X11R4.
29018
290192007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29020
29021 * Makefile.in: Remove references to sunfns.c and sunfns.o.
29022
290232007-11-01 Johan Bockgård <bojohan@gnu.org>
29024
29025 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
29026 Don't set s->stippled_p here, since it has already been set by
29027 x_set_glyph_string_gc from x_draw_glyph_string.
29028
290292007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29030
29031 * sunfns.c: Remove file.
29032
29033 * m/sun386.h:
29034 * m/sun2.h:
29035 * m/sparc.h: Remove Sun windows code.
29036
290372007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
29038
29039 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
29040 (init_keyboard): Set current_kboard's window-system to nil.
29041 (tty_read_avail_input): Typo.
29042 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
29043
290442007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
29045
29046 * s/usg5-4.h:
29047 * s/usg5-3.h:
29048 * s/ptx.h:
29049 * m/is386.h:
29050 * m/ibmps2-aix.h:
29051 * Makefile.in: Remove all mentions of X10.
29052
29053 * dispnew.c (syms_of_display): Don't mention version 10.
29054
290552007-10-28 Juanma Barranquero <lekktu@gmail.com>
29056
29057 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
29058 ($(BLD)/abbrev.$(O)): Remove.
29059
290602007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
29061
29062 Rewrite abbrev.c in Elisp.
29063 * image.c (Qcount): Don't declare as extern.
29064 (syms_of_image): Initialize and staticpro `Qcount'.
29065 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
29066 * emacs.c (main): Don't call syms_of_abbrev.
29067 * Makefile.in (obj): Remove abbrev.o.
29068 (abbrev.o): Remove.
29069 * abbrev.c: Remove.
29070
290712007-10-26 Martin Rudalics <rudalics@gmx.at>
29072
29073 * window.c (window_min_size_2): Don't count header-line.
29074
290752007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
29076
29077 * frame.h (struct frame): Move all bit fields after the first bit
29078 field to take advantage of the available space. Group all the
29079 chars together to reduce wasted space due to padding.
29080
290812007-10-26 Juanma Barranquero <lekktu@gmail.com>
29082
29083 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
29084
29085 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
29086 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
29087 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
29088 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
29089 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
29090 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
29091 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
29092 (last_marked, mark_object_loop_halt): Make static.
29093
29094 * frame.c (syms_of_frame) <delete-frame-functions>:
29095 Fix typo in docstring.
29096
290972007-10-25 Juanma Barranquero <lekktu@gmail.com>
29098
29099 * w32.c (init_environment): Fix tiny memory leak.
29100 (w32_get_resource): Remove unused variable `ok'.
29101
291022007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
29103
29104 Make `window-system' into a keyboard-local variable (rather than
29105 frame-local as done originally by multi-tty).
29106
29107 * keyboard.h (struct kboard): Add Vwindow_system.
29108 * keyboard.c (init_kboard): Set a default for Vwindow_system.
29109 (mark_kboards): Mark Vwindow_system.
29110
29111 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
29112 (init_display): Don't set the obsolete `window-system' frame-param.
29113
29114 * xterm.c (x_term_init):
29115 * w32term.c (w32_create_terminal):
29116 * term.c (init_tty): Set Vwindow_system.
29117 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
29118 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
29119
29120 * xfns.c (Fx_create_frame, x_create_tip_frame):
29121 * w32fns.c (Fx_create_frame, x_create_tip_frame):
29122 * macfns.c (Fx_create_frame):
29123 Don't set the obsolete `window-system' frame-param.
29124
29125 * frame.h (Qwindow_system): Remove.
29126 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
29127 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
29128
291292007-10-24 Richard Stallman <rms@gnu.org>
29130
29131 * frame.c (x_figure_window_size): For fullscreen case,
29132 set USPosition | PPosition without clobbering rest of window_prompting.
29133
29134 * keyboard.c (Fcurrent_idle_time): Doc fix.
29135
29136 * print.c (Fwith_output_to_temp_buffer): Doc fix.
29137
291382007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
29139
29140 * process.c (unwind_request_sigio): Only define if __ultrix__.
29141
29142 * callproc.c (child_setup): Remove spurious *.
29143
29144 * lisp.h (Fget_text_property): Declare.
29145 (have_menus_p): Declare it here rather than in sys-dep header files.
29146 * macterm.h (have_menus_p):
29147 * msdos.h (have_menus_p):
29148 * xterm.h (have_menus_p): Remove.
29149
29150 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
29151 (Fmake_variable_frame_local): Just check the variable's const-ness
29152 rather than checking nil or t.
29153
291542007-10-22 Jason Rumney <jasonr@gnu.org>
29155
29156 * w32fns.c: Include math.h.
29157 (w32_abort): Declaration moved to nt/config.nt.
29158
29159 * s/ms-w32.h (HAVE_STDLIB_H): Define.
29160 (abort): Redefinition moved to nt/config.nt.
29161
29162 * m/windowsnt.h: Remove.
29163
291642007-10-22 Juanma Barranquero <lekktu@gmail.com>
29165
29166 * emacs.c (Fdump_emacs): Fix typo in message.
29167 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
29168 <installation-directory>: Reflow docstring.
29169
291702007-10-22 Juri Linkov <juri@jurta.org>
29171
29172 * minibuf.c: Allow minibuffer default to be a list of default values.
29173 With empty input use the first element of this list as returned default.
29174 (string_to_object)
29175 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
29176 (read_minibuf): If defalt is cons, set histstring to its car.
29177 (Fread_string): If default_value is cons, set val to its car.
29178 (Fread_buffer): If def is cons, use its car.
29179 (Fcompleting_read): If defalt is cons, set val to its car.
29180
291812007-10-21 Michael Albinus <michael.albinus@gmx.de>
29182
29183 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
29184
291852007-10-20 Juanma Barranquero <lekktu@gmail.com>
29186
29187 * doc.c (Fdocumentation): Check for advice in all cases.
29188
291892007-10-19 Chong Yidong <cyd@stupidchicken.com>
29190
29191 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
29192
291932007-10-19 Richard Stallman <rms@gnu.org>
29194
29195 * doc.c (Fdocumentation): Check for and handle an advised function.
29196
291972007-10-19 Juanma Barranquero <lekktu@gmail.com>
29198
29199 * process.c (Fset_process_filter): Doc fix.
29200
292012007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
29202
29203 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
29204 which caused key-translation-map to applied repeatedly (thus breaking
29205 double-mode).
29206
292072007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29208
29209 * xselect.c (x_own_selection, x_handle_selection_clear)
29210 (x_clear_frame_selections):
29211 * w32menu.c (list_of_panes, list_of_items):
29212 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
29213 * textprop.c (validate_plist, interval_has_all_properties)
29214 (interval_has_some_properties, interval_has_some_properties_list)
29215 (add_properties, text_property_list):
29216 * process.c (Fget_buffer_process, list_processes_1, status_notify):
29217 * minibuf.c (Fassoc_string):
29218 * macselect.c (x_own_selection, x_clear_frame_selections)
29219 (Fx_disown_selection_internal):
29220 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
29221 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
29222
292232007-10-17 Chong Yidong <cyd@stupidchicken.com>
29224
29225 * process.c: Link to libs for calling res_init() if available.
29226 (Fmake_network_process): Call res_init() before getaddrinfo or
29227 gethostbyname, if possible.
29228
292292007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29230
29231 * lread.c (read1): Set pvectype for char_tables.
29232
29233 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
29234 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
29235 Add type checks.
29236 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
29237
29238 * alloc.c (free_misc): Use XMISCTYPE.
29239 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
29240
292412007-10-17 Glenn Morris <rgm@gnu.org>
29242
29243 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
29244 (syms_of_minibuf): Add Qcompletion_ignore_case.
29245 * dired.c (Qcompletion_ignore_case): Change to external.
29246 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
29247 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
29248 (Fread_file_name): Use it rather than intern'ing.
29249
29250 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
29251 (Fread_coding_system): Ignore case of user input.
29252
292532007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29254
29255 * xdisp.c (handle_display_prop): Ignore display specs after
29256 replacing one when string text is being replaced.
29257 (handle_single_display_spec): Pretend as if characters with display
29258 property haven't been consumed only when buffer text is being replaced.
29259
292602007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
29261
29262 * xfns.c (Fx_create_frame, Fx_display_list):
29263 * window.c (window_fixed_size_p, enlarge_window)
29264 (shrink_window_lowest_first):
29265 * macterm.c (init_font_name_table):
29266 * macfns.c (Fx_create_frame, Fx_display_list):
29267 * lread.c (close_load_descs):
29268 * keyboard.c (read_char_x_menu_prompt):
29269 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
29270 * coding.c (code_convert_region_unwind): Test the type of an object
29271 rather than just !NILP before extracting data from it.
29272
29273 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
29274
29275 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
29276 (XMISCANY): New macro.
29277 (XMISCTYPE): Use it.
29278 (struct Lisp_Misc_Any): New type.
29279 (union Lisp_Misc): Use it.
29280 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
29281 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
29282 (find_symbol_value, set_internal, default_value, Fset_default)
29283 (Fmake_variable_buffer_local, Fmake_local_variable)
29284 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
29285 (Flocal_variable_if_set_p, Fvariable_binding_locus):
29286 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
29287 * alloc.c (allocate_buffer): Set the size and tag.
29288 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
29289 Use XMISCANY.
29290 (die): Follow the GNU convention for error messages.
29291 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
29292 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
29293 tag any more.
29294 (set_buffer_internal_1):
29295 * frame.c (store_frame_param):
29296 * eval.c (specbind):
29297 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
29298
29299 * doc.c (Fsnarf_documentation): Simplify.
29300
293012007-10-14 Juanma Barranquero <lekktu@gmail.com>
29302
29303 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
29304 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
29305
293062007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
29307
29308 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
29309
293102007-10-14 Juanma Barranquero <lekktu@gmail.com>
29311
29312 * eval.c (do_autoload): Don't save autoloads.
29313
29314 * data.c (Ffset): Save autoload of the function being set.
29315
293162007-10-07 John Paul Wallington <jpw@pobox.com>
29317
29318 * xfns.c (x_create_tip_frame): Set the `display-type' frame
29319 parameter before setting up faces.
29320
293212007-10-13 Eli Zaretskii <eliz@gnu.org>
29322
29323 * ccl.c (Fregister_code_conversion_map):
29324 * keyboard.c (append_tool_bar_item): Reformat last change.
29325
29326 * lisp.h (eabs): Rename from `abs'. All callers changed.
29327
293282007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
29329
29330 * buffer.c (add_overlay_mod_hooklist):
29331 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
29332 * fontset.c (make_fontset):
29333 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
29334 (append_tool_bar_item):
29335 * macmenu.c (grow_menu_items):
29336 * w32menu.c (grow_menu_items):
29337 * xmenu.c (grow_menu_items): Use larger_vector.
29338
293392007-10-13 Eli Zaretskii <eliz@gnu.org>
29340
29341 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
29342 selected frame'' on MSDOS).
29343
293442007-10-12 Martin Rudalics <rudalics@gmx.at>
29345
29346 * frame.c (Qexplicit_name): New variable.
29347 (x_report_frame_params): Report it in parameter alist.
29348 (syms_of_frame): Intern and staticpro it.
29349
293502007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
29351
29352 * macfns.c (x_create_tip_frame): Set terminal for frame.
29353
293542007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
29355
29356 * frame.c (Qenvironment): Remove.
29357 (syms_of_frame) <Qenvironment>: Don't initialize.
29358 (Fdelete_frame): Don't treat the `environment' param specially.
29359 * frame.h (Qenvironment): Don't declare.
29360 * callproc.c (set_initial_environment): Don't set unused frame param.
29361
29362 * frame.c (Fframe_with_environment): Remove.
29363 (syms_of_frame) <Sframe_with_environment>: Don't declare.
29364
29365 * lisp.h (Fframe_with_environment): Don't declare.
29366
293672007-10-10 Juanma Barranquero <lekktu@gmail.com>
29368
29369 * indent.c (indent_tabs_mode, last_known_column)
29370 (last_known_column_modified): Make static.
29371 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
29372
293732007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
29374
29375 * puresize.h (BASE_PURESIZE): Increase to 1170000.
29376
293772007-10-09 Jason Rumney <jasonr@gnu.org>
29378
29379 * w32term.c (x_set_window_size): Disable code that attempts to tell
29380 Lisp code about a size change before it actually happens.
29381
293822007-10-09 Richard Stallman <rms@gnu.org>
29383
29384 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
29385 return HANDLED_RETURN.
29386
293872007-10-08 Martin Rudalics <rudalics@gmx.at>
29388
29389 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
29390 when there's an unread command event.
29391
29392 * frame.c (focus_follows_mouse): Move here from frame.el to allow
29393 window autoselection act appropriately when leaving selected frame.
29394 (syms_of_frame): Initialize focus_follows_mouse.
29395 * frame.h (focus_follows_mouse): Extern it.
29396 * macterm.c (XTread_socket): When focus_follows_mouse is nil
29397 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
29398 * msdos.c (dos_rawgetc): Likewise.
29399 * w32term.c (w32_read_socket): Likewise.
29400 * xterm.c (handle_one_xevent): Likewise.
29401 * xdisp.c (syms_of_xdisp): In doc-string of
29402 mouse-autoselect-window mention focus-follows-mouse.
29403
294042007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29405
29406 * macterm.c (mac_load_query_font): Fix missing return value.
29407 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
29408 Add BLOCK_INPUT.
29409
294102007-10-08 Richard Stallman <rms@gnu.org>
29411
29412 * xdisp.c (get_window_cursor_type): Implement documented behavior
29413 for cursor-in-non-selected-windows = t.
29414
294152007-10-08 Jason Rumney <jasonr@gnu.org>
29416
29417 * w32.c (w32_get_resource): Always close registry keys.
29418
294192007-10-08 Jason Rumney <jasonr@gnu.org>
29420
29421 * makefile.w32-in (LIBS): Add COMCTL32.
29422
29423 * w32fns.c (globals_of_w32fns): Init common controls.
29424
294252007-10-08 Richard Stallman <rms@gnu.org>
29426
29427 * image.c (our_memory_buffer): Rename from omfib_buffer.
29428
294292007-10-08 Richard Stallman <rms@gnu.org>
29430
29431 * buffer.c (Foverlays_at): Doc fix.
29432
294332007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
29434
29435 * fns.c (Fplist_put): Preserve uneven tail data.
29436
294372007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
29438
29439 * termhooks.h (enum event_kind): Remove trailing comma.
29440
29441 * frame.h (enum): Remove trailing comma.
29442
294432007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
29444
29445 * w32proc.c (delete_child): Don't terminate threads of zombies.
29446
294472007-10-08 Martin Rudalics <rudalics@gmx.at>
29448
29449 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
29450
29451 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
29452 last-repeatable-command.
29453 (init_kboard): Initialize Vlast_repeatable_command.
29454 (command_loop_1): Set it to real_this_command unless that was
29455 bound to an input event.
29456 (mark_kboards): Mark it.
29457
294582007-10-08 Richard Stallman <rms@gnu.org>
29459
29460 * eval.c (condition-case): Doc fix.
29461
294622007-10-08 Masatake YAMATO <jet@gyve.org>
29463
29464 * xfaces.c (tty_supports_face_attributes_p): Fix code
29465 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
29466 was copied and not edited.
29467
294682007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
29469
29470 Add new `input-decode-map' keymap and use it for terminal
29471 escape sequences.
29472 * keyboard.h (struct kboard): Add Vinput_decode_map.
29473 Remove Vlocal_key_translation_map.
29474 * keyboard.c (read_key_sequence): Add support for input-decode-map.
29475 (init_kboard): Init input-decode-map.
29476 Replace local-key-translation-map back with key-translation-map.
29477 (syms_of_keyboard): Declare input-decode-map.
29478 Remove local-key-translation-map. Update docstrings.
29479 (mark_kboards): Mark Vinput_decode_map.
29480 Don't mark Vlocal_key_translation_map.
29481 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
29482 Replace local-key-translation-map back with key-translation-map.
29483 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
29484 Bind in input-decode-map rather than function-key-map.
29485
29486 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
29487 This was made redundant by the previous introduction of XSETPVECTYPE.
29488
294892007-10-09 Richard Stallman <rms@gnu.org>
29490
29491 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
29492
294932007-09-29 Richard Stallman <rms@gnu.org>
29494
29495 * eval.c (internal_condition_case_2, internal_condition_case_1)
29496 (internal_condition_case): Reenable abort if x_catching_errors ()
29497 to see if that really happens and why.
29498
294992007-10-06 Andreas Schwab <schwab@suse.de>
29500
29501 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
29502
295032007-10-04 Juanma Barranquero <lekktu@gmail.com>
29504
29505 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
29506
295072007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
29508
29509 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
29510
295112007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
29512
29513 * window.h (struct window):
29514 * window.c (struct save_window_data, struct saved_window):
29515 * termhooks.h (struct terminal):
29516 * process.h (struct Lisp_Process):
29517 * frame.h (struct frame):
29518 * buffer.h (struct buffer):
29519 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
29520 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
29521 The size field of (pseudo)vectors is now unsigned.
29522 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
29523
29524 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
29525 Turn `count' into an integer.
29526
29527 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
29528 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
29529 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
29530 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
29531 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
29532
29533 * alloc.c (allocate_pseudovector): New fun.
29534 (ALLOCATE_PSEUDOVECTOR): New macro.
29535 (allocate_window, allocate_terminal, allocate_frame)
29536 (allocate_process): Use it.
29537 (mark_vectorlike): New function.
29538 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
29539 (mark_terminals): Use it.
29540 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
29541 (Fmake_byte_code): Use XSETPVECTYPE.
29542
29543 * frame.c (Fframe_parameters): Minor simplification.
29544
29545 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
29546
29547 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
29548
29549 * buffer.c (Fget_buffer_create, init_buffer_once):
29550 * lread.c (defsubr):
29551 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
29552
29553 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
29554 defined differently in the m/*.h files.
29555 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
29556 (XSETPVECTYPE): New macro.
29557 (XSETPSEUDOVECTOR): Use it.
29558
29559 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
29560 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
29561
29562 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
29563 * lread.c (defvar_per_buffer):
29564 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
29565
29566 * window.c (candidate_window_p): Only consider as visible frames that
29567 are on the same terminal.
29568
29569 * m/ibms390x.h (MARKBIT): Remove unused macro.
29570
295712007-10-01 Juanma Barranquero <lekktu@gmail.com>
29572
29573 * lread.c (Fload): Fix typo in docstring.
29574
295752007-10-01 Michaël Cadilhac <michael@cadilhac.name>
29576
29577 * floatfns.c (Fexpt): Manually check for overflows, so that a power
29578 of a non-zero value can't yield zero.
29579
295802007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
29581
29582 * term.c (term_clear_mouse_face, term_mouse_highlight)
29583 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
29584
29585 * print.c (safe_debug_print): Use XHASH.
29586
29587 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
29588 Lisp elements such as tags.
29589 (XHASH): New macro.
29590 (EQ): Use it.
29591 (SREF, SSET, STRING_COPYIN): Use SDATA.
29592 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
29593
29594 * alloc.c (mark_terminal): Remove left-over declaration.
29595 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
29596 (allocate_vectorlike): Remove type argument. Adjust callers.
29597 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
29598 Only handle the one remaining MEM_TYPE_VECTORLIKE.
29599
29600 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
29601 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
29602 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
29603 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
29604 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
29605 Use them.
29606
29607 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
29608 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
29609 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
29610
296112007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
29612
29613 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
29614 loaded by default.
29615
296162007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
29617
29618 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
29619 on this tty.
29620 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
29621
29622 * term.c (mouse_face_window): Rename from Qmouse_face_window.
29623 Update all users.
29624 (handle_one_term_event): Use Gpm_DrawPointer.
29625 (Fgpm_mouse_start): Rename from Fterm_open_connection.
29626 Signal errors instead of returning nil. Always return nil.
29627 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
29628 Make it a noop if gpm-mouse was not activated.
29629 (syms_of_term): Update names.
29630
296312007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
29632
29633 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
29634 (init_sys_modes): Check that gpm_tty is the current tty.
29635
29636 * alloc.c (allocate_terminal): Set the vector size to only count the
29637 lisp fields. Initialize those to nil.
29638 (mark_object): Don't treat terminals specially.
29639 (mark_terminal): Remove.
29640 (mark_terminals): Use mark_object instead.
29641
29642 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
29643 the GC to the beginning.
29644
29645 * indent.h:
29646 * indent.c: Use EMACS_INT for ints coming from Elisp data.
29647
29648 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
29649
296502007-09-25 Jason Rumney <jasonr@gnu.org>
29651
29652 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
29653
29654 * w32console.c (create_w32cons_output): Remove.
29655
29656 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
29657
29658 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
29659 (reset_sys_modes): Use reset_terminal_modes_hook.
29660
296612007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
29662
29663 * eval.c (do_autoload): Don't output any message.
29664
296652007-09-24 Juri Linkov <juri@jurta.org>
29666
29667 * emacs.c (standard_args): Change priority of "--no-splash"
29668 from 40 to 3. Add "--no-desktop" with the same priority.
29669
296702007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
29671
29672 * alloc.c (gc_sweep): Check cons cell mark bits word by word
29673 and optimize the case where they are all 1.
29674
296752007-09-23 Johannes Weiner <hannes@saeurebad.de>
29676
29677 * lisp.h (abs): Define if not defined.
29678 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
29679 Don't define `abs', since it's defined in lisp.h.
29680
296812007-09-22 Eli Zaretskii <eliz@gnu.org>
29682
29683 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
29684 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
29685 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
29686 (init_tty): Use DEV_TTY instead of "/dev/tty".
29687 [WINDOWSNT]: No need to protect from NAME arg being null.
29688
296892007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
29690
29691 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
29692 up the tty state.
29693
296942007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
29695
29696 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
29697 (gpm_tty): Change its type.
29698 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
29699 (gpm_tty): Change its type and initialize it.
29700 (Fterm_open_connection): Check the frame is indeed a tty.
29701 Use the new gpm_tty.
29702 (Fterm_close_connection): Use the new gpm_tty.
29703 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
29704 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
29705
297062007-09-21 Juanma Barranquero <lekktu@gmail.com>
29707
29708 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
29709 underline_color, to draw strike-through.
29710
297112007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
29712
29713 * lisp.h (allocate_terminal): Declare.
29714
29715 * window.c (candidate_window_p): Consider frames that are being placed
29716 by the user as somewhere between visible and iconified.
29717 (window_loop): Prefer windows on the current frame.
29718 (Fselect_window): Move the use of select-frame to the beginning so we
29719 can just delegate all the work (it'll call us back anyway).
29720
29721 * frame.c (Qdisplay_environment_variable):
29722 * frame.h (Qdisplay_environment_variable): Delete.
29723
29724 * .gdbinit (xbacktrace): Print the arg's address rather than the value
29725 of the first arg, since that value may be a union.
29726
29727 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
29728 parameter rather than Qdisplay_environment_variable. If all else
29729 fails, look for DISPLAY in initial-environment.
29730
297312007-09-21 Glenn Morris <rgm@gnu.org>
29732
29733 * Makefile.in (emacstool): Remove target.
29734 (lisp, shortlisp): Remove termdev.elc.
29735
297362007-09-21 Markus Triska <markus.triska@gmx.at>
29737
29738 * xterm.c (x_delete_display): Compile session management conditionally.
29739
297402007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
29741
29742 * callproc.c (getenv_internal_1): New function.
29743 (getenv_internal): Use it.
29744 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
29745
29746 * terminal.c (get_terminal): Don't accept ints to represent terminals.
29747 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
29748 (Fset_terminal_parameter): Work with dead terminals as well.
29749 (Fmodify_terminal_parameters): Remove.
29750
29751 * terminal.c (get_terminal): Handle terminals.
29752 Make sure the terminal returned is live.
29753 (create_terminal): Use allocate_terminal.
29754 (mark_terminals): Move to alloc.c.
29755 (delete_terminal): Use terminal->name as liveness status.
29756 NULL out fields after freeing their contents.
29757 Don't deallocate the object.
29758 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
29759 rather than an int.
29760 (Fterminal_live_p): Accept non-integer arguments.
29761 (Fterminal_list): Return terminal objects rather than an ints.
29762
29763 * alloc.c (enum mem_type): New member for `terminal' objects.
29764 (allocate_terminal): New function.
29765 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
29766 Handle terminals.
29767 (mark_terminal): New fun.
29768 (mark_terminals): Move from terminal.c.
29769
29770 * term.c (get_tty_terminal): Don't treat output_initial specially.
29771 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
29772 (delete_tty): Use terminal->name as liveness status.
29773
29774 * termhooks.h (struct terminal): Make it into a pseudovector.
29775 Remove `deleted' replaced by checking `name's nullness.
29776
29777 * print.c (print_object): Handle terminals.
29778
29779 * lisp.h (enum pvec_type): New `terminal' pseudovector.
29780 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
29781
29782 * frame.c (make_terminal_frame):
29783 * keyboard.c (tty_read_avail_input):
29784 * w32term.c (x_delete_terminal):
29785 * xfns.c (Fx_create_frame, x_create_tip_frame):
29786 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
29787
297882007-09-20 Glenn Morris <rgm@gnu.org>
29789
29790 * process.c (Fmake_network_process): Doc fix.
29791
297922007-09-19 Jason Rumney <jasonr@gnu.org>
29793
29794 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
29795
297962007-09-19 Michaël Cadilhac <michael@cadilhac.name>
29797
29798 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
29799 Fix a C warning regarding variable constness.
29800
29801 * xterm.c (handle_one_xevent): Fix a C warning.
29802
298032007-09-18 Jason Rumney <jasonr@gnu.org>
29804
29805 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
29806
298072007-09-17 Jan Djärv <jan.h.d@swipnet.se>
29808
29809 * gtkutil.c (gdpy_def): New variable.
29810 (xg_initialize): Initialize gdpy_def.
29811 (xg_display_close): If no other display exists, set gdpy_def to a
29812 new connection.
29813
298142007-09-16 Jan Djärv <jan.h.d@swipnet.se>
29815
29816 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
29817 when we have no file name for the icon.
29818 (xg_tool_bar_expose_callback): Remove.
29819 (xg_create_tool_bar): Don't connect expose signal to
29820 xg_tool_bar_expose_callback.
29821 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
29822
298232007-09-16 Andreas Schwab <schwab@suse.de>
29824
29825 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
29826 values instead of zapping them.
29827
298282007-09-14 Glenn Morris <rgm@gnu.org>
29829
29830 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
29831 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
29832 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
29833 scope and rename to omfib_buffer for clarity.
29834 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
29835
298362007-09-14 Kenichi Handa <handa@m17n.org>
29837
29838 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
29839
298402007-09-13 Jason Rumney <jasonr@gnu.org>
29841
29842 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
29843
29844 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
29845
29846 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
29847 (mac_term_init): Call here instead, passing rif.
29848
298492007-09-13 Glenn Morris <rgm@gnu.org>
29850
29851 * s/hpux.h: No longer define `static' as nothing.
29852
298532007-09-13 Johan Bockgård <bojohan@gnu.org>
29854
29855 * callint.c (Fcall_interactively): Remove unused var `fun'.
29856
298572007-09-12 Romain Francoise <romain@orebokech.com>
29858
29859 * window.c (prefer_window_split_horizontally, display_buffer):
29860 Revert 2007-09-08 change.
29861
298622007-09-12 Glenn Morris <rgm@gnu.org>
29863
29864 * alloca.c: Remove file.
29865 * Makefile.in (alloca): Do not undef.
29866 (allocaobj, alloca.o): Remove.
29867 (otherobj): Remove allocaobj.
29868 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
29869 * regex.c (C_ALLOCA): Remove all references and code that was only
29870 used when this was defined.
29871 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
29872 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
29873 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
29874
29875 * Makefile.in (SOURCES, unlock, relock): Delete.
29876
29877 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
29878 (menu_grab_callback): All uses changed.
29879
29880 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
29881 (x_reply_selection_request): All uses changed.
29882
298832007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
29884
29885 * lread.c (load_warn_old_style_backquotes): Change message to look
29886 better when it appears in the middle of byte-compiler messages.
29887
298882007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
29889
29890 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
29891
29892 * xterm.c (x_create_terminal): Add comment.
29893
29894 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
29895
298962007-09-10 Richard Stallman <rms@gnu.org>
29897
29898 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
29899
299002007-09-10 Michaël Cadilhac <michael@cadilhac.name>
29901
29902 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
29903 (DEFUN): Document `intspec', use it instead of `prompt'.
29904
29905 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
29906
29907 * data.c (Finteractive_form): If the interactive specification starts
29908 with a `(', use it as a Lisp form.
29909
29910 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
29911 name and file modes.
29912
29913 * callint.c (Fcall_interactively): Comment fixes.
29914
299152007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
29916
29917 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
29918 and compiled functions.
29919
299202007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
29921
29922 * window.c (prefer_window_split_horizontally): New variable.
29923 (display_buffer): Consider splitting window horizontally depending
29924 on prefer_window_split_horizontally.
29925
299262007-09-08 Eli Zaretskii <eliz@gnu.org>
29927
29928 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
29929
299302007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
29931
29932 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
29933
29934 * frame.c (x_set_frame_parameters): Check number is positive before
29935 using XFASTINT.
29936
29937 * window.c (freeze_window_start): Don't presume selected_window holds
29938 a window object.
29939 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
29940
299412007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
29942
29943 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
29944
299452007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
29946
29947 * window.c (Vsplit_window_preferred_function): New var.
29948 (Fdisplay_buffer): Use it.
29949 (syms_of_window): Export, and initialize it.
29950
299512007-09-06 Pixel <pixel@mandriva.com> (tiny change)
29952
29953 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
29954
299552007-09-06 Glenn Morris <rgm@gnu.org>
29956
29957 * gtkutil.c (menu_grab_callback) <cnt>:
29958 * xselect.c (x_reply_selection_request) <cnt>: Move static
29959 variable to file scope.
29960
299612007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
29962
29963 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
29964 consistent values of selected_frame and selected_window.
29965
299662007-09-04 Jason Rumney <jasonr@gnu.org>
29967
29968 * w32console.c (initialize_w32_display): Zero unused hooks.
29969
299702007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
29971
29972 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
29973 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
29974
299752007-09-04 Jason Rumney <jasonr@gnu.org>
29976
29977 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
29978 in w32console.c. Set up input. Remove XXX comments that have been
29979 confirmed as correct.
29980
29981 * s/ms-w32.h (MULTI_KBOARD): Define.
29982
29983 * w32console.c (one_and_only_w32cons): Remove.
29984 (initialize_w32_display): Take terminal argument.
29985
29986 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
29987 initialize_w32_display.
29988 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
29989
29990 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
29991
29992 * keyboard.c (discard_mouse_events): Discard it.
29993 (make_lispy_event): Translate it to a lisp event.
29994 (lispy_wheel_names): Add wheel-left and right events.
29995 (syms_of_keyboard): Enlarge wheel_syms.
29996
29997 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
29998 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
29999
30000 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
30001
30002 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
30003 from WM_MOUSEHWHEEL.
30004 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
30005
30006 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
30007 terminal.
30008
30009 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
30010 keyboard for the terminal.
30011
300122007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30013
30014 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
30015 (Vresume_tty_hook): Rename from Vresume_tty_functions.
30016 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
30017 and resume-tty-function to resume-tty-hook.
30018 (Fsuspend_tty, Fresume_tty): Use new names.
30019
300202007-09-02 Jan Djärv <jan.h.d@swipnet.se>
30021
30022 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
30023 if it starts with "n:".
30024
300252007-08-31 Jan Djärv <jan.h.d@swipnet.se>
30026
30027 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
30028
300292007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
30030
30031 * frame.h:
30032 * frame.c (Qterm_environment_variable): Remove.
30033 (syms_of_frame): Don't init and staticpro it.
30034
30035 * callproc.c (getenv_internal): Remove special case for $TERM.
30036
30037 * callproc.c (Vinitial_environment): New variable.
30038 (set_initial_environment): Initialize it.
30039 (syms_of_callproc): Declare it.
30040 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
30041 TERM under which a process runs is never related to the TERM in which
30042 Emacs is running.
30043
300442007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30045
30046 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
30047 * s/darwin.h: ... do it here.
30048
300492007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
30050
30051 * lisp.h (set_initial_environment): Rename from set_global_environment.
30052
30053 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
30054 removed by mistake on the multi-tty branch.
30055
30056 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
30057 (Fmodify_frame_parameters): Return a value.
30058
30059 * image.c (png_load): Comment-out var only used in commented-out code.
30060
30061 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
30062 before passing it to mark_object.
30063
30064 * xfaces.c (internal_resolve_face_name): Return a value.
30065 (internal_resolve_face_name, resolve_face_name_error): Comment out.
30066
30067 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
30068 (x_icon): Comment-out var only used in commented-out code.
30069
300702007-08-29 Romain Francoise <romain@orebokech.com>
30071
30072 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
30073 QUIT hasn't been provided.
30074
300752007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30076
30077 * callproc.c (child_setup, getenv_internal): Use the
30078 display-environment-variable and term-environment-variable frame params.
30079 (set_initial_environment): Initialise Vprocess_environment.
30080
30081 * config.in: Disable multi-keyboard support on a mac.
30082
30083 * frame.c (Qterm_environment_variable)
30084 (Qdisplay_environment_variable): New variables.
30085 (syms_of_frame): Intern and staticpro them.
30086 (Fmake_terminal_frame): Disable output method test.
30087
30088 * frame.h: Declare them here.
30089
30090 * macfns.c (x_set_mouse_color): Get rif from the frame.
30091 (x_set_tool_bar_lines): Don't use updating_frame.
30092 (mac_window): Add 2 new parameters for consistency with other systems.
30093 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
30094 frame parameters following what is done in X11 and w32. Don't use
30095 FRAME_MAC_DISPLAY_INFO.
30096 (Fx_open_connection, start_hourglass): Remove window-system check.
30097 (x_create_tip_frame): Get the keyboard from the terminal.
30098
30099 * macmenu.c: Reorder includes.
30100 (Fx_popup_menu): Use terminal specific mouse_position_hook.
30101
30102 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
30103 terminal parameter.
30104 (x_clear_frame): Add a frame parameter.
30105 (note_mouse_movement): Get rif from the frame.
30106 (mac_term_init): Initialize the terminal.
30107 (mac_initialize): Make static and move terminal initialization ...
30108 (mac_create_terminal): ... to this new function.
30109
30110 * macterm.h (struct mac_display_info): Add terminal.
30111 (mac_initialize): Delete declaration.
30112
30113 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
30114
30115 * sysdep.c: Comment out text after #endif.
30116
30117 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
30118 is defined. Better initialize ttys in windows. Use terminal
30119 specific mouse_position_hook.
30120
30121 * termhooks.h (union display_info): Add mac_display_info.
30122
30123 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
30124 Set the default minibuffer frame, window_system and the rest of the
30125 frame parameters following what is done in X11.
30126
30127 * w32term.c (w32_initialize): Make static.
30128
30129 * xselect.c (x_handle_selection_clear): Only access
30130 terminal->kboard when MULTI_KBOARD is defined.
30131
30132 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
30133 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
30134
301352007-08-29 Jason Rumney <jasonr@gnu.org>
30136
30137 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
30138 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
30139
30140 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
30141 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
30142
30143 * keyboard.c (restore_kboard_configuration): Only define when
30144 MULTI_KBOARD defined.
30145
30146 * makefile.w32-in: Update dependancies from Makefile.in.
30147 (OBJ1): Add terminal.$(O)
30148
30149 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
30150 Don't define function body.
30151 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
30152
30153 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
30154
30155 * w32.c (request_sigio, unrequest_sigio): Remove.
30156
30157 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
30158 (w32con_clear_frame, w32con_clear_end_of_line)
30159 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
30160 (w32con_delete_glyphs, w32con_set_terminal_window)
30161 (scroll_line, w32_sys_ring_bell): Add frame arg.
30162 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
30163 Add terminal arg.
30164 (PICK_FRAME): Remove.
30165 (w32con_write_glyphs): Use frame specific terminal coding.
30166 (one_and_only_w32cons): New global variable.
30167 (initialize_w32_display): Use it for storing hooks.
30168 (create_w32cons_output): New function.
30169
30170 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
30171 arg a frame.
30172
30173 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
30174 Set window_system.
30175 (x_set_tool_bar_lines): Don't use updating_frame.
30176 (Fx_create_frame): Set terminal and ref count.
30177 (Fx_open_connection): Remove window-system check.
30178
30179 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
30180
30181 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
30182 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
30183 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
30184 Add frame arg.
30185 (x_delete_terminal, w32_create_terminal): New functions.
30186 (w32_term_init): Create a terminal.
30187 (w32_initialize): Move terminal specific initialization to
30188 w32_create_terminal.
30189
30190 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
30191 (w32_clear_rect, w32_clear_area): Use background from frame.
30192 (w32_display_info): Add terminal.
30193 (w32_sys_ring_bell, x_delete_display): Declare here.
30194
30195 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
30196
30197 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
30198
301992007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
30200
30201 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
30202 Fix get_named_tty calls for the controlling tty.
30203
302042007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
30205
30206 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
30207
302082007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
30209
30210 * term.c (tty_insert_glyphs): Add missing first parameter.
30211
302122007-08-29 Károly Lőrentey <karoly@lorentey.hu>
30213
30214 * buffer.c (Fbuffer_list, Fbury_buffer):
30215 Take frame->buried_buffer_list into account.
30216
30217 * cm.c (current_tty): New variable, for cmputc().
30218 (cmputc): Use it.
30219 (cmcheckmagic): Add tty parameter, look up terminal streams there.
30220 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
30221 (cmgoto): Add tty parameter. Pass it on to calccost().
30222 Use emacs_tputs() instead of tputs().
30223
30224 * cm.h (emacs_tputs): New macro to set current_tty, and then call
30225 tputs().
30226 (current_tty): New variable, for cmputc().
30227 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
30228
30229 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
30230 (internal_condition_case, internal_condition_case_1)
30231 (internal_condition_case_2): Don't abort when x_catching_errors.
30232
30233 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
30234 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
30235 prevent crashes caused by bogus longjmps in read_char.
30236
30237 * keymap.h (Fset_keymap_parent): Add EXFUN.
30238
30239 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
30240 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30241 Remove redundant definition.
30242
30243 * macfns.c (x_set_mouse_color, x_make_gc):
30244 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30245
30246 * w32term.c (x_free_frame_resources):
30247 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30248 (w32_initialize): Use the accessor macros for terminal characteristics.
30249
30250 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
30251 Use the accessor macros for terminal characteristics.
30252 * msdos.c (internal_terminal_init): Use the accessor macros for
30253 terminal characteristics.
30254 (ScreenVisualBell, internal_terminal_init):
30255 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30256
30257 * termopts.h (no_redraw_on_reenter): Declare.
30258
30259 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
30260 (mark_terminals, mark_ttys): Declare.
30261 (Fgarbage_collect): Call them.
30262 (mark_object): Mark buried_buffer_list.
30263
30264 * prefix-args.c: Include stdlib.h for exit.
30265
30266 * syssignal.h: Add comment.
30267
30268 * indent.c: Include stdio.h.
30269
30270 * window.h (Vinitial_window_system): Declare.
30271 (Vwindow_system): Delete declaration.
30272
30273 * fontset.c (Finternal_char_font): Use FRAME_RIF.
30274
30275 * image.c (lookup_image): Don't initialize `c' until the xasserts
30276 have been run.
30277
30278 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
30279 FRAME_FOREGROUND_PIXEL.
30280
30281 * print.c (print_preprocess): Don't lose print_depth levels while
30282 iterating.
30283
30284 * widget.c (update_from_various_frame_slots):
30285 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30286
30287 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
30288 frames.
30289 (window_internal_height): Remove bogus make_number call.
30290 (init_window_once): Call make_terminal_frame with two zero parameters.
30291
30292 * fileio.c (Fread_file_name): Update comment.
30293
30294 * callint.c (Fcall_interactively):
30295 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
30296 Make sure it is correctly unwound.
30297
30298 * xsmfns.c (x_session_close): New function.
30299
30300 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
30301 Delete declarations.
30302
30303 * xterm.h: Remove declaration for x_fully_uncatch_errors.
30304 (x_output): Remove background_pixel and foreground_pixel fields.
30305 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
30306 (x_delete_device, x_session_close): Declare.
30307
30308 * lread.c: Include setjmp.h. Update declaration of `read_char'.
30309 (read_filtered_event): Call `read_char' with a local
30310 `wrong_kboard_jmpbuf'.
30311
30312 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
30313 Don't call single_kboard_state. Use FRAME_RIF.
30314
30315 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
30316 systems.
30317
30318 * lisp.h (set_process_environment): Rename to `set_global_environment'.
30319 (Fframe_with_environment, Fset_input_meta_mode)
30320 (Fset_quit_char): EXFUN.
30321 (x_create_device, tty_output, terminal, tty_display_info): Declare.
30322 (init_sys_modes, reset_sys_modes): Update prototypes.
30323 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
30324
30325 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
30326 Vlocal_key_translation_map, and Vkeyboard_translate_table.
30327 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
30328 Delete declarations.
30329 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
30330 (temporarily_switch_to_single_kboard, tty_read_avail_input):
30331 New declarations.
30332
30333 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
30334 already does that during init_display(). Call syms_of_keymap
30335 before syms_of_keyboard. Call `syms_of_terminal'.
30336 Call set_initial_environment, not set_process_environment.
30337 (shut_down_emacs): Call reset_all_sys_modes() instead of
30338 reset_sys_modes().
30339
30340 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
30341 (internal_resolve_face_name, resolve_face_name_error): New functions.
30342 (resolve_face_name): Protect against loops and errors thrown by Fget.
30343 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
30344 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
30345
30346 * scroll.c: Replace CURTTY() with local variables throughout the
30347 file (where applicable).
30348 (calculate_scrolling, calculate_direct_scrolling)
30349 (scrolling_1, scroll_cost): Use the accessor macros for terminal
30350 characteristics.
30351
30352 * keymap.c (Vfunction_key_map): Remove.
30353 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
30354 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
30355 (Vkey_translation_map): Remove.
30356 (syms_of_keymap): Remove DEFVAR for key-translation-map.
30357 (Fdescribe_buffer_bindings)
30358 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
30359 Update for terminal-local key-translation-map.
30360
30361 * Makefile.in (callproc.o): Update dependencies.
30362 (lisp, shortlisp): Add termdev.elc.
30363 (obj): Add terminal.o.
30364 (terminal.o): Add dependencies.
30365 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
30366 (data.o, fns.o): Add termhooks.h dependency.
30367 (SOME_MACHINE_LISP): Add dnd.elc.
30368 (minibuf.o): Fix typo.
30369 Update dependencies.
30370
30371 * data.c (do_symval_forwarding, store_symval_forwarding)
30372 (find_symbol_value): Use the selected frame's keyboard, not
30373 current_kboard.
30374
30375 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
30376 Vwindow_system.
30377
30378 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
30379 Fmenu_bar_open.
30380 (syms_of_xmenu): Update defsubr.
30381 (mouse_position_for_popup, Fx_popup_menu)
30382 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
30383 (set_frame_menubar, free_frame_menubar)
30384 (create_and_show_popup_menu, xmenu_show)
30385 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
30386 an X frame.
30387
30388 * xselect.c (x_own_selection): Abort if not an X frame.
30389 (some_frame_on_display): Check if it is an X frame.
30390 (x_handle_selection_clear): Deal with MULTI_KBOARD.
30391
30392 * coding.c: Include frame.h and termhooks.h.
30393 (terminal_coding, keyboard_coding): Delete.
30394 (Fset_terminal_coding_system_internal)
30395 (Fset_keyboard_coding_system_internal)
30396 (Fkeyboard_coding_system)
30397 (Fterminal_coding_system): Add a terminal parameter.
30398 Get terminal_coding from the terminal.
30399 (init_coding_once): Don't call setup_coding_system here.
30400
30401 * dispextern.h (set_scroll_region, turn_off_insert)
30402 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
30403 (tty_clear_end_of_line, tty_setup_colors)
30404 (delete_tty, updating_frame)
30405 (produce_special_glyphs, produce_glyphs, write_glyphs)
30406 (insert_glyphs): Remove.
30407 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
30408 (tty_turn_off_highlight, get_tty_size): Add declaration.
30409 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
30410
30411 * frame.h (enum output_method): Add output_initial.
30412 (struct x_output): Delete.
30413 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30414 Access foreground_pixel and background_pixel directly from the frame.
30415 (tty_display): Delete.
30416 (struct frame): Add buried_buffer_list, foreground_pixel,
30417 background_pixel and terminal. Delete kboard.
30418 (union output_data): Add tty.
30419 (FRAME_KBOARD): Get the kboard from the terminal.
30420 (FRAME_INITIAL_P): New macro.
30421 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
30422 (Qterm_environment_variable, Qdisplay_environment_variable)
30423 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
30424 New declarations.
30425
30426 * termchar.h (tty_output, tty_display_info): New structures.
30427 (tty_list): Declare.
30428 (FRAME_TTY, CURTTY): New macros.
30429 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
30430 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
30431 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
30432 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
30433
30434 * callproc.c: Include frame.h and termhooks.h, for terminal
30435 parameters.
30436 (add_env): New function.
30437 (child_setup): Use it.
30438 (child_setup, getenv_internal): Handle the new Vprocess_environment.
30439 (getenv_internal): Fix get_terminal_param call.
30440 (Fgetenv_internal, egetenv): Update doc.
30441 (syms_of_callproc): Initialize Vprocess_environment to nil.
30442 Register and initialize them. Remove obsolete defvars. Update doc
30443 strings.
30444 (child_setup): Handle Vlocal_environment_variables.
30445 (getenv_internal): Add terminal parameter.
30446 Handle Vlocal_environment_variables.
30447 (Fgetenv_internal): Add terminal parameter.
30448 (child_setup, getenv_internal, Fgetenv_internal): Store the local
30449 environment in a frame (not terminal) parameter. Update doc strings.
30450 (set_initial_environment): Rename from set_global_environment.
30451 Store Emacs environment in initial frame parameter.
30452
30453 * xdisp.c (redisplay_internal): Update references to
30454 `previous_terminal_frame'.
30455 (display_mode_line, Fformat_mode_line): Replace calls to
30456 `push_frame_kboard' with `push_kboard'.
30457 (get_glyph_string_clip_rects): Add extra parentheses and
30458 braces to prevent compiler warnings.
30459 (calc_pixel_width_or_height): Add xassert to check that the
30460 frame is alive. Don't call `lookup_image' on a termcap frame.
30461 (message2_nolog, message3_nolog, redisplay_internal)
30462 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
30463 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
30464 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
30465 (Fx_display_pixel_width, Fx_display_pixel_height)
30466 (Fx_display_planes, Fx_display_color_cells)
30467 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
30468 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
30469 (Fx_display_backing_store, Fx_display_visual_class)
30470 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
30471 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
30472
30473 * xfns.c (x_set_foreground_color x_set_background_color)
30474 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
30475 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30476 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
30477 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
30478 terminal that is being deleted.
30479 (Fx_create_frame): Use `store_frame_param' to set `window-system'
30480 frame parameter, and make sure it overrides any user-supplied setting.
30481 (Fx_close_connection, Fx_synchronize): Unify argument names with
30482 the rest of the DEFUNs.
30483
30484 * dispnew.c (Fsend_string_to_terminal): Update call to
30485 `get_tty_terminal'.
30486 (Fredraw_frame, Fsend_string_to_terminal)
30487 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
30488 FRAME_TERMCAP_P and FRAME_TTY.
30489 (window_change_signal): Don't believe width/height values that are
30490 impossibly small.
30491 (Vinitial_window_system): Rename from Vwindow_system.
30492 (termscript, Wcm, rif): Delete.
30493
30494 * termhooks.h (struct terminal): New struct containing the
30495 previously global text display hooks and new members NAME,
30496 DELETED and PARAM_ALIST.
30497 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
30498 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
30499 (FRAME_RIF): New macros.
30500 (get_terminal_param, get_device): New declarations.
30501 (termscript): Delete declaration.
30502
30503 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
30504 (XTflash, x_free_frame_resources, x_scroll_bar_create)
30505 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
30506 FRAME_FOREGROUND_PIXEL.
30507 (x_fully_uncatch_errors): Disable definition.
30508 (x_scroll_bar_expose): Fix reference to foreground pixel.
30509 (XTread_socket): Disable loop on all X displays.
30510 (x_delete_terminal): Don't set terminal->deleted and let
30511 delete_terminal delete the frames on the terminal.
30512 (x_delete_display): Doc update to reflect changes in
30513 delete_terminal.
30514 (x_display_info) <terminal>: Move member earlier in the struct.
30515 (deleting_tty): Remove old variable.
30516 (Fsuspend_tty): Call clear_tty_hooks.
30517 (Fresume_tty, init_tty): Call set_tty_hooks.
30518 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
30519 errors on X frames.
30520 (x_catch_errors_unwind): Abort if x_error_message is NULL.
30521 (handle_one_xevent): Initialize `f' to NULL.
30522 (x_delete_terminal, x_create_terminal): New functions.
30523 (XTset_terminal_modes, XTreset_terminal_modes)
30524 (XTread_socket, x_connection_closed, x_term_init)
30525 (x_term_init, x_delete_display): Add terminal parameter.
30526 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
30527 X connections.
30528
30529 * frame.c: Include termchar.h.
30530 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
30531 (Qwindow_system, Qenvironment, Qterm_environment_variable)
30532 (Qdisplay_environment_variable): New vars.
30533 (Fframep): Deal with output_initial.
30534 (Fframe-live-p): Doc fix.
30535 (Fwindow-system): New function.
30536 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
30537 (make_terminal_frame): Don't create frames on a terminal that is
30538 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30539 (store_frame_param): Check for found_for_frame before calling XFRAME.
30540 (Fmake_terminal_frame): Handle NULL tty names correctly.
30541 (syms_of_frame): Enhance doc string of `default-frame-alist'.
30542 (Fdelete_frame): Remove unused variable `count'. Don't allow other
30543 frames to refer to a deleted frame in their 'environment parameter.
30544 (Fframe_with_environment): New function.
30545 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
30546 (get_future_frame_param): New function.
30547 (Fmake_terminal_frame): Use it.
30548 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
30549
30550 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
30551 * sysdep.c (reset_sys_modes): Update for renames.
30552
30553 * keyboard.c (tty_read_avail_input): New function.
30554 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
30555 (syms_of_keyboard): Defsubr them.
30556 (Fset_input_meta_mode, Fset_quit_char): New functions.
30557 (Fset_input_mode): Split to above functions.
30558 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
30559 parameter. Use it in call to `read_char'.
30560 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
30561 Set wrong_kboard_jmpbuf correctly in recursive calls.
30562 Use current_kboard to access Vkeyboard_translate_table.
30563 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
30564 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
30565 Update longjmp invocations. Remember the original current_kboard,
30566 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
30567 changes it. Comment out unnecessary calls to
30568 `record_single_kboard_state' and `any_kboard_state'.
30569 Update recursive calls.
30570 (wrong_kboard_jmpbuf): Remove global variable.
30571 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
30572 Handle deleted interrupted_kboards correctly; that is a legal
30573 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
30574 and read_char calls. Abort if interrupted_kboard died in read_char.
30575 (any_kboard_state, single_kboard_state)
30576 (push_frame_kboard): Remove function.
30577 (pop_kboard): Switch out of single_kboard mode if the kboard has
30578 been deleted. Remove unused variable. Help debugging by not
30579 changing current_kboard unnecessarily. Set current_kboard to the
30580 kboard of the selected frame when the stored kboard object has
30581 been deleted before pop_kboard.
30582 (temporarily_switch_to_single_kboard): Change first parameter to a
30583 frame pointer. Throw an error when caller wants to change kboards
30584 while in single_kboard mode. Don't push_kboard if we weren't in
30585 single kboard state. Don't pop_kboard if we popped into any
30586 kboard state.
30587 (restore_kboard_configuration): Abort if pop_kboard changed the
30588 kboard in single_kboard mode. Call pop_kboard only after setting
30589 up single_kboard mode.
30590 (Frecursive_edit): Switch to single_kboard mode only in nested
30591 command loops.
30592 (cmd_error, command_loop, command_loop_1, timer_check):
30593 Comment out unnecessary call to `any_kboard_state' and
30594 `record_single_kboard_state'.
30595 (delete_kboard): Exit single_kboard mode if we have just deleted
30596 that kboard. Use FRAME_KBOARD.
30597 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
30598 `fatal_error_signal'.
30599 (record_single_kboard_state): Don't push_kboard if we weren't in
30600 single kboard state. Don't pop_kboard if we popped into any
30601 kboard state.
30602 (push_frame_kboard): Rename to push_kboard.
30603 (kbd_buffer_get_event): Use FRAME_TERMINAL.
30604 (read_avail_input): Read input from all terminals.
30605 (mark_kboards): Also mark Vkeyboard_translate_table.
30606 (kbd_buffer_store_event_hold): Simplify condition.
30607 (read_key_sequence): Reinitialize fkey and keytran at each replay.
30608 (Vkeyboard_translate_table): Move to struct kboard.
30609 (init_kboard): Initialize Vkeyboard_translate_table.
30610 (syms_of_keyboard): Use DEFVAR_KBOARD to define
30611 Vkeyboard_translate_table. Update doc strings. Update docs of
30612 local-function-key-map and function-key-map.
30613
30614 * terminal.c: New file.
30615
30616 * term.c: Include errno.h.
30617 (Vring_bell_function, device_list, initial_device)
30618 (next_device_id, ring_bell, update_begin, update_end)
30619 (set_terminal_window, cursor_to, raw_cursor_to)
30620 (clear_to_end, clear_frame, clear_end_of_line)
30621 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
30622 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
30623 (syms_of_term): Move their initialization to terminal.c.
30624 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
30625 (Ftty_display_color_cells)
30626 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
30627 (clear_tty_hooks, set_tty_hooks)
30628 (init_tty, maybe_fatal): New functions.
30629 (Ftty_type): Return nil if terminal is not on a tty instead of
30630 throwing an error. Doc update.
30631 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
30632 Doc update. Initialize new subrs and variables.
30633 (delete_tty): Use terminal->deleted.
30634 (tty_set_terminal_modes): Rename from set_terminal_modes.
30635 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
30636 (set_scroll_region): Rename to `tty_set_scroll_region'.
30637 (turn_on_insert): Rename to `tty_turn_on_insert'.
30638 (turn_off_insert): Rename to `tty_turn_off_insert'.
30639 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
30640 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
30641 (toggle_highligh): Rename to `tty_toggle_highlight'.
30642 (background_highlight): Rename to `tty_background_highlight'.
30643 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
30644 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
30645 (tty_set_scroll_region, tty_background_highlight)
30646 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
30647 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
30648 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
30649 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
30650 Add static modifier.
30651 (tty_reset_terminal_modes, tty_set_terminal_window)
30652 (tty_set_scroll_region, tty_background_highlight)
30653 (tty_highlight_if_desired, tty_cursor_to)
30654 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
30655 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
30656 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
30657 renames.
30658
306592007-08-28 Jan Djärv <jan.h.d@swipnet.se>
30660
30661 * keyboard.c: Qrtl is new.
30662 (parse_tool_bar_item): Handle :rtl keyword.
30663 (syms_of_keyboard): Intern :rtl keyword.
30664
30665 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
30666
30667 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
30668 so no Lisp code is executed.
30669 (file_for_image, find_rtl_image): New functions.
30670 (xg_get_image_for_pixmap): Use file_for_image.
30671 (update_frame_tool_bar): If direction is RTL, use RTL image if
30672 defined. Use Gtk stock images if defined.
30673
306742007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30675
30676 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
30677 for nonexistent or zero-width glyph in composition glyph.
30678
306792007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
30680
30681 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
30682
30683 * xdisp.c (Finvisible_p): New function.
30684 (syms_of_xdisp): defsubr it.
30685
306862007-08-24 Juanma Barranquero <lekktu@gmail.com>
30687
30688 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
30689 Doc fixes.
30690
306912007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30692
30693 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
30694
306952007-08-24 Martin Rudalics <rudalics@gmx.at>
30696
30697 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
30698 whether decoding has modified buffer contents.
30699
307002007-08-24 Jason Rumney <jasonr@gnu.org>
30701
30702 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
30703 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
30704 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
30705 (init_svg_functions) [HAVE_NTGUI]: New function.
30706 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
30707 (svg_load_image): Use them.
30708 (svg_load_image) [HAVE_NTGUI]: Implement background.
30709
307102007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30711
30712 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
30713 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
30714 (LIBX): Remove @RSVG_LIBS@.
30715 (LIBES): Add $(RSVG_LIBS).
30716
30717 * image.c (svg_load_image): Blend with specified background if exists.
30718 Use IMAGE_BACKGROUND. Add Mac OS Support.
30719
30720 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
30721 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
30722 Remove macros.
30723 [MAC_OSX] (socket_callback): Do nothing.
30724 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
30725 ReceiveNextEvent.
30726 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
30727 socket_callback.
30728 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
30729
307302007-08-22 Glenn Morris <rgm@gnu.org>
30731
30732 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
30733
307342007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
30735
30736 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
30737
30738 * image.c: Add support for SVG images. Some additional comments
30739 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
30740 (svg_image_p): New function to test for SVG image.
30741 (svg_load): New function to load SVG image.
30742 (svg_load_image): New function, helper for svg_load.
30743 (Qsvg): New Lisp_object.
30744 (svg_keyword_index): New enum.
30745 (svg_format): New static `image_keyword' struct.
30746 (svg_type): New static `image_type' struct.
30747 (librsvg/rsvg.h): Include it.
30748
307492007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
30750
30751 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
30752
307532007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
30754
30755 * lread.c (Qold_style_backquotes): New var.
30756 (syms_of_lread): Init and staticpro it.
30757 (load_warn_old_style_backquotes): New fun.
30758 (Fload): Use them to warn about old style backquotes.
30759 (end_of_file_error, Fload): Remove unused vars.
30760
30761 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
30762
30763 * lread.c (Vold_style_backquotes): New var.
30764 (syms_of_lread): Init and export it to Elisp.
30765 (read1): Set it when we find an old-style (back)quote.
30766
307672007-08-22 Jason Rumney <jasonr@gnu.org>
30768
30769 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
30770
307712007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
30772
30773 * puresize.h (BASE_PURESIZE): Increase to 1140000.
30774
307752007-08-19 Richard Stallman <rms@gnu.org>
30776
30777 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
30778
307792007-08-19 Andreas Schwab <schwab@suse.de>
30780
30781 * alloc.c (pure): Round PURESIZE up.
30782
307832007-08-17 Jan Djärv <jan.h.d@swipnet.se>
30784
30785 * xterm.c (handle_one_xevent): Remove check that mouse click is in
30786 active frame.
30787
307882007-08-16 Richard Stallman <rms@gnu.org>
30789
30790 * eval.c (Fcommandp): Add parens to clarify.
30791
30792 * minibuf.c (Fall_completions): Use enum for type of table.
30793
30794 * emacs.c (USAGE2): Improve text.
30795
307962007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
30797
30798 * term.c (tty_default_color_capabilities): Declare static
30799 variables in file scope, to avoid HPUX compiler problem.
30800
308012007-08-13 Jan Djärv <jan.h.d@swipnet.se>
30802
30803 * gtkutil.c (update_frame_tool_bar): Use -1 as index
30804 to gtk_toolbar_insert.
30805
308062007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
30807
30808 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
30809
30810 * insdel.c (reset_var_on_error): New fun.
30811 (signal_before_change, signal_after_change):
30812 Use it to reset (after|before)-change-functions to nil in case of error.
30813 Bind inhibit-modification-hooks to t.
30814 Don't bind (after|before)-change-functions to nil while they run.
30815
308162007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30817
30818 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
30819 filling pixmap with stippled background.
30820
308212007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30822
30823 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
30824 Don't use invisible frame as parent window for repositioning.
30825
308262007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
30827
30828 * print.c (new_backquote_output): Rename from old_backquote_output.
30829 (print): Inverse its logic (according to its name) so as to match the
30830 behavior of new_backquote_flag in lread.c.
30831
308322007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30833
30834 * gmalloc.c (posix_memalign): New function.
30835
30836 * macterm.c (frame_highlight, frame_unhighlight): Don't call
30837 ActivateControl/DeactivateControl here.
30838 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
30839 frame-notice-user-settings is non-nil.
30840 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
30841 for kEventParamFMFontStyle.
30842 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
30843 mac_pass_command_to_system and mac_pass_control_to_system here.
30844 (XTread_socket): Call ActivateControl/DeactivateControl here.
30845 (XTread_socket) [TARGET_API_MAC_CARBON]:
30846 Check mac_pass_command_to_system and mac_pass_control_to_system here.
30847 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
30848 for window repositioning.
30849
308502007-08-08 Glenn Morris <rgm@gnu.org>
30851
30852 * Replace `iff' in doc-strings and comments.
30853
308542007-08-07 Chong Yidong <cyd@stupidchicken.com>
30855
30856 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
30857
308582007-08-07 Martin Rudalics <rudalics@gmx.at>
30859
30860 * fileio.c (Finsert_file_contents): Run format-decode and
30861 after_insert_file_functions on entire buffer when REPLACE is
30862 non-nil and inhibit modification_hooks and point_motion_hooks.
30863 For consistency, run after_insert_file_functions iff something
30864 got inserted. Move signal_after_change and update_compositions
30865 after code running after_insert_file_functions. Make sure that
30866 undo_list doesn't record intermediate steps of the decoding process.
30867
308682007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30869
30870 * emacs.c (main)
30871 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
30872 Call malloc_enable_thread on interactive startup.
30873
30874 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
30875 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
30876 [USE_PTHREAD]: Conditionalize with it.
30877 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
30878 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
30879 New functions.
30880
308812007-08-06 Chong Yidong <cyd@stupidchicken.com>
30882
30883 * xdisp.c (redisplay_window): When restoring original buffer
30884 position, make sure it is still valid.
30885
30886 * image.c (png_load): Ignore png-supplied background color.
30887
308882007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30889
30890 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
30891 Use kCFAbsoluteTimeIntervalSince1970.
30892
30893 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
30894 New variable.
30895 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
30896 event loop should be quit.
30897 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
30898 Quit dialog event loop if quit_dialog_event_loop is set.
30899
30900 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
30901 (Selection): New typedef. Use instead of ScrapRef.
30902 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
30903 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
30904 (mac_clear_selection): Rename from clear_scrap.
30905 (get_flavor_type_from_symbol): New argument SEL and subsume function of
30906 scrap_has_target_type. All uses changed.
30907 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
30908 (mac_selection_has_target_p): New functions.
30909 (mac_put_selection_value): Rename from put_scrap_string.
30910 (mac_get_selection_value): Rename from get_scrap_string.
30911 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
30912 (put_scrap_private_timestamp, scrap_has_target_type)
30913 (get_scrap_private_timestamp): Remove functions.
30914 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
30915 (x_own_selection, x_get_local_selection):
30916 Use mac_valid_selection_value_p.
30917 (x_own_selection): Don't use put_scrap_private_timestamp.
30918 Record OWNERSHIP-INFO into Vselection_alist instead.
30919 (x_get_local_selection): Don't check type if request is local.
30920 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
30921 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
30922
309232007-08-04 Jan Djärv <jan.h.d@swipnet.se>
30924
30925 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
30926 add comment explaining why.
30927
309282007-08-03 Richard Stallman <rms@gnu.org>
30929
30930 * fileio.c (Fvisited_file_modtime): Use make_time.
30931
309322007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
30933
30934 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
30935 build.
30936
309372007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
30938
30939 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
30940
309412007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
30942
30943 * puresize.h (BASE_PURESIZE): Increase to 1130000.
30944
309452007-07-30 Richard Stallman <rms@gnu.org>
30946
30947 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
30948
309492007-07-29 Jan Djärv <jan.h.d@swipnet.se>
30950
30951 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
30952
309532007-07-28 Nick Roberts <nickrob@snap.net.nz>
30954
30955 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
30956 remote default-directory.
30957
30958 * buffer.c (mode-line-format): Update doc string.
30959
309602007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30961
30962 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
30963 scroll bar gap.
30964 (x_scroll_bar_create): Set bar->fringe_extended_p.
30965 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
30966 on frame edge. Check fringe background extension. Don't clear
30967 extended fringe background area.
30968
30969 * w32term.h (struct scroll_bar): New member fringe_extended_p.
30970 (w32_fill_area): Enclose multiple statements with do ... while (0).
30971
30972 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
30973 Extend fringe background to scroll bar gap.
30974 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
30975 Set bar->fringe_extended_p.
30976 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
30977 Put leftmost/rightmost scroll bars on frame edge. Check fringe
30978 background extension. Don't clear extended fringe background area.
30979
30980 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
30981 New member fringe_extended_p.
30982
309832007-07-25 Glenn Morris <rgm@gnu.org>
30984
30985 * Relicense all FSF files to GPLv3 or later.
30986
30987 * COPYING: Switch to GPLv3.
30988
309892007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
30990
30991 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
30992
30993 * data.c (Finteractive_form): Check for the presence of an
30994 `interactive-form' symbol property more thoroughly.
30995
30996 * data.c (Finteractive_form): Use an `interactive-form' property if
30997 present, analogous to the function-documentation property.
30998
309992007-07-24 Jason Rumney <jasonr@gnu.org>
31000
31001 * w32fns.c (x_real_positions): Get real position from OS instead of
31002 calculating it.
31003
310042007-07-23 Jason Rumney <jasonr@gnu.org>
31005
31006 * filelock.c (current_lock_owner): Allow for @ sign in username.
31007
310082007-07-22 Nick Roberts <nickrob@snap.net.nz>
31009
31010 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
31011 remote default-directory.
31012
31013 * buffer.c (mode-line-format): Describe above case in doc string.
31014
310152007-07-20 Eli Zaretskii <eliz@gnu.org>
31016
31017 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
31018 Define if not defined.
31019
310202007-07-18 Jason Rumney <jasonr@gnu.org>
31021
31022 * w32proc.c (w32_executable_type): Handle 64 bit executables.
31023
310242007-07-18 Richard Stallman <rms@gnu.org>
31025
31026 * data.c (Fsetq_default): Doc fix.
31027
31028 * eval.c (Fsetq): Doc fix.
31029
310302007-07-18 Juanma Barranquero <lekktu@gmail.com>
31031
31032 * coding.c (Ffind_operation_coding_system):
31033 * eval.c (For, Fand): Doc fixes.
31034 Reported by Johan Bockgård.
31035
310362007-07-18 Jan Djärv <jan.h.d@swipnet.se>
31037
31038 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
31039
31040 * xterm.h: Declare x_ewmh_activate_frame.
31041
31042 * xterm.c (x_ewmh_activate_frame): New function.
31043 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
31044
310452007-07-17 Martin Rudalics <rudalics@gmx.at>
31046
31047 * window.c (Fdisplay_buffer): If largest or LRU window is the
31048 only window, split it even if it is not eligible for splitting.
31049 This restores the original behavior broken by the 2007-07-15
31050 change.
31051
310522007-07-17 Glenn Morris <rgm@gnu.org>
31053
31054 * abbrev.c (abbrev_check_chars): New function.
31055 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
31056 Call abbrev_check_chars to check abbrev characters are word
31057 constituents. Doc fix.
31058
310592007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
31060
31061 * process.c (Fstart_process, Fmake_network_process)
31062 (read_process_output): Fix up last changes.
31063
310642007-07-16 Eli Zaretskii <eliz@gnu.org>
31065
31066 * makefile.w32-in (clean): Don't delete *~.
31067
310682007-07-16 Andreas Schwab <schwab@suse.de>
31069
31070 * window.c (Fdisplay_buffer): Use NILP.
31071 (Fset_window_scroll_bars): Likewise.
31072
310732007-07-15 Martin Rudalics <rudalics@gmx.at>
31074
31075 * window.c (window_min_size_2): New function.
31076 (window_min_size_1, size_window, Fdisplay_buffer)
31077 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
31078 windows without mode- or header-lines when window-min-height is
31079 too small.
31080 (size_window): Reset nodelete_p after testing it, following an
31081 earlier note by Kim F. Storm.
31082 (display_buffer): Do not set split_height_threshold to twice the
31083 value of window_min_height to avoid changing the value of a
31084 customizable variable. Rather explicitly check whether the
31085 height of the window that shall be splitted is at least as large
31086 as split_height_threshold.
31087 (Fwindow_full_width_p): New defun.
31088 (syms_of_window): Defsubr it.
31089
31090 * window.h: Add EXFUN for Fwindow_full_width_p.
31091
310922007-07-14 Jason Rumney <jasonr@gnu.org>
31093
31094 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
31095
310962007-07-14 Richard Stallman <rms@gnu.org>
31097
31098 * eval.c (maybe_call_debugger): New function.
31099 (find_handler_clause): Use maybe_call_debugger.
31100 Call it when the handler says `debug'.
31101 Eliminate DEBUGGER_VALUE_PTR.
31102 (Fsignal): Eliminate debugger_value.
31103 (Qdebug): New variable.
31104 (syms_of_eval): Initialize it.
31105
311062007-07-14 Juanma Barranquero <lekktu@gmail.com>
31107
31108 * eval.c (Fprogn):
31109 * keyboard.c (Ftrack_mouse):
31110 * print.c (Fwith_output_to_temp_buffer):
31111 * window.c (Fsave_window_excursion): Doc fix.
31112
311132007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
31114
31115 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
31116
311172007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
31118
31119 * process.h (struct Lisp_Process): Turn slots infd, outfd,
31120 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
31121 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
31122 read_output_delay, and read_output_skip from Lisp_Objects to ints.
31123 Remove unused encoding_carryover.
31124 * process.c: Adjust all functions accordingly.
31125
311262007-07-12 Richard Stallman <rms@gnu.org>
31127
31128 * term.c: Include unistd.h only if HAVE_UNISTD_H.
31129
311302007-07-11 Jason Rumney <jasonr@gnu.org>
31131
31132 * makefile.w32-in (LIBS): Include OLE32.
31133
31134 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
31135 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
31136
311372007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
31138
31139 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
31140 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
31141 from a Lisp_Object into a bare pointer.
31142 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
31143 Adjust the code correspondingly.
31144
31145 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
31146
31147 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
31148 (term_show_mouse_face): Remove unused var `j'.
31149 (handle_one_term_event): Remove unused vars `i' and `j'.
31150 Don't cast return value of ttyname since it's not necessary.
31151
311522007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
31153
31154 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
31155 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
31156
31157 * fns.c (map_char_table): Use an array of int for `indices' rather than
31158 an array of Lisp_Objects (which are only ever integers anyway).
31159 (Fmap_char_table): Update caller.
31160 * lisp.h: Update prototype.
31161 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
31162 * fontset.c (Ffontset_info):
31163 * casetab.c (set_case_table): Update callers.
31164
31165 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
31166
31167 * keymap.c (struct accessible_keymaps_data)
31168 (struct where_is_internal_data): New structures.
31169 (accessible_keymaps_1, where_is_internal_1): Use them to change
31170 interface to adhere to the one used by map_keymap.
31171 (Faccessible_keymaps, where_is_internal): Use map_keymap.
31172 (accessible_keymaps_char_table, where_is_internal_2): Remove.
31173
31174 * keymap.h (map_keymap_function_t): More informative prototype.
31175
311762007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
31177
31178 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
31179 (looking_at_1): Don't change search_regs and last_thing_searched
31180 if `inhibit-changing-match-data' is non-nil.
31181 (string_match_1, search_buffer, set_search_regs): Likewise.
31182 (syms_of_search): Add Lisp level definition for
31183 `inhibit-changing-match-data' and set it to nil.
31184 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
31185 start and end of the match, instead of using values in search_regs.
31186
311872007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
31188
31189 * minibuf.c (Fcompleting_read): New value `confirm-only'
31190 for `require-match'.
31191
311922007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
31193
31194 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
31195 part of the 2007-06-27 change to syms_of_fileio.
31196
311972007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31198
31199 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
31200 Check WINDOWP before using XWINDOW. Consolidate return statements.
31201
312022007-06-27 Richard Stallman <rms@gnu.org>
31203
31204 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
31205
312062007-06-27 Juanma Barranquero <lekktu@gmail.com>
31207
31208 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
31209
312102007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31211
31212 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
31213 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
31214 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
31215 (_free_internal, memalign): Use them.
31216 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
31217 Initialize to PTHREAD_MUTEX_INITIALIZER.
31218 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
31219 (morecore_nolock): Rename from morecore. All uses changed.
31220 Use only nolock versions of internal allocation functions.
31221 (_malloc_internal_nolock, _realloc_internal_nolock)
31222 (_free_internal_nolock): New functions created from
31223 _malloc_internal, _realloc_internal, and _free_internal.
31224 (_malloc_internal, _realloc_internal, _free_internal): Use them.
31225 Copy hook value to automatic variable before its use.
31226 (memalign): Copy hook value to automatic variable before its use.
31227
312282007-06-26 Kenichi Handa <handa@m17n.org>
31229
31230 * coding.c (Ffind_operation_coding_system): Docstring improved.
31231 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
31232
312332007-06-25 David Kastrup <dak@gnu.org>
31234
31235 * keymap.c (Fcurrent_active_maps): Add `position' argument.
31236 (Fwhere_is_internal): Adjust call to `current-active-maps' to
31237 cater for additional parameter.
31238
31239 * keymap.h: Adjust number of parameters to `current-active-maps'.
31240
31241 * doc.c (Fsubstitute_command_keys): Adjust call of
31242 `current-active-maps'.
31243
312442007-06-25 David Kastrup <dak@gnu.org>
31245
31246 * callint.c (Fcall_interactively): Make the parsing of interactive
31247 specs somewhat more readable.
31248
312492007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31250
31251 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
31252 to scroll bar gap also when bitmap fills fringe. Draw only foreground
31253 if extended background has already been filled.
31254
312552007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31256
31257 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
31258 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
31259
31260 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
31261 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
31262 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
31263 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
31264 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
31265 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
31266 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
31267 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
31268 Run timers during dialog popup.
31269 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
31270
312712007-06-21 Jason Rumney <jasonr@gnu.org>
31272
31273 * image.c (convert_mono_to_color_image): Swap fore and background.
31274
312752007-06-20 Jason Rumney <jasonr@gnu.org>
31276
31277 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
31278 (w32_free_bdf_font): Unmap memory not handle.
31279
312802007-06-20 Sam Steingold <sds@gnu.org>
31281
31282 * gmalloc.c (__morecore): Fix the declaration to comply with the
31283 definition.
31284
312852007-06-20 Juanma Barranquero <lekktu@gmail.com>
31286
31287 * w32term.c (w32_delete_display): Remove leftover declaration.
31288 (w32_define_cursor, w32_initialize): Make static.
31289
31290 * w32.c (_wsa_errlist): Fix typo in error message.
31291 (init_environment): Ignore any environment variable from the
31292 registry having a null value.
31293
312942007-06-20 Glenn Morris <rgm@gnu.org>
31295
31296 * Makefile.in (LIBGIF): Default to -lgif.
31297
312982007-06-17 Jason Rumney <jasonr@gnu.org>
31299
31300 * w32menu.c (add_menu_item): Don't use multibyte string functions on
31301 unicode strings.
31302
313032007-06-16 Juanma Barranquero <lekktu@gmail.com>
31304
31305 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
31306 Fix typo in docstring.
31307
313082007-06-16 Eli Zaretskii <eliz@gnu.org>
31309
31310 * w32menu.c (add_menu_item): Escape `&' characters in menu items
31311 and their keybindings.
31312
313132007-06-15 Chong Yidong <cyd@stupidchicken.com>
31314
31315 * composite.c (update_compositions): Fix last fix.
31316
313172007-06-14 Jason Rumney <jasonr@gnu.org>
31318
31319 * w32.c (get_process_times_fn): New function pointer.
31320 (globals_of_w32): Intialize it if present in kernel32.dll.
31321 (w32_get_internal_run_time): New function.
31322
31323 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
31324
313252007-06-14 Kenichi Handa <handa@etlken.m17n.org>
31326
31327 * composite.c (update_compositions): Check the validness of
31328 compositions.
31329
313302007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31331
31332 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
31333 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
31334
31335 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
31336 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
31337
31338 * macgui.h (USE_MAC_TOOLBAR): New define.
31339
31340 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31341 Return immediately unless popup is activated.
31342
31343 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
31344 background to scroll bar gap.
31345 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
31346 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
31347 scroll bars on frame edge. Check fringe background extension.
31348 Don't clear extended fringe background area.
31349 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
31350 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
31351 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
31352 [USE_MAC_TOOLBAR]: New macros.
31353 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
31354 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
31355 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
31356 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
31357 [USE_MAC_TOOLBAR]: New functions.
31358 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
31359 manually if previous repositioning has failed.
31360 (mac_handle_keyboard_event): Use precomputed event kind.
31361 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
31362 as tool bar item click. Handle mouse movement over tool bar items.
31363
31364 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
31365 toolbar_win_gravity.
31366 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
31367 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
31368 Add externs.
31369
31370 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
31371 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
31372
313732007-06-14 Chong Yidong <cyd@stupidchicken.com>
31374
31375 * image.c (search_image_cache): Remove unused variable.
31376
313772007-06-13 Chong Yidong <cyd@stupidchicken.com>
31378
31379 * xfns.c, xmenu.c: Link to xaw3d if available.
31380
313812007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31382
31383 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
31384 frame_foreground and frame_background.
31385
31386 * image.c (lookup_image): Save frame foreground and background colors.
31387 (search_image_cache): Check if saved and current frame colors match.
31388
313892007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
31390
31391 * regex.c (regex_compile): Remove the `regnum' counter.
31392 Use bufp->re_nsub instead. Add support for \(?N:RE\).
31393
313942007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
31395
31396 * term.c: Include intervals.h to declare Fget_text_property.
31397
313982007-06-10 Jason Rumney <jasonr@gnu.org>
31399
31400 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
31401
314022007-06-08 Juanma Barranquero <lekktu@gmail.com>
31403
31404 * callint.c (Fcall_interactively):
31405 * editfns.c (Fdelete_and_extract_region):
31406 * fileio.c (Fread_file_name):
31407 * fns.c (Fmapconcat):
31408 * keyboard.c (cmd_error_internal):
31409 * keymap.c (Fkey_description):
31410 * lread.c (openp):
31411 * minibuf.c (read_minibuf):
31412 * search.c (wordify):
31413 * sunfns.c (sel_read):
31414 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
31415 * xfns.c (x_default_scroll_bar_color_parameter):
31416 * xmenu.c (menu_help_callback):
31417 * xselect.c (Fx_get_atom_name):
31418 * xterm.c (x_term_init): Use empty_unibyte_string.
31419
314202007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
31421
31422 * alloc.c (init_strings): Initialize canonical empty strings.
31423 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
31424 canonical empty string when the requested size is 0.
31425
31426 * emacs.c (empty_unibyte_string): Rename from empty_string.
31427 (empty_multibyte_string): New canonical empty string.
31428 (syms_of_emacs): Don't initialize empty_string.
31429
31430 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
31431 string, if appropriate.
31432 (empty_unibyte_string, empty_multibyte_string): New externs.
31433 (empty_string): Remove extern.
31434
31435 * lread.c (syms_of_lread): Use empty_unibyte_string.
31436
314372007-06-07 Jason Rumney <jasonr@gnu.org>
31438
31439 * s/ms-w32.h: Don't define HAVE_TZNAME.
31440
31441 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
31442
314432007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31444
31445 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
31446
31447 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
31448 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
31449
31450 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31451 Don't call next handler.
31452 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
31453 Remove argument. Install handler to application.
31454 (set_frame_menubar): Don't change deep_p.
31455 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
31456 FRAME_OUTER_TO_INNER_DIFF_Y.
31457 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
31458 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
31459 [HAVE_DIALOGS]: New macros.
31460 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
31461 Use them.
31462 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
31463
31464 * macselect.c [MAC_OSX] (install_service_handler): Rename from
31465 init_service_handler. All callers changed. Return OSStatus value.
31466
31467 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
31468 All callers changed so as not to call SetPortWindowPort.
31469 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
31470 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
31471 mac_draw_string_common.
31472 (mac_draw_image_string_qd): Likewise.
31473 (mac_draw_string_common): Use them. Add INLINE.
31474 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
31475 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
31476 GetGlobalMouse.
31477 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
31478 and FRAME_OUTER_TO_INNER_DIFF_Y.
31479 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
31480 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
31481 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
31482 repositioning window to mac_handle_window_event.
31483 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
31484 saving window location to mac_handle_window_event
31485 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
31486 (install_menu_target_item_handler): Remove argument in extern.
31487 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
31488 Also accept command events.
31489 (do_keystroke): New function created from XTread_socket.
31490 (init_command_handler): Remove functions.
31491 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
31492 and save window location by kEventWindowShowing and kEventWindowHiding
31493 handlers here. Don't call next handler for window state change and
31494 focus events.
31495 (mac_handle_application_event, mac_handle_keyboard_event)
31496 [TARGET_API_MAC_CARBON]: New functions.
31497 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
31498 kEventWindowShowing and kEventWindowHiding events. Move installation
31499 of mouse, font, text input and menu target item handlers to
31500 install_application_handler.
31501 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
31502 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31503 New function.
31504 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31505 Register it.
31506 (XTread_socket) [TARGET_API_MAC_CARBON]:
31507 Consolidate SendEventToEventTarget calls.
31508 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
31509 Move application activation handler to mac_handle_application_event.
31510 Move keyboard handler to mac_handle_keyboard_event.
31511 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
31512 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
31513 init_command_handler. Call install_application_handler.
31514
31515 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
31516 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
31517
315182007-06-07 Glenn Morris <rgm@gnu.org>
31519
31520 * emacs.c (main): Use `emacs-copyright' in --version output.
31521
315222007-06-06 Chong Yidong <cyd@stupidchicken.com>
31523
31524 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
31525
315262007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31527
31528 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
31529
31530 * macgui.h: Replace WindowPtr with WindowRef.
31531
31532 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31533 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31534 Replace ControlHandle with ControlRef.
31535 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
31536
31537 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31538 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31539 Replace ControlHandle with ControlRef.
31540 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
31541 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
31542
31543 * macterm.h (struct scroll_bar): Rename member control_handle_low
31544 and control_handle_high to control_ref_low and control_ref_high.
31545 All uses changed.
31546 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
31547 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
31548 respectively. All uses changed.
31549 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
31550 (install_window_handler, remove_window_handler): Replace WindowPtr
31551 with WindowRef in externs.
31552
315532007-06-05 Juanma Barranquero <lekktu@gmail.com>
31554
31555 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
31556
315572007-06-03 Nick Roberts <nickrob@snap.net.nz>
31558
31559 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
31560
31561 * frame.c (Fmouse_position, Fmouse_pixel_position):
31562 Condition on HAVE_GPM too.
31563
31564 * term.c (term_mouse_highlight): Remove unused variables.
31565 (Fterm_open_connection): Set gpm_zerobased to 1.
31566 (term_mouse_movement, term_mouse_click, handle_one_term_event):
31567 Use zero based co-ordinates.
31568 (handle_one_term_event): Report a drag as mouse movement too.
31569
31570 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
31571
315722007-06-03 Chong Yidong <cyd@stupidchicken.com>
31573
31574 * image.c (search_image_cache): New function. Require background
31575 color match if background color is unspecified in the image spec.
31576 (uncache_image, lookup_image): Use it.
31577
315782007-06-01 Juanma Barranquero <lekktu@gmail.com>
31579
31580 * window.c (Fshrink_window): Reflow docstring.
31581
315822007-06-02 Chong Yidong <cyd@stupidchicken.com>
31583
31584 * Version 22.1 released.
31585
315862007-06-01 Richard Stallman <rms@gnu.org>
31587
31588 * xfns.c (x_encode_text): Add GCPRO.
31589
315902007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31591
31592 * xfns.c (x_set_name_internal): Save encoded name before
31593 x_encode_text in case string data is relocated.
31594
315952007-05-31 Richard Stallman <rms@gnu.org>
31596
31597 * buffer.c (syms_of_buffer): Doc fix.
31598
315992007-05-30 Nick Roberts <nickrob@snap.net.nz>
31600
31601 * sysdep.c (init_sys_modes): Add rather than replace with
31602 O_NONBLOCK.
31603
31604 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
31605 term_mouse_moveto.
31606
31607 * termhooks.h (term_mouse_moveto): New extern.
31608
31609 * term.c (mouse_face_window): Rename...
31610 (Qmouse_face_window): ...to this.
31611 (term_show_mouse_face, term_clear_mouse_face)
31612 (term_mouse_highlight): Use Qmouse_face_window.
31613 (term_mouse_moveto): New function.
31614 (term_mouse_position): Make it work.
31615 (syms_of_term): Uncomment assignment to mouse_position_hook.
31616 Staticpro Qmouse_face_window.
31617
316182007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31619
31620 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
31621 around current_column call.
31622
316232007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
31624
31625 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
31626 * xdisp.c (next_element_from_buffer):
31627 * window.c (delete_window):
31628 * term.c (term_mouse_highlight):
31629 * msdos.c (getdefdir):
31630 * macterm.c (mac_create_bitmap_from_bitmap_data)
31631 (init_font_name_table):
31632 * fns.c (Fsxhash):
31633 * data.c (Fmake_local_variable):
31634 * ccl.c (ccl_driver): Likewise.
31635
316362007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31637
31638 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
31639 Call mac_wakeup_from_rne on window size change.
31640
316412007-05-25 Chong Yidong <cyd@stupidchicken.com>
31642
31643 * image.c (uncache_image): Fix typo.
31644
316452007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
31646
31647 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
31648
316492007-05-22 Richard Stallman <rms@gnu.org>
31650
31651 * xterm.c (x_connection_closed): Remove NO_RETURN.
31652
316532007-05-22 Martin Rudalics <rudalics@gmx.at>
31654
31655 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
31656
316572007-05-21 Chong Yidong <cyd@stupidchicken.com>
31658
31659 * image.c (uncache_image): New function.
31660 (Fimage_refresh): New function.
31661
316622007-05-20 Jan Djärv <jan.h.d@swipnet.se>
31663
31664 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
31665
316662007-05-20 Nick Roberts <nickrob@snap.net.nz>
31667
31668 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
31669 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
31670
316712007-05-20 Nick Roberts <nickrob@snap.net.nz>
31672
31673 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
31674 conditional on [HAVE_GPM_H].
31675
316762007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
31677
31678 * syntax.c (skip_chars): Update syntax-table only after we checked that
31679 the new location is valid.
31680
316812007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31682
31683 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
31684 mac_get_window_bounds.
31685
316862007-05-20 Nick Roberts <nickrob@snap.net.nz>
31687
31688 * Makefile.in (LIBGPM): Allow it to be set from configure.
31689 If set then link Emacs with it.
31690
31691 * config.in: Regenerate.
31692
31693 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
31694 New externs.
31695
31696 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
31697 Include gpm.h.
31698 (handle_one_term_event, term_gpm): New externs.
31699
31700 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
31701 and allow it to be interrupted by SIGIO.
31702
31703 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
31704 (wait_reading_process_output): Wait on gpm_fd too.
31705 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
31706 (add_gpm_wait_descriptor_called_flag): New variable.
31707 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
31708
31709 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
31710 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
31711 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
31712 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
31713 (make_lispy_event): Add case GPM_CLICK_EVENT.
31714 (read_avail_input): Handle mouse input.
31715
31716 * term.c (write_glyphs_with_face): New function.
31717 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
31718 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
31719 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
31720 (mouse_face_face_id, term_gpm, pos_x, pos_y)
31721 (last_mouse_x, last_mouse_y): New variables.
31722 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
31723 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
31724 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
31725 (Fterm_close_connection): New functions.
31726 (term_init): Initialise mouse_face_window.
31727
317282007-05-19 Chong Yidong <cyd@stupidchicken.com>
31729
31730 * xdisp.c (redisplay_window): If first window line is a
31731 continuation line, recompute the new window start instead of
31732 recentering.
31733
317342007-05-18 Glenn Morris <rgm@gnu.org>
31735
31736 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
31737 Suggested by Alfred M. Szmidt <ams@gnu.org>.
31738
317392007-05-17 Glenn Morris <rgm@gnu.org>
31740
31741 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
31742
317432007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31744
31745 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
31746 dead key repeat and up events.
31747
317482007-05-14 Chong Yidong <cyd@stupidchicken.com>
31749
31750 * image.c (pbm_load): Check image size for monochrome pbm.
31751
317522007-05-13 Chong Yidong <cyd@stupidchicken.com>
31753
31754 * xterm.c (XTread_socket): Revert last change.
31755
317562007-05-12 Chong Yidong <cyd@stupidchicken.com>
31757
31758 * image.c (pbm_load): Correctly check image size for greyscale pbm.
31759
31760 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
31761
317622007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
31763
31764 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
31765 mixup (YAILOM).
31766
317672007-05-07 Andreas Schwab <schwab@suse.de>
31768
31769 * keymap.c (Flookup_key): Fix typo in last change.
31770
317712007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
31772
31773 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
31774 mapping for unibyte strings.
31775
317762007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31777
31778 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
31779 (Fx_popup_dialog) [MAC_OSX]: Likewise.
31780
317812007-04-29 Richard Stallman <rms@gnu.org>
31782
31783 * insdel.c (replace_range): For undo, record insertion first.
31784
317852007-04-29 Andreas Schwab <schwab@suse.de>
31786
31787 * lisp.h (VECSIZE): Use OFFSETOF.
31788
317892007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31790
31791 * xdisp.c (try_window_reusing_current_matrix): Fix number of
31792 disabled lines.
31793
317942007-04-28 Richard Stallman <rms@gnu.org>
31795
31796 * lread.c (read_escape): In a string, \s is always space.
31797
317982007-04-27 Jan Djärv <jan.h.d@swipnet.se>
31799
31800 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
31801
31802 * gtkutil.c (xg_update_menubar, create_menus): Create empty
31803 submenu for menu bar items.
31804
31805See ChangeLog.10 for earlier changes.
31806
31807;; Local Variables:
31808;; coding: utf-8
31809;; End:
31810
31811 Copyright (C) 2007-2011 Free Software Foundation, Inc.
31812
31813 This file is part of GNU Emacs.
31814
31815 GNU Emacs is free software: you can redistribute it and/or modify
31816 it under the terms of the GNU General Public License as published by
31817 the Free Software Foundation, either version 3 of the License, or
31818 (at your option) any later version.
31819
31820 GNU Emacs is distributed in the hope that it will be useful,
31821 but WITHOUT ANY WARRANTY; without even the implied warranty of
31822 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31823 GNU General Public License for more details.
31824
31825 You should have received a copy of the GNU General Public License
31826 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.