]> code.delx.au - gnu-emacs/blob - src/ChangeLog
* character.h (PREV_CHAR_BOUNDARY): Rename local to avoid shadowing.
[gnu-emacs] / src / ChangeLog
1 2011-03-15 Paul Eggert <eggert@cs.ucla.edu>
2
3 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
4
5 Use functions, not macros, for up- and down-casing (Bug#8254).
6 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
7 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
8 to use the following functions instead of these macros.
9 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
10 EMACS_INT, since callers assume the returned value fits in int.
11 (upcase1): Likewise, for UPCASE_TABLE.
12 (uppercasep, lowercasep, upcase): New static inline functions.
13 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
14 the race-condition problem in the old DOWNCASE.
15
16 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
17 Rename locals to avoid shadowing.
18 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
19 (regex_compile, re_search_2, re_match_2_internal):
20 Remove unused local vars.
21 (FREE_VAR): Rewrite so as not to use empty "else",
22 which gcc can warn about.
23 (regex_compile, re_match_2_internal): Mark locals as initialized.
24 (RETALLOC_IF): Define only if needed.
25 (WORDCHAR_P): Likewise. This one is never needed, but is used
26 only in a comment talking about a compiler bug, so put inside
27 the #if 0 of that comment.
28 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
29 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
30 Remove; unused.
31
32 * search.c (boyer_moore): Rename locals to avoid shadowing.
33 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
34 (PREV_CHAR_BOUNDARY): Likewise.
35
36 * search.c (simple_search): Remove unused var.
37
38 * dired.c (compile_pattern): Move decl from here ...
39 * lisp.h: ... to here, so that it can be checked.
40 (struct re_registers): New forward decl.
41
42 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
43
44 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
45 All uses changed.
46 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
47 Rename locals to avoid shadowing.
48 (Fvertical_motion): Mark locals as initialized.
49
50 * casefiddle.c (casify_object, casify_region): Now static.
51 (casify_region): Mark local as initialized.
52
53 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
54
55 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
56 New macros, so that the caller can use some names other than
57 gcpro1, gcpro2, etc.
58 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
59 of the new macros.
60 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
61 argument, for consistency with GCPRO2_VAR, etc: it is now the
62 prefix of the variable, not the variable itself. All uses
63 changed.
64 * dired.c (directory_files_internal, file_name_completion):
65 Rename locals to avoid shadowing.
66
67 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
68 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
69 dired.c's scmp function, had undefined behavior.
70 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
71 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
72 * buffer.h: ... to here, because these macros use current_buffer,
73 and the new implementation with inline functions needs to have
74 current_buffer in scope now, rather than later when the macros
75 are used.
76 (downcase, upcase1): New static inline functions.
77 (DOWNCASE, UPCASE1): Reimplement using these functions.
78 This avoids undefined behavior in expressions like
79 DOWNCASE (x) == DOWNCASE (y), which previously suffered
80 from race conditions in accessing the global variables
81 case_temp1 and case_temp2.
82 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
83 * lisp.h (case_temp1, case_temp2): Remove their decls.
84 * character.h (ASCII_CHAR_P): Move from here ...
85 * lisp.h: ... to here, so that the inline functions mentioned
86 above can use them.
87
88 * dired.c (directory_files_internal_unwind): Now static.
89
90 * fileio.c (file_name_as_directory, directory_file_name):
91 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
92 Now static.
93 (file_name_as_directory): Use const pointers when appropriate.
94 (Fexpand_file_name): Likewise. In particular, newdir might
95 point at constant storage, so make it a const pointer.
96 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
97 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
98 signedness issues.
99 (Fset_file_times, Finsert_file_contents, auto_save_error):
100 Rename locals to avoid shadowing.
101
102 * minibuf.c (choose_minibuf_frame_1): Now static.
103 (Ftry_completion, Fall_completions): Rename or remove locals
104 to avoid shadowing.
105
106 * marker.c (bytepos_to_charpos): Remove; unused.
107
108 * lisp.h (verify_bytepos, count_markers): New decls,
109 so that gcc does not warn that these functions aren't declared.
110
111 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
112 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
113 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
114 (copy_text): Remove unused local var.
115
116 * filelock.c (within_one_second): Now static.
117 (lock_file_1): Rename local to avoid shadowing.
118
119 * buffer.c (fix_overlays_before): Mark locals as initialized.
120 (fix_start_end_in_overlays): Likewise. This function should be
121 simplified by using pointers-to-pointers, but that's a different
122 matter.
123
124 2011-03-14 Paul Eggert <eggert@cs.ucla.edu>
125
126 * buffer.c (switch_to_buffer_1): Now static.
127 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
128 (report_overlay_modification): Rename locals to avoid shadowing.
129
130 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
131 Fix pointer signedness issue.
132 (sys_subshell): Mark local as volatile if checking for lint,
133 to suppress a gcc -Wclobbered warning that does not seem to be right.
134 (MAXPATHLEN): Define only if needed.
135
136 * process.c (serial_open, serial_configure): Move decls from here ...
137 * systty.h: ... to here, so that they can be checked.
138
139 * fns.c (get_random, seed_random): Move extern decls from here ...
140 * lisp.h: ... to here, so that they can be checked.
141
142 * sysdep.c (reset_io): Now static.
143 (wait_for_termination_signal): Remove; unused.
144
145 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
146 (copy_keymap_item, append_key, push_text_char_description):
147 Now static.
148 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
149 (DENSE_TABLE_SIZE): Remove; unused.
150 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
151 (describe_map_tree):
152 Rename locals to avoid shadowing.
153
154 * keyboard.c: Declare functions static if they are not used elsewhere.
155 (echo_char, echo_dash, cmd_error, top_level_2):
156 (poll_for_input, handle_async_input): Now static.
157 (read_char, kbd_buffer_get_event, make_lispy_position):
158 (make_lispy_event, make_lispy_movement, apply_modifiers):
159 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
160 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
161 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
162 (read_key_sequence, read_char): Mark locals as initialized.
163 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
164
165 * keyboard.h (make_ctrl_char): New decl.
166 (mark_kboards): Move decl here ...
167 * alloc.c (mark_kboards): ... from here.
168
169 * lisp.h (force_auto_save_soon): New decl.
170
171 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
172 (DEFINE_DUMMY_FUNCTION): New macro.
173 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
174 Use it.
175 (main): Add casts to avoid warnings
176 if GCC considers string literals to be constants.
177
178 * lisp.h (fatal_error_signal): Add decl, since it's exported.
179
180 * dbusbind.c: Pointer signedness fixes.
181 (xd_signature, xd_append_arg, xd_initialize):
182 (Fdbus_call_method, Fdbus_call_method_asynchronously):
183 (Fdbus_method_return_internal, Fdbus_method_error_internal):
184 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
185 (Fdbus_register_signal): Use SSDATA when the context wants char *.
186
187 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
188 if GCC considers string literals to be constants.
189 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
190
191 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
192
193 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
194 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
195 These macros can no longer be used for assignment.
196
197 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Assign
198 struct members directly, instead of using BUF_BEGV etc.
199 (record_buffer_markers, fetch_buffer_markers): New functions for
200 recording and fetching special buffer markers.
201 (set_buffer_internal_1, set_buffer_temp): Use them.
202
203 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
204
205 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
206
207 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
208 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
209
210 * xdisp.c (hscroll_window_tree):
211 (reconsider_clip_changes): Use PT instead of BUF_PT.
212
213 2011-03-13 Eli Zaretskii <eliz@gnu.org>
214
215 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
216 $(EMACS_ROOT)/lib/intprops.h.
217
218 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
219
220 Fix more problems found by GCC 4.5.2's static checks.
221
222 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
223 to unsigned char * to avoid compiler diagnostic.
224 (xg_free_frame_widgets): Make it clear that a local variable is
225 needed only if USE_GTK_TOOLTIP.
226 (gdk_window_get_screen): Make it clear that this macro is needed
227 only if USE_GTK_TOOLTIP.
228 (int_gtk_range_get_value): New function, which avoids a diagnostic
229 from gcc -Wbad-function-cast.
230 (xg_set_toolkit_scroll_bar_thumb): Use it.
231 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
232 diagnostic from gcc -Wbad-function-cast.
233 (get_utf8_string, xg_get_file_with_chooser):
234 Rename locals to avoid shadowing.
235 (create_dialog): Move locals to avoid shadowing.
236
237 * xgselect.c (xg_select): Remove unused var.
238
239 * image.c (four_corners_best): Mark locals as initialized.
240 (gif_load): Initialize transparent_p to zero (Bug#8238).
241 Mark another local as initialized.
242 (my_png_error, my_error_exit): Mark with NO_RETURN.
243
244 * image.c (clear_image_cache): Now static.
245 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
246 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
247 (x_edge_detection): Remove unnecessary cast that
248 gcc -Wbad-function-cast diagnoses.
249 (gif_load): Fix pointer signedness.
250 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
251 (jpeg_load, gif_load): Rename locals to avoid shadowing.
252
253 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
254
255 Improve quality of tests for time stamp overflow.
256 For example, without this patch (encode-time 0 0 0 1 1
257 1152921504606846976) returns the obviously-bogus value (-948597
258 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
259 reports time overflow. See
260 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
261 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
262 * editfns.c: Include limits.h and intprops.h.
263 (TIME_T_MIN, TIME_T_MAX): New macros.
264 (time_overflow): Move earlier, to before first use.
265 (hi_time, lo_time): New functions, for an accurate test for
266 out-of-range times.
267 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
268 (Fget_internal_run_time): Don't assume time_t fits in int.
269 (make_time): Use list2 instead of Fcons twice.
270 (Fdecode_time): More accurate test for out-of-range times.
271 (check_tm_member): New function.
272 (Fencode_time): Use it, to test for out-of-range times.
273 (lisp_time_argument): Don't rely on undefined left-shift and
274 right-shift behavior when checking for time stamp overflow.
275
276 * editfns.c (time_overflow): New function, refactoring common code.
277 (Fformat_time_string, Fdecode_time, Fencode_time):
278 (Fcurrent_time_string): Use it.
279
280 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
281 * dired.c (make_time): Move to ...
282 * editfns.c (make_time): ... here.
283 * systime.h: Note the move.
284
285 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
286
287 * fringe.c (update_window_fringes): Remove unused variables.
288
289 * unexmacosx.c (copy_data_segment): Also copy __got section.
290 (Bug#8223)
291
292 2011-03-12 Eli Zaretskii <eliz@gnu.org>
293
294 * termcap.c [MSDOS]: Include "msdos.h.
295 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
296 Constify `char *' arguments and their references according to
297 prototypes in tparam.h.
298
299 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
300
301 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
302 Adapt all references accordingly.
303
304 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
305
306 2011-03-11 Tom Tromey <tromey@redhat.com>
307
308 * buffer.c (syms_of_buffer): Remove obsolete comment.
309
310 2011-03-11 Eli Zaretskii <eliz@gnu.org>
311
312 * termhooks.h (encode_terminal_code): Declare prototype.
313
314 * msdos.c (encode_terminal_code): Don't declare prototype.
315
316 * term.c (encode_terminal_code): Now external again, used by
317 w32console.c and msdos.c.
318
319 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)): Depend
320 on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
321
322 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
323
324 Fix some minor problems found by GCC 4.5.2's static checks.
325
326 * fringe.c (update_window_fringes): Mark locals as initialized
327 (Bug#8227).
328 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
329
330 * alloc.c (mark_fringe_data): Move decl from here ...
331 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
332 to check its interface.
333 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
334
335 * fontset.c (free_realized_fontset): Now static.
336 (Fset_fontset_font): Rename local to avoid shadowing.
337 (fontset_font): Mark local as initialized.
338 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
339
340 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
341
342 * xselect.c (x_disown_buffer_selections): Remove; not used.
343 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
344 (x_own_selection, Fx_disown_selection_internal): Rename locals
345 to avoid shadowing.
346 (x_handle_dnd_message): Remove local to avoid shadowing.
347
348 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
349 so that the caller can use some name other than gcpro1.
350 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
351 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
352 (Fx_backspace_delete_keys_p):
353 Use them to avoid shadowing, and rename vars to avoid shadowing.
354 (x_decode_color, x_set_name, x_window): Now static.
355 (Fx_create_frame): Add braces to silence GCC warning.
356 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
357 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
358 Remove unused locals.
359 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
360 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
361 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
362 macros.
363
364 * xterm.h (x_mouse_leave): New decl.
365
366 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
367 Remove unused functions.
368 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
369 (x_calc_absolute_position): Now static.
370 (XTread_socket): Don't define label "out" unless it's used.
371 Don't declare local "event" unless it's used.
372 (x_iconify_frame, x_free_frame_resources): Don't declare locals
373 unless they are used.
374 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
375 (x_fatal_error_signal): Remove; not used.
376 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
377 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
378 (x_error_catcher, x_connection_closed, x_error_handler):
379 (x_error_quitter, xembed_send_message, x_iconify_frame):
380 (my_log_handler): Rename locals to avoid shadowing.
381 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
382 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
383
384 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font): Rename
385 or move locals to avoid shadowing.
386 (tty_defined_color, merge_face_heights): Now static.
387 (free_realized_faces_for_fontset): Remove; not used.
388 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
389 does not deduce is never used uninitialized.
390 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
391 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
392
393 * terminal.c (store_terminal_param): Now static.
394
395 * xmenu.c (menu_highlight_callback): Now static.
396 (set_frame_menubar): Remove unused local.
397 (xmenu_show): Rename parameter to avoid shadowing.
398 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
399 since they might point to immutable storage.
400 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
401 since it's unused otherwise.
402
403 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
404 Add a FIXME, since the code still doesn't look right. (Bug#8215)
405 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
406 avoids a gcc -Wuninitialized diagnostic.
407 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
408 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
409 does not deduce are never used uninitialized.
410
411 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
412
413 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
414 * window.c (window_loop, size_window):
415 (run_window_configuration_change_hook, enlarge_window): Likewise.
416
417 * window.c (display_buffer): Now static.
418 (size_window): Mark variables that gcc -Wuninitialized
419 does not deduce are never used uninitialized.
420 * window.h (check_all_windows): New decl, to forestall
421 gcc -Wmissing-prototypes diagnostic.
422 * dispextern.h (bidi_dump_cached_states): Likewise.
423
424 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
425 shadowing.
426 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
427 Include <limits.h>.
428 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
429 and to avoid gcc -Wuninitialized warning.
430 (load_charset_map): Mark variables that gcc -Wuninitialized
431 does not deduce are never used uninitialized.
432 (load_charset): Abort instead of using uninitialized var (Bug#8229).
433
434 * coding.c (coding_set_source, coding_set_destination):
435 Use "else { /* comment */ }" rather than "else /* comment */;"
436 for clarity, and to avoid gcc -Wempty-body warning.
437 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
438 a block, when the outer 'i' will do.
439 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
440 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
441 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
442 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
443 (Fdecode_sjis_char, Fdefine_coding_system_internal):
444 Rename locals to avoid shadowing.
445 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
446 * coding.c (emacs_mule_char, encode_invocation_designation):
447 Now static, since they're not used elsewhere.
448 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
449 (decode_coding_object, encode_coding_object, detect_coding_system):
450 (decode_coding_emacs_mule): Mark variables that gcc
451 -Wuninitialized does not deduce are never used uninitialized.
452 (detect_coding_iso_2022): Initialize a local variable that might
453 be used uninitialized. Leave a FIXME because it's not clear that
454 this initialization is needed. (Bug#8211)
455 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
456 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
457 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
458 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
459 Remove unused macros.
460
461 * category.c (hash_get_category_set): Remove unused local var.
462 (copy_category_table): Now static, since it's not used elsewhere.
463 * character.c (string_count_byte8): Likewise.
464
465 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
466 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
467
468 * chartab.c (copy_sub_char_table): Now static, since it's not used
469 elsewhere.
470 (sub_char_table_ref_and_range, char_table_ref_and_range):
471 Rename locals to avoid shadowing.
472 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
473
474 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
475 (BIDI_BOB): Remove unused macro.
476
477 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
478 deduce are never used uninitialized.
479 * term.c (encode_terminal_code): Likewise.
480
481 * term.c (encode_terminal_code): Now static. Remove unused local.
482
483 * tparam.h: New file.
484 * term.c, tparam.h: Include it.
485 * deps.mk (term.o, tparam.o): Depend on tparam.h.
486 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
487 Move these decls to tparam.h, and make them agree with what
488 is actually in tparam.c. The previous trick of using incompatible
489 decls in different modules does not conform to the C standard.
490 All callers of tparam changed to use tparam's actual API.
491 * tparam.c (tparam1, tparam, tgoto):
492 Use const pointers where appropriate.
493
494 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
495 * cm.h (struct cm): Likewise.
496 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
497 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
498 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
499 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
500 (turn_on_face, init_tty): Likewise.
501 * termchar.h (struct tty_display_info): Likewise.
502
503 * term.c (term_mouse_position): Rename local to avoid shadowing.
504
505 * alloc.c (mark_ttys): Move decl from here ...
506 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
507
508 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
509
510 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
511
512 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
513
514 * search.c (compile_pattern_1): Remove argument regp, unused since
515 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
516 (compile_pattern): Don't pass it.
517
518 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
519
520 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
521 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
522 for ! HAVE_GTK3.
523 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
524
525 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
526
527 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
528 gdk_window_get_screen, gdk_window_get_geometry,
529 gdk_x11_window_lookup_for_display and GDK_KEY_g.
530 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
531 (xg_get_pixbuf_from_pixmap): New function.
532 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
533 to Pixmap, take frame as parameter, remove GdkColormap parameter.
534 Call xg_get_pixbuf_from_pixmap instead of
535 gdk_pixbuf_get_from_drawable.
536 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
537 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
538 (xg_check_special_colors): Use GtkStyleContext and its functions
539 for HAVE_GTK3.
540 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
541 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
542 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
543 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes): Call
544 gtk_widget_get_preferred_size.
545 (xg_frame_resized): gdk_window_get_geometry only takes 5
546 parameters.
547 (xg_win_to_widget, xg_event_is_for_menubar): Call
548 gdk_x11_window_lookup_for_display.
549 (xg_set_widget_bg): New function.
550 (delete_cb): New function.
551 (xg_create_frame_widgets): connect delete-event to delete_cb.
552 Call xg_set_widget_bg. Only set backgrund pixmap for ! HAVE_GTK3
553 (xg_set_background_color): Call xg_set_widget_bg.
554 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
555 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
556 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
557 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
558 if ! HAVE_GTK3.
559 (update_frame_tool_bar): Call gtk_widget_hide.
560 (xg_initialize): Use GDK_KEY_g.
561
562 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
563 if ! HAVE_GTK3
564 (x_session_initialize): Call gdk_x11_set_sm_client_id.
565
566 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
567 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
568 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
569
570 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
571
572 * w32xfns.c (select_palette): Check success of RealizePalette against
573 GDI_ERROR, not zero.
574
575 2011-03-07 Ben Key <bkey76@gmail.com>
576
577 * w32fns.c (FILE_NAME_COMBO_BOX, FILE_NAME_LIST): Define.
578 (file_dialog_callback): Fix locating the window handle of the File Name
579 text field. After disabling it, set focus on the list control.
580 (Fx_file_dialog): If only_dir_p is non-nil, set the text of the File
581 Name text field to "Current Directory" if it does not already have
582 another value. (Bug#8181)
583
584 2011-03-07 Adrian Robert <Adrian.B.Robert@gmail.com>
585
586 * nsterm.m (ns_draw_window_cursor): Fix handling of "cursor_width"
587 parameter for hbar cursors. Based on a patch by Ben Key
588 <bkey76@gmail.com>.
589
590 2011-03-06 Chong Yidong <cyd@stupidchicken.com>
591
592 * xdisp.c (redisplay_window): Revert incorrect logic in 2011-03-06
593 change.
594
595 2011-03-06 Paul Eggert <eggert@cs.ucla.edu>
596
597 current_column: Now returns EMACS_INT, fixing some iftc
598 that was introduced in the 2002-06-02 change "temporarily"; see
599 <http://lists.gnu.org/archive/html/emacs-devel/2002-06/msg00039.html>.
600 * bytecode.c (Fbyte_code): Don't cast current_column () to int.
601 * cmds.c (internal_self_insert): Likewise.
602 * indent.c (Fcurrent_column): Likewise.
603 * keymap.c (describe_command): Likewise.
604 * minibuf.c (read_minibuf): Likewise.
605 * indent.c (Fcurrent_indentation): Don't cast position_indentation ()
606 to int.
607 * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
608 Likewise.
609 * cmds.c (internal_self_insert): Declare locals to be EMACS_INT,
610 not int or double, if they might contain a column number.
611 * indent.c (current_column, Findent_to, indented_beyond_p):
612 (compute_motion, vmotion): Likewise.
613 * keymap.c (describe_command): Likewise.
614 * xdisp.c (pint2str): Likewise.
615 * indent.c (last_known_column): Now EMACS_INT, not int.
616 * minibuf.c (minibuf_prompt_width): Likewise.
617 * indent.c (current_column, current_column_1, position_indentation):
618 Return EMACS_INT, not double.
619 * lisp.h (current_column): Likewise.
620 * indent.c (indented_beyond_p): Last arg is now EMACS_INT, not double.
621 All callers changed.
622 * lisp.h (indented_beyond_p): Likewise.
623
624 * minibuf.c (minibuf_prompt, minibuf_prompt_width): Move here
625 from xdisp.c, and make static, since these are used only here.
626 * window.h, xdisp.c (minibuf_prompt, minibuf_prompt_width):
627 Remove decls.
628
629 * cmds.c (internal_self_insert): Reindent to match Emacs style.
630 * xdisp.c (redisplay_window): Likewise.
631
632 * xdisp.c: Rename or move local decls to avoid shadowing.
633 (init_iterator, handle_fontified_prop, handle_single_display_spec):
634 (message_dolog, message_with_string, redisplay_internal):
635 (redisplay_window, try_window_reusing_current_matrix, try_window_id):
636 (compute_line_metrics, highlight_trailing_whitespace, cursor_row_p):
637 (display_line, display_string, rows_from_pos_range):
638 (mouse_face_from_buffer_pos, note_mouse_highlight, expose_frame):
639 Rename or move local decls.
640 * xdisp.c (BUILD_GLYPHLESS_GLYPH_STRING): Omit unused local var.
641 (produce_glyphless_glyph): Make a pointer "const"
642 since it might point to immutable storage.
643 (update_window_cursor): Now static, since it's not used elsewhere.
644 (SKIP_GLYPHS): Removed unused macro.
645
646 2011-03-06 Michael Shields <shields@msrl.com> (tiny change)
647
648 * window.c (Fnext_window): Doc fix. (Bug#5567)
649
650 2011-03-05 Chong Yidong <cyd@stupidchicken.com>
651
652 * nsterm.m (ns_draw_window_cursor): Fix typo in 2011-02-23 commit.
653
654 2011-03-02 Ken Brown <kbrown@cornell.edu>
655
656 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
657
658 2011-03-02 Paul Eggert <eggert@cs.ucla.edu>
659
660 Work around some portability problems with symlinks.
661
662 * fileio.c (Fmake_symbolic_link): Treat ENOSYS specially, and
663 generate a special message for it. Suggested by Eli Zaretskii in
664 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg00995.html>.
665 (Frename_file, Fmake_symbolic_link, Ffile_symlink_p):
666 Simplify the code by assuming that the readlink and symlink calls
667 exist, even if they always fail on this host.
668 (Ffile_readable_p): Likewise, for fifos.
669 * config.in: Regenerate.
670
671 2011-02-27 Chong Yidong <cyd@stupidchicken.com>
672
673 * frame.c (store_frame_param): Don't store value directly in
674 buffer_list and buried_buffer_list; copy the list and remove dead
675 buffers (Bug#7898).
676
677 2011-02-27 Eli Zaretskii <eliz@gnu.org>
678
679 * msdos.c (readlink) [DJGPP < 2.04]: New stub function.
680
681 * msdos.h (readlink) [DJGPP < 2.04]: Declare prototype.
682
683 * w32.c (symlink, readlink): New stub functions.
684
685 2011-02-27 Paul Eggert <eggert@cs.ucla.edu>
686
687 * scroll.c (CHECK_BOUNDS): #define only if GLYPH_DEBUG.
688 This avoids a gcc warning in some configurations.
689
690 * frame.c (x_set_screen_gamma): Rename local to avoid shadowing.
691
692 * frame.h: Avoid gcc -Wmissing-prototypes diagnostics.
693 (set_menu_bar_lines, x_get_resource_string): New decls.
694 * msdos.c (set_menu_bar_lines): Omit decl.
695
696 * dispextern.h (struct glyph): Make u.img_id int, not unsigned.
697 It's always given int values and used as an int. This suppresses
698 a gcc "comparison of unsigned expression >= 0" warning in some
699 configurations.
700
701 * dispnew.c: Rename locals to avoid shadowing.
702 (update_text_area, scrolling_window, update_frame_1): Rename locals.
703
704 2011-02-26 Paul Eggert <eggert@cs.ucla.edu>
705
706 * dispnew.c: Fix problems uncovered by gcc -Wstrict-prototypes.
707 (copy_glyph_row_contents): Remove; not used.
708 (frame_row_to_window, check_current_matrix_flags):
709 (window_change_signal): Now static, since they're not used elsewhere.
710 (check_current_matrix_flags): Surround with "#if 0", since its
711 only use is in a comment. Maybe both the comment and the "#if 0"
712 stuff should be removed?
713
714 * dispnew.c: Fix problem uncovered by gcc -Wunused-variable.
715 (adjust_frame_glyphs_for_window_redisplay): Make 'w' local to the
716 contexts that actually need it.
717
718 2011-02-26 Eli Zaretskii <eliz@gnu.org>
719
720 * s/msdos.h (HAVE_LSTAT): Define for DJGPP >= 2.04.
721 (lstat): Define for DJGPP < 2.04.
722
723 2011-02-25 Paul Eggert <eggert@cs.ucla.edu>
724
725 * dired.c (Ffile_attributes): Increase size of modes from 10 to 12
726 as per recent filemodestring API change. Reported by Jonas Öster in
727 <http://lists.gnu.org/archive/html/emacs-devel/2011-02/msg01069.html>.
728
729 2011-02-23 Ben Key <bkey76@gmail.com>
730
731 * nsterm.m (ns_draw_window_cursor): Obey the cursor_width argument
732 directly, for bar cursors.
733
734 2011-02-23 Chong Yidong <cyd@stupidchicken.com>
735
736 * xdisp.c (set_frame_cursor_types): Don't write an undefined value
737 into the frame's cursor_width.
738
739 2011-02-23 Stefan Monnier <monnier@iro.umontreal.ca>
740
741 * print.c (print_object): Never print old-style backquotes.
742 Obey escapeflag for hash tables as well.
743
744 2011-02-23 Kenichi Handa <handa@m17n.org>
745
746 * font.c (font_open_entity): Be sure to set scaled_pixel_size.
747 (font_find_for_lface): Check if attrs[LFACE_HEIGHT_INDEX] is integer.
748
749 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
750
751 * dired.c (Ffile_attributes): Simplify and avoid #ifdef.
752
753 2011-02-22 Wolfgang Jenkner <wjenkner@inode.at> (tiny change)
754
755 * lread.c (openp): Correct Boolean typo in last commit.
756
757 2011-02-22 Adrian Robert <Adrian.B.Robert@gmail.com>
758
759 * nsterm.m (EmacsView-keyDown:): Don't pass shift-only-modified
760 key to Emacs, treat as unmodified (go to input manager processing).
761
762 2011-02-22 Paul Eggert <eggert@cs.ucla.edu>
763
764 Assume S_ISLNK etc. work, since gnulib supports this.
765 * config.in: Regenerate.
766 * dired.c (lstat): Remove.
767 (file_name_completion): Assume S_ISDIR works.
768 (file_name_completion_stat): Assume S_ISLNK works.
769 Do not bother calling stat unless lstat says it's a symlink.
770 * fileio.c (S_ISLNK, S_ISFIFO, S_ISREG, lstat): Remove.
771 (Fcopy_file): Assume S_ISREG and S_ISLNK work.
772 (check_writable, Ffile_writable_p, Fset_file_times):
773 Assume S_ISDIR works.
774 (Ffile_readable_p): Use S_IFIFO, not S_ISFIFO, to guess whether
775 fifos exist.
776 (Ffile_regular_p, Finsert_file_contents): Assume S_ISREG works.
777 * filelock.c (S_ISLNK): Remove.
778 * lread.c (openp): Assume S_ISDIR works.
779 * xrdb.c (S_ISDIR): Remove.
780
781 2011-02-21 Eli Zaretskii <eliz@gnu.org>
782
783 * makefile.w32-in ($(BLD)/filemode.$(O)): Move recipe to
784 lib/makefile.w32-in.
785 ($(BLD)/dired.$(O)): Depend on $(EMACS_ROOT)/lib/filemode.h.
786 (GLOBAL_SOURCES): Remove filemode.c.
787 (OBJ1): Remove $(BLD)/filemode.$(O).
788
789 2011-02-21 Paul Eggert <eggert@cs.ucla.edu>
790
791 Import filemode module from gnulib.
792 * Makefile.in (base_obj): Remove filemode.o, as it's now in ../lib.
793 * deps.mk (dired.o): Depend on ../lib/filemode.h, too.
794 (filemode.o): Remove; this is now in ../lib.
795 * dired.c: Include <filemode.h>.
796 (filemodestring): Remove now-redundant decl.
797 * config.in: Regenerate.
798
799 2011-02-20 Eli Zaretskii <eliz@gnu.org>
800
801 * makefile.w32-in ($(BLD)/fns.$(O)): Depend on
802 $(EMACS_ROOT)/lib/md5.h and on stamp_BLD.
803
804 2011-02-20 Christoph Scholtes <cschol2112@gmail.com>
805
806 * makefile.w32-in: Remove md5.$(O).
807 ($(BLD)/md5.$(O)): Remove prerequisites, moved to
808 lib/makefile.w32-in.
809
810 2011-02-20 Paul Eggert <eggert@cs.ucla.edu>
811
812 Import crypto/md5 and stdint modules from gnulib.
813 * Makefile.in (base_obj): Remove md5.o, since this file
814 is in lib now.
815 * config.in: Regenerate.
816 * md5.h, md5.h: Move to ../lib.
817 * deps.mk (md5.o): Remove.
818 (fns.o): Depend on ../lib/md5.h, not md5.h.
819
820 2011-02-19 Eli Zaretskii <eliz@gnu.org>
821
822 * termcap.c (tputs): Don't declare baud_rate.
823
824 * s/msdos.h (strtold): Define to _strtold.
825
826 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
827
828 * process.c (Fstart_process, Fmake_serial_process)
829 (Fmake_network_process, server_accept_connection):
830 Use empty_unibyte_string.
831
832 * alloc.c (make_unibyte_string): Don't SET_UNIBYTE redundantly.
833
834 * lread.c (Qdir_ok): New constant.
835 (syms_of_lread): Initialize it.
836 (openp): Don't ignore directories if the predicate returns dir-ok.
837
838 2011-02-18 Eli Zaretskii <eliz@gnu.org>
839
840 * xdisp.c (display_line): Fix the change made for bug#7939.
841
842 * terminal.c (create_terminal): Use default-keyboard-coding-system
843 and default-terminal-coding-system to initialize coding systems of
844 the new terminal. (Bug#7840)
845
846 2011-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
847
848 * lisp.h (BYTE_MARK_STACK): New macro.
849 (mark_byte_stack): Only declare if BYTE_MARK_STACK is set.
850
851 * bytecode.c (BYTE_MAINTAIN_TOP): New macros.
852 (struct byte_stack): Only define `top' and `bottom' if used.
853 (mark_byte_stack): Only define if used.
854 (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): Nullify if BYTE_MAINTAIN_TOP
855 is not set.
856 (Fbyte_code): Don't set `bottom' unless BYTE_MAINTAIN_TOP is set.
857
858 * term.c (OUTPUT_IF): Use OUTPUT.
859
860 * alloc.c (Fgarbage_collect): When using stack scanning, don't
861 redundantly scan byte-code stacks, catchlist, and handlerlist.
862
863 2011-02-17 Jan Djärv <jan.h.d@swipnet.se>
864
865 * nsfns.m (Fx_create_frame, ns_set_name_as_filename)
866 (Fns_read_file_name): Replace B_ with BVAR.
867
868 * nsterm.m (ns_term_init): Use KVAR.
869
870 2011-02-16 Eli Zaretskii <eliz@gnu.org>
871
872 * msdos.c (internal_terminal_init): Use KVAR.
873
874 * w32fns.c (Fx_create_frame): Use KVAR.
875
876 * w32term.c (w32_create_terminal): Use KVAR.
877
878 * s/ms-w32.h (MODE_LINE_BINARY_TEXT): Remove.
879 (getloadavg): Declare prototype which was removed from lisp.h.
880
881 * xdisp.c (decode_mode_spec): Don't use MODE_LINE_BINARY_TEXT.
882
883 * fileio.c (Finsert_file_contents, Fwrite_region):
884 Remove references to buffer_file_type.
885 (syms_of_fileio): Don't intern and staticpro
886 find-buffer-file-type.
887
888 * callproc.c (syms_of_callproc): Remove references to
889 buffer_file_type.
890
891 * buffer.c (reset_buffer_local_variables): Don't set
892 buffer_file_type.
893 (init_buffer_once): Likewise.
894 (syms_of_buffer): Don't define buffer-file-type.
895
896 * buffer.h (struct buffer): Remove buffer_file_type.
897
898 2011-02-16 Tom Tromey <tromey@parfait>
899
900 * callint.c (Fcall_interactively): Update for change to field names.
901 * doc.c (Fsubstitute_command_keys): Update for change to field names.
902 * cmds.c (Fself_insert_command): Update for change to field names.
903 * keymap.c (Fcurrent_active_maps, Fkey_binding)
904 (Fdescribe_buffer_bindings): Update for change to field names.
905 * macros.c (Fstart_kbd_macro, end_kbd_macro, Fend_kbd_macro)
906 (store_kbd_macro_char, Fcall_last_kbd_macro, Fexecute_kbd_macro):
907 Update for change to field names.
908 * keyboard.c (echo_char, echo_dash, echo_now, cancel_echoing)
909 (echo_length, echo_truncate, cmd_error, command_loop_1)
910 (read_char, kbd_buffer_store_event_hold, make_lispy_event)
911 (menu_bar_items, tool_bar_items, read_char_minibuf_menu_prompt)
912 (read_key_sequence, Fcommand_execute, Fexecute_extended_command)
913 (Fdiscard_input, init_kboard, init_keyboard, mark_kboards):
914 Update for change to field names.
915 * xfns.c (Fx_create_frame): Update for change to field names.
916 * xterm.c (x_connection_closed, x_term_init): Update for change to
917 field names.
918 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN, init_tty):
919 Update for change to field names.
920 * window.c (window_scroll_pixel_based, window_scroll_line_based):
921 Update for change to field names.
922 * frame.c (make_frame_without_minibuffer, Fhandle_switch_frame)
923 (delete_frame): Update for change to field names.
924 * lisp.h (DEFVAR_KBOARD): Update for change to field names.
925 * keyboard.h (struct kboard): Rename all Lisp_Object fields.
926 (KBOARD_INTERNAL_FIELD, KVAR): New macros.
927
928 2011-02-16 Tom Tromey <tromey@redhat.com>
929
930 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Use BVAR.
931
932 2011-02-16 Tom Tromey <tromey@parfait>
933
934 * xfns.c (x_create_tip_frame, Fx_show_tip): Replace B_ with BVAR.
935 * xfaces.c (compute_char_face): Replace B_ with BVAR.
936 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
937 (message_dolog, update_echo_area, ensure_echo_area_buffers)
938 (with_echo_area_buffer, setup_echo_area_for_printing)
939 (set_message_1, update_menu_bar, update_tool_bar)
940 (text_outside_line_unchanged_p, redisplay_internal)
941 (try_scrolling, try_cursor_movement, redisplay_window)
942 (try_window_reusing_current_matrix, row_containing_pos)
943 (try_window_id, get_overlay_arrow_glyph_row, display_line)
944 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
945 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
946 (get_window_cursor_type, note_mouse_highlight): Replace B_ with
947 BVAR.
948 * window.c (window_display_table, unshow_buffer, window_loop)
949 (window_min_size_2, set_window_buffer, Fset_window_buffer)
950 (select_window, Fforce_window_update, temp_output_buffer_show)
951 (Fset_window_configuration, save_window_save): Replace B_ with
952 BVAR.
953 * w32fns.c (x_create_tip_frame, Fx_show_tip, Fw32_shell_execute):
954 Replace B_ with BVAR.
955 * undo.c (record_point, record_insert, record_delete)
956 (record_marker_adjustment, record_first_change)
957 (record_property_change, Fundo_boundary, truncate_undo_list)
958 (Fprimitive_undo): Replace B_ with BVAR.
959 * syntax.h (Vstandard_syntax_table, CURRENT_SYNTAX_TABLE)
960 (SETUP_BUFFER_SYNTAX_TABLE): Replace B_ with BVAR.
961 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
962 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
963 (skip_syntaxes, scan_lists): Replace B_ with BVAR.
964 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
965 (string_match_1, fast_looking_at, newline_cache_on_off)
966 (search_command, search_buffer, simple_search, boyer_moore)
967 (Freplace_match): Replace B_ with BVAR.
968 * process.c (get_process, list_processes_1, Fstart_process)
969 (Fmake_serial_process, Fmake_network_process)
970 (read_process_output, send_process, exec_sentinel)
971 (status_notify, setup_process_coding_systems): Replace B_ with
972 BVAR.
973 * print.c (PRINTDECLARE, PRINTPREPARE, PRINTFINISH, printchar)
974 (strout, print_string, temp_output_buffer_setup, print_object):
975 Replace B_ with BVAR.
976 * msdos.c (IT_frame_up_to_date): Replace B_ with BVAR.
977 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer):
978 Replace B_ with BVAR.
979 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
980 (set_marker_both, set_marker_restricted_both, unchain_marker):
981 Replace B_ with BVAR.
982 * lread.c (readchar, unreadchar, openp, readevalloop)
983 (Feval_buffer, Feval_region): Replace B_ with BVAR.
984 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE): Replace B_ with BVAR.
985 * keymap.c (Flocal_key_binding, Fuse_local_map)
986 (Fcurrent_local_map, push_key_description)
987 (Fdescribe_buffer_bindings): Replace B_ with BVAR.
988 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
989 (read_key_sequence): Replace B_ with BVAR.
990 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Replace B_ with BVAR.
991 * intervals.c (set_point_both, get_local_map): Replace B_ with
992 BVAR.
993 * insdel.c (check_markers, insert_char, insert_1_both)
994 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
995 (adjust_after_replace, replace_range, del_range_2)
996 (modify_region, prepare_to_modify_buffer)
997 (Fcombine_after_change_execute): Replace B_ with BVAR.
998 * indent.c (buffer_display_table, recompute_width_table)
999 (width_run_cache_on_off, current_column, scan_for_column)
1000 (Findent_to, position_indentation, compute_motion, vmotion):
1001 Replace B_ with BVAR.
1002 * fringe.c (get_logical_cursor_bitmap)
1003 (get_logical_fringe_bitmap, update_window_fringes): Replace B_
1004 with BVAR.
1005 * frame.c (make_frame_visible_1): Replace B_ with BVAR.
1006 * font.c (font_at): Replace B_ with BVAR.
1007 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1008 Replace B_ with BVAR.
1009 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1010 (unlock_buffer): Replace B_ with BVAR.
1011 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1012 (Ffile_regular_p, Ffile_selinux_context)
1013 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1014 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1015 (Finsert_file_contents, choose_write_coding_system)
1016 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1017 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1018 (Fdo_auto_save, Fset_buffer_auto_saved): Replace B_ with BVAR.
1019 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1020 (save_excursion_restore, Fprevious_char, Fchar_before)
1021 (general_insert_function, Finsert_char, Finsert_byte)
1022 (make_buffer_string_both, Finsert_buffer_substring)
1023 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1024 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1025 (Ftranslate_region_internal, save_restriction_restore)
1026 (Fchar_equal): Replace B_ with BVAR.
1027 * dispnew.c (Fframe_or_buffer_changed_p): Replace B_ with BVAR.
1028 * dispextern.h (WINDOW_WANTS_MODELINE_P)
1029 (WINDOW_WANTS_HEADER_LINE_P): Replace B_ with BVAR.
1030 * dired.c (directory_files_internal): Replace B_ with BVAR.
1031 * data.c (swap_in_symval_forwarding, set_internal)
1032 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1033 Replace B_ with BVAR.
1034 * composite.c (fill_gstring_header)
1035 (composition_compute_stop_pos, composition_adjust_point)
1036 (Ffind_composition_internal): Replace B_ with BVAR.
1037 * coding.c (decode_coding, encode_coding)
1038 (make_conversion_work_buffer, decode_coding_gap)
1039 (decode_coding_object, encode_coding_object)
1040 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1041 (Funencodable_char_position, Fcheck_coding_systems_region):
1042 Replace B_ with BVAR.
1043 * cmds.c (Fself_insert_command, internal_self_insert): Replace B_
1044 with BVAR.
1045 * charset.c (Ffind_charset_region): Replace B_ with BVAR.
1046 * character.h (FETCH_CHAR_ADVANCE, INC_BOTH, DEC_BOTH)
1047 (ASCII_CHAR_WIDTH): Replace B_ with BVAR.
1048 * character.c (chars_in_text, Fget_byte): Replace B_ with BVAR.
1049 * category.h (Vstandard_category_table): Replace B_ with BVAR.
1050 * category.c (check_category_table, Fcategory_table)
1051 (Fset_category_table, char_category_set): Replace B_ with BVAR.
1052 * casetab.c (Fcurrent_case_table, set_case_table): Replace B_ with
1053 BVAR.
1054 * casefiddle.c (casify_object, casify_region): Replace B_ with
1055 BVAR.
1056 * callproc.c (Fcall_process, Fcall_process_region): Replace B_
1057 with BVAR.
1058 * callint.c (check_mark, Fcall_interactively): Replace B_ with
1059 BVAR.
1060 * bytecode.c (Fbyte_code): Replace B_ with BVAR.
1061 * buffer.h (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE, BVAR): Replace B_
1062 with BVAR.
1063 * buffer.c (Fbuffer_live_p, Fget_file_buffer)
1064 (get_truename_buffer, Fget_buffer_create)
1065 (clone_per_buffer_values, Fmake_indirect_buffer, reset_buffer)
1066 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1067 (Fbuffer_local_value, buffer_lisp_local_variables)
1068 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1069 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1070 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1071 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1072 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1073 (Fbuffer_swap_text, swapfield_, Fbuffer_swap_text)
1074 (Fset_buffer_multibyte, swap_out_buffer_local_variables)
1075 (record_overlay_string, overlay_strings, init_buffer_once)
1076 (init_buffer, syms_of_buffer): Replace B_ with BVAR.
1077
1078 2011-02-16 Eli Zaretskii <eliz@gnu.org>
1079
1080 * xdisp.c (redisplay_internal): Resynchronize `w' if the selected
1081 window is changed inside calls to do_pending_window_change.
1082 (Bug#8020)
1083
1084 2011-02-16 Paul Eggert <eggert@cs.ucla.edu>
1085
1086 Remove no-longer needed getloadavg symbols.
1087 * m/alpha.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1088 * m/amdx86-64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1089 * m/ia64.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1090 * m/ibms390.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1091 * m/macppc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1092 * m/sparc.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1093 * m/template.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1094 * m/vax.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Remove.
1095 * s/aix4-2.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1096 * s/bsd-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove #undef.
1097 * s/hpux10-20.h (KERNEL_FILE, LOAD_AVE_TYPE, LOAD_AVE_CVT):
1098 (LDAV_SYMBOL): Remove.
1099 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE): Remove.
1100 * s/usg5-4-common.h (KERNEL_FILE, LDAV_SYMBOL): Remove.
1101
1102 Import getloadavg module from gnulib.
1103 * deps.mk (getloadavg.o): Remove; gnulib now does this.
1104 * lisp.h (getloadavg) [!defined HAVE_GETLOADAVG]: Remove; gnulib
1105 now does this.
1106 * src/s/freebsd.h (HAVE_GETLOADAVG): Remove; gnulib now does this.
1107 * src/s/netbsd.h (HAVE_GETLOADAVG): Likewise.
1108 * config.in: Regenerate.
1109
1110 2011-02-15 Eli Zaretskii <eliz@gnu.org>
1111
1112 * nsfns.m (ns_set_name_as_filename, Fns_read_file_name): Use B_.
1113
1114 2011-02-14 Michael Welsh Duggan <md5i@md5i.com>
1115
1116 * print.c (float_to_string): Ensure that a decimal point is
1117 printed if using dtoastr (Bug#8033).
1118
1119 2011-02-14 Eli Zaretskii <eliz@gnu.org>
1120
1121 * msdos.c (IT_frame_up_to_date):
1122 * s/msdos.h (MODE_LINE_BINARY_TEXT): Use B_ for the MS-DOS build.
1123
1124 * dired.c (directory_files_internal):
1125 * fileio.c (Finsert_file_contents):
1126 * insdel.c (prepare_to_modify_buffer):
1127 * xdisp.c (pos_visible_p):
1128 * s/ms-w32.h (MODE_LINE_BINARY_TEXT):
1129 * w32fns.c (Fw32_shell_execute, Fx_show_tip, x_create_tip_frame):
1130 Use B_ for the MS-Windows build.
1131
1132 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1133
1134 * xrdb.c (x_load_resources): For LUCID and XFT, don't put a
1135 resource that specifies helvetica for menus and dialogs.
1136
1137 * xmenu.c (apply_systemfont_to_dialog): Apply to *dialog.font.
1138 (apply_systemfont_to_menu): Set resources *menubar*font and
1139 *popup*font. Remove defflt.
1140 (set_frame_menubar, create_and_show_popup_menu):
1141 Call apply_systemfont_to_menu before lw_create_widget.
1142
1143 2011-02-14 Tom Tromey <tromey@redhat.com>
1144
1145 * buffer.c (init_buffer_once, syms_of_buffer): Use B_ in DOS_NT case.
1146
1147 * keyboard.h: Remove obsolete comment.
1148
1149 2011-02-14 Tom Tromey <tromey@parfait>
1150
1151 * composite.c (fill_gstring_header)
1152 (composition_compute_stop_pos, composition_adjust_point)
1153 (Ffind_composition_internal): Use B_.
1154 * intervals.c (set_point_both, get_local_map): Use B_.
1155 * callproc.c (Fcall_process, Fcall_process_region): Use B_.
1156 * process.c (get_process, list_processes_1, Fstart_process)
1157 (Fmake_serial_process, Fmake_network_process)
1158 (read_process_output, send_process, exec_sentinel)
1159 (status_notify, setup_process_coding_systems): Use B_.
1160 * bytecode.c (Fbyte_code): Use B_.
1161 * syntax.c (update_syntax_table, dec_bytepos, Fsyntax_table)
1162 (Fset_syntax_table, Fmodify_syntax_entry, skip_chars)
1163 (skip_syntaxes, scan_lists): Use B_.
1164 * lread.c (readchar, unreadchar, openp, readevalloop)
1165 (Feval_buffer, Feval_region): Use B_.
1166 * print.c (printchar, strout, print_string, PRINTDECLARE)
1167 (PRINTPREPARE, PRINTFINISH, temp_output_buffer_setup)
1168 (print_object): Use B_.
1169 * font.c (font_at): Use B_.
1170 * fns.c (Fbase64_encode_region, Fbase64_decode_region, Fmd5):
1171 Use B_.
1172 * callint.c (check_mark, Fcall_interactively): Use B_.
1173 * editfns.c (region_limit, Fmark_marker, save_excursion_save)
1174 (save_excursion_restore, Fprevious_char, Fchar_before)
1175 (general_insert_function, Finsert_char, Finsert_byte)
1176 (make_buffer_string_both, Finsert_buffer_substring)
1177 (Fcompare_buffer_substrings, subst_char_in_region_unwind)
1178 (subst_char_in_region_unwind_1, Fsubst_char_in_region)
1179 (Ftranslate_region_internal, save_restriction_restore)
1180 (Fchar_equal): Use B_.
1181 * data.c (swap_in_symval_forwarding, set_internal)
1182 (Fmake_local_variable, Fkill_local_variable, Flocal_variable_p):
1183 Use B_.
1184 * undo.c (record_point, record_insert, record_delete)
1185 (record_marker_adjustment, record_first_change)
1186 (record_property_change, Fundo_boundary, truncate_undo_list)
1187 (Fprimitive_undo): Use B_.
1188 * search.c (compile_pattern_1, compile_pattern, looking_at_1)
1189 (string_match_1, fast_looking_at, newline_cache_on_off)
1190 (search_command, search_buffer, simple_search, boyer_moore)
1191 (Freplace_match): Use B_.
1192 * indent.c (buffer_display_table, recompute_width_table)
1193 (width_run_cache_on_off, current_column, scan_for_column)
1194 (Findent_to, position_indentation, compute_motion, vmotion):
1195 Use B_.
1196 * casefiddle.c (casify_object, casify_region): Use B_.
1197 * casetab.c (Fcurrent_case_table, set_case_table): Use B_.
1198 * cmds.c (Fself_insert_command, internal_self_insert): Use B_.
1199 * fileio.c (Fexpand_file_name, Ffile_directory_p)
1200 (Ffile_regular_p, Ffile_selinux_context)
1201 (Fset_file_selinux_context, Ffile_modes, Fset_file_modes)
1202 (Fset_file_times, Ffile_newer_than_file_p, decide_coding_unwind)
1203 (Finsert_file_contents, choose_write_coding_system)
1204 (Fwrite_region, build_annotations, Fverify_visited_file_modtime)
1205 (Fset_visited_file_modtime, auto_save_error, auto_save_1)
1206 (Fdo_auto_save, Fset_buffer_auto_saved): Use B_.
1207 * minibuf.c (read_minibuf, get_minibuffer, Fread_buffer): Use B_.
1208 * marker.c (Fmarker_buffer, Fset_marker, set_marker_restricted)
1209 (set_marker_both, set_marker_restricted_both, unchain_marker):
1210 Use B_.
1211 * insdel.c (check_markers, insert_char, insert_1_both)
1212 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1213 (adjust_after_replace, replace_range, del_range_2)
1214 (modify_region, prepare_to_modify_buffer)
1215 (Fcombine_after_change_execute): Use B_.
1216 * filelock.c (unlock_all_files, Flock_buffer, Funlock_buffer)
1217 (unlock_buffer): Use B_.
1218 * keymap.c (Flocal_key_binding, Fuse_local_map)
1219 (Fcurrent_local_map, push_key_description)
1220 (Fdescribe_buffer_bindings): Use B_.
1221 * keyboard.c (command_loop_1, read_char_minibuf_menu_prompt)
1222 (read_key_sequence): Use B_.
1223 * fringe.c (get_logical_cursor_bitmap)
1224 (get_logical_fringe_bitmap, update_window_fringes): Use B_.
1225 * xfns.c (x_create_tip_frame, Fx_show_tip): Use B_.
1226 * xfaces.c (compute_char_face): Use B_.
1227 * character.c (chars_in_text, Fget_byte): Use B_.
1228 * category.c (check_category_table, Fcategory_table)
1229 (Fset_category_table, char_category_set): Use B_.
1230 * coding.c (decode_coding, encode_coding)
1231 (make_conversion_work_buffer, decode_coding_gap)
1232 (decode_coding_object, encode_coding_object)
1233 (Fdetect_coding_region, Ffind_coding_systems_region_internal)
1234 (Funencodable_char_position, Fcheck_coding_systems_region):
1235 Use B_.
1236 * charset.c (Ffind_charset_region): Use B_.
1237 * window.c (window_display_table, unshow_buffer, window_loop)
1238 (window_min_size_2, set_window_buffer, Fset_window_buffer)
1239 (select_window, Fforce_window_update, temp_output_buffer_show)
1240 (Fset_window_configuration, save_window_save): Use B_.
1241 * xdisp.c (pos_visible_p, init_iterator, reseat_1)
1242 (message_dolog, update_echo_area, ensure_echo_area_buffers)
1243 (with_echo_area_buffer, setup_echo_area_for_printing)
1244 (set_message_1, update_menu_bar, update_tool_bar)
1245 (text_outside_line_unchanged_p, redisplay_internal)
1246 (try_scrolling, try_cursor_movement, redisplay_window)
1247 (try_window_reusing_current_matrix, row_containing_pos)
1248 (try_window_id, get_overlay_arrow_glyph_row, display_line)
1249 (Fcurrent_bidi_paragraph_direction, display_mode_lines)
1250 (decode_mode_spec_coding, decode_mode_spec, display_count_lines)
1251 (get_window_cursor_type, note_mouse_highlight): Use B_.
1252 * frame.c (make_frame_visible_1): Use B_.
1253 * dispnew.c (Fframe_or_buffer_changed_p): Use B_.
1254 * dispextern.h (WINDOW_WANTS_HEADER_LINE_P)
1255 (WINDOW_WANTS_MODELINE_P): Use B_.
1256 * syntax.h (Vstandard_syntax_table): Update.
1257 (CURRENT_SYNTAX_TABLE, SETUP_BUFFER_SYNTAX_TABLE): Use B_.
1258 * intervals.h (TEXT_PROP_MEANS_INVISIBLE): Update.
1259 (TEXT_PROP_MEANS_INVISIBLE): Use B_.
1260 * character.h (FETCH_CHAR_ADVANCE): Update.
1261 (INC_BOTH, ASCII_CHAR_WIDTH, DEC_BOTH): Use B_.
1262 * category.h (Vstandard_category_table): Update.
1263 * lisp.h (DEFVAR_BUFFER_DEFAULTS): Update for change to field
1264 names.
1265 (DOWNCASE_TABLE, UPCASE_TABLE): Use B_.
1266 * buffer.c (swapfield_): New macro.
1267 (Fbuffer_swap_text): Use swapfield_ where appropriate.
1268 (Fbuffer_live_p, Fget_file_buffer, get_truename_buffer)
1269 (Fget_buffer_create, clone_per_buffer_values)
1270 (Fmake_indirect_buffer, reset_buffer)
1271 (reset_buffer_local_variables, Fbuffer_name, Fbuffer_file_name)
1272 (Fbuffer_local_value, buffer_lisp_local_variables)
1273 (Fset_buffer_modified_p, Frestore_buffer_modified_p)
1274 (Frename_buffer, Fother_buffer, Fbuffer_enable_undo)
1275 (Fkill_buffer, Fset_buffer_major_mode, set_buffer_internal_1)
1276 (set_buffer_temp, Fset_buffer, set_buffer_if_live)
1277 (Fbarf_if_buffer_read_only, Fbury_buffer, Ferase_buffer)
1278 (Fbuffer_swap_text, Fset_buffer_multibyte)
1279 (swap_out_buffer_local_variables, record_overlay_string)
1280 (overlay_strings, init_buffer_once, init_buffer, syms_of_buffer):
1281 Use B_.
1282 * buffer.h (struct buffer): Rename all Lisp_Object fields.
1283 (BUFFER_INTERNAL_FIELD, B_): New macro.
1284 (FETCH_CHAR, FETCH_CHAR_AS_MULTIBYTE): Use B_.
1285
1286 2011-02-14 Jan Djärv <jan.h.d@swipnet.se>
1287
1288 * gtkutil.c (xg_tool_bar_menu_proxy): Handle case when tool bar label
1289 is null.
1290
1291 2011-02-13 Jan Djärv <jan.h.d@swipnet.se>
1292
1293 * callproc.c (Fcall_process):
1294 * process.c (create_process): Replace Gtk with GConf in SIGPIPE
1295 comment.
1296
1297 2011-02-12 Martin Rudalics <rudalics@gmx.at>
1298
1299 * window.c (select_window): Check inhibit_point_swap argument when
1300 deciding whether to return immediately.
1301
1302 2011-02-12 Jan Djärv <jan.h.d@swipnet.se>
1303
1304 * nsterm.m (setFrame, initFrame): Make sure pixel_height doesn't become
1305 zero (Bug#7348).
1306
1307 2011-02-12 Chong Yidong <cyd@stupidchicken.com>
1308
1309 * config.in (TERMINFO): New definition.
1310
1311 * s/netbsd.h: Use it to choose between terminfo and termcap
1312 (Bug#7642).
1313
1314 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1315
1316 * md5.c (md5_process_bytes): Use sizeof, not __alignof__.
1317 The difference doesn't matter here, in practice, and sizeof is
1318 more portable to non-GCC compilers. Also, this makes the code
1319 match the already-existing comment.
1320
1321 2011-02-12 Andreas Schwab <schwab@linux-m68k.org>
1322
1323 * process.c (create_process): Reset SIGPIPE handler in the child.
1324 * callproc.c (Fcall_process): Likewise. (Bug#5238)
1325
1326 2011-02-12 Eli Zaretskii <eliz@gnu.org>
1327
1328 * xdisp.c <this_line_min_pos>: New variable.
1329 (move_it_in_display_line_to): Record in this_line_min_pos the
1330 smallest position iterated across.
1331 (display_line): Use this_line_min_pos to record the smallest
1332 position in the line even if it is not displayed due to
1333 hscrolling. (Bug#7939)
1334
1335 2011-02-12 Paul Eggert <eggert@cs.ucla.edu>
1336
1337 Port to Sun C 5.11, which has __attribute__ ((__aligned (N))).
1338 * md5.h (ATTRIBUTE_ALIGNED): New macro.
1339 (struct md5_ctx): Use it.
1340
1341 Port to Solaris 10, which doesn't support FC_HINT_STYLE.
1342 * xftfont.c (FC_HINT_STYLE): #define to "hintstyle" if not
1343 defined.
1344 * xsettings.c (parse_settings, apply_xft_settings): Don't assume
1345 FC_HINT_STYLE is supported.
1346
1347 2011-02-11 Jan Djärv <jan.h.d@swipnet.se>
1348
1349 * xterm.c (x_set_frame_alpha): Access data before it is free:d.
1350 Make sure we don't do x_catch_errors twice.
1351
1352 2011-02-10 Glenn Morris <rgm@gnu.org>
1353
1354 * Makefile.in (really-lwlib): Depend on globals.h, for parallel builds.
1355
1356 2011-02-09 Eli Zaretskii <eliz@gnu.org>
1357
1358 * makefile.w32-in (GLOBAL_SOURCES, SOME_MACHINE_OBJECTS, obj):
1359 New macros.
1360 (globals.h, gl-stamp): New targets.
1361 (clean): Clean gl-stamp and globals.h.
1362
1363 2011-02-09 Andreas Schwab <schwab@linux-m68k.org>
1364
1365 * Makefile.in (gl-stamp): Create globals.h here.
1366 (globals.h): Don't do it here.
1367 (mostlyclean): Clean globals.h and gl-stamp.
1368
1369 2011-02-09 Paul Eggert <eggert@cs.ucla.edu>
1370
1371 * Makefile.in ($(otherobj)): Depend on globals.h.
1372 Otherwise 'make -j10' failed on my host, because the build lacked
1373 necessary dependencies, e.g., vm-limit.o depends on globals.h.
1374
1375 2011-02-08 Tom Tromey <tromey@redhat.com>
1376
1377 * Makefile.in (NS_OBJC_OBJ): New variable.
1378 (base_obj): Rename from 'obj'.
1379 (obj): New variable.
1380 (globals.h, gl-stamp, $(obj)): New targets.
1381 (GLOBAL_SOURCES): New variable.
1382 * globals.h: Remove.
1383 * nsselect.m (Vselection_alist): Define. Reverts part of
1384 2011-01-19T22:11:33Z!jan.h.d@swipnet.se.
1385 * buffer.c: Don't use "no_cell" for name of kill-buffer-hook's
1386 variable.
1387 * xselect.c (Vselection_alist): Define. Reverts part of 2011-01-19T23:32:42Z!eggert@cs.ucla.edu.
1388
1389 2011-02-08 Kenichi Handa <handa@m17n.org>
1390
1391 * font.c (Ffont_get): Do not cache :otf value.
1392
1393 2011-02-07 Paul Eggert <eggert@cs.ucla.edu>
1394
1395 conform to C89 pointer rules
1396
1397 * dired.c (scmp, file_name_completion):
1398 Change types between char * and unsigned char *, to satisfy C89
1399 rules about pointer type compatibility.
1400 * casefiddle.c (casify_object, casify_region): Likewise.
1401 * search.c (Freplace_match, Fregexp_quote): Likewise.
1402 * alloc.c (make_string, make_specified_string, make_pure_string):
1403 Likewise.
1404 * data.c (Fstring_to_number): Likewise.
1405 * print.c (float_to_string, PRINTFINISH, printchar, strout):
1406 (print_object): Likewise.
1407 * editfns.c (init_editfns, Fchar_to_string, Fbyte_to_string):
1408 (Fuser_full_name, Fsubst_char_in_region, Ftranslate_region_internal):
1409 (Fformat): Likewise.
1410 * callint.c (Fcall_interactively): Likewise.
1411 * fns.c (string_make_multibyte, string_to_multibyte):
1412 (string_make_unibyte, Fstring_as_unibyte, Fstring_to_unibyte):
1413 (Fbase64_encode_region, base64_encode_1, Fbase64_decode_region, Fmd5):
1414 Likewise.
1415 * lread.c (read1, hash_string): Likewise.
1416 * process.c (read_process_output, send_process, Fprocess_send_region):
1417 Likewise.
1418 * callproc.c (Fcall_process): Likewise.
1419 * doprnt.c (doprnt): Likewise.
1420 * indent.c (compute_motion): Likewise.
1421 * xfont.c (xfont_decode_coding_xlfd): Likewise.
1422 * ralloc.c (resize_bloc): Likewise.
1423 * image.c (tiff_load): Likewise.
1424 * xml.c (make_dom, parse_region): Likewise.
1425 * character.c (strwidth): Make its argument const char *, not const
1426 unsigned char *, since more callers prefer it that way. All callers
1427 changed.
1428
1429 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
1430
1431 * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.
1432 Emacs assumes two's complement elsewhere, but the assumption is
1433 easy to remove here, and this suppresses a warning with Sun C 5.8.
1434
1435 conform to C89 pointer rules
1436
1437 * xterm.c (x_draw_fringe_bitmap, handle_one_xevent, x_bitmap_icon):
1438 (same_x_server, x_term_init):
1439 Change types between char * and unsigned char *, to satisfy C89
1440 rules about pointer type compatibility.
1441 * doc.c (get_doc_string, Fsnarf_documentation):
1442 (Fsubstitute_command_keys): Likewise.
1443 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
1444 * bitmaps/gray.xbm (gray_bits): Likewise.
1445 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
1446 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
1447 Likewise.
1448 * keymap.c (Ftext_char_description): Likewise.
1449 * minibuf.c (Fread_buffer): Likewise.
1450 * fileio.c (IS_DRIVE) [defined WINDOWSNT]:
1451 (DRIVE_LETTER) [defined DOS_NT]:
1452 (report_file_error, Ffile_name_directory, Ffile_name_nondirectory):
1453 (make_temp_name, Fexpand_file_name, file_name_absolute_p):
1454 (search_embedded_absfilename, Fsubstitute_in_file_name):
1455 (barf_or_query_if_file_exists, Fmake_directory_internal):
1456 (Fdelete_directory_internal, Ffile_name_absolute_p, read_non_regular):
1457 (Finsert_file_contents, Fwrite_region):
1458 Likewise.
1459 * insdel.c (insert, insert_and_inherit, insert_before_markers):
1460 (insert_before_markers_and_inherit, insert_1, insert_1_both):
1461 Likewise. This changes these functions' signatures, which is
1462 more convenient since most callers use char *. All remaining
1463 callers changed.
1464 * editfns.c (general_insert_function): Change signature to
1465 match changes to insert functions' signatures.
1466 * keymap.c (map_keymap_char_table_item, map_keymap_internal):
1467 Use explicit cast when converting between void * and function pointer
1468 types, as C89 requires this.
1469
1470 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1471
1472 don't ignore chdir failure
1473 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
1474 failure and exit.
1475 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
1476 remaining unchecked chdir calls in this function; some DOS/NT
1477 expert needs to fix them.
1478 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
1479 in this function; some NextStep expert needs to fix them.
1480
1481 2011-02-05 Glenn Morris <rgm@gnu.org>
1482
1483 * xfaces.c (Finternal_set_lisp_face_attribute):
1484 Try to clarify some error messages. (Bug#2659)
1485
1486 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
1487
1488 * editfns.c (save_restriction_restore): Don't forget to invalidate the
1489 current_column cache (bug#7946).
1490
1491 2011-02-05 Kenichi Handa <handa@m17n.org>
1492
1493 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
1494
1495 * xftfont.c (xftfont_open): Likewise.
1496
1497 2011-02-05 Andreas Schwab <schwab@linux-m68k.org>
1498
1499 * window.c (Fselect_window): Add missing return value.
1500
1501 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
1502
1503 xstrcasecmp: conform to C89 pointer rules
1504 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
1505 to const char *, since they're usually low-level C strings, and
1506 this stays compatible with C89 pointer rules. All callers changed.
1507
1508 * charset.c: Conform to C89 pointer rules.
1509 (define_charset_internal): Switch between char * and unsigned char *.
1510
1511 * xmenu.c: Conform to C89 const rules.
1512 (xmenu_show, xdialog_show): Declare local var as char *, not
1513 const char *, to stay compatible with C89 const rules.
1514
1515 * xdisp.c: Conform to C89 pointer rules.
1516 (store_mode_line_noprop, display_string, reseat_to_string):
1517 (c_string_pos, number_of_chars, message_dolog):
1518 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
1519 (display_mode_element, display_string):
1520 Switch between char * and unsigned char * to stay compatible wth
1521 C89 pointer rules.
1522
1523 * regex.c: Conform to C89 pointer rules.
1524 (re_wctype): Add cast, as C89 does not allow assigning between
1525 char * and unsigned char *.
1526 (regex_compile): Likewise.
1527
1528 sync from gnulib to remove HAVE_STDBOOL_H
1529 * config.in: Regenerate.
1530
1531 2011-02-04 Eli Zaretskii <eliz@gnu.org>
1532
1533 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
1534 Replace all uses of lisp.h with $(LISP_H), and all uses of
1535 process.h with $(PROCESS_H).
1536 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
1537 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
1538
1539 * deps.mk: Update for recent changes: gnutls support, gnulib
1540 imports, addition of globals.h.
1541
1542 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
1543 ../lib/ignore-value.h.
1544
1545 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
1546
1547 allow C code to suppress warnings about ignored return values
1548
1549 We need to go through the code and for each such warning, either
1550 fix the code to pay attention to the returned value, or tell GCC
1551 that we really do want to ignore the returned value. Here is one
1552 example of how to do the latter.
1553 * sysdep.c: Include <ignore-value.h>.
1554 (sys_subshell): Suppress an undesirable warning about not checking
1555 the returned value of 'write', as there's nothing useful one can
1556 do with that returned value.
1557
1558 2011-02-03 Jan Djärv <jan.h.d@swipnet.se>
1559
1560 * xterm.c (x_connection_closed): Remove all calls that calls
1561 XSync (Bug#7949).
1562
1563 2011-02-01 Eli Zaretskii <eliz@gnu.org>
1564
1565 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
1566 TIFFClientOpen.
1567
1568 2011-02-01 Jan Djärv <jan.h.d@swipnet.se>
1569
1570 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
1571 (x_session_check_input): Change args and return type so it can be used
1572 as argument to add_read_fd. Make static. Remove call to select.
1573 Call kbd_buffer_store_event for emacs_event.
1574 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
1575 (ice_conn_watch_CB): Call add_read_fd.
1576
1577 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
1578 x_session_check_input.
1579 (x_session_initialized): Remove definition.
1580 (x_initialize): Remove setting of x_session_initialized.
1581
1582 * xterm.h (x_session_check_input): Remove declaration.
1583
1584 2011-02-01 Paul Eggert <eggert@cs.ucla.edu>
1585
1586 format-time-string now supports subsecond time stamp resolution
1587 * editfns.c (emacs_nmemftime): Rename from emacs_memftimeu,
1588 for consistency with its new argument and with gnulib nstrftime.
1589 All callers changed. New argument NS.
1590 (Fformat_time_string): Check that the time argument's microseconds
1591 component, if any, is in range; this avoids integer overflow and
1592 also nstrftime needs this. Document %N.
1593
1594 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
1595
1596 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
1597 of int. All uses adjusted.
1598 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
1599 (svg_load_image): Remove casts.
1600
1601 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
1602
1603 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
1604 function definitions for compiling with libpng-1.5.
1605 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
1606 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
1607 (Bug#7908).
1608
1609 2011-01-31 Eli Zaretskii <eliz@gnu.org>
1610
1611 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
1612
1613 * makefile.w32-in (OBJ2): Remove strftime.$(O).
1614 ($(BLD)/strftime.$(O)): Remove prerequisites.
1615
1616 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
1617
1618 src/emacs.c now gets version number from configure.in
1619 * emacs.c (emacs_version): Set to VERSION so that it
1620 is determined automatically from ../configure.in.
1621
1622 2011-01-31 Jim Meyering <meyering@redhat.com>
1623
1624 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
1625 Use xmalloc rather than malloc.
1626
1627 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
1628
1629 strftime: import from gnulib
1630 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
1631 * deps.mk (strftime.o): Remove.
1632 * editfns.c: Include <strftime.h>, supplied by gnulib.
1633 (emacs_strftimeu): Remove decl.
1634 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
1635 emacs_strftimeu.
1636 * config.in: Regenerate.
1637 * strftime.c: Remove; we now use strftime from gnulib.
1638
1639 Use SSDATA when the context wants char *.
1640 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
1641 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
1642 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
1643 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
1644 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
1645 Use SSDATA (not SDATA) when the context of the expression wants
1646 char * (not unsigned char *).
1647
1648 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
1649
1650 * .gdbinit: Read global lisp variables as globals.f_V*.
1651
1652 2011-01-30 Andreas Schwab <schwab@linux-m68k.org>
1653
1654 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
1655 All uses changed.
1656 (PROP_SAVE): Likewise.
1657
1658 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
1659
1660 * keyboard.c (make_lispy_position): Fix typo in last change
1661 (Bug#7935).
1662
1663 2011-01-29 Eli Zaretskii <eliz@gnu.org>
1664
1665 * s/ms-w32.h (HAVE_MKTIME): Remove.
1666
1667 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
1668 (GNULIB): New variable.
1669 (LIBS): Add $(GNULIB).
1670 $(TEMACS): Depend on $(GNULIB).
1671 <top-level>: Fix font-lock disrupted by a lone `"'.
1672
1673 2011-01-29 Jan Djärv <jan.h.d@swipnet.se>
1674
1675 * nsselect.m (ns_string_from_pasteboard): Get length of string
1676 and use make_string instead of build_string (Bug#7934).
1677 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
1678 instead of stringWithUTF8String (Bug#7934).
1679
1680 2011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
1681
1682 * nsfont.m (nsfont_open): Ensure that fonts with inexact
1683 descenders would not become one pixel too tall (Bug#7887).
1684
1685 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
1686
1687 * keyboard.c (make_lispy_position): For clicks on right fringe or
1688 margin, compute text position using the X coordinate relative to
1689 the left of the text area (Bug#7839).
1690
1691 2011-01-28 Kenichi Handa <handa@m17n.org>
1692
1693 * ftfont.c (ftfont_spec_pattern): Check each extra property
1694 value.
1695
1696 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
1697
1698 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
1699
1700 2011-01-27 Chong Yidong <cyd@stupidchicken.com>
1701
1702 * font.c (font_parse_fcname): Undefine a temporary macro.
1703
1704 2011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
1705
1706 Let the debugger continue to the normal handler (bug#7825).
1707 * eval.c (maybe_call_debugger): Declare before new use.
1708 (find_handler_clause): Don't call debugger any more.
1709 Ignore Vstack_trace_on_error.
1710 Use XCAR/XCDR.
1711 (syms_of_eval): Remove Vstack_trace_on_error.
1712 (Fsignal): Only modify handlerlist when we know we need to do it.
1713 Call the debugger when necessary.
1714 * globals.h (Vstack_trace_on_error): Remove.
1715
1716 2011-01-26 Chong Yidong <cyd@stupidchicken.com>
1717
1718 * font.c (font_parse_fcname): Rewrite GTK font name parser.
1719
1720 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
1721
1722 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
1723 the buffer's point-max (bug#7876).
1724
1725 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
1726
1727 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
1728 Remove unused case (Bug#6811).
1729
1730 2011-01-23 Jan Djärv <jan.h.d@swipnet.se>
1731
1732 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
1733 setFrameTopLeftPoint is constrained.
1734
1735 2011-01-23 Paul Eggert <eggert@cs.ucla.edu>
1736
1737 Check return values of some library calls.
1738 * emacs.c (main): Check dup result.
1739 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
1740 (frame_name_fnn_p): Check strtol result.
1741
1742 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
1743 when calling XpmCreatePixmapFromData.
1744
1745 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
1746 * lisp.h (SSDATA): New macro.
1747 All uses of (char *) SDATA (x) replaced with SSDATA (x),
1748 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
1749 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
1750 * xsmfns.c (SSDATA): Likewise.
1751
1752 2011-01-22 Martin Rudalics <rudalics@gmx.at>
1753
1754 * window.c (select_window): New function.
1755 (Fselect_window): Call it.
1756 (inhibit_point_swap): Variable deleted.
1757 (Fset_window_configuration): Call select_window directly.
1758
1759 2011-01-22 Jan Djärv <jan.h.d@swipnet.se>
1760
1761 * nsterm.m (constrainFrameRect): Only constrain the first time called.
1762
1763 2011-01-21 Jan Djärv <jan.h.d@swipnet.se>
1764
1765 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
1766 screen, not the window screen.
1767 (x_set_window_size): Remove constraints.
1768 Calculate origin.y only if zooming is 0 and without referring to a
1769 screen.
1770 (windowWillResize): Don't modify frameSize.
1771 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
1772 (initFrameFromEmacs): Initialize ns_userRect.
1773 (windowShouldZoom): Set zooming to one. Remove all other code.
1774 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
1775 Zero it after restore.
1776 (constrainFrameRect): New method for EmacsWindow.
1777 (mouseDragged): Always post NSWindowDidResizeNotification after call to
1778 windowWillResize.
1779
1780 * nsterm.h (ns_output): Add dont_constrain and zooming.
1781 (EmacsView): Add ns_userRect.
1782
1783 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
1784 if ns_alternate_modifier is none.
1785
1786 2011-01-20 Jan Djärv <jan.h.d@swipnet.se>
1787
1788 * unexmacosx.c: Add comment about include order.
1789
1790 2011-01-20 Glenn Morris <rgm@gnu.org>
1791
1792 * minibuf.c (syms_of_minibuf) <read-expression-history>:
1793 Give it a doc string.
1794 * globals.h: Add Vread_expression_history.
1795
1796 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
1797 Give it a doc string.
1798 * globals.h: Add Vkbd_macro_termination_hook.
1799
1800 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
1801
1802 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
1803
1804 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
1805
1806 Fix X11 compilation failure.
1807 * globals.h (struct emacs_globals): Document f_Vselection_alist.
1808 * xselect.c (Vselection_alist): Remove declaration, moving its
1809 documentation to globals.h. This fixes a compilation failure
1810 induced by the earlier change to globals.h today.
1811
1812 2011-01-19 Jan Djärv <jan.h.d@swipnet.se>
1813
1814 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
1815
1816 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
1817 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
1818 (ns_input_spi_name, ns_input_spi_arg)
1819 (ns_alternate_modifier, ns_right_alternate_modifier)
1820 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
1821 (ns_right_control_modifier, ns_function_modifier)
1822 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
1823 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
1824 (x_underline_at_descent_line): Remove declaration.
1825 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
1826
1827 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks)
1828 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
1829 (syms_of_nsselect): Remove & from DEFVAR_LISP.
1830
1831 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
1832 Remove declaration.
1833
1834 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
1835 globals.h.
1836 (syms_of_nsfont): Remove & from DEFVAR_LISP.
1837
1838 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
1839 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
1840 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
1841
1842 * globals.h (struct emacs_globals): Add f_ns_input_file,
1843 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
1844 f_ns_input_color, f_ns_input_text, f_ns_working_text,
1845 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
1846 f_ns_right_alternate_modifier, f_ns_command_modifier,
1847 f_ns_right_command_modifier, f_ns_control_modifier,
1848 f_ns_right_control_modifier, f_ns_function_modifier,
1849 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
1850 f_Vns_version_string, f_Vns_sent_selection_hooks,
1851 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
1852 and corresponding defines.
1853
1854 2011-01-19 Sam Steingold <sds@gnu.org>
1855
1856 * w32.c (check_windows_init_file): Remove declarations of
1857 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
1858 * w32fns.c: Fix an error introduced by the previous patch.
1859
1860 2011-01-19 Tom Tromey <tromey@redhat.com>
1861
1862 * window.c: Fix error introduced by previous patch.
1863
1864 2011-01-18 Tom Tromey <tromey@parfait>
1865
1866 * globals.h: New file.
1867 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
1868 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
1869 (Vwindow_system_version): Remove declaration.
1870 * w32term.h (Vw32_enable_palette)
1871 (Vx_pixel_size_width_font_regexp): Remove declaration.
1872 * w32menu.c (Voverriding_local_map)
1873 (Voverriding_local_map_menu_flag): Remove declaration.
1874 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
1875 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
1876 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
1877 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
1878 (Vw32_phantom_key_code, Vw32_recognize_altgr)
1879 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
1880 (w32_use_full_screen_buffer): Remove declaration.
1881 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
1882 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
1883 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
1884 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
1885 (no_redraw_on_reenter, visible_bell): Remove declaration.
1886 * sysdep.c (Vsystem_name): Remove declaration.
1887 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
1888 * menu.h (Vmenu_updating_frame): Remove declaration.
1889 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
1890 Remove declaration.
1891 * lisp.h (Vafter_init_time, Vafter_load_alist)
1892 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
1893 (Vcompletion_regexp_list, Vcurrent_load_list)
1894 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
1895 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
1896 (Vexec_directory, Vexec_path, Vexec_suffixes)
1897 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
1898 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
1899 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
1900 (Vinstallation_directory, Vinvocation_directory)
1901 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
1902 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
1903 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
1904 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
1905 (Vscalable_fonts_allowed, Vselect_active_regions)
1906 (Vshell_file_name, Vstandard_input, Vstandard_output)
1907 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
1908 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
1909 (Vuser_login_name, Vwindow_scroll_functions)
1910 (Vwindow_system_version, Vx_no_window_manager)
1911 (Vx_resource_class, Vx_resource_name, baud_rate)
1912 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
1913 (history_delete_duplicates, inhibit_x_resources)
1914 (last_nonmenu_event, load_in_progress, max_specpdl_size)
1915 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
1916 (use_dialog_box, use_file_dialog): Remove declaration.
1917 Include globals.h.
1918 * keymap.h (Voverriding_local_map)
1919 (Voverriding_local_map_menu_flag, meta_prefix_char):
1920 Remove declaration.
1921 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
1922 (Vinput_method_function, Vkey_translation_map)
1923 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
1924 (do_mouse_tracking, extra_keyboard_modifiers)
1925 (num_nonmacro_input_events): Remove declaration.
1926 * intervals.h (Vchar_property_alias_alist)
1927 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
1928 (Vtext_property_default_nonsticky): Remove declaration.
1929 * gtkutil.h (x_gtk_file_dialog_help_text)
1930 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
1931 (x_gtk_whole_detached_tool_bar): Remove declaration.
1932 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
1933 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
1934 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
1935 (focus_follows_mouse): Remove declaration.
1936 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
1937 (Vignore_relative_composition, Votf_script_alist)
1938 (Vuse_default_ascent, Vvertical_centering_font_regexp):
1939 Remove declaration.
1940 * font.h (Vfont_log): Remove declaration.
1941 * dosfns.h (Vdos_display_scancodes, Vdos_version)
1942 (Vdos_windows_version, dos_codepage, dos_country_code)
1943 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
1944 (dos_keypad_mode, dos_super_key, dos_timezone_offset):
1945 Remove declaration.
1946 * disptab.h (Vglyph_table, Vstandard_display_table):
1947 Remove declaration.
1948 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
1949 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
1950 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
1951 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
1952 (inverse_video, mode_line_in_non_selected_windows)
1953 (tool_bar_button_relief, tool_bar_max_label_size)
1954 (underline_minimum_offset)
1955 (unibyte_display_via_language_environment, x_stretch_cursor_p):
1956 Remove declaration.
1957 * composite.h (Vauto_composition_function)
1958 (Vcomposition_function_table): Remove declaration.
1959 * commands.h (Vexecuting_kbd_macro)
1960 (Vminibuffer_local_completion_map)
1961 (Vminibuffer_local_filename_completion_map)
1962 (Vminibuffer_local_filename_must_match_map)
1963 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
1964 (Vminibuffer_local_ns_map, Vthis_command)
1965 (Vunread_command_events, cursor_in_echo_area)
1966 (last_command_event, last_nonmenu_event, unread_command_char):
1967 Remove declaration.
1968 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
1969 (Vdefault_file_name_coding_system)
1970 (Vdefault_process_coding_system, Vfile_name_coding_system)
1971 (Vlast_coding_system_used, Vlocale_coding_system)
1972 (Vselect_safe_coding_system_function)
1973 (Vtranslation_table_for_input, coding_system_require_warning)
1974 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
1975 (eol_mnemonic_unix, inherit_process_coding_system):
1976 Remove declaration.
1977 * charset.h (Vcharset_list, Vcurrent_iso639_language):
1978 Remove declaration.
1979 * character.h (Vauto_fill_chars, Vchar_direction_table)
1980 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
1981 (Vscript_representative_chars, Vtranslation_table_vector)
1982 (Vunicode_category_table): Remove declaration.
1983 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
1984 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
1985 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
1986 (inhibit_modification_hooks): Remove declaration.
1987 * xterm.c (syms_of_xterm): Update.
1988 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
1989 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
1990 (x_mouse_click_focus_ignore_position)
1991 (x_underline_at_descent_line)
1992 (x_use_underline_position_properties): Remove.
1993 * xsmfns.c (syms_of_xsmfns): Update.
1994 (Vx_session_id, Vx_session_previous_id): Remove.
1995 * xsettings.c (syms_of_xsettings): Update.
1996 (Vxft_settings, use_system_font): Remove.
1997 * xselect.c (syms_of_xselect): Update.
1998 (Vselection_converter_alist, Vx_lost_selection_functions)
1999 (Vx_sent_selection_functions, x_selection_timeout): Remove.
2000 * xfns.c (syms_of_xfns): Update.
2001 (Vgtk_version_string, Vmotif_version_string)
2002 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2003 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2004 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2005 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2006 (Vx_sensitive_text_pointer_shape)
2007 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
2008 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
2009 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
2010 Remove.
2011 * xfaces.c (syms_of_xfaces): Update.
2012 (Vface_default_stipple, Vface_font_rescale_alist)
2013 (Vface_ignored_fonts, Vface_new_frame_defaults)
2014 (Vface_remapping_alist, Vfont_list_limit)
2015 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
2016 * xdisp.c (syms_of_xdisp): Update.
2017 (Vauto_resize_tool_bars, Vblink_cursor_alist)
2018 (Vdisplay_pixels_per_inch, Vfontification_functions)
2019 (Vframe_title_format, Vglobal_mode_string)
2020 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
2021 (Vicon_title_format, Vinhibit_redisplay)
2022 (Vline_number_display_limit, Vline_prefix)
2023 (Vmax_mini_window_height, Vmenu_bar_update_hook)
2024 (Vmenu_updating_frame, Vmessage_log_max)
2025 (Vmouse_autoselect_window, Vnobreak_char_display)
2026 (Voverlay_arrow_position, Voverlay_arrow_string)
2027 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
2028 (Vresize_mini_windows, Vshow_trailing_whitespace)
2029 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
2030 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
2031 (Vwindow_scroll_functions, Vwindow_size_change_functions)
2032 (Vwindow_text_change_functions, Vwrap_prefix)
2033 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
2034 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
2035 (highlight_nonselected_windows, hscroll_margin)
2036 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
2037 (inhibit_menubar_update, inhibit_try_cursor_movement)
2038 (inhibit_try_window_id, inhibit_try_window_reusing)
2039 (line_number_display_limit_width)
2040 (make_cursor_line_fully_visible_p, message_truncate_lines)
2041 (mode_line_inverse_video, multiple_frames, overline_margin)
2042 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
2043 (tool_bar_max_label_size, underline_minimum_offset)
2044 (unibyte_display_via_language_environment, x_stretch_cursor_p):
2045 Remove.
2046 * window.c (syms_of_window): Update.
2047 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
2048 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
2049 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
2050 (Vwindow_point_insertion_type, auto_window_vscroll_p)
2051 (mode_line_in_non_selected_windows, next_screen_context_lines)
2052 (window_min_height, window_min_width): Remove.
2053 (scroll_margin): Remove declaration.
2054 * w32term.c (syms_of_w32term): Update.
2055 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
2056 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
2057 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
2058 (w32_use_visible_system_caret, x_underline_at_descent_line)
2059 (x_use_underline_position_properties): Remove.
2060 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
2061 Remove declaration.
2062 * w32select.c (syms_of_w32select): Update.
2063 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2064 * w32proc.c (syms_of_ntproc): Update.
2065 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
2066 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
2067 (Vw32_start_process_inherit_error_mode)
2068 (Vw32_start_process_share_console)
2069 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
2070 (Vsystem_name): Remove declaration.
2071 * w32font.c (syms_of_w32font): Update.
2072 (Vw32_charset_info_alist): Remove.
2073 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
2074 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
2075 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
2076 (Vw32_enable_palette, Vw32_lwindow_modifier)
2077 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
2078 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
2079 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
2080 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
2081 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
2082 (Vx_no_window_manager, Vx_nontext_pointer_shape)
2083 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
2084 (Vx_sensitive_text_pointer_shape)
2085 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
2086 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
2087 (w32_mouse_move_interval)
2088 (w32_pass_extra_mouse_buttons_to_system)
2089 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
2090 (w32_strict_fontnames, w32_strict_painting): Remove.
2091 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
2092 (Vw32_recognize_altgr, Vwindow_system_version)
2093 (w32_num_mouse_buttons, w32_use_visible_system_caret):
2094 Remove declaration.
2095 * w32console.c (syms_of_ntterm): Update.
2096 (w32_use_full_screen_buffer): Remove.
2097 (Vtty_defined_color_alist): Remove declaration.
2098 * w16select.c (syms_of_win16select): Update.
2099 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
2100 * undo.c (syms_of_undo): Update.
2101 (Vundo_outer_limit, Vundo_outer_limit_function)
2102 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
2103 Remove.
2104 * textprop.c (syms_of_textprop): Update.
2105 (Vchar_property_alias_alist, Vdefault_text_properties)
2106 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
2107 Remove.
2108 * terminal.c (syms_of_terminal): Update.
2109 (Vdelete_terminal_functions, Vring_bell_function): Remove.
2110 * term.c (syms_of_term): Update.
2111 (Vresume_tty_functions, Vsuspend_tty_functions)
2112 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
2113 Remove.
2114 * syntax.c (syms_of_syntax): Update.
2115 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
2116 (open_paren_in_column_0_is_defun_start)
2117 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
2118 (words_include_escapes): Remove.
2119 * search.c (syms_of_search): Update.
2120 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
2121 * process.c (syms_of_process): Update.
2122 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
2123 (delete_exited_processes): Remove.
2124 * print.c (syms_of_print): Update.
2125 (Vfloat_output_format, Vprint_charset_text_property)
2126 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
2127 (Vprint_length, Vprint_level, Vprint_number_table)
2128 (Vstandard_output, print_escape_multibyte)
2129 (print_escape_newlines, print_escape_nonascii, print_quoted):
2130 Remove.
2131 * msdos.c (syms_of_msdos): Update.
2132 (Vdos_unsupported_char_glyph): Remove.
2133 (unibyte_display_via_language_environment): Remove declaration.
2134 * minibuf.c (syms_of_minibuf): Update.
2135 (Vcompletion_regexp_list, Vhistory_add_new_input)
2136 (Vhistory_length, Vminibuffer_completing_file_name)
2137 (Vminibuffer_completion_confirm)
2138 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
2139 (Vminibuffer_exit_hook, Vminibuffer_help_form)
2140 (Vminibuffer_history_position, Vminibuffer_history_variable)
2141 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
2142 (Vread_buffer_function, Vread_expression_map)
2143 (completion_ignore_case, enable_recursive_minibuffers)
2144 (history_delete_duplicates, minibuffer_allow_text_properties)
2145 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
2146 Remove.
2147 * marker.c (syms_of_marker): Update.
2148 (byte_debug_flag): Remove.
2149 * macros.c (syms_of_macros): Update.
2150 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
2151 * lread.c (syms_of_lread): Update.
2152 (Vafter_load_alist, Vbyte_boolean_vars)
2153 (Vbytecomp_version_regexp, Vcurrent_load_list)
2154 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
2155 (Vload_history, Vload_path, Vload_read_function)
2156 (Vload_source_file_function, Vload_suffixes, Vobarray)
2157 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
2158 (Vread_symbol_positions_list, Vread_with_symbol_positions)
2159 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
2160 (force_load_messages, load_convert_to_unibyte)
2161 (load_dangerous_libraries, load_force_doc_strings)
2162 (load_in_progress): Remove.
2163 * keymap.c (syms_of_keymap): Update.
2164 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
2165 (Vminibuffer_local_completion_map)
2166 (Vminibuffer_local_filename_completion_map)
2167 (Vminibuffer_local_filename_must_match_map)
2168 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
2169 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
2170 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
2171 Remove.
2172 * keyboard.c (syms_of_keyboard): Update.
2173 (Vauto_save_timeout, Vcommand_error_function)
2174 (Vcommand_hook_internal, Vdeactivate_mark)
2175 (Vdeferred_action_function, Vdeferred_action_list)
2176 (Vdisable_point_adjustment, Vdouble_click_time)
2177 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
2178 (Vfunction_key_map, Vglobal_disable_point_adjustment)
2179 (Vhelp_char, Vhelp_event_list, Vhelp_form)
2180 (Vinput_method_function, Vinput_method_previous_message)
2181 (Vkey_translation_map, Vlast_event_frame)
2182 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
2183 (Vminibuffer_message_timeout, Voverriding_local_map)
2184 (Voverriding_local_map_menu_flag, Vpost_command_hook)
2185 (Vpre_command_hook, Vprefix_help_command)
2186 (Vsaved_region_selection, Vselect_active_regions)
2187 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
2188 (Vthis_command, Vthis_command_keys_shift_translated)
2189 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
2190 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
2191 (Vtty_erase_char, Vunread_command_events)
2192 (Vunread_input_method_events, Vunread_post_input_method_events)
2193 (auto_save_interval, cannot_suspend, do_mouse_tracking)
2194 (double_click_fuzz, extra_keyboard_modifiers)
2195 (inhibit_local_menu_bar_menus, last_command_event)
2196 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
2197 (menu_prompting, meta_prefix_char, num_input_keys)
2198 (num_nonmacro_input_events, polling_period, unread_command_char):
2199 Remove.
2200 * insdel.c (syms_of_insdel): Update.
2201 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
2202 * indent.c (syms_of_indent): Update.
2203 (indent_tabs_mode): Remove.
2204 * image.c (syms_of_image): Update.
2205 (Vimage_cache_eviction_delay, Vimage_types)
2206 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
2207 (cross_disabled_images): Remove.
2208 * fringe.c (syms_of_fringe): Update.
2209 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
2210 * frame.c (syms_of_frame): Update.
2211 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
2212 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
2213 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
2214 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
2215 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
2216 Remove.
2217 * fontset.c (syms_of_fontset): Update.
2218 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
2219 (Vfontset_alias_alist, Vignore_relative_composition)
2220 (Votf_script_alist, Vuse_default_ascent)
2221 (Vvertical_centering_font_regexp): Remove.
2222 * font.c (syms_of_font): Update.
2223 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
2224 (Vfont_weight_table, Vfont_width_table): Remove.
2225 * fns.c (syms_of_fns): Update.
2226 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
2227 * filelock.c (syms_of_filelock): Update.
2228 (Vtemporary_file_directory): Remove.
2229 * fileio.c (syms_of_fileio): Update.
2230 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
2231 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
2232 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
2233 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
2234 (Vinhibit_file_name_operation, Vset_auto_coding_function)
2235 (Vwrite_region_annotate_functions)
2236 (Vwrite_region_annotations_so_far)
2237 (Vwrite_region_post_annotation_function)
2238 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
2239 (Vw32_get_true_file_attributes): Remove declaration.
2240 * eval.c (syms_of_eval): Update.
2241 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
2242 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
2243 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
2244 (debug_on_next_call, debug_on_quit, debugger_may_continue)
2245 (max_lisp_eval_depth, max_specpdl_size): Remove.
2246 * emacs.c (syms_of_emacs): Update.
2247 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
2248 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
2249 (Vinstallation_directory, Vinvocation_directory)
2250 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
2251 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
2252 (Vsystem_configuration, Vsystem_configuration_options)
2253 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
2254 (inhibit_x_resources, noninteractive1): Remove.
2255 * editfns.c (syms_of_editfns): Update.
2256 (Vbuffer_access_fontified_property)
2257 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
2258 (Voperating_system_release, Vsystem_name, Vuser_full_name)
2259 (Vuser_login_name, Vuser_real_login_name): Remove.
2260 * dosfns.c (syms_of_dosfns): Update.
2261 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
2262 (dos_codepage, dos_country_code, dos_decimal_point)
2263 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
2264 (dos_super_key, dos_timezone_offset): Remove.
2265 * doc.c (syms_of_doc): Update.
2266 (Vbuild_files, Vdoc_file_name): Remove.
2267 * dispnew.c (syms_of_display): Update.
2268 (Vglyph_table, Vinitial_window_system)
2269 (Vredisplay_preemption_period, Vstandard_display_table)
2270 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
2271 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
2272 * dired.c (syms_of_dired): Update.
2273 (Vcompletion_ignored_extensions): Remove.
2274 (Vw32_get_true_file_attributes): Remove declaration.
2275 * dbusbind.c (syms_of_dbusbind): Update.
2276 (Vdbus_debug, Vdbus_registered_buses)
2277 (Vdbus_registered_objects_table): Remove.
2278 * data.c (syms_of_data): Update.
2279 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
2280 * composite.c (syms_of_composite): Update.
2281 (Vauto_composition_function, Vauto_composition_mode)
2282 (Vcompose_chars_after_function, Vcomposition_function_table):
2283 Remove.
2284 * coding.c (syms_of_coding): Update.
2285 (Vcharset_revision_table, Vcoding_category_list)
2286 (Vcoding_system_alist, Vcoding_system_for_read)
2287 (Vcoding_system_for_write, Vcoding_system_list)
2288 (Vdefault_process_coding_system, Venable_character_translation)
2289 (Vfile_coding_system_alist, Vlast_code_conversion_error)
2290 (Vlast_coding_system_used, Vlatin_extra_code_table)
2291 (Vlocale_coding_system, Vnetwork_coding_system_alist)
2292 (Vprocess_coding_system_alist)
2293 (Vselect_safe_coding_system_function)
2294 (Vstandard_translation_table_for_decode)
2295 (Vstandard_translation_table_for_encode)
2296 (Vtranslation_table_for_input, coding_system_require_warning)
2297 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
2298 (eol_mnemonic_unix, inherit_process_coding_system)
2299 (inhibit_eol_conversion, inhibit_iso_escape_detection)
2300 (inhibit_null_byte_detection): Remove.
2301 * cmds.c (syms_of_cmds): Update.
2302 (Vpost_self_insert_hook): Remove.
2303 * charset.c (syms_of_charset): Update.
2304 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
2305 (inhibit_load_charset_map): Remove.
2306 * character.c (syms_of_character): Update.
2307 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
2308 (Vchar_width_table, Vprintable_chars)
2309 (Vscript_representative_chars, Vtranslation_table_vector)
2310 (Vunicode_category_table): Remove.
2311 * ccl.c (syms_of_ccl): Update.
2312 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
2313 (Vtranslation_hash_table_vector): Remove.
2314 * category.c (syms_of_category): Update.
2315 (Vword_combining_categories, Vword_separating_categories): Remove.
2316 * callproc.c (syms_of_callproc): Update.
2317 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
2318 (Vexec_directory, Vexec_path, Vexec_suffixes)
2319 (Vinitial_environment, Vprocess_environment)
2320 (Vshared_game_score_directory, Vshell_file_name): Remove.
2321 * callint.c (syms_of_callint): Update.
2322 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
2323 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
2324 * bytecode.c (syms_of_bytecode): Update.
2325 (Vbyte_code_meter, byte_metering_on): Remove.
2326 * buffer.c (syms_of_buffer): Update.
2327 (Vafter_change_functions, Vbefore_change_functions)
2328 (Vchange_major_mode_hook, Vfirst_change_hook)
2329 (Vinhibit_read_only, Vkill_buffer_query_functions)
2330 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
2331 * alloc.c (syms_of_alloc): Update.
2332 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
2333 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
2334 (cons_cells_consed, floats_consed, garbage_collection_messages)
2335 (gc_cons_threshold, gcs_done, intervals_consed)
2336 (misc_objects_consed, pure_bytes_used, string_chars_consed)
2337 (strings_consed, symbols_consed, vector_cells_consed): Remove.
2338
2339 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
2340 (DEFVAR_INT): Assume global is in `globals'.
2341 * alloc.c (globals): Define.
2342
2343 2011-01-18 Tom Tromey <tromey@redhat.com>
2344
2345 * image.c (Vimagemagick_render_type): Remove redundant
2346 definition.
2347
2348 2011-01-18 Tom Tromey <tromey@redhat.com>
2349
2350 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
2351 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
2352 (redisplay_window): Update.
2353 (syms_of_xdisp): Update.
2354
2355 2011-01-18 Tom Tromey <tromey@redhat.com>
2356
2357 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
2358 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
2359 Declare.
2360 * gtkutil.c (xg_uses_old_file_dialog):
2361 (xg_get_file_with_chooser):
2362 (xg_tool_bar_detach_callback): Don't redeclare globals.
2363
2364 2011-01-18 Tom Tromey <tromey@redhat.com>
2365
2366 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
2367 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
2368
2369 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
2370
2371 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
2372 defined __GNUC__. ../configure now checks for this GCC feature,
2373 which is now also supported by IBM and Oracle compilers.
2374 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
2375 since Solaris malloc returns mult-of-8.
2376
2377 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
2378
2379 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
2380
2381 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
2382
2383 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
2384 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
2385 * data.c (Fnumber_to_string): Use it.
2386 * print.c (float_to_string, print_object): Likewise.
2387
2388 Include <unistd.h> unilaterally.
2389 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
2390 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
2391 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
2392 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
2393 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
2394 * xterm.c:
2395 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
2396 unistd.h is always present now, possibly supplied by gnulib.
2397
2398 * mktime.c: Remove; moving to ../lib.
2399
2400 Use gnulib's mktime module.
2401 * deps.mk (mktime.o): Remove rule.
2402
2403 Use gnulib's ftoastr module.
2404 * print.c: Include ftoastr.h.
2405 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
2406 Remove; no longer needed.
2407 (float_to_string): Use dtoastr rather than rolling our own code,
2408 which had an off-by-one bug on non-IEEE hosts.
2409
2410 Automate syncing from gnulib.
2411 * Makefile.in (lib): New macro.
2412 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
2413 ($(lib)/libgnu.a): New rule.
2414 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
2415
2416 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
2417 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
2418 so change the type of 'ign' to unsigned int from int.
2419
2420 * regex.c (analyse_first): Remove unreachable 'continue' statement.
2421
2422 * xterm.h (struct x_display_info): Remove stray semicolon.
2423 The extra semicolon didn't conform to the C standard.
2424 Problem reported by Sun cc.
2425
2426 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
2427 These changes make compilation easier to follow with Sun cc.
2428 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
2429 EMACS_INT values without provoking overflow diagnostics.
2430 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
2431 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
2432 diagnostic with signed left shift.
2433
2434 * fileio.c (make_temp_name): Remove unreachable code.
2435
2436 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
2437 Previously it was marked by preceding it with "return;", but
2438 Sun cc complains about this.
2439
2440 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
2441 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
2442 which fixed Bug#2370. Caught by Sun cc.
2443
2444 2011-01-15 Martin Rudalics <rudalics@gmx.at>
2445
2446 * window.c (inhibit_point_swap): New variable.
2447 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
2448 point this time.
2449 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
2450 of setting selected_window to nil (Bug#7728).
2451
2452 2011-01-11 Tassilo Horn <tassilo@member.fsf.org>
2453
2454 * image.c (imagemagick_load_image, Finit_image_library):
2455 Free intermediate image after creating a MagickWand from it.
2456 Terminate MagickWand environment after image loading.
2457
2458 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
2459
2460 * dbusbind.c (Fdbus_register_service): Raise an error in case of
2461 unexpected return values.
2462 (Fdbus_register_method): Remove connection initialization.
2463
2464 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
2465
2466 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
2467 used by Fdbus_register_service.
2468 (QCdbus_request_name_replace_existing): Likewise.
2469 (QCdbus_request_name_do_not_queue): Likewise.
2470 (QCdbus_request_name_reply_primary_owner): Likewise.
2471 (QCdbus_request_name_reply_in_queue): Likewise.
2472 (QCdbus_request_name_reply_exists): Likewise.
2473 (QCdbus_request_name_reply_already_owner): Likewise.
2474 (Fdbus_register_service): New function.
2475 (Fdbus_register_method): Use Fdbus_register_service to do the name
2476 registration.
2477 (syms_of_dbusbind): Add symbols dbus-register-service,
2478 :allow-replacement, :replace-existing, :do-not-queue,
2479 :primary-owner, :existing, :in-queue and :already-owner.
2480
2481 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
2482
2483 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
2484 when removing extra buttons.
2485
2486 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
2487
2488 * fns.c (Fyes_or_no_p): Doc fix.
2489
2490 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
2491
2492 * fns.c (Fyes_or_no_p): Add usage.
2493
2494 2011-01-08 Glenn Morris <rgm@gnu.org>
2495
2496 * makefile.w32-in ($(EMACS)):
2497 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
2498
2499 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
2500 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
2501
2502 2011-01-07 Andreas Schwab <schwab@linux-m68k.org>
2503
2504 * image.c (imagemagick_load_image): Fix some resource leaks and
2505 error handling.
2506
2507 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
2508
2509 * fns.c (Fyes_or_no_p): Accept format string args.
2510
2511 2011-01-07 Glenn Morris <rgm@gnu.org>
2512
2513 * emacs.c (no_site_lisp): New int.
2514 (USAGE1): Add --no-site-lisp, mention -Q uses it.
2515 (main): Set no_site_lisp.
2516 (standard_args): Add --no-site-lisp.
2517 * lisp.h (no_site_lisp): New int.
2518 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
2519 directories to Vload_path.
2520
2521 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
2522
2523 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
2524
2525 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
2526
2527 * dbusbind.c (Fdbus_register_method): Add optional parameter
2528 dont_register_service. Updated docstring accordingly.
2529
2530 2011-01-04 Glenn Morris <rgm@gnu.org>
2531
2532 * emacs.c (emacs_copyright): Update short copyright year to 2011.
2533
2534 2011-01-03 Eli Zaretskii <eliz@gnu.org>
2535
2536 * image.c (png_jmpbuf): Remove definition.
2537 (my_png_error, png_load): Don't use png_jmpbuf.
2538
2539 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2540
2541 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
2542
2543 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2544
2545 * image.c <Qlibpng_version>: New variable.
2546 (syms_of_image): Intern and staticpro it. Set its value to the
2547 version of PNG library we were compiled with.
2548 (my_png_error, png_load): Avoid GCC warnings about direct access
2549 to png_ptr->jmpbuf. (Bug#7716)
2550 (png_jmpbuf): New macro.
2551 (my_png_error, png_load): Use it instead of #ifdef'ing according
2552 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
2553
2554 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * .gdbinit (xgetptr): Fix the union+lsb case.
2557 (xbacktrace): Fix the union case.
2558
2559 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
2560
2561 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
2562 different from selected-window's.
2563
2564 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2565
2566 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
2567 equivalent of a menu item when the key sequence is given by the
2568 `:keys' attribute. (Bug#7662)
2569
2570 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
2571 the basic faces are supported.
2572
2573 2011-01-02 Jan Djärv <jan.h.d@swipnet.se>
2574
2575 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
2576
2577 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2578
2579 * xdisp.c (Fformat_mode_line): Fix last change.
2580
2581 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
2582
2583 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
2584 faces (Bug#7587).
2585
2586 2011-01-02 Eli Zaretskii <eliz@gnu.org>
2587
2588 * fileio.c (Fexpand_file_name): One more doc fix.
2589
2590 2011-01-01 Chong Yidong <cyd@stupidchicken.com>
2591
2592 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
2593 image or label in the container.
2594 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
2595 (xg_show_toolbar_item): Function deleted.
2596 (xg_tool_item_stale_p): New function.
2597 (update_frame_tool_bar): Calculate tool-bar style once per call.
2598 Instead of hiding text labels, omit them. Don't use
2599 xg_show_toolbar_item; create new GtkToolItems from scratch if
2600 necessary, instead of trying to re-use them. This avoids an
2601 annoying animation when changing tool-bars.
2602
2603 2010-12-31 Jan Djärv <jan.h.d@swipnet.se>
2604
2605 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
2606 title and buffer filename only for RepresentedFilename.
2607 Handle bad UTF-8 in buffer name (Bug#7517).
2608
2609 2010-12-30 Jan Djärv <jan.h.d@swipnet.se>
2610
2611 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
2612
2613 * nsfns.m (ns_set_name_iconic): Remove.
2614 (ns_set_name_internal): New function (Bug#7517).
2615 (Vicon_title_format): Extern declare.
2616 (ns_set_name): Call ns_set_name_internal.
2617 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
2618 (x_implicitly_set_name): Ditto.
2619 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
2620 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
2621
2622 2010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
2623
2624 * window.c (syms_of_window): Add missing defsubr for
2625 window-use-time.
2626
2627 2010-12-28 Andreas Schwab <schwab@linux-m68k.org>
2628
2629 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
2630 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
2631
2632 2010-12-27 Andreas Schwab <schwab@linux-m68k.org>
2633
2634 * buffer.c: Remove unused declarations.
2635 * buffer.h: Likewise.
2636 * charset.h: Likewise.
2637 * composite.h: Likewise.
2638 * dispextern.h: Likewise.
2639 * dispnew.c: Likewise.
2640 * font.h: Likewise.
2641 * fontset.c: Likewise.
2642 * fontset.h: Likewise.
2643 * intervals.h: Likewise.
2644 * keymap.h: Likewise.
2645 * lisp.h: Likewise.
2646 * syntax.c: Likewise.
2647 * syntax.h: Likewise.
2648 * termhooks.h: Likewise.
2649 * window.h: Likewise.
2650 * xsettings.h: Likewise.
2651 * xterm.c: Likewise.
2652 * xterm.h: Likewise.
2653
2654 * chartab.c (sub_char_table_ref): Make static.
2655 * dispnew.c (line_hash_code, required_matrix_height)
2656 (required_matrix_width): Likewise.
2657 * eval.c (interactive_p, apply_lambda): Likewise.
2658 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
2659 Likewise.
2660 * font.c (QCadstyle, QCregistry, font_make_spec)
2661 (font_parse_fcname, font_encode_char, font_at): Likewise.
2662 * frame.c (x_frame_get_arg): Likewise.
2663 * keymap.c (get_keyelt): Likewise.
2664 * lread.c (read_filtered_event): Likewise.
2665 * print.c (write_string_1): Likewise.
2666 * window.c (delete_window, window_height, window_width)
2667 (foreach_window): Likewise.
2668 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
2669 * xterm.c (x_scroll_bar_clear, xembed_set_info)
2670 (xembed_send_message): Likewise.
2671
2672 * eval.c (run_hook_list_with_args): Delete.
2673 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
2674 * terminal.c (get_terminal_param): Likewise.
2675 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
2676
2677 * scroll.c: Fix comment.
2678
2679 * dispnew.c (add_window_display_history)
2680 (add_frame_display_history, glyph_row_slice_p)
2681 (find_glyph_row_slice, flush_stdout)
2682 (check_matrix_pointer_lossage, matrix_row)
2683 (check_matrix_invariants, check_window_matrix_pointers)
2684 (check_matrix_pointers, window_to_frame_vpos)
2685 (window_to_frame_hpos): Prototize.
2686 * textprop.c (erase_properties): Likewise.
2687
2688 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2689
2690 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
2691 (print_preprocess): Fix handling of uninterned symbols in last change.
2692
2693 * print.c (print, print_preprocess, print_object): Use a hash table
2694 rather than a linear table for Vprint_number_table.
2695
2696 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
2697
2698 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
2699
2700 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
2701
2702 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
2703 (parse_tool_bar_item): Use it to obtain image separators for
2704 displays not using native tool-bar separators.
2705
2706 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
2707 specially, since this is now done in parse_tool_bar_item.
2708
2709 2010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
2710
2711 Minor clean up to silence some gcc warnings.
2712 * window.c (Fset_window_buffer):
2713 * xterm.c (x_set_frame_alpha): Restructure code to silence
2714 compiler warning.
2715 (handle_one_xevent): Remove unused var `p'.
2716 (do_ewmh_fullscreen): Remove unused var `lval'.
2717 (xembed_set_info): Remove unused var `atom'.
2718 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
2719 compiler warning.
2720 * fontset.c (fontset_id_valid_p, dump_fontset):
2721 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
2722 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
2723 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
2724 label only when it's used.
2725 * image.c (x_create_bitmap_from_xpm_data):
2726 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
2727 its callers.
2728 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
2729 `consumed_chars'.
2730 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
2731 (decode_coding_emacs_mule): Remove unused label `retry'.
2732 (detect_eol): Add parens to silence compiler warning.
2733 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
2734 it's used to silence the compiler.
2735 (make_number): Modernize k&r declaration.
2736 (mark_char_table): Add parens to silence compiler warning.
2737
2738 2010-12-17 Chong Yidong <cyd@stupidchicken.com>
2739
2740 * keyboard.c (parse_tool_bar_item): Allow menu separators in
2741 tool-bar maps.
2742 (menu_separator_name_p): New function, from gtkutil.c.
2743 (separator_names): Move from gtkutil.c.
2744
2745 * keyboard.h (menu_separator_name_p): Add prototype.
2746
2747 * gtkutil.c (XG_BIN_CHILD): New macro.
2748 (xg_get_menu_item_label, xg_update_menubar)
2749 (xg_update_menu_item, xg_tool_bar_menu_proxy)
2750 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
2751 (separator_names, xg_separator_p): Move to keyboard.c.
2752 (create_menus, xg_update_submenu, update_frame_tool_bar):
2753 Use menu_separator_name_p.
2754
2755 * nsmenu.m (name_is_separator): Function deleted.
2756 (addItemWithWidgetValue): Use menu_separator_name_p.
2757
2758 * w32menu.c (name_is_separator): Function deleted.
2759 (add_menu_item): Use menu_separator_name_p.
2760
2761 2010-12-16 Jan Djärv <jan.h.d@swipnet.se>
2762
2763 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
2764 same as the background, use the face forground as cursor.
2765
2766 2010-12-13 Eli Zaretskii <eliz@gnu.org>
2767
2768 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
2769
2770 2010-12-13 Eli Zaretskii <eliz@gnu.org>
2771
2772 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
2773 (face_before_or_after_it_pos, next_element_from_string)
2774 (next_element_from_c_string, produce_stretch_glyph): Remove unused
2775 calculations of maximum string length before calling
2776 string_char_and_length and STRING_CHAR_AND_LENGTH.
2777 (string_char_and_length): Update commentary: MAXLEN is no longer
2778 needed.
2779
2780 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
2781
2782 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
2783 as (Qsave_session arg).
2784
2785 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
2786 (smc_die_CB): Make an event with arg Qt.
2787 (Fhandle_save_session): If event has Qt as argument,
2788 call Fkill_emacs (Bug#7552).
2789
2790 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
2791
2792 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
2793
2794 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
2795
2796 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
2797
2798 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
2799
2800 * dispextern.h (struct it): New member overlay_strings_charpos.
2801
2802 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
2803 charpos where we computed n_overlay_strings.
2804 (next_overlay_string): Load overlay strings at recorded position,
2805 which may not be the same as the iterator's charpos (Bug#7016).
2806
2807 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
2808
2809 * xdisp.c (try_scrolling): Avoid infloop if the first line is
2810 obscured due to a vscroll (Bug#7537).
2811
2812 2010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
2813
2814 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
2815
2816 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
2817 Use FRAME_TOOLBAR_HEIGHT.
2818 (x_set_offset): Handle XNegative and YNegative in
2819 f->size_hint_flags (Bug#7510).
2820
2821 2010-12-11 Eli Zaretskii <eliz@gnu.org>
2822
2823 * w32fns.c (Fx_show_tip): Call try_window with last argument
2824 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
2825 solved. Round up the tip height to an integral multiple of the
2826 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
2827 (Bug#7398)
2828
2829 2010-12-08 Glenn Morris <rgm@gnu.org>
2830
2831 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
2832
2833 2010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
2834
2835 * xml.c (parse_region): Ignore blank HTML nodes.
2836 (make_dom): Return CDATA sections (like <style>foo</style>) as
2837 text nodes.
2838
2839 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
2840
2841 * lread.c (read1): Allow newstyle unquote outside of backquote.
2842 Disallow old-style backquotes inside new-style backquotes.
2843 Don't count unquotes to figure out when we're "syntactically inside
2844 but semantically outside of a backquote" any more.
2845 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
2846 to all contexts.
2847
2848 2010-12-05 Chong Yidong <cyd@stupidchicken.com>
2849
2850 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
2851
2852 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
2853
2854 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
2855 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
2856 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
2857
2858 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
2859
2860 * lisp.h (union Lisp_Object): Explicitly declare signedness of
2861 bit-field.
2862 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
2863 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
2864 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
2865 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
2866 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
2867 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
2868 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
2869 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
2870 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
2871 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
2872 * m/hp800.h: Remove file.
2873 * m/mips.h: Remove file.
2874
2875 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
2876
2877 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
2878 with cursor color and draw a rectangle around the image (Bug#7412).
2879
2880 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
2881
2882 * frame.c (x_set_font): Remove unused variable.
2883
2884 2010-12-02 Jan Djärv <jan.h.d@swipnet.se>
2885
2886 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
2887
2888 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
2889 drawing text under filled box cursor (Bug#7479).
2890
2891 2010-11-27 Kenichi Handa <handa@m17n.org>
2892
2893 * charset.c (emacs_mule_charset): Make it an array of charset ID;
2894 i.e. integer.
2895 (Fdefine_charset_internal): Adjust for the above change.
2896 (init_charset_once): Likewise.
2897
2898 * charset.h (emacs_mule_charset): Adjust the prototype.
2899 Delete duplicated extern.
2900
2901 * coding.c (emacs_mule_char): Adjust for the change of
2902 emacs_mule_charset.
2903
2904 * lread.c (read_emacs_mule_char): Adjust for the change of
2905 emacs_mule_charset.
2906
2907 2010-11-27 Eli Zaretskii <eliz@gnu.org>
2908
2909 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
2910 of w32api >= 3.15. (Bug#6989) (Bug#7452)
2911
2912 2010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2913
2914 * alloc.c (mark_terminals): Ensure that the image cache is marked
2915 even if the terminal object was marked earlier (Bug#6301).
2916
2917 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
2918
2919 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
2920
2921 2010-11-27 Jan Djärv <jan.h.d@swipnet.se>
2922
2923 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
2924 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
2925 Use 23 as menubar height if 0. (Bug#7425).
2926
2927 2010-11-26 Eli Zaretskii <eliz@gnu.org>
2928
2929 * xdisp.c (set_message_1): Force paragraph direction in echo area
2930 be left-to-right.
2931
2932 * keyboard.c (make_lispy_position): Put a meaningful value in yret
2933 when the click is on the header or mode line.
2934
2935 2010-11-25 Eli Zaretskii <eliz@gnu.org>
2936
2937 * xdisp.c (set_cursor_from_row): Don't forget to consider the
2938 `cursor' property of the first character in overlay strings.
2939 (Bug#7474) (Bug#7481)
2940
2941 2010-11-24 Jan Djärv <jan.h.d@swipnet.se>
2942
2943 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
2944 (NSLeftAlternateKeyMask): New defines.
2945 (keyDown): Parse left and right keys separately (Bug#7458).
2946 Compare Left key masks exactly (Bug#7458).
2947
2948 2010-11-23 Eli Zaretskii <eliz@gnu.org>
2949
2950 * intervals.c (temp_set_point_both): Define before calling, to
2951 avoid GCC warnings.
2952
2953 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
2954
2955 * nsmenu.m: Use #include <config.h> instead of "config.h".
2956
2957 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
2958 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
2959 Move declarations ...
2960 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
2961 (last_glyphless_glyph_face_id, last_glyphless_glyph_merged_face_id):
2962 ... here.
2963
2964 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
2965 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
2966 (gdb_pvec_type):
2967 * print.c (print_output_debug_flag):
2968 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
2969 (safe_debug_print): New declaration.
2970
2971 * xterm.c:
2972 * systty.h:
2973 * sound.c: Include <sys/ioctl.h> unconditionally.
2974
2975 2010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2976
2977 * alloc.c (mark_maybe_object): Return early if given a Lisp
2978 integer (Bug#6301).
2979
2980 2010-11-21 Ken Brown <kbrown@cornell.edu>
2981
2982 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
2983
2984 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
2985
2986 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
2987 Define (Bug#7458).
2988 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
2989 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
2990 NSRightControlKeyMask also (Bug#7458).
2991 (keyDown): Ditto (Bug#7458).
2992 (syms_of_nsterm): Defvar ns-right-command-modifier and
2993 ns-right-control-modifier (Bug#7458).
2994
2995 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
2996
2997 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
2998 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
2999
3000 * intervals.h (temp_set_point, temp_set_point_both):
3001 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
3002
3003 2010-11-20 Ken Brown <kbrown@cornell.edu>
3004
3005 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
3006
3007 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3008
3009 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
3010 \xNNNNNN for hex-code display of glyphless characters.
3011
3012 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
3013
3014 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
3015 Set important to ! vert_only.
3016 (xg_show_toolbar_item): Don't show label horizontally if
3017 tool item isn't important.
3018 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
3019 xg_make_tool_item, or update important on existing tool item.
3020
3021 * keyboard.c (QCvert_only): New variable.
3022 (parse_tool_bar_item): Check for QCvert_only.
3023 (syms_of_keyboard): Initialize QCvert_only.
3024
3025 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
3026
3027 2010-11-20 Eli Zaretskii <eliz@gnu.org>
3028
3029 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
3030 same in-line.
3031
3032 2010-11-20 Andreas Schwab <schwab@linux-m68k.org>
3033
3034 * xfaces.c (lookup_face): Make static.
3035 * dispnew.c (copy_row_except_pointers): Likewise.
3036 * syntax.c (dec_bytepos): Likewise.
3037 (inc_bytepos): Remove.
3038 * dispextern.h (lookup_face): Remove declaration.
3039
3040 2010-11-19 Eli Zaretskii <eliz@gnu.org>
3041
3042 * xdisp.c (set_cursor_from_row): Display cursor after all the
3043 glyphs that come from an overlay. Don't overstep the last glyph
3044 when skipping glyphs from an overlay. (Bug#6687)
3045
3046 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
3047
3048 * alloc.c (refill_memory_reserve): Move declaration ...
3049 * lisp.h (refill_memory_reserve): ... here.
3050
3051 * strftime.c (_strftime_copytm): Add declaration.
3052
3053 * callproc.c (syms_of_callproc): Use intern_c_string.
3054
3055 Move declarations from .c files to .h files.
3056 * process.c (timers_run):
3057 * minibuf.c (quit_char):
3058 * lread.c (read_emacs_mule_char):
3059 * keyboard.c (minibuf_level, message_enable_multibyte)
3060 (pending_malloc_warning):
3061 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
3062 (Qonly): Remove declarations.
3063 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
3064 (Vselect_active_regions):
3065 * keyboard.h (timers_run): Add declarations.
3066
3067 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
3068 (tm_diff): Convert definitions to standard C.
3069 (extra_args_spec_iso): Remove, unused.
3070
3071 2010-11-18 Jan Djärv <jan.h.d@swipnet.se>
3072
3073 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
3074
3075 * config.in (HAVE_G_TYPE_INIT): New symbol.
3076
3077 2010-11-18 Eli Zaretskii <eliz@gnu.org>
3078
3079 * lread.c (Fload): Mention `load-in-progress' and
3080 `load-file-name'. (Bug#7346)
3081
3082 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
3083 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
3084 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
3085 subprocesses. Use buffer_free only ifdef subprocesses.
3086
3087 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
3088 the subprocesses version, not in the non-subprocesses one.
3089
3090 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
3091
3092 2010-11-17 Eli Zaretskii <eliz@gnu.org>
3093
3094 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
3095 lines on text-mode terminals. (bug#7417)
3096
3097 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
3098
3099 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
3100 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
3101
3102 2010-11-17 Kenichi Handa <handa@m17n.org>
3103
3104 * coding.c (Fset_terminal_coding_system_internal): Fix previous
3105 change (set charset-ID list instead of charset-symbol list).
3106
3107 2010-11-16 Chong Yidong <cyd@stupidchicken.com>
3108
3109 * keyboard.c (make_lispy_position): For text area clicks, record Y
3110 pixel position relative to the text area, excluding header line.
3111 Also change X and Y to Lisp_Objects, not pointers; don't return
3112 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
3113 buffer_posn_from_coords counting from the start of the text area.
3114 (Fposn_at_x_y, make_lispy_event): Callers changed.
3115
3116 * window.c (coordinates_in_window): Change X and Y to ints rather
3117 than pointers; don't return coordinates via pointers.
3118 (struct check_window_data): Change X and Y from pointers to ints.
3119 (window_from_coordinates): Remove args WX and WY; don't return
3120 coordinates via pointers.
3121 (Fcoordinates_in_window_p, window_from_coordinates):
3122 (check_window_containing, Fwindow_at): Callers changed.
3123 (window_relative_x_coord): New function.
3124
3125 * window.h (window_from_coordinates, window_relative_x_coord):
3126 Update prototypes.
3127
3128 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
3129 the start of the text area.
3130
3131 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
3132 call. Use window_relative_x_coord.
3133 (note_mouse_highlight): Change window_from_coordinates call.
3134
3135 * w32term.c (w32_read_socket):
3136 * msdos.c (dos_rawgetc):
3137 * xterm.c (handle_one_xevent): Likewise.
3138
3139 2010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
3140
3141 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
3142 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
3143 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
3144 Convert definitions to standard C.
3145 * regex.c: Do not include <stdlib.h>, config.h does it.
3146 Include unistd.h.
3147 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
3148 (regerror, regfree): Convert definitions to standard C.
3149 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
3150 (__mktime_internal): Convert definitions to standard C.
3151
3152 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3153
3154 * w32proc.c:
3155 * w32inevt.c:
3156 * w32heap.c:
3157 * w32.c: Remove config.h include guards.
3158
3159 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
3160 No code changes.
3161
3162 * process.c: Include <sys/ioctl.h> unconditionally,
3163 keyboard.c already does it.
3164
3165 * keyboard.c (pending_malloc_warning): Add const to match
3166 definition in alloc.c.
3167 (Fset_input_interrupt_mode): Simplify #ifdefs.
3168
3169 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
3170
3171 Clean up systty.h macros.
3172 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
3173 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
3174 definition in all uses.
3175 (EMACS_TTY_TABS_OK): Remove, it has a single user.
3176 * sysdep.c (discard_tty_input, child_setup_tty)
3177 (init_sys_modes, tabs_safe_p, reset_sys_modes):
3178 * emacs.c (shut_down_emacs):
3179 * callproc.c (child_setup):
3180 * term.c (dissociate_if_controlling_tty): Inline removed macros.
3181
3182 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
3183
3184 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3185
3186 * w32fns.c (Fx_create_frame):
3187 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
3188 resource here; it's now done at startup.
3189
3190 2010-11-14 Jan Djärv <jan.h.d@swipnet.se>
3191
3192 * xterm.c (set_wm_state): Add Qnil to final cons.
3193
3194 * xselect.c (x_send_client_event): Remove unused variables cons and
3195 size.
3196
3197 2010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3198
3199 * keyboard.c (modify_event_symbol): Add const to array elements of
3200 arg NAME_TABLE.
3201 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
3202 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
3203 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
3204 Add const to array elements.
3205 (scroll_bar_parts): Make static. Fix position of const.
3206
3207 * w32fns.c (lispy_function_keys): Add const to extern.
3208
3209 * w32inevt.c (lispy_function_keys): Likewise.
3210
3211 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
3212
3213 * xfns.c (Fx_create_frame): Don't check for the cursorColor
3214 resource here; it's now done at startup.
3215
3216 2010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
3217
3218 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
3219
3220 Fix compilation on Solaris.
3221 * sysdep.c: Do not #include <term.h>.
3222 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
3223
3224 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
3225
3226 2010-11-13 Jan Djärv <jan.h.d@swipnet.se>
3227
3228 * xterm.c (set_wm_state): Don't put Atom in cons, call
3229 make_fixnum_or_float on them first.
3230 (x_term_init): Initialize Xatom_net_supporting_wm_check and
3231 Xatom_net_supported correctly.
3232
3233 * xselect.c (x_send_client_event): Move CHECK_STRING ...
3234 (Fx_send_client_event): to here.
3235
3236 2010-11-13 Martin Rudalics <rudalics@gmx.at>
3237
3238 * window.c (Fwindow_use_time): New function.
3239
3240 2010-11-13 Eli Zaretskii <eliz@gnu.org>
3241
3242 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
3243 zero-width characters.
3244
3245 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
3246
3247 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
3248 box before drawing the glyphs inside it.
3249
3250 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
3251
3252 * dispextern.h (enum glyphless_display_method):
3253 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
3254 All users changed.
3255
3256 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3257 Fix comments.
3258 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
3259 whitespace in "[]", to simulate a box. Don't use uninitialized
3260 variable `width'.
3261
3262 2010-11-11 Julien Danjou <julien@danjou.info>
3263
3264 * xsettings.c (init_xsettings): Use already fetch atoms.
3265
3266 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
3267 from dpyinfo.
3268
3269 * xselect.c (Fx_send_client_event): Split and create
3270 x_send_client_event.
3271
3272 * lisp.h: Do not EXFUN Fx_send_client_event.
3273
3274 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
3275 from dpyinfo.
3276 (wm_supports): Use atoms from dpyinfo.
3277 (do_ewmh_fullscreen): Use atoms from dpyinfo.
3278 (x_ewmh_activate_frame): Use atoms from dpyinfo.
3279 (xembed_set_info): Use atoms from dpyinfo.
3280 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
3281 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
3282 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
3283 Get all atoms in one round-trip.
3284 (set_wm_state): Use x_send_client_event rather than
3285 Fx_send_client_event, using Atom directly.
3286 (x_ewmh_activate_frame): Ditto.
3287 (x_set_sticky): Pass atoms to set_wm_state.
3288 (do_ewmh_fullscreen): Ditto.
3289
3290 * xterm.h (x_display_info): Add Xatom_net_supported,
3291 Xatom_net_supporting_wm_check, Xatom_net_active_window,
3292 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
3293
3294 * xfns.c (Fx_show_tip): Fix typo in docstring.
3295
3296 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
3297
3298 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
3299 it's not negative.
3300
3301 2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3302
3303 * font.c (font_filter_properties): Add const to array elements of
3304 properties args.
3305
3306 * font.h (font_filter_properties): Likewise.
3307
3308 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
3309 elements.
3310
3311 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
3312
3313 2010-11-10 Michael Albinus <michael.albinus@gmx.de>
3314
3315 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
3316 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
3317 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
3318 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
3319 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
3320
3321 2010-11-10 Glenn Morris <rgm@gnu.org>
3322
3323 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
3324
3325 2010-11-09 Eli Zaretskii <eliz@gnu.org>
3326
3327 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
3328
3329 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
3330
3331 * image.c (free_image): Don't garbage the frame here, since this
3332 function can be called while redisplaying (Bug#7210).
3333 (uncache_image): Garbage the frame here (Bug#6426).
3334
3335 2010-11-09 Jan Djärv <jan.h.d@swipnet.se>
3336
3337 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
3338 parent is the root window. Check this after traversing window tree.
3339
3340 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
3341
3342 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
3343
3344 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
3345 before traversing window tree (Bug#5721).
3346
3347 2010-11-07 Jan Djärv <jan.h.d@swipnet.se>
3348
3349 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
3350
3351 * xdisp.c (note_mode_line_or_margin_highlight):
3352 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
3353
3354 2010-11-06 Eli Zaretskii <eliz@gnu.org>
3355
3356 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
3357 adjust width of tool-tip frame to the width of text, excluding the
3358 stretch glyph at the beginning of R2L glyph rows.
3359
3360 * w32fns.c (Fx_show_tip): Likewise.
3361
3362 2010-11-06 Jan Djärv <jan.h.d@swipnet.se>
3363
3364 * nsfont.m: Include termchar for new mouse-highlight.
3365 (nsfont_draw): Use MOUSE_HL_INFO.
3366
3367 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3368
3369 Unify mouse-highlight code for all GUI and TTY sessions.
3370
3371 * term.c: Remove static mouse_face_* variables. All users
3372 changed.
3373 (term_show_mouse_face, term_clear_mouse_face)
3374 (fast_find_position, term_mouse_highlight): Functions deleted.
3375 (tty_draw_row_with_mouse_face): New function.
3376 (term_mouse_movement): Call note_mouse_highlight instead of
3377 term_mouse_highlight.
3378
3379 * nsterm.m (ns_update_window_begin, ns_update_window_end)
3380 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
3381 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
3382 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
3383 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
3384 Replace Display_Info with Mouse_HLInfo everywhere where
3385 mouse_face_* members were accessed for mouse highlight purposes.
3386
3387 * xterm.c (x_update_window_begin, x_update_window_end)
3388 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
3389 (handle_one_xevent, x_free_frame_resources, x_term_init):
3390 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
3391 members were accessed for mouse highlight purposes.
3392
3393 * w32term.c (x_update_window_begin, x_update_window_end)
3394 (x_update_end, w32_read_socket, x_free_frame_resources)
3395 (w32_initialize_display_info): Replace Display_Info with
3396 Mouse_HLInfo everywhere where mouse_face_* members were accessed
3397 for mouse highlight purposes.
3398
3399 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
3400 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
3401 unless the frame is on a window-system.
3402 (get_tool_bar_item, handle_tool_bar_click)
3403 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
3404 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3405 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3406 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
3407 Replace Display_Info with Mouse_HLInfo everywhere where
3408 mouse_face_* members were accessed for mouse highlight purposes.
3409 (coords_in_mouse_face_p): Move prototype out of the
3410 HAVE_WINDOW_SYSTEM conditional.
3411 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
3412 HAVE_WINDOW_SYSTEM block.
3413 (try_window_id) [HAVE_GPM || MSDOS]:
3414 Call x_clear_window_mouse_face.
3415 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
3416 systems. Call tty_draw_row_with_mouse_face for TTY systems.
3417 (show_mouse_face): Call draw_row_with_mouse_face, instead of
3418 calling draw_glyphs directly.
3419 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
3420 (cursor_in_mouse_face_p, rows_from_pos_range)
3421 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
3422 (note_mode_line_or_margin_highlight, note_mouse_highlight)
3423 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
3424 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
3425 fragments.
3426 (note_mouse_highlight): Call popup_activated for MSDOS as well.
3427 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
3428 integer.
3429 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
3430 (x_consider_frame_title, tool_bar_lines_needed):
3431 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
3432 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
3433 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
3434 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
3435 part.
3436
3437 * dispnew.c (mirror_make_current): Set Y coordinate of the
3438 mode-line and header-line rows.
3439 (init_display): Setup initial frame's output_data for text
3440 terminal frames.
3441
3442 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
3443 its own definition on msdos.c.
3444
3445 * msdos.c (show_mouse_face, clear_mouse_face)
3446 (fast_find_position, IT_note_mode_line_highlight)
3447 (IT_note_mouse_highlight): Functions deleted.
3448 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
3449 instead of IT_note_mouse_highlight.
3450 (draw_row_with_mouse_face, popup_activated): New functions.
3451 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
3452 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
3453 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
3454 where mouse_face_* members were accessed for mouse highlight
3455 purposes.
3456
3457 * msdos.h (initialize_msdos_display): Add prototype.
3458
3459 * frame.h (MOUSE_HL_INFO): New macro.
3460
3461 * lisp.h (Mouse_HLInfo): New data type.
3462
3463 * xterm.h (struct x_display_info):
3464 * w32term.h (struct w32_display_info):
3465 * nsterm.h (struct ns_display_info):
3466 * termchar.h (struct tty_display_info): Use it instead of
3467 mouse_face_* members.
3468
3469 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
3470 1st argument.
3471 (frame_to_window_pixel_xy, note_mouse_highlight)
3472 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
3473 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
3474 HAVE_WINDOW_SYSTEM conditional.
3475 (draw_row_with_mouse_face): Declare prototype.
3476 (tty_draw_row_with_mouse_face): Declare prototype.
3477
3478 2010-11-05 Eli Zaretskii <eliz@gnu.org>
3479
3480 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
3481 Remove unused variables.
3482
3483 2010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
3484
3485 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
3486 logic pointed out by Eli Zaretskii.
3487
3488 2010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
3489
3490 * coding.c (coding-category-list): Refer to set-coding-system-priority
3491 instead of the obsolete set-coding-priority in the doc string.
3492
3493 2010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
3494
3495 * nsfont.m (nsfont_draw): Correct previous patch to return
3496 correct value.
3497 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
3498 don't change the method signature, change the return.
3499
3500 2010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
3501
3502 * nsfont.m (nsfont_draw)
3503 * nsimage.m (EmacsImage-setXBMColor:)
3504 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
3505
3506 2010-11-03 Julien Danjou <julien@danjou.info>
3507
3508 * image.c (gif_load): Add support for transparency and specified
3509 :background.
3510
3511 2010-11-01 Kenichi Handa <handa@m17n.org>
3512
3513 * dispextern.h (lookup_glyphless_char_display): Extern it.
3514
3515 * termhooks.h (struct terminal): New member charset_list.
3516
3517 * coding.c (Fset_terminal_coding_system_internal): Set the
3518 `charset_list' member of struct terminal.
3519
3520 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
3521 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3522
3523 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
3524 (lookup_glyphless_char_display): Set it->what at the end.
3525 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3526 (last_glyphless_glyph_merged_face_id): Make them non-static.
3527
3528 * w32term.c (x_draw_glyphless_glyph_string_foreground):
3529 Fix the arg with_background for font->driver->draw.
3530
3531 2010-11-01 Kenichi Handa <handa@m17n.org>
3532
3533 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
3534 Surround chp by parentheses.
3535
3536 2010-11-01 Kenichi Handa <handa@m17n.org>
3537
3538 Implement various display methods for glyphless characters.
3539
3540 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
3541 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
3542 (Qzero_width): New variables.
3543 (THIN_SPACE_WIDTH): New macro.
3544 (lookup_glyphless_char_display): New function.
3545 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
3546 (last_glyphless_glyph_merged_face_id): New variables.
3547 (get_next_display_element): Check glyphless characters.
3548 (redisplay_internal): Initialize last_glyphless_glyph_frame and
3549 last_glyphless_glyph_face_id.
3550 (fill_glyphless_glyph_string): New function.
3551 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
3552 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
3553 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
3554 (x_produce_glyphs): If a suitable font is not found, produce a
3555 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
3556 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
3557 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
3558 Qzero_width.
3559 (Vglyphless_char_display): Declare it as a Lisp variable.
3560
3561 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
3562 (struct glyph): Change the size of the member "type" to 3.
3563 Add glyphless to the union slice and u.
3564 (enum display_element_type): Add IT_GLYPHLESS.
3565 (enum glyphless_display_method): New enum.
3566 (struct it): New member glyphless_method.
3567 (Vglyphless_char_display): Extern it.
3568
3569 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
3570 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3571
3572 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
3573 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
3574
3575 * nsterm.m (ns_draw_glyph_string): Handle the case
3576 GLYPHLESS_GLYPH (the detail is not yet implemented).
3577
3578 2010-10-31 Glenn Morris <rgm@gnu.org>
3579
3580 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
3581
3582 * frame.c (syms_of_frame) <tool-bar-mode>:
3583 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
3584
3585 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
3586
3587 * xterm.c (x_connection_closed): Print informative error message
3588 when aborting on GTK. This requires using shut_down_emacs
3589 directly instead of Fkill_emacs.
3590
3591 2010-10-29 Eli Zaretskii <eliz@gnu.org>
3592
3593 * emacs.c (main): Call syms_of_filelock unconditionally.
3594
3595 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
3596 clause, but keep part of it conditioned on CLASH_DETECTION.
3597
3598 2010-10-29 Glenn Morris <rgm@gnu.org>
3599
3600 * nsfns.m (Fx-display-save-under, Fx-open-connection)
3601 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
3602 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
3603 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
3604 Sync docs between X, W32, NS.
3605
3606 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
3607 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
3608
3609 2010-10-26 Juanma Barranquero <lekktu@gmail.com>
3610
3611 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
3612 otherwise, bootstrapping on Windows fails to compile macroexp.el.
3613
3614 2010-10-26 Eli Zaretskii <eliz@gnu.org>
3615
3616 * cmds.c (internal_self_insert): Don't insert if argument N is
3617 zero or negative. (Bug#7281)
3618
3619 2010-10-26 Jan Djärv <jan.h.d@swipnet.se>
3620
3621 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
3622
3623 2010-10-25 Glenn Morris <rgm@gnu.org>
3624
3625 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
3626
3627 2010-10-24 Glenn Morris <rgm@gnu.org>
3628
3629 * w32fns.c (Fx_synchronize, Fx_change_window_property)
3630 (Fx_window_property, Fx_file_dialog):
3631 * xfns.c (Fx_synchronize, Fx_change_window_property)
3632 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
3633
3634 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
3635
3636 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
3637
3638 2010-10-24 Eli Zaretskii <eliz@gnu.org>
3639
3640 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
3641
3642 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
3643 Deprecate use as a boolean flag.
3644
3645 2010-10-24 Jim Meyering <jim@meyering.net>
3646
3647 * emacs.c (argmatch): Don't treat "--" as "--chdir".
3648
3649 2010-10-24 Glenn Morris <rgm@gnu.org>
3650
3651 * w16select.c (syms_of_win16select) <selection-coding-system>:
3652 <next-selection-coding-system>:
3653 * w32select.c (syms_of_w32select) <selection-coding-system>:
3654 <next-selection-coding-system>:
3655 Sync docs with select.el.
3656
3657 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
3658 Lisp version.
3659
3660 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
3661 Sync doc with the xterm.c version.
3662
3663 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
3664 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
3665
3666 2010-10-23 Glenn Morris <rgm@gnu.org>
3667
3668 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
3669 * frame.c (syms_of_frame) <menu-bar-mode>:
3670 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
3671 <hourglass-delay>: Sync docs with Lisp.
3672
3673 2010-10-23 Eli Zaretskii <eliz@gnu.org>
3674
3675 Implement mouse highlight for bidi-reordered lines.
3676
3677 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
3678 (mouse_face_from_string_pos): New function, replaces
3679 fast_find_string_pos.
3680 (note_mouse_highlight): Call it instead of fast_find_string_pos.
3681 (note_mode_line_or_margin_highlight): Support bidi-reordered
3682 strings and R2L glyph rows. Fix comments.
3683 (note_mouse_highlight): When bidi reordering is turned on in a
3684 buffer, call next-single-property-change and
3685 previous-single-property-change with last argument nil.
3686 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
3687 glyph that stands for no text beyond the line end.
3688 (row_containing_pos): Don't return too early when CHARPOS is in a
3689 bidi-reordered continued line. Return immediately when the first
3690 hit is found in a line that is not continued, or when an exact
3691 match for CHARPOS is found.
3692 (rows_from_pos_range): New function.
3693 (mouse_face_from_buffer_pos): Use it instead of calling
3694 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
3695 function to support mouse highlight in bidi-reordered lines and
3696 not to assume that START_CHARPOS is always in mouse_face_beg_row.
3697 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
3698 that the former is always above the latter or identical to it.
3699 (show_mouse_face): Support drawing highlighted R2L lines.
3700 (coords_in_mouse_face_p): New function, bidi-aware.
3701 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
3702 Call it instead of comparing with mouse-face members of dpyinfo.
3703 (note_mode_line_or_margin_highlight): Fix confusingly swapped
3704 usage of hpos and vpos.
3705
3706 2010-10-22 Jan Djärv <jan.h.d@swipnet.se>
3707
3708 * xrdb.c: Include keyboard.h for MOTIF.
3709
3710 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
3711 MOTIF (Bug#7263).
3712
3713 * xfns.c: Include Xm/TextF and Xm/List.
3714 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
3715 Make ANSI prototypes.
3716
3717 2010-10-22 Glenn Morris <rgm@gnu.org>
3718
3719 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
3720 Remove ccl and duplicate mouse.
3721
3722 2010-10-21 Chong Yidong <cyd@stupidchicken.com>
3723
3724 * insdel.c (prepare_to_modify_buffer): Don't set
3725 saved-region-selection if modification hooks are disabled.
3726
3727 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
3728
3729 * cmds.c (Fdelete_char): Doc fix.
3730
3731 2010-10-19 Ken Brown <kbrown@cornell.edu>
3732
3733 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
3734
3735 2010-10-19 Kenichi Handa <handa@m17n.org>
3736
3737 Fix incorrect font metrics when the same font is opened with
3738 different pixelsizes.
3739
3740 * xftfont.c: Include composite.h.
3741 (xftfont_shape): New function.
3742 (syms_of_xftfont): Set xftfont_driver.shape.
3743
3744 2010-10-18 Julien Danjou <julien@danjou.info>
3745
3746 * frame.c (Fframe_pointer_visible_p):
3747 Add `frame-pointer-visible-p' to get the pointer visibility.
3748
3749 2010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
3750
3751 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
3752 non-"EAGAIN"-like error to signal to Emacs that the socket should
3753 be closed.
3754
3755 2010-10-15 Eli Zaretskii <eliz@gnu.org>
3756
3757 * unexcoff.c (make_hdr): Fix prototype according to changes in
3758 2010-10-03T13:59:56Z!dann@ics.uci.edu.
3759
3760 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
3761
3762 2010-10-15 Tassilo Horn <tassilo@member.fsf.org>
3763
3764 * Makefile.in (really-oldXMenu): Fix typo in variable name that
3765 made building the X menu fail.
3766 (really-oldXMenu): Fix my previous fix.
3767
3768 2010-10-14 Damyan Pepper <damyanp@gmail.com>
3769
3770 Fix handling of font properties on Windows (bug#6303).
3771 * font.c (font_filter_properties): New function, refactored from
3772 ftfont_filter_properties.
3773 * font.h (font_filter_properties): Declare.
3774 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
3775 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
3776 (w32font_filter_properties): New function.
3777 (w32font_driver): Add w32font_filter_properties.
3778
3779 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
3780
3781 * font.c (Ffont_variation_glyphs):
3782 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
3783
3784 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
3785
3786 * w32fns.c (w32_wnd_proc, file_dialog_callback):
3787 * w32font.c (w32_generic_family):
3788 * w32inevt.c (key_event):
3789 * w32menu.c (fill_in_menu):
3790 * w32proc.c (reader_thread, w32_executable_type, compare_env)
3791 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
3792 * w32term.c (w32_read_socket): Make static.
3793
3794 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
3795
3796 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
3797 prototypes; all callers changed.
3798
3799 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
3800
3801 * makefile.w32-in (TLIB2): Rename from TLIBW32.
3802 (OBJ2): New macro.
3803 (WIN32OBJ, FONTOBJ): Remove.
3804 (OBJ1): Redistribute object files with OBJ2.
3805 (LIBS, $(TEMACS)): Use TLIB2.
3806 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
3807 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
3808
3809 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
3810
3811 * emacs.c (Vdynamic_library_alist)
3812 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
3813 Doc fix.
3814
3815 * lisp.h (Vdynamic_library_alist): Declare extern.
3816
3817 * image.c (Vimage_library_alist)
3818 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
3819 (lookup_image_type): Use Vdynamic_library_alist.
3820 (Finit_image_library): Doc fix.
3821
3822 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
3823
3824 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
3825 (lispdir): Remove trailing /, update all uses.
3826
3827 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
3828
3829 * nsterm.m (Qleft): Declare.
3830 (ns_right_alternate_modifier): New variable.
3831 (NSRightAlternateKeyMask): New define.
3832 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
3833 ns_right_alternate_modifier isn't Qleft.
3834 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
3835 as emacs modifier for NSRightAlternateKeyMask.
3836 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
3837
3838 2010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
3839
3840 * gnutls.c (emacs_gnutls_write): If we're trying to write before
3841 gnutls is ready, return EAGAIN as the errno.
3842
3843 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
3844
3845 * vm-limit.c:
3846 * unexhp9k800.c:
3847 * unexelf.c:
3848 * unexaix.c:
3849 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
3850
3851 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
3852 (PROFILING_LDFLAGS): Remove, not needed anymore.
3853
3854 * Makefile.in: Use $(...) everywhere instead of ${...}.
3855 (CRT_DIR): Move near potential user.
3856 (START_FILE): Move near CRT_DIR, it might use it.
3857
3858 * sysdep.c (LPASS8): Remove, unused.
3859 (emacs_ospeed): Change from being a global to a local in the only
3860 user: init_baud_rate.
3861
3862 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3863
3864 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
3865 (emacs_gnutls_write): Remove the debuggin fsync call.
3866 (emacs_gnutls_read): Return -1 if we got an error from
3867 gnutls_read. This allows us to actually read lots of data from
3868 the GnuTLS stream.
3869 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
3870 According to the documentation, this is correct, and it seems to
3871 make things work.
3872
3873 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
3874
3875 * xterm.c (x_draw_relief_rect): Clear corner pixels.
3876
3877 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
3878
3879 * keyboard.c: Revert last change; it was not intended to be
3880 synchronized with the trunk.
3881
3882 2010-10-08 Kenichi Handa <handa@m17n.org>
3883
3884 * coding.c (complement_process_encoding_system): Fix previous change.
3885
3886 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
3887
3888 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
3889 (Fdbus_init_bus): ... here. (Bug#7113)
3890
3891 2010-10-08 Glenn Morris <rgm@gnu.org>
3892
3893 * buffer.c (before-change-functions, after-change-functions):
3894 Three-year overdue doc fix following 2007-08-13 change.
3895
3896 2010-10-08 Kenichi Handa <handa@m17n.org>
3897
3898 * coding.c (coding_inherit_eol_type): If parent doesn't specify
3899 eol-format, inherit from the system's default.
3900 (complement_process_encoding_system): Make a new coding system
3901 inherit the original eol-format.
3902
3903 2010-10-08 Kenichi Handa <handa@m17n.org>
3904
3905 * coding.c (complement_process_encoding_system): New function.
3906
3907 * coding.h (complement_process_encoding_system): Extern it.
3908
3909 * callproc.c (Fcall_process): Complement the coding system for
3910 encoding arguments.
3911 (Fcall_process_region): Complement the coding system for encoding
3912 the input to the process.
3913
3914 * process.c (Fstart_process): Complement the coding system for
3915 encoding arguments.
3916 (send_process): Complement the coding system for encoding what
3917 sent to the process.
3918
3919 2010-10-08 Kenichi Handa <handa@m17n.org>
3920
3921 * xfont.c (xfont_open): Fix setting of font->average_width from
3922 :avgwidth property (Bug#7123).
3923
3924 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
3925
3926 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
3927 is more portable.
3928
3929 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
3930 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
3931 has not defined SIGIO.
3932
3933 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
3934
3935 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
3936 draw the outermost line using the black relief, for legibility.
3937 Omit drawing the four corner pixels.
3938
3939 2010-10-04 Chong Yidong <cyd@stupidchicken.com>
3940
3941 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
3942 (read_key_sequence): Inline echo_prompt.
3943 (echo_dash): Add a dash only if key is continued (Bug#7137).
3944
3945 2010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
3946
3947 Remove O_RDONLY, O_WRONLY definitions, not needed.
3948 * unexcoff.c:
3949 * lread.c:
3950 * fileio.c:
3951 * doc.c:
3952 * callproc.c:
3953 * alloc.c:
3954 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
3955
3956 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
3957
3958 * gnutls.h (GNUTLS_LOG2): Convenience macro.
3959
3960 * gnutls.c: Add property list symbol holders.
3961 (emacs_gnutls_handshake): Clarify how sockets are passed to
3962 GnuTLS.
3963 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
3964 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
3965 and keyfiles to be a list of file names. Default to "NORMAL" for
3966 the priority string. Improve logging.
3967
3968 2010-10-03 Glenn Morris <rgm@gnu.org>
3969
3970 * fileio.c (Vdirectory_sep_char): Remove.
3971
3972 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
3973
3974 * termhooks.h: Remove #ifdef CONSP.
3975
3976 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
3977
3978 Include <fcntl.h> unconditionally.
3979 * termcap.c:
3980 * sysdep.c:
3981 * lread.c:
3982 * keyboard.c:
3983 * filelock.c:
3984 * fileio.c:
3985 * doc.c:
3986 * callproc.c:
3987 * alloc.c: Remove include guards for <fcntl.h>, process.c already
3988 does it.
3989
3990 * process.c: Do not include <sys/wait.h>, syswait.h does it.
3991
3992 * sysdep.c (flush_pending_output): Remove code, does not do
3993 anything on any platform.
3994
3995 Remove unused code.
3996 * sysdep.c (select_alarm, sys_select, read_input_waiting):
3997 Remove select emulation, all systems support select.
3998 (set_exclusive_use): Remove, the only user is in an #if 0 block.
3999 * process.c (create_process): Remove #if 0 code.
4000
4001 Remove unused arguments for unexec.
4002 The third one is never used, and the last two are always passed as zero.
4003 * emacs.c (unexec): Add declaration.
4004 (Fdump_emacs): Only pass the first two arguments to unexec.
4005 Simplify #ifdef.
4006 * unexw32.c (unexec):
4007 * unexsol.c (unexec):
4008 * unexhp9k800.c (unexec):
4009 * unexcw.c (unexec): Remove the last 3 arguments, unused.
4010 * unexelf.c (unexec): Remove the last 3 arguments, unused.
4011 (find_section): Use const.
4012 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
4013 (unexec_error): Declare it NO_RETURN.
4014 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
4015 it as an argument, remove data_start and entry_address arguments, unused.
4016 (unexec): Remove bss_start, data_start and
4017 entry_address arguments.
4018 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
4019 it as an argument, remove data_start and entry_address arguments, unused.
4020 (unexec): Remove bss_start, data_start and
4021 entry_address arguments.
4022
4023 2010-10-03 Juanma Barranquero <lekktu@gmail.com>
4024
4025 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
4026
4027 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
4028 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
4029 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
4030 Fix typos in docstrings.
4031 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
4032 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
4033
4034 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
4035
4036 * keyboard.c (command_loop_1): Make sure the mark is really alive
4037 before using it (Bug#7044).
4038
4039 2010-10-02 Juanma Barranquero <lekktu@gmail.com>
4040
4041 * makefile.w32-in (tags): Rename target to full-tags.
4042
4043 2010-10-02 Eli Zaretskii <eliz@gnu.org>
4044
4045 * emacs.c (main): Remove !WINDOWSNT conditional.
4046 (Fkill_emacs): Don't mention exemption on MS-Windows.
4047
4048 2010-10-02 Glenn Morris <rgm@gnu.org>
4049
4050 * character.c (Fchar_bytes): Remove obsolete function.
4051 (syms_of_character): Remove Schar_bytes.
4052
4053 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
4054 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
4055 in batch-mode.
4056 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
4057 (kill-emacs-hook): Doc fix.
4058
4059 2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
4060
4061 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
4062 (parse_region): Rework to take regions instead of strings, and
4063 renamed to reflect that these are the libxml functions.
4064
4065 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4066
4067 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
4068 screen dimensions in tty->Wcm.
4069
4070 * xdisp.c (set_cursor_from_row): When the row is truncated and
4071 point is outside the range of displayed characters, position the
4072 cursor inside the scroll margin. (Bug#6349)
4073
4074 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
4075
4076 Do not include stdlib.h and string.h, config.h does it.
4077 * xfont.c:
4078 * w32term.c:
4079 * w32reg.c:
4080 * w32inevt.c:
4081 * w32heap.c:
4082 * w32console.c:
4083 * w16select.c:
4084 * unexsol.c:
4085 * term.c:
4086 * sound.c:
4087 * scroll.c (m):
4088 * gtkutil.c:
4089 * font.c:
4090 * filelock.c:
4091 * fileio.c:
4092 * dosfns.c:
4093 * dbusbind.c:
4094 * bidi.c:
4095 * callproc.c:
4096 * process.c:
4097 * msdos.c:
4098 * charset.c: Do not include stdlib.h and string.h, config.h does it.
4099
4100 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
4101 defines it.
4102
4103 * process.c: Move #include <pty.h> earlier.
4104 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
4105 (pty_name): Move definition later.
4106
4107 * nsselect.m (syms_of_nsselect):
4108 * nsmenu.m (syms_of_nsmenu):
4109 * nsfns.m (syms_of_nsfns):
4110 * msdos.c (syms_of_msdos):
4111
4112 * image.c (syms_of_image):
4113 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
4114
4115 * point.h: Remove, unused.
4116
4117 2010-10-01 Eli Zaretskii <eliz@gnu.org>
4118
4119 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
4120 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
4121 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
4122
4123 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4124
4125 * xml.c (parse_string): Use const.
4126
4127 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
4128
4129 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
4130 Also only override Vprint_level if it isn't already bound, and increase
4131 the level to 8 to produce more useful backtraces for bug reports.
4132
4133 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
4134
4135 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
4136
4137 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
4138
4139 * w32console.c (vga_stdcolor_name): Remove unused function;
4140 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
4141
4142 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
4143
4144 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
4145 (Fgnutls_boot): Start the handshake.
4146 (emacs_gnutls_read): Perform the handshake from the reader loop.
4147 (Fgnutls_boot): Remove some debugging messages.
4148 Change indentation throughout to use the Emacs style.
4149 (emacs_gnutls_handshake): Cast the fds to something that's
4150 possibly the expected length.
4151 (emacs_gnutls_write): Return -1 if we try to write before handshake.
4152
4153 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
4154
4155 * process.c (make_process): Set the gnutls_p field to zero by
4156 default.
4157 (read_process_output): Always call the gnutls_read function if the
4158 stream is a gnutls stream.
4159 (send_process): Ditto for writes.
4160
4161 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
4162 or write anything until the state is GNUTLS_STAGE_READY.
4163 (Fgnutls_boot): Mark the stream as being a gnutls stream.
4164
4165 2010-09-29 Eli Zaretskii <eliz@gnu.org>
4166
4167 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
4168 NEUTRAL_DIR.
4169 (handle_invisible_prop, iterate_out_of_display_property)
4170 (next_element_from_buffer): If bidi_it.first_elt is set, call
4171 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
4172 (Bug#7128)
4173
4174 * print.c (print_object): Fix format string and argument types for
4175 printing a Lisp_Misc_Marker.
4176
4177 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
4178 (load_overlay_strings, get_overlay_strings_1)
4179 (get_overlay_strings, forward_to_next_line_start)
4180 (back_to_previous_visible_line_start, reseat, reseat_to_string)
4181 (get_next_display_element, next_element_from_string)
4182 (next_element_from_c_string, next_element_from_buffer)
4183 (move_it_vertically_backward, move_it_by_lines, add_to_log)
4184 (message_dolog, message_log_check_duplicate, message2_nolog)
4185 (message3, message3_nolog, vmessage, set_message, set_message_1)
4186 (hscroll_window_tree, text_outside_line_unchanged_p)
4187 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
4188 (find_last_unchanged_at_beg_row)
4189 (find_first_unchanged_at_end_row, row_containing_pos)
4190 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
4191 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
4192 Use EMACS_INT for buffer and string positions.
4193
4194 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
4195 (row_containing_pos): Adjust prototype.
4196
4197 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
4198 (message2_nolog, set_message): Adjust prototypes.
4199
4200 2010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
4201
4202 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
4203 (Fgnutls_boot): Use SDATA.
4204 (Fgnutls_handshake): Remove unused var `max_log_level'.
4205
4206 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4207
4208 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
4209 (Bug#7113)
4210
4211 2010-09-27 Jan Djärv <jan.h.d@swipnet.se>
4212
4213 * xgselect.c (xg_select): Clear file descriptors not set from
4214 rfds and wfds.
4215
4216 * process.c (wait_reading_process_output): Add missing FD_CLR
4217 for write_mask (must mirror connect_wait_mask).
4218
4219 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
4220
4221 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
4222 prefix.
4223 (Fgnutls_boot): Use changed process members. Use log level with a
4224 function parameter to set it. Bring back Emacs-level debugging
4225 messages at log level 1 and 2.
4226
4227 * process.c (make_process): Initialize gnutls_log_level.
4228
4229 * process.h: Add gnutls_log_level and rename x509_cred and
4230 anon_cred to have the gnutls_ prefix for consistency.
4231
4232 * gnutls.h (GNUTLS_LOG): Add convenience macro.
4233
4234 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
4235
4236 * w32.c (g_b_init_get_sid_identifier_authority)
4237 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
4238 Remove, not used.
4239 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
4240 (init_winsock): Remove useless assignment.
4241 (open_process_token, get_token_information, lookup_account_sid)
4242 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
4243 (get_security_descriptor_owner, get_security_descriptor_group)
4244 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
4245 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
4246 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
4247 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
4248 (unc_volume_file_attributes, convert_from_time_t)
4249 (create_toolhelp32_snapshot, process32_first, process32_next)
4250 (open_thread_token, impersonate_self, revert_to_self)
4251 (get_process_memory_info, get_process_working_set_size)
4252 (global_memory_status, global_memory_status_ex, socket_to_fd)
4253 (shutdown_handler): Make static.
4254
4255 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
4256
4257 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
4258 (xd_pending_messages): Functions removed.
4259 (xd_read_queued_messages): Add parameters fd, *data, for_read in
4260 order to be compatible with add_read_fd. Determine bus from data,
4261 and call xd_read_message just for this bus.
4262 (xd_add_watch): Use xd_read_queued_messages as callback function.
4263 Add data.
4264
4265 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
4266
4267 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
4268
4269 * gnutls.c (gnutls_log_function): Add more debugging.
4270 (emacs_gnutls_read): Don't infloop while reading.
4271
4272 2010-09-27 Kenichi Handa <handa@m17n.org>
4273
4274 These changes are to remove restriction on the number of glyphs in
4275 one composition.
4276
4277 * dispextern.h (struct glyph): Change the member "slice" to union.
4278 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
4279 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4280
4281 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
4282 instead of glyph->slice.
4283 (marginal_area_string): Likewise.
4284
4285 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
4286 glyph->u.cmp.
4287 (append_composite_glyph): Likewise.
4288
4289 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
4290 glyph->u.cmp.
4291 (fill_gstring_glyph_string, x_get_glyph_overhangs)
4292 (append_composite_glyph): Likewise.
4293 (fill_image_glyph_string): Use glyph->slice.img instead of
4294 glyph->slice.
4295 (append_glyph, produce_image_glyph, append_stretch_glyph)
4296 (note_mouse_highlight): Likewise.
4297
4298 2010-09-26 Jan Djärv <jan.h.d@swipnet.se>
4299
4300 * process.c (add_keyboard_wait_descriptor)
4301 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
4302 (wait_reading_process_output): Don't pass write_mask to select
4303 if SELECT_CANT_DO_WRITE_MASK is defined.
4304 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
4305
4306 * process.h (add_read_fd, delete_read_fd, add_write_fd)
4307 (delete_write_fd): Declare.
4308
4309 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
4310 (write_mask): New variable.
4311 (max_input_desc): Rename from max_keyboard_desc.
4312 (fd_callback_info): New variable.
4313 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
4314 New functions.
4315 (Fmake_network_process): FD_SET write_mask.
4316 (deactivate_process): FD_CLR write_mask.
4317 (wait_reading_process_output): Connecting renamed to Writeok.
4318 check_connect removed. check_write is new. Remove references to gpm.
4319 Use Writeok/check_write unconditionally (i.e. no #ifdef
4320 NON_BLOCKING_CONNECT) instead of Connecting.
4321 Loop over file descriptors and call callbacks in fd_callback_info
4322 if file descriptor is ready for I/O.
4323 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
4324 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
4325 (keyboard_bit_set): Use max_input_desc.
4326 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
4327 Remove #ifdef subprocesses. Use max_input_desc.
4328 (init_process): Initialize write_mask and fd_callback_info.
4329
4330 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
4331
4332 * dbusbind.c: Include process.h.
4333 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
4334 (xd_read_message_1): New functions.
4335 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
4336 Handle watch for both read and write.
4337 (Fdbus_init_bus): Also register xd_toggle_watch.
4338 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
4339 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
4340 to dbus_connection_flush.
4341 (xd_read_message): Move most of the code to xd_read_message_1.
4342 Call xd_read_message_1 until status is COMPLETE.
4343
4344 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
4345
4346 * term.c: Do not include sys/ioctl.h, not needed.
4347 (init_tty): Reorder code to reduce the number of #ifdefs.
4348 No code changes.
4349
4350 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
4351
4352 * process.h: Set up GnuTLS support.
4353
4354 * process.c (make_process, Fstart_process)
4355 (read_process_output, send_process): Set up GnuTLS support for
4356 process input/output file descriptors.
4357
4358 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
4359
4360 * gnutls.c: The source code for GnuTLS support in Emacs.
4361
4362 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
4363
4364 * config.in: Set up GnuTLS support.
4365
4366 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
4367 (obj, LIBES): Set up GnuTLS support.
4368
4369 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
4370
4371 * w32.c (get_emacs_configuration_options): Fix previous change.
4372
4373 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
4374
4375 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
4376 alive before using it (Bug#6977).
4377
4378 2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
4379
4380 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
4381
4382 * dispextern.h: EMACS_INT/int fixup.
4383
4384 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
4385 fixup.
4386
4387 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
4388
4389 2010-09-25 Eli Zaretskii <eliz@gnu.org>
4390
4391 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
4392 (Fselect_window, window_scroll_pixel_based)
4393 (window_scroll_line_based, Frecenter, Fset_window_configuration):
4394 Use EMACS_INT for buffer positions.
4395
4396 * textprop.c (validate_interval_range, interval_of)
4397 (property_change_between_p, Fadd_text_properties)
4398 (set_text_properties_1, Fremove_text_properties)
4399 (Fremove_list_of_text_properties, Ftext_property_any)
4400 (Ftext_property_not_all, copy_text_properties)
4401 (text_property_list, extend_property_ranges)
4402 (verify_interval_modification): Use EMACS_INT for buffer
4403 positions.
4404
4405 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
4406 for buffer positions.
4407
4408 * process.c (read_process_output, send_process)
4409 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
4410 and string positions and size.
4411
4412 * print.c (print_object, print_string, strout): Use EMACS_INT for
4413 string indices.
4414
4415 * minibuf.c (string_to_object): Use EMACS_INT for string position
4416 and size.
4417
4418 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
4419
4420 * lread.c <read_from_string_index, read_from_string_index_byte>
4421 <read_from_string_limit, readchar_count>: Define EMACS_INT.
4422 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
4423 buffer positions and string length.
4424
4425 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
4426 EMACS_INT.
4427 (echo_truncate, adjust_point_for_property, read_char)
4428 (gen_help_event, make_lispy_event, modify_event_symbol)
4429 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
4430 for buffer positions and string length.
4431
4432 * keyboard.h (gen_help_event): Adjust prototype.
4433
4434 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
4435
4436 * commands.h <last_point_position>: Declare EMACS_INT.
4437
4438 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
4439 (truncate_echo_area): Accept EMACS_INT argument.
4440
4441 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
4442
4443 * lisp.h (truncate_echo_area): Adjust prototype.
4444
4445 * composite.c (composition_adjust_point): Return EMACS_INT.
4446
4447 * composite.h (composition_adjust_point): Adjust prototype.
4448
4449 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
4450
4451 * process.c (Fmake_network_process): When arg :host is 'local,
4452 use address 127.0.0.1, not name "localhost". (Bug#6781)
4453
4454 2010-09-24 Eli Zaretskii <eliz@gnu.org>
4455
4456 * indent.c (Fcurrent_indentation, indented_beyond_p)
4457 (compute_motion): Use EMACS_INT for buffer position variables.
4458
4459 * lisp.h (indented_beyond_p): Adjust prototype.
4460
4461 * buffer.c (overlay_strings): Return EMACS_INT.
4462
4463 * buffer.h (overlay_strings): Adjust prototype.
4464
4465 * region-cache.c (pp_cache): Adjust format to arguments.
4466
4467 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
4468 (call_debugger): Use EMACS_INT for specpdl_size related variables.
4469 (verror): Use EMACS_INT for size of allocated buffer.
4470
4471 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
4472 positions.
4473
4474 * xdisp.c (redisplay_internal, try_window_id)
4475 (set_cursor_from_row, find_first_unchanged_at_end_row):
4476 Use EMACS_INT for buffer positions.
4477
4478 * dispextern.h (set_cursor_from_row): Adjust prototype.
4479
4480 * dispnew.c (increment_matrix_positions)
4481 (increment_row_positions, copy_glyph_row_contents)
4482 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
4483 positions.
4484
4485 * dispextern.h (mode_line_string, marginal_area_string)
4486 (increment_matrix_positions, increment_row_positions):
4487 Adjust prototypes.
4488
4489 * data.c (Faref, Faset): Use EMACS_INT for string length and
4490 positions.
4491
4492 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
4493 characters to insert.
4494
4495 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
4496 position and size.
4497
4498 * syntax.c (scan_words, update_syntax_table)
4499 (prev_char_comend_first, back_comment, skip_chars)
4500 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
4501 Use EMACS_INT for buffer and string positions.
4502
4503 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
4504
4505 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
4506 positions.
4507
4508 2010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
4509
4510 * scroll.c (calculate_scrolling, line_ins_del)
4511 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
4512 conversion.
4513
4514 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
4515 (region_cache_backward, region_cache_forward)
4516 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
4517 conversion.
4518
4519 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4520
4521 * eval.c (verror): Fix EMACS_INT/int conversion.
4522
4523 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
4524 (print_preprocess, print_check_string_charset_prop)
4525 (print_object): Fix EMACS_INT/int conversion.
4526
4527 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
4528
4529 2010-09-24 Eli Zaretskii <eliz@gnu.org>
4530
4531 * callproc.c (Fcall_process): Use EMACS_INT for count of
4532 characters read from the subprocess.
4533
4534 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
4535 positions.
4536 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
4537 positions.
4538
4539 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
4540 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
4541 length.
4542 (advance_to_char_boundary, Fset_buffer_multibyte)
4543 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
4544 (overlay_touches_p, record_overlay_string, overlay_strings)
4545 (recenter_overlay_lists, fix_start_end_in_overlays)
4546 (modify_overlay, Fmove_overlay, report_overlay_modification)
4547 (evaporate_overlays): Use EMACS_INT for buffer positions.
4548
4549 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
4550 Adjust prototypes.
4551
4552 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
4553 positions.
4554
4555 * fns.c (Fcompare_strings, Fstring_lessp, concat)
4556 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
4557 (Fsubstring_no_properties, substring_both, Ffillarray)
4558 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
4559 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
4560 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
4561 (Fmd5): Use EMACS_INT for buffer and string positions and length
4562 variables and arguments.
4563
4564 * lisp.h (substring_both): Adjust prototype.
4565
4566 2010-09-24 Juanma Barranquero <lekktu@gmail.com>
4567
4568 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
4569 * w32fns.c (clipboard_sequence_fn): Don't declare.
4570 (globals_of_w32fns): Don't initialize it.
4571
4572 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
4573
4574 * syntax.c (back_comment): Detect the case where a 1-char comment
4575 starter is also the 2nd char of a 2-char comment ender.
4576
4577 2010-09-23 Jan Djärv <jan.h.d@swipnet.se>
4578
4579 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
4580
4581 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4582
4583 * eval.c (verror): EMACS_INT/int cleanup.
4584
4585 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
4586 unwind_protect more than 2GB worth of functions.
4587
4588 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
4589
4590 * lisp.h: Have oblookup take EMACS_INT to allow interning big
4591 string and avoid compiler warnings.
4592 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
4593 all users.
4594
4595 * lread.c (oblookup): EMACS_INT/int cleanup.
4596
4597 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
4598
4599 2010-09-23 Eli Zaretskii <eliz@gnu.org>
4600
4601 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
4602
4603 * lisp.h (clip_to_bounds): Adjust prototype.
4604
4605 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
4606
4607 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
4608
4609 * lisp.h: doprnt.c EMACS_INT/int cleanup.
4610
4611 * doprnt.c (doprnt): EMACS_INT/int cleanup.
4612
4613 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
4614 cleanup.
4615
4616 * lisp.h: Change the definition of all marker.c functions that
4617 take and return buffer stuff to be EMACS_INT instead of int.
4618
4619 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
4620 (buf_charpos_to_bytepos, bytepos_to_charpos)
4621 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
4622 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
4623 for all buffer positions.
4624
4625 2010-09-23 Chong Yidong <cyd@stupidchicken.com>
4626
4627 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4628 (split_interval_right, find_interval, next_interval)
4629 (delete_node, delete_interval, interval_deletion_adjustment)
4630 (adjust_intervals_for_deletion, merge_interval_right)
4631 (merge_interval_left, graft_intervals_into_buffer)
4632 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
4633
4634 * intervals.h (traverse_intervals): Update prototype.
4635
4636 2010-09-23 Eli Zaretskii <eliz@gnu.org>
4637
4638 * indent.c (compute_motion): Use EMACS_INT for arguments to
4639 region_cache_forward.
4640
4641 * region-cache.c (struct boundary, struct region_cache):
4642 Use EMACS_INT for positions.
4643 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
4644 (delete_cache_boundaries, set_cache_region)
4645 (invalidate_region_cache, know_region_cache)
4646 (region_cache_forward, region_cache_backward, pp_cache):
4647 Use EMACS_INT for buffer positions.
4648
4649 * region-cache.h (know_region_cache, invalidate_region_cache)
4650 (region_cache_forward, region_cache_backward): Adjust prototypes.
4651
4652 * search.c (string_match_1, fast_c_string_match_ignore_case)
4653 (looking_at_1, scan_buffer, scan_newline)
4654 (find_next_newline_no_quit, find_before_next_newline)
4655 (search_command, trivial_regexp_p, search_buffer, simple_search)
4656 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
4657 and string positions and length.
4658
4659 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
4660 (find_before_next_newline): Adjust prototypes.
4661
4662 * editfns.c (transpose_markers, update_buffer_properties)
4663 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
4664 (get_pos_property, Fconstrain_to_field)
4665 (Fline_beginning_position, Fline_end_position, Fprevious_char)
4666 (Fchar_after, Fchar_before, Finsert_char)
4667 (Finsert_buffer_substring, Fcompare_buffer_substrings)
4668 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
4669 Use EMACS_INT for buffer and string position variables.
4670 (Finsert_char): Protect against too large insertions.
4671
4672 * lisp.h (clip_to_bounds): Adjust prototype.
4673
4674 * intervals.c (traverse_intervals, rotate_right, rotate_left)
4675 (balance_an_interval, split_interval_right, split_interval_left)
4676 (find_interval, next_interval, update_interval)
4677 (adjust_intervals_for_insertion, delete_node, delete_interval)
4678 (interval_deletion_adjustment, adjust_intervals_for_deletion)
4679 (offset_intervals, merge_interval_right, merge_interval_left)
4680 (graft_intervals_into_buffer, adjust_for_invis_intang)
4681 (move_if_not_intangible, get_local_map, copy_intervals)
4682 (copy_intervals_to_string, compare_string_intervals)
4683 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
4684 and for interval tree size.
4685
4686 * intervals.h (traverse_intervals, split_interval_right)
4687 (split_interval_left, find_interval, offset_intervals)
4688 (graft_intervals_into_buffer, copy_intervals)
4689 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
4690 (update_interval): Adjust prototypes.
4691
4692 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
4693 Use EMACS_INT for buffer position variables and arguments.
4694
4695 * composite.c (get_composition_id, find_composition)
4696 (run_composition_function, compose_text)
4697 (composition_gstring_width, autocmp_chars)
4698 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
4699 for buffer positions and string length variables and arguments.
4700
4701 * composite.h (get_composition_id, find_composition, compose_text)
4702 (composition_gstring_width): Adjust prototypes.
4703
4704 * editfns.c (Fformat): Use EMACS_INT for string size variables.
4705
4706 * xdisp.c (store_mode_line_noprop, display_mode_element):
4707 Use EMACS_INT for string positions.
4708
4709 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
4710 position arguments.
4711
4712 * intervals.h (get_property_and_range): Adjust prototype.
4713
4714 * character.c (parse_str_as_multibyte, str_as_multibyte)
4715 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4716 (string_count_byte8, string_escape_byte8, c_string_width)
4717 (strwidth, lisp_string_width, multibyte_chars_in_text):
4718 Use EMACS_INT for string length variables and arguments.
4719
4720 * character.h (parse_str_as_multibyte, str_as_multibyte)
4721 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
4722 (c_string_width, strwidth, lisp_string_width):
4723 Adjust prototypes.
4724
4725 * font.c (font_intern_prop): Use EMACS_INT for string length
4726 variables.
4727
4728 * font.c (font_intern_prop): Use EMACS_INT for string length
4729 variables.
4730
4731 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
4732 variables.
4733
4734 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
4735 (Fmake_string): Protect against too large strings.
4736 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
4737 (live_misc_p): Use ptrdiff_t instead of int for pointer
4738 differences.
4739 (string_bytes, check_sblock, check_string_free_list)
4740 (allocate_string_data, compact_small_strings, Fmake_string)
4741 (Fmake_bool_vector, make_string, make_unibyte_string)
4742 (make_multibyte_string, make_string_from_bytes)
4743 (make_specified_string_string, Fmake_list, Fmake_vector):
4744 Use EMACS_INT for string length variables and arguments.
4745 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
4746 (Fpurecopy): Use EMACS_INT for string size.
4747 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
4748 for vector size.
4749
4750 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
4751 (make_string_from_bytes, make_specified_string_string)
4752 (make_pure_string, string_bytes, check_point_in_composition):
4753 Adjust prototypes.
4754
4755 2010-09-22 Eli Zaretskii <eliz@gnu.org>
4756
4757 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
4758 (check_translation): Use EMACS_INT for buffer positions and
4759 length.
4760
4761 * undo.c (record_marker_adjustment, record_delete)
4762 (record_change, record_point, record_insert)
4763 (record_property_change, Fprimitive_undo): Use EMACS_INT for
4764 buffer positions.
4765
4766 * lisp.h (record_marker_adjustment, record_delete)
4767 (record_change, record_point, record_insert)
4768 (record_property_change, Fprimitive_undo): Adjust prototypes.
4769
4770 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
4771 Eli Zaretskii <eliz@gnu.org>
4772
4773 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
4774
4775 2010-09-22 Eli Zaretskii <eliz@gnu.org>
4776
4777 * minibuf.c (Fminibuffer_contents)
4778 (Fminibuffer_contents_no_properties)
4779 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
4780 positions.
4781
4782 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
4783 mark.
4784
4785 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
4786 (allocate_string_data): Accept EMACS_INT for string length.
4787
4788 * editfns.c (Ffield_string, Ffield_string_no_properties)
4789 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
4790 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
4791 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
4792 (Ffield_end): Use EMACS_INT for buffer positions.
4793
4794 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
4795 point with mark.
4796
4797 * lisp.h (allocate_string_data, make_uninit_string)
4798 (make_uninit_multibyte_string, make_buffer_string)
4799 (make_buffer_string_both): Adjust prototypes.
4800
4801 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
4802
4803 * xml.c: Switch to GNU indentation.
4804 (make_dom): Change parse tree format to match xml.el.
4805 (Fxml_parse_html_string_internal): Rename from html-parse-string.
4806 (Fxml_parse_string_internal): Rename from xml-parse-string.
4807
4808 2010-09-22 Kenichi Handa <handa@m17n.org>
4809
4810 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
4811 only if we are not at a composition.
4812 (set_iterator_to_next): Give it->end_charpos to
4813 composition_compute_stop_pos.
4814 (set_iterator_to_next, next_element_from_buffer): Likewise.
4815
4816 * dispnew.c (buffer_posn_from_coords): Fix position when the
4817 current display element is a grapheme cluster in bidi-reordered
4818 region.
4819
4820 2010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
4821
4822 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
4823 the regions may overlap.
4824
4825 2010-09-21 Juanma Barranquero <lekktu@gmail.com>
4826
4827 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
4828
4829 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
4830
4831 * emacs.c: Do not include sys/ioctl.h, not needed.
4832
4833 * doprnt.c: Do not include stdlib.h, config.h does it.
4834 Move #include before macro definition.
4835
4836 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
4837
4838 * Makefile.in (temacs): Link using $(CC) not $(LD).
4839 (LD_FIRSTFLAG): Define using autoconf.
4840 (LD): Remove.
4841
4842 Remove HAVE_TERMIOS definitions.
4843 * s/usg5-4-common.h (HAVE_TERMIOS):
4844 * s/template.h (HAVE_TERMIOS):
4845 * s/gnu-linux.h (HAVE_TERMIOS):
4846 * s/darwin.h (HAVE_TERMIOS):
4847 * s/cygwin.h (HAVE_TERMIOS):
4848 * s/bsd-common.h (HAVE_TERMIOS):
4849 * s/aix4-2.h (HAVE_TERMIOS):
4850 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
4851 defined on all non-MS platforms.
4852 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
4853
4854 * xterm.c (xt_action_hook): Use const.
4855
4856 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
4857
4858 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
4859 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
4860 (gethostname) [!HAVE_SOCKETS]: Remove.
4861 (SOCK_REPLACE_HANDLE): Remove macro.
4862 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
4863 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
4864 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
4865 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
4866
4867 2010-09-18 Eli Zaretskii <eliz@gnu.org>
4868
4869 * deps.mk (xml.o): Add dependencies.
4870
4871 * xdisp.c (Fcurrent_bidi_paragraph_direction):
4872 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
4873
4874 * bidi.c (bidi_paragraph_init): Accept an additional argument
4875 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
4876 search back until a paragraph with a strong directional character
4877 is found, and use that to determine paragraph's base direction.
4878
4879 * dispextern.h (bidi_paragraph_init): Update prototype.
4880
4881 2010-09-17 Eli Zaretskii <eliz@gnu.org>
4882
4883 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
4884 of w32api >= 3.15. (Bug#6989)
4885
4886 2010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
4887
4888 * process.c (wait_reading_process_output): Don't message about
4889 accept-process-output unless the time limit really is zero.
4890
4891 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
4892
4893 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
4894 int/Lisp_Object mixup).
4895
4896 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
4897
4898 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
4899 not HELP.
4900
4901 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
4902
4903 * frame.c (Ftool_bar_pixel_width): New function to expose tool
4904 bar's pixel width to Lisp (Bug#7048).
4905
4906 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
4907
4908 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
4909
4910 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
4911
4912 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
4913 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
4914
4915 2010-09-17 Kenichi Handa <handa@m17n.org>
4916
4917 * ftfont.c (ftfont_check_otf): Fix previous change.
4918
4919 2010-09-14 Kenichi Handa <handa@m17n.org>
4920
4921 * ftfont.c (ftfont_check_otf): Fix the case of checking just
4922 existence of GSUB or GPOS.
4923
4924 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
4925
4926 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
4927
4928 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
4929
4930 * xml.c (parse_buffer): Rename to parse_string(), since that's
4931 what it does.
4932 (parse_string): Return nil when the document can't be parsed.
4933
4934 2010-09-14 Jan Djärv <jan.h.d@swipnet.se>
4935
4936 * xterm.c (get_current_vm_state): New function.
4937 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
4938 want_fullscreen so set_wm_state calls are few (Bug#7013).
4939 (x_handle_net_wm_state): Move code to get_current_vm_state and
4940 call that function.
4941
4942 2010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
4943
4944 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
4945
4946 2010-09-14 Kenichi Handa <handa@m17n.org>
4947
4948 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
4949 we may use designation or locking-shift.
4950
4951 2010-09-14 Kenichi Handa <handa@m17n.org>
4952
4953 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
4954 sequence when the source is multibyte.
4955
4956 2010-09-14 Andreas Schwab <schwab@linux-m68k.org>
4957
4958 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
4959 Don't make first argument optional. Doc fix.
4960
4961 2010-09-14 Leo <sdl.web@gmail.com> (tiny change)
4962
4963 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
4964 parameters for the doc string.
4965
4966 2010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
4967
4968 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
4969
4970 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
4971
4972 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
4973 (syms_of_fns): Don't defsubr Sy_or_n_p.
4974 * lisp.h: Don't declare Fy_or_n_p.
4975 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
4976
4977 2010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
4978
4979 * xml.c (Fxml_parse_buffer): New function to parse XML files.
4980
4981 2010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4982
4983 * xml.c: New file.
4984 (Fhtml_parse_buffer): New function to interface to the libxml2
4985 html parsing function.
4986
4987 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
4988
4989 * biditype.h: Regenerate.
4990
4991 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
4992
4993 * nsimage.m (ns_load_image): Check argument types.
4994
4995 * image.c: Remove all uses of gcpro.
4996 (xpm_load): Check all lisp types.
4997 (pbm_load): Likewise.
4998 (png_load): Likewise.
4999 (jpeg_load): Likewise.
5000 (tiff_load): Likewise.
5001 (gif_load): Likewise.
5002 (imagemagick_load_image): Likewise.
5003 (imagemagick_load): Likewise.
5004 (svg_load): Likewise.
5005 (gs_load): Likewise.
5006
5007 2010-09-04 Eli Zaretskii <eliz@gnu.org>
5008
5009 * w32uniscribe.c (uniscribe_shape): Update commentary.
5010 Don't try to reorder grapheme clusters, since LGSTRING should always
5011 hold them in the logical order.
5012 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
5013 return glyph codes in the logical order.
5014
5015 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
5016
5017 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
5018 (imagemagick_load_image): Fix type mismatch.
5019 (Fimagemagick_types): Likewise. Doc fix.
5020
5021 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
5022
5023 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
5024
5025 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
5026
5027 * xselect.c: Remove declaration of cut-buffer objects and functions.
5028 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
5029 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
5030 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
5031 (Fx_rotate_cut_buffers_internal): Remove.
5032 (syms_of_xselect): Remove defsubr of above.
5033 Remove intern of QCUT_BUFFERn.
5034
5035 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
5036
5037 * cmds.c (Vblink_paren_function): Remove.
5038 (internal_self_insert): Make it insert N chars at a time.
5039 Don't call blink-paren-function.
5040 (Fself_insert_command): Adjust accordingly.
5041 (syms_of_cmds): Don't declare blink-paren-function.
5042
5043 2010-08-31 Kenichi Handa <handa@m17n.org>
5044
5045 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
5046 characters.
5047
5048 * term.c (encode_terminal_code): Fix the previous change.
5049 (produce_glyphs): Don't set it->char_to_display here.
5050 Don't handle unibyte-display-via-language-environment here.
5051 (produce_special_glyphs): Set temp_it.char_to_display before
5052 calling produce_glyphs.
5053
5054 * xdisp.c (get_next_display_element): Set it->char_to_display
5055 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
5056 characters.
5057 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
5058 calling PRODUCE_GLYPHS.
5059 (append_space_for_newline): Save and store it->char_to_display.
5060 Set it->char_to_display before calling PRODUCE_GLYPHS.
5061 (extend_face_to_end_of_line): Set it->char_to_display before
5062 calling PRODUCE_GLYPHS.
5063 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
5064 character to its byte value.
5065 (get_char_glyph_code): New function.
5066 (produce_stretch_glyph): Set it2.char_to_display too before
5067 calling x_produce_glyphs.
5068 (x_produce_glyphs): Simplify by using the same code for ASCII and
5069 non-ASCII characters. Don't set it->char_to_display here.
5070 Don't handle unibyte-display-via-language-environment here. For a
5071 character of no glyph, use font->space_width instead of FONT_WIDTH.
5072
5073 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
5074
5075 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
5076
5077 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
5078
5079 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
5080
5081 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
5082
5083 * marker.c (Fcopy_marker): Make the first arg optional.
5084
5085 2010-08-30 Kenichi Handa <handa@m17n.org>
5086
5087 * composite.c (composition_update_it): Fix computing of
5088 cmp_it->width.
5089
5090 2010-08-29 Kenichi Handa <handa@m17n.org>
5091
5092 * term.c (encode_terminal_code): Encode byte chars to the
5093 corresponding bytes.
5094
5095 2010-08-29 Jan Djärv <jan.h.d@swipnet.se>
5096
5097 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
5098
5099 2010-08-26 Kenichi Handa <handa@m17n.org>
5100
5101 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
5102 on calling composition_compute_stop_pos.
5103
5104 2010-08-25 Kenichi Handa <handa@m17n.org>
5105
5106 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
5107 :otf.
5108
5109 * composite.c (composition_compute_stop_pos): Don't break
5110 composition at PT.
5111 (composition_reseat_it): Likewise. Fix calculation of character
5112 position starting a composition.
5113 (Fcomposition_get_gstring): Don't limit the number of components
5114 for automatic composition.
5115
5116 2010-08-25 Kenichi Handa <handa@m17n.org>
5117
5118 * composite.c (composition_compute_stop_pos): In forward search,
5119 pay attention to the possibility that some character after ENDPOS
5120 will be composed with charactrs before ENDPOS.
5121
5122 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
5123
5124 * keyboard.c (command_loop_1): Don't clobber primary selection
5125 during handle-switch-frame (Bug#6872).
5126
5127 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
5128
5129 * dbusbind.c: Accept UNIX domain sockets as bus address.
5130 (Fdbus_close_bus): New function.
5131 (Vdbus_registered_buses): New variable.
5132 (xd_initialize): Implement string as bus address.
5133 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
5134 (Fdbus_get_unique_name, Fdbus_call_method)
5135 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
5136 (Fdbus_method_error_internal, Fdbus_send_signal)
5137 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
5138 check. This is done in xd_initialize_bus. Adapt doc string, if
5139 necessary.
5140 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
5141 Vdbus_registered_buses.
5142 (Vdbus_registered_objects_table): Create hash.
5143
5144 2010-08-22 Juri Linkov <juri@jurta.org>
5145
5146 * keyboard.c (Fexecute_extended_command): Move reading a command name
5147 with `completing-read' to a new Elisp function `read-extended-command'.
5148 Call it to read a command to `function' (bug#5364, bug#5214).
5149
5150 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5151
5152 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
5153
5154 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
5155
5156 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
5157 instead of SAFE_ALLOCA.
5158
5159 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
5160
5161 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
5162 (Bug#6214).
5163
5164 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5165
5166 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
5167
5168 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
5169
5170 * doc.c (Fsnarf_documentation): Initialize skip_file before
5171 build-files test.
5172
5173 2010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
5174
5175 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
5176 New definitions.
5177 (HAVE_TERMIO): Remove.
5178
5179 2010-08-22 Eli Zaretskii <eliz@gnu.org>
5180
5181 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
5182
5183 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
5184 for w32.
5185
5186 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
5187 it's done in nt/config.nt.
5188
5189 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
5190
5191 * unexcoff.c (report_error, make_hdr, write_segment)
5192 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
5193 Convert argument lists and prototypes to ANSI C.
5194 (make_hdr, write_segment): Remove unused variables.
5195 (unexec): Remove commented-out line. Initialize `new' to shut up
5196 compiler warnings.
5197
5198 2010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
5199
5200 Simplify termio code.
5201 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
5202 HAVE_TERMIO code is obsolete.
5203 Replace HAVE_TERMIOS conditionals with !DOS_NT.
5204 * systty.h: Do not define HAVE_TCATTR.
5205 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
5206 Do not define EMACS_HAVE_TTY_PGRP. Only define
5207 EMACS_GET_TTY_PGRP for !DOS_NT.
5208 * sysdep.c: Include sysselect.h unconditionally. Do not include
5209 sys/ioctl.h and termios.h, systty.h does it.
5210 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
5211 (init_baud_rate): Remove HAVE_TERMIO code.
5212 (child_setup_tty): Remove HAVE_TERMIO code.
5213 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
5214 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
5215 (new_ltchars, new_tchars): Remove, unused.
5216 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
5217 code. Remove special casing for __mips__, it was a no-op.
5218 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
5219 (init_sys_modes): Remove HPUX special case.
5220 * process.c: Include stdlib.h unconditionally. Do not include
5221 fcntl.h, systty.h does it. Remove conditional code for
5222 HAVE_SERIAL, it is always true.
5223 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
5224 always true when SIGNALS_VIA_CHARACTERS is true.
5225 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
5226 !WINDOWSNT means HAVE_TERMIOS.
5227 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
5228 conditional, which is true for all HAVE_TERMIOS systems.
5229 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
5230 instead of HAVE_TERMIOS.
5231 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
5232 EMACS_HAVE_TTY_PGRP.
5233 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
5234 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
5235 anyway.
5236
5237 2010-08-21 Eli Zaretskii <eliz@gnu.org>
5238
5239 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
5240 mirroring pixel positions.
5241
5242 2010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
5243
5244 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
5245 write only.
5246 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
5247 malloc_sbrk_used, nothing uses them.
5248
5249 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
5250 defined, unconditionally defined in lisp.h.
5251
5252 * term.c: Do not include <termios.h>, systty.h does it.
5253
5254 * s/unixware.h (HAVE_TCATTR):
5255 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
5256 systty.h defines it when HAVE_TERMIOS is defined.
5257
5258 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5259
5260 * dispnew.c (buffer_posn_from_coords): Fix last change for text
5261 terminals: add one-character offset for R2L lines.
5262
5263 * emacs.c <emacs_version>: Add a comment regarding
5264 msdos/mainmake.v2's dependency on the syntax of this declaration.
5265
5266 2010-08-20 Eli Zaretskii <eliz@gnu.org>
5267
5268 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
5269 position for R2L lines by mirroring the pixel position wrt the
5270 text are box. Improve commentary.
5271
5272 2010-08-20 Andreas Schwab <schwab@linux-m68k.org>
5273
5274 * image.c (imagemagick_clear_image): Remove debugging output.
5275
5276 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
5277
5278 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
5279 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
5280 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
5281 self-insert-face.
5282 (syms_of_cmds): Initialize the new vars.
5283
5284 2010-08-19 Jason Rumney <jasonr@gnu.org>
5285
5286 * w32menu.c (set_frame_menubar): Remove call to undefined function.
5287
5288 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
5289
5290 2010-08-19 Jan Djärv <jan.h.d@swipnet.se>
5291
5292 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
5293
5294 2010-08-18 Eli Zaretskii <eliz@gnu.org>
5295
5296 * xterm.c (x_draw_bar_cursor):
5297 * w32term.c (x_draw_bar_cursor): If the character under cursor is
5298 R2L, draw the bar cursor on its right rather than on its left.
5299
5300 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
5301
5302 * eval.c (Fdefmacro): Only obey one declaration.
5303
5304 * casefiddle.c (casify_region): Setup gl_state.
5305
5306 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5307
5308 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
5309
5310 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
5311
5312 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
5313
5314 2010-08-18 David De La Harpe Golden <david@harpegolden.net>
5315
5316 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
5317 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
5318 QPRIMARY => NXPrimaryPboard.
5319 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
5320 NXPrimaryPboard => QPRIMARY.
5321 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
5322 NXSecondaryPboard = SecondarySelection.
5323 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
5324
5325 2010-08-18 Joakim Verona <joakim@verona.se>
5326
5327 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
5328 defined:
5329 (imagemagick_image_p): New function to test for ImageMagic image.
5330 (imagemagick_load): New function to load ImageMagick image.
5331 (imagemagick_load_image): New function, helper for imagemagick_load.
5332 (imagemagick-types): New function.
5333 (Qimagemagick): New Lisp_object.
5334 (imagemagick-render-type): New variable, decides which renderer to use.
5335
5336 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
5337
5338 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
5339 is a string.
5340
5341 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
5342
5343 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
5344 x_set_tool_bar_position handler.
5345
5346 2010-08-17 Eli Zaretskii <eliz@gnu.org>
5347
5348 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
5349 x_set_tool_bar_position handler, needed to support changes from
5350 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
5351
5352 2010-08-16 Jan Djärv <jan.h.d@swipnet.se>
5353
5354 * nsselect.m: Include keyboard.h for QPRIMARY, remove its
5355 declaration (Bug#6863).
5356 (syms_of_nsselect): Don't intern QPRIMARY.
5357
5358 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
5359
5360 * keyboard.h (QPRIMARY): Declare (Bug#6864).
5361
5362 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
5363
5364 * keyboard.c (command_loop_1): Avoid setting selection twice,
5365 since it's done in deactivate-mark as well.
5366 (Vselect_active_regions): Change default to t. Replace `lazy'
5367 with non-default value `only', meaning only set PRIMARY for
5368 temporarily active regions.
5369
5370 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
5371 select-active-regions.
5372
5373 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5374
5375 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
5376 isn't a string.
5377
5378 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
5379
5380 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
5381
5382 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
5383
5384 * keyboard.c (parse_tool_bar_item): malloc buf.
5385 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
5386 new_lbl (Bug#6855).
5387
5388 2010-08-14 Eli Zaretskii <eliz@gnu.org>
5389
5390 * xterm.c (x_draw_stretch_glyph_string):
5391 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
5392 the cursor on the right edge of the stretch glyph.
5393
5394 * xdisp.c (window_box_right_offset, window_box_right):
5395 Fix commentary.
5396
5397 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
5398 direction when point is inside a run of whitespace characters.
5399
5400 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
5401
5402 2010-08-14 Jason Rumney <jasonr@gnu.org>
5403
5404 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
5405
5406 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
5407
5408 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
5409
5410 2010-08-13 Jason Rumney <jasonr@gnu.org>
5411
5412 * w32menu.c (simple_dialog_show): Use unicode message box if available.
5413 (MessageBoxW_Proc): New function typedef.
5414 (unicode-message-box): New function pointer.
5415 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
5416
5417 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
5418
5419 * frame.h (Qtool_bar_position): Declare.
5420
5421 * xfns.c (Fx_create_frame): Call x_default_parameter for
5422 Qtool_bar_position.
5423
5424 2010-08-13 Eli Zaretskii <eliz@gnu.org>
5425
5426 * unexcoff.c: Remove the parts used when "emacs" is not defined.
5427 (report_error, report_error_1): Ditto.
5428 (write_segment): Remove "#if 0" unused code.
5429 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
5430 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
5431 (start_of_text): Remove unused function (was used only if NO_REMAP
5432 was NOT defined).
5433
5434 * msdos.c (IT_set_face): Fix format string to match argument
5435 types.
5436 (IT_write_glyphs, IT_note_mode_line_highlight)
5437 (IT_set_frame_parameters): Remove unused variables.
5438 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
5439 (IT_set_terminal_modes): Disambiguate expression in if clause.
5440 (Fmsdos_remember_default_colors): Return Qnil.
5441 (IT_set_frame_parameters): Add parens to disambiguate boolean
5442 expression for logging the cursor type to termscript.
5443 (keyboard_layout_list, keypad_translate_map)
5444 (grey_key_translate_map): Add braces in inner initializers.
5445 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
5446 (dos_rawgetc): Remove unused label.
5447 (XMenuActivate): Add braces to remove ambiguous `else'.
5448 (dos_ttraw): Always return a value.
5449 (spawnve): Declare.
5450 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
5451
5452 * dosfns.h (x_set_title): Declare.
5453
5454 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
5455 Remove unused variables.
5456
5457 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
5458 variables.
5459 (init_dosfns): Declare get_lim_data.
5460 (system_process_attributes): Declare Fget_internal_run_time.
5461
5462 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
5463 list to be consistent with menu.h.
5464
5465 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
5466 warnings due to mixing of "char *" and "const char *".
5467
5468 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
5469
5470 Introduce a new comment style "c" flag.
5471 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
5472 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
5473 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
5474 (syntax_prefix_flag_p): New function.
5475 (Fstring_to_syntax): Understand new "c" flag.
5476 (Finternal_describe_syntax_value): Recognize new flag; use the
5477 SYNTAX_FLAGS_* macros.
5478 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
5479 comment style to accomodate the new styles.
5480 (back_comment, forw_comment, Fforward_comment, scan_lists)
5481 (scan_sexps_forward): Update code to obey the new comment style flag.
5482
5483 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
5484
5485 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
5486
5487 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
5488
5489 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
5490 first.
5491 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
5492
5493 * gtkutil.h (xg_check_special_colors): Declare.
5494
5495 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
5496 (xg_create_frame_widgets): Connect theme name changes to
5497 style_changed_cb.
5498
5499 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
5500 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
5501 (x_term_init): Use char[] display_opt and name_opt instead of
5502 string literal. file is const char*.
5503
5504 * xsmfns.c (NOSPLASH_OPT): Change to char[].
5505 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
5506 props. Free them at the end.
5507
5508 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
5509
5510 * xrdb.c (get_system_app): Make path const and use char *p for
5511 non-const char.
5512
5513 * xmenu.c (Fx_popup_dialog): error_name is const char*.
5514 (xmenu_show): error parameter is const char **. pane_string is const
5515 char *.
5516 (button_names): Is const char *.
5517 (xdialog_show): error_name and pane_string is const.
5518
5519 * process.h (synch_process_death): Is const char*.
5520
5521 * w32menu.c (w32_menu_show):
5522 * nsmenu.m (ns_menu_show): error parameter is const char **.
5523
5524 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
5525 is const char **.
5526
5527 * menu.c (Fx_popup_menu): error_name is const.
5528
5529 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
5530 with unsigned char and XtPointer with void *.
5531
5532 * gtkutil.h: Replace widget_value with struct _widget_value.
5533 (enum button_type, struct _widget_value): Remove and use the one from
5534 keyboard.h.
5535
5536 * gtkutil.c (get_utf8_string): Always return an allocated string.
5537 Parameter is const.
5538 (create_dialog, xg_create_one_menuitem, create_menus)
5539 (xg_item_label_same_p, xg_update_menu_item): Free result from
5540 get_utf8_string.
5541 (xg_separator_p, xg_item_label_same_p): label is const.
5542
5543 * font.h (font_open_by_name): Make name const.
5544
5545 * font.c (font_open_by_name): Make name const.
5546
5547 * floatfns.c (matherr): Use a const char* variable for x->name.
5548
5549 * emacs.c (main): Pass char[] to putenv instead of literal.
5550
5551 * callproc.c (synch_process_death): Make const.
5552 (Fcall_process): Make signame const.
5553
5554 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
5555 (addDisplayItemWithImage): Use const char*.
5556
5557 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
5558 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
5559
5560 * nsfont.m (ns_descriptor_to_entity): Use const char*.
5561
5562 * keyboard.h (_widget_value): name, value and key are const char*.
5563
5564 * unexmacosx.c (unexec_error): Use const char *.
5565
5566 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5567
5568 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5569 (font_parse_name, font_open_by_name):
5570 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
5571 (font_parse_name, font_open_by_name): Remove const.
5572
5573 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
5574
5575 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
5576 definition.
5577
5578 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
5579 * m/amdx86-64.h: Likewise.
5580 * m/arm.h: Likewise.
5581 * m/hp800.h: Likewise.
5582 * m/ia64.h: Likewise.
5583 * m/ibmrs6000.h: Likewise.
5584 * m/ibms390.h: Likewise.
5585 * m/intel386.h: Likewise.
5586 * m/iris4d.h: Likewise.
5587 * m/m68k.h: Likewise.
5588 * m/macppc.h: Likewise.
5589 * m/mips.h: Likewise.
5590 * m/sh3.h: Likewise.
5591 * m/sparc.h: Likewise.
5592 * m/template.h: Likewise.
5593 * m/vax.h: Likewise.
5594 * m/xtensa.h: Likewise.
5595 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
5596 WORDS_BIG_ENDIAN.
5597 * lisp.h: Likewise.
5598 * md5.c: Likewise.
5599 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
5600
5601 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
5602
5603 Use const char* instead of char*.
5604 Reduce the number of warnings with -Wwrite-strings.
5605 * xrdb.c (get_environ_db, get_system_name):
5606 * unexelf.c (find_section):
5607 * term.c (string_cost, string_cost_one_line, per_line_cost)
5608 (get_named_tty, init_tty):
5609 * sysdep.c (sys_subshell):
5610 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
5611 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
5612 * search.c (Freplace_match):
5613 * process.c (Fmake_network_process, send_process, init_process):
5614 * lread.c (Fload, init_lread):
5615 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
5616 * keyboard.c (parse_tool_bar_item, struct event_head):
5617 * gtkutil.h (xg_get_font_name):
5618 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
5619 (make_widget_for_menu_item, make_menu_item, create_menus)
5620 (xg_make_tool_item):
5621 * font.c (parse_matrix, font_parse_name):
5622 * floatfns.c (rounding_driver, float_error_fn_name):
5623 * filelock.c (get_boot_time_1, lock_file_1):
5624 * fileio.c (barf_or_query_if_file_exists, check_writable):
5625 * editfns.c (get_system_name, get_operating_system_release)
5626 (Fencode_time, Fset_time_zone_rule):
5627 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
5628 * buffer.c (defvar_per_buffer): Use const.
5629
5630 2010-08-08 Kenichi Handa <handa@m17n.org>
5631
5632 * charset.c: Include <stdlib.h>.
5633 (struct charset_sort_data): New struct.
5634 (charset_compare): New function.
5635 (Fsort_charsets): New function.
5636 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
5637
5638 * coding.c (decode_coding_iso_2022): Fix checking of dimension
5639 number in CTEXT extended segment.
5640
5641 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5642
5643 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
5644 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
5645
5646 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5647
5648 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
5649 (Fhash_table_size): Fix typos in docstrings.
5650 (Fmake_hash_table): Doc fix.
5651
5652 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
5653
5654 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
5655 Doc fix (bug#5625).
5656
5657 2010-08-08 Ken Brown <kbrown@cornell.edu>
5658
5659 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
5660 the MSDOS definition.
5661
5662 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
5663
5664 Use const char* instead of char*.
5665 * xterm.c (x_create_toolkit_scroll_bar):
5666 * xfont.c (xfont_list_pattern):
5667 * xfns.c (x_default_scroll_bar_color_parameter)
5668 (xic_create_fontsetname, x_default_font_parameter)
5669 (x_screen_planes):
5670 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
5671 (store_mode_line_string, decode_mode_spec, display_string):
5672 * menu.c (digest_single_submenu):
5673 * keymap.h (initial_define_key, initial_define_lispy_key):
5674 * keymap.c (initial_define_key, initial_define_lispy_key):
5675 * image.c (image_error, image_keyword):
5676 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
5677 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
5678 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
5679 (ftfont_list, ftfont_match):
5680 * frame.c (frame_parm_table):
5681 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5682 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5683 (font_add_log, font_deferred_log):
5684 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
5685 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
5686 (font_add_log, font_deferred_log):
5687 * emacs.c (argmatch):
5688 * dispextern.h (struct it):
5689 * coding.c (ENCODE_DESIGNATION):
5690 * charset.c (define_charset_internal): Use const.
5691
5692 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
5693
5694 * xrdb.c: Remove include guard.
5695 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
5696 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
5697 realloc->xrealloc instead of using #defines.
5698
5699 2010-08-08 Eli Zaretskii <eliz@gnu.org>
5700
5701 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
5702 * editfns.c (Fline_beginning_position, Fline_end_position):
5703 State in the doc strings that start and end of line are in the
5704 logical order.
5705
5706 * xdisp.c (display_line): Move the handling of overlay arrow after
5707 the call to find_row_edges. (Bug#6699)
5708
5709 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
5710
5711 * keyboard.c (command_loop_1):
5712 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
5713
5714 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
5715
5716 * insdel.c (prepare_to_modify_buffer): Save active region text to
5717 Vsaved_region_selection.
5718
5719 * xselect.c (QPRIMARY): Move to keyboard.c.
5720
5721 * keyboard.c (Vselect_active_regions): Move from simple.el.
5722 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
5723 (command_loop_1): Set window selection prior to deactivating the mark.
5724
5725 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
5726
5727 * alloc.c (lisp_malloc):
5728 * buffer.c (set_buffer_internal, set_buffer_internal_1):
5729 * charset.h (emacs_mule_charset):
5730 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
5731 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
5732 (bitch_at_user):
5733 * lisp.h (Fcheck_coding_system, Fget_text_property)
5734 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
5735 Remove duplicate declarations.
5736
5737 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
5738
5739 * process.c: Simplify include logic.
5740
5741 * keyboard.h (quit_char): Add declaration.
5742 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
5743 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
5744 Add declarations.
5745 * sysdep.c:
5746 * w32.c: Remove the above declarations.
5747
5748 Remove extern declarations in .c files, .h files have them.
5749 * xterm.c:
5750 * xdisp.c:
5751 * msdos.c:
5752 * image.c:
5753 * gtkutil.c:
5754 * fileio.c:
5755 * eval.c: Remove declarations.
5756
5757 * frame.c (frame_params): Make const.
5758
5759 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
5760
5761 * emacs.c (emacs_copyright, emacs_version): Make static.
5762 (Vinitial_window_system, Vauto_save_list_file_name)
5763 (Vinhibit_redisplay): Remove declarations.
5764 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
5765 for AIX.
5766
5767 Use const for some arrays and functions.
5768 * xterm.h (xg_set_icon_from_xpm_data):
5769 * xfns.c (xg_set_icon_from_xpm_data):
5770 * term.c (fkeys):
5771 * keyboard.c (lispy_accent_keys, lispy_function_keys)
5772 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
5773 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
5774 (frame.c frame_parms):
5775 * emacs-icon.h (gnu_xpm_bits):
5776 * callint.c (callint_argfuns): Use const.
5777
5778 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
5779
5780 * sysdep.c: Move include term.h last of includes (Bug#6812).
5781
5782 2010-08-06 Eli Zaretskii <eliz@gnu.org>
5783
5784 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
5785
5786 * msdos.c (IT_display_cursor): Log cursor position on termscript.
5787
5788 * .gdbinit (pgx): Display the avoid_cursor_p flag.
5789
5790 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
5791
5792 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
5793
5794 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
5795
5796 * xterm.h (x_get_focus_frame): Declare.
5797
5798 * keyboard.h (poll_for_input_1): Unconditionally declare.
5799
5800 * nsterm.h (x_set_menu_bar_lines): Declare.
5801
5802 * window.c: Don't include menu.h, it depends on lots of other .h-files.
5803
5804 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
5805
5806 * window.c: Include menu.h.
5807
5808 * unexmacosx.c (print_region_list, print_regions)
5809 (build_region_list, find_emacs_zone_regions)
5810 (unexec_regions_merge, read_load_commands, dump_it)
5811 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
5812
5813 * term.c: Check HAVE_SYS_IOCTL_H.
5814
5815 * sysdep.c: Check HAVE_TERM_H.
5816
5817 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
5818
5819 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
5820 (ns_ring_bell, ns_defined_color, hide_hourglass)
5821 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
5822 Convert to ANSI C prototypes.
5823 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
5824 before code.
5825
5826 * nsterm.h : Include sysselect.h.
5827 (x_sync, x_get_focus_frame, x_set_mouse_position)
5828 (x_set_mouse_pixel_position, x_make_frame_visible)
5829 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
5830 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
5831 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
5832 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
5833 Declare.
5834
5835 * nsmenu.m (popup_activated, name_is_separator)
5836 (syms_of_nsmenu): Convert to ANSI C prototypes.
5837 (runMenuAt): Prototypes and move declarations before code.
5838
5839 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
5840
5841 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
5842 prototypes.
5843
5844 * nsfns.m (have_menus_p, ns_display_info_for_name)
5845 (x_set_cursor_type, ns_appkit_version_str)
5846 (ns_appkit_version_int, ns_do_applescript)
5847 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
5848 (syms_of_nsfns): Convert to ANSI C prototypes.
5849
5850 * menu.h (x_set_menu_bar_line): Declare.
5851 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
5852
5853 * lisp.h (fmod_float): Declare.
5854
5855 * image.c (xpm_scan, xpm_make_color_table_v)
5856 (xpm_put_color_table_v, xpm_get_color_table_v)
5857 (xpm_make_color_table_h, xpm_put_color_table_h)
5858 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
5859 (xpm_load): Convert to ANSI C prototypes.
5860
5861 * emacs.c: Include nsterm.h if HAVE_NS.
5862
5863 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
5864
5865 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
5866
5867 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
5868 subprocesses, only MSDOS does not define HAVE_SOCKETS.
5869 (socket_options): Use const char* for name.
5870
5871 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
5872
5873 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
5874
5875 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
5876 Don't declare xmalloc_widget_value and digest_single_submenu.
5877
5878 * w32font.c (Qlatin): Remove declaration.
5879
5880 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
5881
5882 * dired.c (compile_pattern): Restore declaration.
5883
5884 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
5885
5886 Remove extern declarations in .c files, .h files have them.
5887 * data.c:
5888 * dired.c:
5889 * editfns.c:
5890 * filelock.c:
5891 * fns.c:
5892 * font.c:
5893 * fontset.c:
5894 * frame.c:
5895 * fringe.c:
5896 * ftfont.c:
5897 * gtkutil.c:
5898 * indent.c:
5899 * keyboard.c:
5900 * keymap.c:
5901 * lread.c:
5902 * menu.c:
5903 * print.c:
5904 * search.c:
5905 * sound.c:
5906 * window.c:
5907 * xdisp.c:
5908 * xfaces.c:
5909 * xfns.c:
5910 * xfont.c:
5911 * xftfont.c:
5912 * xmenu.c:
5913 * xterm.c: Remove declarations.
5914
5915 Cleanup syssignal.h.
5916 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
5917 (main_thread): Move down to remove #ifdef.
5918 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
5919 Remove conditional definition following unconditional ones.
5920
5921 * lisp.h: Remove HAVE_SHM code, unused.
5922 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
5923 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
5924 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
5925 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
5926 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
5927 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
5928 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
5929 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
5930 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
5931 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
5932 (Qwindow_scroll_functions, Vafter_load_alist)
5933 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
5934 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
5935 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
5936 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
5937 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
5938 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
5939 (initial_argv, last_nonmenu_event, load_in_progress)
5940 (noninteractive_need_newline, scroll_margin): Add declarations.
5941
5942 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
5943 Remove declarations, menu.h has them.
5944 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
5945 (Vinput_method_function, Qinput_method_function)
5946 (Qevent_symbol_element_mask, last_event_timestamp):
5947 * dispextern.h (Voverflow_newline_into_fringe):
5948 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
5949 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
5950 (syms_of_w32font, syms_of_nsfont):
5951 * fontset.h (find_font_encoding, Qlatin):
5952 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
5953 (Vtool_bar_mode, set_frame_menubar):
5954 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
5955 * xterm.h (Qx_gtk_map_stock):
5956 * keymap.h (meta_prefix_char): Add declarations.
5957
5958 * term.c: Remove dead code.
5959
5960 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
5961 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
5962 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
5963 which is what was there before BSD_PGRPS was removed.
5964
5965 2010-08-05 Eli Zaretskii <eliz@gnu.org>
5966
5967 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
5968
5969 * unexcoff.c: Renamed from unexec.c.
5970
5971 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
5972
5973 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
5974
5975 2010-08-03 Johan Bockgård <bojohan@gnu.org>
5976
5977 * data.c (Flocal_variable_p): Handle variable aliases correctly.
5978 (Bug#6744)
5979
5980 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
5981
5982 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
5983 to TRUE if depth of screen is < 16.
5984
5985 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
5986 USE_GTK_TOOLTIP.
5987 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
5988 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
5989 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
5990 USE_GTK_TOOLTIP.
5991 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
5992
5993 * xterm.h (USE_GTK_TOOLTIP): New define.
5994 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
5995
5996 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
5997 to Control-D (Bug#6771).
5998
5999 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
6000
6001 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
6002 Wording by Drew Adams <drew.adams@oracle.com>.
6003
6004 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
6005
6006 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
6007 ttip_lbl.
6008
6009 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
6010 calling gtk_widget_queue_draw.
6011 (x_free_frame_resources): Call xg_free_frame_widgets.
6012
6013 * xfns.c (x_gtk_use_system_tooltips): New variable.
6014 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
6015 new gtkutil tooltip functions to show the tooltip.
6016 (Fx_hide_tip): Call xg_hide_tooltip.
6017 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
6018
6019 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
6020 (xg_show_tooltip, xg_hide_tooltip): Declare.
6021
6022 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
6023 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
6024 New functions.
6025 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
6026 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
6027 Remove code that is commented out.
6028
6029 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
6030
6031 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
6032
6033 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
6034
6035 * xselect.c (x_own_selection): Use list4.
6036
6037 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
6038
6039 * buffer.c (Qwindow): Do not define, already defined in data.c.
6040 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
6041
6042 2010-07-29 Chad Brown <yandros@mit.edu>
6043
6044 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
6045 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
6046 * config.in: Undef HAVE_DIRENT_H.
6047 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
6048 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
6049
6050 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6051
6052 Rename s/usg5-4.h -> s/usg5-4-common.h.
6053 * s/usg5-4.h: Rename file to ...
6054 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
6055 * s/unixware.h:
6056 * s/sol2-6.h:
6057 * s/irix6-5.h: Update includes accordingly.
6058
6059 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6060
6061 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
6062
6063 * xterm.h (struct x_output): Add toolbar_top_height,
6064 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
6065 Remove toolbar_height.
6066 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
6067 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
6068 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
6069 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
6070
6071 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6072
6073 * xfns.c (x_set_tool_bar_position): New function.
6074 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
6075 (x_frame_parm_handlers): Add x_set_tool_bar_position.
6076 (syms_of_xfns): If USE_GTK, provide move-toolbar.
6077
6078 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
6079 and FRAME_TOOLBAR_LEFT_WIDTH.
6080
6081 * gtkutil.h (xg_change_toolbar_position): Declare.
6082
6083 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
6084 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
6085 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
6086 (xg_create_frame_widgets): Create a hobox for placing widgets
6087 vertically. Use gtk_box_pack_start.
6088 (xg_height_or_width_changed): Rename from xg_height_changed.
6089 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
6090 (xg_update_frame_menubar, free_frame_menubar): Change to
6091 xg_height_or_width_changed.
6092 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
6093 size correctly. Remove hardcoded 4, instead use handlebox size -
6094 toolbar size.
6095 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
6096 size correctly. Use handlebox size + toolbar size as additional size.
6097 (xg_pack_tool_bar): POS is a new parameter.
6098 Set orientation of tool bar based on pos.
6099 Only make handlebox_widget if NULL.
6100 Check if tool bar goes to vbox or hbox depending on pos.
6101 (xg_update_tool_bar_sizes): New function.
6102 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
6103 height, call xg_update_tool_bar_sizes instead.
6104 (free_frame_tool_bar): Remove from hbox or vbox depending on
6105 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
6106 (xg_change_toolbar_position): New function.
6107
6108 * frame.h (struct frame): Add tool_bar_position.
6109 (Qbottom): Declare.
6110
6111 * frame.c (Qtool_bar_position): New variable.
6112 (make_frame): Set tool_bar_position to Qtop.
6113 (frame_parms): Add tool-bar-position.
6114 (x_report_frame_params): Store tool_bar_position.
6115 (x_set_fringe_width): Reset wm size hint after fringe changes.
6116
6117 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6118
6119 Make lisp_time_argument declaration work on all systems.
6120 * lisp.h (lisp_time_argument): Move declaration ...
6121 * systime.h (lisp_time_argument): ... here
6122 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
6123
6124 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
6125
6126 * vm-limit.c (POINTER): Add typedef for it.
6127 (start_of_data): Change return type from POINTER to char *.
6128
6129 * frame.h (Qtty_color_mode): Move declaration out of ifdef
6130 HAVE_WINDOW_SYSTEM.
6131
6132 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
6133
6134 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
6135 Remove reference to __osf__, unused.
6136
6137 * mem-limits.h: Remove duplicated includes.
6138 (NULL): Remove definition, unused.
6139 (POINTER): Remove definition.
6140 (start_of_data): Use char* in prototype, as the function
6141 definition does.
6142
6143 Remove extern declarations from .c files, and them to .h files.
6144 * keyboard.h (Qhelp_echo, waiting_for_input)
6145 (input_available_clear_time, ignore_mouse_drag_p)
6146 (Vdouble_click_time, real_this_command, Vthis_original_command):
6147 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
6148 (Voverriding_local_map_menu_flag):
6149 * lisp.h (Qinteractive_form, use_file_dialog)
6150 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
6151 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
6152 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
6153 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
6154 (Qfunction, debug_on_next_call, Qfield)
6155 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
6156 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
6157 (Qfile_directory_p, Qinsert_file_contents)
6158 (Qcompletion_ignore_case, Qcompletion_ignore_case)
6159 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
6160 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
6161 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
6162 (Qminibuffer_prompt)
6163 (Vtemporary_file_directory,char_ins_del_vector, Qface):
6164 * xterm.h (gray_bitmap_width, gray_bitmap_height)
6165 (gray_bitmap_bits, xic_create_fontsetname):
6166 * coding.h (Vtranslation_table_for_input): Add extern declarations.
6167
6168 * xsmfns.c (Vuser_login_name):
6169 * xrdb.c (Vdouble_click_time):
6170 * xfaces.c (xic_create_fontsetname):
6171 * w32select.c (waiting_for_input):
6172 * print.c (minibuffer_auto_raise):
6173 * msdos.c (Qhelp_echo):
6174 * macros.c (real_this_command):
6175 * keymap.c (Voverriding_local_map):
6176 * xterm.c (poll_for_input_1, gray_bitmap_width)
6177 (gray_bitmap_height, gray_bitmap_bits;
6178 * xmenu.c ( Voverriding_local_map)
6179 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
6180 (use_file_dialog, Xt_app_con):
6181 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
6182 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
6183 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
6184 (Qtool_bar_lines, ignore_mouse_drag_p):
6185 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
6186 (Qrear_nonsticky, nconc2):
6187 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
6188 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
6189 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
6190 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
6191 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
6192 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
6193 (gc_in_progress):
6194 * doc.c (Voverriding_local_map, Qremap):
6195 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
6196 (Vcompletion_regexp_list):
6197 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
6198 (Qcompletion_ignore_case):
6199 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
6200 (Vhistory_length, Vthis_original_command, real_this_command)
6201 (Qface, Qminibuffer_prompt, history_delete_duplicates):
6202 * image.c (Qrisky_local_variable):
6203 * fontset.c (QCname):
6204 * fns.c (minibuffer_auto_raise, QCname):
6205 * dispnew.c (char_ins_del_cost):
6206 * composite.c (font_fill_lglyph_metrics):
6207 * cmds.c (Qface, Vtranslation_table_for_input):
6208 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
6209 * ccl.c (charset_unicode):
6210 * callproc.c (Vtemporary_file_directory):
6211 * buffer.c (emacs_strerror): Remove extern declarations.
6212
6213 * data.c (Qwindow): Make non-static, used from other files too.
6214 * frame.c (validate_x_resource_name): Remove shadow definition for i.
6215
6216 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
6217 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
6218 * s/usg5-4.h (COFF):
6219 * s/template.h:
6220 * s/msdos.h (COFF, NO_REMAP):
6221 * s/ms-w32.h (NO_REMAP):
6222 * s/hpux10-20.h (NO_REMAP):
6223 * m/sparc.h (SEGMENT_MASK):
6224 * m/m68k.h (NO_REMAP):
6225 * m/intel386.h (SEGMENT_MASK):
6226 * m/arm.h (NO_REMAP):
6227 * m/alpha.h (COFF):
6228 * m/template.h: Remove references to unused defines.
6229
6230 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
6231
6232 * xsettings.c (Ftool_bar_get_system_style): Also check for
6233 Qtext_image_horiz.
6234
6235 * xdisp.c (Qtext_image_horiz): Define.
6236 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
6237 to documentation of tool-bar-style.
6238
6239 * lisp.h (Qtext_image_horiz): Declare.
6240
6241 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
6242 style text_image_horiz.
6243
6244 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
6245
6246 * emacs.c (Fkill_emacs): Remove return statement.
6247
6248 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
6249 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
6250 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
6251 Remove local extern declarations.
6252
6253 * xmenu.c: Do not included lwlib.h, not needed.
6254
6255 * m/iris4d.h (XUINT, XSET): Remove, not needed.
6256
6257 * process.c: Move definitions earlier to minimize #ifdefs.
6258
6259 * xterm.h (x_get_customization_string, x_load_resources)
6260 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
6261 (x_check_errors, x_property_data_to_lisp, defined_color)
6262 (xic_set_xfontset, x_defined_color): Use const.
6263
6264 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
6265 (x_text_icon, x_check_errors, x_connection_closed): Use const.
6266
6267 * xselect.c (selection_data_to_lisp_data)
6268 (x_property_data_to_lisp):
6269 * xrdb.c (x_get_string_resource, file_p)
6270 (x_get_customization_string, magic_file_p, search_magic_path)
6271 (get_system_app, get_user_app, x_load_resources, x_get_resource)
6272 (x_get_string_resource): Use const.
6273
6274 * xfns.c: Include xlwmenu.h when USE_LUCID.
6275 (x_defined_color, xic_set_xfontset): Use const.
6276 (Fx_hide_tip): Remove local extern declaration.
6277
6278 * xfaces.c (Qmouse_face): Remove declaration.
6279 (face_color_gray_p, tty_defined_color, defined_color)
6280 (face_color_gray_p, face_color_supported_p): Add const.
6281
6282 * xdisp.c (do_mouse_tracking): Remove declaration.
6283 (add_to_log): Use const.
6284
6285 * minibuf.c (Qmouse_face): Remove declaration.
6286
6287 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
6288
6289 * keyboard.h (do_mouse_tracking): Add declaration.
6290
6291 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
6292 (QCdata, QCtype, Qcenter): Remove declarations.
6293
6294 * frame.c (x_get_resource_string, x_get_string_resource)
6295 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6296 (x_default_parameter): Use const.
6297
6298 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
6299 (QCheight, QCsize, QCname): Remove declarations.
6300
6301 * emacs.c (main): Remove local extern declaration.
6302
6303 * editfns.c (region_limit, syms_of_editfns): Remove local extern
6304 declarations.
6305
6306 * dispnew.c: Remove duplicate #include <unistd.h>.
6307 (update_window, update_frame_1, init_display): Remove local extern
6308 declarations.
6309
6310 * dispextern.h (add_to_log): Remove declaration.
6311 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
6312 (x_frame_get_and_record_arg, x_default_parameter): Add const.
6313
6314 * dired.c (scmp): Add const.
6315 (directory_files_internal): Remove local extern declaration.
6316
6317 * data.c (Finteractive_form): Use const.
6318
6319 * composite.c (syms_of_composite): Remove local extern declarations.
6320
6321 * charset.c (add_to_log): Remove declaration.
6322
6323 * character.c (strwidth, parse_str_to_multibyte): Add const.
6324
6325 * character.h (strwidth, parse_str_to_multibyte): Likewise.
6326
6327 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
6328
6329 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
6330 (Lisp_Subr): Make doc and intspec constant.
6331 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
6332 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
6333 (QCheight, QCsize, QCname, QCwidth, QCforeground)
6334 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
6335 (display_arg): Add declarations.
6336
6337 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
6338
6339 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
6340
6341 * window.c (Fwindow_height): Doc fix (bug#6518).
6342
6343 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
6344
6345 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
6346
6347 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
6348
6349 * keyboard.c (Ftop_level, Fexit_recursive_edit)
6350 (Fabort_recursive_edit): Remove return statements in NO_RETURN
6351 functions.
6352
6353 * frame.h (Qtty_color_mode): Add declaration.
6354
6355 * lisp.h (Ftop_level, Fexit_recursive_edit)
6356 (Fabort_recursive_edit): Mark as NO_RETURN.
6357
6358 2010-07-26 Kenichi Handa <handa@m17n.org>
6359
6360 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
6361 number of glyphs gets smaller than the original length. (Bug#6621)
6362
6363 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
6364
6365 * lread.c (unreadpure, mapatoms_1): Make static.
6366
6367 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6368
6369 * terminfo.c (tparam): Fix prototype of tparm.
6370
6371 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
6372
6373 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
6374 find start of text segment.
6375 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
6376 is defined.
6377
6378 * callproc.c (set_initial_environment): Avoid unbalanced braces.
6379
6380 2010-07-25 Ken Brown <kbrown@cornell.edu>
6381
6382 * vm-limit.c (check_memory_limits): Fix previous change;
6383 accidentally reverted an earlier change.
6384
6385 2010-07-25 Ken Brown <kbrown@cornell.edu>
6386
6387 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
6388 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
6389
6390 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
6391
6392 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
6393 * dired.c (opendir, readdir): Fix prototypes.
6394 * editfns.c (w32_get_internal_run_time): Fix prototypes.
6395 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
6396 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
6397 (telldir): Remove declaration.
6398 * ralloc.c (real_morecore, __morecore): Fix prototypes.
6399 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
6400 * syssignal.h (strsignal): Fix prototype.
6401 * term.c (tparam): Fix prototype.
6402 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
6403 (term_get_fkeys): Set inside "#ifndef DOS_NT".
6404 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
6405 and __morecore.
6406 * w32gui.h (XParseGeometry): Fix prototype.
6407 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
6408 * w32term.c (my_set_focus): Declare inside #if 0.
6409 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
6410 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
6411 (drain_message_queue, get_next_msg, post_msg, parse_button)
6412 (ClipboardSequence_Proc): Fix prototypes.
6413 (wait_for_sync): Remove declaration.
6414
6415 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
6416
6417 * w32fns.c (w32_to_x_color): Remove, unused.
6418
6419 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6420
6421 * lisp.h: Remove leftover P_.
6422
6423 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
6424
6425 * ecrt0.c, unexalpha.c: Remove files, unused.
6426
6427 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
6428
6429 * cmds.c (internal_self_insert): Make static.
6430 * lisp.h (internal_self_insert): Remove declaration.
6431
6432 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
6433
6434 * alloc.c (free_float):
6435 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
6436 * frame.c (delete_frame_handler):
6437 * ralloc.c (reorder_bloc):
6438 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
6439 Remove unused static functions.
6440
6441 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
6442 it is called only from NS code.
6443
6444 * w32term.c (my_set_focus): #ifdef away; it is called only from
6445 "#ifdef 0" code.
6446
6447 * w32fns.c (x_edge_detection):
6448 * xfaces.c (may_use_scalable_font_p):
6449 Remove obsolete static declarations.
6450
6451 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
6452
6453 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
6454 (emacs_blocked_realloc, uninterrupt_malloc):
6455 * fringe.c (w32_reset_fringes):
6456 * image.c (convert_mono_to_color_image, lookup_rgb_color)
6457 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
6458 * sound.c (be2hs, do_play_sound):
6459 * vm-limit.c (get_lim_data, ret_lim_data):
6460 * w32term.c (x_free_frame_resources):
6461 * xfaces.c (x_create_gc, x_free_gc):
6462 Convert definitions to standard C.
6463
6464 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
6465
6466 * eval.c (Feval, Ffuncall): Use the new names.
6467
6468 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
6469 (DEFUN): Add braces around the union initialisation and use ## to
6470 specify the right union alternative and avoid a cast.
6471
6472 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
6473
6474 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
6475
6476 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
6477
6478 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
6479
6480 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
6481
6482 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
6483 is related to the menu bar (Bug#6499).
6484 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
6485
6486 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6487
6488 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
6489
6490 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
6491
6492 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
6493 i.e. don't put back ButtonRelease (Bug#6608).
6494
6495 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
6496 instead of Window. Call xg_event_is_for_menubar when
6497 USE_GTK (Bug#6499).
6498
6499 * gtkutil.h (xg_event_is_for_menubar): Declare.
6500
6501 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
6502
6503 2010-07-16 Eli Zaretskii <eliz@gnu.org>
6504
6505 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
6506 when it's the same as the old foreground. (Bug#6609)
6507
6508 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
6509
6510 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
6511 widget is non-null (Bug#6645).
6512
6513 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
6514
6515 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
6516 Convert old-style definition.
6517
6518 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
6519 timestamp argument.
6520
6521 2010-07-15 Eli Zaretskii <eliz@gnu.org>
6522
6523 * fringe.c (update_window_fringes): Restore mistakenly reverted
6524 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
6525
6526 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
6527
6528 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
6529 (SET_SAVED_KEY_EVENT): Remove (not used).
6530 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
6531 remove size parameter.
6532 (handle_one_xevent): Check popup_activated () for menu for Xt also.
6533 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
6534 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
6535 ButtonRelease.
6536 (x_set_window_size_1): scroll_bar_actual_width is always
6537 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
6538
6539 * xdisp.c (pending_menu_activation): Remove extern declaration.
6540 (prepare_menu_bars): Remove setting of pending_menu_activation.
6541
6542 * xmenu.c (pending_menu_activation): Remove.
6543 (x_activate_menubar): Set popup_activated_flag for Xt also.
6544 Remove setting of pending_menu_activation.
6545 (set_frame_menubar): Remove check of pending_menu_activation.
6546 Declare menubar_size before code. Correct spelling in comment.
6547
6548 2010-07-14 Kenichi Handa <handa@m17n.org>
6549
6550 * font.c (font_open_entity): Cancel previous change.
6551 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
6552
6553 2010-07-13 Eli Zaretskii <eliz@gnu.org>
6554
6555 Remove subprocesses #ifdefs.
6556 * process.c <inhibit_sentinels>: Move to the common part.
6557 (Fwaiting_for_user_input_p): Move to the common part; return nil
6558 if async subprocesses aren't supported.
6559 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
6560 MS-DOS. Remove "#ifdef subprocesses".
6561 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
6562 (gettimeofday): Remove "#ifdef subprocesses".
6563 (wait_without_blocking): Remove function.
6564 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
6565 Remove "#ifdef subprocesses".
6566 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
6567 compiled on MS-DOS.
6568 * callproc.c (Fcall_process) [!MSDOS]: Don't call
6569 wait_for_termination on MS-DOS.
6570 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
6571 initialization of inhibit_sentinels.
6572 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
6573 subprocesses" conditional.
6574 * callproc.c (Fcall_process) [!subprocesses]: Don't call
6575 wait_for_termination, since `buffer' cannot be an integer when
6576 async subprocesses are not supported
6577 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
6578 for ifdefing away the call to Fprocess_status.
6579
6580 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
6581 away the entire body of the function.
6582
6583 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
6584
6585 Remove subprocesses #ifdefs from term.c.
6586 * process.c (add_keyboard_wait_descriptor)
6587 (delete_keyboard_wait_descriptor): Move to common section, do
6588 nothing when subprocesses is not defined.
6589 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
6590 Remove subprocesses #ifdefs.
6591
6592 Convert maybe_fatal to standard C.
6593 * lisp.h (verror): Declare.
6594 * eval.c (verror): New function containing the code from ...
6595 (error): ... this. Call verror.
6596 * term.c (vfatal): New function containing the code from ...
6597 (fatal): ... this. Call vfatal.
6598 (maybe_fatal): Convert to standard C, use variable number of
6599 arguments. Declare as non-return.
6600 (init_tty): Fix maybe_fatal call.
6601
6602 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6603
6604 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
6605 (_scroll_bar_note_movement): Convert definitions to standard C.
6606 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
6607 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
6608
6609 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6610
6611 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
6612 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
6613 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
6614 (xaw_jump_callback, xaw_scroll_callback)
6615 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
6616 (x_wm_set_size_hint, x_activate_timeout_atimer):
6617 Convert definitions to standard C.
6618 * xmenu.c (menubar_id_to_frame, popup_get_selection)
6619 (popup_activate_callback, popup_deactivate_callback)
6620 (menu_highlight_callback, menubar_selection_callback)
6621 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
6622 (free_frame_menubar, popup_selection_callback, as)
6623 (create_and_show_popup_menu, dialog_selection_callback)
6624 (create_and_show_dialog):
6625 * xfns.c (hack_wm_protocols, x_window):
6626 * xfaces.c (x_update_menu_appearance):
6627 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
6628 (char_to_pixel_size, round_size_to_char, get_wm_shell)
6629 (set_frame_size, update_wm_hints, setup_frame_gcs)
6630 (update_various_frame_slots, update_from_various_frame_slots)
6631 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
6632 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
6633 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
6634
6635 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6636
6637 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
6638
6639 2010-07-12 Eli Zaretskii <eliz@gnu.org>
6640
6641 * process.c (setup_process_coding_systems): Move to the part
6642 shared by non-subprocesses systems, and make its body empty when
6643 subprocesses is not defined.
6644 (close_process_descs): Move to the part shared by non-subprocesses
6645 systems.
6646 (wait_reading_process_output) [!subprocesses]: Convert arg list to
6647 ANSI C.
6648
6649 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6650
6651 * editfns.c (transpose_markers): Convert old-style definition.
6652 * emacs.c (abort, shut_down_emacs, fixup_locale)
6653 (synchronize_system_time_locale)
6654 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
6655 * floatfns.c (extract_float, matherr, init_floatfns)
6656 (syms_of_floatfns): Likewise.
6657 * fns.c (make_hash_table): Likewise.
6658 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
6659 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
6660 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
6661 (ftfont_variation_glyphs): Likewise.
6662 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
6663 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
6664 * lread.c (read_filtered_event): Likewise.
6665 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
6666 * process.c (wait_reading_process_output): Likewise.
6667 * scroll.c (do_line_insertion_deletion_costs): Likewise.
6668 * search.c (search_buffer, boyer_moore): Likewise.
6669 * syntax.c (scan_sexps_forward): Likewise.
6670 * xdisp.c (try_scrolling): Likewise.
6671 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
6672 (face_at_string_position): Likewise.
6673 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
6674 * xselect.c (x_get_window_property, receive_incremental_selection)
6675 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
6676 Likewise.
6677 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
6678
6679 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
6680
6681 * callproc.c (child_setup): Remove subprocesses conditional.
6682 Remove code dealing with SET_EMACS_PRIORITY, unused.
6683
6684 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
6685 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
6686
6687 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
6688 (__do_global_dtors, __main): Use void in definition.
6689 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
6690 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
6691 the only users from ...
6692 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
6693 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
6694 (HAVE_VOLATILE): Remove, unused.
6695
6696 Convert more function definitions to standard C.
6697 * xdisp.c (window_box_edges, handle_single_display_spec)
6698 (display_string): Convert definition to standard C.
6699 * scroll.c (do_direct_scrolling, scrolling_1):
6700 * dispnew.c (allocate_matrices_for_frame_redisplay)
6701 (mirrored_line_dance):
6702 * coding.c (code_convert_string):
6703 * charset.c (map_charset_chars):
6704 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
6705 (Fregister_ccl_program, Fregister_code_conversion_map):
6706 * keyboard.c (kbd_buffer_nr_stored): Likewise.
6707 (head_table): Make static and const.
6708
6709 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
6710
6711 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
6712 (PROFILING_LDFLAGS): Set from substitution.
6713 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
6714 CFLAGS last.
6715
6716 2010-07-12 Kenichi Handa <handa@m17n.org>
6717
6718 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
6719 (shortlisp): Likewise.
6720
6721 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
6722
6723 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
6724 of FONT_ENTITY_INDEX.
6725 (Ffont_get): If KEY is :otf and the font-object doesn't have the
6726 property, get the property value dynamically.
6727 (Ffont_put): Accept font-entity and font-object too.
6728 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
6729 return value changed.
6730 (syms_of_font): Adjust for the above change.
6731
6732 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
6733
6734 * blockinput.h: Remove obsolete comment.
6735
6736 * lisp.h: Include <stddef.h>.
6737 (OFFSETOF): Don't define.
6738 (VECSIZE): Use offsetof instead of OFFSETOF.
6739 (PSEUDOVECSIZE): Likewise.
6740 * process.c (conv_sockaddr_to_lisp): Likewise.
6741 * alloc.c: Don't include <stddef.h>.
6742 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
6743
6744 * process.c: Remove obsolete comment.
6745
6746 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
6747
6748 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
6749
6750 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
6751
6752 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
6753 index, rindex.
6754 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
6755 * editfns.c (Fuser_full_name, Fformat): Likewise.
6756 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
6757 * fileio.c (Ffile_symlink_p): Likewise.
6758 * filelock.c (current_lock_owner): Likewise.
6759 * font.c (font_parse_name, font_parse_family_registry): Likewise.
6760 * fontset.c (fontset_pattern_regexp): Likewise.
6761 * lread.c (read1): Likewise.
6762 * sysdep.c (init_system_name): Likewise.
6763 * xfns.c (select_visual): Likewise.
6764 * s/hpux10-20.h (index, rindex): Don't define.
6765 * s/ms-w32.h (index): Likewise.
6766 * s/usg5-4.h: Likewise.
6767
6768 * callproc.c (relocate_fd): Use F_DUPFD if defined.
6769
6770 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
6771 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
6772 (egetenv): Likewise.
6773 * doprnt.c (doprnt): Likewise.
6774 * editfns.c (set_time_zone_rule, format2): Likewise.
6775 * emacs.c (decode_env_path): Likewise.
6776 * eval.c (signal_error, error): Likewise.
6777 * insdel.c (replace_range_2): Likewise.
6778 * keyboard.c (cmd_error_internal): Likewise.
6779 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
6780 * print.c (write_string, write_string_1, print_error_message):
6781 Likewise.
6782 * vm-limit.c (warn_function, memory_warnings): Likewise.
6783 * xdisp.c (message1, message1_nolog, message_with_string)
6784 (vmessage, message, message_nolog): Likewise.
6785 * emacs.c: Remove duplicate declaration.
6786 * keyboard.h: Likewise.
6787 * lisp.h: Update prototypes.
6788
6789 * eval.c: Fix indentation problem.
6790
6791 * keyboard.c: Include "process.h".
6792
6793 * eval.c: Remove obsolete noinline declaration.
6794 * fns.c: Likewise.
6795
6796 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
6797
6798 * doprnt.c (doprnt): Take a va_list argument instead of count and
6799 pointer.
6800 * eval.c (error): Change to a standard-C variadic function.
6801 * xdisp.c (vmessage): Rename from message, made static, and
6802 changed to take a va_list argument.
6803 (message): New variadic wrapper.
6804 (message_nolog): Now a variadic function, calling vmessage.
6805 * lisp.h: Include stdarg.h for va_list.
6806 (doprnt, error, message, message_nolog): Decls updated.
6807
6808 2010-07-11 Eli Zaretskii <eliz@gnu.org>
6809
6810 * process.c (syms_of_process) <delete-exited-processes>: Define
6811 even if !subprocesses.
6812 (delete_exited_processes): Ditto.
6813
6814 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
6815 (delete_exited_processes): Don't define.
6816
6817 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
6818
6819 * frame.c (make_frame): Initialize menu_bar_lines and
6820 tool_bar_lines members.
6821 (make_initial_frame, make_terminal_frame):
6822 Initialize menu_bar_lines using value of menu-bar-mode.
6823
6824 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
6825
6826 2010-07-10 Eli Zaretskii <eliz@gnu.org>
6827
6828 * process.c: Reshuffle #include's. Condition some of the global
6829 and static variables on `subprocesses'.
6830 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
6831 Leave only one implementation.
6832 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
6833 (kill_buffer_processes, Flist_system_processes)
6834 (Fprocess_attributes, init_process, syms_of_process): Unify the
6835 implementations for with subprocesses and without them.
6836
6837 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
6838
6839 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
6840 correct size for Motif.
6841 (free_frame_menubar): Call x_set_window_size to update frame size.
6842
6843 * xfns.c (x_window): Set borderWidth to 0 for pane and
6844 EmacsFrame. Frame size calculation is wrong otherwise.
6845
6846 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
6847
6848 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
6849 allows to suppress errors when polling in Emacs' main loop.
6850 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
6851 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
6852 (Fdbus_method_error_internal, Fdbus_send_signal)
6853 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
6854 (Fdbus_register_method): Use it. (Bug#6579)
6855
6856 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
6857
6858 * alloc.c: Convert DEFUNs to standard C.
6859 * buffer.c:
6860 * bytecode.c:
6861 * callint.c:
6862 * callproc.c:
6863 * casefiddle.c:
6864 * casetab.c:
6865 * category.c:
6866 * character.c:
6867 * charset.c:
6868 * chartab.c:
6869 * cmds.c:
6870 * coding.c:
6871 * composite.c:
6872 * data.c:
6873 * dbusbind.c:
6874 * dired.c:
6875 * dispnew.c:
6876 * doc.c:
6877 * dosfns.c:
6878 * editfns.c:
6879 * emacs.c:
6880 * eval.c:
6881 * fileio.c:
6882 * filelock.c:
6883 * floatfns.c:
6884 * fns.c:
6885 * font.c:
6886 * fontset.c:
6887 * frame.c:
6888 * fringe.c:
6889 * image.c:
6890 * indent.c:
6891 * insdel.c:
6892 * keyboard.c:
6893 * keymap.c:
6894 * lread.c:
6895 * macros.c:
6896 * marker.c:
6897 * menu.c:
6898 * minibuf.c:
6899 * msdos.c:
6900 * nsfns.m:
6901 * nsmenu.m:
6902 * nsselect.m:
6903 * print.c:
6904 * process.c:
6905 * search.c:
6906 * sound.c:
6907 * syntax.c:
6908 * term.c:
6909 * terminal.c:
6910 * textprop.c:
6911 * undo.c:
6912 * w16select.c:
6913 * w32console.c:
6914 * w32fns.c:
6915 * w32font.c:
6916 * w32menu.c:
6917 * w32proc.c:
6918 * w32select.c:
6919 * window.c:
6920 * xdisp.c:
6921 * xfaces.c:
6922 * xfns.c:
6923 * xmenu.c:
6924 * xselect.c:
6925 * xsettings.c:
6926 * xsmfns.c: Likewise.
6927
6928 2010-07-08 Eli Zaretskii <eliz@gnu.org>
6929
6930 * process.c (kbd_is_on_hold, hold_keyboard_input)
6931 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
6932
6933 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
6934
6935 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
6936 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
6937 unless USE_LUCID.
6938
6939 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
6940
6941 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
6942 declaration.
6943
6944 Clean up include guards.
6945 * tparam.c: Remove include guards for config.h, string.h and code
6946 that assumes #ifndef emacs.
6947 * termcap.c:
6948 * unexalpha.c:
6949 * sysdep.c:
6950 * filemode.c:
6951 * filelock.c:
6952 * bidi.c: Likewise.
6953
6954 Remove prefix-args.c
6955 * prefix-args.c: Remove file.
6956 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
6957 * Makefile.in (temacs${EXEEXT}): Remove references to
6958 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
6959 (mostlyclean): Remove reference to prefix-args.
6960 (prefix-args): Remove.
6961
6962 Simplify cstart_of_data, start_of_code and related code.
6963 * mem-limits.h: Remove !emacs and _LIBC conditional code.
6964 (start_of_data): Merge into start_of_data function.
6965 * sysdep.c (start_of_text): Remove. Move simplified versions of
6966 it in the only users: unexaix.c and unexec.c.
6967 (read_input_waiting): Remove local declaration of quit_char.
6968 (start, etext): Remove declarations.
6969 (start_of_data): Merge with the version in mem-limits.h and move
6970 to vm-limits.c.
6971 * vm-limit.c (start_of_data): Merged and simplified version of the
6972 code formerly in mem-limits.h and sysdep.c.
6973 * unexec.c (start): New declaration, moved from sysdep.c.
6974 (start_of_text): Simplified version of the code formerly in sysdep.c.
6975 * unexaix.c (start_of_text): Simplified version of the code
6976 formerly in sysdep.c.
6977 * m/alpha.h (HAVE_TEXT_START): Remove.
6978 (TEXT_START): Move ...
6979 * unexalpha.c (TEXT_START): ... here.
6980 * s/hpux10-20.h (TEXT_START): Remove.
6981 * s/darwin.h (TEXT_START):
6982 * m/mips.h (TEXT_START):
6983 * m/macppc.h (HAVE_TEXT_START):
6984 * m/m68k.h (TEXT_START):
6985 * m/iris4d.h (TEXT_START):
6986 * m/intel386.h (TEXT_START):
6987 * m/ibmrs6000.h (TEXT_START):
6988 * m/ia64.h (HAVE_TEXT_START):
6989 * s/msdos.h (TEXT_START): Likewise.
6990
6991 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
6992
6993 * alloc.c (overrun_check_malloc, overrun_check_realloc)
6994 (overrun_check_free, xstrdup, allocate_string)
6995 (allocate_string_data, compact_small_strings, Fmake_string)
6996 (make_unibyte_string, make_multibyte_string)
6997 (make_string_from_bytes, make_specified_string, make_float)
6998 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
6999 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
7000 memcpy, memmove, memset, memcmp.
7001 * atimer.c (start_atimer, set_alarm): Likewise.
7002 * buffer.c (clone_per_buffer_values, report_overlay_modification)
7003 (mmap_realloc, init_buffer_once): Likewise.
7004 * callint.c (Fcall_interactively): Likewise.
7005 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
7006 (getenv_internal_1): Likewise.
7007 * casefiddle.c (casify_object): Likewise.
7008 * ccl.c (ccl_driver): Likewise.
7009 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
7010 * charset.c (load_charset_map_from_file)
7011 (load_charset_map_from_file, load_charset_map_from_vector)
7012 (Fdefine_charset_internal): Likewise.
7013 * cm.c (Wcm_clear): Likewise.
7014 * coding.c (decode_eol, decode_coding_object)
7015 (Fset_coding_system_priority, make_subsidiaries): Likewise.
7016 * data.c (Faset): Likewise.
7017 * dired.c (directory_files_internal, file_name_completion_stat):
7018 Likewise.
7019 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
7020 (clear_glyph_row, copy_row_except_pointers)
7021 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
7022 (save_current_matrix, restore_current_matrix)
7023 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
7024 (mirror_line_dance, scrolling_window): Likewise.
7025 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
7026 Likewise.
7027 * doprnt.c (doprnt): Likewise.
7028 * editfns.c (Fuser_full_name, make_buffer_string_both)
7029 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
7030 * emacs.c (sort_args): Likewise.
7031 * eval.c (Fapply, Ffuncall): Likewise.
7032 * fileio.c (Ffile_name_directory, make_temp_name)
7033 (Fexpand_file_name, search_embedded_absfilename)
7034 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
7035 (auto_save_error): Likewise.
7036 * fns.c (Fstring_equal, Fcopy_sequence, concat)
7037 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
7038 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
7039 (Fmake_hash_table): Likewise.
7040 * fringe.c (Fdefine_fringe_bitmap): Likewise.
7041 * ftfont.c (ftfont_text_extents): Likewise.
7042 * getloadavg.c (getloadavg): Likewise.
7043 * image.c (define_image_type, make_image, make_image_cache)
7044 (x_create_x_image_and_pixmap, xbm_image_p)
7045 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
7046 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
7047 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
7048 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
7049 (tiff_image_p, tiff_read_from_memory, gif_image_p)
7050 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
7051 Likewise.
7052 * indent.c (scan_for_column, compute_motion): Likewise.
7053 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
7054 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
7055 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
7056 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
7057 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
7058 (store_user_signal_events, menu_bar_items, tool_bar_items)
7059 (process_tool_bar_item, append_tool_bar_item)
7060 (read_char_minibuf_menu_prompt, read_key_sequence)
7061 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
7062 Likewise.
7063 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
7064 Likewise.
7065 * lisp.h (STRING_COPYIN): Likewise.
7066 * lread.c (Fload, read1, oblookup): Likewise.
7067 * msdos.c (Frecent_doskeys): Likewise.
7068 * nsfns.m (Fx_create_frame): Likewise.
7069 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
7070 Likewise.
7071 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
7072 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
7073 Likewise.
7074 * nsmenu.m (ns_update_menubar): Likewise.
7075 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
7076 * print.c (print_unwind, printchar, strout, print_string)
7077 (print_error_message): Likewise.
7078 * process.c (conv_lisp_to_sockaddr, set_socket_option)
7079 (Fmake_network_process, Fnetwork_interface_list)
7080 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
7081 (init_process): Likewise.
7082 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
7083 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
7084 Likewise.
7085 * scroll.c (do_scrolling, do_direct_scrolling)
7086 (scrolling_max_lines_saved): Likewise.
7087 * search.c (search_buffer, wordify, Freplace_match): Likewise.
7088 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
7089 * syntax.c (skip_chars, skip_syntaxes): Likewise.
7090 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
7091 (emacs_set_tty): Likewise.
7092 * term.c (encode_terminal_code, calculate_costs)
7093 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
7094 Likewise.
7095 * termcap.c (tgetst1, gobble_line): Likewise.
7096 * termhooks.h (EVENT_INIT): Likewise.
7097 * tparam.c (tparam1): Likewise.
7098 * unexalpha.c (unexec): Likewise.
7099 * unexec.c (write_segment): Likewise.
7100 * unexmacosx.c (unexec_write_zero): Likewise.
7101 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
7102 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
7103 * w32font.c (w32font_list_family, w32font_text_extents)
7104 (w32font_list_internal, w32font_match_internal)
7105 (w32font_open_internal, compute_metrics, Fx_select_font):
7106 Likewise.
7107 * w32menu.c (set_frame_menubar, add_menu_item)
7108 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
7109 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
7110 * w32uniscribe.c (uniscribe_list_family): Likewise.
7111 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
7112 * window.c (make_window, replace_window, set_window_buffer)
7113 (Fsplit_window): Likewise.
7114 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
7115 (add_to_log, message3, x_consider_frame_title)
7116 (append_space_for_newline, extend_face_to_end_of_line)
7117 (decode_mode_spec_coding, init_glyph_string): Likewise.
7118 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
7119 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
7120 (face_attr_equal_p, make_realized_face, make_face_cache)
7121 (free_realized_faces, lookup_named_face, smaller_face)
7122 (face_with_height, lookup_derived_face)
7123 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
7124 (Finternal_set_font_selection_order, realize_default_face)
7125 (compute_char_face, face_at_buffer_position)
7126 (face_for_overlay_string, face_at_string_position, merge_faces):
7127 Likewise.
7128 * xfns.c (xic_create_fontsetname, Fx_create_frame)
7129 (Fx_window_property, x_create_tip_frame)
7130 (Fx_backspace_delete_keys_p): Likewise.
7131 * xfont.c (xfont_list, xfont_match, xfont_list_family)
7132 (xfont_text_extents): Likewise.
7133 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
7134 * xrdb.c (magic_file_p, x_get_resource): Likewise.
7135 * xselect.c (x_queue_event, x_get_window_property)
7136 (receive_incremental_selection): Likewise.
7137 * xsmfns.c (x_session_check_input): Likewise.
7138 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
7139 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
7140 Likewise.
7141 * character.h (BCOPY_SHORT): Removed.
7142 * config.in: Regenerate.
7143 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
7144 * emacs.c (main) [PROFILING]: Don't declare
7145 dump_opcode_frequencies.
7146 * lisp.h (safe_bcopy): Remove declaration.
7147 (memset) [!HAVE_MEMSET]: Declare.
7148 (memcpy) [!HAVE_MEMCPY]: Likewise.
7149 (memmove) [!HAVE_MEMMOVE]: Likewise.
7150 (memcmp) [!HAVE_MEMCMP]: Likewise.
7151 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
7152 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
7153 Don't define.
7154 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
7155 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
7156 (BCOPY_DOWNWARD_SAFE): Don't define.
7157 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
7158 (memcpy) [!HAVE_MEMCPY]: Define.
7159 (memmove) [!HAVE_MEMMOVE]: Define.
7160 (memcmp) [!HAVE_MEMCMP]: Define.
7161
7162 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
7163
7164 * process.c (kbd_is_on_hold): New variable.
7165 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
7166 New functions.
7167 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
7168 select on empty input mask.
7169 (init_process): Initialize kbd_is_on_hold to 0.
7170
7171 * process.h (hold_keyboard_input, unhold_keyboard_input)
7172 (kbd_on_hold_p): Declare.
7173
7174 * keyboard.c (input_available_signal): Declare.
7175 (kbd_buffer_nr_stored): New function.
7176 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
7177 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
7178 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
7179 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
7180 (tty_read_avail_input): If input is on hold, return.
7181 Don't read more that free slots in kbd_buffer (Bug#6571).
7182
7183 2010-07-07 Eli Zaretskii <eliz@gnu.org>
7184
7185 * msdos.h:
7186 * msdos.c:
7187 * dosfns.c:
7188 * w16select.c: Convert function definitions to ANSI C.
7189
7190 * msdos.h (ctrl_break_func, install_ctrl_break_check):
7191 Remove unused prototypes.
7192
7193 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7194
7195 * coding.c, sysdep.c: Convert some more functions to standard C.
7196
7197 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
7198
7199 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
7200 (encode_coding_object): Use SPECPDL_INDEX.
7201 (syms_of_coding): Use DOS_NT.
7202
7203 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
7204
7205 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
7206
7207 Make the function member of Lisp_Subr use standard C prototypes.
7208 * lisp.h (struct Lisp_Subr): Use a union for the function member.
7209 (DECL_ALIGN): Add a cast for the function.
7210 * eval.c (Feval, Ffuncall): Use the proper type for each type
7211 function call.
7212
7213 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
7214
7215 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
7216 fringe face id, so face-remapping-alist works (Bug#6091).
7217
7218 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
7219
7220 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
7221 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
7222 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
7223
7224 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
7225
7226 * xterm.c (x_get_keysym_name): Change type of parameter to int.
7227 * lisp.h: Declare x_get_keysym_name.
7228 * keyboard.c (modify_event_symbol): Don't declare
7229 x_get_keysym_name here.
7230
7231 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
7232
7233 * ecrt0.c: Revert conversion to standard C.
7234
7235 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7236
7237 * vm-limit.c (memory_warnings):
7238 * keyboard.c (modify_event_symbol):
7239 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
7240 (round2, emacs_rint):
7241 * process.c (send_process, old_sigpipe): Convert function
7242 definitions and declarations to standard C.
7243
7244 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
7245
7246 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
7247 * xdisp.c: Convert function definitions to standard C.
7248
7249 * cm.c (cmputc): Arg C is now int, not char.
7250 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
7251
7252 2010-07-05 James Cloos <cloos@jhcloos.com>
7253
7254 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
7255
7256 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
7257 _NET_WM_ICON_NAME atoms.
7258
7259 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
7260 and _NET_WM_ICON_NAME properties, too, matching what is
7261 done in the Gtk+ case.
7262
7263 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
7264
7265 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
7266
7267 * xsmfns.c (SSDATA): New macro.
7268 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
7269 passed to strlen/strcpy/strcat.
7270 (create_client_leader_window): Surround with #ifndef USE_GTK.
7271 Cast 7:th arg to XChangeProperty to (unsigned char *).
7272
7273 * xsettings.c (something_changedCB, parse_settings)
7274 (apply_xft_settings): Reformat prototype.
7275 (something_changedCB, init_gconf): Remove unused variable i.
7276 (read_settings): Remove unused variable long_len.
7277
7278 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
7279 (xg_get_image_for_pixmap, create_dialog)
7280 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
7281 (menuitem_highlight_callback, make_menu_item)
7282 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
7283 (xg_create_scroll_bar, xg_update_scrollbar_pos)
7284 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
7285 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
7286 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
7287 (xg_tool_bar_item_expose_callback): Reformat prototype.
7288 (xg_update_menubar): GList *group => GSList *group.
7289 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
7290 before use.
7291 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
7292 to GTK_IMAGE (wimage).
7293
7294 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
7295
7296 * atimer.c: Use "" instead of <> for local includes for
7297 consistency with the rest of the code.
7298
7299 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
7300 * xrdb.c (get_system_name):
7301 * window.c (shrink_windows):
7302 * syntax.c (forw_comment):
7303 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7304 (ins_del_costs):
7305 * mem-limits.h (start_of_data):
7306 * lread.c (readevalloop):
7307 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
7308 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
7309 * frame.c (x_get_focus_frame):
7310 * floatfns.c (fmod_float):
7311 * fileio.c (choose_write_coding_system):
7312 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
7313 (malloc_initialize_hook, sort_args, synchronize_locale):
7314 * doprnt.c (doprnt):
7315 * dired.c (compile_pattern):
7316 * data.c (fmod_float):
7317 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
7318 (map_char_table_for_charset):
7319 * charset.c (define_charset_internal):
7320 * alloc.c (Fgarbage_collect): Convert declarations or definitions
7321 to standard C.
7322
7323 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
7324 Stefan Monnier <monnier@iro.umontreal.ca>
7325
7326 * lread.c (read1): Fix up last change to not mess up `c'.
7327
7328 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7329
7330 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
7331
7332 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7333
7334 Fix prototypes.
7335
7336 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
7337 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
7338 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
7339 arg, as required by internal_condition_case_1.
7340 * print.c (strout): Use const char* for arg PTR.
7341 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
7342 (analyse_first): Fix "const const".
7343 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
7344 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
7345 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
7346
7347 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
7348
7349 * alloc.c: Convert function definitions to standard C.
7350 * atimer.c:
7351 * bidi.c:
7352 * bytecode.c:
7353 * callint.c:
7354 * callproc.c:
7355 * casefiddle.c:
7356 * casetab.c:
7357 * category.c:
7358 * ccl.c:
7359 * character.c:
7360 * charset.c:
7361 * chartab.c:
7362 * cmds.c:
7363 * coding.c:
7364 * composite.c:
7365 * data.c:
7366 * dbusbind.c:
7367 * dired.c:
7368 * dispnew.c:
7369 * doc.c:
7370 * doprnt.c:
7371 * ecrt0.c:
7372 * editfns.c:
7373 * fileio.c:
7374 * filelock.c:
7375 * filemode.c:
7376 * fns.c:
7377 * font.c:
7378 * fontset.c:
7379 * frame.c:
7380 * fringe.c:
7381 * ftfont.c:
7382 * ftxfont.c:
7383 * gtkutil.c:
7384 * indent.c:
7385 * insdel.c:
7386 * intervals.c:
7387 * keymap.c:
7388 * lread.c:
7389 * macros.c:
7390 * marker.c:
7391 * md5.c:
7392 * menu.c:
7393 * minibuf.c:
7394 * prefix-args.c:
7395 * print.c:
7396 * ralloc.c:
7397 * regex.c:
7398 * region-cache.c:
7399 * scroll.c:
7400 * search.c:
7401 * sound.c:
7402 * strftime.c:
7403 * syntax.c:
7404 * sysdep.c:
7405 * termcap.c:
7406 * terminal.c:
7407 * terminfo.c:
7408 * textprop.c:
7409 * tparam.c:
7410 * undo.c:
7411 * unexelf.c:
7412 * window.c:
7413 * xfaces.c:
7414 * xfns.c:
7415 * xfont.c:
7416 * xftfont.c:
7417 * xgselect.c:
7418 * xmenu.c:
7419 * xrdb.c:
7420 * xselect.c:
7421 * xsettings.c:
7422 * xsmfns.c:
7423 * xterm.c: Likewise.
7424
7425 2010-07-03 Eli Zaretskii <eliz@gnu.org>
7426
7427 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
7428 frames other than the initial one. Fix reversal of colors when
7429 `reverse' is specified in the frame parameters.
7430 Call update_face_from_frame_parameter instead of
7431 internal-set-lisp-face-attribute. Initialize screen colors from
7432 initial_screen_colors[] when f->default_face_done_p is zero,
7433 instead of depending on being called with default-frame-alist as
7434 the alist argument.
7435
7436 * xfaces.c (update_face_from_frame_parameter): Move out of
7437 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
7438 with HAVE_WINDOW_SYSTEM.
7439
7440 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
7441 to menu-bar-mode, if not set in the frame parameters or in
7442 default-frame-alist.
7443
7444 * w32console.c (sys_tputs): Adjust argument list to prototype in
7445 term.c.
7446
7447 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
7448
7449 * lisp.h (memory_warnings): Fix prototype.
7450
7451 * cm.h (evalcost): Fix prototype.
7452
7453 * cm.c (evalcost): Fix arg type.
7454
7455 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7456
7457 * term.c (term_clear_mouse_face, Fidentity):
7458 * syssignal.h (signal_handler_t):
7459 * lisp.h (memory_warnings):
7460 * coding.h (preferred_coding_system):
7461 * cm.h (evalcost):
7462 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
7463
7464 2010-07-02 Eli Zaretskii <eliz@gnu.org>
7465
7466 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
7467 from prototypes.
7468
7469 * msdos.h (load_pixmap): Don't define away.
7470
7471 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
7472
7473 * lisp.h:
7474 * atimer.h: Remove define for P_.
7475
7476 * alloc.c: Remove __P and P_ from .c and .m files.
7477 * atimer.c:
7478 * buffer.c:
7479 * callint.c:
7480 * category.c:
7481 * charset.c:
7482 * chartab.c:
7483 * cm.c:
7484 * coding.c:
7485 * composite.c:
7486 * data.c:
7487 * dired.c:
7488 * dispnew.c:
7489 * doc.c:
7490 * editfns.c:
7491 * emacs.c:
7492 * eval.c:
7493 * fileio.c:
7494 * filelock.c:
7495 * fns.c:
7496 * font.c:
7497 * fontset.c:
7498 * frame.c:
7499 * ftfont.c:
7500 * ftxfont.c:
7501 * gmalloc.c:
7502 * gtkutil.c:
7503 * image.c:
7504 * indent.c:
7505 * intervals.c:
7506 * keyboard.c:
7507 * keymap.c:
7508 * lread.c:
7509 * marker.c:
7510 * menu.c:
7511 * minibuf.c:
7512 * print.c:
7513 * process.c:
7514 * scroll.c:
7515 * search.c:
7516 * sound.c:
7517 * strftime.c:
7518 * syntax.c:
7519 * sysdep.c:
7520 * term.c:
7521 * terminal.c:
7522 * textprop.c:
7523 * unexalpha.c:
7524 * w32console.c:
7525 * w32fns.c:
7526 * w32font.c:
7527 * w32menu.c:
7528 * w32term.c:
7529 * w32uniscribe.c:
7530 * window.c:
7531 * xdisp.c:
7532 * xfaces.c:
7533 * xfns.c:
7534 * xfont.c:
7535 * xftfont.c:
7536 * xmenu.c:
7537 * xselect.c:
7538 * xterm.c: Likewise.
7539
7540 Remove P_ and __P macros.
7541 * atimer.h: Remove P_ and __P macros.
7542 * buffer.h:
7543 * category.h:
7544 * ccl.h:
7545 * character.h:
7546 * charset.h:
7547 * cm.h:
7548 * coding.h:
7549 * composite.h:
7550 * dispextern.h:
7551 * disptab.h:
7552 * dosfns.h:
7553 * font.h:
7554 * fontset.h:
7555 * frame.h:
7556 * gtkutil.h:
7557 * indent.h:
7558 * intervals.h:
7559 * keyboard.h:
7560 * keymap.h:
7561 * lisp.h:
7562 * macros.h:
7563 * md5.h:
7564 * menu.h:
7565 * msdos.h:
7566 * nsterm.h:
7567 * puresize.h:
7568 * region-cache.h:
7569 * syntax.h:
7570 * syssignal.h:
7571 * systime.h:
7572 * termhooks.h:
7573 * w32font.h:
7574 * w32term.h:
7575 * widget.h:
7576 * window.h:
7577 * xgselect.h:
7578 * xsettings.h:
7579 * xterm.h: Likewise.
7580
7581 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
7582
7583 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
7584
7585 Cleanup old code.
7586 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
7587 * syssignal.h: Remove code for Lynx, not supported anymore.
7588 * vm-limit.c: Remove unused code the depends on emacs not being
7589 defined and NO_LIM_DATA being defined.
7590 * mem-limits.h: Remove dead code.
7591
7592 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
7593
7594 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
7595
7596 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
7597 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
7598
7599 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
7600 parameters, they are already absolute.
7601
7602 * nsterm.m (x_set_window_size, initFrameFromEmacs):
7603 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
7604
7605 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
7606
7607 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
7608 Update FRAME_TOOLBAR_HEIGHT.
7609
7610 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
7611 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
7612
7613 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
7614
7615 * frame.c (get_future_frame_param, Fmake_terminal_frame):
7616 Don't check default-frame-alist.
7617
7618 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
7619
7620 * process.c (create_process): Avoid using invalid file descriptors.
7621
7622 * callproc.c (child_setup): Avoid closing a file descriptor twice.
7623
7624 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
7625
7626 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
7627 Improve documentation. Return font regardless of use_system_font.
7628 (syms_of_xsettings): Improve documentation for font-use-system-font.
7629
7630 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
7631
7632 * xfaces.c (realize_face): Garbage the frame if a face is removed
7633 (Bug#6593).
7634
7635 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
7636
7637 * keyboard.c: Remove duplicate <setjmp.h>.
7638 (read_key_sequence): Remove volatile qualifiers.
7639
7640 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7641
7642 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
7643 (struct glyph_row): New members left_fringe_offset and
7644 right_fringe_offset.
7645
7646 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
7647 specially.
7648 * w32term.c (w32_draw_fringe_bitmap): Likewise.
7649 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
7650
7651 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
7652 Take account of bitmap offset.
7653 (draw_window_fringes): Take account of window vscroll.
7654 (update_window_fringes): Likewise. Extend top-aligned top indicator
7655 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
7656 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
7657 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
7658
7659 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
7660
7661 * w32fns.c (Qtooltip): Declare.
7662 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
7663
7664 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
7665
7666 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
7667 grab on just Press (Bug#6499).
7668
7669 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
7670
7671 * frame.c (Qtooltip): New var.
7672 (delete_frame): Use it. Fix faulty if statement. Don't update
7673 mode line for tooltip frames. Suggested by Martin Rudalics.
7674
7675 * xfns.c (x_create_tip_frame):
7676 * w32fns.c (x_create_tip_frame): Use it.
7677
7678 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
7679
7680 * xftfont.c (xftfont_open): Check font width one by one also when
7681 spacing is dual.
7682
7683 * ftfont.c (ftfont_open): Ditto.
7684
7685 2010-06-30 Glenn Morris <rgm@gnu.org>
7686
7687 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
7688
7689 * Makefile.in (CANNOT_DUMP): Update for configure name change.
7690
7691 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
7692 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
7693 * s/darwin.h (SYSTEM_MALLOC):
7694 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
7695
7696 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
7697
7698 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
7699 (ns_get_screen): Don't assign integer to f.
7700 (Fx_display_color_cells): Declarations before statements.
7701
7702 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
7703
7704 * xfns.c (x_default_font_parameter): Remove got_from_system
7705 (Bug#6526).
7706
7707 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
7708 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
7709 New defines based on what configure finds.
7710
7711 * xterm.c (XTflash): Use gtk_widget_get_window.
7712 (xg_scroll_callback): Use gtk_adjustment_get_upper and
7713 gtk_adjustment_get_page_size.
7714 (handle_one_xevent): Use gtk_widget_get_mapped.
7715 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
7716 messages.
7717
7718 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
7719
7720 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
7721 HAVE_GTK_FILE_SELECTION_NEW.
7722
7723 * gtkutil.c (xg_display_open, xg_display_close):
7724 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
7725 (xg_display_open): Return type is void.
7726 (gtk_widget_set_has_window)
7727 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
7728 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
7729 (gtk_adjustment_set_page_increment)
7730 (gtk_adjustment_get_step_increment): #define these if not found
7731 by configure.
7732 (remove_submenu): New define based on Gtk+ version.
7733 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
7734 Use gtk_widget_get_window.
7735 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
7736 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
7737 (create_dialog): Use gtk_dialog_get_action_area and
7738 gtk_dialog_get_content_area.
7739 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
7740 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
7741 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
7742 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
7743 Use g_object_ref and g_object_unref.
7744 (xg_update_menu_item, xg_tool_bar_menu_proxy):
7745 Use gtk_widget_get_sensitive.
7746 (xg_update_submenu): Use remove_submenu.
7747 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
7748 properties instead to get old x and y position.
7749 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
7750 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
7751 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
7752 (xg_get_tool_bar_widgets): New function.
7753 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
7754 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
7755 (toolbar_set_orientation): New #define based on if configure
7756 finds gtk_orientable_set_orientation.
7757 (xg_create_tool_bar): Call toolbar_set_orientation.
7758 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
7759 instead of gtk_box_pack_start_defaults.
7760
7761 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
7762
7763 * cmds.c (Fdelete_backward_char): Move into Lisp.
7764
7765 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
7766
7767 * s/freebsd.h (BSD4_2): Remove redundant definition.
7768 bsd-common.h defines it already.
7769
7770 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
7771
7772 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
7773 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
7774 tool-bar-mode, which are now set using these X resources at
7775 startup, to determine the defaults (Bug#2249).
7776
7777 * w32fns.c (Fx_create_frame):
7778 * nsfns.m (Fx_create_frame): Likewise.
7779
7780 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
7781
7782 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
7783
7784 * gtkutil.c (xg_update_scrollbar_pos):
7785 Avoid C99 mid-block variable declaration.
7786
7787 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
7788
7789 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
7790
7791 * gtkutil.h (xg_show_scroll_bar): Remove.
7792
7793 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
7794 if height is less than scroll bar min size.
7795 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
7796
7797 * xfns.c (x_default_font_parameter): Try to open font from system
7798 before using it (bug#6478). Rename got_from_gconf to got_from_system.
7799
7800 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
7801
7802 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
7803
7804 2010-06-20 Eli Zaretskii <eliz@gnu.org>
7805
7806 * xdisp.c (try_scrolling): When scroll-conservatively is set to
7807 most-positive-fixnum, be extra accurate when scrolling window
7808 start, to avoid missing the cursor line.
7809
7810 2010-06-19 Eli Zaretskii <eliz@gnu.org>
7811
7812 * xdisp.c (try_scrolling): Compute the limit for searching point
7813 in forward scroll from scroll_max, instead of an arbitrary limit
7814 of 10 screen lines.
7815 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
7816 and
7817 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
7818 for details.
7819
7820 2010-06-16 Glenn Morris <rgm@gnu.org>
7821
7822 * editfns.c (Fbyte_to_string): Pacify compiler.
7823
7824 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
7825
7826 * lread.c (read1): Phase out old-style backquotes a bit more.
7827
7828 2010-06-12 Eli Zaretskii <eliz@gnu.org>
7829
7830 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
7831 bidimirror.h.
7832
7833 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
7834
7835 * bidi.c (bidi_initialize): Remove explicit initialization of
7836 bidi_type_table; include biditype.h instead. Don't support
7837 entries whose second codepoint is zero. Initialize bidi_mirror_table.
7838 (bidi_mirror_char): Use bidi_mirror_table.
7839
7840 * biditype.h: New file.
7841
7842 * bidimirror.h: New file.
7843
7844 * window.c (syms_of_window): Doc fix (bug#6409).
7845
7846 2010-06-12 Romain Francoise <romain@orebokech.com>
7847
7848 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
7849 ediff-hook.
7850
7851 2010-06-10 Glenn Morris <rgm@gnu.org>
7852
7853 * editfns.c (Fbyte_to_string): Pacify compiler.
7854
7855 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
7856
7857 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
7858
7859 * alloc.c (Fmake_byte_code): Don't access undefined argument
7860 (Bug#6517).
7861
7862 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
7863
7864 * xdisp.c (next_element_from_image): Ensure that after-strings are
7865 read the next time we hit handle_stop (Bug#1336).
7866
7867 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
7868
7869 * lread.c (read1): Signal error if #s is not followed by paren.
7870
7871 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
7872
7873 * image.c (free_image): Mark frame as garbaged (Bug#6426).
7874
7875 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
7876
7877 2010-06-15 Glenn Morris <rgm@gnu.org>
7878
7879 * editfns.c (Fbyte_to_string): Pacify compiler.
7880
7881 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
7882
7883 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
7884 Check `object's type before accessing its guts.
7885
7886 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
7887
7888 * s/usg5-4.h: Fix previous change.
7889 Suggested by Lawrence Mitchell <wence@gmx.li>
7890
7891 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
7892
7893 * minibuf.c (Fall_completions): Add more checks.
7894
7895 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
7896
7897 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
7898
7899 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
7900
7901 * lread.c (X_OK): Remove, unused.
7902
7903 * dispnew.c: Remove obsolete comment.
7904
7905 Remove INCLUDED_FCNTL.
7906 * xterm.c (INCLUDED_FCNTL):
7907 * callproc.c (INCLUDED_FCNTL):
7908 * alloc.c (INCLUDED_FCNTL):
7909 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
7910 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
7911
7912 2010-06-07 Martin Rudalics <rudalics@gmx.at>
7913
7914 * window.c (Fselect_window): Move `record_buffer' up to the
7915 beginning of this function, so the buffer gets recorded
7916 even if the selected window does not change.
7917 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
7918
7919 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
7920
7921 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
7922 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
7923
7924 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
7925
7926 Remove BSTRING related code, all platforms define it.
7927 * s/usg5-4.h (BSTRING): Remove definition.
7928 * s/template.h (BSTRING):
7929 * s/msdos.h (BSTRING):
7930 * s/ms-w32.h (BSTRING):
7931 * s/hpux10-20.h (BSTRING):
7932 * s/gnu-linux.h (BSTRING):
7933 * s/darwin.h (BSTRING):
7934 * s/cygwin.h (BSTRING):
7935 * s/bsd-common.h (BSTRING):
7936 * s/aix4-2.h (BSTRING): Likewise.
7937 * sysdep.c: Remove code depending on BSTRING not being defined.
7938
7939 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
7940
7941 Remove obsolete macro BASE_LEADING_CODE_P.
7942 * character.h (BASE_LEADING_CODE_P): Remove.
7943 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
7944 * buffer.c (Fset_buffer_multibyte):
7945 * indent.c (scan_for_column, compute_motion):
7946 * insdel.c (count_combining_before, count_combining_after):
7947 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
7948
7949 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
7950
7951 Turn `directory-sep-char' into a noop.
7952
7953 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
7954 (DIRECTORY_SEP): Define unconditionally.
7955
7956 * s/ms-w32.h (DIRECTORY_SEP): Remove.
7957
7958 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
7959 call dostounix_filename directly.
7960
7961 * fileio.c (CORRECT_DIR_SEPS): Remove.
7962 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
7963 (Fsubstitute_in_file_name): Use dostounix_filename instead.
7964 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
7965 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
7966
7967 * w32proc.c (CORRECT_DIR_SEPS): Remove.
7968 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
7969
7970 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
7971
7972 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
7973 (Bug#6346)
7974
7975 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
7976
7977 * ccl.c (Fccl_program_p): Fix typo in docstring.
7978
7979 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
7980
7981 Move UNEXEC definition to autoconf.
7982 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
7983 * s/sol2-10.h (UNEXEC):
7984 * s/irix6-5.h (UNEXEC):
7985 * s/hpux10-20.h (UNEXEC):
7986 * s/gnu-linux.h (UNEXEC):
7987 * s/darwin.h (UNEXEC):
7988 * s/cygwin.h (UNEXEC):
7989 * s/bsd-common.h (UNEXEC):
7990 * s/aix4-2.h (UNEXEC):
7991 * m/alpha.h (UNEXEC): Likewise.
7992 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
7993
7994 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
7995
7996 Remove obsolete pre-unicode2 macros.
7997 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
7998 * composite.c (composition_reseat_it):
7999 * data.c (Faset):
8000 * fns.c (Ffillarray):
8001 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
8002 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
8003
8004 2010-06-03 Juri Linkov <juri@jurta.org>
8005
8006 * buffer.c (Fother_buffer): Add CHECK_FRAME.
8007 (Fswitch_to_buffer): Remove unused variable `err'.
8008
8009 2010-06-03 Glenn Morris <rgm@gnu.org>
8010
8011 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
8012
8013 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
8014 now that AH_BOTTOM does it.
8015
8016 * m/hp800.h (HAVE_ALLOCA):
8017 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
8018
8019 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
8020 Remove NOT_C_CODE tests, it is always true now.
8021
8022 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
8023
8024 Fix config.h includes.
8025 * xsettings.c:
8026 * xgselect.c:
8027 * nsterm.m:
8028 * nsselect.m:
8029 * nsimage.m:
8030 * nsfont.m:
8031 * nsfns.m:
8032 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
8033 other files do.
8034
8035 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
8036
8037 * s/sol2-6.h: Remove obsolete comments.
8038
8039 Remove unnecessary alloca.h includes.
8040 * keymap.c: Do not include alloca.h, config.h does that.
8041 * sysdep.c: Likewise. Do not define fwrite, not used.
8042
8043 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
8044
8045 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
8046 the HAVE_TERMIO where it belongs (bug#6149).
8047
8048 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
8049
8050 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
8051 of bug#6305).
8052
8053 2010-05-30 Eli Zaretskii <eliz@gnu.org>
8054
8055 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
8056 state is always cached (bug#6306).
8057
8058 2010-05-29 Eli Zaretskii <eliz@gnu.org>
8059
8060 Fix cursor motion in bidi-reordered continued lines.
8061 * xdisp.c (try_cursor_movement): Backup to non-continuation line
8062 only after finding point's row. Fix the logic. Rewrite the loop
8063 over continuation lines in bidi-reordered buffers.
8064 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
8065 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
8066
8067 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
8068
8069 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
8070
8071 2010-05-28 Kenichi Handa <handa@m17n.org>
8072
8073 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
8074 Don't sheck SPEC if it is nil.
8075 (font_list_entities): Call font_delete_unmatched if
8076 Vface_ignored_fonts is non-nil. (Bug#6287)
8077
8078 2010-05-28 Glenn Morris <rgm@gnu.org>
8079
8080 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
8081
8082 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8083
8084 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
8085 whether to trash.
8086 (internal_delete_file, Frename_file): Callers changed.
8087 (delete_by_moving_to_trash): Doc fix.
8088 (Fdelete_directory_internal): Don't move to trash.
8089
8090 * callproc.c (delete_temp_file):
8091 * buffer.c (Fkill_buffer): Callers changed.
8092
8093 * lisp.h: Update prototype.
8094
8095 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
8096
8097 * xdisp.c (redisplay_window): After redisplay, check if point is
8098 still valid before setting it (Bug#6177).
8099
8100 2010-05-27 Glenn Morris <rgm@gnu.org>
8101
8102 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
8103 Convert comments to Makefile format.
8104
8105 * Makefile.in (bootstrap-clean): No more Makefile.c.
8106
8107 2010-05-26 Glenn Morris <rgm@gnu.org>
8108
8109 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
8110 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
8111
8112 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8113 Remove.
8114 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8115
8116 2010-05-26 Kenichi Handa <handa@m17n.org>
8117
8118 * composite.c (composition_compute_stop_pos): Fix condition for
8119 backward scanning.
8120
8121 2010-05-25 Glenn Morris <rgm@gnu.org>
8122
8123 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
8124 Move before TEMACS_LDFLAGS.
8125 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8126 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
8127
8128 * Makefile.in (NOT_C_CODE): No longer define.
8129 (config.h): No longer include.
8130
8131 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
8132 variables it may reference.
8133
8134 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
8135 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
8136
8137 2010-05-25 Kenichi Handa <handa@m17n.org>
8138
8139 * dispextern.h (struct composition_it): New members rule_idx and
8140 charpos.
8141
8142 * xdisp.c (set_iterator_to_next): While scanning backward, assume
8143 that the character positions of IT point the last character of the
8144 current grapheme cluster.
8145 (next_element_from_composition): Don't change character positions
8146 of IT.
8147 (append_composite_glyph): Set glyph->charpos to
8148 it->cmp_it.charpos.
8149
8150 * composite.c (autocmp_chars): Change the first argument to RULE,
8151 and try composition with RULE only.
8152 (composition_compute_stop_pos): Record the index number of the
8153 composition rule in CMP_IT->rule_idx.
8154 (composition_reseat_it): Call autocmp_chars repeatedly until the
8155 correct rule of the composition is found.
8156 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
8157 is at the last character of the current grapheme cluster when
8158 CMP_IT->reversed_p is nonzero.
8159
8160 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8161
8162 * editfns.c (Fbyte_to_string): New function.
8163
8164 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
8165
8166 * process.c (Fmake_network_process): Set :host to nil if it's not used.
8167 Suggested by Masatake YAMATO <yamato@redhat.com>.
8168
8169 2010-05-23 Eli Zaretskii <eliz@gnu.org>
8170
8171 * dispextern.h (init_iterator): Sync prototype with changed definition.
8172
8173 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
8174
8175 * s/netbsd.h: If terminfo is found, use it in preference to
8176 termcap. (Bug#6190) [Backport from trunk]
8177
8178 2010-05-19 Eli Zaretskii <eliz@gnu.org>
8179
8180 Redesign and reimplement bidi-aware edge positions of glyph rows.
8181
8182 * dispextern.h (struct glyph_row): New members minpos and maxpos.
8183 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
8184 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
8185 and maxpos members instead of start.pos and end.pos, respectively.
8186
8187 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
8188 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
8189 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
8190 (try_window_reusing_current_matrix, try_window_id):
8191 Use ROW->minpos rather than ROW->start.pos.
8192 (init_from_display_pos, init_iterator): Use EMACS_INT for
8193 character and byte positions.
8194 (find_row_edges): Rename from find_row_end. Accept additional
8195 arguments for minimum and maximum buffer positions seen by
8196 display_line for this row. Don't use iterator to find the
8197 position following the maximum one; instead, increment the
8198 position found by display_line directly. Fix logic; eol_pos
8199 should be tested before the rest. Handle the case of characters
8200 delivered from display vector (bug#6036). Fix tests related to
8201 it->method. Handle the truncated_on_right_p rows.
8202 (RECORD_MAX_MIN_POS): New macro.
8203 (display_line): Use it to record the minimum and maximum buffer
8204 positions for glyphs in the row being assembled. Record the
8205 position of the newline that terminates the line. If word wrap is
8206 in effect, restore minimum and maximum positions seen up to the
8207 wrap point, when iterator returns to it.
8208 (try_window_reusing_current_matrix): Give up if in bidi-reordered
8209 row and cursor not already at point. Restore original pre-bidi
8210 code for unidirectional buffers.
8211
8212 * dispnew.c (increment_row_positions, check_matrix_invariants):
8213 Increment and check row->start.pos and row->end.pos, in addition
8214 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
8215
8216 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
8217 Display truncated_on_left_p and truncated_on_right_p flags.
8218 Formatting fixes.
8219 (pmtxrows): Display the ordinal number of each row. Don't display
8220 rows beyond the last one.
8221
8222 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
8223 it is not copied by bidi_copy_it.
8224
8225 2010-05-22 Eli Zaretskii <eliz@gnu.org>
8226
8227 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
8228 (Bug#6237)
8229
8230 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
8231
8232 * image.c (Fimage_flush): Rename from image-refresh.
8233
8234 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
8235
8236 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
8237 just one window.
8238
8239 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
8240 (clear_image_cache): If the number of cached images is unusually
8241 large, decrease the cache eviction delay (Bug#6230).
8242
8243 2010-05-21 Glenn Morris <rgm@gnu.org>
8244
8245 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
8246 Move these rules to ns.mk.
8247 * ns.mk: New file.
8248
8249 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
8250
8251 * Makefile.in (CANNOT_DUMP): New, set by configure.
8252 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
8253
8254 2010-05-20 Juri Linkov <juri@jurta.org>
8255
8256 * fileio.c (Fdelete_file): Change interative spec to use
8257 `read-file-name' like in `find-file-read-args' where the default
8258 value is `default-directory' instead of `buffer-file-name'.
8259 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
8260
8261 2010-05-20 Kevin Ryde <user42@zip.com.au>
8262
8263 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
8264 (Voverriding_terminal_local_map, Vsystem_key_alist)
8265 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
8266
8267 2010-05-20 Glenn Morris <rgm@gnu.org>
8268
8269 * Makefile.in (DEPDIR): New constant.
8270 (DEPFLAGS): Set with configure, not cpp.
8271 (MKDEPDIR): New, set by configure.
8272 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
8273 (clean): Use $DEPDIR.
8274 (deps_frag): Include from configure.
8275 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
8276 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
8277
8278 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
8279 Fix reallocation of the cache. (Bug#6210)
8280
8281 2010-05-19 Glenn Morris <rgm@gnu.org>
8282
8283 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
8284
8285 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
8286 (GNULIB_VAR): Remove.
8287 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
8288
8289 * m/ibms390x.h (LINKER):
8290 * m/macppc.h (LINKER) [GNU_LINUX]:
8291 * s/aix4-2.h (ORDINARY_LINK):
8292 * s/cygwin.h (LINKER):
8293 * s/darwin.h (ORDINARY_LINK):
8294 * s/gnu.h (ORDINARY_LINK):
8295 * s/netbsd.h (LINKER):
8296 * s/usg5-4.h (ORDINARY_LINK):
8297 Move to configure.
8298
8299 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
8300
8301 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
8302
8303 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
8304 prevent stack overflow if number of arguments is too large
8305 (Bug#6214).
8306
8307 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
8308
8309 * charset.c (load_charset_map_from_file): Don't call close after fclose.
8310
8311 2010-05-18 Glenn Morris <rgm@gnu.org>
8312
8313 * s/gnu-linux.h: Combine two conditionals.
8314
8315 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
8316 $(POST_ALLOC_OBJ).
8317
8318 * Makefile.in (RALLOC_OBJ): New, set by configure.
8319 (rallocobj): Replace with the previous variable.
8320 (otherobj): Use $RALLOC_OBJ.
8321
8322 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
8323 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
8324
8325 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
8326 (gmallocobj, vmlimitobj): Replace with previous two variables.
8327 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
8328
8329 2010-05-17 Glenn Morris <rgm@gnu.org>
8330
8331 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
8332 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
8333
8334 2010-05-16 Glenn Morris <rgm@gnu.org>
8335
8336 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
8337
8338 * Makefile.in (clean): Get rid of HAVE_NS conditional.
8339
8340 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
8341 trailing "/".
8342
8343 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
8344 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
8345
8346 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
8347 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
8348 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
8349 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
8350 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
8351
8352 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
8353 Remove ${STARTFLAGS}, nothing ever sets it.
8354
8355 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
8356
8357 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
8358
8359 2010-05-16 Glenn Morris <rgm@gnu.org>
8360
8361 * Makefile.in (LIBX_BASE): Always define.
8362
8363 * Makefile.in (LIBX_OTHER): Move out of cpp section.
8364
8365 * Makefile.in (LIBXT): Always define.
8366
8367 2010-05-15 Glenn Morris <rgm@gnu.org>
8368
8369 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
8370
8371 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
8372 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
8373
8374 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
8375
8376 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
8377 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
8378
8379 * emacs.c (main): Initialize initial-environment and
8380 process-environment before generating from env, not after.
8381
8382 Handle --version reasonably in CANNOT_DUMP configuration.
8383 * emacs.c (emacs_version, emacs_copyright): New string variables.
8384 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
8385 (syms_of_emacs): Defvar them, and initialize them from the C
8386 string variables.
8387 (main): If initialization hasn't been done, print initial version
8388 info from the C strings, instead of starting an interactive session.
8389
8390 2010-05-15 Eli Zaretskii <eliz@gnu.org>
8391
8392 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
8393 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
8394 (bidi_paragraph_init): Remove redundant assertion that we are at
8395 the beginning of a line after call to bidi_find_paragraph_start.
8396
8397 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
8398 (syms_of_xdisp): Defsubr it.
8399
8400 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
8401
8402 * Makefile.in: Fix MSDOS-related comments.
8403
8404 2010-05-15 Glenn Morris <rgm@gnu.org>
8405
8406 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
8407 (really-lwlib, really-oldXMenu): Always define.
8408 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
8409
8410 * Makefile.in: Simplify cpp conditional.
8411
8412 * Makefile.in (${ns_appdir}): Simplify using umask.
8413
8414 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
8415
8416 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
8417
8418 * eval.c (specbind): Remove left-over duplicate test.
8419 Disallow let-binding frame-local vars. Add comment.
8420
8421 2010-05-14 Eli Zaretskii <eliz@gnu.org>
8422
8423 Make the cache of bidi iterator states dynamically allocated.
8424 * bidi.c (bidi_cache_shrink): New function.
8425 (bidi_init_it): Call it.
8426 (bidi_cache_iterator_state): Enlarge the cache if needed.
8427
8428 * bidi.c (bidi_move_to_visually_next): Rename from
8429 bidi_get_next_char_visually. All callers changed.
8430
8431 2010-05-14 Kenichi Handa <handa@m17n.org>
8432
8433 * dispextern.h (struct composition_it): New member reversed_p.
8434
8435 * composite.c (composition_compute_stop_pos): Search backward if
8436 ENDPOS < CHARPOS.
8437 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
8438 Set CMP_IT->reversed_p.
8439 (composition_update_it): Pay attention to CMP_IT->reversed_p.
8440
8441 * xdisp.c (set_iterator_to_next):
8442 Call composition_compute_stop_pos with negative ENDPOS if we are
8443 scanning backward. Call composition_compute_stop_pos if scan
8444 direction is changed.
8445 (next_element_from_buffer): Call composition_compute_stop_pos with
8446 negative ENDPOS if we are scanning backward.
8447 (next_element_from_composition): Pay attention to
8448 IT->cmp_it.reversed_p.
8449
8450 2010-05-14 Kenichi Handa <handa@m17n.org>
8451
8452 * font.c (font_range): Return the range for the font found at first.
8453
8454 2010-05-14 Glenn Morris <rgm@gnu.org>
8455
8456 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
8457
8458 * Makefile.in (mktime, X11, register): Move undefs to configure.
8459
8460 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
8461 (MSDOS_X_OBJ): New variable.
8462 (MSDOS_SUPPORT_REAL): New constant.
8463 (MSDOS_SUPPORT): Set as a variable, not with cpp.
8464 (obj): Use MSDOS_X_OBJ.
8465 (lisp): Use MSDOS_SUPPORT as a variable.
8466
8467 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
8468 (GPM_MOUSE_SUPPORT): Now it's a constant.
8469 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
8470 not cpp.
8471
8472 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
8473 (ns_appresdir): Remove, unused.
8474
8475 * Makefile.in (SHELL): Move outside cpp section.
8476
8477 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
8478
8479 2010-05-13 Glenn Morris <rgm@gnu.org>
8480
8481 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
8482 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
8483
8484 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
8485 HAVE_WINDOW_SYSTEM must be too.
8486
8487 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
8488 (lisp): Remove WINNT_SUPPORT.
8489
8490 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
8491 Let configure set these variables (to empty) in this case as well.
8492
8493 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
8494 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
8495
8496 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
8497 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
8498 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
8499 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
8500 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
8501 the values output by configure.
8502 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
8503
8504 2010-05-12 Glenn Morris <rgm@gnu.org>
8505
8506 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
8507 (LINKER_WAS_SPECIFIED): Remove.
8508
8509 * Makefile.in (LIB_GCC): Set using configure, not cpp.
8510 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
8511 * m/arm.h (LIB_GCC) [GNU_LINUX]:
8512 * s/cygwin.h (LIB_GCC):
8513 * s/freebsd.h (LIB_GCC):
8514 * s/gnu-linux.h (LIB_GCC):
8515 * s/msdos.h (LIB_GCC):
8516 * s/netbsd.h (LIB_GCC):
8517 Move to configure.
8518
8519 2010-05-11 Karel Klíč <kklic@redhat.com>
8520
8521 * ftfont.c: Fix incorrect parentheses of #if condition for
8522 definining M17N_FLT_USE_NEW_FEATURE.
8523
8524 2010-05-11 Glenn Morris <rgm@gnu.org>
8525
8526 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
8527 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
8528
8529 2010-05-10 Eli Zaretskii <eliz@gnu.org>
8530
8531 * xdisp.c (init_iterator): Don't turn on bidi reordering in
8532 unibyte buffers. See
8533 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
8534
8535 2010-05-10 Glenn Morris <rgm@gnu.org>
8536
8537 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
8538 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
8539 (LIBES): Use LIBS_SYSTEM as a variable.
8540 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
8541 * s/aix4-2.h (LIBS_SYSTEM):
8542 * s/freebsd.h (LIBS_SYSTEM):
8543 * s/hpux10-20.h (LIBS_SYSTEM):
8544 * s/sol2-6.h (LIBS_SYSTEM):
8545 * s/unixware.h (LIBS_SYSTEM):
8546 Move to configure.
8547
8548 * s/aix4-2.h (MAIL_USE_LOCKF):
8549 * s/bsd-common.h (MAIL_USE_FLOCK):
8550 * s/darwin.h (MAIL_USE_FLOCK):
8551 * s/gnu-linux.h (MAIL_USE_FLOCK):
8552 * s/irix6-5.h (MAIL_USE_FLOCK):
8553 * s/template.h (MAIL_USE_FLOCK):
8554 Move to configure.
8555
8556 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
8557
8558 * Version 23.2 released.
8559
8560 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
8561
8562 * composite.c (autocmp_chars): Save point as marker before calling
8563 auto-composition-function (Bug#5984).
8564
8565 * lisp.h (restore_point_unwind): Add prototype.
8566
8567 * fileio.c (restore_point_unwind): Remove static attribute.
8568
8569 2010-05-08 Kenichi Handa <handa@m17n.org>
8570
8571 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
8572 new feature of libotf and m17n-flt.
8573 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
8574 Call OTF_check_features even if no specific feature is given.
8575 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
8576 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
8577 that OUT is NULL. Use OTF_drive_gsub_with_log and
8578 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
8579 OTF_drive_gpos.
8580 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
8581 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
8582 Setup mflt_enable_new_feature and mflt_try_otf.
8583
8584 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
8585
8586 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
8587
8588 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
8589 box and toolbar (Bug #6139).
8590 (xg_create_tool_bar): Remove comment (Bug #6139).
8591 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
8592 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
8593
8594 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
8595
8596 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
8597 Update dependencies.
8598
8599 2010-05-08 Eli Zaretskii <eliz@gnu.org>
8600
8601 * fringe.c (update_window_fringes): Set up truncation bitmaps for
8602 R2L lines.
8603
8604 2010-05-08 Glenn Morris <rgm@gnu.org>
8605
8606 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
8607
8608 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
8609 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
8610 (termcapobj): Replace with TERMCAP_OBJ.
8611 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
8612 (LIBES): Use LIBS_TERMCAP as a variable.
8613
8614 * s/freebsd.h (osreldate.h): No longer include, since this file
8615 does not use __FreeBSD_version any more.
8616
8617 * s/aix4-2.h (TERMINFO):
8618 * s/cygwin.h (TERMINFO):
8619 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8620 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
8621 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8622 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
8623 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
8624 * s/irix6-5.h (TERMINFO):
8625 * s/netbsd.h (LIBS_TERMCAP):
8626 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
8627 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
8628 * s/usg5-4.h (TERMINFO):
8629 Move to configure.
8630
8631 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
8632
8633 * eval.c (unbind_to): Don't unbind a local binding into the global
8634 binding when the local binding disappeared. Inversely, don't unbind
8635 a global binding into a newly created local binding.
8636 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
8637 can specify the frame to use, when applicable. Adjust callers.
8638
8639 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
8640 Stefan Monnier <monnier@iro.umontreal.ca>
8641
8642 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
8643
8644 2010-05-07 Eli Zaretskii <eliz@gnu.org>
8645
8646 * w32fns.c: Include w32.h.
8647 (Fw32_shell_execute): Decode the error message before passing it
8648 to `error'. (Bug#6126)
8649
8650 * msdos.c (dos_set_window_size):
8651 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
8652 instead of `XSYMBOL (foo)->value'.
8653
8654 2010-05-07 Eli Zaretskii <eliz@gnu.org>
8655
8656 Fix the MS-DOS build, broken by autoconfiscation.
8657
8658 * Makefile.in: Don't use Make-style comments past the "start of
8659 cpp stuff" line.
8660 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
8661
8662 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
8663 edited directly by msdos/sed1v2.inp).
8664
8665 2010-05-07 Glenn Morris <rgm@gnu.org>
8666
8667 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
8668 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
8669 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
8670 move out of cpp section.
8671 * s/freebsd.h (LD_SWITCH_SYSTEM):
8672 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
8673 * s/netbsd.h (LD_SWITCH_SYSTEM):
8674 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
8675
8676 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
8677
8678 Define LIB_STANDARD and START_FILES using autoconf.
8679 * s/usg5-4.h (LIB_STANDARD):
8680 * s/netbsd.h (START_FILES):
8681 * s/irix6-5.h (LIB_STANDARD):
8682 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
8683 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
8684 * s/freebsd.h (START_FILES):
8685 * s/darwin.h (START_FILES):
8686 * s/cygwin.h (START_FILES):
8687 * s/aix4-2.h (LIB_STANDARD):
8688 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
8689 * Makefile.in (STARTFILES): Rename to START_FILES, define using
8690 autoconf, not cpp.
8691
8692 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
8693
8694 Remove NEED_BSDTTY and NEED_UNISTD_H.
8695 * s/hpux10-20.h (NEED_BSDTTY): Remove.
8696 * s/aix4-2.h (NEED_UNISTD_H): Remove.
8697 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
8698 <sys/ptyio.h> and <unistd.h>.
8699
8700 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
8701
8702 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
8703 * s/gnu.h (START_FILES): Remove empty definition.
8704
8705 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
8706
8707 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
8708
8709 2010-05-06 Glenn Morris <rgm@gnu.org>
8710
8711 * Makefile.in (CPP, LN_S): Remove unused variables.
8712
8713 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
8714
8715 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
8716
8717 2010-05-05 Lawrence Mitchell <wence@gmx.li>
8718
8719 * m/sparc.h: Fix typo in earlier change.
8720
8721 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8722
8723 Misc tweaks.
8724 * eval.c (Fdefvaralias): Remove unintended nested if.
8725 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
8726
8727 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
8728
8729 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
8730
8731 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
8732
8733 Remove BSD_PGRPS.
8734 * s/bsd-common.h (BSD_PGRPS): Remove undef.
8735 * s/gnu-linux.h (BSD_PGRPS): Remove.
8736 * term.c (dissociate_if_controlling_tty):
8737 * sysdep.c (narrow_foreground_group, widen_foreground_group)
8738 (init_sys_modes, reset_sys_modes):
8739 * emacs.c (main):
8740 * callproc.c (Fcall_process, child_setup): Remove code depending
8741 on BSD_PGRPS.
8742
8743 Remove POSIX_SIGNALS.
8744 * s/usg5-4.h (POSIX_SIGNALS):
8745 * s/netbsd.h (POSIX_SIGNALS):
8746 * s/msdos.h (POSIX_SIGNALS):
8747 * s/ms-w32.h (POSIX_SIGNALS):
8748 * s/hpux11.h (POSIX_SIGNALS):
8749 * s/gnu.h (POSIX_SIGNALS):
8750 * s/gnu-linux.h (POSIX_SIGNALS):
8751 * s/freebsd.h (POSIX_SIGNALS):
8752 * s/darwin.h (POSIX_SIGNALS):
8753 * s/cygwin.h (POSIX_SIGNALS):
8754 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
8755 * s/unixware.h:
8756 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
8757 * process.c (create_process):
8758 * syssignal.h:
8759 * sysdep.c (wait_for_termination, init_signals):
8760 * process.c (create_process):
8761 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
8762 remove all code that assumes the contrary.
8763
8764 2010-05-04 Glenn Morris <rgm@gnu.org>
8765
8766 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
8767 variable.
8768 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
8769 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
8770 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
8771 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
8772 LD_SWITCH_SYSTEM_tmp.
8773 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
8774 New variables, set by configure.
8775
8776 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
8777 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
8778 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
8779 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
8780 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
8781
8782 * s/aix4-2.h (C_SWITCH_SYSTEM):
8783 * m/alpha.h (C_SWITCH_MACHINE):
8784 Move to configure.in.
8785 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
8786 New variables, set by configure.
8787 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
8788 $c_switch_machine and $c_switch_system.
8789
8790 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
8791
8792 * s/hpux10-20.h (LIB_STANDARD): New definition.
8793 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
8794 on it, not used anymore.
8795
8796 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
8797
8798 * eval.c (internal_condition_case_n): Rename from
8799 internal_condition_case_2.
8800 (internal_condition_case_2): New function.
8801
8802 * xdisp.c (safe_call): Use internal_condition_case_n.
8803
8804 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
8805 (internal_delete_file, Frename_file): Callers changed.
8806
8807 * buffer.c (Fkill_buffer):
8808 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
8809
8810 * lisp.h: Update prototypes.
8811
8812 2010-05-03 Glenn Morris <rgm@gnu.org>
8813
8814 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
8815 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
8816 (LIBXT): Set with configure, not cpp.
8817 (LIBX): Remove.
8818 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
8819
8820 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
8821
8822 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
8823 The FreeBSD is not needed, the default works, Solaris version is
8824 not needed, and the remaining case is not supported by configure.
8825
8826 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
8827
8828 * xsmfns.c (CHDIR_OPT): New define.
8829 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
8830 restarting emacs.
8831
8832 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
8833 shut_down_emacs.
8834
8835 * emacs.c (USAGE1): Mention --chdir.
8836 (main): Handle --chdir.
8837 (standard_args): Add --chdir.
8838 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
8839 #5552).
8840
8841 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
8842
8843 Remove LD_SWITCH_MACHINE.
8844 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
8845 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
8846
8847 Clean up IRIX code.
8848 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
8849 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
8850
8851 Clean up AIX code.
8852 * m/ibmrs6000.inp: Remove file, unused.
8853 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
8854 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
8855 definition ...
8856 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
8857
8858 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
8859 unused.
8860
8861 2010-05-01 Eli Zaretskii <eliz@gnu.org>
8862
8863 Emulate POSIX_SIGNALS on MS-Windows.
8864
8865 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
8866 (SIG_SETMASK, SIG_UNBLOCK): Define.
8867
8868 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
8869 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
8870 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
8871
8872 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
8873 New stubs.
8874
8875 Miscellaneous fixes of bidi display.
8876
8877 * xdisp.c (find_row_end): New function, refactored from display_line.
8878 (display_line): Use it.
8879 (extend_face_to_end_of_line): In almost-filled rows, extend only
8880 if the row is R2L and not continued.
8881 (display_line): Fix prepending of truncation glyphs to R2L rows.
8882 Preserve overlay and string info in row->end.
8883 (insert_left_trunc_glyphs): Support addition of left truncation
8884 glyphs to R2L rows.
8885 (set_cursor_from_row): Don't place cursor on the vertical border
8886 glyph between adjacent windows. Fix a crash when a display string
8887 is continued to the next line. Don't return zero if cursor was
8888 found by `cursor' property of a display string.
8889 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
8890 test for that explicitly.
8891
8892 2010-05-01 Glenn Morris <rgm@gnu.org>
8893
8894 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
8895 for clarity.
8896 (OTHER_OBJ): Remove.
8897 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
8898 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
8899
8900 2010-05-01 Karel Klíč <kklic@redhat.com>
8901
8902 * fileio.c (Ffile_selinux_context): Context functions may return null.
8903
8904 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
8905
8906 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
8907
8908 2010-04-30 Glenn Morris <rgm@gnu.org>
8909
8910 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
8911 (OTHER_OBJ): Define as a separate variable, for clarity.
8912
8913 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
8914
8915 * xsettings.c: Include limits.h and update file comment.
8916
8917 2010-04-30 Glenn Morris <rgm@gnu.org>
8918
8919 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
8920 Set with configure, not cpp.
8921 (LIBW): Remove, replace with $TOOLKIT_LIBW.
8922
8923 * Makefile.in (mallocobj): Remove.
8924 (otherobj): Simplify using @OTHER_OBJ@.
8925
8926 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
8927 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
8928 Don't bother making nsgui.h dependency platform-specific.
8929
8930 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
8931
8932 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
8933
8934 * process.c (read_process_output, exec_sentinel): Don't burp if the
8935 sentinel/filter kills the current buffer (bug#6060).
8936
8937 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
8938 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
8939 Remove unused var `args'.
8940 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
8941 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
8942 * doc.c (store_function_docstring): Use XSETCAR.
8943
8944 2010-04-28 Glenn Morris <rgm@gnu.org>
8945
8946 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
8947 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
8948
8949 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
8950
8951 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
8952 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
8953
8954 * Makefile.in (FONT_OBJ): New, set by configure.
8955 (FONT_DRIVERS): Use $FONT_OBJ.
8956
8957 * Makefile.in (LIBXMU): Set with configure, not cpp.
8958 * s/aix4-2.h (LIBXMU):
8959 * s/hpux10-20.h (LIBXMU):
8960 Remove definition, now set in configure.
8961
8962 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
8963
8964 * m/amdx86-64.h [i386]: Move this test to configure.in.
8965
8966 2010-04-27 Glenn Morris <rgm@gnu.org>
8967
8968 * Makefile.in (LIBXTR6): Set with configure, not cpp.
8969 * s/unixware.h (NEED_LIBW): Remove definition.
8970
8971 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
8972 (TOOLKIT_LIBW): New, set by configure.
8973 (@X_TOOLKIT_TYPE@): No longer define it.
8974
8975 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
8976 (MOTIF_LIBW): Set with configure, not cpp.
8977 * s/aix4-2.h (LIB_MOTIF):
8978 * s/gnu-linux.h (LIB_MOTIF):
8979 * s/unixware.h (LIB_MOTIF): Move to configure.in.
8980
8981 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
8982
8983 Reduce CPP usage.
8984 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
8985 (obj): Use autoconf for unexec instead of cpp.
8986 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
8987 Remove definitions and undefs. Inline definitions in the only user.
8988 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
8989
8990 2010-04-27 Glenn Morris <rgm@gnu.org>
8991
8992 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
8993 since the defaults (set by the system file) are fine in most cases.
8994 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
8995 * m/ibms390x.h (START_FILES, LIB_STANDARD):
8996 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
8997 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
8998 Remove definitions, since they are set correctly in s/gnu-linux.h.
8999 * s/freebsd.h (START_FILES, LIB_STANDARD):
9000 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
9001 * s/hpux10-20.h (START_FILES):
9002 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
9003 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
9004
9005 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
9006 (MOTIF_LIBW): Use $LIBXP.
9007 (otherobj): Use $WIDGET_OBJ.
9008
9009 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
9010
9011 * Makefile.in (LIBS_MACHINE): Remove, unused.
9012
9013 Use autoconf instead of cpp for LIB_MATH.
9014 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
9015 * s/cygwin.h (LIB_MATH): Likewise.
9016 * Makefile.in (LIB_MATH): Do not define with cpp.
9017 (LIBES): Use autoconf for LIB_MATH.
9018
9019 2010-04-26 Kenichi Handa <handa@m17n.org>
9020
9021 * composite.c (Ffind_composition_internal): Fix the return value
9022 for an automatic composition.
9023
9024 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
9025
9026 Remove all NO_ARG_ARRAY uses.
9027 * fns.c (concat2, concat3, nconc2):
9028 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
9029 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
9030 * m/xtensa.h (NO_ARG_ARRAY):
9031 * m/template.h (NO_ARG_ARRAY):
9032 * m/sparc.h (NO_ARG_ARRAY):
9033 * m/sh3.h (NO_ARG_ARRAY):
9034 * m/mips.h (NO_ARG_ARRAY):
9035 * m/macppc.h (NO_ARG_ARRAY):
9036 * m/iris4d.h (NO_ARG_ARRAY):
9037 * m/intel386.h (NO_ARG_ARRAY):
9038 * m/ibms390x.h (NO_ARG_ARRAY):
9039 * m/ibms390.h (NO_ARG_ARRAY):
9040 * m/ibmrs6000.h (NO_ARG_ARRAY):
9041 * m/ia64.h (NO_ARG_ARRAY):
9042 * m/hp800.h (NO_ARG_ARRAY):
9043 * m/arm.h (NO_ARG_ARRAY):
9044 * m/amdx86-64.h (NO_ARG_ARRAY):
9045 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
9046
9047 2010-04-25 Eli Zaretskii <eliz@gnu.org>
9048
9049 * xdisp.c (display_line): Don't assume 2nd call to
9050 get_next_display_element cannot return zero. (Bug#6030)
9051 (iterate_out_of_display_property): New function, body from pop_it.
9052 (pop_it): Use it.
9053
9054 2010-04-24 Glenn Morris <rgm@gnu.org>
9055
9056 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
9057 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
9058 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
9059 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
9060
9061 2010-04-24 Eli Zaretskii <eliz@gnu.org>
9062
9063 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
9064 use `get_next_display_element' and `set_iterator_to_next' to
9065 advance to the next character, when looking for the character that
9066 begins the next row.
9067
9068 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
9069 definition of "struct Lisp_Symbol".
9070
9071 2010-04-24 Glenn Morris <rgm@gnu.org>
9072
9073 * Makefile.in (CRT_DIR): New variable, set by configure.
9074 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
9075 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
9076
9077 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9078
9079 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
9080
9081 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
9082
9083 Remove redundant flags.
9084 * s/freebsd.h (C_SWITCH_SYSTEM):
9085 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
9086 * s/netbsd.h (C_SWITCH_SYSTEM):
9087 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
9088 of these.
9089
9090 Simplify m/intel386.h.
9091 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
9092 user: ecrt0.c.
9093 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
9094 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
9095 the only user: s/unixware.h.
9096 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
9097 from m/intel386.h.
9098 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
9099 Definitions moved here from m/intel386.h.
9100
9101 * m/mips.h: Remove #if 0 code.
9102
9103 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9104
9105 Fix display of composed characters from L2R scripts in bidi buffers.
9106 * xdisp.c (set_iterator_to_next, next_element_from_composition):
9107 After advancing IT past the composition, resync the bidi iterator
9108 with IT's position. (Bug#5977)
9109
9110 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9111
9112 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
9113 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
9114
9115 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
9116
9117 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
9118
9119 2010-04-23 Eli Zaretskii <eliz@gnu.org>
9120
9121 Support `display' text properties and overlay strings in bidi buffers.
9122 * xdisp.c (pop_it): When the stack is popped after displaying
9123 from a string, bidi-iterate to exit from the text portion covered
9124 by the `display' property or overlay. (Bug#5988, bug#5920)
9125
9126 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
9127
9128 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
9129 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
9130
9131 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
9132 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
9133
9134 Simplify STARTFILES definition.
9135 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
9136 relying on Makefile.in to define it.
9137 * s/cygwin.h (START_FILES): Likewise.
9138 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
9139
9140 Clean up Solaris code.
9141 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
9142 (LIB_MOTIF): Remove, configure takes care of this.
9143 (NOT_USING_MOTIF): Remove, unused.
9144 * xrdb.c: Remove #if 0-ed #include.
9145 (SYSV): Remove conditional for old SysV.
9146 * sysdep.c (closedir): Remove conditional code for Solaris,
9147 Solaris has closedir.
9148
9149 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
9150
9151 * xsettings.c (read_and_apply_settings): Check if current_font is
9152 NULL before strcmp (Bug#6001).
9153
9154 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
9155
9156 Clean up HP-UX files.
9157 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
9158 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
9159 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
9160 * s/hpux10-20.h: ... to the only user, here.
9161
9162 2010-04-21 Eli Zaretskii <eliz@gnu.org>
9163
9164 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
9165 use buffer-local values of paragraph-start and paragraph-separate.
9166 <paragraph_start_re, paragraph_separate_re>: Rename from
9167 fallback_paragraph_start_re and fallback_paragraph_separate_re.
9168 (Bug#5992)
9169
9170 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9171
9172 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
9173 current_tool_bar_style are new.
9174 (store_config_changed_event): Rename from store_font_changed_event.
9175 (XSETTINGS_TOOL_BAR_STYLE): New define.
9176 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
9177 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
9178 HAVE_XFT.
9179 (something_changedCB): store_font_changed_event is now
9180 store_config_changed_event.
9181 (parse_settings): Rename from parse_xft_settings.
9182 Read non-xft xsettings outside #ifdef HAVE_XFT.
9183 (read_settings): Rename from read_xft_settings.
9184 (apply_xft_settings): Take current settings as parameter. Do not
9185 call read_(xft)_settings.
9186 (read_and_apply_settings): New function.
9187 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
9188 Call read_and_apply_settings if there are settings to be read.
9189 (init_xsettings): Rename from init_xfd_settings.
9190 Call read_and_apply_settings unconditionally.
9191 (xsettings_initialize): Call init_xsettings.
9192 (Ftool_bar_get_system_style): New function.
9193 (syms_of_xsettings): Define Qmonospace_font_name and
9194 Qtool_bar_style. Initialize current_tool_bar_style to nil.
9195 defsubr Stool_bar_get_system_style. Fprovide on
9196 dynamic-setting.
9197 Move misplaced HAVE_GCONF.
9198
9199 * xsettings.h (Ftool_bar_get_system_style): Declare.
9200
9201 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
9202 Qtext, Qboth, Qboth_horiz are new.
9203 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
9204 Vtool_bar_style, tool_bar_max_label_size.
9205
9206 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
9207
9208 * keyboard.c: QClabel is new.
9209 (parse_tool_bar_item): Take out QClabel from tool bar items.
9210 Try to construct a label if ther is no QClabel.
9211 (syms_of_keyboard): Intern :label as QClabel.
9212
9213 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
9214 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
9215 New.
9216
9217 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
9218 dynamic-setting.el.
9219
9220 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
9221 (xg_make_tool_item, xg_show_toolbar_item): New function.
9222 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
9223 Call xg_make_tool_item to make a tool bar item.
9224 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
9225
9226 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
9227 into account for toolbars.
9228
9229 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
9230
9231 * data.c (make_blv): Declarations before code (Bug#5993).
9232
9233 2010-04-21 Glenn Morris <rgm@gnu.org>
9234
9235 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
9236 Define using autoconf, not cpp.
9237 (LIBXSM): New variable, set by autoconf.
9238 (LIBXT): Use $LIBXSM.
9239
9240 2010-04-21 Dan Nicolaescu <local_user@dannlt>
9241
9242 Remove NOMULTIPLEJOBS, unused.
9243 * s/template.h (NOMULTIPLEJOBS):
9244 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
9245
9246 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
9247 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
9248 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
9249 detects -znocombreloc and passes it to the linker
9250 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
9251
9252 2010-04-21 Glenn Morris <rgm@gnu.org>
9253
9254 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
9255
9256 2010-04-21 Karel Klíč <kklic@redhat.com>
9257
9258 * Makefile.in (LIBSELINUX_LIBS): New.
9259 (LIBES): Add $LIBSELINUX_LIBS.
9260 * eval.c, lisp.h (call7): New function.
9261 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
9262 (Ffile_selinux_context, Fset_file_selinux_context):
9263 New functions.
9264 (Fcopy_file): New parameter preserve-selinux-context.
9265 (Frename_file): Preserve selinux context when renaming by copy-file.
9266
9267 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
9268 Eli Zaretskii <eliz@gnu.org>
9269
9270 Don't depend on cm.c or termcap.c on Windows, use stubs.
9271 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
9272 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
9273 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
9274 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
9275 (sys_tputs, sys_tgetstr): New stubs.
9276 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
9277 (tputs, tgetstr): New; define to sys_*.
9278
9279 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
9280
9281 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
9282
9283 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9284
9285 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
9286 Just signal a warning rather than an error when inside a let.
9287 (Fmake_variable_frame_local): Add the same test.
9288
9289 * font.c (syms_of_font): Make the style table vars read-only.
9290
9291 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
9292 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
9293
9294 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
9295
9296 2010-04-20 Eli Zaretskii <eliz@gnu.org>
9297
9298 Fix R2L paragraph display on TTY.
9299
9300 * xdisp.c (unproduce_glyphs): New function.
9301 (display_line): Use it when produced glyphs are discarded from R2L
9302 glyph rows.
9303 (append_composite_glyph): In R2L rows, prepend the glyph rather
9304 than appending it.
9305
9306 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
9307 rather than append it. Set up the resolved_level and bidi_type
9308 attributes of the appended glyph.
9309 (produce_special_glyphs): Mirror the backslash continuation
9310 character in R2L lines.
9311
9312 Implement display of R2L paragraphs in GUI sessions.
9313
9314 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
9315 append_stretch_glyph.
9316 (set_cursor_from_row) <cursor_x>: Remove unused variable.
9317 Fix off-by-one error in computing x at end of text in the row.
9318 (append_stretch_glyph): In reversed row, prepend the glyph rather
9319 than append it. Set resolved_level and bidi_type of the glyph.
9320 (extend_face_to_end_of_line): If the row is reversed, prepend a
9321 stretch glyph whose width is such that the rightmost glyph will be
9322 drawn at the right margin of the window. Fix off-by-one error on
9323 TTY frames in testing whether a line needs face extension.
9324 Fix face extension at ZV. If this is the last glyph row, use
9325 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
9326 region face.
9327 (set_cursor_from_row, display_line):
9328 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
9329 row->continuation_lines_width.
9330 (next_element_from_buffer): Don't call bidi_paragraph_init if we
9331 are at ZV. Fixes a crash when reseated to ZV by
9332 try_window_reusing_current_matrix.
9333 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
9334 which happens with R2L glyph rows. Fixes a crash when inserting a
9335 character at end of an R2L line.
9336 (set_cursor_from_row): Don't be fooled by truncated rows: don't
9337 treat them as having zero-width characters. Improve comments.
9338 Don't reverse pos_before and pos_after for reversed glyph rows.
9339 Set cursor.x to negative value when the cursor might be on the
9340 left fringe.
9341 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
9342 left fringe, not the right one.
9343 (notice_overwritten_cursor, draw_phys_cursor_glyph)
9344 (erase_phys_cursor): For reversed cursor_row, support cursor on
9345 the left fringe.
9346
9347 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
9348 of continuation indicators on the fringes.
9349 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
9350 left fringe.
9351
9352 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
9353 draw cursor on the left fringe.
9354
9355 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
9356 cursor on the left fringe.
9357
9358 * dispnew.c (update_text_area): Handle reversed desired rows when
9359 the cursor is on the left fringe.
9360 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
9361 below, not by 0, for when the cursor is on the left fringe.
9362
9363 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
9364
9365 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
9366 widget is a scrollbar.
9367
9368 2010-04-20 Kenichi Handa <handa@m17n.org>
9369
9370 * charset.c (char_charset): Consider Vcharset_non_preferred_head
9371 only when the arg CHARSET_LIST is nil.
9372
9373 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9374
9375 Make variable forwarding explicit rather the using special values.
9376 Basically, this makes the structure of buffer-local values and object
9377 forwarding explicit in the type of Lisp_Symbols rather than use
9378 special Lisp_Objects for that. This tends to lead to slightly more
9379 verbose code, but is more C-like, simpler, and makes it easier to make
9380 sure we handled all cases, among other things by letting the compiler
9381 help us check it.
9382 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
9383 Removing forwarding objects.
9384 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
9385 (struct Lisp_Symbol): Make the various forms of variable-forwarding
9386 explicit rather than hiding them inside Lisp_Object "values".
9387 (XFWDTYPE): New macro.
9388 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
9389 (XBUFFER_LOCAL_VALUE): Remove.
9390 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
9391 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
9392 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
9393 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
9394 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
9395 Remove the Lisp_Misc_* header.
9396 (struct Lisp_Buffer_Local_Value): Redefine.
9397 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
9398 (struct Lisp_Misc_Any): Add filler to get the right size.
9399 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
9400 Lisp_Intfwd.
9401 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
9402 (DEFVAR_KBOARD): Allocate a forwarding object.
9403 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
9404 (let_shadows_global_binding_p): New function.
9405 (union Lisp_Val_Fwd): New type.
9406 (make_blv): New function.
9407 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
9408 (store_symval_forwarding, swap_in_global_binding, Fboundp)
9409 (swap_in_symval_forwarding, find_symbol_value, Fset)
9410 (let_shadows_buffer_binding_p, set_internal, default_value)
9411 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
9412 (Fkill_local_variable, Fmake_variable_frame_local)
9413 (Flocal_variable_p, Flocal_variable_if_set_p)
9414 (Fvariable_binding_locus):
9415 * xdisp.c (select_frame_for_redisplay):
9416 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
9417 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
9418 * frame.c (store_frame_param):
9419 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
9420 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
9421 value structure.
9422 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
9423 (clone_per_buffer_values): Only adjust markers into the current buffer.
9424 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
9425 (Fbuffer_local_value, set_buffer_internal_1)
9426 (swap_out_buffer_local_variables):
9427 Adapt to the new symbol value structure.
9428 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
9429 (defvar_per_buffer): Take a new arg for the fwd object.
9430 (buffer_lisp_local_variables): Return a proper alist (different fix
9431 for bug#4138).
9432 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
9433 (Fgarbage_collect): Don't handle buffer_defaults specially.
9434 (mark_object): Handle new symbol value structure rather than the old
9435 special Lisp_Misc_* objects.
9436 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
9437 * term.c (set_tty_color_mode):
9438 * bidi.c (bidi_initialize): Don't access the ->value field directly.
9439 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
9440 a buffer_local_flags.
9441 * print.c (print_object): Get rid of impossible forwarding objects.
9442
9443 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9444
9445 * bidi.c (bidi_get_type, bidi_get_category)
9446 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
9447 (bidi_type_of_next_char, bidi_level_of_next_char):
9448 Declare static. Use `INLINE' rather than `inline'.
9449
9450 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
9451
9452 * dired.c (Ffile_attributes): Fix typo in docstring.
9453
9454 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
9455
9456 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
9457 NSInteger (Bug#5811).
9458
9459 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9460
9461 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
9462 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
9463
9464 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9465
9466 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
9467
9468 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
9469
9470 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
9471 terminal frames (Bug#5837).
9472
9473 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9474
9475 * .gdbinit (xsubchartable): New command.
9476
9477 2010-04-19 Eli Zaretskii <eliz@gnu.org>
9478
9479 * xdisp.c (display_line): Don't write beyond the last glyph row in
9480 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
9481 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
9482 and
9483 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
9484
9485 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
9486
9487 * alloc.c (Fpurecopy): Hash-cons if requested.
9488 (syms_of_alloc): Update purify-flag docstring.
9489
9490 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
9491
9492 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
9493 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
9494
9495 2010-04-17 Eli Zaretskii <eliz@gnu.org>
9496
9497 Fix a crash when an NSM character is inserted at BEGV.
9498
9499 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
9500 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
9501 NEUTRAL_B or UNKNOWN_BT.
9502
9503 2010-04-16 Eli Zaretskii <eliz@gnu.org>
9504
9505 * xdisp.c (set_cursor_from_row): Don't consider possibility of
9506 other rows with cursor unless they are different from this row and
9507 this row is part of a continued line. (Bug#5943)
9508
9509 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
9510
9511 * s/freebsd.h: Restore osreldate.h include.
9512 Suggested by Naohiro Aota.
9513
9514 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
9515
9516 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
9517
9518 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
9519
9520 * s/cygwin.h: Avoid linking against static libgcc.
9521
9522 2010-04-15 Juri Linkov <juri@jurta.org>
9523
9524 * window.c: Add Qscroll_command.
9525 Remove Vscroll_preserve_screen_position_commands.
9526 (window_scroll_pixel_based, window_scroll_line_based): Check the
9527 `scroll-command' property on the last command instead of searching
9528 the last command in Vscroll_preserve_screen_position_commands.
9529 (syms_of_window): Initialize and staticpro `Qscroll_command'.
9530 Put Qscroll_command property on Qscroll_up and Qscroll_down.
9531 (scroll-preserve-screen-position): Doc fix.
9532 (Vscroll_preserve_screen_position_commands): Remove variable.
9533
9534 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
9535
9536 * xdisp.c (message): Do not use NO_ARG_ARRAY.
9537
9538 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
9539
9540 Reduce cpp use in Makefile.in.
9541 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
9542 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
9543 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
9544 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
9545 (CRT0_COMPILE): Remove, inline it in the only user.
9546
9547 2010-04-14 Juri Linkov <juri@jurta.org>
9548
9549 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
9550 `scroll-up-command' and `M-v' from `scroll-down' to
9551 `scroll-down-command'.
9552
9553 2010-04-14 Juri Linkov <juri@jurta.org>
9554
9555 * window.c (Vscroll_preserve_screen_position_commands): New variable
9556 with the default value as the list of Qscroll_down and Qscroll_up.
9557 (window_scroll_pixel_based, window_scroll_line_based): Search the
9558 last command in the list Vscroll_preserve_screen_position_commands
9559 instead of comparing with Qscroll_up and Qscroll_down.
9560
9561 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
9562
9563 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
9564 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
9565 does that.
9566
9567 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
9568 to zero.
9569
9570 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
9571
9572 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
9573
9574 Try to solve the problem of spurious EOF chars in long lines of text
9575 sent to interactive subprocesses.
9576 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
9577 (system_process_attributes): Remove unused var `ttotal'.
9578 * process.c (send_process): Don't bother breaking long line with EOF
9579 chars when talking to ttys any more.
9580 (wait_reading_process_output): Output a warning when called in such
9581 a way that it could block without being interruptible.
9582
9583 Try to detect file modification within the same second.
9584 * buffer.h (struct buffer): New field modtime_size.
9585 * buffer.c (reset_buffer): Initialize it.
9586 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
9587 (Fverify_visited_file_modtime): Check it.
9588 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
9589 (Fset_visited_file_modtime): Set (or clear) it.
9590
9591 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
9592
9593 * process.c (status_notify): Remove unused var `ro'.
9594
9595 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
9596
9597 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
9598 more than one visual (Bug#5938).
9599
9600 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
9601
9602 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
9603 Undefine.
9604
9605 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
9606
9607 Remove C_SWITCH_SYSTEM_TEMACS.
9608 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
9609 (malloc, realloc, free): Use emacs, not temacs for conditional
9610 definition.
9611
9612 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
9613 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
9614
9615 Use autoconf, not cpp for some variables.
9616 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
9617 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
9618 (ALL_CFLAGS): Use them as make variables.
9619 (really-lwlib, really-oldXMenu): Do not pass them.
9620
9621 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
9622
9623 * xmenu.c (apply_systemfont_to_dialog): New.
9624 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
9625
9626 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9627
9628 * process.c (exec_sentinel): Preserve current-buffer.
9629
9630 * process.c (read_process_output): Move the save-current-buffer to
9631 apply to both the filter and the non-filter branches.
9632
9633 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
9634
9635 * s/msdos.h (UNEXEC): New definition.
9636
9637 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9638
9639 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
9640 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
9641
9642 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
9643 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
9644 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
9645 TRY_WINDOW_CHECK_MARGINS.
9646
9647 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
9648 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
9649 width only when it is for padding.
9650
9651 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
9652
9653 * xfns.c (Fx_show_tip): Call try_window in a loop until
9654 fonts_changed_p is zero (Bug#2423).
9655
9656 2010-04-08 Eli Zaretskii <eliz@gnu.org>
9657
9658 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
9659 the end of TEXT_AREA. (Bug#5856)
9660
9661 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9662
9663 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
9664 HAVE_GCONF.
9665
9666 2010-04-08 Eli Zaretskii <eliz@gnu.org>
9667
9668 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
9669 prev.orig_type, for resolving type of NSM. (Bug#5858)
9670
9671 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
9672
9673 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
9674 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
9675 in current_font.
9676 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
9677 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
9678 New functions.
9679 (syms_of_xsettings): Initialize current_font.
9680 defsubr Sfont_get_system_normal_font.
9681
9682 * xsettings.h (Ffont_get_system_normal_font)
9683 (xsettings_get_system_normal_font): Declare.
9684
9685 * xfns.c (extern xlwmenu_default_font): Remove.
9686 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
9687 to xlwmenu.c.
9688
9689 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
9690 menu items in UTF-8.
9691
9692 * xmenu.c: Include xsettings.h and xlwmenu.h if USE_LUCID.
9693 (apply_systemfont_to_menu): New function.
9694 (set_frame_menubar, create_and_show_popup_menu):
9695 Call apply_systemfont_to_menu.
9696
9697 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
9698
9699 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
9700 FRAME_LINE_TO_PIXEL_Y.
9701
9702 * xterm.c (x_set_window_size_1): Don't add border_width/height to
9703 pixelwidth/height.
9704
9705 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
9706
9707 Simplify code for HP machines.
9708 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
9709 for GNU_LINUX, not needed.
9710 (UNEXEC, NEED_BSDTTY): Move definitions...
9711 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
9712
9713 * m/iris4d.h (UNEXEC): Move definition ...
9714 * s/irix6-5.h (UNEXEC): ... here.
9715
9716 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
9717
9718 * xfns.c (set_machine_and_pid_properties): New function.
9719 (Fx_create_frame): Call set_machine_and_pid_properties.
9720
9721 2010-04-03 Eli Zaretskii <eliz@gnu.org>
9722
9723 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
9724 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
9725 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
9726
9727 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
9728 in this function. (Bug#5703)
9729
9730 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
9731
9732 * nsterm.h: Fix last change.
9733
9734 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
9735
9736 * m/intel386.h (NO_REMAP): Move definition ...
9737 * s/msdos.h (NO_REMAP): ... here.
9738
9739 * m/vax.h (CRT0_DUMMIES): Remove, unused.
9740
9741 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
9742 used on those platforms.
9743
9744 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
9745
9746 Remove extern errno declarations.
9747 * xterm.c:
9748 * xrdb.c:
9749 * w32term.c:
9750 * unexec.c:
9751 * unexaix.c:
9752 * sysdep.c:
9753 * process.c:
9754 * lread.c:
9755 * keyboard.c:
9756 * floatfns.c:
9757 * filelock.c:
9758 * fileio.c:
9759 * emacs.c (main):
9760 * ecrt0.c:
9761 * dispnew.c:
9762 * callproc.c:
9763 * buffer.c: Remove errno extern declarations.
9764 * s/netbsd.h (NEED_ERRNO): Remove.
9765
9766 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
9767
9768 Remove all uses of LIBX11_SYSTEM.
9769 * Makefile.in (LIBX11_SYSTEM): Remove.
9770 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
9771 instead.
9772
9773 2010-04-01 Eli Zaretskii <eliz@gnu.org>
9774
9775 Remove support for DJGPP v1.x (bug#5813).
9776
9777 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
9778 * s/msdos.h:
9779 * unexec.c (make_hdr, copy_text_and_data):
9780 * sysdep.c (wait_for_termination, sys_subshell):
9781 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
9782 (IT_set_terminal_modes, __write, _rename, gethostname)
9783 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
9784 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
9785 the value of __DJGPP__.
9786 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
9787 compatibility code.
9788 * lread.c:
9789 * gmalloc.c (memalign):
9790 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
9791 * emacs.c (main):
9792 * dosfns.c (init_dosfns):
9793 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
9794
9795 2010-04-01 Eli Zaretskii <eliz@gnu.org>
9796
9797 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
9798 string with `cursor' property comes from an `after-string'
9799 overlay. (Bug#5816)
9800
9801 2010-04-01 Glenn Morris <rgm@gnu.org>
9802
9803 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
9804 Define as Makefile variables.
9805 (LIBX): Use above variables rather than directly using autoconf.
9806
9807 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
9808
9809 Clean up BSD_SYSTEM use.
9810 * xterm.c:
9811 * process.c:
9812 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
9813 for including <sys/ioctl.h>.
9814 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
9815 code is only used for MSDOS.
9816
9817 2010-03-31 Juri Linkov <juri@jurta.org>
9818
9819 * image.c: Add `Qextension_data'.
9820 (syms_of_image): Initialize and staticpro `Qextension_data'.
9821 (Fimage_metadata): Rename from `Fimage_extension_data'.
9822 (gif_load): Put GIF extension data to the property
9823 `Qextension_data'.
9824
9825 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
9826
9827 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
9828 * nsterm.h: Fix prototype.
9829
9830 2010-03-31 Eli Zaretskii <eliz@gnu.org>
9831
9832 * xdisp.c (highlight_trailing_whitespace): Support highlight of
9833 trailing whitespace in right-to-left rows.
9834
9835 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9836
9837 Get rid of the direct_output optimizations.
9838 * keyboard.c (nonundocount): Remove extern declaration.
9839 (command_loop_1): Remove brittle optimisation for cheap and
9840 common operations.
9841 * xdisp.c (redisplay_internal): Don't bother checking
9842 redisplay_performed_directly_p any more.
9843 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
9844 any more.
9845 * dispnew.c (redisplay_performed_directly_p)
9846 (direct_output_for_insert, direct_output_forward_char):
9847 * dispextern.h (redisplay_performed_directly_p)
9848 (direct_output_for_insert, direct_output_forward_char): Remove.
9849 * cmds.c (nonundocount): Make it static.
9850
9851 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
9852
9853 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
9854
9855 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
9856
9857 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
9858 invisible (Bug#5766).
9859
9860 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
9861
9862 * xdisp.c (x_consider_frame_title, update_window_cursor):
9863 Remove HAVE_NS conditionals.
9864 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
9865
9866 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
9867 filename for the title.
9868 (ns_set_doc_edited): Do nothing if the selected window is a
9869 minibuffer window.
9870
9871 * nsterm.h: Add prototypes for ns_set_name_as_filename and
9872 ns_set_doc_edited.
9873
9874 * nsterm.m: Remove unneeded prototype.
9875
9876 2010-03-31 Glenn Morris <rgm@gnu.org>
9877
9878 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
9879 in the DOC file. (Bug#5336)
9880
9881 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
9882
9883 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
9884
9885 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
9886
9887 * window.c (keys_of_window): Remove redundant/overridden bindings.
9888
9889 2010-03-30 Eli Zaretskii <eliz@gnu.org>
9890
9891 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
9892 Restore original behavior when the iterator is not bidi_p.
9893
9894 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
9895
9896 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
9897
9898 2010-03-30 Eli Zaretskii <eliz@gnu.org>
9899
9900 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
9901 are outside the range of cached character positions.
9902
9903 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
9904
9905 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
9906
9907 2010-03-30 Eli Zaretskii <eliz@gnu.org>
9908
9909 Initial support for bidirectional editing.
9910
9911 * Makefile.in (obj): Include bidi.o.
9912 (bidi.o): New target.
9913
9914 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
9915 ($(BLD)/bidi.$(O)): New target.
9916
9917 * bidi.c: New file.
9918
9919 * buffer.h (struct buffer): New members bidi_display_reordering
9920 and bidi_paragraph_direction.
9921
9922 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
9923 and bidi_paragraph_direction.
9924 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
9925 and bidi-paragraph-direction.
9926 (Fbuffer_swap_text): Swap the values of
9927 bidi_display_reordering and bidi_paragraph_direction.
9928
9929 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
9930 (bidi_type_t, bidi_dir_t): New types.
9931 (bidi_saved_info, bidi_stack, bidi_it): New structures.
9932 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
9933 prev_stop, base_level_stop, and eol_pos.
9934 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
9935 (IT_STACK_SIZE): Enlarge to 5.
9936 (struct glyph_row): New member reversed_p.
9937 <string_buffer_position>: Update prototype.
9938 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
9939 glyph_row if bidi_it.paragraph_dir == R2L.
9940 (struct glyph): New members resolved_level and bidi_type.
9941
9942 * dispnew.c (direct_output_forward_char): Give up if we need bidi
9943 processing or buffer's direction is right-to-left.
9944 (prepare_desired_row): Preserve the reversed_p flag.
9945 (row_equal_p): Compare the reversed_p attributes as well.
9946
9947 * xdisp.c (init_iterator): Initialize it->bidi_p.
9948 Call bidi_init_it and set it->paragraph_embedding from the current
9949 buffer's value of bidi_paragraph_direction.
9950 (reseat_1): Initialize bidi_it.first_elt.
9951 (set_iterator_to_next, next_element_from_buffer): Use the value of
9952 paragraph_embedding to determine the paragraph direction.
9953 (set_iterator_to_next): Under bidi reordering, call
9954 bidi_get_next_char_visually. Call bidi_paragraph_init if the
9955 new_paragraph flag is set in the bidi iterator.
9956 (next_element_from_buffer): If bidi_it.first_elt is set,
9957 initialize paragraph direction and find the first character to
9958 display in the visual order. If reseated to a middle of a line,
9959 prime the bidi iterator starting at the line's beginning.
9960 Handle the situation where we overstepped stop_charpos due to
9961 non-linearity of the bidi iteration. Likewise for when we back up
9962 beyond the previous stop_charpos. When moving across stop_charpos,
9963 record it in prev_stop.
9964 (display_line): Set row->end and it->start for the next row to the
9965 next character in logical order. Always extend reversed_p rows to
9966 the end of line, even if they end at ZV. Copy the reversed_p flag
9967 to the next glyph row. Keep calling set_cursor_from_row for
9968 bidi-reordered rows even if we already have a possible candidate
9969 for cursor position. Set row_end after all the row's glyphs have
9970 been produced, by looping over the glyphs. Record the position
9971 after EOL in it->eol_pos, and use it to set end_pos of the last
9972 row produced for a continued line.
9973 <Qright_to_left, Qleft_to_right>: New variables.
9974 (syms_of_xdisp): Initialize and staticpro them.
9975 (string_buffer_position_lim): New function.
9976 (string_buffer_position): Most of code moved to
9977 string_buffer_position_lim. Last argument and return value are
9978 now EMACS_INT; all callers changed.
9979 (set_cursor_from_row): Rewritten to support bidirectional text and
9980 reversed glyph rows.
9981 (text_outside_line_unchanged_p, try_window_id):
9982 Disable optimizations if we are reordering bidirectional text and the
9983 paragraph direction can be affected by the change.
9984 (append_glyph, append_composite_glyph)
9985 (produce_image_glyph, append_stretch_glyph): Set the
9986 resolved_level and bidi_type members of each glyph.
9987 (append_glyph): If the glyph row is reversed, prepend the glyph
9988 rather than appending it.
9989 (handle_stop_backwards): New function.
9990 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
9991 (reseat): Call handle_stop_backwards to recompute prev_stop and
9992 base_level_stop for the new position.
9993 (handle_invisible_prop): Under bidi iteration, skip invisible text
9994 using bidi_get_next_char_visually. If we are `reseat'ed, init the
9995 paragraph direction. Update IT->prev_stop after skipping
9996 invisible text.
9997 (move_it_in_display_line_to): New variables prev_method
9998 and prev_pos. Compare for strict equality in
9999 BUFFER_POS_REACHED_P.
10000 (try_cursor_movement): Examine all the candidate rows that occlude
10001 point, to return the best match. If rows are bidi-reordered
10002 and point moved backwards, back up to the row that is not a
10003 continuation line, and start looking for a suitable row from
10004 there.
10005
10006 * term.c (append_glyph): Reverse glyphs by pre-pending them,
10007 rather than appending, if the glyph_row's reversed_p flag is set.
10008 Set the resolved_level and bidi_type members of each glyph.
10009
10010 * .gdbinit (pbiditype): New command.
10011 (pgx): Use it to display bidi level and type of the glyph.
10012 (pitx): Display some bidi information about the iterator.
10013 (prowlims, pmtxrows): New commands.
10014
10015 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
10016
10017 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
10018 * s/usg5-4.h (LIBS_DEBUG):
10019 * s/irix6-5.h (C_DEBUG_SWITCH):
10020 * s/gnu-linux.h (LIBS_DEBUG):
10021 * s/darwin.h (LIBS_DEBUG):
10022 * s/bsd-common.h (LIBS_DEBUG):
10023 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
10024 * m/iris4d.h (LIBS_DEBUG):
10025 * m/hp800.h (LIBS_DEBUG): Remove definitions.
10026
10027 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
10028 (LIBS_DEBUG): Remove definition.
10029
10030 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
10031
10032 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
10033 Windows.
10034
10035 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10036
10037 * process.c (Fmake_network_process): Don't call turn_on_atimers around
10038 `connect' (Bug#5723).
10039
10040 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
10041
10042 * process.c (Fmake_network_process): Call `select' for interrupted
10043 `connect' rather than creating new socket (Bug#5173).
10044
10045 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
10046
10047 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
10048
10049 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
10050
10051 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
10052
10053 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10054
10055 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
10056 XLoadQueryFont.
10057
10058 2010-03-24 Kenichi Handa <handa@m17n.org>
10059
10060 * coding.c (decode_coding_ccl): Fix previous change for the
10061 multibyte case.
10062 (encode_coding_ccl): Don't setup ccl program here. Fix for the
10063 case that the output buffer is fullfilled.
10064 (encode_coding): Setup ccl program here.
10065
10066 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
10067
10068 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
10069
10070 Simplify LIBS_MACHINE definitions.
10071 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
10072 * m/iris4d.h (LIBS_MACHINE): Likewise.
10073 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
10074 * s/aix4-2.h (LIBS_SYSTEM): ... here.
10075 * s/netbsd.h: Remove commented out code.
10076
10077 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
10078
10079 Remove dead code dealing with POSIX_SIGNALS.
10080 * atimer.c (set_alarm): Remove dead code, all USG systems define
10081 POSIX_SIGNALS.
10082 * data.c (arith_error): Likewise.
10083 * keyboard.c (input_available_signal, handle_user_signal)
10084 (interrupt_signal): Likewise.
10085 * process.c (sigchld_handler): Likewise.
10086 (create_process): Remove if 0 code. Remove HPUX conditional when
10087 !defined (POSIX_SIGNALS), it cannot be true.
10088 * syssignal.h: Remove USG5_4 and USG conditionals when
10089 !POSIX_SIGNALS, they cannot be true.
10090
10091 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
10092 NO_SOCK_SIGIO, not used anymore.
10093
10094 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
10095
10096 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
10097 support vax on BSDs.
10098
10099 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
10100 * s/aix4-2.h (ORDINARY_LINK): ... here.
10101
10102 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
10103
10104 * Makefile.in (abs_builddir): Define.
10105 (bootstrap_exe): Use it.
10106 (VPATH): Use $(srcdir) instead of @srcdir@.
10107
10108 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
10109
10110 * Makefile.in (bootstrap_exe): Use an absolute name.
10111
10112 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10113
10114 Remove support for old GNU/Linux using libc version 5.
10115 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
10116 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
10117
10118 Consolidate redundant definitions in s/bsd-common.h.
10119 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10120 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10121 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
10122 doing it in all files that include this one.
10123 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10124 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10125 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10126 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10127 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10128 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10129 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
10130 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
10131 (LDAV_SYMBOL, KERNEL_FILE): Remove.
10132
10133 Consolidate redundant definitions.
10134 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
10135 it's undefined in all files that include this one.
10136 (POSIX_SIGNALS): Define here instead of doing it in all files that
10137 include this one.
10138 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10139 (POSIX_SIGNALS): Do not define.
10140 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10141 (POSIX_SIGNALS): Do not define.
10142 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
10143 (POSIX_SIGNALS): Do not define.
10144
10145 Remove support for old UNIX System V systems.
10146 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
10147 * s/usg-5-4-2.h: Remove.
10148
10149 Remove support for Solaris on PPC and for old versions.
10150 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
10151 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
10152 that cancel each other.
10153 * s/sol2-3.h:
10154 * s/sol2-4.h:
10155 * s/sol2-5.h: Remove.
10156 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
10157 (NO_REMAP): Remove, unused.
10158 (UNEXEC): Move definition ...
10159 * s/aix4-2.h (UNEXEC): ... here.
10160
10161 * s/openbsd.h: Remove support for non-ELF and for systems that do
10162 not support shared libraries.
10163 * s/netbsd.h:
10164 * s/freebsd.h: Likewise.
10165
10166 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10167
10168 Remove non-working support for lynxos 3.0.
10169 * s/lynxos.h: Remove file.
10170
10171 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
10172 COFF_BSD_SYMBOLS, nothing defines it anymore.
10173
10174 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
10175
10176 Remove obsolete uses of HAVE_SHM.
10177 * emacs.c (standard_args):
10178 (Fdump_emacs):
10179 (syms_of_emacs): Remove code depending on HAVE_SHM.
10180
10181 * alloc.c: Remove HAVE_SHM dependent definition.
10182
10183 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
10184
10185 2010-03-18 Glenn Morris <rgm@gnu.org>
10186
10187 * emacs.c (USAGE4): Hard-code bug address.
10188 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
10189 (bug_reporting_address): Remove.
10190 (main): Don't call bug_reporting_address.
10191
10192 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
10193 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
10194
10195 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
10196
10197 * xfns.c (Fx_create_frame):
10198 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
10199 on left.
10200
10201 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
10202
10203 * editfns.c (Fformat): Account for string precision when computing
10204 field width (Bug#5710).
10205
10206 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
10207
10208 * xfns.c (Fx_create_frame): Set default to Qright.
10209
10210 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
10211 all window systems.
10212
10213 2010-03-12 Eli Zaretskii <eliz@gnu.org>
10214
10215 These changes remove termcap.c from the build on Posix platforms.
10216 * Makefile.in (termcapobj): Move termcap.o from here...
10217 (MSDOS_OBJ): ...to here.
10218 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
10219 now identical to when LIBS_TERMCAP is defined.
10220
10221 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
10222
10223 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
10224
10225 * config.in: Regenerated. (See top-level ChangeLog.)
10226
10227 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
10228
10229 * Branch for 23.2.
10230
10231 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
10232
10233 Cleanup setup of gl_state in various parts of the code.
10234 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
10235 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
10236 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
10237 (skip_chars):
10238 * regex.c (regex_compile): Use it.
10239 (re_compile_pattern): Don't set gl_state.current_syntax_table since
10240 it's now set in regex_compile when/if we need it.
10241
10242 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
10243
10244 Make it possible to C-g in a tight bytecode loop again (bug#5680).
10245 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
10246 (QUIT): Use it to consolidate code and remove redundancy.
10247 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
10248
10249 * regex.c (regex_compile): Setup gl_state as well.
10250
10251 * syntax.c (skip_chars): Setup gl_state (bug#3823).
10252 (in_classes): Use CONSP before XCAR/XCDR.
10253
10254 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
10255
10256 * keymap.c (Fwhere_is_internal): Use Fequal to compare
10257 definitions, so that keyboard macros are correctly handled
10258 (Bug#5481).
10259
10260 2010-03-02 Eli Zaretskii <eliz@gnu.org>
10261
10262 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
10263 text that could be relocated inside the call to emacs_mule_char.
10264 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
10265 (CODING_DECODE_CHAR): Add a comment describing its purpose.
10266
10267 2010-03-02 Kenichi Handa <handa@m17n.org>
10268
10269 * character.c (parse_str_as_multibyte): Fix handling of the
10270 multibyte form of raw-bytes.
10271 (str_as_multibyte): Likewise.
10272
10273 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
10274 form of raw-bytes.
10275
10276 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
10277
10278 * charset.c (load_charset_map_from_file)
10279 (load_charset_map_from_vector): Zero out allocated
10280 charset_map_entries before using them.
10281
10282 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
10283
10284 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
10285
10286 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
10287
10288 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
10289 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
10290
10291 2010-02-26 Kenichi Handa <handa@m17n.org>
10292
10293 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
10294
10295 * xdisp.c (reseat_to_string): Fix previous change.
10296
10297 2010-02-26 David Reitter <david.reitter@gmail.com>
10298
10299 * nsfont.m (nsfont_draw): ns_antialias_text should be a
10300 Lisp_Object (Bug#4736).
10301
10302 2010-02-25 Kenichi Handa <handa@m17n.org>
10303
10304 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
10305
10306 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
10307
10308 * xterm.c (XTflash): Move declarations before statements.
10309
10310 * gtkutil.c (xg_get_gdk_display): Remove (unused).
10311 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
10312 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
10313 (xg_create_tool_bar): Remove unused variables.
10314 (x_wm_set_size_hint): Move declarations before statements.
10315 (xg_create_frame_widgets): Remove variable grav.
10316
10317 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
10318
10319 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
10320
10321 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
10322
10323 * term.c (fatal): Add a final \n if needed (bug#5596).
10324
10325 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
10326
10327 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
10328
10329 2010-02-18 Glenn Morris <rgm@gnu.org>
10330
10331 * callint.c (Finteractive): Doc fix.
10332
10333 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10334
10335 * coding.c (record_conversion_result):
10336 Handle CODING_RESULT_INSUFFICIENT_DST.
10337 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
10338 memory allocation error.
10339
10340 2010-02-17 Kenichi Handa <handa@m17n.org>
10341
10342 * coding.c (decode_coding_ccl): Don't setup ccl program here.
10343 Fix for the case that the output buffer is fullfilled.
10344 (decode_coding): Setup ccl program here. Keep looping when the
10345 decoder stopped because the output buffer is
10346 fullfilled (bug#5534).
10347
10348 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
10349
10350 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
10351
10352 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
10353 bug #5571.
10354 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
10355 overdrawn.
10356
10357 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
10358
10359 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
10360 doing_interact here.
10361 (ice_connection_closed): New function.
10362 (x_session_check_input, smc_die_CB, ice_io_error_handler)
10363 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
10364 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
10365 returns I/O error.
10366 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
10367 bug #5512.
10368
10369 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
10370
10371 * nsfont.m (nsfont_open): The system's value for the font descent
10372 is negative, so round it down to avoid clipping.
10373
10374 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
10375
10376 * charset.c (load_charset_map_from_file)
10377 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
10378 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
10379
10380 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
10381
10382 * charset.c (load_charset_map_from_file): Allocate large
10383 charset_map_entries structure on the heap rather than the stack.
10384 (Bug#5526).
10385
10386 2010-01-31 Kenichi Handa <handa@m17n.org>
10387
10388 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
10389 size in NAME is invalid, return -1 (Bug#5396).
10390
10391 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
10392
10393 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
10394 <deactivated@gmail.com> (Bug#3605).
10395
10396 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
10397
10398 * fileio.c (Frename_file): Correctly rename symlinks to
10399 directories (Bug#5496).
10400
10401 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
10402
10403 * nsterm.m (ns_ring_bell): Handle visible bell like X.
10404
10405 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
10406
10407 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
10408
10409 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
10410
10411 * frame.c (DEFAULT_ROWS): Change default to 35.
10412
10413 * xfns.c (x_default_font_parameter): Change default XFT font to
10414 monospace-10 (Bug#3643).
10415
10416 2010-01-29 Eli Zaretskii <eliz@gnu.org>
10417
10418 * w32inevt.c (key_event): Remove unnecessary comparison of
10419 event->uChar.AsciiChar with 128.
10420
10421 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
10422
10423 * fileio.c (Frename_file): Fix last change (Bug#5487).
10424
10425 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
10426
10427 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
10428
10429 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
10430
10431 * xfns.c (Fx_create_frame): Remove window size matching code from
10432 2010-01-15.
10433 (x_get_current_desktop, x_get_desktop_workarea): Remove.
10434
10435 2010-01-27 Jason Rumney <jasonr@gnu.org>
10436
10437 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
10438 (key_event): Use unicode for characters 128 and higher (Bug#4567).
10439
10440 2010-01-27 Kenichi Handa <handa@m17n.org>
10441
10442 * regex.c (analyse_first): Fix setting of fastmap for unibyte
10443 pattern string (Bug#4209).
10444
10445 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
10446
10447 * fileio.c (Frename_file): Call copy-directory and
10448 delete-directory for directories, in order to handle cross-device
10449 renaming (Bug#3353).
10450
10451 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
10452
10453 * xfns.c (Fx_create_frame): If frame height is too big, try
10454 sizes 24 and 10. Bug #3643.
10455
10456 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
10457
10458 Try and fix bug#788, hopefully for real this time.
10459 * keymap.c (shadow_lookup): Add `remap' arg.
10460 (describe_map, describe_vector): Update calls to shadow_lookup.
10461 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
10462 `remapped' so this flag is applicable to `sequence'. Be careful to
10463 perform remapping during shadow_lookup check of remapped_sequences.
10464
10465 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
10466
10467 * image.c (png_load): Use png_sig_cmp instead of the obsolete
10468 png_check_sig, which has been removed in libpng 1.4.
10469
10470 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
10471
10472 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
10473 lacks this header file).
10474
10475 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10476
10477 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
10478 as in Emacs 22.
10479
10480 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10481
10482 * lisp.h (make_pure_string): String pointer arg now points to const.
10483
10484 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
10485 args now point to const.
10486
10487 2010-01-22 Eli Zaretskii <eliz@gnu.org>
10488
10489 * lread.c (Fload): Don't treat files without .elc extension as
10490 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
10491 them. (bug#5303)
10492
10493 2010-01-20 Kenichi Handa <handa@m17n.org>
10494
10495 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
10496 treat the source as actual byte sequence.
10497
10498 2010-01-19 Alan Mackenzie <acm@muc.de>
10499
10500 Fix spurious before-change-functions invocation from (insert ?\n).
10501 * textprop.c (set_text_properties): Rename parameter
10502 `signal_after_change_p' to `coherent_change_p', and make the
10503 invocation of `modify_region' conditional on it.
10504
10505 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
10506
10507 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
10508 for debug purpose.
10509 (syms_of_xsettings): Declare xft-settings.
10510
10511 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
10512
10513 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
10514
10515 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10516
10517 * xterm.c (event_handler_gdk): Block input (Bug#5037).
10518
10519 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
10520
10521 * emacs.c (standard_args): Adjust arg priorities to reflect how
10522 they are processed in startup.el.
10523
10524 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
10525
10526 * Makefile.in (lisp, shortlisp): Update.
10527
10528 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
10529
10530 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
10531 code, link the new kboard into all_kboard before running Lisp code,
10532 and protect the new terminal with GCPRO (Bug#5365).
10533 (x_term_init): Remove unused var `atom'.
10534 (x_delete_display, x_delete_terminal): Remove unused var `i'.
10535
10536 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
10537
10538 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
10539 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
10540 to find out usable size of the desktop. Don't make frames larger than
10541 this. Bug #3643.
10542
10543 2010-01-15 Kenichi Handa <handa@m17n.org>
10544
10545 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
10546
10547 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
10548
10549 * nsterm.m (Qnone): Define.
10550
10551 * nsfns.m (Qnone): Move definition to nsterm.m.
10552
10553 2010-01-14 Kenichi Handa <handa@m17n.org>
10554
10555 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
10556 systems.
10557
10558 2010-01-14 Kenichi Handa <handa@m17n.org>
10559
10560 Make auto-composition work on all buffers even if they are
10561 fundamental mode.
10562
10563 * composite.c (Vauto_composition_mode): New variable.
10564 (composition_compute_stop_pos): Check Vauto_composition_mode
10565 instead of Vauto_composition_function.
10566 (composition_adjust_point, Ffind_composition_internal): Likewise.
10567 (syms_of_composite): Declare Lisp variable
10568 "auto-composition-mode" here.
10569
10570 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
10571
10572 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
10573 during call to vendor-specific-keysyms (Bug#5365).
10574
10575 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10576
10577 * keyboard.c (input_available_signal) [SYNC_INPUT]:
10578 Call SIGNAL_THREAD_CHECK (Bug#5333).
10579
10580 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
10581 Call SIGNAL_THREAD_CHECK.
10582
10583 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
10584
10585 Try to fix bug#5314. This is probably not the final word, tho.
10586 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
10587 recent-auto-save-p as a side-effect.
10588 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
10589 * buffer.c (Fkill_buffer, reset_buffer):
10590 * editfns.c (Fsubst_char_in_region):
10591 * fileio.c (Finsert_file_contents, Fdo_auto_save)
10592 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
10593
10594 2010-01-13 Kenichi Handa <handa@m17n.org>
10595
10596 Display buffer name, etc. in mode line by composing correctly.
10597
10598 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
10599 STRING is not nil.
10600 (display_mode_element): Adjust for the change of
10601 decode_mode_spec and display_line.
10602 (decode_mode_spec): Change arg MULTIBYTE to STRING.
10603 (display_string): Handle the case that STRING is non-null and
10604 LISP_STRING is not nil.
10605
10606 * xterm.c (x_draw_composite_glyph_string_foreground):
10607 Pay attention to s->face->overstrike.
10608
10609 * composite.c (composition_reseat_it): Don't check PT if STRING is
10610 non nil.
10611
10612 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10613
10614 * keyboard.c (read_char): Don't apply previous change when current
10615 buffer is unchanged by command execution.
10616
10617 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
10618
10619 * keyboard.c (read_char): Return after executing from special map.
10620
10621 2010-01-12 Glenn Morris <rgm@gnu.org>
10622
10623 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
10624 bug-gnu-emacs rather than emacs-pretest-bug.
10625
10626 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
10627
10628 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
10629 initializing the Lisp variables that depend on them.
10630
10631 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10632
10633 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
10634 Clear areas that will not be updated after change of menu bar lines.
10635 Clear the menu bar window's current matrix when the window gets empty.
10636
10637 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
10638
10639 * intervals.h, textprop.c (extend_property_ranges): Return value
10640 and args changed. Discard properties that begin at or after the
10641 new end (Bug#5306).
10642
10643 * editfns.c (Fformat): Caller changed.
10644
10645 * nsterm.m (ns_set_default_prefs): Delete function.
10646 (syms_of_nsterm): Initialize ns_command_modifier,
10647 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
10648 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
10649
10650 * xdisp.c (pos_visible_p): Check for invisible text at the correct
10651 position (Bug#4040).
10652
10653 2010-01-09 Eli Zaretskii <eliz@gnu.org>
10654
10655 * editfns.c (Ffloat_time): Doc fix.
10656
10657 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
10658
10659 * xfns.c (Fx_create_frame): Don't create frame larger than display
10660 by default bug#3643.
10661
10662 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10663
10664 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
10665 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
10666 windows above internal border.
10667
10668 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
10669 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
10670 windows above internal border.
10671
10672 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
10673 tool bar windows specially.
10674
10675 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
10676
10677 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
10678 specially.
10679 (XTflash): Take account of menu bar height.
10680
10681 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
10682 specially.
10683
10684 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
10685
10686 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
10687 also be true before we can return early (bug #5339).
10688
10689 2010-01-06 David Reitter <david.reitter@gmail.com>
10690
10691 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
10692 (Fns_display_usable_bounds): Rewrite, computing bounds properly
10693 (Bug#3233).
10694
10695 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
10696
10697 * font.c (font_open_entity): Enable chache and call cached_font_ok
10698 for the driver if defined.
10699 (QCuser_spec): New symbol.
10700 (font_spec_from_name): Save name as user-spec.
10701 (font_load_for_lface): Keep user-spec instead of name.
10702 (font_open_by_name): Save name as user-spec.
10703 (syms_of_font): Initialize QCuser_spec.
10704 (font_clear_prop): Clear name if it exists in font (bug#5157).
10705
10706 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
10707 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
10708 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
10709
10710 * font.h (struct font_driver): Add cached_font_ok.
10711
10712 * xterm.c (x_clear_frame): Queue draw for scroll bars.
10713
10714 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
10715
10716 * xterm.c (x_new_font): Move code for setting rows/cols before
10717 resizing ...
10718 (x_set_window_size): ... to here. Bug #2568.
10719
10720 * gtkutil.c (xg_clear_under_internal_border): New function.
10721 (xg_frame_resized, xg_frame_set_char_size):
10722 Call xg_clear_under_internal_border.
10723 (xg_update_scrollbar_pos): Clear under old scroll bar position.
10724
10725 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
10726
10727 * keyboard.c (read_key_sequence): Catch keyboard switch after
10728 making a new tty frame (Bug#5095).
10729
10730 2010-01-05 Kenichi Handa <handa@m17n.org>
10731
10732 * fontset.c (fontset_find_font): Fix getting the frame pointer.
10733
10734 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
10735
10736 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
10737 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
10738 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
10739
10740 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
10741
10742 * dbusbind.c (xd_add_watch): Improve debug message.
10743 (xd_remove_watch): Improve debug message. If DATA is the session
10744 bus, unset D-Bus session environment.
10745 (Fdbus_init_bus): Pass the bus as argument to
10746 dbus_connection_set_watch_functions. (Bug#5283)
10747
10748 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
10749
10750 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
10751
10752 * lread.c (syms_of_lread): Make it clearer that these are the
10753 names of loaded files (Bug#5068).
10754
10755 * eval.c (run_hook_with_args): Handle the case where the global
10756 value has the obsolete single-function form (Bug#5026).
10757
10758 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
10759
10760 * minibuf.c (Fall_completions): Minor optimization.
10761
10762 2009-12-26 Eli Zaretskii <eliz@gnu.org>
10763
10764 * .gdbinit (pgx): Fix display of composite glyphs.
10765 Display cmp.from and cmp.to as well.
10766 (pitx): Fix last change.
10767
10768 2009-12-25 Kenichi Handa <handa@m17n.org>
10769
10770 * composite.h (composition_adjust_point): Update prototype.
10771
10772 * composite.c (composition_reseat_it): Don't make a composition
10773 spanning over point.
10774 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
10775 composable characters.
10776 (composition_adjust_point): New arg NEW_PT. Callers changed.
10777
10778 * keyboard.c (command_loop_1): Force redisplay if the last point
10779 was within a composition.
10780 (adjust_point_for_property): Don't adjust point for automatic
10781 composition when called after buffer modification.
10782
10783 2009-12-19 Eli Zaretskii <eliz@gnu.org>
10784
10785 * .gdbinit (pitx): Don't use enum names, use their values.
10786 Remove reference to non-existing value GET_FROM_COMPOSITION.
10787 (pgx): Don't use enum names, use their values.
10788 (pitmethod): New helper command.
10789 (pitx): Use it to display iteration method.
10790 (pgrowit): New command.
10791
10792 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
10793
10794 Update dependencies in Makefile.in.
10795
10796 * Makefile.in (alloc.o): Depend on termhooks.h.
10797 (atimer.o): Depend on blockinput.h.
10798 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
10799 and frame.h.
10800 (callint.o): Depend on systime.h, coding.h, and composite.h.
10801 (callproc.o): Depend on buffer.h.
10802 (casefiddle.o): Don't depend on charset.h.
10803 (casetab.o): Depend on character.h.
10804 (ccl.o): Depend on composite.h.
10805 (chartab.o): Depend on ccl.h.
10806 (cm.o): Depend on dispextern.h.
10807 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
10808 (coding.o): Don't depend on $(INTERVALS_H).
10809 (composite.o): Don't depend on dispextern.h explicitly (it's in
10810 $(INTERVALS_H)). Depend on ccl.h.
10811 (data.o): Depend on systime.h, coding.h, composite.h,
10812 dispextern.h, font.h, and ccl.h.
10813 (dired.o): Depend on composite.h.
10814 (dispnew.o): Depend on coding.h. Don't depend explicitly on
10815 composite.h (it's in $(INTERVALS_H)).
10816 (doc.o): Depend on systime.h, coding.h, and composite.h.
10817 (editfns.o): Don't depend explicitly on dispextern.h.
10818 (emacs.o): Depend on frame.h and coding.h.
10819 (eval.o): Depend on coding.h, composite.h, and xterm.h.
10820 (fileio.o): Depend on frame.h and commands.h. Don't depend
10821 explicitly on dispextern.h.
10822 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
10823 composite.h.
10824 (fns.o): Don't depend on termhooks.h.
10825 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
10826 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
10827 coding.h, $(INTERVALS_H), window.h, xterm.h.
10828 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
10829 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
10830 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
10831 fontset.h, ccl.h, and ftfont.h.
10832 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
10833 (gtkutil.o): Depend on dispextern.h and composite.h.
10834 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
10835 termhooks.h, and ccl.h.
10836 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
10837 (intervals.o): Depend on systime.h and coding.h.
10838 (keyboard.o): Depend on composite.h and coding.h.
10839 (keymap.o): Depend on coding.h and frame.h.
10840 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
10841 (macros.o): Depend on systime.h, coding.h, and composite.h.
10842 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
10843 and atimer.h.
10844 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
10845 dispextern.h explicitly.
10846 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
10847 Don't depend explicitly on dispextern.h and composite.h.
10848 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
10849 (regex.o): Don't depend on charset.h.
10850 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
10851 (search.o): Don't depend explicitly on composite.h.
10852 (sound.o): Depend on atimer.h and systime.h.
10853 (syntax.o): Don't depend explicitly on composite.h.
10854 (sysdep.o): Depend on coding.h and composite.h.
10855 (term.o): Depend on xterm.h and buffer.h.
10856 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
10857 (textprop.o): Don't depend on dispextern.h explicitly.
10858 (undo.o): Depend on dispextern.h.
10859 (window.o): Depend on coding.h and termhooks.h. Don't depend on
10860 dispextern.h and composite.h explicitly.
10861 (xdisp.o): Depend on ccl.h.
10862 (xfaces.o): Depend on coding.h and ccl.h.
10863 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
10864 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
10865 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
10866 ftfont.h.
10867 (xgselect.o): New dependency.
10868 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
10869 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
10870 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
10871 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
10872 (xsmfns.o): Depend on frame.h and dispextern.h.
10873 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
10874 sysselect.h.
10875
10876 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
10877
10878 * font.c (Fclear_font_cache): Pass correct cache argument to
10879 font_clear_cache.
10880
10881 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
10882
10883 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
10884 twice.
10885
10886 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
10887
10888 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
10889 calling file-remote-p. Reported by Jim Meyering.
10890
10891 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
10892
10893 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
10894 avoid compiler warnings. (Bug #5217)
10895
10896 2009-12-14 Kenichi Handa <handa@m17n.org>
10897
10898 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
10899 in 8-bit encoding.
10900
10901 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
10902
10903 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
10904 tooltip windows.
10905
10906 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
10907
10908 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
10909 Xatom_net_window_type.
10910
10911 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
10912 Xatom_net_window_type.
10913
10914 * xterm.c (my_log_handler): New function.
10915 (x_term_init): Set my_log_handler as log handler during gtk_init
10916 so we can filter out buggy messages. (Bug #5120).
10917
10918 * xterm.c (xg_scroll_callback): Parameter list changed,
10919 use parameter GtkScrollType to determine scroll/line/page.
10920 Only allow dragging if a button < 4 is grabbed (bug #5177).
10921 (xg_end_scroll_callback): New function.
10922 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
10923 xg_create_scroll_bar.
10924
10925 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
10926 (scroll_end_callback): Remove.
10927 (xg_create_scroll_bar): Add parameter end_callback, bind it to
10928 button-release-event. Replace value-changed event with change-value,
10929 bug #5177.
10930 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
10931 bug #5177.
10932
10933 * gtkutil.h (XG_LAST_SB_DATA): Remove.
10934 (xg_create_scroll_bar): Add GCallback end_callback.
10935
10936 * xftfont.c (QClcdfilter): New variable.
10937 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
10938 (syms_of_xftfont): Initialize QClcdfilter.
10939
10940 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
10941
10942 * xsettings.c (struct xsettings): Add member seen.
10943 (parse_xft_settings): Update member seen with what we have read.
10944 Return non-zero if Xft-settings have been parsed, 0 otherwise.
10945 (apply_xft_settings): Only update Xft settings with what member seen
10946 indicates as new.
10947
10948 2009-12-12 Eli Zaretskii <eliz@gnu.org>
10949
10950 * dispextern.h (struct text_pos): Use EMACS_INT.
10951 (struct glyph): Use EMACS_INT for charpos.
10952 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
10953 region_beg_charpos, region_end_charpos,
10954 redisplay_end_trigger_charpos, and also for
10955 iterator_stack_entry.end_charpos and
10956 iterator_stack_entry.stop_charpos.
10957
10958 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
10959
10960 * gtkutil.c (scroll_end_callback): New function (bug #5177).
10961 (xg_create_scroll_bar): Call scroll_end_callback on button release
10962 event (bug #5177).
10963 (xg_event_is_for_scrollbar): != replaced with ==.
10964
10965 2009-12-12 Kenichi Handa <handa@m17n.org>
10966
10967 * ftfont.c (struct ftfont_info): New member matrix.
10968 (ftfont_open): Setup xftfont_info->matrix.
10969 (MFLTFontFT): New member matrix.
10970 (FLOOR, CEIL, ROUND): New macros.
10971 (ftfont_get_metrics): Handle matrix transformation.
10972 (ftfont_shape_by_flt): New arg matrix. Callers changed.
10973
10974 * xftfont.c (struct xftfont_info): New member matrix.
10975 (xftfont_open): Setup xftfont_info->matrix.
10976
10977 2009-12-10 Kenichi Handa <handa@m17n.org>
10978
10979 * xdisp.c (append_space_for_newline): Consider face-remapping.
10980
10981 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
10982
10983 * xsettings.c: Include "keyboard.h".
10984
10985 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
10986
10987 Fix implicit function declarations.
10988 * cmds.c: Include "frame.h".
10989 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
10990 * frame.h: Move declaration of delete_frame outside of
10991 HAVE_WINDOW_SYSTEM.
10992
10993 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
10994
10995 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
10996
10997 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
10998 GTK builds.
10999
11000 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
11001
11002 * unexelf.c (unexec): Don't search for .data twice.
11003
11004 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
11005
11006 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
11007 if push failed.
11008 (handle_line_prefix): Set avoid_cursor_p here. Check return value
11009 of push_display_prop (Bug#5000).
11010
11011 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
11012 value of font_list_entities (Bug#5085).
11013
11014 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
11015
11016 Fix `string-to-number' to deal consistently with integers and floats.
11017 * lread.c (isfloat_string): New argument ignore_trailing to accept all
11018 trailing characters, not just whitespace.
11019 (read1): Pass new arg 0 to keep old behavior.
11020 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
11021 trailing chars, as it is already done for integers. Doc fixes.
11022 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
11023
11024 2009-12-04 Eli Zaretskii <eliz@gnu.org>
11025
11026 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
11027 Delete unused enumeration value.
11028
11029 2009-12-03 Eli Zaretskii <eliz@gnu.org>
11030
11031 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
11032
11033 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
11034
11035 * process.c (Fmake_network_process): Fix up the tests for
11036 "connectionless socket", so they DTRT for seqpacket sockets as well.
11037
11038 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
11039
11040 * process.c (Qseqpacket): New symbol.
11041 (HAVE_SEQPACKET): New macro.
11042 (Fmake_network_process): Accept new :type `seqpacket'.
11043 (init_process): Add `seqpacket' feature when applicable.
11044 (syms_of_process): Initialize Qseqpacket.
11045
11046 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11047
11048 * font.c (font_load_for_lface, font_open_by_name): Don't store name
11049 if entity is Qnil.
11050
11051 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
11052
11053 * print.c (print_preprocess): Preprocess the key_and_value table of
11054 hashtables, even tho they're "hidden" (bug#5082).
11055
11056 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
11057
11058 * frame.c (frame_make_pointer_invisible)
11059 (frame_make_pointer_visible): Declare f before statements.
11060
11061 2009-11-28 Eli Zaretskii <eliz@gnu.org>
11062
11063 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
11064 omitted dependencies on lisp.h.
11065
11066 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
11067
11068 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
11069 is NULL.
11070
11071 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
11072
11073 * frame.c (frame_make_pointer_invisible)
11074 (frame_make_pointer_visible): Just return if there isn't any selected
11075 frame.
11076
11077 * search.c (simple_search): Remove warning by making *p const.
11078
11079 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
11080
11081 * xdisp.c (power_letter): Remove duplicate const.
11082
11083 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
11084
11085 * term.c (delete_tty): Remove check for last terminal (bug#4970).
11086
11087 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
11088 defaults (bug #5025).
11089
11090 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
11091
11092 * insdel.c (adjust_markers_for_delete): Move it in the
11093 right direction! (bug#4803)
11094
11095 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11096
11097 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
11098
11099 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
11100
11101 2009-11-24 Glenn Morris <rgm@gnu.org>
11102
11103 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
11104
11105 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
11106
11107 * Makefile.in: Must create deps for ecrt0.o in its rule.
11108
11109 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
11110 because that is what Gtk+ font dialog understands.
11111
11112 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
11113 of Fcopy_sequence.
11114 (font_open_by_name): Put name given into QCname for font-object returned.
11115
11116 * frame.c (x_set_font): Save original font name as frame parameter
11117 font-parameter.
11118
11119 * xsettings.c (set_default_xft_settings): New function.
11120 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
11121 is found.
11122
11123 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
11124
11125 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
11126 searching backwards through multibyte buffer.
11127
11128 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
11129
11130 * xterm.c: #include xgselect.h.
11131 (x_initialize): Call xgselect_initialize.
11132
11133 * xsettings.c (something_changedCB): C++ comments => C comments.
11134 (init_gconf): Do not deal with any GLib file descriptors, xg_select
11135 does that now.
11136
11137 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
11138 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
11139 (scroll_bar_button_cb): Remove.
11140 (create_menus): C++ comments => C comments. Don't bind grab-notify
11141 event.
11142 (xg_create_scroll_bar): Don't bind button-press-event and
11143 button-release-event.
11144
11145 * process.c: Include xgselect.h if defined (USE_GTK) ||
11146 defined (HAVE_GCONF).
11147 (wait_reading_process_output): Call xg_select for the same condition.
11148
11149 * xgselect.c (xg_select): New function to better integrate with
11150 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
11151
11152 * xgselect.h: New file, declare xg_select, xgselect_initialize.
11153
11154 * Makefile.in (XOBJ): Add xgselect.o.
11155
11156 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
11157
11158 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
11159 Remove ignored second argument. All callers changed.
11160 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
11161 (RE_STRING_CHAR_AND_LENGTH): Likewise.
11162 * xdisp.c (string_char_and_length): Likewise.
11163
11164 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
11165
11166 * xterm.c (x_new_font):
11167 * print.c (print_object):
11168 * cmds.c (Fself_insert_command): Move declarations before statements.
11169
11170 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
11171
11172 * s/cygwin.h: Remove unneeded linker flags.
11173
11174 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
11175
11176 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
11177
11178 * xsettings.h: Declare xsettings_get_system_font.
11179
11180 * xsettings.c (xsettings_get_system_font): New function.
11181 (init_gconf): No use initiating gconf unless we have Xft also.
11182 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
11183 HAVE_GCONF.
11184
11185 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
11186 add a blank entry so it doesn't collapse into nothing.
11187
11188 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11189
11190 * lread.c (Funintern): Comment out last change.
11191
11192 2009-11-19 Richard Stallman <rms@gnu.org>
11193
11194 * lread.c (Funintern): Error if symbol is t or nil.
11195
11196 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
11197
11198 * insdel.c (make_gap_larger): Don't make as many assumptions about the
11199 representation of Lisp integers.
11200 Reported by MJ Chan <mjchan.inbox@gmail.com>.
11201
11202 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11203
11204 * lisp.h: Remove declaration of Ffont_get_system_font.
11205 * xfns.c: Move include of "xsettings.h".
11206 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
11207
11208 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11209
11210 * xsettings.c (something_changedCB, Ffont_get_system_font):
11211 Check use_system_font.
11212 (syms_of_xsettings): DEFVAR font-use-system-font.
11213
11214 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
11215
11216 * xfns.c (x_default_font_parameter): Remove dead assignment.
11217
11218 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
11219
11220 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
11221
11222 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
11223 not have FC_LCD_*. #define them if not there.
11224
11225 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
11226
11227 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
11228
11229 * xterm.c (handle_one_xevent): Call xft_settings_event for
11230 ClientMessage, PropertyNotify and DestroyNotify.
11231 (x_term_init): If we have XFT, get DPI from Xft.dpi.
11232 Call xsettings_initialize.
11233
11234 * xftfont.c (xftfont_fix_match): New function.
11235 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
11236 Call xftfont_fix_match after XftFontMatch.
11237
11238 * xfont.c (xfont_driver): Initialize all members.
11239
11240 * xfns.c (x_default_font_parameter):
11241 Try font from Ffont_get_system_font.
11242 Do not get font from x_default_parameter if we got one from
11243 Ffont_get_system_font.
11244 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
11245
11246 * w32font.c (w32font_driver): Initialize all members.
11247
11248 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
11249
11250 * lisp.h: Declare syms_of_xsettings.
11251
11252 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
11253 Handle CONFIG_CHANGED_EVENT.
11254
11255 * ftfont.c (ftfont_filter_properties): New function.
11256
11257 * frame.c (x_set_font): Remove unused variable lval.
11258
11259 * font.h (struct font_driver): Add filter_properties.
11260
11261 * font.c (font_put_extra): Don't return if val is nil, it means
11262 boolean option is off.
11263 (font_parse_fcname): Collect all extra properties in extra_props
11264 and call filter_properties for all drivers with extra_props and
11265 font as parameter.
11266 (font_open_entity): Do not use cache, it does not pick up new
11267 fontconfig settings like hinting.
11268 (font_load_for_lface): If spec had a name in it, store it in entity.
11269
11270 * emacs.c (main): Call syms_of_xsettings.
11271
11272 * config.in: HAVE_GCONF is new.
11273
11274 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
11275 xsettings.o is new.
11276
11277 2009-11-17 Kenichi Handa <handa@m17n.org>
11278
11279 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
11280 back to the default font in case that no suitable font is found.
11281
11282 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
11283
11284 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
11285 Suggested by Chad Brown <yandros@mit.edu>.
11286 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
11287
11288 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
11289
11290 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
11291
11292 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
11293
11294 * Makefile.in: Ignore errors from mkdir when creating deps directory.
11295
11296 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
11297
11298 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
11299 has a parent.
11300
11301 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
11302 dependency files in deps/. Include those files into Makefile.
11303
11304 * config.in: Generated (AUTO_DEPEND).
11305
11306 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
11307
11308 * dbusbind.c (Vdbus_registered_objects_table): Rename from
11309 Vdbus_registered_functions_table, because it contains also
11310 properties. Fix docstring.
11311 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
11312
11313 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
11314
11315 * alloc.c (mark_object): Don't reprocess marked strings.
11316 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
11317 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
11318
11319 2009-11-13 Kenichi Handa <handa@m17n.org>
11320
11321 * category.c (word_boundary_p): Adjust for the change of the
11322 semantics of Vword_combining_categories.
11323 (Vword_combining_categories): Describe the slight change of the
11324 semantics.
11325
11326 2009-11-13 Eli Zaretskii <eliz@gnu.org>
11327
11328 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
11329
11330 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
11331
11332 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
11333
11334 * xdisp.c (syms_of_xdisp): Fix typo in last change.
11335
11336 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
11337
11338 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
11339
11340 2009-11-11 David Reitter <david.reitter@gmail.com>
11341
11342 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
11343 variables to fix 2009-11-09 change.
11344
11345 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
11346
11347 * process.c (ifflag_def): Make flag_sym constant.
11348 (Fnetwork_interface_info): Use a constant pointer.
11349 (ifflag_table):
11350 * xfns.c (cursor_bits):
11351 * xdisp.c (power_letter):
11352 * termcap.c (speeds, esctab):
11353 * sysdep.c (baud_convert):
11354 * keyboard.c (lispy_accent_codes, modifier_names):
11355 * image.c (xbm_format, xpm_format, pbm_format, png_format)
11356 (jpeg_format, tiff_format, gif_format, svg_format)
11357 (interlace_start, interlace_increment, gs_format):
11358 * gtkutil.c (separator_names):
11359 * fringe.c (swap_nibble):
11360 * fns.c (base64_value_to_char, base64_char_to_value):
11361 * fileio.c (make_temp_name_tbl):
11362 * coding.c (suffixes): Make constant.
11363
11364 * frame.c (make_initial_frame):
11365 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
11366 build_string.
11367 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
11368
11369 * s/freebsd.h:
11370 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
11371
11372 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
11373 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
11374
11375 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
11376 * xterm.c (syms_of_xterm):
11377 * xfaces.c (syms_of_xfaces):
11378 * xdisp.c (syms_of_xdisp):
11379 * lread.c (syms_of_lread):
11380 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
11381 build_string.
11382
11383 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
11384
11385 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11386
11387 * fns.c (Fplist_get): Merge the active and the commented out code.
11388
11389 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11390
11391 * keyboard.h: Declare timer_check.
11392
11393 * keyboard.c (timer_check_2): New function that does what the old
11394 timer_check did.
11395 (timer_check): Call timer_check_2 until -1 or a non-zero time is
11396 returned, i.e. don't return -1 with timers pending.
11397
11398 * process.c: Remove extern declaration of timer_check.
11399
11400 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
11401 even if timer_check returned -1.
11402
11403 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
11404 xg_dialog_data.
11405 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
11406 the event loop.
11407 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
11408 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
11409 Destroy the dialog after xg_dialog_run.
11410
11411 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
11412
11413 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
11414
11415 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
11416
11417 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
11418
11419 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
11420
11421 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
11422
11423 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
11424
11425 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
11426 w32menu.c, and nsmenu.m.
11427 Simplify the obsolete case where position is nil.
11428 (cleanup_popup_menu): New function, moved from nsmenu.m.
11429 (struct skp): Remove slot `notreal'.
11430 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
11431 adjust callers.
11432 (single_menu_item): Adjust call to parse_menu_item.
11433 (syms_of_menu): Defsubr x-popup-menu.
11434 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
11435 (keymap_panes): Don't export any more.
11436 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
11437 (xmenu_show): Declare.
11438 * keyboard.c (parse_menu_item): Remove arg `notreal'.
11439 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
11440 * keyboard.h (parse_menu_item): Update declaration.
11441 * xmenu.c (Fx_popup_menu): Remove.
11442 (syms_of_xmenu): Don't defsubr x-popup-menu.
11443 * w32menu.c (Fx_popup_menu): Remove.
11444 (syms_of_w32menu): Don't defsubr x-popup-menu.
11445 * nsmenu.m (cleanup_popup_menu): Remove.
11446 (ns_menu_show): Rename from ns_popup_menu and remove all the code
11447 moved to menu.c's Fx_popup_menu.
11448 (Fx_popup_menu): Remove.
11449 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
11450 menu_items (it's done in menu.c already).
11451
11452 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
11453
11454 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
11455 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
11456
11457 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
11458
11459 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
11460 xmenu_show. Hide any tooltip before opening a menu.
11461 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
11462 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
11463
11464 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11465
11466 Let integers use up 2 tags to give them one extra bit and thus double
11467 their range.
11468 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
11469 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
11470 New macros.
11471 (enum Lisp_Type): Use them. Give explicit values.
11472 (Lisp_Type_Limit): Remove.
11473 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
11474 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
11475 Pay attention to USE_2_TAGS_FOR_INTS.
11476 (INTEGERP): Use LISP_INT_TAG_P.
11477 * fns.c (internal_equal): Simplify the default case.
11478 (sxhash): Use case_Lisp_Int.
11479 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
11480 any more.
11481 (Ftype_of): Use case_Lisp_Int.
11482 (store_symval_forwarding): Take into account the fact that Ints can
11483 now have more than one tag.
11484 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
11485 (buffer_slot_type_mismatch):
11486 * xfaces.c (face_attr_equal_p):
11487 * print.c (print_object):
11488 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
11489 Use case_Lisp_Int.
11490
11491 2009-11-06 Eli Zaretskii <eliz@gnu.org>
11492
11493 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
11494
11495 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
11496 warning.
11497
11498 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
11499
11500 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
11501
11502 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
11503
11504 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
11505 ButtonPressRelease and MotionNotify (bug#4870).
11506
11507 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
11508
11509 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
11510
11511 * xterm.c (syms_of_xterm):
11512 * xselect.c (syms_of_xselect):
11513 * xmenu.c (syms_of_xmenu):
11514 * xfns.c (syms_of_xfns):
11515 * xfaces.c (syms_of_xfaces):
11516 * xdisp.c (syms_of_xdisp):
11517 * window.c (syms_of_window):
11518 * w32fns.c (syms_of_w32fns):
11519 * undo.c (syms_of_undo):
11520 * textprop.c (syms_of_textprop):
11521 * terminal.c (syms_of_terminal):
11522 * syntax.c (syms_of_syntax):
11523 * sound.c (syms_of_sound):
11524 * search.c (syms_of_search):
11525 * print.c (syms_of_print):
11526 * minibuf.c (syms_of_minibuf):
11527 * macros.c (syms_of_macros):
11528 * keymap.c (syms_of_keymap, initial_define_key)
11529 (initial_define_lispy_key):
11530 * keyboard.c (syms_of_keyboard):
11531 * insdel.c (syms_of_insdel):
11532 * image.c (syms_of_image):
11533 * fringe.c (syms_of_fringe):
11534 * frame.c (syms_of_frame):
11535 * fontset.c (syms_of_fontset):
11536 * fns.c (syms_of_fns):
11537 * fns.c (syms_of_fns):
11538 * fileio.c (syms_of_fileio):
11539 * fileio.c (syms_of_fileio):
11540 * eval.c (syms_of_eval):
11541 * doc.c (syms_of_doc):
11542 * dispnew.c (syms_of_display):
11543 * dired.c (syms_of_dired):
11544 * dbusbind.c (syms_of_dbusbind):
11545 * data.c (syms_of_data):
11546 * composite.c (syms_of_composite):
11547 * coding.c (syms_of_coding):
11548 * cmds.c (syms_of_cmds):
11549 * charset.c (define_charset_internal, syms_of_character):
11550 * ccl.c (syms_of_ccl):
11551 * category.c (syms_of_category, init_category_once):
11552 * casetab.c (syms_of_casetab):
11553 * casefiddle.c (syms_of_casefiddle):
11554 * callint.c (syms_of_callint):
11555 * bytecode.c (syms_of_bytecode):
11556 * buffer.c (keys_of_buffer, syms_of_buffer):
11557 * alloc.c (syms_of_alloc):
11558 * process.c (syms_of_process, init_process):
11559 * lread.c (syms_of_lread, init_obarray):
11560 * font.c (build_style_table):
11561 * emacs.c (syms_of_emacs, main): Replace calls to intern with
11562 intern_c_string, calls to make_pure_string with
11563 make_pure_c_string. Use pure_cons instead of Fcons.
11564
11565 * process.c (socket_options): Make it const.
11566 (set_socket_option, init_process): Use a const pointer.
11567
11568 * lread.c (intern_c_string): New function.
11569 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11570 (defvar_int): Uset it. Make the name const char*.
11571
11572 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
11573 (defvar_int): Update prototypes.
11574 (DEFUN, EXFUN): Support for prototypes is now required.
11575 (intern_c_string): New prototype.
11576 (struct Lisp_Subr): Make symbol_name constant.
11577
11578 * font.c (struct table_entry): Remove unused member. Make NAMES
11579 constant.
11580 (weight_table, slant_table, width_table): Make constant.
11581
11582 * emacs.c (struct standard_args): Make name and longname constant.
11583
11584 * character.h (DEFSYM): Use intern_c_string.
11585
11586 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
11587
11588 * alloc.c (make_pure_c_string): New function.
11589
11590 * eval.c (Fautoload): Purecopy all arguments.
11591
11592 2009-11-05 Kenichi Handa <handa@m17n.org>
11593
11594 * fileio.c (Finsert_file_contents): Be sure set coding-system of
11595 the buffer in case of replace.
11596
11597 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
11598
11599 * puresize.h (BASE_PURESIZE): Increase to 1620000.
11600
11601 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
11602
11603 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
11604 when applicable (bug#4851).
11605
11606 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
11607 (P_): Support for prototypes is now required.
11608
11609 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
11610
11611 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
11612 (Bug#4827).
11613
11614 2009-10-30 Eli Zaretskii <eliz@gnu.org>
11615
11616 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
11617
11618 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
11619
11620 * puresize.h (BASE_PURESIZE): Increase to 1470000.
11621
11622 * lread.c (Fload): Purecopy the file name when building
11623 Vpreloaded_file_list.
11624
11625 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
11626
11627 * w32fns.c (syms_of_w32fns): Change default value of
11628 w32-scroll-lock-modifier to nil. (Bug#2827)
11629
11630 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11631
11632 * minibuf.c (Fall_completions): Fix typos in docstring.
11633
11634 2009-10-26 Andreas Schwab <schwab@redhat.com>
11635
11636 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
11637
11638 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
11639
11640 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
11641 For delta < 0, skip check that only makes sense when the mini-window
11642 is going to be enlarged. (Bug#4534)
11643
11644 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
11645
11646 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
11647 string in menu maps (Bug#4471).
11648
11649 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
11650
11651 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
11652 FRAME_NS_VIEW on terminal frames (Bug#4765).
11653
11654 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
11655
11656 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
11657 DBUS_TYPE_UINTnn separately to get proper sign extension.
11658
11659 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
11660 can properly handle unsigned types.
11661 (make_uid, make_gid): Remove.
11662
11663 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
11664 types again.
11665
11666 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
11667 (system_process_attributes): Likewise.
11668
11669 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
11670
11671 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
11672
11673 * eval.c (Fautoload): Purecopy the filename. Simplify.
11674
11675 * category.c (Fdefine_category): Purecopy docstring.
11676
11677 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
11678
11679 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
11680
11681 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
11682
11683 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
11684
11685 * window.c (Fwindow_edges, Fwindow_pixel_edges)
11686 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
11687 (Bug#4775).
11688
11689 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
11690
11691 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
11692 (init_fileio_once):
11693 * lisp.h (init_fileio_once): Remove.
11694 * emacs.c (main): Don't call init_fileio_once.
11695
11696 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
11697
11698 * puresize.h (BASE_PURESIZE): Increase to 1430000.
11699
11700 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
11701
11702 * doprnt.c (doprnt): Fix overflow check.
11703
11704 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
11705
11706 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
11707
11708 * xterm.h (x_wait_for_event): Declare it.
11709
11710 * xterm.c (pending_event_wait): New variable.
11711 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
11712 see pending_event_wait.eventtype.
11713 (handle_one_xevent): Don't change gravity when parent changes.
11714 (x_new_font): Call change_frame_size with new rows/columns before we
11715 try to resize the frame.
11716 (x_wait_for_event): New function.
11717 (x_set_window_size_1): Don't change gravity unless change_gravity
11718 is set.
11719 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
11720 don't change frame size, instead wait for the ConfigureNotify.
11721 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
11722 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
11723 (x_initialize): Initialize pending_event_wait.
11724
11725 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
11726 size.
11727
11728 * widget.c (EmacsFrameSetValues): Add comment.
11729 (EmacsFrameSetCharSize): Just call x_set_window_size.
11730
11731 * gtkutil.c (xg_frame_set_char_size): Flush events and call
11732 x_wait_for_event.
11733 (flush_and_sync): Remove again.
11734 (xg_get_font_name): Suggest monospace if no previous font is known.
11735
11736 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
11737
11738 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
11739 8th bit, since that only made sense in the ASCII world (bug#4751).
11740
11741 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11742
11743 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
11744 processing pending events when event is filtered for input method.
11745 (Bug#3681)
11746
11747 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
11748
11749 * fns.c: Add #endif accidentally removed in previous change.
11750
11751 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11752
11753 * fns.c: Remove code for unsupported system: MAC_OS.
11754 * image.c: Likewise. Include setjmp.h.
11755
11756 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
11757
11758 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
11759 pixel -1 (bug #4742).
11760
11761 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
11762
11763 * process.c (create_pty): Remove conditionals for no longer
11764 supported systems: UNIPLUS and RTU.
11765
11766 * xterm.c:
11767 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
11768
11769 * alloc.c: Do not define struct catchtag.
11770 * eval.c: Move struct catchtag definition ...
11771 * lisp.h: ... here.
11772
11773 * image.c: Move png.h #include earlier to avoid warnings.
11774
11775 * xterm.c:
11776 * xsmfns.c:
11777 * xselect.c:
11778 * xrdb.c:
11779 * xmenu.c:
11780 * xftfont.c:
11781 * xfont.c:
11782 * xfns.c:
11783 * xfaces.c:
11784 * xdisp.c:
11785 * window.c:
11786 * widget.c:
11787 * w32xfns.c:
11788 * w32uniscribe.c:
11789 * w32term.c:
11790 * w32select.c:
11791 * w32reg.c:
11792 * w32proc.c:
11793 * w32menu.c:
11794 * w32inevt.c:
11795 * w32heap.c:
11796 * w32font.c:
11797 * w32fns.c:
11798 * w32console.c:
11799 * w32.c:
11800 * w16select.c:
11801 * vm-limit.c:
11802 * unexsol.c:
11803 * unexec.c:
11804 * unexcw.c:
11805 * unexaix.c:
11806 * undo.c:
11807 * tparam.c:
11808 * textprop.c:
11809 * terminfo.c:
11810 * terminal.c:
11811 * termcap.c:
11812 * term.c:
11813 * syntax.c:
11814 * sound.c:
11815 * sheap.c:
11816 * search.c:
11817 * scroll.c:
11818 * region-cache.c:
11819 * regex.c:
11820 * ralloc.c:
11821 * process.c:
11822 * print.c:
11823 * nsterm.m:
11824 * nsselect.m:
11825 * nsmenu.m:
11826 * nsimage.m:
11827 * nsfont.m:
11828 * nsfns.m:
11829 * msdos.c:
11830 * minibuf.c:
11831 * menu.c:
11832 * marker.c:
11833 * macros.c:
11834 * keymap.c:
11835 * keyboard.c:
11836 * intervals.c:
11837 * insdel.c:
11838 * indent.c:
11839 * gtkutil.c:
11840 * ftxfont.c:
11841 * ftfont.c:
11842 * fringe.c:
11843 * frame.c:
11844 * fontset.c:
11845 * font.c:
11846 * fns.c:
11847 * floatfns.c:
11848 * filelock.c:
11849 * fileio.c:
11850 * emacs.c:
11851 * editfns.c:
11852 * dosfns.c:
11853 * doprnt.c:
11854 * doc.c:
11855 * dispnew.c:
11856 * dired.c:
11857 * dbusbind.c:
11858 * data.c:
11859 * composite.c:
11860 * coding.c:
11861 * cmds.c:
11862 * cm.c:
11863 * chartab.c:
11864 * charset.c:
11865 * character.c:
11866 * ccl.c:
11867 * category.c:
11868 * casetab.c:
11869 * casefiddle.c:
11870 * callproc.c:
11871 * callint.c:
11872 * bytecode.c:
11873 * buffer.c:
11874 * atimer.c: Include setjmp.h. (Bug#4643)
11875
11876 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
11877
11878 Remove leftover table unibyte_to_multibyte_table.
11879 * character.c (unibyte_to_multibyte_table): Remove.
11880 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
11881 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
11882 * character.h (UNIBYTE_TO_CHAR): New macro.
11883 (MAKE_CHAR_MULTIBYTE): Use it.
11884 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
11885 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
11886 (message_dolog, set_message_1):
11887 * search.c (Freplace_match):
11888 * editfns.c (Fcompare_buffer_substrings):
11889 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
11890 (concat):
11891 * insdel.c (copy_text, count_size_as_multibyte):
11892 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
11893 * term.c (produce_glyphs):
11894 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
11895 * regex.c (RE_CHAR_TO_MULTIBYTE):
11896 * cmds.c (internal_self_insert):
11897 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
11898
11899 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
11900
11901 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
11902
11903 * puresize.h (BASE_PURESIZE): Increase to 1310000.
11904
11905 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
11906
11907 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
11908
11909 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
11910
11911 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
11912 still needed under Tiger.
11913
11914 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
11915
11916 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
11917 __Apple__.
11918
11919 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
11920
11921 2009-10-15 Kenichi Handa <handa@m17n.org>
11922
11923 * print.c (print_object): Escape a symbol like "2E10" too.
11924
11925 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
11926
11927 Cleanups and changes for 64-bit compile under Snow Leopard.
11928 Based on suggestions by Erik Charlebois.
11929
11930 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
11931
11932 * nsfont.m (ns_char_width): Replace deprecated call.
11933 (ns_findfonts, nsfont_list_family): Use long format in printf, and
11934 cast argument.
11935 (nsfont_open): Use ns_char_width() everywhere.
11936 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
11937
11938 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
11939
11940 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
11941 where appropriate.
11942
11943 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
11944 where appropriate.
11945 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
11946 Use stringWithUTF8String.
11947 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
11948
11949 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
11950 Add formal protocol mention to inheritance.
11951 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
11952
11953 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
11954 Fix printf format.
11955 (ns_query_color): Use CGFloat where appropriate.
11956 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
11957 (EmacsScroller-mouseDown:): Use long format in printf, and cast
11958 argument.
11959
11960 * config.in (NS_HAVE_NSINTEGER): Drop.
11961
11962 * dbusbind.c (dbus-method-return-internal)
11963 (dbus-method-error-internal): Use long format in printf, and cast
11964 argument.
11965
11966 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
11967 in printf, and cast argument.
11968
11969 * process.c (list_processes_1): Use long format in printf, and
11970 cast argument.
11971
11972 2009-10-11 Glenn Morris <rgm@gnu.org>
11973
11974 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
11975
11976 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
11977
11978 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
11979 menu bar with a small width so it doesn't enlarge the frame.
11980
11981 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
11982
11983 * fontset.c (Fset_fontset_font): Fix typos in error messages.
11984
11985 2009-10-06 Glenn Morris <rgm@gnu.org>
11986
11987 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
11988 SOME_MACHINE_LISP (this enters indirectly via DOC).
11989
11990 2009-10-05 Eli Zaretskii <eliz@gnu.org>
11991
11992 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
11993
11994 2009-10-04 Eli Zaretskii <eliz@gnu.org>
11995
11996 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
11997 Doc fix.
11998
11999 2009-10-03 Martin Rudalics <rudalics@gmx.at>
12000
12001 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
12002
12003 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
12004
12005 * lisp.h (Qdelete_directory_internal): Remove, because it is not
12006 used anymore outside fileio.c.
12007
12008 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
12009
12010 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
12011
12012 * lisp.h (Qdelete_directory_internal):
12013 Declare, instead of Qdelete_directory.
12014
12015 * w32fns.c (Fsystem_move_file_to_trash): Use it.
12016
12017 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
12018
12019 * eval.c (Fcalled_interactively_p): Add `kind' argument.
12020
12021 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
12022
12023 * fileio.c (Fdelete_directory_internal): Rename from
12024 Fdelete_directory. It is not a command anymore. It has no file
12025 name handler.
12026
12027 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
12028
12029 * xdisp.c (get_next_display_element): Use an enum in last change.
12030
12031 2009-09-28 Kenichi Handa <handa@m17n.org>
12032
12033 * xdisp.c (get_next_display_element): Pay attention to
12034 unibyte_display_via_language_environment in handling
12035 Vnobreak_char_display.
12036
12037 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
12038
12039 * nsterm.h (ns_app_name): New extern variable.
12040
12041 * nsterm.m (ns_app_name): New variable.
12042 (ns_term_init): Set and use it.
12043 (ns_term_shutdown): Use it.
12044
12045 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
12046 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
12047
12048 * nsfns.m (ns_set_name_iconic, ns_set_name)
12049 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
12050 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
12051
12052 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
12053 Remove double-casting in client_data comparison.
12054
12055 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12056
12057 * keyboard.c (make_lispy_event): Remember last wheel direction.
12058 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
12059
12060 2009-09-26 Glenn Morris <rgm@gnu.org>
12061
12062 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
12063 internal.elc. Add term/pc-win.elc.
12064 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
12065 term/x-win.elc.
12066 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
12067 term/w32-win.elc.
12068 (NS_SUPPORT): New.
12069 (lisp): Add NS_SUPPORT.
12070 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
12071
12072 2009-09-25 David Reitter <david.reitter@gmail.com>
12073
12074 * nsmenu.m (EmacsMenu-clear): Recognize application menu
12075 on Mac OS X 10.6+ (bug#4513).
12076
12077 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12078
12079 * frame.c (xrdb_get_resource): Return nil for empty string resources;
12080 some parts of Emacs code (like font selection) don't grok them.
12081 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
12082
12083 2009-09-24 Andreas Schwab <schwab@redhat.com>
12084
12085 * coding.c (decode_coding_iso_2022): Fix operator precedence.
12086
12087 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
12088
12089 * dired.c (Fdirectory_files): Fix typo in docstring.
12090
12091 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12092
12093 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
12094 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
12095 (EmacsScroller-setPosition:portion:whole:): Remove -display call
12096 under GNUstep.
12097 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
12098
12099 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
12100 glyph advancement.
12101
12102 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
12103
12104 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
12105 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
12106
12107 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
12108 deleted (bug #4492).
12109
12110 * nsfont.m (Vns_reg_to_script): New lisp variable.
12111 (syms_of_nsfont): Declare it.
12112 (ns_registry_to_script): New function.
12113 (ns_get_req_script): Call it.
12114 (ns_findfonts): Don't give up on non-unicode registry.
12115
12116 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
12117
12118 2009-09-20 Tom Tromey <tromey@redhat.com>
12119
12120 * eval.c (find_handler_clause): Make stack-trace-on-error work in
12121 batch mode (bug#4228).
12122
12123 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
12124
12125 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
12126 carefully. (Bug #4339)
12127
12128 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
12129
12130 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
12131
12132 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
12133
12134 * emacs.c (inhibit_x_resources): Update doc string for NS.
12135 (main) [HAVE_NS]: Don't process --no-init-file option.
12136 Remove legacy code for -NXHost. Fix error printf in daemon case.
12137
12138 * nsterm.h (ns_no_defaults): Remove.
12139
12140 * nsterm.m (ns_no_defaults): Remove.
12141 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
12142 (ns_use_qd_smoothing): Remove legacy variable.
12143 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
12144 don't update the NSWindow itself.
12145 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
12146 Improve state detection and store user rect ourselves. (Bug #3581)
12147
12148 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
12149 ns_use_qd_smoothing.
12150
12151 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
12152 platform versions. Drop support for emacs-20-style face specs.
12153 (x-close-connection): Drop PSFlush() under OS X.
12154 (x-focus-frame): Activate the app first. (Bug #4180)
12155
12156 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
12157
12158 * emacs.c (inhibit_x_resources): New variable.
12159 (main) [HAVE_NS]: Don't process --quick command line option.
12160 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
12161
12162 * lisp.h (inhibit_x_resources): Declare it extern.
12163
12164 * w32reg.c (x_get_string_resource):
12165 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
12166
12167 2009-09-17 Eli Zaretskii <eliz@gnu.org>
12168
12169 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
12170 Add lisp/term/internal.elc.
12171
12172 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
12173
12174 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
12175 (bug#4461).
12176
12177 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
12178
12179 * puresize.h (BASE_PURESIZE): Increase to 1290000.
12180
12181 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
12182 (OBJECTS_MACHINE): Remove, unused.
12183
12184 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
12185
12186 * frame.c (x_get_resource_string): Remove unused.
12187
12188 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
12189
12190 * xterm.c (x_new_font): Call change_frame_size before calling
12191 x_set_window_size, in case frame size won't change.
12192
12193 * frame.c (x_set_font): Remove dead code.
12194
12195 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
12196
12197 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
12198
12199 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12200
12201 * lread.c (Fload): Don't output a message after loading an obsolete
12202 package any more (done in Lisp now).
12203
12204 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
12205
12206 * fns.c (syms_of_fns): Doc fix (Bug#4227).
12207
12208 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
12209
12210 * keymap.c (Fwhere_is_internal): Use nconc2.
12211
12212 2009-09-11 Alan Mackenzie <acm@muc.de>
12213
12214 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
12215 batch mode.
12216
12217 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
12218
12219 * xdisp.c (display_mode_element): Detect cycles.
12220
12221 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12222
12223 * keymap.c (where_is_internal): Don't erroneously return nil right after
12224 filling the cache.
12225 (where_is_internal_1): Fix up typo.
12226
12227 2009-09-11 Glenn Morris <rgm@gnu.org>
12228
12229 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
12230 share a common doc-string.
12231
12232 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
12233
12234 * keymap.c (get_keymap): Return the actual keymap symbol rather than
12235 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
12236
12237 * keymap.c (QCadvertised_binding): New constant.
12238 (syms_of_keymap): Initialize it.
12239 (Fwhere_is_internal): Try and use bindings from :advertised-binding
12240 if applicable.
12241
12242 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
12243
12244 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
12245 (parse_menu_item): Streamline since bindings are recomputed all the
12246 time anyway. Don't bother checking Vdefine_key_rebound_commands any
12247 more and don't support lmenu's menu-alias any more either.
12248
12249 * keymap.c (where_is_internal_data): Make noindirect a boolean.
12250 (where_is_internal): Strip it down to only traverse the keymaps.
12251 Move the cache handling from Fwhere_is_internal to here.
12252 (Fwhere_is_internal): Move the handling of remapping and the choice of
12253 the best binding from where_is_internal to here.
12254 Unify the cached/noncached paths, so remapping is also handled
12255 correctly when the cache is used, and so the cache can be used to
12256 speed up remap-handling when applicable.
12257 Give preference to non-remapped bindings.
12258 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
12259 non-remapped bindings.
12260 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
12261 command remapping.
12262
12263 * xdisp.c (display_mode_element): Move list length limit from 50 to
12264 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
12265
12266 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
12267
12268 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
12269
12270 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
12271
12272 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
12273 (Bug#4334)
12274
12275 * keymap.c (where_is_internal): Filter out shadowed remappings.
12276 Assume that where_is_internal returns unshadowed bindings to simplify
12277 the code and get rid of the gotos. Use ASIZE.
12278
12279 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
12280
12281 * xterm.c (x_focus_changed): If we get a focusout and pointer
12282 is invisible, make it visible.
12283
12284 * xterm.h: Remove condition for declaration of
12285 x_*_window_to_frame.
12286
12287 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
12288
12289 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
12290 initial terminal as well.
12291
12292 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
12293
12294 * xterm.h: Rename x_non_menubar_window_to_frame to
12295 x_menubar_window_to_frame.
12296
12297 * xterm.c: Remove declarations also in xterm.h.
12298 (XTmouse_position): Do not return valid positions
12299 for clicks in the menubar and the toolbar for Gtk+.
12300
12301 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
12302 if the widget for the event has the same top level as a frame,
12303 return the frame.
12304 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
12305 internal windows, bug #4122.
12306 (x_non_menubar_window_to_frame): Remove.
12307
12308 2009-09-02 Glenn Morris <rgm@gnu.org>
12309
12310 * buffer.c (default-major-mode): Move most of the doc from here...
12311 (major-mode): ... to here.
12312
12313 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
12314
12315 * process.c (wait_reading_process_output): Keep the descriptor
12316 when pty is used by a non-child process, e.g., in I/O buffer of
12317 GDB this allows inferior to be restarted.
12318
12319 2009-08-29 Eli Zaretskii <eliz@gnu.org>
12320
12321 * xdisp.c (redisplay_internal): Remove redundant test and collapse
12322 both branches into one.
12323
12324 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
12325
12326 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
12327 (main): Use enable-multibyte-characters rather than
12328 default-enable-multibyte-characters. Output a warning message when
12329 running a unibyte session.
12330
12331 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12332
12333 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
12334 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
12335 (copy_data_segment): Also copy __program_vars section.
12336 (copy_dyld_info) [LC_DYLD_INFO]: New function.
12337 (dump_it) [LC_DYLD_INFO]: Use it.
12338
12339 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
12340
12341 2009-08-28 Eli Zaretskii <eliz@gnu.org>
12342
12343 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
12344 $(SRC)/buildobj.h.
12345 (buildobj.h): Rename from $(SRC)/buildobj.h.
12346 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
12347 $(SRC)/buildobj.h.
12348 (clean): Add buildobj.h.
12349
12350 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
12351
12352 * print.c (print_object): Set escapeflag to 1 when printing
12353 hashtable keys and values.
12354
12355 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
12356
12357 * lread.c (read_integer): Use doubles (and potentially return a float
12358 number) as we do in string-to-number.
12359 (read1): Use strtol to read integers, signal errors on strtol's
12360 overflow and use floats if strtol's output is too large for
12361 Elisp integers.
12362
12363 2009-08-27 Eli Zaretskii <eliz@gnu.org>
12364
12365 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
12366 (make-buildobj-SH): Fix last change.
12367 (SRC): Move to before where it's first used.
12368
12369 2009-08-27 Kenichi Handa <handa@m17n.org>
12370
12371 * process.c (send_process): Use encode_coding_object instead of
12372 encode_coding_string to perform eol-conversion even if the string
12373 is unibyte.
12374
12375 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
12376 character.
12377
12378 * cmds.c (Fself_insert_command): Avoid unnecessay
12379 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
12380
12381 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
12382
12383 * callproc.c (Fcall_process): Remove always true #if.
12384
12385 * lisp.h: Replace #if 0 code for checking with text pointing to
12386 the --enable-checking configure flag.
12387
12388 * emacs.c (main): Mention the --enable-profiling configure flag
12389 instead of using CFLAGS.
12390
12391 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
12392
12393 * Makefile.in (buildobj.h): New target.
12394 (doc.o): Depend on it.
12395 (temacs${EXEEXT}): Don't generate buildobj.lst.
12396 (mostlyclean): Delete buildobj.h, not buildobj.lst.
12397 * makefile.w32-in ($(SRC)/buildobj.h): New target.
12398 ($(BLD)/doc.$(O)): Depend on it.
12399 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
12400 provided by Eli Zaretskii.)
12401 ($(TEMACS)): Don't generate buildobj.lst.
12402 * doc.c: Include buildobj.h.
12403 (buildobj): New static variable.
12404 (Fsnarf_documentation): Use it, instead of opening and reading
12405 buildobj.lst.
12406
12407 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
12408
12409 * dbusbind.c (Fdbus_call_method)
12410 (Fdbus_call_method_asynchronously): Use English numeric format for
12411 timeout values in doc string.
12412
12413 2009-08-25 Kenichi Handa <handa@m17n.org>
12414
12415 * alloc.c (mark_char_table): New function.
12416 (mark_object): Use mark_char_table for a char-table.
12417
12418 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
12419 (CHAR_TABLE_REF): Use it.
12420
12421 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
12422
12423 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
12424 before invoking the newly build emacs to check for load-path
12425 shadowing.
12426
12427 2009-08-22 Glenn Morris <rgm@gnu.org>
12428
12429 * Makefile.in (bootstrap_exe): New variable.
12430 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
12431 Use ${bootstrap_exe}.
12432
12433 2009-08-22 Eli Zaretskii <eliz@gnu.org>
12434
12435 * coding.h (encode_coding_string): Don't encode unibyte strings.
12436 (Bug#4047)
12437
12438 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
12439
12440 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
12441
12442 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
12443 intended as hotfix only.
12444 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
12445
12446 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
12447
12448 * nsterm.m (ns_get_color): Update documentation properly for last
12449 change, and clean up loose ends in the code left by it.
12450 Fix longstanding bug with 16-bit hex parsing, and add support for
12451 yet another X11 format (rgb:r/g/b) for compatibility.
12452 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
12453 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
12454
12455 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
12456
12457 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
12458
12459 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
12460
12461 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
12462 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
12463 (xd_initialize, xd_pending_messages): Check, whether
12464 $DBUS_SESSION_BUS_ADDRESS is set.
12465
12466 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12467
12468 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
12469
12470 * nsterm.m (ns_get_color): Remove incompatible color formats again.
12471
12472 2009-08-20 Glenn Morris <rgm@gnu.org>
12473
12474 * emacs.c (system-type): Doc fix.
12475
12476 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
12477
12478 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
12479 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
12480
12481 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
12482
12483 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
12484 New functions.
12485 (xd_initialize): Revert change from 2009-08-16.
12486
12487 2009-08-18 Kenichi Handa <handa@m17n.org>
12488
12489 * fontset.c (Ffontset_font): If a nil element is found in a
12490 font-group vector, return nil.
12491
12492 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
12493
12494 * process.c (status_notify): Don't perform redisplay.
12495 (Fdelete_process, list_processes_1, process_send_signal):
12496 Expliticly perform redisplay.
12497 (wait_reading_process_output): Always check process status, but
12498 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
12499
12500 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
12501
12502 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
12503 (XFLOAT_INIT): New macro for storing a float value.
12504 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
12505 * fns.c (sxhash): Copy out the value of a float in order to
12506 examine its bytes.
12507 * dbusbind.c (xd_append_arg): Likewise.
12508
12509 * emacs.c (main): Don't call syms_of_data twice.
12510
12511 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
12512
12513 * dbusbind.c (xd_initialize): Add connection file descriptor to
12514 input_wait_mask, in order to let select() detect, whether a new
12515 message has been arrived.
12516 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
12517
12518 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
12519
12520 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
12521 New functions.
12522
12523 * lisp.h (xd_pending_messages): Declare.
12524
12525 * keyboard.c (readable_events): Call xd_pending_messages.
12526
12527 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
12528
12529 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
12530
12531 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
12532
12533 * buffer.c (set_buffer_internal_1)
12534 (swap_out_buffer_local_variables): Check for unbound local
12535 variables (Bug#4138).
12536
12537 2009-08-14 Eli Zaretskii <eliz@gnu.org>
12538
12539 * process.c (create_pty): Fix last change.
12540
12541 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
12542
12543 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
12544 (xbm_load_image): Caller changed.
12545 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
12546
12547 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
12548
12549 * process.c (create_pty): New function.
12550 (Fstart_process): Use it to allow Emacs to just associate a pty
12551 with the buffer. See associated change in gdb-mi.el.
12552 (list_processes_1): Deal with no program name.
12553 (start_process_unwind): Use pid == -2 to mean no process.
12554
12555 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
12556
12557 * cmds.c (nonundocount): New global variable.
12558 (keys_of_cmds): Initialize it.
12559 (Fself_insert_command): Use it to combine upto 20 sequential chars
12560 into a single undo entry, just like the Qself_insert_command code in
12561 keyboard.c does.
12562 Call frame_make_pointer_invisible, also like the Qself_insert_command
12563 code in keyboard.c does.
12564 * keyboard.c (command_loop_1): Use the new global nonundocount rather
12565 than its own local replacement for it.
12566
12567 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
12568
12569 * fns.c (concat): Don't re-set string length to its current value.
12570
12571 * coding.h (decode_coding_string, encode_coding_string):
12572 Use SBYTES macro.
12573
12574 * doprnt.c (doprnt_lisp): Delete unused function.
12575 (doprnt): Merge with doprnt1, discarding lispstrings code.
12576 * lisp.h (doprnt_lisp): Don't declare.
12577
12578 2009-08-07 Juri Linkov <juri@jurta.org>
12579
12580 * puresize.h (BASE_PURESIZE): Increase to 1270000.
12581
12582 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
12583
12584 * print.c (syms_of_print): Undo previous change.
12585
12586 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
12587
12588 * lread.c (read1, syms_of_lread): Read hashtables back from the
12589 readable format.
12590
12591 * print.c (print_preprocess, print_object): Print hashtables fully
12592 and readably.
12593 (syms_of_print): Provide 'hashtable-print-readable.
12594
12595 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
12596
12597 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
12598 no family set.
12599 (nsfont_open): Handle case when entity has no family.
12600
12601 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
12602
12603 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
12604 element, not a list, for match case.
12605
12606 2009-07-28 Kenichi Handa <handa@m17n.org>
12607
12608 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
12609 rigidly.
12610
12611 * xfont.c (xfont_list_pattern): Don't ignore the return value of
12612 font_parse_xlfd. Check font properties more rigidly.
12613
12614 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
12615
12616 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
12617 bsd-common.h.
12618
12619 2009-07-27 Kenichi Handa <handa@m17n.org>
12620
12621 * xfaces.c (face_with_height): Call font_clear_prop.
12622
12623 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
12624
12625 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
12626
12627 * xterm.c (x_term_init): Use Qx.
12628
12629 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
12630
12631 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
12632 (ns_get_color): Revert 2009-07-16 change.
12633
12634 2009-07-25 Eli Zaretskii <eliz@gnu.org>
12635
12636 * lread.c (syms_of_lread) <force_load_messages>: New variable.
12637 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
12638
12639 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
12640
12641 * coding.h (decode_coding_string, encode_coding_string):
12642 Use SCHARS macro.
12643
12644 * lread.c: Rewrite 2009-07-21 changes.
12645 (load_depth): Delete.
12646 (Qload_in_progress): New variable.
12647 (load_unwind): Don't reference load_depth or load_in_progress.
12648 (Fload): Likewise; specbind Qload_in_progress instead.
12649 (init_lread): Don't initialize load_depth.
12650 (syms_of_lread): Initialize and protect Qload_in_progress.
12651
12652 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
12653
12654 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
12655
12656 2009-07-23 Yavor Doganov <yavor@gnu.org>
12657
12658 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
12659
12660 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
12661
12662 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
12663 Bugs 3792, 3720, 2402.
12664 (ns_lookup_indexed_color): Check for bad index.
12665 (ns_index_color): Init unused slot to 0.
12666 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
12667 Bug 3714, possibly 3082.
12668
12669 2009-07-22 Jason Rumney <jasonr@gnu.org>
12670
12671 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
12672 Position IME window at cursor (Bug#2570).
12673 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
12674 (globals_of_w32fns): Dynamically load functions required above.
12675
12676 * w32term.c (w32_draw_window_cursor): Send message to reposition
12677 any IME window.
12678
12679 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12680
12681 * fileio.c: Revert 2009-07-16 changes.
12682 (Vauto_save_include_big_deletions): New variable.
12683 (Fdo_auto_save): Disable auto-save only if
12684 auto-save-include-big-deletions is nil.
12685
12686 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
12687
12688 * xdisp.c (move_it_to): For continued lines ending in a tab, take
12689 the overflowed pixels into account (Bug#3879).
12690
12691 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
12692
12693 * lread.c (load_depth): New variable.
12694 (Fload, load_unwind, init_lread): Set it to the load recursion
12695 depth; set load_in_progress as a simple boolean based on the
12696 current load_depth. (Bug#3892)
12697
12698 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12699
12700 * nsfont.m (ns_has_attribute): Remove.
12701 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
12702
12703 2009-07-18 Juri Linkov <juri@jurta.org>
12704
12705 * process.c (Fset_process_query_on_exit_flag): Mention killing
12706 a buffer in docstring.
12707
12708 2009-07-17 Kenichi Handa <handa@m17n.org>
12709
12710 * casetab.c (shuffle): Fix the logic of setting up the cycle.
12711
12712 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12713
12714 * nsfns.m (Fns_set_alpha): Remove function.
12715 (syms_of_nsfns): Don't defsubr it.
12716
12717 * nsterm.m (ns_get_color): Remove incompatible color formats.
12718 (ns_color_to_lisp): Generate #rrggbb color format string.
12719
12720 2009-07-16 Richard Stallman <rms@gnu.org>
12721
12722 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
12723 (Fset_buffer_auto_saved): Handle save_length = -2.
12724
12725 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
12726
12727 * xterm.c (Qx_gtk_map_stock): New var.
12728
12729 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
12730 of calling intern each time.
12731
12732 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12733
12734 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
12735 does tiling.
12736
12737 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
12738
12739 2009-07-14 Kenichi Handa <handa@m17n.org>
12740
12741 * font.c (font_vconcat_entity_vectors): New function.
12742 (struct font_sort_data): New member font_driver_preference.
12743 (font_compare): Check font_driver_preference.
12744 (font_sort_entities): The format of the first argument changed.
12745 (font_delete_unmatched): Likewise.
12746 (font_list_entities): The return type changed.
12747 (font_select_entity): The format of the second argument changed.
12748 (font_find_for_lface): Adjuste for the above changes.
12749 Don't suppress the checking of C even if the repertory supports it.
12750 (Flist_fonts): Adjust for the above changes.
12751
12752 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
12753 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
12754 Reject a font who has adstyle property that is different from a
12755 langname derived from registry property.
12756 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
12757
12758 2009-07-13 Eli Zaretskii <eliz@gnu.org>
12759
12760 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
12761 local copy of dirfilename.
12762
12763 2009-07-13 Kenichi Handa <handa@m17n.org>
12764
12765 * chartab.c (sub_char_table_ref_and_range): Fix the range check
12766 against max_char.
12767
12768 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
12769 calling XSYMBOL (sym).
12770
12771 2009-07-11 Eli Zaretskii <eliz@gnu.org>
12772
12773 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
12774 New function.
12775 (directory_files_internal) [WINDOWSNT]:
12776 Bind w32-get-true-file-attributes to either t or nil, depending whether
12777 the filesystem of the directory is fast or slow.
12778
12779 * w32.c (logon_network_drive): Don't assume PATH is an absolute
12780 file name.
12781 (is_slow_fs): New function.
12782 (stat): Use it to determine whether to issue more system calls to
12783 get accurate file attributes, when w32-get-true-file-attributes is
12784 `local'.
12785
12786 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
12787
12788 * xfns.c (Fx_select_font): Remember last font selected in
12789 x_last_font_name and use that the next time. Also try the frame
12790 parameter font-parameter as default to the font dialog.
12791
12792 2009-07-10 Kenichi Handa <handa@m17n.org>
12793
12794 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
12795
12796 2009-07-09 Eli Zaretskii <eliz@gnu.org>
12797
12798 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
12799
12800 * w32.c (stat): Treat UNC file names as residing on remote
12801 drives. (Bug#3542)
12802
12803 2009-07-09 Kenichi Handa <handa@m17n.org>
12804
12805 * fontset.c (fontset_find_font): Fix previous change.
12806
12807 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
12808
12809 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
12810 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
12811 error flag.
12812
12813 2009-07-08 Kenichi Handa <handa@m17n.org>
12814
12815 * fontset.c (fontset_find_font): Fix the logic of handling
12816 charset_matched.
12817 (font_for_char): Delete unused var.
12818 (generate_ascii_font_name): Delete it.
12819
12820 * coding.h (JIS_TO_SJIS2): Fix the code range check.
12821
12822 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
12823 (encode_coding_sjis): Fix the code range check.
12824
12825 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
12826
12827 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
12828 (Fexpand_file_name): Copy string data properly (Bug#3772).
12829
12830 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
12831
12832 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
12833 first MapNotify.
12834
12835 2009-07-07 Kenichi Handa <handa@m17n.org>
12836
12837 * character.h (unibyte_has_multibyte_table): Delete extern.
12838 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
12839
12840 * charset.c (Fset_charset_priority): Update charset_unibyte.
12841 (syms_of_charset): Initialize charset_unibyte.
12842
12843 * character.c (unibyte_has_multibyte_table): Delete it.
12844 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
12845 charset_unibyte.
12846 (multibyte_char_to_unibyte_safe): Likewise.
12847 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
12848
12849 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
12850 (x_produce_glyphs): Likewise.
12851
12852 * .gdbinit (xcharset): Fix the treating $arg0.
12853
12854 2009-07-04 Eli Zaretskii <eliz@gnu.org>
12855
12856 Emulation of `getloadavg' on MS-Windows.
12857 * w32.c: Include float.h.
12858 (g_b_init_get_native_system_info, g_b_init_get_system_times)
12859 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
12860 (get_native_system_info, get_system_times): New functions.
12861 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
12862 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
12863 (globals_of_w32): Initialize g_b_init_get_native_system_info,
12864 g_b_init_get_system_times, and num_of_processors.
12865
12866 2009-07-03 Jason Rumney <jasonr@gnu.org>
12867
12868 * w32term.c (w32_initialize): Use standard types.
12869
12870 2009-07-03 Eli Zaretskii <eliz@gnu.org>
12871
12872 * dired.c (Ffile_attributes): Decode user and group names by the
12873 locale's encoding. (Bug#3443)
12874
12875 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
12876
12877 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
12878 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
12879
12880 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
12881
12882 * term.c (init_tty): Remove spurious #ifdef.
12883
12884 * m/mips.h: Mention this file is also used for netbsd.
12885 * m/pmax.h: Remove file.
12886
12887 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
12888
12889 * xterm.h (struct x_display_info): Add invisible_cursor.
12890 (struct x_output): Add current_cursor.
12891
12892 * xterm.c (XTtoggle_invisible_pointer): New function.
12893 (x_define_frame_cursor): Don't define cursor if invisible or the
12894 same as before. Set current_cursor.
12895 (x_create_terminal): Set toggle_invisible_pointer_hook.
12896
12897 * xfns.c (make_invisible_cursor): New function.
12898 (x_set_mouse_color): Call make_invisible_cursor.
12899 Set current_cursor.
12900 (x_window): Set current_cursor.
12901
12902 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
12903
12904 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
12905 inserting a character.
12906 (read_avail_input): Call frame_make_pointer_visible.
12907
12908 * frame.c (Vmake_pointer_invisible): New variable.
12909 (frame_make_pointer_invisible, frame_make_pointer_visible):
12910 New functions.
12911 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
12912
12913 * frame.h: Declare frame_make_pointer_invisible and
12914 frame_make_pointer_visible.
12915 (struct frame): Add pointer_invisible.
12916
12917 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
12918
12919 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
12920 frame isn't visible.
12921 (xg_frame_resized): If width/height is -1, get size of window
12922 from X server.
12923
12924 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
12925 for MapNotify.
12926
12927 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
12928 here or call change_frame_size. Just call flush_and_sync.
12929 (flush_and_sync): Reintroduce.
12930
12931 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
12932
12933 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
12934
12935 * xterm.c (x_handle_net_wm_state): Also look for sticky.
12936 (x_term_init): Initialize Xatom_net_wm_state_sticky.
12937
12938 * frame.h: Declare Qsticky.
12939
12940 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
12941
12942 * nsfns.m (ns_frame_parm_handlers): Ditto.
12943
12944 * frame.c: Declare Qsticky.
12945 (frame_parms): Add sticky.
12946
12947 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
12948
12949 * xterm.h: Declare x_set_sticky.
12950
12951 * xterm.c (x_set_sticky): New function.
12952
12953 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
12954 (xg_tool_bar_menu_proxy): Attach enter/leave events to
12955 xg_tool_bar_proxy_help_callback.
12956
12957 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
12958
12959 * frame.c: Qmaximized is new.
12960 (x_set_frame_parameters): Do not handle fullscreen specially.
12961 Only set width and height if explicitly set.
12962 (x_set_fullscreen): Handle Qmaximized.
12963 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
12964 (syms_of_frame): Initialize Qmaximized.
12965
12966 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
12967 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
12968
12969 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
12970 for Expose event. Add call to x_check_fullscreen for MapNotify event.
12971 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
12972 set gravity to NorthWestGravity when USE_GTK.
12973 (set_wm_state): New function.
12974 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
12975 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
12976 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
12977 or the case when no window manager is running. That means remove calls
12978 to x_real_positions and x_fullscreen_adjust.
12979
12980 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
12981 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
12982 flush_and_sync.
12983 (xg_height_changed): New function.
12984 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
12985 and gtk_window_set_policy. Set frame gravity after parsing the
12986 geometry string.
12987 (xg_update_frame_menubar, free_frame_menubar)
12988 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
12989 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
12990 Remove calls to xg_frame_set_char_size.
12991
12992 2009-07-01 Kenichi Handa <handa@m17n.org>
12993
12994 * keyboard.c (decode_keyboard_code): New function.
12995 (tty_read_avail_input): Decode the input bytes if necessary.
12996
12997 * coding.c (setup_coding_system):
12998 Initialize coding->carryover_bytes to 0.
12999 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
13000 use Qno_conversion.
13001
13002 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13003
13004 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
13005
13006 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
13007
13008 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
13009
13010 2009-06-30 Jason Rumney <jasonr@gnu.org>
13011
13012 * w32term.c (w32_initialize): Use GetModuleHandle for library that
13013 is already loaded.
13014 Set user model ID if supported (bug#1849).
13015
13016 2009-06-29 Jim Meyering <meyering@redhat.com>
13017
13018 Remove useless if-before-xfree test.
13019 * nsfont.m (nsfont_close): Remove useless test.
13020 * term.c (delete_tty): Likewise.
13021 * w32.c (system_process_attributes): Likewise.
13022 * w32font.c (w32font_close): Likewise.
13023 * xfaces.c (x_free_gc): Likewise.
13024 * xselect.c (buffer): Likewise.
13025
13026 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
13027
13028 * process.c (send_process): Keep decoded string in a local
13029 variable and protect it from GC. (Bug#3521)
13030
13031 2009-06-28 Eli Zaretskii <eliz@gnu.org>
13032
13033 * term.c (create_tty_output) [MSDOS]: #ifdef away.
13034 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
13035
13036 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
13037
13038 * xdisp.c (start_display, handle_face_prop)
13039 (move_it_vertically_backward, cursor_row_fully_visible_p)
13040 (redisplay_window, try_window_id, produce_image_glyph):
13041 Delete some #ifdef-ed out code chunks that are now obsolete.
13042
13043 * xterm.c (x_update_window_begin, x_new_focus_frame)
13044 (x_scroll_bar_handle_click, handle_one_xevent)
13045 (handle_one_xevent, XTread_socket, x_focus_on_frame)
13046 (x_make_frame_visible, x_make_frame_invisible)
13047 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
13048 code chunks that are now obsolete.
13049
13050 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
13051
13052 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
13053 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
13054 for hours, when optimzation is enabled.
13055 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
13056 (xd_read_message): Make them static.
13057
13058 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
13059
13060 * term.c (turn_on_face): Allow simultaneously bold and dim
13061 terminal faces (Bug#3530).
13062
13063 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
13064
13065 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
13066
13067 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
13068 truncation glyphs (Bug#3686).
13069
13070 2009-06-27 Glenn Morris <rgm@gnu.org>
13071
13072 * m/pmax.h: Restore file, with only netbsd portions.
13073
13074 2009-06-26 David Reitter <david.reitter@gmail.com>
13075
13076 * nsterm.m (keydown): Avoid infinite loop.
13077
13078 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
13079
13080 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
13081 the arg FORCE_SYMBOL.
13082
13083 2009-06-25 Kenichi Handa <handa@m17n.org>
13084
13085 * fontset.c (fontset_find_font): When a usable rfont_def is found
13086 in a fallback font-group, make it the first element of the group.
13087
13088 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
13089
13090 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
13091
13092 2009-06-24 Kenichi Handa <handa@m17n.org>
13093
13094 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
13095 set for C.
13096 (fontset_font): Record the availability of a font for C both in
13097 the realized fontsets of the current one and the default one.
13098
13099 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
13100
13101 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
13102 conditional, it is always defined on AIX.
13103
13104 2009-06-23 Miles Bader <miles@gnu.org>
13105
13106 * window.c (Vrecenter_redisplay): New variable.
13107 (syms_of_window): Initialize it.
13108 (Qtty): New extern declaration.
13109 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
13110
13111 2009-06-23 Jim Meyering <meyering@redhat.com>
13112
13113 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
13114 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
13115 pointer dereferences are guaranteed to be valid.
13116
13117 2009-06-23 Kenichi Handa <handa@m17n.org>
13118
13119 * emacs.c (main): Call init_font ().
13120
13121 * font.h (Vfont_log): Extern it.
13122 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
13123
13124 * font.c (font_sort_entities, font_list_entities)
13125 (font_matching_entity, font_open_entity)
13126 (font_close_object): Change font_add_log to FONT_ADD_LOG.
13127 (Vfont_log): Delete static.
13128 (font_log_env_checked): Delete this variable.
13129 (font_add_log): Don't check font_log_env_checked.
13130 (font_deferred_log): Check Vfont_log.
13131 (init_font): New function.
13132
13133 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
13134
13135 * w32font.c: Change font_add_log to FONT_ADD_LOG.
13136
13137 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
13138
13139 * xfont.c: Change font_add_log to FONT_ADD_LOG.
13140
13141 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
13142 (face_for_char): Don't call font_deferred_log here.
13143 (font_for_char): Likewise.
13144
13145 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
13146
13147 * w32term.c (x_draw_glyph_string): Use the glyph string's width
13148 rather than its background_width for drawing the overline and
13149 underline (Bug#489).
13150
13151 * xterm.c (x_draw_glyph_string): Use the glyph string's width
13152 rather than its background_width for drawing the overline and
13153 underline (Bug#489).
13154 (xg_default_icon_file): New variable.
13155 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
13156 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
13157
13158 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
13159 (load_overlay_strings): Remove externs.
13160 (fast_find_position): Function deleted.
13161 (mouse_face_from_buffer_pos): New function, based on
13162 fast_find_position. Correctly handle before-strings,
13163 display-strings, and after-strings (Bug#1220).
13164 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
13165
13166 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13167
13168 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
13169 (move_it_in_display_line_to, move_it_in_display_line_to)
13170 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
13171
13172 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
13173
13174 * Branch for 23.1.
13175
13176 2009-06-21 Jason Rumney <jasonr@gnu.org>
13177
13178 * w32term.c (keyboard_codepage): New static variable.
13179 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
13180 (w32_read_socket) [WM_CHAR]: Use it to decode character
13181 input (bug#3237).
13182 (w32_initialize): Initialize it.
13183 (codepage_for_locale): New function.
13184
13185 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
13186
13187 * process.c (status_message): Pass Faset index argument as a lisp
13188 object, so as to work with USE_LISP_UNION_TYPE.
13189
13190 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13191
13192 * coding.c (Ffind_coding_systems_region_internal):
13193 Cache checked characters.
13194
13195 2009-06-18 Kenichi Handa <handa@m17n.org>
13196
13197 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
13198
13199 2009-06-18 Andreas Schwab <aschwab@redhat.com>
13200
13201 * xdisp.c (redisplay_internal): Check that the frame is still
13202 live after redisplay of its windows.
13203 (redisplay_windows): Check that the window is still live.
13204
13205 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
13206
13207 * coding.c (detect_coding_utf_16): Fix previous change.
13208
13209 2009-06-16 Kenichi Handa <handa@m17n.org>
13210
13211 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
13212 UTF-16 by checking the dispersion of Eth and Oth bytes.
13213
13214 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
13215
13216 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
13217
13218 2009-06-15 Kenichi Handa <handa@m17n.org>
13219
13220 * process.c (status_message): Fix previous change. Be sure to
13221 decode a localized string.
13222
13223 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13224
13225 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
13226 add comment explaining why.
13227
13228 2009-06-14 Sidney Markowitz <sidney@sidney.com>
13229
13230 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
13231
13232 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
13233
13234 * nsfont.m (ns_attribute_value): Remove.
13235 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
13236 (ns_has_attribute): Shrink the normal range.
13237 (ns_findfonts): Don't worry about requested spec in determining
13238 need for synthItal.
13239 (ns_get_covering_families): Retain scriptToFamilies.
13240
13241 2009-06-14 Seiji Zenitani <zenitani@mac.com>
13242
13243 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
13244
13245 2009-06-11 Kenichi Handa <handa@m17n.org>
13246
13247 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13248 overhang for the static composition case.
13249
13250 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13251
13252 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
13253 overhang for the automatic composition case.
13254
13255 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
13256 composition case.
13257
13258 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
13259
13260 * xdisp.c (get_next_display_element): When handling wrap-prefix
13261 and line-prefix, treat \n as a control character (bug#3502).
13262
13263 2009-06-10 Kenichi Handa <handa@m17n.org>
13264
13265 * font.c (font_parse_family_registry): Fix for one-char foundry.
13266 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
13267
13268 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
13269
13270 * process.c (status_message): Fix handling of multibyte signal
13271 string (Bug#3499).
13272
13273 2009-06-09 Jim Meyering <meyering@redhat.com>
13274
13275 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
13276 color name is missing.
13277
13278 2009-06-09 Kenichi Handa <handa@m17n.org>
13279
13280 * charset.c (Fmap_charset_chars): In docstring, state clearly that
13281 FROM-CODE and TO-CODE are codepoints of CHARSET.
13282
13283 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13284
13285 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
13286
13287 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
13288
13289 Changes to support :script/:lang/:otf in NS font driver.
13290 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
13291 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
13292 indicate not part of font driver interface, and change callers.
13293 (ns_get_family): Remove pointless null check.
13294 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
13295 ns_spec_to_descriptor, ns_descriptor_to_entity.
13296 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
13297 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
13298 (ns_spec_to_descriptor, ns_descriptor_to_entity)
13299 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
13300 (ns_get_req_script, ns_accumulate_script_ranges)
13301 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
13302 New functions.
13303 (nsfont_list, nsfont_match): Use ns_findfonts.
13304 (nsfont_open): Use font descriptor instead of traits.
13305 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
13306 (dump_glyphstring): Rename to ns_dump_glyphstring.
13307
13308 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
13309
13310 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
13311
13312 * fontset.c (fontset_from_font): Remove NS-specific code.
13313
13314 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
13315
13316 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
13317 nonactive windows.
13318
13319 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
13320
13321 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
13322
13323 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13324
13325 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
13326
13327 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
13328
13329 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
13330 account for the overflowing of newlines into the last glyph on the
13331 display line (Bug#3482).
13332
13333 2009-06-05 David Reitter <david.reitter@gmail.com>
13334
13335 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
13336 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
13337 Fns_selection_exists_p, Fns_selection_owner_p.
13338
13339 2009-06-03 Jason Rumney <jasonr@gnu.org>
13340
13341 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
13342 available. (Bug#3379)
13343
13344 2009-05-29 Kenichi Handa <handa@m17n.org>
13345
13346 * coding.c (get_translation_table):
13347 Check Venable_character_translation.
13348
13349 2009-05-26 David Reitter <david.reitter@gmail.com>
13350
13351 * nsterm.m (ns_raise_frame): Only raise frame if visible.
13352 (x_make_frame_visible): Move frame to front rather than calling
13353 ns_raise_frame().
13354 (keyDown:): Do not swallow events that aren't re-sent if frame
13355 isn't key window.
13356 (drawRect:): Do not set visibility/iconified flags because
13357 drawRect may be called by NSView even if the frame is hidden.
13358
13359 * nsfns.m (Fx_create_frame): Follow other ports in
13360 determining visibility; default to t. Ensure async_visible is set.
13361
13362 2009-05-23 Eli Zaretskii <eliz@gnu.org>
13363
13364 * dired.c (Ffile_attributes): Doc fix.
13365
13366 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
13367
13368 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
13369
13370 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
13371
13372 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
13373 and xfont_scratch_props.
13374 (syms_of_xfont): Do it here instead.
13375 (xfont_find_ccl_program): Delete, unused.
13376 (xfont_open): Delete unused var `i'.
13377
13378 2009-05-21 Kenichi Handa <handa@m17n.org>
13379
13380 * fontset.c (Qlatin): Don't make it static.
13381
13382 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
13383 New functions.
13384 (xfont_scripts_cache, xfont_scratch_props): New variables.
13385 (Qlatin, Vscalable_fonts_allowed): Extern it.
13386 (xfont_list_pattern): Argument changed. Callers changed.
13387 Check Vscalable_fonts_allowed. Check the support of a script.
13388 (xfont_list): Don't reject a font spec with :script property.
13389 (xfont_has_char): Fix setting of encoding.
13390 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
13391 xfont_scratch_props.
13392
13393 2009-05-19 Kenichi Handa <handa@m17n.org>
13394
13395 * font.c (font_sort_entities): Rename from font_sort_entites.
13396 Callers changed.
13397
13398 2009-05-18 Kenichi Handa <handa@m17n.org>
13399
13400 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
13401
13402 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
13403
13404 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
13405 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
13406
13407 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13408
13409 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
13410 (x_delete_terminal): Dissociate resource database from display and
13411 then call XrmDestroyDatabase before closing display.
13412
13413 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
13414
13415 * nsterm.m (ns_read_socket): Remove unused variable.
13416 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
13417 whether selected frame is viable before raising it (based on patch
13418 by David Reitter), and improve commentary.
13419 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
13420
13421 2009-05-15 Kenichi Handa <handa@m17n.org>
13422
13423 * font.c (Ffont_spec): Check arguments.
13424
13425 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
13426
13427 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
13428 weight when testing attributes (Bug#3282).
13429
13430 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13431
13432 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
13433 what we expect to get in the next ConfigureNotify event.
13434
13435 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
13436 before Xft one (Bug#1696).
13437
13438 2009-05-07 David Reitter <david.reitter@gmail.com>
13439
13440 * nsfns.m (Fx_display_planes): Compute bitplanes using
13441 NSBitsPerPixelFromDepth (Bug#3207).
13442
13443 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
13444
13445 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
13446
13447 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
13448
13449 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
13450
13451 2009-05-07 David Reitter <david.reitter@gmail.com>
13452
13453 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
13454 Respect mouse face background.
13455
13456 2009-05-07 David Reitter <david.reitter@gmail.com>
13457
13458 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
13459 Mouse movement/highlight: bracket drawing operations
13460 in ns_update_begin and ns_update_end.
13461
13462 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13463
13464 * nsfns.m (ns_get_screen): Rewrite.
13465 Don't presume selected-frame is of type `ns'.
13466
13467 * font.c (font_update_drivers): Sanity fallback to avoid disabling
13468 all drivers.
13469
13470 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
13471
13472 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13473
13474 * keyboard.h (add_user_signal): Fix typo in extern.
13475
13476 * lisp.h (add_user_signal): Remove extern.
13477
13478 * unexelf.c (unexec): Consider a section to precede the .bss section
13479 if its addresses overlap that of .bss.
13480 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
13481 instead of dumping process.
13482
13483 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
13484
13485 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
13486
13487 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13488
13489 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
13490
13491 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
13492
13493 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
13494 any statements.
13495
13496 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
13497
13498 * process.c (read_process_output): Make sure the current buffer is
13499 always restored.
13500
13501 * coding.c (record_conversion_result): Don't modify
13502 Vlast_code_conversion_error for successful result.
13503 (alloc_destination): Don't clobber conversion result. (Bug#1650)
13504
13505 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
13506
13507 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
13508 (load_charset_map): Remove unnecessary code.
13509
13510 2009-04-30 David Reitter <david.reitter@gmail.com>
13511
13512 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
13513 through f24.
13514
13515 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
13516
13517 * xfaces.c (face_at_buffer_position): New arg base_face_id.
13518
13519 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
13520 face_at_buffer_position.
13521 (face_before_or_after_it_pos, get_next_display_element)
13522 (note_mouse_highlight): Update face_at_buffer_position call.
13523
13524 * term.c (term_mouse_highlight):
13525 * msdos.c (IT_note_mouse_highlight):
13526 * fontset.c (Finternal_char_font):
13527 * font.c (font_at, font_range): Update face_at_buffer_position call.
13528
13529 * dispextern.h (face_at_buffer_position): Update prototype.
13530
13531 2009-04-30 Kenichi Handa <handa@m17n.org>
13532
13533 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
13534
13535 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
13536
13537 * callproc.c (Fcall_process): Fix GC protection. Make sure
13538 current buffer is always restored.
13539
13540 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13541
13542 * atimer.c (init_atimer): Also clear stopped_atimers.
13543
13544 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
13545
13546 * process.c (create_process): Clean up merger residues of
13547 2008-07-17 change.
13548
13549 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
13550
13551 * lread.c (Vread_circle): New variable.
13552 (read1): Disable recursive read if Vread_circle is nil.
13553
13554 2009-04-29 Kenichi Handa <handa@m17n.org>
13555
13556 * fontset.h (set_default_ascii_font): Delete extern.
13557
13558 * fontset.c (set_default_ascii_font): Delete this unused function.
13559
13560 * frame.c (x_set_font): When ARG is a font-object, check if the
13561 font-object matches with the ASCII font-spec of the frame's
13562 fontset. If not, create a new fontset for the frame. (Bug #3075)
13563
13564 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
13565
13566 * fns.c (Flocale_info): Protect vector from GC during decoding.
13567
13568 * process.c (Fstart_process): Protect argv strings from GC during
13569 encoding.
13570
13571 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
13572
13573 * sysdep.c: Include <ctype.h>.
13574
13575 2009-04-27 David Reitter <david.reitter@gmail.com>
13576
13577 * nsfont.m (nsfont_open): Remove unused variable shrink.
13578 Remove commented-out code.
13579
13580 2009-04-26 Johan Bockgård <bojohan@gnu.org>
13581
13582 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
13583
13584 2009-04-25 Jason Rumney <jasonr@gnu.org>
13585
13586 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
13587
13588 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13589
13590 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
13591 Swap bytes in short integer if fringe bitmap width > 8.
13592
13593 2009-04-23 Kenichi Handa <handa@m17n.org>
13594
13595 * xfaces.c (Fx_list_fonts): If a font size is specified in
13596 PATTERN, set it in returned scalable fonts.
13597
13598 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
13599
13600 * keyboard.c (Fset_input_meta_mode): Doc fix.
13601
13602 * dispnew.c (Fsend_string_to_terminal): Doc fix.
13603
13604 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
13605
13606 * coding.c (Fterminal_coding_system): Doc fix.
13607
13608 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
13609 (Fx_display_pixel_height, Fx_display_planes)
13610 (Fx_display_color_cells, Fx_server_max_request_size)
13611 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
13612 (Fx_display_mm_height, Fx_display_mm_width)
13613 (Fx_display_backing_store, Fx_display_visual_class)
13614 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
13615 Doc fixes, replacing "terminal id" with "terminal object".
13616 (check_x_display_info): Handle terminal objects instead of
13617 terminal ids.
13618
13619 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
13620 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
13621 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
13622 Doc fixes, replacing "terminal id" with "terminal object".
13623
13624 2009-04-21 Kenichi Handa <handa@m17n.org>
13625
13626 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
13627 (font_score): Check AVGWIDTH too.
13628
13629 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
13630 worst case.
13631 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
13632 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
13633
13634 2009-04-19 Jason Rumney <jasonr@gnu.org>
13635
13636 The following changes fix Bug#3005 for wide glyphs on each platform,
13637 without reintroducing Bug#1258 for stretch glyphs.
13638
13639 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
13640 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
13641 get_phys_cursor_geometry.
13642
13643 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
13644 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
13645 using get_phys_cursor_geometry.
13646
13647 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
13648 correctly calculated.
13649
13650 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
13651
13652 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
13653 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
13654 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
13655 is deprecated.
13656
13657 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
13658
13659 * font.c (font_put_frame_data): Use xfree instead of free.
13660
13661 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
13662
13663 * w32font.c (Qja, Qko): Remove declarations.
13664 (syms_of_w32font): Don't DEFSYM them.
13665
13666 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
13667
13668 * font.c (Qja, Qko): Move definitions here from ftfont.c.
13669
13670 * font.h (Qja, Qko): Extern them.
13671
13672 * ftfont.c (Qja, Qko): Remove declarations.
13673
13674 * xfont.c (Qja, Qko): Remove declarations.
13675
13676 2009-04-17 Kenichi Handa <handa@m17n.org>
13677
13678 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
13679 string from a vector to handle Latin-1 characters correctly.
13680
13681 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
13682 entity even if the cache hits.
13683
13684 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
13685
13686 * search.c (boyer_moore): Use zero as marker value for a possible
13687 match instead of depending on overflow behavior. (Bug#2844)
13688
13689 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
13690 * lisp.h: Adjust prototypes.
13691
13692 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
13693
13694 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
13695 change (Bug#3003).
13696
13697 2009-04-16 Kenichi Handa <handa@m17n.org>
13698
13699 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
13700
13701 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
13702 adstyle.
13703
13704 * ftfont.c (Qja, Qko): Don't make them static.
13705 (enum ftfont_cache_for): New enum.
13706 (fc_charset_table): Undo the previous change.
13707 (ftfont_get_latin1_charset): Delete it.
13708 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
13709 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
13710 non-scarable font, try to get AVERAGE_WIDTH.
13711 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
13712 Change ft_face_cache from a list of a hash-table. Don't check
13713 `ja' and `ko' adstyle here.
13714 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
13715 FTFONT_CACHE_FOR_CHARET.
13716 (ftfont_get_charset): Undo the previous change.
13717 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
13718 (ftfont_close): Likewise.
13719 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
13720
13721 * font.c (font_sort_entites): Change the meaning of the arg
13722 BEST-ONLY. Don't optimize for VEC of lenght 1.
13723 (font_select_entity): Just return the value of font_sort_entites.
13724
13725 * xfaces.c (merge_face_vectors): Reflect font properties in
13726 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
13727 font_clear_prop if a face attribute doesn't change.
13728
13729 * charset.h (charset_ksc5601): Extern it.
13730
13731 * charset.c (charset_ksc5601): New variable.
13732 (Fdefine_charset_internal): Set charset_ksc5601.
13733 (init_charset_once): Initialize charset_ksc5601 to -1.
13734
13735 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
13736
13737 * fileio.c (history_delete_duplicates): Remove unused declaration.
13738
13739 * callint.c (history_delete_duplicates): New declaration.
13740 (Fcall_interactively): Remove command history duplicates when
13741 history_delete_duplicates is true.
13742
13743 2009-04-14 Eli Zaretskii <eliz@gnu.org>
13744
13745 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
13746
13747 2009-04-14 Kenichi Handa <handa@m17n.org>
13748
13749 * font.c (Ffont_info): Fix docstring. Fix the second element of
13750 the returned value (bug#2949).
13751
13752 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
13753
13754 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
13755
13756 2009-04-14 Kenichi Handa <handa@m17n.org>
13757
13758 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
13759 encoding charset is ascii_compatible.
13760
13761 * charset.c (Fdefine_charset_internal): Make charset
13762 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
13763 code_offset is 0, and covers all ASCII characters.
13764
13765 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
13766
13767 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
13768 (ns_string_to_pasteboard_internal):
13769 * nsmenu.m (process_dialog):
13770 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
13771 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
13772 * lisp.h (Fx_load_color_file): Declare.
13773
13774 2009-04-13 Kenichi Handa <handa@m17n.org>
13775
13776 * font.c (font_delete_unmatched): Preserve the order of list elements.
13777 (font_select_entity): Suppress the code to optimize for the same
13778 kind of fonts.
13779 (font_load_for_lface): Get a font that supports at least ASCII
13780 characters.
13781
13782 * ftfont.c (Qja, Qko): New variables.
13783 (fc_charset_table): Delete uniquifier data for iso8859-1.
13784 (ftfont_get_latin1_charset): New function.
13785 (get_adstyle_property): New function.
13786 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
13787 bitmap fonts.
13788 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
13789 Delete iso-8859-1 range from the charset of fonts whose adstyle is
13790 `ko' or `ja'.
13791 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
13792 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
13793 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
13794 property.
13795 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
13796 (syms_of_ftfont): DEFSYM Qja and Qko.
13797
13798 2009-04-09 Kenichi Handa <handa@m17n.org>
13799
13800 * charset.c (map_charset_chars): For a charset of `superset'
13801 method, fix calculation of code range.
13802
13803 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
13804 from the list of extra properties.
13805 (font_clear_prop): Be sure to delete `:name' font property.
13806
13807 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13808
13809 * dispnew.c (redraw_overlapping_rows): Fix detection of
13810 overlapping for topmost and bottommost rows.
13811
13812 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
13813
13814 2009-04-06 Jason Rumney <jasonr@gnu.org>
13815
13816 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
13817
13818 2009-04-06 Kenichi Handa <handa@m17n.org>
13819
13820 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
13821
13822 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
13823
13824 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13825
13826 * ftfont.c (ftfont_open): Fix checking of the return value of
13827 FT_Load_Char. Fix setting font->underline_thickness.
13828
13829 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
13830
13831 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
13832 (Fterminal_parameters, Fterminal_parameter)
13833 (Fset_terminal_parameter): In doc string, refer to terminal
13834 objects rather than terminal ids.
13835
13836 2009-04-04 Eli Zaretskii <eliz@gnu.org>
13837
13838 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
13839 ret_lim_data. (Bug#2867)
13840
13841 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
13842
13843 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
13844 so they don't get wider than the window, matching 2006-01-23
13845 change to the partner function in xdisp.c (Bug#2800).
13846
13847 2009-04-03 Kenichi Handa <handa@m17n.org>
13848
13849 * print.c (print_object): Make each lowest sub_char_table start a
13850 new line (Bug#2866).
13851
13852 2009-04-02 Kenichi Handa <handa@m17n.org>
13853
13854 * fontset.c (fontset_font): Record no-font when a fontset
13855 explicitly tells not to try another font-specs.
13856
13857 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
13858
13859 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
13860
13861 2009-03-30 Kenichi Handa <handa@m17n.org>
13862
13863 * fontset.c (fontset_from_font): Specify only registry in a
13864 font-spec for all characters supported by that registry.
13865
13866 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
13867 even if HAVE_M17N_FLT is not defined.
13868
13869 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
13870
13871 * ftfont.c: Conditionalize prototyping and use of
13872 ftfont_variation_glyphs.
13873
13874 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13875
13876 * frame.c (delete_frame): Work around compiler bug.
13877
13878 * editfns.c (general_insert_function): Adjust to insdel.c changes.
13879 * insdel.c (prepare_to_modify_buffer, signal_before_change):
13880 Some more EMACS_INT.
13881 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
13882
13883 * xdisp.c (dump_glyph): Fix typo.
13884
13885 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
13886 (adjust_markers_gap_motion, adjust_markers_for_delete)
13887 (adjust_markers_for_insert, adjust_point)
13888 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
13889 (make_gap, copy_text, count_size_as_multibyte, insert)
13890 (insert_and_inherit, insert_before_markers)
13891 (insert_before_markers_and_inherit, insert_1)
13892 (count_combining_before, count_combining_after, insert_1_both)
13893 (insert_from_string, insert_from_string_before_markers)
13894 (insert_from_string_1, insert_from_gap, insert_from_buffer)
13895 (insert_from_buffer_1, adjust_after_replace)
13896 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
13897 (replace_range_2, del_range, del_range_1, del_range_byte)
13898 (del_range_both, del_range_2, modify_region)
13899 (prepare_to_modify_buffer, signal_before_change)
13900 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
13901 for buffer positions and sizes.
13902 * lisp.h: Adjust prototypes accordingly.
13903
13904 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
13905 (non_regular_inserted, non_regular_nbytes, read_non_regular)
13906 (Finsert_file_contents): Use EMACS_INT for buffer positions.
13907
13908 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
13909
13910 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
13911
13912 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
13913 lines and columns so we keep the same pixel height and width.
13914
13915 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
13916 the property _NET_WM_STATE has changed.
13917 (x_handle_net_wm_state): New function to update frame parameter
13918 fullscreen.
13919 (x_term_init): Initialize atoms for _NET_WM_STATE.
13920
13921 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
13922
13923 2009-03-27 Kevin Ryde <user42@zip.com.au>
13924
13925 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
13926 Gpm_GetEvent as an error that justifies closing the filedescriptor.
13927 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
13928 (Fgpm_mouse_stop): Pass that new parameter.
13929 * termhooks.h (close_gpm): Adjust prototype.
13930
13931 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
13932
13933 * lisp.h (Fx_focus_frame): Declare.
13934
13935 * callint.c (Fcall_interactively): For '^' just delegate the work to
13936 handle-shift-selection.
13937 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
13938
13939 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
13940
13941 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
13942
13943 * data.c (Qinteractive_form): New variable.
13944 (Finteractive_form): Use it.
13945
13946 * eval.c (Fcommandp): Use Qinteractive_form.
13947
13948 2009-03-24 Jason Rumney <jasonr@gnu.org>
13949
13950 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
13951 Calculate total size precisely. Decode environment variables
13952 before substituting. (Bug#38)
13953
13954 2009-03-24 Kenichi Handa <handa@m17n.org>
13955
13956 * font.c (find_font_encoding): Return Qnil for unsupported
13957 encoding (Bug#2722).
13958
13959 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
13960
13961 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
13962 that gdpy is set.
13963
13964 2009-03-22 Alan Mackenzie <acm@muc.de>
13965
13966 * callint.c (Finteractive): Clarify the doc string - even
13967 promptless elements need \n separators.
13968
13969 2009-03-22 Jason Rumney <jasonr@gnu.org>
13970
13971 * w32term.c (syms_of_w32term): Doc fix for
13972 x-use-underline-position-properties.
13973
13974 2009-03-21 Eli Zaretskii <eliz@gnu.org>
13975
13976 * w32.c (getpwuid): Change argument type to unsigned.
13977 (struct w32_id): Change type of `rid' member to unsigned.
13978 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
13979 argument ID to unsigned. All callers changed.
13980 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
13981
13982 2009-03-20 Eli Zaretskii <eliz@gnu.org>
13983
13984 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
13985 negative, produce a float value.
13986
13987 * dired.c (make_uid, make_gid): New functions.
13988 (Ffile_attributes): Use them to avoid negative UID and GID.
13989
13990 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
13991
13992 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
13993 (syms_of_keyboard) <command-hook-internal, input-method-function>:
13994 Fix typos in docstrings.
13995
13996 2009-03-19 Kenichi Handa <handa@m17n.org>
13997
13998 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
13999 changed, use font_load_for_lface to get a new font object.
14000 Call free_realized_fontset after handling ASCII font change.
14001
14002 * frame.c (x_set_font): Handle the case that ARG is a cons.
14003
14004 2009-03-19 Glenn Morris <rgm@gnu.org>
14005
14006 * fileio.c (Fsubstitute_in_file_name): Doc fix.
14007
14008 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
14009
14010 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
14011
14012 2009-03-19 Kenichi Handa <handa@m17n.org>
14013
14014 * charset.c (load_charset_map_from_file): When a mapfile can't be
14015 loaded, signal an error.
14016
14017 2009-03-18 Eli Zaretskii <eliz@gnu.org>
14018
14019 * dired.c (Ffile_attributes): Make sure UID and GID are always
14020 positive, even if the value is too large for a positive EMACS_INT.
14021 Doc fix.
14022
14023 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
14024
14025 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14026
14027 * xmenu.c (xdialog_show): Move Fredisplay call ...
14028 (Fx_popup_dialog): ... here.
14029
14030 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
14031
14032 * dired.c (file_name_completion): Disable the first optimization just
14033 installed, since it is not implemented correctly.
14034
14035 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
14036
14037 * dired.c (file_name_completion): Check completion-ignored-extensions
14038 only if the entry can affect bestmatch.
14039 Stop the search early, as Ftry_completion already does.
14040
14041 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
14042
14043 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
14044
14045 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
14046
14047 * keyboard.c (parse_menu_item): Don't display remappings as menu
14048 equivalent bindings (Bug#788).
14049
14050 2009-03-15 Jason Rumney <jasonr@gnu.org>
14051
14052 * w32term.h (WM_EMACS_PAINT): New message.
14053 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
14054 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
14055 before passing to lisp thread. (Bug#950)
14056
14057 2009-03-14 David Reitter <david.reitter@gmail.com>
14058
14059 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
14060 variable as it was never reset.
14061 (ns_term_init): Remove initialization of Lisp-settable defaults
14062 and ns_expand_space.
14063 (-setPanelFromDefaultValues): Remove ns_expand_space.
14064 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
14065 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
14066 i.e. no additional spacing, similar to Carbon port.
14067
14068 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
14069 * nsfns.m (ns-popup-prefs-panel): Remove.
14070
14071 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
14072
14073 * sound.c (alsa_configure): Remove call to deprecated
14074 snd_pcm_sw_params_set_xfer_align.
14075
14076 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
14077
14078 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
14079 after clicking in a detached tool bar.
14080 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
14081
14082 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
14083
14084 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
14085 int/Lisp_Object mixup).
14086
14087 2009-03-13 Kenichi Handa <handa@m17n.org>
14088
14089 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
14090 Handle NAME nil and t correctly. Callers changed.
14091 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
14092 (set_fontset_font): Change ARG to a vector. Handle range_list in
14093 ARG correctly.
14094 (Fset_fontset_font): Fix the case that TARGET is both a script
14095 name and charset name. Adjust the arg to set_fontset_font for
14096 the above change.
14097 (fontset_from_font): Fix previous change.
14098 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
14099 entry. If FONTSET is the default fontset, don't set the extra
14100 slot of the returning char-table.
14101
14102 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
14103
14104 * nsfns.m (Fx_close_connection): Doc fix.
14105 (Fns_do_applescript): Reflow docstring.
14106 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
14107 (Fx_display_pixel_width, Fx_display_pixel_height)
14108 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
14109 Fix typos in docstrings.
14110 (Fns_set_alpha): Fix typos in error messages.
14111
14112 2009-03-12 David Reitter <david.reitter@gmail.com>
14113
14114 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
14115 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
14116 were used for such events.
14117
14118 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
14119 (toggleToolbar, performDragOperation, runHelp): Use it.
14120
14121 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
14122 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
14123
14124 2009-03-11 Kenichi Handa <handa@m17n.org>
14125
14126 * font.h (font_open_by_spec): Extern it.
14127
14128 * font.c (font_open_by_spec): New function.
14129 (font_open_by_name): Use font_open_by_spec.
14130
14131 * frame.c (x_set_font): When ARG is a font-object, don't alter the
14132 fontset of the frame.
14133
14134 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
14135 modify the default font of frames that use this fontset.
14136 (num_auto_fontsets): New variable.
14137 (fontset_from_font): Use num_auto_fontsets to decide a fontset
14138 name. Be sure to set FONTSET_ASCII to the correct font name.
14139 (update_auto_fontset_alist): New function.
14140
14141 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
14142
14143 * makefile.w32-in: Update dependencies.
14144
14145 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14146
14147 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
14148
14149 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
14150
14151 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
14152
14153 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
14154
14155 * lread.c (Feval_buffer): Doc fix.
14156
14157 2009-03-09 Kenichi Handa <handa@m17n.org>
14158
14159 * charset.c (Qfile_name_handler_alist): Extern it.
14160 (load_charset_map_from_file): Temporarily bind
14161 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
14162
14163 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
14164
14165 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
14166 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
14167
14168 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
14169
14170 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
14171 (x_set_window_size): Change back to calculated method of setting
14172 toolbar height under Cocoa. (Bug#2546)
14173 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
14174 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
14175
14176 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
14177
14178 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
14179 accelerator in parens under GNUstep.
14180
14181 2009-03-06 Kenichi Handa <handa@m17n.org>
14182
14183 These changes are to detect incorrect composition sequence without
14184 looking ahead the source. (Bug#2370)
14185
14186 * coding.h: Include "composite.h".
14187 (enum compisition_state): New enum.
14188 (struct compisition_status): New struct.
14189 (struct iso_2022_spec): New member cmp_status.
14190 (struct emacs_mule_spec): New struct.
14191 (struct coding_system): New members ctext_extended_segment_len and
14192 embedded_utf_8. Change the union member
14193 spec.emacs_mule_full_support to spec.emacs_mule.
14194
14195 * coding.c (CODING_ISO_CMP_STATUS): New macro.
14196 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
14197 (MAX_ANNOTATION_LENGTH): Define to 5.
14198 (ADD_COMPOSITION_DATA): New arg nbytes.
14199 (emacs_mule_char): New arg cmp_status.
14200 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
14201 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
14202 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
14203 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
14204 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
14205 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
14206 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
14207 (EMACS_MULE_COMPOSITION_END): New macro.
14208 (emacs_mule_finish_composition): New function.
14209 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
14210 (decode_coding_emacs_mule): Avoid long looking ahead while
14211 handling composition.
14212 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
14213 (ENCODE_COMPOSITION_RULE): New macro.
14214 (finish_composition): New function.
14215 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
14216 (DECODE_COMPOSITION_START): New implementation.
14217 (DECODE_COMPOSITION_END): Likewise.
14218 (STORE_COMPOSITION_RULE): New macro.
14219 (decode_coding_iso_2022): Avoid long looking ahead while handling
14220 composition, CTEXT extended segment, and embedded UTF-8.
14221 (setup_coding_system): For a coding of type iso-2022, reset
14222 CODING_ISO_EXTSEGMENT_LEN (coding) and
14223 CODING_ISO_EMBEDDED_UTF_8 (coding).
14224 (get_translation): Delete arguments last_block, from_nchars,
14225 to_nchars. Callers changed.
14226 (produce_chars): Don't modify charbuf. Adjusted for the change of
14227 get_translation.
14228 (produce_composition): Adjust for the new annotation sequence.
14229 (handle_composition_annotation): Likewise.
14230 (consume_chars): Adjust for the change of get_translation.
14231
14232 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
14233
14234 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
14235
14236 2009-03-05 Kenichi Handa <handa@m17n.org>
14237
14238 * font.c (font_select_entity): New function.
14239 (font_find_for_lface): Use font_select_entity to select a font.
14240
14241 * fontset.c (fontset_find_font): If a font found without
14242 restricting to the characters C doesn't support C, try to find a
14243 font with C restriction.
14244
14245 2009-03-04 Nikolaj Schumacher <me@nschum.de>
14246
14247 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
14248
14249 2009-03-04 Jason Rumney <jasonr@gnu.org>
14250
14251 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
14252 characters that have already been read. (Bug#2569)
14253
14254 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
14255 Log an error message if check_image_size failed.
14256 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
14257 (gs_load): Mention max-image-size in size error message. (Bug#2560)
14258
14259 2009-03-02 Eli Zaretskii <eliz@gnu.org>
14260
14261 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
14262 when decoding process output.
14263
14264 2009-03-01 Richard M Stallman <rms@gnu.org>
14265
14266 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
14267
14268 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
14269
14270 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14271
14272 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
14273 (decode_coding_emacs_mule, decode_coding_iso_2022)
14274 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14275 (decode_coding_raw_text, decode_coding_charset)
14276 (setup_coding_system, decode_eol, decode_coding, consume_chars):
14277 Honor inhibit-eol-conversion. (Bug #2186)
14278
14279 2009-02-28 Jason Rumney <jasonr@gnu.org>
14280
14281 * coding.c (detect_coding_charset): If not checking latin extra,
14282 fail on characters between 0x80 and 0xA0. (Bug#2354)
14283
14284 2009-02-28 Eli Zaretskii <eliz@gnu.org>
14285
14286 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
14287 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
14288
14289 2009-02-27 Glenn Morris <rgm@gnu.org>
14290
14291 * callint.c (Finteractive): Doc fix.
14292
14293 2009-02-27 Kenichi Handa <handa@m17n.org>
14294
14295 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
14296
14297 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
14298
14299 * font.c (font_style_to_value): Set value for unknown symbols to
14300 100 instead of 255.
14301 (weight_table, slant_table, width_table): Treat "unspecified" as
14302 the default value.
14303
14304 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
14305
14306 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
14307
14308 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
14309
14310 * lread.c (Fload): Stop checking Vloads_in_progress and signal
14311 error as soon as a recursive load is detected.
14312
14313 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14314
14315 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
14316 before caching.
14317
14318 2009-02-24 Kenichi Handa <handa@m17n.org>
14319
14320 * fontset.c (fontset_find_font): Fix the condition for checking
14321 unavailable font.
14322
14323 2009-02-24 Glenn Morris <rgm@gnu.org>
14324
14325 * xfaces.c (Finternal_set_font_selection_order): Remove leading
14326 whitespace that confuses documentation.
14327
14328 2009-02-23 Miles Bader <miles@gnu.org>
14329
14330 * process.c (Flist_system_processes, Fprocess_attributes)
14331 (syms_of_process): Rename `system-process-attributes' to
14332 `process-attributes'.
14333
14334 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
14335
14336 * coding.h (struct coding_system): Make safe_charsets a pointer to
14337 unsigned char.
14338 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
14339 being 255.
14340 (SAFE_CHARSET_P): Likewise.
14341 (setup_iso_safe_charsets): Properly setup safe_charsets.
14342 (Fdefine_coding_system_internal): Likewise.
14343 (setup_coding_system): Likewise. Remove unneeded casts.
14344 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
14345 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
14346 Remove unneeded casts.
14347
14348 * insdel.c (del_range_2): Don't modify gap contents when called
14349 from decode_coding_object. (Bug#1809)
14350
14351 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
14352
14353 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
14354 Qfont_object.
14355 (Ftype_of): Recognize font objects.
14356
14357 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
14358
14359 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
14360 Definitions moved to data.c.
14361
14362 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
14363
14364 * nsterm.m (x_make_frame_invisible): Unset async_visible,
14365 async_iconified. Based on a patch by Christian Lynbech
14366 <christian.lynbech@tieto.com>.
14367 (EmacsView-windowDidMiniaturize:): Unset async_visible.
14368
14369 2009-02-20 Glenn Morris <rgm@gnu.org>
14370
14371 * syntax.c (Fskip_chars_forward): Fix doc typo.
14372
14373 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
14374
14375 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
14376
14377 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
14378
14379 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
14380
14381 2009-02-19 Kenichi Handa <handa@m17n.org>
14382
14383 * coding.c (detect_coding): Preserve coding->mode.
14384 Don't overflow coding->carryover. (Bug#2370)
14385
14386 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
14387
14388 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
14389
14390 2009-02-18 Kenichi Handa <handa@m17n.org>
14391
14392 * font.c (font_check_otf_features): Fix handling of `nil' element.
14393 (Ffont_spec): Describe :lang and :otf in the docstring.
14394
14395 2009-02-16 Andreas Schwab <schwab@suse.de>
14396
14397 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
14398 string.
14399
14400 2009-02-16 Kenichi Handa <handa@m17n.org>
14401
14402 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
14403 (Bug#1723)
14404
14405 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
14406
14407 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
14408
14409 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
14410 (handle_line_prefix): Suppress wrapping of wrap prefixes.
14411
14412 2009-02-14 Eli Zaretskii <eliz@gnu.org>
14413
14414 * msdos.c (MAX_SCREEN_BUF): New macro.
14415 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
14416 Encode the entire run of glyphs sharing the same face, instead of
14417 doing that one glyph at a time (fixes a bug with displaying
14418 double-size characters).
14419
14420 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
14421
14422 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
14423
14424 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
14425 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
14426 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
14427
14428 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
14429 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
14430
14431 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
14432
14433 * keyboard.c (adjust_point_for_property): Allow stopping between two
14434 invisible areas.
14435
14436 2009-02-12 Jason Rumney <jasonr@gnu.org>
14437
14438 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
14439 (add_font_entity_to_list): Call check_face_name even when family
14440 is unspecified.
14441
14442 * w32term.c (x_display_pixel_height, x_display_pixel_width):
14443 Release DC when finished. Use NULL window to refer to desktop.
14444 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
14445
14446 * w32font.c (add_font_entity_to_list): Fix check for substituted
14447 raster fonts. (Bug#2219)
14448
14449 2009-02-12 Kenichi Handa <handa@m17n.org>
14450
14451 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
14452 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
14453 (autocmp_chars): Use fast_looking_at. Don't compose more
14454 characters than MAX_COMPOSITION_COMPONENTS.
14455 (find_automatic_composition): While looking forward and backward,
14456 check static composition. Fix where to stop looking forward.
14457 (composition_adjust_point): Fix checking of static composition.
14458 (Fcomposition_get_gstring): Pay attention to
14459 MAX_COMPOSITION_COMPONENTS.
14460
14461 * lisp.h (fast_looking_at): Extern it.
14462
14463 * search.c (fast_looking_at): New function.
14464
14465 * term.c (encode_terminal_code): Adjust for the change of
14466 <struct glyph>.u.cmp.to.
14467 (append_composite_glyph): Likewise.
14468
14469 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
14470 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
14471 composition.
14472 (append_composite_glyph): Adjust for the change of
14473 <strcut glyph>.u.cmp.to.
14474
14475 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
14476
14477 * casetab.c (init_casetab_once):
14478 * coding.c (ALLOC_CONVERSION_WORK_AREA):
14479 * font.c (font_update_lface):
14480 * fontset.c (Fnew_fontset):
14481 * ftfont.c (ftfont_drive_otf):
14482 * xfont.c (xfont_open):
14483 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
14484
14485 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
14486
14487 * fileio.c (Fwrite_region): !NILP -> CONSP.
14488
14489 2009-02-10 Andreas Schwab <schwab@suse.de>
14490
14491 * process.c (send_process): Properly relocate pointer into data
14492 when using encoded data. (Bug#2272)
14493
14494 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
14495
14496 * coding.c (detect_coding_charset): Fix previous change.
14497
14498 2009-02-08 Jason Rumney <jasonr@gnu.org>
14499
14500 * w32fns.c (w32_hide_hourglass): Handle case where frame
14501 disappeared while hourglass was displayed. (Bug #2193)
14502
14503 2009-02-07 Andreas Schwab <schwab@suse.de>
14504
14505 * unexelf.c (unexec): Fix error message.
14506
14507 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
14508
14509 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
14510 when modal window is active. (Bug #2152)
14511 (applicationShouldTerminate:): Remove now-unneeded while loop
14512 around NSRunAlertPanel.
14513
14514 * nsmenu.m (popupSession): New file-global variable.
14515 (pop_down_menu): End the popupSession before closing dialog.
14516 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
14517 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
14518 don't query NSApp for events (just sleep instead).
14519
14520 2009-02-07 Eli Zaretskii <eliz@gnu.org>
14521
14522 * coding.c (syms_of_coding) <translation-table-for-input>:
14523 Modify doc string to discourage use for character code unification.
14524
14525 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14526
14527 * atimer.c (run_timers): Update pending_atimers.
14528
14529 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
14530
14531 * image.c (svg_load_image): Fix last change.
14532
14533 * xfns.c (Fx_create_frame): Signal an error if no font is
14534 found (Bug#2147).
14535
14536 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
14537
14538 * character.c (syms_of_character) <script-representative-chars>:
14539 Fix typo in docstring.
14540
14541 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
14542
14543 * nsmenu.m (pop_down_menu): New function.
14544 (ns_popup_dialog): Call it on unwind.
14545 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
14546 call timer_check() (Bug#2154).
14547 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
14548 handling_signal is set.
14549 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
14550
14551 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
14552
14553 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
14554
14555 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
14556
14557 * keyboard.c (poll_for_input_1, handle_async_input):
14558 Set handling_signal under HAVE_NS.
14559
14560 2009-02-04 Glenn Morris <rgm@gnu.org>
14561
14562 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
14563
14564 2009-02-04 Kenichi Handa <handa@m17n.org>
14565
14566 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
14567
14568 * charset.c (Fchar_charset): New optional arg restriction.
14569
14570 * coding.h (coding_system_charset_list): Extern it.
14571
14572 * coding.c (coding_system_charset_list): New function.
14573
14574 * composite.c: Include coding.h and termhooks.h.
14575 (composition_gstring_p): Fix for the terminal case.
14576 (composition_gstring_width): Likewise.
14577 (fill_gstring_body): Likewise.
14578 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
14579 the frame.
14580 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
14581 is within a composition.
14582 (Fcomposition_get_gstring): Fix the terminal case.
14583
14584 * term.c (encode_terminal_code): Fix handling of composition.
14585 (produce_composite_glyph): For static composition, get pixel_width
14586 from struct composition.
14587
14588 2009-02-02 Andreas Schwab <schwab@suse.de>
14589
14590 * unexelf.c (unexec): Handle unaligned bss offset.
14591
14592 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14593
14594 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
14595 XT,w32read_socket changes to ns_read_socket.
14596
14597 * keyboard.c (handle_interrupt): Don't call
14598 quit_throw_to_read_char() under NS.
14599
14600 * blockinput.h: Remove NS-specific code.
14601
14602 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
14603
14604 * dispnew.c (window_change_signal): Don't try to get the size of a
14605 suspended tty frame.
14606 * term.c (Fresume_tty): Resize if the size has changed while the
14607 tty was suspended.
14608
14609 * alloc.c (mark_stack): Properly conditionalize previous change.
14610
14611 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
14612
14613 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
14614 * w32term.c (w32_read_socket) [SYNC_INPUT]:
14615 Remove; this code is not used on Windows.
14616
14617 2009-01-30 Eli Zaretskii <eliz@gnu.org>
14618
14619 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
14620 EOLs that also has stray ^M characters.
14621
14622 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
14623
14624 * atimer.c (run_timers, alarm_signal_handler):
14625 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
14626 * w32inevt.c (w32_console_read_socket):
14627 * w32term.c (w32_read_socket):
14628 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
14629
14630 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
14631
14632 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
14633 Initialize it as a relative filename pattern.
14634 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
14635 (Fcall_process_region): Simplify temp file creation using
14636 temporary-file-directory.
14637
14638 2009-01-29 Eli Zaretskii <eliz@gnu.org>
14639
14640 * msdos.c: Rename pending_signals to msdos_pending_signals.
14641 (sig_suspender, sigprocmask): Adjust.
14642
14643 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
14644
14645 * keyboard.c (pending_signals): New var.
14646 (poll_for_input, input_available_signal, init_keyboard): Set it.
14647 (process_pending_signals): New function.
14648
14649 * lisp.h (QUIT): Check pending_signals instead of
14650 interrupt_input_pending. Use process_pending_signals.
14651
14652 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
14653
14654 * process.c (wait_reading_process_output): Use process_pending_signals.
14655
14656 * sysdep.c (emacs_write): Use process_pending_signals.
14657
14658 * xterm.c (XTread_socket): Update pending_signals.
14659
14660 * w32term.c (w32_read_socket): Update pending_signals.
14661
14662 * w32inevt.c (w32_console_read_socket): Update pending_signals.
14663
14664 2009-01-29 Kenichi Handa <handa@m17n.org>
14665
14666 * xftfont.c (xftfont_has_char): New function.
14667 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
14668
14669 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14670
14671 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
14672 under GNUstep.
14673 (ns_query_color): New declaration.
14674
14675 * nsterm.m (ns_confirm_quit): New variable.
14676 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
14677 (EmacsApp-applicationShouldTerminate:): Use it.
14678 (EmacsPrefsController): Let user set it.
14679 (ns_query_color): New function.
14680 (ns_defined_color): Use it.
14681 (ns_initialize): Drop.
14682 (ns_term_init): Add two lines from ns_initialize(), and set
14683 input_interrupt_mode to nil.
14684
14685 * image.c (svg_load_image): Don't right-shift background RGB when
14686 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
14687
14688 2009-01-28 Kenichi Handa <handa@m17n.org>
14689
14690 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14691 (fontset_get_font_group): Remember that no font-group is specified
14692 for C.
14693
14694 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
14695
14696 * fns.c (concat): Check for string overflow (bug#1787).
14697
14698 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
14699 Quadruple undo limits (bug#1501).
14700
14701 2009-01-27 Kenichi Handa <handa@m17n.org>
14702
14703 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
14704 directly use GT_Get_Char_index.
14705
14706 * xftfont.c (struct xftfont_info): New member `index'.
14707
14708 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
14709 (Ffontset_font): Adjust for the change of fontset entry.
14710
14711 2009-01-26 Kenichi Handa <handa@m17n.org>
14712
14713 * fontset.c (fontset_find_font): Fix handling of non-cons return
14714 value of fontset_get_font_group.
14715 (fontset_font): Revert last change.
14716
14717 2009-01-26 Jason Rumney <jasonr@gnu.org>
14718
14719 * w32font.c (w32font_list_internal): Return quickly if registry is
14720 unknown. Simplify final return.
14721 (add_font_entity_to_list): Break complex logic down into more
14722 manageable chunks. Move unknown registry check to
14723 w32font_list_internal.
14724
14725 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
14726
14727 Changes to remove Feval calls from GUI under NS.
14728
14729 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
14730 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
14731 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
14732
14733 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
14734 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
14735 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
14736 instead of NON_ASCII_KEYSTROKE_EVENT.
14737 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
14738 (EmacsApp-applicationShouldTerminate:): Query user.
14739 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
14740 instead of Feval.
14741
14742 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
14743
14744 * keyboard.c (kbd_buffer_get_event): Check for it.
14745 (keys_of_keyboard): Define lispy keys for
14746 ns-put/unput-working-text.
14747
14748 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
14749 versions.
14750 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
14751
14752 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
14753
14754 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
14755 setting current_buffer directly. (Bug#2044)
14756
14757 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
14758
14759 * fontset.c (fontset_font): If we know there is no font, don't do
14760 any work. (Bug#1952, bug#1990).
14761
14762 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
14763
14764 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
14765
14766 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
14767 (ns_no_defaults): New declaration.
14768 (main): Use it.
14769
14770 * nsterm.h (ns_no_defaults): New declaration.
14771
14772 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
14773
14774 * nsterm.m (ns_no_defaults): New variable.
14775 (ns_initialize): Don't read defaults when ns_no_defaults.
14776 (EmacsView-readSelectionFromPasteboard:)
14777 (writeSelectionToPasteboard:types:): New stubbed-out methods for
14778 NSServicesRequests protocol. (Bug#1435)
14779 (ns_dumpglyphs_stretch): New function.
14780 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
14781 of 2008-11-15 to other terms. (Bug#615)
14782
14783 * nsimage.m (setPixmapData:): Set to ignore image DPI.
14784
14785 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
14786
14787 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
14788 call for Sparc64.
14789
14790 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14791
14792 * nsfns.m:
14793 * nsgui.h:
14794 * nsmenu.m:
14795 * nsselect.m:
14796 * nsterm.h:
14797 * nsterm.m: Remove '23' comments that indicated code added during
14798 update from emacs-20 -> emacs-23.
14799
14800 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14801
14802 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
14803 ns_alternate_modifier. (Bug#1217)
14804
14805 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
14806 Display all shortcuts, including those w/o super modifier.
14807
14808 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
14809
14810 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
14811
14812 * fileio.c (Vwrite_region_post_annotation_function)
14813 (Vwrite_region_annotation_buffers): New vars.
14814 (build_annotations_unwind): Just reset
14815 Vwrite_region_annotation_buffers.
14816 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
14817 Call write-region-post-annotation-function.
14818 (build_annotations): Add to Vwrite_region_annotation_buffers if
14819 buffer changes.
14820
14821 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
14822
14823 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
14824 Tiger.
14825 * nsfns.m (ns_do_applescript):
14826 Conditionalize typeUTF16ExternalRepresentation on Tiger.
14827
14828 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
14829
14830 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
14831
14832 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
14833
14834 * nsmenu.m (NSMENUPROFILE): Change #if style.
14835
14836 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
14837
14838 * nsterm.m (x_set_frame_alpha): Add prototype.
14839 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
14840 handle Ctrl-tab. (Bug#1841)
14841 (ns_get_color): Use unsigned long long for scanned hex string value.
14842 (ns_term_shutdown): Abort on non SIGTERM signals.
14843 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
14844 (EmacsPrefsController-setPanelFromDefaultValues): New function.
14845 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
14846 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
14847 (ns_defined_color): Fix settings of the XColor variable fields:
14848 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
14849
14850 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
14851 DPI. (Bug#1316)
14852 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
14853 values in onTiger section.
14854
14855 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
14856
14857 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
14858 Check return value of font_spec_from_name.
14859 (Fx_list_fonts): Doc fix. (Bug#1951)
14860
14861 * font.c (font_spec_from_name): Return Qnil if font name could not
14862 be parsed.
14863 (font_parse_name): Treat a `?' character as part of an XLFD.
14864
14865 * fns.c (Fsubstring): Doc fix.
14866
14867 2009-01-19 Kenichi Handa <handa@m17n.org>
14868
14869 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
14870 (ftfont_list): Likewise.
14871
14872 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
14873
14874 * dbusbind.c (Fdbus_register_signal):
14875 * process.c (conv_sockaddr_to_lisp):
14876 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
14877
14878 * callproc.c (Fgetenv_internal): Doc fix.
14879
14880 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
14881
14882 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
14883 it is not even used.
14884
14885 2009-01-16 Glenn Morris <rgm@gnu.org>
14886
14887 * font.c (Ffont_variation_glyphs): Silence compiler.
14888
14889 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
14890
14891 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
14892 Reported by David Robinow <drobinow@gmail.com>.
14893
14894 2009-01-15 Kenichi Handa <handa@m17n.org>
14895
14896 * coding.c (detect_coding_system): Fix handling of null_byte_found.
14897
14898 2009-01-14 Jason Rumney <jasonr@gnu.org>
14899
14900 * frame.c (x_set_font): Always store a font to the font parameter,
14901 never a fontset. (Bug#1562)
14902
14903 2009-01-14 Kenichi Handa <handa@m17n.org>
14904
14905 * coding.c (TWO_MORE_BYTES): New macro.
14906 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
14907
14908 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
14909
14910 * font.c (font_clear_prop): If clearing the family, clear the font
14911 width index too.
14912
14913 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
14914
14915 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
14916
14917 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
14918 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
14919 functions, use sizeof.
14920
14921 2009-01-12 Martin Rudalics <rudalics@gmx.at>
14922
14923 * keyboard.c (read_char): Fix case where last_nonmenu_event
14924 returned a bad value with submenus. (Bug#447)
14925
14926 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
14927
14928 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
14929 family, clear the font width index too.
14930
14931 2009-01-11 Jason Rumney <jasonr@gnu.org>
14932
14933 * keyboard.c (cmd_error_internal): Exit when errors occur before
14934 frame creation and not in daemon mode. (Bug#1836)
14935
14936 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
14937
14938 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
14939 of a display vector, backtrack.
14940 (try_window_reusing_current_matrix): Check glyph type before
14941 referencing charpos member.
14942
14943 2009-01-10 Eli Zaretskii <eliz@gnu.org>
14944
14945 Fix Bug #876:
14946
14947 * coding.c (inhibit_null_byte_detection): New variable.
14948 (detect_coding, detect_coding_system): Don't pay attention to null
14949 bytes if inhibit_null_byte_detection is non-zero.
14950 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
14951 <inhibit-iso-escape-detection>: Doc fix.
14952
14953 2009-01-09 Jason Rumney <jasonr@gnu.org>
14954
14955 * w32font.c (add_font_entity_to_list): Don't report unknown
14956 Windows charset as any unrecognized registry. (Bug#1548)
14957 Only report Unicode Plane 2 fonts as unicode-sip.
14958
14959 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
14960
14961 * xfaces.c (Fx_font_family_list): Delete function.
14962 Move compatibility version to faces.el.
14963
14964 * font.c (Ffont_family_list): Return a list of strings, not symbols.
14965
14966 2009-01-09 Martin Rudalics <rudalics@gmx.at>
14967
14968 * frame.c (x_set_frame_parameters): Remember requested value for
14969 fullscreen before it's reset by the parameter handler.
14970
14971 2009-01-09 Glenn Morris <rgm@gnu.org>
14972
14973 * keyboard.c (last_command_char): For clarity, rename to...
14974 (last_command_event): ... and update all users.
14975 (last_input_char): For clarity, rename to...
14976 (last_input_event): ... and update all users.
14977 (last-command-char, last-input-char): Move to subr.el as aliases.
14978 * cmds.c, commands.h: Update for last_command_char rename.
14979
14980 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
14981
14982 * font.c (font_open_for_lface): Handle unspecified height attribute.
14983
14984 2009-01-08 Jason Rumney <jasonr@gnu.org>
14985
14986 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
14987 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
14988 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
14989 Don't declare.
14990 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
14991 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
14992
14993 2009-01-07 Kenichi Handa <handa@m17n.org>
14994
14995 * fileio.c (Finsert_file_contents): In the case of replace,
14996 remember the coding system used for decoding in
14997 coding_system (Bug#1039).
14998
14999 * coding.c (decode_coding_utf_8): Check byte_after_cr before
15000 breaking the loop. (Bug#870)
15001 (decode_coding_utf_16, decode_coding_emacs_mule)
15002 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15003 (decode_coding_charset): Likewise.
15004
15005 2009-01-05 Martin Rudalics <rudalics@gmx.at>
15006
15007 * frame.c (x_set_frame_parameters): Make sure height (width) get
15008 applied when fullwidth (fullheight) is set. (Bug#1522)
15009
15010 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
15011
15012 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
15013 (utc_base): Declare as ULONGLONG, not long double.
15014 (convert_time_raw): Delete.
15015 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
15016 (initialize_utc_base): New function.
15017 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
15018 (convert_from_time_t): Use initialize_utc_base; compute result with
15019 64-bit arithmetic.
15020 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
15021
15022 2009-01-03 Eli Zaretskii <eliz@gnu.org>
15023
15024 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
15025 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
15026 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
15027 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
15028 [!subprocesses]: Define.
15029 (syms_of_process) [!subprocesses]: Intern and staticpro them.
15030 (Flist_system_processes, Fsystem_process_attributes)
15031 [!subprocesses]: Call list_system_processes and
15032 system_process_attributes instead of returning Qnil.
15033
15034 * dosfns.c (system_process_attributes, list_system_processes):
15035 New functions.
15036
15037 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
15038
15039 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
15040 Don't use the default (no-op) implementation.
15041
15042 2009-01-03 Jason Rumney <jasonr@gnu.org>
15043
15044 * keyboard.c (parse_modifiers_uncached): Wheel events are
15045 clicks (bug#687).
15046
15047 * w32term.c (x_query_colors, x_query_color): New functions.
15048
15049 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
15050 (svg_load_image): Cast returned pointers from dynamically loaded
15051 functions. Eliminate W32 specific code.
15052
15053 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
15054
15055 * nsfns.m (x_set_foreground_color, x_set_background_color)
15056 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
15057 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
15058 x_ prefix instead of ns_. Update references.
15059 (syms_of_nsfns): Add a FIXME comment.
15060
15061 * nsterm.m (x_set_cursor_type): New prototype.
15062 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
15063
15064 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
15065 for Solaris instead of incorrectly providing Qutime and Qcutime.
15066
15067 2009-01-02 Eli Zaretskii <eliz@gnu.org>
15068
15069 * w32.c (process_times): Compute sum of utime and stime.
15070 (system_process_attributes): Add Qtime to the alist.
15071
15072 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
15073 and add them to the alist.
15074
15075 * process.c (top level) <Qtime, Qctime>: New variables.
15076 (syms_of_process): staticpro them.
15077 (Fsystem_process_attributes): Add their documentation to the doc
15078 string.
15079
15080 * process.h: Declare Qtime and Qctime.
15081
15082 2009-01-02 Jason Rumney <jasonr@gnu.org>
15083
15084 * image.c (Qgobject): New symbol.
15085 (syms_of_image): Initialize it.
15086 (init_svg_functions): Load some functions from gobject library.
15087
15088 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
15089
15090 * frame.c (make_terminal_frame): Remove redundant code and useless
15091 block.
15092
15093 2009-01-01 Andreas Schwab <schwab@suse.de>
15094
15095 * process.c (conv_sockaddr_to_lisp): Add workaround for
15096 getsockname bug on BSD.
15097
15098 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
15099
15100 * xfns.c (x_create_tip_frame): Set border width of the X window.
15101
15102 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
15103
15104 2009-01-01 Jason Rumney <jasonr@gnu.org>
15105
15106 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
15107 Don't block input, as per earlier xterm.c changes.
15108
15109 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
15110
15111 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
15112 (ns_appkit_version_int): New function.
15113 (x-server-version): Use ns_appkit_version_int and follow 21+
15114 convention of returning 3 integers.
15115
15116 2008-12-30 Kenichi Handa <handa@m17n.org>
15117
15118 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
15119 (CHAR_SURROGATE_PAIR_P): New macro.
15120
15121 * font.h (struct font_driver): New member get_variation_glyphs.
15122
15123 * font.c (font_range): Don't require a font for a variation selector.
15124 (Ffont_variation_glyphs): New function.
15125 (syms_of_font): Defsubr it.
15126
15127 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
15128 ftfont_variation_glyphs.
15129 (setup_otf_gstring): New function.
15130 (ftfont_drive_otf): Use it.
15131 (ftfont_shape_by_flt): Handle variation selector.
15132 (ftfont_variation_glyphs): New function.
15133
15134 2008-12-30 Martin Rudalics <rudalics@gmx.at>
15135
15136 * frame.c (Vemacs_iconified): Remove.
15137
15138 2008-12-30 Jason Rumney <jasonr@gnu.org>
15139
15140 * frame.c (store_frame_param, x_get_arg): Enable newer code on
15141 WINDOWSNT too, as related changes have already been synced. (Bug#117)
15142
15143 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
15144
15145 * indent.c (Fvertical_motion): Don't advance iterator if we have
15146 reseated to the desired position.
15147
15148 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
15149 checking for pos match.
15150
15151 2008-12-30 Kenichi Handa <handa@m17n.org>
15152
15153 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
15154 just get the low 8-bit of the code.
15155
15156 * font.c (font_intern_prop): Validate str as multibyte.
15157
15158 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15159
15160 * dispextern.h (struct face): Move lface and hash from the middle
15161 of bitfields.
15162
15163 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
15164
15165 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
15166
15167 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
15168 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
15169 instead of intervals.h.
15170
15171 2008-12-26 Andreas Schwab <schwab@suse.de>
15172
15173 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
15174 cons.
15175
15176 2008-12-26 Martin Rudalics <rudalics@gmx.at>
15177
15178 * textprop.c (Qminibuffer_prompt): New variable.
15179 (syms_of_textprop): Initialize it.
15180 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
15181 in minibuffer-prompt face. (Bug#1662)
15182
15183 2008-12-25 Jason Rumney <jasonr@gnu.org>
15184
15185 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
15186
15187 2008-12-24 Jason Rumney <jasonr@gnu.org>
15188
15189 * ralloc.c (r_alloc_reset_variable): New function.
15190
15191 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
15192 record of what points where. (Bug#716)
15193
15194 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
15195
15196 * minibuf.c (read_minibuf): Follow the non-interactive case when
15197 running as a daemon, before detaching.
15198
15199 2008-12-22 Andreas Schwab <schwab@suse.de>
15200
15201 * buffer.c (init_buffer): Use realloc instead of xrealloc.
15202 * gtkutil.c (free_widget_value): Use xfree instead of free.
15203
15204 2008-12-22 Martin Rudalics <rudalics@gmx.at>
15205
15206 * frame.c (delete_frame): New function derived from
15207 Fdelete_frame to handle Qnoelisp value for FORCE argument.
15208 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
15209 (Fdelete_frame): Call delete_frame. Remove line from doc-string
15210 saying that FORCE non-nil doesn't run `delete-frame-functions'.
15211 * frame.h: Extern delete_frame.
15212 * window.c (window_loop):
15213 * terminal.c (delete_terminal):
15214 * xterm.c (x_connection_closed):
15215 * xfns.c (Fx_hide_tip):
15216 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
15217
15218 2008-12-21 Jason Rumney <jasonr@gnu.org>
15219
15220 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
15221 when character maps to .notdef character.
15222
15223 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
15224
15225 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
15226
15227 2008-12-20 Jason Rumney <jasonr@gnu.org>
15228
15229 * frame.c (Fmake_terminal_frame): Raise an error when called from
15230 a graphical frame on Windows. (Bug#1325)
15231
15232 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
15233
15234 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
15235
15236 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
15237
15238 * minibuf.c (Fread_buffer): Doc fix.
15239
15240 2008-12-20 Jason Rumney <jasonr@gnu.org>
15241
15242 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
15243 server name in UNC paths. (Bug#719)
15244
15245 * coding.c (decode_coding): Clear chars_at_source flag when using
15246 charbuf. (Bug#1035)
15247
15248 2008-12-19 Daniel Engeler <engeler@gmail.com>
15249
15250 * sysdep.c (serial_configure): Fix typo.
15251
15252 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15253
15254 * sysdep.c: Include alloca.h.
15255 (system_process_attributes): Add implementation for Solaris.
15256
15257 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
15258
15259 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
15260
15261 Reorganize implementation of Flist_system_processes and
15262 Fsystem_process_attributes. No functional changes.
15263 * process.c: Don't #include pwd.h, grp.h and limits.h.
15264 (Flist_system_processes): Just call list_system_processes.
15265 (Fsystem_process_attributes): Just call system_process_attributes.
15266 (procfs_list_system_processes, time_from_jiffies)
15267 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15268 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
15269
15270 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
15271 (list_system_processes): Rename from
15272 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
15273 Provide a do nothing implementation.
15274 (system_process_attributes): Rename from
15275 procfs_list_system_processes.
15276 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
15277 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
15278
15279 * w32.c (list_system_processes): Rename from
15280 w32_list_system_processes.
15281 (system_process_attributes): Rename from
15282 w32_system_process_attributes.
15283
15284 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
15285
15286 * process.h (w32_list_system_processes)
15287 (w32_system_process_attributes): Remove.
15288 (list_system_processes, system_process_attributes):
15289 New prototypes.
15290
15291 2008-12-19 Kenichi Handa <handa@m17n.org>
15292
15293 * xfont.c (xfont_decode_coding_xlfd): New function.
15294 (xfont_encode_coding_xlfd): New function.
15295 (xfont_list_pattern): Decode XLFD by iso-8859-1.
15296 (xfont_list): Decode and encode XLFD by iso-8859-1.
15297 (xfont_match): Likewise.
15298 (xfont_list_family): Likewise.
15299 (xfont_open): Likewise.
15300
15301 * ftfont.c (ftfont_open): Generate a multibyte string if given
15302 names are utf-8.
15303
15304 * xftfont.c (xftfont_open): Generate a multibyte string if given
15305 names are utf-8.
15306
15307 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
15308
15309 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
15310 changed.
15311 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
15312 clicked on a detached tool bar button.
15313
15314 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
15315
15316 * emacs.c (main): Print and error and exit when no data is read
15317 from the pipe.
15318
15319 2008-12-17 Jason Rumney <jasonr@gnu.org>
15320
15321 * w32font.c (w32font_has_char): Always return -1.
15322
15323 2008-12-16 Kenichi Handa <handa@m17n.org>
15324
15325 * font.c (font_open_entity): Fix previous change.
15326
15327 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
15328
15329 * process.c: Include <limits.h>.
15330
15331 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
15332
15333 * font.c (font_update_drivers): Fix mistake in reconstructing the
15334 driver list.
15335
15336 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
15337
15338 * font.c (font_clear_cache): Fix format of font cache data.
15339
15340 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
15341
15342 * xftfont.c (xftfont_open): Free Xft font pattern if
15343 XftFontOpenPattern fails.
15344
15345 * xterm.c (x_free_frame_resources): Remove extraneous call to
15346 free_frame_faces.
15347
15348 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15349
15350 * xterm.c (x_delete_display): Move xim_close_dpy call to
15351 x_delete_terminal.
15352 (x_delete_terminal): Call xim_close_dpy.
15353
15354 2008-12-13 Jason Rumney <jasonr@gnu.org>
15355
15356 * w32font.c (intern_font_name): New function.
15357 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
15358 (w32font_open_internal, Fx_select_font): Decode font name.
15359 (fill_in_logfont, list_all_matching_fonts): Encode font name.
15360
15361 * w32font.h (intern_font_name): Declare new function.
15362
15363 * w32uniscribe.c (add_opentype_font_name_to_list):
15364 Use intern_font_name.
15365
15366 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15367
15368 * frame.c (Fdelete_frame): Call free_font_driver_list.
15369
15370 * font.c (free_font_driver_list): Implement missing function.
15371
15372 * w32term.c (w32_term_init): Don't initialize the image cache
15373 here; it will be done in init_frame_faces.
15374
15375 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
15376 (struct x_display_info): Remove unused member null_pixel.
15377 New member xim_callback_data.
15378
15379 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
15380 (xim_initialize): Save pointer to callback function data.
15381 (xim_close_dpy): Free callback function data. Call XCloseIM,
15382 reverting 2008-11-04 change by David Smith.
15383 (x_term_init): Don't initialize the image cache here; it will be
15384 done in init_frame_faces. Remove ancient "null_pixel" cruft.
15385 (x_delete_display): Free x_dnd_atoms member.
15386
15387 2008-12-13 Kenichi Handa <handa@m17n.org>
15388
15389 * font.c (font_rescale_ratio): Move from xfaces.c.
15390 Argument type changed. Handle a font-spec too.
15391 (font_score): Check Vface_font_rescale_alist.
15392 (font_open_entity): Likewise. (Bug#1547)
15393
15394 * xfaces.c (font_rescale_ratio): Move to font.c.
15395
15396 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
15397
15398 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
15399
15400 2008-12-12 Jason Rumney <jasonr@gnu.org>
15401
15402 * w32fns.c (x_display_info_for_name, Fx_open_connection):
15403 Set Vwindow_system_version to the real w32 major version.
15404
15405 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
15406
15407 * term.c (init_tty): Move setting the terminal name before the
15408 potential user: maybe_fatal.
15409
15410 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
15411
15412 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
15413 all callers changed. Call free_frame_faces to free the face cache.
15414
15415 2008-12-11 Jason Rumney <jasonr@gnu.org>
15416
15417 * w32font.c (fill_in_logfont): Don't assume symbol script means
15418 SYMBOL_CHARSET. (Bug#547)
15419
15420 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
15421 size for surrogates. (Bug#1096, bug#872)
15422
15423 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15424
15425 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
15426
15427 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15428
15429 * process.c (Fsystem_process_attributes, syms_of_process):
15430 Fix typo in name of Ssystem_process_attributes.
15431 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
15432
15433 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
15434
15435 * syntax.c (Fmodify_syntax_entry): Doc fix.
15436
15437 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
15438
15439 * font.c (Ffont_spec): Move usage to end of docstring.
15440
15441 2008-12-10 Jason Rumney <jasonr@gnu.org>
15442
15443 * w32font.c (Qcham): New symbol.
15444 (font_supported_scripts): Add cham, and comments for other new
15445 scripts in bitfield from OpenType spec.
15446 (add_font_entity_to_list): Limit unicode-sip fonts to those that
15447 contain characters beyond the bmp.
15448
15449 2008-12-10 Kenichi Handa <handa@m17n.org>
15450
15451 * ftfont.c (fc_charset_table): Add "unicode-sip".
15452 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
15453 Qunicode_sip.
15454
15455 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
15456
15457 * coding.c (QCdefault_char): Rename from QCdefalut_char.
15458 (Fcoding_system_put): Use QCdefault_char.
15459 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
15460
15461 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
15462
15463 * xftfont.c (syms_of_xftfont): Fix typo.
15464
15465 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
15466
15467 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
15468
15469 * emacs.c (main): Close daemon_pipe on exec.
15470
15471 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
15472
15473 * termchar.h (struct tty): New members termcap_term_buffer and
15474 termcap_strings_buffer.
15475
15476 * term.c (encode_terminal_code): Free any previous memory blocks
15477 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
15478 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
15479 All callers changed.
15480 (init_tty): Store termcap data and string buffers in new struct
15481 tty members termcap_term_buffer and termcap_strings_buffer.
15482 (delete_tty): Free them.
15483 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
15484
15485 2008-12-07 Seiji Zenitani <zenitani@mac.com>
15486
15487 * nsfns.m (ns_set_background_color): Remove code duplication.
15488 It was a substitute for face-transparency on OS X 10.3.
15489
15490 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
15491
15492 * coding.c (make_conversion_work_buffer): Disable buffer
15493 modification hooks in the work buffer.
15494
15495 2008-12-05 Eli Zaretskii <eliz@gnu.org>
15496
15497 * process.c (procfs_system_process_attributes): If `nread' has a
15498 negative value, assign zero to it.
15499
15500 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
15501
15502 * eval.c (Vdebug_on_error): Doc fix.
15503
15504 2008-12-05 Kenichi Handa <handa@m17n.org>
15505
15506 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
15507 second character is a combining character.
15508
15509 2008-12-05 Eli Zaretskii <eliz@gnu.org>
15510
15511 * process.c (procfs_system_process_attributes): Don't use cmd,
15512 cmdsize, and q without initializing them first.
15513
15514 2008-12-04 Jason Rumney <jasonr@gnu.org>
15515
15516 * w32font.c (w32font_draw): Initialize orig_clip before getting
15517 it, and delete it when finished.
15518
15519 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
15520
15521 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
15522 case when running as a daemon before detaching.
15523
15524 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
15525
15526 * w32.c (init_environment): Don't unload library shell32.dll.
15527
15528 2008-12-03 Kenichi Handa <handa@m17n.org>
15529
15530 * font.c (font_at): Set `multibyte' at first.
15531
15532 * coding.c (decode_coding_charset): Check type of an element of
15533 vector VALIDS.
15534 (encode_coding_emacs_mule): Be sure to set `code'.
15535
15536 * fontset.c (face_for_char): Handle invalid charset property correctly.
15537 (font_for_char): Likewise.
15538
15539 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
15540
15541 * font.c (Fopen_font): Compute pixel size correctly.
15542 (font_update_lface): Handle fonts with corrupted size specs,
15543 i.e. non-int and non-float.
15544
15545 * ftfont.c (ftfont_match): Initialize entity variable.
15546 (ftfont_resolve_generic_family): Avoid using uninitialized var.
15547 (ftfont_list_family): Initialize list var earlier.
15548
15549 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
15550
15551 * xterm.c (x_draw_glyph_string): Fall back on
15552 underline_minimum_offset for underline position.
15553
15554 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
15555
15556 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
15557
15558 * character.c (c_string_width): Specify the type for LEN.
15559
15560 2008-12-03 Kenichi Handa <handa@m17n.org>
15561
15562 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
15563 (decode_coding_utf_8): Likewise.
15564 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
15565 (produce_chars): Initialize consumed_chars to 0.
15566
15567 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
15568
15569 * keyboard.c (make_lispy_position): Only use PT if the selected
15570 window is current.
15571
15572 2008-12-02 Andreas Schwab <schwab@suse.de>
15573
15574 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
15575
15576 * doprnt.c (doprnt1): Fix size of charbuf.
15577
15578 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
15579
15580 * keyboard.c (timer_check): Revert last change.
15581
15582 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
15583
15584 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
15585
15586 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
15587
15588 * makefile.w32-in: Update dependencies.
15589 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
15590
15591 2008-12-01 Andreas Schwab <schwab@suse.de>
15592
15593 * font.c (register_font_driver): Use xmalloc.
15594 (font_put_frame_data): Likewise.
15595
15596 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
15597
15598 * xfaces.c (realize_x_face): Make abort condition clearer.
15599
15600 * gtkutil.c (update_frame_tool_bar): Initialize variable.
15601
15602 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
15603
15604 * keyboard.c (timer_check): After a timer runs, ensure that the
15605 selected window's buffer is current.
15606
15607 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
15608
15609 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
15610 It was accidentally restored by the Unicode merge.
15611
15612 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
15613
15614 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
15615
15616 * w32proc.c: Include "coding.h".
15617 (Fw32_short_file_name): Encode filename passed to Windows API.
15618 (Fw32_long_file_name): Encode filename passed to Windows API and
15619 decode back the result. (Bug#1433)
15620
15621 2008-11-29 Kenichi Handa <handa@m17n.org>
15622
15623 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
15624 not before accessing it.
15625
15626 * charset.c (Fdefine_charset_internal): After calculating
15627 min_char, max_char, and fastmap, copy the charset structure again.
15628 (encode_char): Fix the previous change.
15629
15630 2008-11-28 Seiji Zenitani <zenitani@mac.com>
15631
15632 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
15633
15634 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
15635
15636 * nsterm.m (x_set_frame_alpha): New function.
15637
15638 2008-11-27 Eli Zaretskii <eliz@gnu.org>
15639
15640 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
15641
15642 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
15643
15644 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
15645 pointer to check_face_name.
15646
15647 2008-11-27 Kenichi Handa <handa@m17n.org>
15648
15649 * category.h (SET_CATEGORY_SET): Call set_category_set.
15650 (set_category_set): Extern it.
15651
15652 * category.c (hash_get_category_set): New function.
15653 (Fmodify_category_entry): Adjust for the change of
15654 char_table_ref_and_range. Call hash_get_category_set to get a
15655 category set to store in the table.
15656
15657 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
15658 Funify_charset.
15659
15660 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
15661 (DECODE_CHAR): Check if the decoder vector is ready.
15662 (ENCODE_CHAR): Check if the encoder char-table is ready.
15663 (maybe_unify_char): Extern it.
15664
15665 * charset.c (Vchar_unified_charset_table): Delete it.
15666 (inhibit_load_charset_map): New variable.
15667 (temp_charset_work): New variable.
15668 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
15669 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
15670 New macros.
15671 (load_charset_map): Meaning of control_flag changed.
15672 If inhibit_load_charset_map is nonzero, setup a table in
15673 temp_charset_work.
15674 (load_charset): New argument control_flag.
15675 (map_charset_for_dump): New function.
15676 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
15677 map_charset_for_dump.
15678 (Fdefine_charset_internal): If the charset method is MAP, load
15679 mapping tables by calling load_charset.
15680 (Funify_charset): Don't load a mapping table but directly set
15681 Vchar_unify_table.
15682 (maybe_unify_char): New function.
15683 (decode_char): Don't handle the deleted method MAP_DEFERRED.
15684 Handle the case of inhibit_load_charset_map being nonzero.
15685 (encode_char): Don't handle the deleted method MAP_DEFERRED.
15686 Handle the case of inhibit_load_charset_map being nonzero.
15687 (Fclear_charset_maps): Just free temp_charset_work.
15688 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
15689 variable.
15690
15691 * chartab.c (sub_char_table_ref_and_range): Adjust for the
15692 change of char_table_ref_and_range.
15693 (char_table_ref_and_range): Change the meaning of argument FROM
15694 and TO. Now the caller must provide initial values for *FROM
15695 and *TO.
15696
15697 * fontset.c (fontset_add): Adjust for the change of
15698 char_table_ref_and_range.
15699 (fontset_get_font_group): Likewise.
15700 (Ffontset_info): Likewise.
15701
15702 * keymap.c (describe_vector): Adjust for the change of
15703 char_table_ref_and_range. For char-table, put boundary between
15704 non-ASCII and 8-bit characters.
15705
15706 * print.c (print_object): For bool-vector, delete unnecessary
15707 check of ASCII_BYTE_P.
15708
15709 2008-11-26 Jason Rumney <jasonr@gnu.org>
15710
15711 * w32font.c (w32font_open_internal): Don't include external
15712 leading in font height. (Bug#879)
15713
15714 2008-11-26 Glenn Morris <rgm@gnu.org>
15715
15716 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
15717 redefinition with ifdef. (Bug#1383)
15718
15719 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15720
15721 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
15722
15723 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
15724
15725 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
15726 New EmacsView methods.
15727 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
15728 Fixes bug #1048,1357,1414.
15729
15730 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
15731
15732 Fix bug #1362.
15733 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
15734 is not an indexed color.
15735 * nsterm.m (free_indexed_color): Add argument checking.
15736 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
15737
15738 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
15739
15740 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
15741 Document confirm-after-completion value for
15742 minibuffer-completion-confirm.
15743
15744 2008-11-24 Jason Rumney <jasonr@gnu.org>
15745
15746 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
15747 warning.
15748
15749 2008-11-23 Jason Rumney <jasonr@gnu.org>
15750
15751 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
15752 restored before returning.
15753
15754 * w32font.c (check_face_name): New function.
15755 (add_font_entity_to_list): Use it to filter out common substituted
15756 fonts. (Bug#642)
15757
15758 2008-11-22 Martin Rudalics <rudalics@gmx.at>
15759
15760 * buffer.c (Fswitch_to_buffer): Reword and mention new option
15761 confirm-nonexistent-file-or-buffer in doc-string.
15762
15763 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15764
15765 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
15766 Fix copy/paste typo. Add checks.
15767
15768 2008-11-21 Kenichi Handa <handa@m17n.org>
15769
15770 * coding.c (detect_coding_iso_2022): Reject invalid composition
15771 sequence.
15772 (DECODE_COMPOSITION_START): If the current source is the last
15773 block, and the current composition doesn't end, regard this
15774 sequence as invalid.
15775 (decode_coding_iso_2022): Handle invalid composition sequence.
15776
15777 2008-11-20 Martin Rudalics <rudalics@gmx.at>
15778
15779 * window.c (coordinates_in_window): Don't return
15780 ON_VERTICAL_BORDER for the rightmost position of a mode/header
15781 line when the window is not the rightmost one. (Bug#1372)
15782
15783 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
15784
15785 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
15786
15787 2008-11-15 Eli Zaretskii <eliz@gnu.org>
15788
15789 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
15790 and bright_bg if noninteractive is non-zero.
15791
15792 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15793
15794 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
15795 x_draw_glyph_string_background.
15796
15797 * w32term.c (x_draw_glyph_string): Likewise.
15798
15799 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
15800
15801 * xterm.c (x_draw_glyph_string): Stop drawing the background of
15802 the next glyph string once past the overhang width.
15803
15804 * nsterm.m (ns_draw_glyph_string): Likewise.
15805
15806 * w32term.c (x_draw_glyph_string): Likewise.
15807
15808 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
15809
15810 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
15811 double file close.
15812
15813 2008-11-14 Martin Rudalics <rudalics@gmx.at>
15814
15815 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
15816 dedicated status of window before attempting to display another
15817 buffer in it.
15818
15819 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
15820
15821 * msdos.c (Fmsdos_long_file_names):
15822 (syms_of_msdos) <dos-unsupported-char-glyph>:
15823 * dosfns.c (Fint86): Fix typos in docstrings.
15824
15825 2008-11-14 Eli Zaretskii <eliz@gnu.org>
15826
15827 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
15828
15829 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
15830
15831 * puresize.h (BASE_PURESIZE): Increase to 1260000.
15832
15833 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
15834
15835 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
15836
15837 * frame.h: Negative alpha means "don't touch".
15838
15839 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
15840
15841 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
15842
15843 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
15844
15845 * hftctl.c:
15846 * chpdef.h:
15847 * acldef.h: Remove files used only for systems no longer supported.
15848
15849 * Makefile.in: Fix .o alphabetical ordering.
15850 (hftctl.o): Remove dependency, file removed.
15851 (keymap.o, print.o): Depend on charset.h.
15852
15853 2008-11-10 Kenichi Handa <handa@m17n.org>
15854
15855 * character.c (Fget_byte): Fix and make it faster for unibyte target.
15856
15857 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
15858
15859 * dired.c (file_name_completion): If completion_ignore_case is
15860 enabled, ignore case when checking completion-regexp-list.
15861
15862 2008-11-08 Eli Zaretskii <eliz@gnu.org>
15863
15864 * vm-limit.c (get_lim_data): Fix last change.
15865
15866 2008-11-08 Kenichi Handa <handa@m17n.org>
15867
15868 * character.c (Fget_byte): New function.
15869 (syms_of_character): Defsubr Fget_byte.
15870
15871 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
15872
15873 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
15874 cursor position is valid after scrolling.
15875
15876 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
15877
15878 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
15879
15880 2008-11-06 Glenn Morris <rgm@gnu.org>
15881
15882 * xterm.c (handle_one_xevent): Don't let popup menus cause
15883 mouse-autoselect-window related window switching. (Bug#1261)
15884
15885 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
15886
15887 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
15888
15889 2008-11-04 Andreas Schwab <schwab@suse.de>
15890
15891 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
15892
15893 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
15894
15895 * xfns.c (Fx_wm_set_size_hint): New function.
15896
15897 2008-11-03 Martin Rudalics <rudalics@gmx.at>
15898
15899 * textprop.c (Fprevious_single_char_property_change): Return 0
15900 when there's no change in a string. (Bug#1301)
15901
15902 2008-11-02 Martin Rudalics <rudalics@gmx.at>
15903
15904 * frame.c (do_switch_frame): New argument NORECORD passed to
15905 Fselect_window.
15906 (Fselect_frame): New argument NORECORD passed to
15907 do_switch_frame.
15908 (Fset_frame_selected_window): New argument NORECORD passed to
15909 Fselect_frame.
15910 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
15911 in call of do_switch_frame.
15912 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
15913 Handle NORECORD argument in call of Fselect_frame.
15914 * lisp.h (do_switch_frame, Fselect_frame)
15915 (Fset_frame_selected_window): Adjust declarations.
15916 * window.c (select_frame_norecord): New function.
15917 (run_window_configuration_change_hook): Use it and call
15918 Fselect_frame with NORECORD set.
15919 (Fselect_window): Pass NORECORD to Fselect_frame.
15920 (Fset_window_configuration): Handle NORECORD argument in call of
15921 do_switch_frame.
15922 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
15923 Fset_frame_selected_window.
15924 * keyboard.c (command_loop_1): Handle NORECORD in call of
15925 Fselect_frame (currently ifdefd).
15926
15927 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
15928
15929 * emacs.c (USAGE2): Untabify.
15930
15931 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
15932
15933 * composite.c (fill_gstring_header): Fix copy/paste typo.
15934
15935 2008-10-31 Martin Rudalics <rudalics@gmx.at>
15936
15937 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
15938 (Fother_window): Rename argument and rewrite doc-string.
15939 (select_window_norecord): Fix return value. (Bug#1276)
15940
15941 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
15942
15943 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
15944 new frames overriding foreground for tooltips. Based on similar patch
15945 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
15946
15947 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
15948
15949 * emacs.c (Fdaemon_initialized): Initialize nfd.
15950
15951 2008-10-29 Martin Rudalics <rudalics@gmx.at>
15952
15953 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
15954 (Fwindow_text_height): Clarify doc-strings.
15955 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
15956 doc-string of window-scroll-functions.
15957
15958 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
15959
15960 * category.c (syms_of_category): Fix typo in docstring.
15961
15962 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
15963
15964 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
15965 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
15966 Fix typos in docstrings.
15967
15968 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
15969
15970 * emacs.c (daemon_pipe): Make non-static.
15971 (IS_DAEMON): Move definition ...
15972 * lisp.h (IS_DAEMON): ... here.
15973 (daemon_pipe): Declare.
15974 (is_daemon): Remove.
15975 * dispnew.c (init_display): Use IS_DAEMON.
15976
15977 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15978
15979 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
15980 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
15981
15982 * emacs.c (is_daemon): Remove.
15983 (main): Don't set is_daemon.
15984 (IS_DAEMON): New macro.
15985 (Fdaemonp, Fdaemon_initialized): Use it.
15986 (Fdaemon_initialized): Write a char into the pipe to make sure the
15987 parent exits.
15988 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
15989
15990 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
15991
15992 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
15993 over-sized glyph, draw it with the default glyph width.
15994
15995 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
15996 glyph, draw it with the default glyph width.
15997
15998 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
15999 glyph, draw it with the default glyph width.
16000
16001 * xdisp.c (try_scrolling): When computing the distance from the
16002 scroll margin to PT, try moving some distance past the window
16003 bottom before giving up.
16004
16005 2008-10-27 Martin Rudalics <rudalics@gmx.at>
16006
16007 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
16008 (Fset_window_buffer): Explain in doc-string that a window can be
16009 "strongly" dedicated to its buffer.
16010
16011 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
16012
16013 * emacs.c (daemon_name): New variable.
16014 (main): Deal with --daemon=SERVER_NAME.
16015 (Fdaemonp): Return a name if one was passed to --daemon.
16016
16017 2008-10-26 Romain Francoise <romain@orebokech.com>
16018
16019 * emacs.c (daemon_pipe): New variable.
16020 (main): Create a pipe before forking, make the parent exit only after
16021 the child has closed its end of the pipe. Move closing the
16022 descriptors ...
16023 (Fdaemon_initialized): ... here. New function.
16024
16025 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
16026
16027 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
16028 the previous unoptimized table.
16029
16030 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
16031 the distinction between non-nil and non-t value of `dedicated'.
16032
16033 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
16034
16035 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
16036 read_char_minibuf_menu_text is large enough to hold the menu string.
16037
16038 2008-10-25 Martin Rudalics <rudalics@gmx.at>
16039
16040 * window.c (Fget_buffer_window, Fdelete_windows_on)
16041 (Freplace_buffer_in_windows): Make buffer argument optional and
16042 rename to buffer_or_name.
16043
16044 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
16045
16046 * xdisp.c (handle_single_display_spec, handle_display_prop):
16047 Undo 2005-05-16 change.
16048 (handle_stop): Pop iterator if it's loaded with an empty string.
16049 (get_overlay_strings_1): Don't save iterator if it's loaded with
16050 an empty string (bug#1201).
16051
16052 2008-10-24 Kenichi Handa <handa@m17n.org>
16053
16054 * ftfont.c (ftfont_otf_features): Fix previous change.
16055 (ftfont_otf_capability): Check FeatureList.FeatureCount before
16056 calling ftfont_otf_features.
16057
16058 2008-10-24 Kenichi Handa <handa@m17n.org>
16059
16060 * font.c (font_match_p): Fix for the case that a vector of
16061 characters is in script-representative-chars.
16062
16063 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
16064
16065 * dbusbind.c (xd_in_read_queued_messages): New variable.
16066 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
16067 (xd_read_queued_messages): Catch Qdbus_error from the macros.
16068 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
16069 macro. (Bug#1186)
16070
16071 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
16072
16073 * s/sol2-10.h: New file.
16074
16075 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16076
16077 * xdisp.c (fill_glyph_string): Fix typo in source (though the
16078 poor beast has survived 9+ years and the jump from xterm.c!).
16079
16080 2008-10-23 Martin Rudalics <rudalics@gmx.at>
16081
16082 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
16083 Reword doc-string.
16084 (Fbury_buffer): In doc-string say what happens to the buffer's window.
16085
16086 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
16087
16088 * character.c (syms_of_character) <script-representative-chars>:
16089 <unicode-category-table>: Doc fixes.
16090
16091 2008-10-23 Noah Friedman <friedman@splode.com>
16092
16093 * coding.c (make_conversion_work_buffer): Check that
16094 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
16095 Fget_buffer_create.
16096
16097 2008-10-23 Kenichi Handa <handa@m17n.org>
16098
16099 * font.c (font_add_log): Check the values of extra properties.
16100
16101 2008-10-22 Martin Rudalics <rudalics@gmx.at>
16102
16103 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16104 Reword doc-string.
16105 (Fset_window_parameter): Use NILP.
16106 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
16107 (Frecenter): Use "selected" instead of "current" window in doc-strings.
16108
16109 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16110
16111 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
16112
16113 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16114
16115 * nsfns.m (ns_appkit_version): New function.
16116 (x-server-version): Use it.
16117 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
16118 (x-server-vendor): Don't check_ns().
16119
16120 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
16121
16122 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
16123
16124 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
16125 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
16126
16127 2008-10-22 Kenichi Handa <handa@m17n.org>
16128
16129 * syntax.c (scan_words): Call word_boundary_p instead of comparing
16130 scripts.
16131
16132 * category.c (word_boundary_p): Check scripts instead of charset.
16133 Handle nil value in word-separating-categories and
16134 word-combining-categories.
16135 (syms_of_category): Fix docstrings of word-separating-categories
16136 and word-combining-categories.
16137
16138 2008-10-21 Eli Zaretskii <eliz@gnu.org>
16139
16140 * coding.c (Fencode_coding_region, Fdecode_coding_region)
16141 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
16142
16143 2008-10-21 Martin Rudalics <rudalics@gmx.at>
16144
16145 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
16146 Rename arg "buffer" to "buffer_or_name".
16147 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
16148 it optional.
16149 (no_switch_window): Remove since the return value is not used.
16150 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
16151 Consider window as dedicated when Fwindow_dedicated_p returns a
16152 non-nil value.
16153 * lisp.h: Remove prototype for no_switch_window.
16154
16155 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
16156
16157 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
16158 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
16159
16160 2008-10-21 Kenichi Handa <handa@m17n.org>
16161
16162 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
16163 check Vlatin_extra_code_table.
16164
16165 2008-10-20 Eli Zaretskii <eliz@gnu.org>
16166
16167 * fileio.c (Fset_file_modes): Doc fix.
16168
16169 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
16170
16171 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
16172 in arrays.
16173
16174 2008-10-19 Martin Rudalics <rudalics@gmx.at>
16175
16176 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
16177 Mention kill-buffer in doc-string.
16178 (Fset_window_buffer): Reinsert tem check removed in last commit.
16179 (Fenlarge_window, Fshrink_window): Have argument names and
16180 doc-string follow Elisp manual more closely.
16181
16182 2008-10-18 Eli Zaretskii <eliz@gnu.org>
16183
16184 * fileio.c (Fset_file_modes): Doc fix.
16185
16186 2008-10-18 Martin Rudalics <rudalics@gmx.at>
16187
16188 * window.c (Fwindow_width, Fset_window_start)
16189 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
16190 (Fdelete_windows_on, Freplace_buffer_in_windows):
16191 Make doc-strings follow code and Elisp manual more closely.
16192 (Fwindow_dedicated_p): Make window argument optional.
16193 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
16194 (Fset_window_buffer): Respect any non-nil dedicated value for
16195 window. Rename "buffer" argument to "buffer_or_name".
16196
16197 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
16198
16199 * m/sh3.h: New file, machine description for SuperH.
16200
16201 2008-10-17 Martin Rudalics <rudalics@gmx.at>
16202
16203 * window.c (Fsplit_window): Rename arg horflag to horizontal.
16204
16205 2008-10-17 Kenichi Handa <handa@m17n.org>
16206
16207 * ftfont.c (ftfont_otf_features): Fix indexing
16208 gsub_gpos->FeatureList.Feature. Check the validity of indices.
16209
16210 2008-10-16 Magnus Henoch <mange@freemail.hu>
16211
16212 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
16213 (Fdbus_call_method_asynchronously): Ditto.
16214 This change makes C-h f display the argument list.
16215
16216 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
16217
16218 * fileio.c (Fexpand_file_name): Doc fix.
16219
16220 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
16221 of :foreground and :background equivalent to unspecified (20.x
16222 compatibility).
16223
16224 2008-10-15 Eli Zaretskii <eliz@gnu.org>
16225
16226 * buffer.c (syms_of_buffer): Doc fix.
16227
16228 2008-10-14 Kenichi Handa <handa@m17n.org>
16229
16230 * font.c (font_clear_prop): When clearing font width, clear the
16231 average width field too.
16232
16233 2008-10-12 Andreas Schwab <schwab@suse.de>
16234
16235 * ftfont.c (ftfont_shape_by_flt): Make static.
16236 * ftfont.h (ftfont_shape_by_flt): Don't declare.
16237
16238 * font.c: Don't include <m17n-flt.h>.
16239
16240 2008-10-10 Eli Zaretskii <eliz@gnu.org>
16241
16242 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
16243
16244 2008-10-09 Eli Zaretskii <eliz@gnu.org>
16245
16246 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
16247 away code.
16248
16249 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
16250
16251 * dispnew.c (update_text_area): Avoid looping due to large glyph
16252 overhangs (bug#1070).
16253
16254 2008-10-09 Kenichi Handa <handa@m17n.org>
16255
16256 * fontset.c (face_for_char): If face->fontset is negative, just
16257 return ascii_face.
16258
16259 * font.c (font_delete_unmatched): Fix previous change.
16260 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
16261
16262 2008-10-09 Martin Rudalics <rudalics@gmx.at>
16263
16264 * frame.c (Fraise_frame): On text-only terminals select frame in
16265 order to make it visible. (Bug#1061)
16266
16267 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
16268
16269 * fontset.c (fontset_find_font): Check frame validity.
16270
16271 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
16272
16273 * gtkutil.c (xg_display_open): Reset default display if none exists.
16274 (xg_display_close): Allow Emacs to close all displays (bug#985).
16275
16276 2008-10-06 Andreas Schwab <schwab@suse.de>
16277
16278 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
16279
16280 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
16281
16282 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
16283
16284 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
16285
16286 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
16287 during initialization.
16288
16289 2008-10-04 Eli Zaretskii <eliz@gnu.org>
16290
16291 * xdisp.c (redisplay_internal): If frame switched, redisplay the
16292 whole thing on MSDOS frames as well as on a TTY.
16293
16294 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
16295 well as for TTY.
16296 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
16297 well as on a TTY.
16298
16299 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
16300 as well as for TTY.
16301
16302 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
16303
16304 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
16305 MSDOS frames as well.
16306
16307 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16308
16309 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
16310 correct arguments.
16311 * menu.c (find_and_return_menu_selection): Add cast.
16312
16313 2008-10-03 Glenn Morris <rgm@gnu.org>
16314
16315 * emacs.c (USAGE1): Add --daemon.
16316
16317 2008-10-02 Eli Zaretskii <eliz@gnu.org>
16318
16319 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
16320 100, so it's in percents as advertised.
16321
16322 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
16323
16324 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
16325 (ns_output.current_cursor, ns_output.desired_cursor)
16326 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
16327 (FRAME_NEW_CURSOR_COLOR): Remove.
16328
16329 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
16330 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
16331 enumeration (HOLLOW_BOX_CURSOR, etc.).
16332
16333 * nsterm.m (ns_frame_rehighlight): Remove commented code.
16334 (draw_window_cursor): Simplify code.
16335 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
16336 Don't change cursor type. In latter, call rehighlight instead of doing
16337 updates manually.
16338 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
16339 Use core Emacs cursor types.
16340
16341 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
16342
16343 2008-10-02 Martin Rudalics <rudalics@gmx.at>
16344
16345 * process.c (Faccept_process_output): Fix doc-string.
16346
16347 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
16348
16349 * gmalloc.c (__sbrk): Also define for uClibc.
16350
16351 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
16352 for uClibc.
16353
16354 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16355
16356 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
16357 styles.
16358 (nsfont_open): Reenable the cache.
16359
16360 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16361
16362 * font.c (font_matching_entity): Reflect ATTRS in font selection.
16363 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
16364
16365 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
16366
16367 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
16368 a suspended terminal.
16369
16370 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
16371
16372 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
16373
16374 2008-09-30 Eli Zaretskii <eliz@gnu.org>
16375
16376 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
16377
16378 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
16379
16380 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
16381 in a continued line coincides with a line beginning.
16382
16383 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
16384
16385 * nsfont.m (nsfont_trait_distance): Fix bug.
16386 (nsfont_list): Return a list rather than a vector (syncs with Handa
16387 changes of 2008-05-14).
16388 (nsfont_open): Improve logging.
16389
16390 2008-09-29 Andreas Schwab <schwab@suse.de>
16391
16392 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
16393
16394 2008-09-28 Martin Rudalics <rudalics@gmx.at>
16395
16396 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
16397 name as char-resolve-modifiers.
16398 Reported by: Markus Triska <markus.triska@gmx.at>
16399
16400 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
16401
16402 * dispnew.c (init_display): Return earlier when running as a daemon.
16403
16404 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16405
16406 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
16407
16408 2008-09-27 Eli Zaretskii <eliz@gnu.org>
16409
16410 * composite.c (Fcomposition_get_gstring)
16411 (Fcompose_region_internal, Fcompose_string_internal)
16412 (Ffind_composition_internal): Doc fix.
16413 (syms_of_composite) <compose-chars-after-function>: Doc fix.
16414 (syms_of_composite) <auto-composition-function>: Doc fix.
16415 (syms_of_composite) <composition-function-table>: Doc fix.
16416
16417 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
16418
16419 * search.c (wordify): New argument for lax word-ends.
16420 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
16421
16422 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
16423
16424 * lisp.h (is_daemon): Declare.
16425 * dispnew.c (init_display): Do not try to initialize the terminal
16426 when running as a daemon.
16427
16428 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
16429
16430 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
16431 x_display_pixel_height.
16432
16433 2008-09-22 Martin Rudalics <rudalics@gmx.at>
16434
16435 * undo.c (record_point): Don't call Fundo_boundary for first
16436 change. (Bug#731)
16437
16438 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
16439
16440 * emacs.c (Fdaemonp): Doc fix.
16441
16442 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
16443
16444 * emacs.c (main): Place #ifdef in the proper place.
16445
16446 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16447
16448 * emacs.c (standard_args): Add --daemon.
16449 (main): Disconnect from the terminal when --daemon is passed.
16450 (is_daemon): New variable.
16451 (Fdaemonp): New function.
16452 (syms_of_emacs): Defsubr it.
16453
16454 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
16455
16456 * xdisp.c (get_next_display_element): Handle string display
16457 correctly when checking for the end of a box run.
16458
16459 2008-09-20 Glenn Morris <rgm@gnu.org>
16460
16461 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
16462 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
16463 (Frename_file): Avoid copying to trash if a rename involves
16464 a delete. (Bug#964).
16465
16466 2008-09-20 Eli Zaretskii <eliz@gnu.org>
16467
16468 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
16469 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
16470 frames as well as termcap frames.
16471 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
16472 get_named_tty.
16473
16474 2008-09-19 Eli Zaretskii <eliz@gnu.org>
16475
16476 * process.c (procfs_system_process_attributes): Fix cmdline in
16477 case /proc/PID/cmdline is empty.
16478
16479 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
16480 x_display_pixel_height.
16481
16482 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
16483
16484 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
16485
16486 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16487 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
16488
16489 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
16490
16491 * dispextern.h (struct it): Move line_wrap away from the middle of
16492 bitfields. Move voffset in struct iterator_stack_entry after the
16493 bitfields. Move tab_width near after another short.
16494
16495 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
16496
16497 * frame.h (struct frame): Move alpha from the middle of bitfields.
16498
16499 * window.h (struct window): Move frozen_window_start_p after the
16500 rest of the bitfields to reduce padding.
16501
16502 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
16503
16504 * xterm.h (x_display_info): Remove `height' and `width' members.
16505
16506 * nsterm.h (ns_display_info): Remove `height' and `width' members.
16507
16508 * w32term.h (w32_display_info): Remove `height', `width',
16509 `height_in', and `width_in' members.
16510
16511 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16512 New functions.
16513 (x_calc_absolute_position): Use them.
16514 (x_term_init): Omit removed `height' and `width' members.
16515
16516 * w32term.c (x_display_pixel_height, x_display_pixel_width):
16517 New functions.
16518 (w32_read_socket, x_calc_absolute_position): Use them.
16519 (w32_initialize_display_info, w32_term_init): Omit removed members
16520 of w32_display_info.
16521
16522 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
16523 New functions.
16524 (ns_initialize_display_info): Omit removed members of ns_display_info.
16525
16526 * xterm.c (x_display_pixel_height, x_display_pixel_width):
16527 New functions.
16528 (x_calc_absolute_position): Use them.
16529 (x_term_init): Omit removed `height' and `width' members.
16530
16531 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
16532 (compute_tip_xy):
16533 * frame.c (x_fullscreen_adjust):
16534 * xmenu.c (menu_position_func): Use x_display_pixel_height and
16535 x_display_pixel_width.
16536
16537 2008-09-18 Kenichi Handa <handa@m17n.org>
16538
16539 * composite.c (fill_gstring_header): Don't check FROM and TO here.
16540 (composition_compute_stop_pos): Fix handling of static composition.
16541 (Fcomposition_get_gstring): Check FROM and TO at first.
16542
16543 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
16544
16545 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
16546 mixup (YAILOM).
16547
16548 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
16549
16550 * indent.c (Fvertical_motion): Use position reported by iterator
16551 instead of PT for determining screen motion (bug#943).
16552
16553 2008-09-17 Romain Francoise <romain@orebokech.com>
16554
16555 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
16556
16557 2008-09-17 Kenichi Handa <handa@m17n.org>
16558
16559 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
16560
16561 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
16562 if necessary.
16563
16564 2008-09-16 Kenichi Handa <handa@m17n.org>
16565
16566 * coding.c (make_conversion_work_buffer): Avoid calling
16567 Fget_buffer_create if it is not necessary.
16568
16569 2008-09-15 Martin Rudalics <rudalics@gmx.at>
16570
16571 * window.c (Fselect_window): Don't update window_select_count and
16572 use_time when norecord is not nil.
16573
16574 2008-09-14 Kenichi Handa <handa@m17n.org>
16575
16576 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
16577 specpdl_ptr.
16578
16579 2008-09-12 Kenichi Handa <handa@m17n.org>
16580
16581 * indent.c (scan_for_column): Don't handle automatic composition
16582 if the current buffer is not associated with a window.
16583
16584 * composite.c (composition_reseat_it): If the current buffer is
16585 not associated with a window, ignore the automatic composition.
16586 (find_automatic_composition): Likewise.
16587
16588 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16589
16590 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
16591 (Fgpm_mouse_stop): Use it.
16592 * termhooks.h (close_gpm): Declare.
16593 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
16594 connection if Gpm_GetEvent fails.
16595
16596 * window.c (set_window_buffer): Always preserve current-buffer.
16597
16598 2008-09-12 Glenn Morris <rgm@gnu.org>
16599
16600 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
16601
16602 2008-09-11 Glenn Morris <rgm@gnu.org>
16603
16604 * charset.c (charset-map-path): Doc fix.
16605
16606 2008-09-10 Kenichi Handa <handa@m17n.org>
16607
16608 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
16609
16610 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
16611 compose a grapheme cluster with the preceding base glyph.
16612
16613 * composite.c (composition_compute_stop_pos): Fix previous change.
16614 Reset cmp_it->id to -1 at first.
16615
16616 2008-09-10 Glenn Morris <rgm@gnu.org>
16617
16618 * Makefile.in (character.o, chartab.o): Fix config.h typo.
16619
16620 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
16621
16622 * keyboard.c (read_key_sequence): Reapply translation maps when
16623 switching keyboards.
16624
16625 2008-09-09 Kenichi Handa <handa@m17n.org>
16626
16627 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
16628 characters.
16629
16630 * composite.c (FORWARD_CHAR): Fix calculation
16631 of (POSITION).pos_byte.
16632 (composition_compute_stop_pos): Limit the search of composition to
16633 at most 500 characters ahead. If we reach the limit or find a
16634 newline, set cmp_it->ch to -2 and return 0.
16635 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
16636
16637 2008-09-08 Kenichi Handa <handa@m17n.org>
16638
16639 * indent.c (Fvertical_motion): Be sure to set
16640 it_overshoot_expected if it.cmp_it.id is non-negative.
16641
16642 2008-09-07 Andreas Schwab <schwab@suse.de>
16643
16644 * callproc.c (Fcall_process): Don't hold references to string data
16645 across garbage collection. Move initialisation of new_argv down
16646 to avoid compiler bug.
16647
16648 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16649
16650 * process.c (Fsystem_process_attributes): Doc fix.
16651
16652 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
16653
16654 * callproc.c (Fcall_process): Canonicalize current directory name.
16655
16656 * xdisp.c (move_it_to): When moving by vpos, ensure that the
16657 iterator advances to the next line if the current line ends in a
16658 continued tab.
16659
16660 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
16661
16662 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
16663 member to point to cmp_from.
16664
16665 * xdisp.c: Doc fix for references to gidx data member.
16666
16667 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16668
16669 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
16670
16671 2008-09-07 Kenichi Handa <handa@m17n.org>
16672
16673 * composite.c (FORWARD_CHAR): Check STOP after
16674 incrementing (POSITION).pos.
16675
16676 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
16677
16678 * process.c (Fsystem_process_attributes): Doc fix.
16679
16680 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
16681
16682 * keyboard.c (Ftop_level): Doc fix.
16683
16684 2008-09-06 Eli Zaretskii <eliz@gnu.org>
16685
16686 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
16687 minibuffer, don't let lower part of menu invade the echo area.
16688
16689 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
16690 "char *q" to access menu text and advance through it. Revert the
16691 change that displayed ">" instead of ASCII character 0x10.
16692
16693 2008-09-05 Eli Zaretskii <eliz@gnu.org>
16694
16695 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
16696 toggle boxes and radio buttons on MS-DOS as well.
16697
16698 2008-09-05 Kenichi Handa <handa@m17n.org>
16699
16700 * composite.c (autocmp_chars): Check lookback count.
16701 (composition_compute_stop_pos): Set cmp_it->lookback.
16702 (composition_reseat_it): Check lookback count.
16703 (struct position_record): New struct.
16704 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
16705 (find_automatic_composition): New function.
16706 (composition_adjust_point): Use find_automatic_composition.
16707
16708 * dispextern.h (struct composition_it): New member lookback.
16709
16710 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
16711
16712 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
16713 if moving by a single line.
16714
16715 2008-09-02 Andreas Schwab <schwab@suse.de>
16716
16717 * xterm.c (x_delete_display): Fix merge error.
16718
16719 * fileio.c (Fexpand_file_name): Remove unused variables.
16720
16721 2008-09-02 Eli Zaretskii <eliz@gnu.org>
16722
16723 * fileio.c (Fexpand_file_name): Copy argument `name' into local
16724 storage on all platforms, not just on DOS_NT.
16725
16726 2008-09-02 Jason Rumney <jasonr@gnu.org>
16727
16728 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
16729 Ensure mouse is not grabbed after menu is finished.
16730
16731 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
16732
16733 * xfaces.c (Finternal_set_alternative_font_family_alist)
16734 (Finternal_set_alternative_font_registry_alist): Properly copy
16735 entire alist structure.
16736
16737 2008-09-01 Kenichi Handa <handa@m17n.org>
16738
16739 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
16740 representative chars of the script is a vector.
16741 (ftfont_list): Handle the case where the representative chars of
16742 the script is a vector.
16743
16744 * character.c (syms_of_character): Docstring of
16745 script-representative-chars fixed.
16746
16747 2008-08-31 Eli Zaretskii <eliz@gnu.org>
16748
16749 * msdos.c (BUILD_CHAR_GLYPH): New macro.
16750 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
16751 the menu. Allocate larger buffer for `text', to account for
16752 possible ^C characters.
16753
16754 2008-08-31 Martin Rudalics <rudalics@gmx.at>
16755
16756 * xdisp.c (prepare_menu_bars): Don't call
16757 Vwindow_size_change_functions with arg Qt.
16758
16759 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
16760
16761 * font.h (font_range):
16762 * fileio.c (report_file_error):
16763 * composite.c (composition_update_it): Yet another int/Lisp_Object
16764 mixup (YAILOM).
16765
16766 2008-08-30 Glenn Morris <rgm@gnu.org>
16767
16768 * data.c (Fmake_variable_frame_local): Doc fix.
16769
16770 * frame.c (Fmodify_frame_parameters): Doc fix.
16771
16772 2008-08-30 Eli Zaretskii <eliz@gnu.org>
16773
16774 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
16775 needed by GetTokenInformation.
16776 (w32_system_process_attributes): Check return values of all system
16777 APIs.
16778
16779 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
16780 only when the state changes.
16781 (IT_update_begin, IT_update_end): Add termscript trace.
16782
16783 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
16784 clipboard is unavailable. Set dst to NULL if it doesn't point to
16785 malloc'ed data.
16786 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
16787 passing random values to xfree.
16788
16789 * dispnew.c (init_display): Set `tty's association in frame's
16790 parameters alist to the name of the terminal device, if that is known.
16791
16792 2008-08-29 Jason Rumney <jasonr@gnu.org>
16793
16794 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
16795
16796 2008-08-29 Eli Zaretskii <eliz@gnu.org>
16797
16798 * composite.c (fill_gstring_body): Avoid compiler warnings.
16799
16800 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
16801 LGLYPH_SET_CODE to avoid compiler warnings.
16802
16803 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
16804
16805 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
16806
16807 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
16808 LGLYPH_SET_CODE.
16809
16810 2008-08-29 Kenichi Handa <handa@m17n.org>
16811
16812 * fileio.c (report_file_error): Don't downcase the first character
16813 of errstring if it is still unibyte.
16814
16815 2008-08-29 Kenichi Handa <handa@m17n.org>
16816
16817 These changes are to re-implement the automatic composition so
16818 that it doesn't use text properties.
16819
16820 * Makefile.in (ftfont.o): Depend on composite.h.
16821 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
16822
16823 * character.h (Vunicode_category_table): Extern it.
16824
16825 * character.c (Vunicode_category_table): New variable.
16826 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
16827
16828 * chartab.c (optimize_sub_char_table): Perform more greedy
16829 optimization.
16830
16831 * composite.h (enum composition_method):
16832 Delete COMPOSITION_WITH_GLYPH_STRING.
16833 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
16834 (Vcomposition_function_table): Extern it.
16835 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
16836 (composition_gstring_put_cache, composition_gstring_from_id)
16837 (composition_gstring_p, composition_gstring_width)
16838 (composition_compute_stop_pos, composition_reseat_it)
16839 (composition_update_it, composition_adjust_point): Extern them.
16840 (Fcomposition_get_gstring): EXFUN it.
16841
16842 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
16843 (Vcomposition_function_table)
16844 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
16845 (gstring_hash_table, gstring_work, gstring_work_headers):
16846 New variables.
16847 (gstring_lookup_cache, composition_gstring_put_cache)
16848 (composition_gstring_from_id, composition_gstring_p)
16849 (composition_gstring_width, fill_gstring_header)
16850 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
16851 (composition_reseat_it, composition_update_it)
16852 (composition_adjust_point, Fcomposition_get_gstring): New functions.
16853 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
16854 and gstring_work_headers. DEFVAR_LISP composition-function-table.
16855 Defsubr composition_get_gstring.
16856
16857 * dispextern.h (struct glyph): New union u.cmp. Delete the member
16858 cmp_id.
16859 (struct glyph_string): Delete the member gidx. New members
16860 cmp_id, cmp_from, and cmp_to.
16861 (enum it_method): Delete GET_FROM_COMPOSITION.
16862 (struct composition_it): New struct.
16863 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
16864 Delete c, len, cmp_id, cmp_len in u.comp.
16865
16866 * font.h (enum lgstring_indices): Delete it.
16867 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
16868 (enum lglyph_indices): Likewise.
16869 (font_range): Adjust extern.
16870 (font_fill_lglyph_metrics): Extern it.
16871
16872 * font.c (QCf): New variable.
16873 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
16874 (font_prepare_composition): Delete this function.
16875 (font_range): Type and arguments changed.
16876 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
16877 (font_fill_lglyph_metrics): New function.
16878 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
16879 (syms_of_font): DEFSYM QCf. Delete defsubr for
16880 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
16881 Defsubr Sfont_shape_gstring.
16882
16883 * fontset.h (font_for_char): Extern it.
16884
16885 * fontset.c (font_for_char): New function.
16886
16887 * ftfont.c: Include composite.h.
16888 (ftfont_resolve_generic_family): Add langset "en" to pattern.
16889 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
16890
16891 * indent.c: Include composite.h and dispextern.h.
16892 (check_composition): Delete this function.
16893 (scan_for_column): Handle composition by
16894 composition_compute_stop_pos, composition_reseat_it, and
16895 composition_update_it.
16896 (compute_motion): Likewise.
16897 (Fvertical_motion): Fix checking of composition.
16898
16899 * keyboard.c (adjust_point_for_property): Check composition by
16900 composition_adjust_point.
16901
16902 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
16903 struct glyph_string.
16904
16905 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
16906 (append_composite_glyph): Adjust for the change of struct it and
16907 struct glyph.
16908 (produce_composite_glyph): Likewise.
16909
16910 * w32term.c (x_draw_composite_glyph_string_foreground):
16911 Adjust for the change of struct glyph_string.
16912 (x_draw_glyph_string): Likewise.
16913
16914 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
16915 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
16916
16917 * xdisp.c: Include font.h.
16918 (it_props): Delete the entry for Qauto_composed.
16919 (init_iterator): Initialize it->cmp_it.id to -1.
16920 (compute_stop_pos): Call composition_compute_stop_pos.
16921 (face_before_or_after_it_pos): Adjust for the change of struct it.
16922 (handle_auto_composed_prop): Delete it.
16923 (handle_composition_prop): Handle only static composition.
16924 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
16925 from xassert. Initialize it->cmp_it.stop_pos.
16926 (push_it): Adjust for the change of struct it.
16927 (pop_it): Likewise.
16928 (get_next_element): Delete next_element_from_composition.
16929 (CHAR_COMPOSED_P): New macro.
16930 (get_next_display_element): For automatic composition, get a face
16931 from the font in the glyph-string.
16932 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
16933 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
16934 (next_element_from_string): Check if the character at the current
16935 position is composed by CHAR_COMPOSED_P.
16936 (next_element_from_buffer): Likewise.
16937 (next_element_from_composition): Adjust for the change of struct it.
16938 Update it->cmp_it.
16939 (dump_glyph): Adjust for the change of struct glyph.
16940 (fill_composite_glyph_string): Adjust for the change of struct
16941 it and struct glyph. Don't handle automatic composition here.
16942 (fill_gstring_glyph_string): New function.
16943 (x_get_glyph_overhangs): Handle automatic composition.
16944 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
16945 (BUILD_GSTRING_GLYPH_STRING): New macro.
16946 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
16947 automatic composition.
16948 (append_composite_glyph): Adjust for the change of struct it and
16949 struct glyph.
16950 (x_produce_glyphs): Adjust for the change of struct it.
16951
16952 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
16953 the change of struct glyph_string.
16954 (x_draw_glyph_string): Likewise.
16955
16956 2008-08-29 Glenn Morris <rgm@gnu.org>
16957
16958 * buffer.c (word-wrap): Doc fix.
16959 * xdisp.c (truncate-partial-width-windows): Doc fix.
16960 Increase default to 50.
16961
16962 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
16963
16964 * xdisp.c (update_tool_bar_unwind): New function.
16965 (update_tool_bar): Temporarily set selected frame before building
16966 tool-bar items.
16967
16968 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
16969
16970 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
16971 snprintf, respectively.
16972 (xd_append_arg): Convert strings with Fstring_make_unibyte.
16973
16974 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
16975
16976 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
16977 LDFLAGS to GNUstep CC invocation.
16978
16979 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
16980
16981 * indent.c (Fvertical_motion): Revert last change. Handle the
16982 general case where we are moving forward, and PT spans multiple
16983 screen lines.
16984
16985 * eval.c (find_handler_clause): Temporarily increase
16986 max-lisp-eval-depth while printing the backtrace buffer, to
16987 guarantee that help-mode code can run.
16988
16989 2008-08-27 Eli Zaretskii <eliz@gnu.org>
16990
16991 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
16992 colors under -rv.
16993 (IT_set_frame_parameters): Don't swap foreground and background
16994 colors if `(reverse . t)' is present in the frame properties.
16995 (internal_terminal_init): Call init_frame_faces only for the
16996 initial frame.
16997
16998 2008-08-27 Andreas Schwab <schwab@suse.de>
16999
17000 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
17001
17002 2008-08-27 Andreas Schwab <schwab@suse.de>
17003
17004 * search.c (search_buffer): Set char_base to zero only at the end.
17005
17006 2008-08-27 Kenichi Handa <handa@m17n.org>
17007
17008 * fileio.c (report_file_error): Fix handling of multibyte error string.
17009
17010 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
17011
17012 * xterm.c (x_term_init): Temporarily hide the partially
17013 initialized terminal while calling vendor-specific-keysyms.
17014
17015 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17016
17017 * msdos.c (internal_terminal_init): Most initializations done only
17018 once, especially initial_screen_colors[] and termscript open.
17019
17020 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17021
17022 * eval.c (Fcondition_case): Doc fix.
17023
17024 * widgetprv.h (EmacsFramePart): Change font member to the new font
17025 struct.
17026
17027 * widget.c: Include character.h and font.h for XSETFONT.
17028 (setup_frame_gcs): Compute X font id from font struct, just once.
17029
17030 2008-08-26 Eli Zaretskii <eliz@gnu.org>
17031
17032 * term.c (get_named_tty): Fix last change.
17033
17034 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
17035
17036 * indent.c (Fvertical_motion): If moving forward starting from a
17037 multi-line string, move the iterator to the last line of that string.
17038
17039 2008-08-25 Eli Zaretskii <eliz@gnu.org>
17040
17041 * frame.c (do_switch_frame): Mark previously displayed frame as
17042 obscured for FRAME_MSDOS_P frames as well.
17043
17044 2008-08-24 Eli Zaretskii <eliz@gnu.org>
17045
17046 * frame.c (make_terminal_frame): Initialize f->terminal,
17047 f->terminal->reference_count, and scroll bars on MS-DOS as well.
17048 Set the top frame to newly created frame.
17049 (Fmake_terminal_frame): Reuse the_only_display_info.
17050
17051 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
17052 estimating available memory.
17053
17054 2008-08-23 David Reitter <david.reitter@gmail.com>
17055
17056 * nsterm.m (ns_draw_window_cursor): Don't call
17057 NSDisableScreenUpdates and NSEnableScreenUpdates on
17058 non-NS_IMPL_COCOA systems.
17059
17060 2008-08-23 Andreas Schwab <schwab@suse.de>
17061
17062 * process.c (procfs_system_process_attributes): Fix use of
17063 uninitialized variables.
17064
17065 2008-08-23 Eli Zaretskii <eliz@gnu.org>
17066
17067 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
17068
17069 * dispnew.c (init_display): Remove MS-DOS specific conditions for
17070 calling tty-set-up-initial-frame-faces.
17071
17072 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
17073 Allow MSDOS frames along with X frames.
17074
17075 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
17076 addition to output_termcap.
17077
17078 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
17079
17080 * termchar.h (FRAME_TTY): Support output_msdos_raw.
17081 (struct tty_display_info) [MSDOS]: Add fields related to mouse
17082 highlight.
17083
17084 * process.c [!subprocesses]: Define QCname.
17085 (syms_of_process): Intern and staticpro it.
17086
17087 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
17088 Adjust for changes in encoding/decoding routines.
17089 Use encode_coding_object and decode_coding_object instead of
17090 encode_coding and decode_coding.
17091
17092 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
17093
17094 * dosfns.c: Include frame.h before termhooks.h.
17095 (dos_cleanup): Use CURTTY ()->termscript instead of a global
17096 variable termscript.
17097
17098 * s/msdos.h (USER_FULL_NAME): Define.
17099 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
17100
17101 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
17102 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
17103 pw->pw_gecos.
17104
17105 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
17106 SELECTED_FRAME as additional (1st) argument.
17107 (tty_read_avail_input): Handle output_msdos_raw in
17108 addition to output_termcap.
17109
17110 * msdos.c: Include frame.h before termhooks.h.
17111 (mouse_on, mouse_off, mouse_moveto, mouse_init)
17112 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
17113 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
17114 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
17115 (IT_set_terminal_modes, IT_reset_terminal_modes)
17116 (IT_set_frame_parameters): Use tty->termscript instead of a global
17117 variable termscript.
17118 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
17119 global variable terminal_coding. Don't refer to
17120 Vnonascii_translation_table.
17121 (internal_terminal_init): Set Vwindow_system in current_kboard.
17122 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
17123 Announce date and time of session start, if termscript is open.
17124 Don't zero out the_only_display_info (it is done in
17125 term.c:init_tty). Open termscript only of not already open.
17126 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
17127 here instead of dos_ttraw. Don't initialize display if this is an
17128 initial tty. Don't set FRAME_FONT.
17129 (Vwindow_system_version): Bump to 23.
17130 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
17131 is available, set up mouse_position_hook.
17132 (dos_ttraw, IT_set_terminal_modes): If called with initial
17133 terminal, do nothing.
17134 (IT_set_frame_parameters): Handle the Qtty_type frame
17135 parameter by calling internal_terminal_init.
17136 (dos_set_window_size, show_mouse_face)
17137 (clear_mouse_face, IT_note_mode_line_highlight)
17138 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
17139 (dos_rawgetc): Use tty_display_info instead of x_display_info.
17140 (initialize_msdos_display): New function.
17141 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
17142 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
17143 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
17144 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
17145 Accept additional argument: a pointer to a frame. Update all callers.
17146 (request_sigio, unrequest_sigio): Don't define, now defined on
17147 sysdep.c.
17148 (IT_write_glyphs): Rewrite to use encode_terminal_code.
17149
17150 * term.c [MSDOS]: Include msdos.h.
17151 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
17152 conditional to DOS_NT. Allow only one call to this function in a
17153 session. Don't allocate a new struct tty_display_info; instead,
17154 reuse the_only_display_info. Call get_tty_size to get screen
17155 dimensions. Call init_baud_rate to set bad_rate.
17156 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
17157 (Fsuspend_tty) [MSDOS]: Don't close input and output.
17158 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
17159 (get_tty_terminal, get_named_tty, Ftty_type)
17160 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
17161 output_termcap.
17162 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
17163 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
17164 only when subprocesses are supported.
17165
17166 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
17167 f->output_data.x.
17168 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
17169 terminal devices.
17170
17171 * msdos.h: Remove definition of struct x_display_info and struct
17172 x_output.
17173 (FRAME_FONT): Use output_data.tty.
17174 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
17175 (struct x_display_info): Rename from display_info. Update all users in
17176 msdos.c.
17177 (struct x_output): Remove background_pixel and foreground_pixel.
17178 (the_only_display_info): Rename from the_only_x_display.
17179 (dos_ttraw): Update prototype.
17180
17181 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
17182 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
17183
17184 2008-08-23 Jason Rumney <jasonr@gnu.org>
17185
17186 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
17187 (fn_TIFFSetDirectory): New library function used.
17188 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
17189 (tiff_load): Use :index to select among multiple images. Set count
17190 property when multiple images exist.
17191 (gif_format): Use :index, not :image.
17192
17193 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
17194
17195 * xdisp.c (try_scrolling): Check INT_MAX instead of
17196 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
17197 to obtain INT_MAX.
17198
17199 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
17200
17201 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
17202
17203 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
17204
17205 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
17206 GNUstep library location.
17207
17208 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
17209
17210 * xfaces.c (x_update_menu_appearance): Check validity of menu font
17211 before using it.
17212
17213 * puresize.h (BASE_PURESIZE): Increase to 1250000.
17214
17215 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
17216
17217 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
17218 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
17219 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
17220 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
17221 (EmacsApp-cursor_blink_handler): Remove declaration.
17222 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
17223 match 01 Feb 2008 changes in xterm.c.
17224 (ns_read_socket): Add cast to avoid warning.
17225 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
17226 GNUstep.
17227
17228 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
17229
17230 * xselect.c (x_get_foreign_selection): Return nil if desired
17231 selection could not be obtained, instead of signalling an error.
17232
17233 2008-08-20 David Reitter <david.reitter@gmail.com>
17234
17235 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
17236 * nsterm.m: Remove ns-specific code for cursor blinking.
17237 (ns_draw_window_cursor): Clear cursor properly rather than
17238 redrawing the area. Respect width of bar cursors.
17239 These changes enable the use of generic blink-cursor-mode and
17240 generic cursor types in NS and support smooth cursor movements (do
17241 not blink off after command).
17242 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
17243 Nextstep, too.
17244
17245 2008-08-19 Kenichi Handa <handa@m17n.org>
17246
17247 * font.c (Vfont_log_deferred): New variable.
17248 (font_add_log): Check Vfont_log_deferred.
17249 (font_deferred_log): New function.
17250
17251 * font.h (font_deferred_log): Extern it.
17252
17253 * fontset.c (reorder_font_vector): Use encoding charset of fonts
17254 for sorting.
17255 (face_for_char): Use deferred log.
17256
17257 2008-08-18 Kenichi Handa <handa@m17n.org>
17258
17259 * fontset.c (face_for_char): Add font log.
17260
17261 * font.c (font_add_log): Add the font properties :script, :lang,
17262 and :otf in the log.
17263
17264 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
17265
17266 * xdisp.c: Remove dead code.
17267 (handle_invisible_prop, next_overlay_string): Defer call to
17268 setup_for_ellipsis.
17269 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
17270
17271 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
17272
17273 * xfaces.c (lookup_derived_face): Properly handle possible zero
17274 return value of get_lface_attributes.
17275 (merge_faces): Don't tell lookup_derived_face to signal an error
17276 if face is not found.
17277
17278 * dired.c (Fdirectory_files): Doc fix.
17279
17280 * process.c (make_process): Initialize kill_without_query struct
17281 member.
17282
17283 2008-08-15 Eli Zaretskii <eliz@gnu.org>
17284
17285 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
17286 Alternative calculation of totphys for Visual Studio 6.
17287
17288 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
17289
17290 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
17291 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
17292 All users changed.
17293 (stat): Only root directory passed to GetDriveType. Allow RAM
17294 disk as well as local fixed disk when w32-get-true-file-attributes
17295 is set to `local'.
17296 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
17297 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
17298 (w32_cached_id, w32_add_to_cache): New functions.
17299 (get_name_and_id): Look account names in the cache before calling
17300 lookup_account_sid.
17301 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
17302 New initialization flags.
17303 (globals_of_w32): Initialize them to zero.
17304 (w32_system_process_attributes): Use w32_cached_id and
17305 w32_add_to_cache.
17306
17307 2008-08-14 Lawrence Mitchell <wence@gmx.li>
17308
17309 * lread.c (Fread_char, Fread_char_exclusive): If no character
17310 event is read before timeout is reached, return nil, rather than
17311 converting to a number.
17312
17313 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
17314
17315 * fns.c (use_dialog_box): Doc fix.
17316
17317 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
17318 on OS X.
17319
17320 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
17321
17322 * frame.c (Qns_parse_geometry): New var.
17323 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
17324
17325 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
17326
17327 * xdisp.c (x_produce_glyphs): Handle the case when font has no
17328 space character in calculating tabs.
17329
17330 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
17331
17332 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
17333
17334 2008-08-10 Glenn Morris <rgm@gnu.org>
17335
17336 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
17337 silence gcc "limited range of data type" warnings in some
17338 make_fixnum_or_float calls.
17339
17340 2008-08-09 Eli Zaretskii <eliz@gnu.org>
17341
17342 * w32.c (w32_system_process_attributes): If the process does not
17343 exist, return nil.
17344
17345 * w32.c: Include thelp32.h, psapi.h and coding.h.
17346 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
17347 declarations.
17348 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
17349 (Process32Next_Proc): New typedefs.
17350 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
17351 (g_b_init_process32_next, g_b_init_open_thread_token)
17352 (g_b_init_impersonate_self, g_b_init_revert_to_self)
17353 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
17354 (g_b_init_get_process_working_set_size)
17355 (g_b_init_global_memory_status_ex): New static variables.
17356 (globals_of_w32): Initialize them.
17357 (create_toolhelp32_snapshot, process32_first, process32_next)
17358 (open_thread_token, impersonate_self, revert_to_self)
17359 (get_process_memory_info, get_process_working_set_size)
17360 (global_memory_status, global_memory_status_ex): New wrapper
17361 functions.
17362 (w32_list_system_processes, w32_system_process_attributes)
17363 (enable_privilege, restore_privilege, ltime, process_times):
17364 New functions.
17365 (convert_time_raw): New function.
17366 (convert_time): Remove conversion of FILETIME into time in 100
17367 nsec units, call convert_time_raw instead.
17368
17369 * process.h (w32_list_system_processes, w32_system_process_attributes):
17370 Add prototypes.
17371 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
17372 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
17373 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
17374 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
17375
17376 * process.c (Fsystem_process_attributes): Doc fix.
17377
17378 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
17379
17380 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
17381 a continued multi-char glyph; if so, advance to the actual glyph.
17382
17383 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
17384
17385 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
17386
17387 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
17388 (.m.o): Use it.
17389 * config.in: Regenerate.
17390
17391 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
17392
17393 * xdisp.c (redisplay_window): Revert last change.
17394 (try_window): Check bottom scroll margin too.
17395
17396 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17397
17398 * config.in: Regenerate.
17399
17400 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
17401 -list-load-path-shadows'.
17402 (nsgui.h): Reduce number of things depending on it.
17403
17404 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
17405
17406 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
17407 instead of window-end which does the wrong thing at eob.
17408 (try_cursor_movement): Minor optimization.
17409 (redisplay_window): If scroll margin is defined, don't assume
17410 window doesn't need scrolling.
17411
17412 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
17413
17414 * config.in: Regenerate.
17415
17416 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
17417 (mostlyclean): Don't delete *.d under NS.
17418
17419 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
17420
17421 2008-08-06 Kenichi Handa <handa@m17n.org>
17422
17423 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
17424
17425 2008-08-06 Andreas Schwab <schwab@suse.de>
17426
17427 * config.in: Regenerate.
17428
17429 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
17430
17431 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
17432 forcing a window start.
17433
17434 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
17435 (auto_save_1): Update modtime when auto-save-list-file-name is on.
17436
17437 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17438
17439 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
17440 argument.
17441
17442 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
17443
17444 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
17445 <scroll-down-aggressively, before-change-functions>:
17446 <after-change-functions>: Reflow docstrings.
17447
17448 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17449 Ken Raeburn <raeburn@gnu.org>
17450
17451 Dock menu customization, based on a patch by Ken Raeburn, plus some
17452 other fixes.
17453 * nsmenu.m (dockMenu): New variable.
17454 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
17455
17456 * nsterm.h (dockMenu): Declare.
17457
17458 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
17459 (ns_term_init): Initialize dockMenu.
17460 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
17461 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
17462 left.
17463
17464 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
17465
17466 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
17467
17468 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
17469
17470 * config.in: Regenerate.
17471
17472 2008-08-04 Seiji Zenitani <zenitani@mac.com>
17473
17474 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
17475
17476 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
17477
17478 * nsterm.h (find_and_call_menu_selection): Fix prototype.
17479
17480 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
17481
17482 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
17483
17484 * keyboard.h: Comment an #endif.
17485
17486 * lisp.h (have_menus_p): Adjust comment.
17487
17488 * menu.c (find_and_return_menu_selection): Fix comparison with
17489 client_data.
17490
17491 * nsmenu.m (popup_activated_flag): New variable.
17492 (popup_activated): New function.
17493 (menu-or-popup-active-p): New exported lisp definition.
17494 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
17495 when popup done.
17496 (ns_popup_dialog): Set popup_activated_flag.
17497
17498 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
17499 version for GNUstep (handled by conditional typedef in nsterm.m).
17500 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
17501 in rgb.txt).
17502
17503 * process.c (init_process): Use DARWIN_OS, not DARWIN.
17504
17505 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
17506
17507 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
17508
17509 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
17510 shortcircuit if popup_activated like GTK and X toolkit.
17511
17512 * m/inter386.h: Change DARWIN to DARWIN_OS.
17513
17514 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
17515 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
17516 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
17517 Expand comment on NO_SOCK_SIGIO.
17518
17519 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
17520
17521 * nsterm.m (windowDidResize): Remove stopModal call.
17522
17523 2008-08-03 Andreas Schwab <schwab@suse.de>
17524
17525 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
17526 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
17527
17528 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
17529
17530 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
17531 Don't use uninitialized pointer variable when using getrlimit.
17532
17533 2008-08-02 Jason Rumney <jasonr@gnu.org>
17534
17535 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
17536
17537 2008-08-02 Eli Zaretskii <eliz@gnu.org>
17538
17539 * alloc.c (NSTATICS): Bump to 0x640.
17540
17541 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
17542
17543 * lisp.h: Add prototype for directory_files_internal.
17544
17545 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
17546 New functions.
17547 (syms_of_process): Defsubr them. Add initializations for various
17548 Q* symbols used in procfs_system_process_attributes.
17549 (procfs_list_system_processes, procfs_system_process_attributes)
17550 [HAVE_PROCFS]: New functions.
17551 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
17552 (procfs_get_total_memory): New functions.
17553
17554 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
17555
17556 * xfaces.c (Fx_load_color_file): Fix previous change;
17557 it is #ifdef WINDOWSNT, not WINDOWS_NT.
17558
17559 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
17560
17561 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
17562
17563 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17564
17565 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
17566
17567 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
17568
17569 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
17570
17571 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
17572 define NSApplicationDelegateReplySuccess.
17573 (EmacsView -converstationIdentifier): Use long instead of
17574 NSInteger for GNUstep, since it doesn't have NSInteger.
17575
17576 * xmenu.c: Revert last change.
17577
17578 * keyboard.h: Fix last change.
17579
17580 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
17581
17582 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
17583 on Windows.
17584
17585 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17586
17587 Warning clearing and clean-up in NS port.
17588 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
17589 Add prototypes.
17590 * nsgui.h (FACE_DEFAULT): Remove, unused.
17591 (XGCValues): Change colors to unsigned long.
17592 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
17593 nsterm.m.
17594 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
17595 (ns_list_fonts): Remove, unused.
17596 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
17597 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
17598 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
17599 (nsfont_draw): Compare face colors to 0, not nil.
17600 * nsmenu.m (struct widget_value): Drop unneeded declaration.
17601 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
17602 (-addSubmenuWithTitle:): Use NSMenuItem class.
17603 (ns_popup_menu): Use NO, not NULL, for enabled setting.
17604 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
17605 (ns_clip_to_row): Make gc arg a BOOL.
17606 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
17607 ns_clip_to_row() call.
17608 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
17609 used). Cast FRAME_FONT assignments.
17610 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
17611 (ns_string_to_lispmod): Change arg to const char.
17612 (ns_term_init): Use NSMenuItem class.
17613 (EmacsApp -openFile:): Move to different section of file.
17614 (EmacsApp -application:openFiles:): Don't return a value, call
17615 -replyToOpenOrPrint:.
17616 (EmacsView -keyDown:): Fix up cast.
17617 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
17618 (EmacsView -menuDown:): Cast tag in call to
17619 find_and_call_menu_selection().
17620 (ns_list_fonts): Remove, unused.
17621 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
17622 (ns_fontname_to_xlfd): Make static.
17623 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
17624 Remove prototypes (now in keyboard.h).
17625 (next_menubar_widget_id): Remove, unused.
17626 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
17627 Remove prototypes (now in keyboard.h).
17628 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
17629
17630 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
17631
17632 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
17633 (floatfns.o): Depend on syssignal.h.
17634 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
17635
17636 * systty.h: Fix previous change that removed BSD_TERMIOS.
17637 Add comments to #ifdefs.
17638
17639 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
17640
17641 * w32fns.c (w32-load-color-file): Remove.
17642 (x-open-connection): Use renamed Fx_load_color_file.
17643 * xfaces.c (x-load-color-file): Add.
17644 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
17645 Emacs.clr.
17646 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
17647
17648 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
17649
17650 * dbusbind.c (Fdbus_call_method_asynchronously)
17651 (Fdbus_method_error_internal): New defuns.
17652 (xd_read_message): Handle also reply messages.
17653 (Vdbus_registered_functions_table): Extend docstring.
17654
17655 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
17656
17657 * keyboard.c (gobble_input): Fix previous change.
17658
17659 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17660
17661 * bitmaps/README:
17662 * xfns.c:
17663 * termcap.c:
17664 * term.c:
17665 * syswait.h:
17666 * systty.h:
17667 * systime.h:
17668 * syssignal.h:
17669 * sysdep.c:
17670 * process.h:
17671 * process.c:
17672 * print.c:
17673 * ndir.h:
17674 * lread.c:
17675 * keyboard.c:
17676 * getpagesize.h:
17677 * floatfns.c:
17678 * fileio.c:
17679 * emacs.c:
17680 * doc.c:
17681 * dispnew.c:
17682 * dired.c:
17683 * data.c:
17684 * callproc.c:
17685 * buffer.c:
17686 * README:
17687 * Makefile.in:
17688 * s/template.h:
17689 * s/msdos.h:
17690 * m/vax.h: Remove VMS support.
17691 * s/vms.h:
17692 * vlimit.h:
17693 * uaf.h:
17694 * temacs.opt:
17695 * param.h:
17696 * ioctl.h: Remove file.
17697
17698 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
17699
17700 * s/ms-w32.h (MULTI_KBOARD): Remove.
17701 * xterm.c:
17702 * xselect.c:
17703 * xfns.c:
17704 * window.c:
17705 * w32term.c:
17706 * w32fns.c:
17707 * terminal.c:
17708 * termhooks.h:
17709 * term.c:
17710 * sysdep.c:
17711 * keyboard.h:
17712 * keyboard.c:
17713 * frame.h:
17714 * frame.c:
17715 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
17716 * config.in: Regenerate.
17717
17718 2008-07-30 Jason Rumney <jasonr@gnu.org>
17719
17720 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
17721
17722 * w32font.c (w32font_encode_char): Leave as unicode if in range.
17723 (w32font_open_internal): Get unicode version of textmetrics.
17724 Don't enable or disable glyph indices here.
17725 (w32font_open): Disable use of glyph indices.
17726
17727 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
17728
17729 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
17730
17731 * minibuf.c (Vread_buffer_function): Doc fix.
17732
17733 2008-07-30 John Paul Wallington <jpw@pobox.com>
17734
17735 * minibuf.c (read_buffer_completion_ignore_case): New var.
17736 (Fread_buffer): Use it.
17737
17738 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
17739
17740 * systty.h (sensemode): Remove empty #if. Remove reference to
17741 BSD_TERMIOS, unused.
17742
17743 * sysdep.c: Remove reference to DGUX.
17744 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
17745
17746 * config.in: Regenerate.
17747
17748 2008-07-30 Jason Rumney <jasonr@gnu.org>
17749
17750 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
17751
17752 2008-07-29 Jason Rumney <jasonr@gnu.org>
17753
17754 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
17755 is populated.
17756 (uniscribe_encode_char): Always use uniscribe.
17757 Avoid using context if cache is populated.
17758
17759 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
17760
17761 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
17762 open menu.
17763
17764 * gtkutil.c (menu_nav_ended): Remove.
17765 (create_menus): Remove signal connect for menu_nav_ended.
17766
17767 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
17768
17769 * xdisp.c (redisplay_window): Check return value of
17770 compute_window_start_on_continuation_line before forcing a window
17771 start.
17772
17773 2008-07-28 Jason Rumney <jasonr@gnu.org>
17774
17775 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
17776
17777 * w32term.c (w32_enable_unicode_output, cleartype_active):
17778 Remove obsolete display options.
17779 (x_draw_glyph_string_background): Don't use old cleartype_active
17780 workaround.
17781 (w32_initialize): Remove cleartype_active initialization.
17782 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
17783
17784 2008-07-28 Andreas Schwab <schwab@suse.de>
17785
17786 * lisp.h (init_weak_hash_tables, syms_of_font)
17787 (xd_read_queued_messages, syms_of_dbusbind): Declare.
17788 (remove_hash_entry): Don't declare.
17789 * eval.c (maybe_call_debugger): Make static and move before use.
17790 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
17791 * xdisp.c: Include "gtkutil.h" if USE_GTK.
17792 * xterm.h (x_set_frame_alpha): Declare.
17793
17794 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
17795
17796 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
17797 (create_menus): Connect selection-done to menu_nav_ended.
17798
17799 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
17800
17801 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
17802 Set Vx_resource_name to a fallback. Replace read of 'buffered'
17803 parameter with read of 'alpha' one.
17804 (Qns_frame_parameter): Remove.
17805 * nsselect.m (selection-coding-system)
17806 (next-selection-coding-system, Vselection_coding_system)
17807 (Vnext_selection_coding_system): Drop.
17808
17809 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
17810
17811 * nsfns.m (do-applescript, do_applescript): Rename to
17812 ns-do-applescript, ns_do_applescript, and move within file.
17813
17814 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
17815
17816 Remove support for Mac Carbon.
17817 * mactoolbox.c:
17818 * macterm.h:
17819 * macterm.c:
17820 * macselect.c:
17821 * macmenu.c:
17822 * macgui.h:
17823 * macfns.c:
17824 * mac.c: Remove file.
17825 * s/darwin.h:
17826 * m/intel386.h:
17827 * xfaces.c:
17828 * xdisp.c:
17829 * window.c:
17830 * tparam.c:
17831 * termhooks.h:
17832 * termcap.c:
17833 * term.c:
17834 * syssignal.h:
17835 * sysselect.h:
17836 * sysdep.c:
17837 * process.c:
17838 * lread.c:
17839 * lisp.h:
17840 * keyboard.c:
17841 * image.c:
17842 * fringe.c:
17843 * frame.h:
17844 * frame.c:
17845 * fontset.c:
17846 * font.h:
17847 * font.c:
17848 * fns.c:
17849 * fileio.c:
17850 * emacs.c:
17851 * dispnew.c:
17852 * dispextern.h:
17853 * config.in:
17854 * atimer.c:
17855 * Makefile.in: Remove code for Carbon.
17856
17857 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17858
17859 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
17860
17861 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17862
17863 * macterm.h (kCGBitmapByteOrder32Host): New define for
17864 non-universal SDKs.
17865
17866 * image.c (mac_create_cg_image_from_image, image_load_image_io)
17867 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
17868
17869 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
17870 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
17871
17872 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
17873
17874 * w32inevt.c: Include dispextern.h.
17875
17876 2008-07-26 Andreas Schwab <schwab@suse.de>
17877
17878 * print.c (print_object): Fix off-by-one in last change.
17879
17880 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
17881
17882 * term.c (syms_of_term): Don't initialize default_orig_pair,
17883 default_set_foreground and default_set_background on Windows.
17884
17885 2008-07-25 Jason Rumney <jasonr@gnu.org>
17886
17887 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
17888 ScriptItemize. Clean up return value checking. Remove unused
17889 variables.
17890 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
17891 shaping engine.
17892
17893 * w32font.c (w32font_has_char): Handle the case where we can't
17894 determine the script for a character.
17895
17896 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
17897
17898 * term.c (syms_of_term): Initialize default_orig_pair,
17899 default_set_foreground, and default_set_background.
17900
17901 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
17902 clash (bug#86).
17903 (getloadavg): Callers changed.
17904
17905 * image.c (svg_load_image): Fix last change.
17906 (svg_load_image): Use rsvg_handle_get_dimensions to check that
17907 image size is valid. Use g_object_unref instead of deprecated
17908 rsvg_handle_free to free rsvg handle.
17909 (x_from_xcolors): Don't initialize pixmap (silence compiler).
17910
17911 2008-07-25 Jason Rumney <jasonr@gnu.org>
17912
17913 * w32font.c (w32font_encode_char): Encode characters outside BMP as
17914 surrogates before looking up glyph index.
17915 (w32font_text_extents): Encode as surrogates if falling back to
17916 functions that need UTF-16 wide chars.
17917
17918 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
17919 BMP as surrogates before looking up glyph index.
17920
17921 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
17922
17923 * image.c (svg_load_image): Check for failure in return value of
17924 rsvg_handle_get_pixbuf. Free rsvg handle when done.
17925
17926 2008-07-25 Jason Rumney <jasonr@gnu.org>
17927
17928 * w32font.c (Fx_select_font): Reverse sense of second arg.
17929
17930 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
17931
17932 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
17933 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
17934
17935 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
17936 (PURESIZE): Use it.
17937
17938 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
17939
17940 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
17941 * m/alpha.h (TEXT_END):
17942 * m/ibmrs6000.h (TEXT_END):
17943 * m/macppc.h (TEXT_END):
17944 * s/darwin.h (TEXT_END):
17945 * s/msdos.h (TEXT_END): Remove, unused.
17946 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
17947 * s/cygwin.h: Remove comment.
17948
17949 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
17950 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
17951 * m/intel386.h (DOT_GLOBAL_START):
17952 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
17953 (USG): Remove, file not used on USG platforms.
17954
17955 * Makefile.in (HAVE_X11): Remove empty #else.
17956
17957 2008-07-24 Andreas Schwab <schwab@suse.de>
17958
17959 * fileio.c (Finsert_file_contents): Properly adjust undo list
17960 after format conversion.
17961
17962 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
17963
17964 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
17965 (menu_nav_ended): Remove.
17966 (create_menus): Remove signal connect for menu_nav_ended.
17967 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
17968 create_menus.
17969 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
17970
17971 2008-07-23 Jason Rumney <jasonr@gnu.org>
17972
17973 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
17974 with opened font.
17975 (w32font_open): Set font type to gdi.
17976
17977 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
17978
17979 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
17980
17981 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
17982 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
17983 defines it.
17984 * unexec.c (ADDR_CORRECT): Define unconditionally.
17985
17986 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
17987
17988 * unexec.c: Remove code depending on !COFF and USG, the file is
17989 not used for such systems.
17990
17991 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
17992 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
17993 (LD_SWITCH_SYSTEM_1): Remove, update users.
17994
17995 * s/darwin.h (DATA_END):
17996 * m/intel386.h (DATA_END):
17997 * m/ibmrs6000.h (DATA_END):
17998 * m/alpha.h (DATA_END): Remove, unused.
17999
18000 * config.in: Regenerate.
18001 * s/ms-w32.h (subprocesses): Define unconditionally.
18002 * s/template.h (subprocesses): Update comment.
18003 * s/vms.h (subprocesses):
18004 * s/usg5-4.h (subprocesses):
18005 * s/hpux10-20.h (subprocesses):
18006 * s/gnu-linux.h (subprocesses):
18007 * s/cygwin.h (subprocesses):
18008 * s/bsd-common.h (subprocesses):
18009 * s/aix4-2.h (subprocesses):
18010 * s/darwin.h (subprocesses): Do not define, defined by default now.
18011
18012 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
18013 Remove all references.
18014 (temacs): Add GNUstep specific ld flags.
18015
18016 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
18017 similarly to what X does.
18018
18019 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18020
18021 * nsfns.m (x-list-fonts): Remove.
18022 (syms_of_nsfns): Drop the x-list-fonts declaration.
18023 * nsterm.m: Get rid of remaining "//" comments.
18024
18025 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
18026
18027 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
18028
18029 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
18030 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
18031 (Fns_own_selection_internal, Fx_disown_selection_internal)
18032 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
18033
18034 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
18035 ... */' style of docstrings. Doc fixes.
18036
18037 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18038
18039 * terminfo.c (UP, BC, PC): Undo previous change.
18040
18041 * nsfns.m: Rename ns prefixed functions/variables to the
18042 corresponding x versions. Update references.
18043
18044 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
18045
18046 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
18047
18048 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
18049
18050 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
18051 Remove forwarding functions.
18052 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
18053 non-static.
18054 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
18055 non-static.
18056 (ns_frame_parm_handlers): Use the new names.
18057 (syms_of_nsfns): Move to the end of file.
18058
18059 * nsterm.m (syms_of_nsterm): Move to the end of file.
18060
18061 * dispnew.c (init_display): Remove code for X10.
18062
18063 2008-07-22 Jason Rumney <jasonr@gnu.org>
18064
18065 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
18066 bare drive.
18067
18068 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
18069
18070 * nsterm.m (syms_of_nsterm): Remove debugging println.
18071
18072 2008-07-22 David Reitter <david.reitter@gmail.com>
18073
18074 * nsfns.m (do_applescript, F_do_applescript): NS version of the
18075 Carbon implementation of the same functionality: execute arbitrary
18076 AppleScript code.
18077
18078 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
18079
18080 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
18081 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
18082 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
18083 (Fx_display_mm_height, Fx_display_mm_width)
18084 (Fx_display_backing_store, Fx_display_visual_class)
18085 (Fx_display_save_under, Fx_open_connection)
18086 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
18087 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
18088 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18089 (Fx_display_pixel_width, Fx_display_pixel_height)
18090 (Fx_display_usable_bounds, Fx_display_planes)
18091 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
18092 ... */' style of docstrings.
18093
18094 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
18095
18096 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
18097 on this platform.
18098 (mips):
18099 * m/iris4d.h (mips): Do not define.
18100 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
18101
18102 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
18103
18104 * image.c:
18105 * nsfns.m:
18106 * nsselect.m:
18107 * nsterm.h:
18108 * nsterm.m: Rename ns prefixed functions/variables to the
18109 corresponding x versions. Update references.
18110
18111 * m/ibms390x.h (NO_REMAP): Do not undefine.
18112
18113 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
18114
18115 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
18116
18117 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
18118 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
18119 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
18120 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
18121 (Fns_display_mm_height, Fns_display_mm_width)
18122 (Fns_display_backing_store, Fns_display_visual_class)
18123 (Fns_display_save_under, Fns_open_connection)
18124 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
18125 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
18126 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
18127 (Fns_display_pixel_width, Fns_display_pixel_height)
18128 (Fns_display_usable_bounds, Fx_display_planes)
18129 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
18130
18131 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
18132
18133 * print.c (print_object): Check print_depth before searching for
18134 circularities.
18135
18136 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
18137
18138 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
18139 only sprintf.
18140
18141 2008-07-21 Kenichi Handa <handa@m17n.org>
18142
18143 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
18144
18145 2008-07-20 Andreas Schwab <schwab@suse.de>
18146
18147 * syntax.c (find_start_pos, find_start_value)
18148 (find_start_value_byte, find_start_begv, find_defun_start)
18149 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
18150
18151 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18152
18153 * s/sol2-3.h: Insert contents of s/sol2.h.
18154 (LD_SWITCH_SYSTEM): Remove redundant definition.
18155 * s/sol2.h: Remove, unused.
18156
18157 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18158
18159 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
18160
18161 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
18162
18163 * Makefile.in (ns_appdir): Fix typo in find command.
18164
18165 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
18166
18167 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
18168
18169 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
18170 added not supported anymore.
18171
18172 * s/usg5-4-2.h (LIBS_SYSTEM):
18173 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
18174
18175 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18176 * s/lynxos.h (GETPGRP_NO_ARG):
18177 * s/hpux10-20.h (NO_SIOCTL_H):
18178 * s/gnu.h (GETPGRP_NO_ARG):
18179 * s/gnu-linux.h (NO_SIOCTL_H):
18180 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
18181 * s/cygwin.h (GETPGRP_NO_ARG):
18182 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
18183 (C_DEBUG_SWITCH): Remove duplicate definition.
18184
18185 * m/ibms390.h: Remove boilerplate comments.
18186
18187 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
18188
18189 * process.c (HAVE_SERIAL): Consolidate ifdefs.
18190 (wait_reading_process_output): Remove code for SunOS, platform not
18191 supported anymore. Use SOLARIS2 instead of sun.
18192
18193 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18194
18195 * font.c (font_open_by_name): Under NS, default lface height to zero.
18196 (font_open_for_lface): Under NS, set size based on frame fontsize.
18197 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
18198 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
18199
18200 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18201
18202 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
18203 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
18204 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
18205 YES/NO.
18206 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
18207 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
18208 * Makefile.in (clean): Clear out build destination dir.
18209
18210 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18211
18212 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
18213 xterm, xselect.
18214 * lisp.h: Remove declaration of hash_remove.
18215 * nsgui.h: Remove redefinitions of hash_remove.
18216 * fns.c (hash_remove): Rename to hash_remove_from_table.
18217
18218 2008-07-19 Seiji Zenitani <zenitani@mac.com>
18219
18220 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
18221 strdup() the family UTF8String before modifying it.
18222
18223 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
18224
18225 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
18226 NS_FACE_BACKGROUND with 0 instead of nil.
18227 * nsfont.m (nsfont_draw): Same.
18228
18229 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
18230
18231 * nsfns.m (ns_set_background_color): Fix crash.
18232
18233 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
18234
18235 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
18236
18237 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
18238
18239 * puresize.h (BASE_PURESIZE): Increase to 1240000.
18240
18241 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18242
18243 * gtkutil.c: Include <config.h> instead of "config.h".
18244
18245 * lisp.h (Foverlay_buffer): Add EXFUN.
18246
18247 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
18248 child process to complete child_setup. Undo 2005-09-21 change.
18249
18250 * s/darwin.h: Mention setsid after vfork.
18251
18252 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18253
18254 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
18255 Depend on macgui.h.
18256
18257 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
18258 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
18259
18260 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
18261 and f19.
18262 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
18263
18264 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
18265 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
18266 Remove enumerators.
18267
18268 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
18269 Check if FACE_FROM_ID returns NULL.
18270
18271 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
18272
18273 * w32inevt.c (change_frame_size): Remove extern declaration.
18274 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
18275 change_frame_size.
18276
18277 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18278
18279 * getloadavg.c: Revert last change (2008-07-15).
18280
18281 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
18282
18283 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
18284 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
18285 from configure.
18286
18287 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
18288
18289 * s/sol2.h:
18290 * s/sol2-4.h: Reorganize conditionals.
18291
18292 * ecrt0.c: Remove code depending on m68000, not used anymore.
18293
18294 * fns.c (hash_remove): Make static.
18295 * lisp.h (hash_remove): Don't prototype.
18296
18297 * m/ibmrs6000.h:
18298 * m/ibms390x.h:
18299 * m/macppc.h: Remove boilerplate comments.
18300
18301 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
18302 Solaris, which does not need them.
18303
18304 * m/vax.h: Remove comments about unsupported systems.
18305
18306 * s/darwin.h: Reorganize ifdefs.
18307
18308 2008-07-17 Andreas Schwab <schwab@suse.de>
18309
18310 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
18311
18312 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
18313
18314 Use SDATA. Follow coding convention of placing operators at
18315 beginning of next line rather than end of previous line, and placing
18316 spaces around infix operators.
18317
18318 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
18319 in case it was defined already.
18320 USE @GNUSTEP_MAKEFILES@ rather than envvars.
18321 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
18322 ns_default.
18323 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
18324 Lisp_Objects.
18325 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
18326 (ns_defined_color, ns_color_to_lisp): Declare.
18327 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
18328 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
18329 it's accepted even with USE_LISP_UNION_TYPE.
18330 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
18331 (update_frame_tool_bar): Remove apparently obsolete tests for
18332 non-integerness of f->tool_bar_lines.
18333 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
18334 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
18335 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
18336 (nsfont_open): Don't confuse NULL for Qnil.
18337 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
18338 * menu.h (find_and_call_menu_selection):
18339 * menu.c (find_and_call_menu_selection): Use just int for vector size.
18340 (find_and_return_menu_selection): Always return something.
18341 * frame.h: Include dispextern.h for Display_Info.
18342 (display_x_get_resource): Declare.
18343
18344 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
18345
18346 * syntax.c: Remove stdio.h include accidentally introduced in
18347 Emacs.app commit.
18348 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
18349 NS_IMPL_COCOA.
18350 * keyboard.c (handle_async_input, input_available_signal): Remove
18351 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
18352
18353 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18354
18355 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
18356 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
18357 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
18358 Use SDATA.
18359
18360 * keymap.c: Remove all NS-specific code.
18361 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
18362 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
18363 where_is_preferred_modifier, return a different value depending on how
18364 preferred is the binding.
18365 (where_is_internal): Adjust accordingly.
18366 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
18367 Adjust to new preferred_sequence_p.
18368 (syms_of_keymap): Declare `where-is-preferred-modifier'.
18369 * keyboard.c (parse_solitary_modifier): Not static any more.
18370 * keyboard.h (parse_solitary_modifier): Declare.
18371
18372 2008-07-16 Andreas Schwab <schwab@suse.de>
18373
18374 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
18375 of easymenu.
18376
18377 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
18378
18379 * xdisp.c (move_it_in_display_line): Account for word wrap, so
18380 that we don't move off the line.
18381
18382 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
18383
18384 * keyboard.c (Qsuper): Remove.
18385 (parse_menu_item): Don't call where_is_internal specially for NS.
18386
18387 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18388
18389 * s/gnu-linux.h: Remove boilerplate comments.
18390
18391 * m/alpha.h (__ELF__): Consolidate conditions.
18392
18393 * m/m68k.h (linux): Use GNU_LINUX instead.
18394 Remove boilerplate comments.
18395
18396 * m/intel386.h: Undo refactoring from previous change.
18397 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
18398 too, remove dead code.
18399 (linux): Use GNU_LINUX instead.
18400
18401 2008-07-16 Jason Rumney <jasonr@gnu.org>
18402
18403 * w32gui.h: Repeat 26 June changes lost by last change.
18404
18405 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
18406
18407 * systty.h: Remove code for Aix on 386, unsupported platform.
18408
18409 * s/ms-w32.h: Remove boilerplate comments.
18410 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
18411
18412 * s/gnu-linux.h (TERM): Remove support.
18413 (HAVE_SYSVIPC): Remove, unused.
18414 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
18415 for this system.
18416
18417 * process.c: Remove support for IRIS, unused.
18418 Remove support for TERM, not relevant anymore.
18419
18420 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
18421 used with the definition.
18422
18423 * s/aix4-2.h (static): Do not undef.
18424
18425 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
18426 only used on Aix.
18427 (HAVE_SYSVIPC): Remove, unused.
18428
18429 * m/hp800.h (CANNOT_DUMP): Do not undef.
18430
18431 * m/alpha.h: Fix comment.
18432
18433 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
18434 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
18435 used by this configuration.
18436 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
18437 * unexec.c: Remove code depending on HPUX and
18438 USG_SHARED_LIBRARIES, not used with this file. Remove code
18439 depending on IRIS, unused. Remove if 0-ed code.
18440
18441 * s/template.h: Remove comments about static.
18442
18443 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
18444 Remove if 0-ed code.
18445 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
18446 were the same as the default.
18447 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
18448 Remove boilerplate comments.
18449 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
18450 (HAVE_SYSVIPC): Remove, unused.
18451 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
18452
18453 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18454 Remove boilerplate comments.
18455 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18456 Remove boilerplate comments.
18457 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
18458 Remove boilerplate comments.
18459 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
18460
18461 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
18462 USG systems which do not use DATA_SEG_BITS.
18463 Refactor code. Remove boilerplate comments.
18464
18465 * m/ibms390.h:
18466 * m/m68k.h:
18467 * s/bsd-common.h:
18468 * s/cygwin.h:
18469 * s/darwin.h:
18470 * s/freebsd.h:
18471 * s/gnu.h:
18472 * s/msdos.h: Remove boilerplate comments.
18473
18474 * m/iris4d.h: Remove boilerplate comments and code for systems that
18475 do not use this file.
18476 (IRIS_4D): Remove, unused.
18477
18478 * m/mips.h: Remove boilerplate comments and code for systems that
18479 do not use this file.
18480 (SIGN_EXTEND_CHAR):
18481 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
18482 * unexmips.c: Remove file, unused.
18483
18484 * editfns.c (Fuser_full_name): Replace the only use of
18485 USER_FULL_NAME with its value.
18486 * config.in: Regenerate.
18487
18488 2008-07-16 David Reitter <david.reitter@gmail.com>
18489
18490 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
18491 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
18492
18493 2008-07-16 Glenn Morris <rgm@gnu.org>
18494
18495 * emacs.c (system-type): Doc fix.
18496
18497 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
18498
18499 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
18500 If the cache doesn't work, let's fix it, rather than work around it.
18501
18502 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18503
18504 * Makefile.in: Correct additions for nsfont.o in last commit.
18505 * nsfont.m: New file (forgot last commit).
18506
18507 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18508
18509 * callproc.c (set_initial_environment):
18510 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
18511 batch-compiling for bootstrap).
18512
18513 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
18514 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18515
18516 * frame.c (make_initial_frame): Call init_frame_faces(f) in
18517 CANNOT_DUMP case -- fix crash due to different init order.
18518
18519 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18520
18521 Changes and additions for NeXTstep windowing system (Cocoa and
18522 GNUstep) support.
18523
18524 * Makefile.in:
18525 * config.in: Support defines and build commands for NS port.
18526 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
18527 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
18528 * dispextern.h: Include nsgui.h and add needed typedefs under NS
18529 windowing.
18530 (struct face): Add synth_ital field.
18531 * dispnew.c: Include nsterm.h when compiling under NS windowing.
18532 (init_display): Initialize Vinitial_window_system to "ns" when so
18533 compiled.
18534 * emacs.c: Include GSConfig.h when compiling under GNUstep.
18535 (display_arg): Use under NS.
18536 (main): Under NS, allocate autorelease pool and handle command line
18537 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
18538 (standard_args): Add NS-specific args.
18539 (shut_down_emacs): Shut down NS terminal if compiled under NS.
18540 * font.c (DEFAULT_ENCODING): New variable.
18541 (font_find_for_lface): Use it.
18542 (syms_of_font): Load syms_of_nsfont under NS.
18543 * font.h: Declare nsfont_driver when compiled under NS.
18544 * fontset.c: When compiling under NS, include nsterm.h.
18545 (fontset_from_font): Autoconstruct fontset under NS.
18546 * frame.c (various): Under NS, include nsterm.h, add Qns window system
18547 symbol, document and use it.
18548 (do_switch_frame): When for_deletion under Cocoa, add
18549 Fraise_frame(Qnil).
18550 (x_set_frame_parameters): Ensure font attribute changes are picked up.
18551 (x_get_arg): Allow "yes" and "no" as boolean values.
18552 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
18553 Qright under Cocoa.
18554 (focus-follows-mouse): Default to 0 under NS.
18555 * frame.h (enum output_method): Add output_ns.
18556 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
18557 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
18558 (FRAME_WINDOW_P): NS-specific definition.
18559 * fringe.c (max_used_fringe_bitmap): Make public.
18560 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
18561 (getloadavg): Use NeXT code under descendant OS's.
18562 * image.c (includes and header section, x_create_bitmap_from_data)
18563 (x_create_bitmap_from_file, free_bitmap_record, image_background)
18564 (image_background_transparent, x_clear_image_1)
18565 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
18566 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
18567 (x_to_xcolors, x_from_xcolors, x_disable_image)
18568 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
18569 other GUIs, including XPM support using code originally written for
18570 Carbon GUI.
18571 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
18572 using NS API.
18573 (image_ascent): Use font metrics macros instead of direct struct field
18574 access.
18575 * keyboard.c (includes): Add nsterm.h when compiling under NS.
18576 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
18577 Also, handle NS as GTK for menu bar purposes.
18578 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
18579 toolkit where they differ.
18580 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
18581 use cachelist, still needed under NS.
18582 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
18583 (struct widget_value): Define it here for menu.c.
18584 * keymap.c (includes): Include modifier internals.
18585 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
18586 NS.
18587 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
18588 support for preferring sequences using certain modifiers, specified by
18589 the FIRSTONLY argument.
18590 * lisp.h (hash_remove): Rename to avoid name clash when compiling
18591 under NS GNUstep implementation.
18592 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
18593 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
18594 * menu.c: Include nsterm.h under NS.
18595 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
18596 (free_menubar_widget_tree_value, update_submenu_strings)
18597 (find_and_call_menu_selection): Treat NS as X and NT.
18598 (find_and_return_menu_selection): New function, used for popup menus.
18599 * nsgui.h:
18600 * nsterm.h:
18601 * nsfns.m:
18602 * nsimage.m:
18603 * nsmenu.m:
18604 * nsselect.m:
18605 * nsterm.m: New files.
18606 * process.c (wait_reading_process_output): Under NS, call ns_select()
18607 instead of plain select().
18608 * syntax.c (char_quoted): Under NS, avoid a crash when called near
18609 beginning of buffer.
18610 * sysselect.h (init_process): Rename when compiling under Cocoa to
18611 avoid name conflict.
18612 * termhooks.h (display_info): Add ns_display_info to union.
18613 * terminal.c (Fterminal_live_p): Add ns to terminal types.
18614 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
18615 COCOA environment.
18616 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
18617 unexec() signature. (Note, this will dump, but the resulting file
18618 crashes; unexosx is used instead; keeping around for reference and
18619 possible aid in getting dump working under GNUstep.)
18620 * w32gui.h (button_type, widget_value): Remove definitions (now in
18621 keyboard.h).
18622 * window.c: Include nsterm.h when compiling under NS.
18623 * xdisp.c (includes): Include nsterm.h when compiling under NS.
18624 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
18625 other GUI windowing systems.
18626 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
18627 GTK.
18628 (x_consider_frame_title): Under NS, set icon type and frame
18629 modified-state indicator; use ns_set_name_as_filename() when using
18630 formatted title.
18631 (update_window_cursor): Make public when compiling under NS.
18632 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
18633 (hourglass_atimer, Vhourglass_delay
18634 * xfaces.c (header section, init_frame_faces, clear_font_table)
18635 (defined_color, unload_color, x_face_list_fonts)
18636 (prepare_face_for_display): Add NS support parallel to other GUIs.
18637 Emulate GCs like other non-X GUIs.
18638 (split_font_name): Don't lowercase font name under NS.
18639 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
18640 under NS.
18641 * s/darwin.h: Add support for compilation under NS.
18642
18643 2008-07-15 Jason Rumney <jasonr@gnu.org>
18644
18645 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
18646 (w32_show_hourglass): Rename from show_hourglass.
18647 (w32_hide_hourglass): Rename from hide_hourglass.
18648 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
18649 (Vhourglass_delay): Declare extern.
18650 (hourglass_started): Remove.
18651
18652 * xdisp.c (Vhourglass_delay): Remove static.
18653 (hourglass_started, start_hourglass, cancel_hourglass):
18654 Don't include these versions on WINDOWSNT.
18655
18656 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
18657
18658 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
18659 variables (formerly in xfns.c).
18660 (show_hourglass, hide_hourglass): New prototypes (same).
18661 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
18662 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
18663 in xfns.c).
18664 (syms_of_xdisp): Declare/initialize display-hourglass,
18665 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
18666 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
18667 formerly in xfns.c.
18668 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18669 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18670 (start_hourglass, cancel_hourglass): Remove.
18671 (show_hourglass, hide_hourglass): Remove prototypes and static
18672 modifiers.
18673 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
18674 hourglass_atimer, hourglass_shown_p declaration/initialization.
18675 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
18676 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
18677 (start_hourglass, cancel_hourglass): Remove.
18678 (show_hourglass, hide_hourglass): Remove prototypes and static
18679 modifiers.
18680 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
18681 hourglass_atimer, hourglass_shown_p declaration/initialization.
18682 * w32fns.c (display_hourglass_p, Vhourglass_delay)
18683 (DEFAULT_HOURGLASS_DELAY): Remove.
18684 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
18685 hourglass_shown_p declaration/initialization.
18686
18687 2008-07-14 Jason Rumney <jasonr@gnu.org>
18688
18689 * w32fns.c (w32_get_arg): Remove wrapper function.
18690 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
18691 directly.
18692 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
18693
18694 2008-07-14 Kenichi Handa <handa@m17n.org>
18695
18696 * xfont.c (xfont_open): Add workaround for X's bug.
18697
18698 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
18699
18700 * fontset.c: Include <stdio.h> unconditionally.
18701
18702 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
18703
18704 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
18705 for filtering.
18706
18707 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
18708
18709 * s/vms.h: Use __GNUC__ instead of _GNUC_.
18710
18711 * m/macppc.h:
18712 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
18713
18714 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
18715 (SPECIAL_EMACS_INT):
18716 * m/ia64.h (SPECIAL_EMACS_INT):
18717 * m/amdx86-64.h (SPECIAL_EMACS_INT):
18718 * s/gnu.h (NLIST_STRUCT):
18719 * s/aix4-2.h (X11R5_INHIBIT_I18N):
18720 * s/gnu-linux.h (LINUX):
18721 * s/msdos.h (HAVE_FACES):
18722 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
18723
18724 * systty.h:
18725 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
18726 anymore.
18727
18728 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
18729
18730 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
18731 always defined as int.
18732
18733 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
18734 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
18735 * s/gnu-linux.h (HAVE_WAIT_HEADER):
18736 * s/freebsd.h (HAVE_WAIT_HEADER):
18737 * s/bsd-common.h (HAVE_UNION_WAIT):
18738 * s/aix4-2.h (HAVE_WAIT_HEADER):
18739 * m/mips.h (HAVE_UNION_WAIT):
18740 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
18741 (COFF, static): Do not define, they are undefined later in the file.
18742
18743 * process.c (update_status): Don't use a union.
18744 (status_convert):
18745 (sigchld_handler): Use int instead of WAITTYPE.
18746
18747 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
18748
18749 * indent.c (Fvertical_motion): Restore hscroll before moving to
18750 goal column.
18751
18752 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
18753
18754 * lisp.h: Remove left over code.
18755
18756 2008-07-11 Andreas Schwab <schwab@suse.de>
18757
18758 * lisp.h: Fix logic in last change.
18759
18760 * menu.h: New file.
18761 * menu.c: Include it.
18762 * xmenu.c: Likewise.
18763 * Makefile.in: Update dependencies.
18764
18765 2008-07-11 Kenichi Handa <handa@m17n.org>
18766
18767 * fontset.c (fontset_from_font): Cancel the previous change.
18768
18769 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
18770
18771 * lisp.h:
18772 * w32heap.c:
18773 * emacs.c:
18774 * alloc.c: Replace all references of NO_UNION_TYPE with
18775 USE_LISP_UNION_TYPE.
18776
18777 * m/xtensa.h (NO_UNION_TYPE):
18778 * m/vax.h (NO_UNION_TYPE):
18779 * m/template.h (NO_UNION_TYPE):
18780 * m/sparc.h (NO_UNION_TYPE):
18781 * m/mips.h (NO_UNION_TYPE):
18782 * m/macppc.h (NO_UNION_TYPE):
18783 * m/m68k.h (NO_UNION_TYPE):
18784 * m/iris4d.h (NO_UNION_TYPE):
18785 * m/intel386.h (NO_UNION_TYPE):
18786 * m/ibms390x.h (NO_UNION_TYPE):
18787 * m/ibms390.h (NO_UNION_TYPE):
18788 * m/ibmrs6000.h (NO_UNION_TYPE):
18789 * m/ia64.h (NO_UNION_TYPE):
18790 * m/hp800.h (NO_UNION_TYPE):
18791 * m/arm.h (NO_UNION_TYPE):
18792 * m/amdx86-64.h (NO_UNION_TYPE):
18793 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
18794 defining it the same.
18795
18796 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
18797
18798 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
18799
18800 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
18801
18802 * fileio.c:
18803 * sysdep.c:
18804 * systty.h:
18805 * m/ibmrs6000.h:
18806 * m/iris4d.h:
18807 * s/aix4-2.h:
18808 * s/freebsd.h:
18809 * s/gnu-linux.h:
18810 * s/hpux10-20.h:
18811 * s/hpux11.h:
18812 * s/netbsd.h:
18813 * s/sol2-3.h:
18814 * s/sol2-4.h:
18815 * s/sol2.h:
18816 * s/usg5-4.h:
18817 * s/vms.h: Remove references to unused variables.
18818
18819 2008-07-10 Andreas Schwab <schwab@suse.de>
18820
18821 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
18822 pattern before matching the generic family.
18823
18824 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
18825
18826 * unexec.c:
18827 * s/vms.h:
18828 * s/usg5-4-2.h:
18829 * s/sol2-5.h:
18830 * s/freebsd.h:
18831 * s/darwin.h: Remove dead code.
18832
18833 * m/template.h:
18834 * m/sparc.h:
18835 * m/mips.h:
18836 * m/m68k.h:
18837 * m/iris4d.h:
18838 * m/intel386.h:
18839 * m/ibms390x.h:
18840 * m/ibms390.h:
18841 * m/ia64.h:
18842 * m/hp800.h:
18843 * m/arm.h:
18844 * m/amdx86-64.h: Remove dead code and references to unused
18845 and compiler defined symbols.
18846
18847 * unexmips.c:
18848 * unexelf.c: Remove references to desupported systems.
18849
18850 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
18851
18852 * m/powermac.h: Remove boilerplate comments.
18853 (NO_REMAP): Remove unused definition.
18854
18855 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
18856 define them.
18857
18858 2008-07-10 Kenichi Handa <handa@m17n.org>
18859
18860 * xfont.c (xfont_open): Log the reason of failure.
18861
18862 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
18863
18864 * fontset.c (fontset_get_font_group):
18865 * font.c (font_check_otf): Specify argument types.
18866
18867 2008-07-09 Kenichi Handa <handa@m17n.org>
18868
18869 * coding.c (detect_coding_utf_8): Set detect_info->found only when
18870 non-ASCII char is found.
18871
18872 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
18873 (reorder_font_vector): Change the arg preferred_family to font.
18874 Prefer the spec matching with font.
18875 (fontset_get_font_group): New function.
18876 (fontset_find_font): Change the format of an element of a realized
18877 fontset. Use fontset_get_font_group.
18878 (fontset_font): Try the current fontset, the default fontset, the
18879 fallbacks of the current fontset, and the fallbacks of the default
18880 fontset in this order.
18881 (face_for_char): Delete the shortcut to use the current font.
18882 (fontset_from_font): Don't set fonts for Latin in the fontset.
18883
18884 * font.h (font_make_object, font_match_p): Adjust prototypes.
18885
18886 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
18887
18888 * font.c (font_make_object): New arg entity and pixelsize.
18889 (font_check_otf_features, font_check_otf): New functions.
18890 (font_match_p): Check :lang, :script, and :otf properties.
18891
18892 * xfont.c (xfont_open): Adjust it for the change of
18893 font_make_object.
18894 (xfont_text_extents): Fix initial setting of metrics.
18895
18896 * ftfont.c (struct ftfont_info): New member index, delete member
18897 fc_charset_idx. Make the member order compatible with struct
18898 xftfont_info.
18899 (fc_charset_table): Change charset names to registry names.
18900 (ftfont_pattern_entity): Delete the args registry and
18901 fc_charset_idx. Change the value of :font-entity property
18902 to (FONTNAME . INDEX). Always set :registry property to
18903 `iso10646-1'.
18904 (struct ftfont_cache_data): New struct.
18905 (ftfont_lookup_cache): New arg for_face.
18906 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
18907 (ftfont_driver): Set the member otf_capability.
18908 (ftfont_get_charset): Adjust it for the change of
18909 fc_charset_table.
18910 (OTF_TAG_SYM): New macro.
18911 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
18912 for the change of fc_charset_table.
18913 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
18914 ftfont_pattern_entity. Add FC_INDEX to objset.
18915 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
18916 and ftfont_pattern_entity.
18917 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
18918 font_make_object, struct ftfont_info.
18919 (ftfont_has_char): Use ftfont_get_fc_charset.
18920 (ftfont_otf_features, ftfont_otf_capability): New functions.
18921 (ftfont_shape): Use ftfont_get_otf.
18922 (ftfont_text_extents): Fix initial setting of metrics.
18923
18924 * xftfont.c (struct xftfont_info): New member ft_size. Make the
18925 member order compatible with struct ftfont_info.
18926 (xftfont_open): Add FC_CHARSET to the pattern.
18927 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
18928 properties if appropriate.
18929 (xftfont_close): Unlock the face.
18930 (xftfont_anchor_point, xftfont_shape): Deleted.
18931 (syms_of_xftfont): Don't set members anchor_point and shape of
18932 xftfont_driver.
18933
18934 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
18935 font_make_object.
18936
18937 * w32font.c (w32font_open): Adjust it for the change of
18938 font_make_object.
18939 (w32font_open_internal): Don't set properties of font_object here.
18940
18941 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
18942
18943 * macfns.c (x_create_tip_frame):
18944 * w32fns.c (x_create_tip_frame):
18945 * xfns.c (x_create_tip_frame): Pass parameter argument to
18946 face-set-after-frame-default.
18947
18948 * xfaces.c (Finternal_merge_in_global_face): Save merged
18949 attributes for the default face back into the face vector.
18950
18951 2008-07-08 Andreas Schwab <schwab@suse.de>
18952
18953 * fontset.h: Declare fontset_from_font. Don't declare
18954 new_fontset_from_font and fontset_from_font_name.
18955 * xterm.c: Include "fontset.h".
18956 * Makefile.in (xterm.o): Update dependencies.
18957
18958 2008-07-08 Glenn Morris <rgm@gnu.org>
18959
18960 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
18961 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
18962
18963 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
18964
18965 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
18966 (x_set_frame_parameters): Don't bind it.
18967
18968 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
18969
18970 * w32fns.c (map_w32_filename): Declare extern.
18971
18972 2008-07-07 Jason Rumney <jasonr@gnu.org>
18973
18974 * w32term.c (WS_EX_LAYERED): Define if not already.
18975
18976 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
18977
18978 * xfaces.c (set_font_frame_param): Don't try to set the font
18979 parameter if it is still unspecified in the lface.
18980
18981 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
18982
18983 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
18984 face if it didn't already exist.
18985
18986 * xdisp.c (try_window_id): Give up if word-wrapping is on.
18987
18988 2008-07-05 Andreas Schwab <schwab@suse.de>
18989
18990 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
18991
18992 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
18993
18994 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
18995 word-wrapping.
18996 (IT_DISPLAYING_WHITESPACE): New macro.
18997 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
18998 when word-wrapping. Simplify word-wrapping logic. Use correct
18999 pixel positions when saving copies of the iterator.
19000 (display_line): Use proper wrap point if the last character on a
19001 line was preceded by whitespace.
19002
19003 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
19004
19005 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
19006
19007 2008-07-04 Kenichi Handa <handa@m17n.org>
19008
19009 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
19010
19011 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
19012
19013 2008-07-02 Jason Rumney <jasonr@gnu.org>
19014
19015 * xfns.c (syms_of_xfns): Only define x-select-font when both
19016 HAVE_FREETYPE and USE_GTK.
19017
19018 * xdisp.c (next_element_from_display_vector): Move assignment out
19019 of if statement.
19020
19021 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
19022
19023 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
19024
19025 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
19026 (syms_of_fileio): Initialize and export them.
19027 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
19028
19029 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
19030 (Fsystem_move_file_to_trash): New function.
19031 (syms_of_w32fns): Export it to lisp.
19032
19033 2008-07-01 Jason Rumney <jasonr@gnu.org>
19034
19035 * w32font.c (w32font_text_extents): Don't count overhang as part
19036 of width.
19037
19038 2008-06-30 Miles Bader <miles@gnu.org>
19039
19040 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
19041 Add `avoid_cursor_p' field.
19042
19043 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
19044 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
19045 (append_glyph, append_composite_glyph, produce_image_glyph)
19046 (append_stretch_glyph): Initialize avoid_cursor_p.
19047 (get_it_property): Rename from `get_line_height_property'.
19048 (x_produce_glyphs): Use get_it_property.
19049 (handle_line_prefix, push_display_prop): New functions.
19050 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
19051 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
19052 New variables.
19053 (syms_of_xdisp): Initialize them.
19054
19055 2008-06-30 Kenichi Handa <handa@m17n.org>
19056
19057 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
19058 XftDefaultSubstitute (they are called in XftFontMatch).
19059 (xftfont_open): Fix args to ftfont_font_format.
19060
19061 * ftfont.c (fc_charset_table): New member lang.
19062 (ftfont_resolve_generic_family): New arg pattern.
19063 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
19064 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
19065 (ftfont_open): Fix args to ftfont_font_format.
19066 (ftfont_font_format): New arg filename.
19067
19068 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
19069
19070 * xfaces.c (Finternal_merge_in_global_face): If default face was
19071 modified, realize it again. Update the font face attribute.
19072
19073 2008-06-29 Jason Rumney <jasonr@gnu.org>
19074
19075 * w32term.c (x_set_frame_alpha): Fix logic.
19076
19077 2008-06-29 Kenichi Handa <handa@m17n.org>
19078
19079 * fontset.c (Finternal_char_font): Return font-object instead of
19080 font-name.
19081
19082 * composite.c (get_composition_id): Fix the width calculation for TAB.
19083
19084 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
19085
19086 * indent.c (Fvertical_motion): Properly handle float column arg.
19087
19088 2008-06-28 Jason Rumney <jasonr@gnu.org>
19089
19090 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
19091 (pfnSetLayeredWindowAttributes): New function pointer.
19092 (w32_initialize): Initialize it when supported.
19093 (x_set_frame_alpha): New function.
19094
19095 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
19096 (w32_frame_parm_handlers): Set alpha handler.
19097
19098 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
19099
19100 2008-06-27 Jason Rumney <jasonr@gnu.org>
19101
19102 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
19103 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
19104 (w32_to_x_charset, x_to_w32_charset)
19105 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19106 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19107 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19108 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19109 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19110 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19111 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
19112 (Qw32_charset_unicode): Remove.
19113 (syms_of_w32fns): Update for above changes.
19114
19115 * w32font.c (w32_to_x_charset, x_to_w32_charset)
19116 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
19117 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
19118 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
19119 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
19120 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
19121 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
19122 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
19123 (syms_of_w32font): Update for above changes.
19124
19125 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
19126
19127 * s/usg5-4.h: Fix previous change: keep the correct branch of a
19128 removed #if.
19129 (USG_SHARED_LIBRARIES): Remove duplicate definition.
19130
19131 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19132 Eli Zaretskii <eliz@gnu.org>
19133
19134 * makefile.w32-in (LOCAL_FLAGS):
19135 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
19136
19137 * sysdep.c (_spawnlp, _getpid):
19138 Declare with explicit _cdecl instead of _CRTAPI1.
19139
19140 * editfns.c (Fget_internal_run_time):
19141 Check for WINDOWSNT with #ifdef, not #if.
19142
19143 2008-06-26 Jason Rumney <jasonr@gnu.org>
19144
19145 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
19146
19147 * w32term.c (x_draw_glyph_string_foreground)
19148 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
19149 Use FONT_HANDLE macro.
19150 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
19151
19152 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19153 (uniscribe_encode_char): Use FONT_HANDLE macro.
19154
19155 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
19156 (w32font_text_extents): Use precast w32_font.
19157 (w32font_close): Free cached metrics.
19158 (w32font_open_internal): Allocate space for name on stack.
19159
19160 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
19161
19162 * xdisp.c (extend_face_to_end_of_line): Fix last change.
19163
19164 2008-06-26 Jason Rumney <jasonr@gnu.org>
19165
19166 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
19167 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
19168
19169 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
19170
19171 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
19172
19173 2008-06-26 Jason Rumney <jasonr@gnu.org>
19174
19175 * w32bdf.c, w32bdf.h: Remove obsolete files.
19176
19177 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
19178
19179 * w32gui.h: Don't include w32bdf.h.
19180 (XCharStruct, enum w32_char_font_type, W32FontStruct):
19181 Remove obsolete font support.
19182
19183 * w32font.h (struct w32font_info): Remove compat_w32_font.
19184 Add hfont member.
19185 (FONT_COMPAT): Remove obsolete macro.
19186
19187 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
19188 (w32font_encode_char, w32font_text_extents): Use new hfont member.
19189 (w32font_open_internal): Remove compat code. Set new hfont member.
19190 (Fx_select_font): Use new hfont member.
19191
19192 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
19193 (uniscribe_encode_char): Use new hfont member.
19194
19195 * w32term.c (x_draw_glyph_string_foreground)
19196 (x_draw_composite_glyph_string_foreground): Use new hfont member.
19197 (x_draw_glyph_string): Use metrics in w32font_info.
19198
19199 2008-06-26 Kenichi Handa <handa@m17n.org>
19200
19201 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
19202
19203 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
19204
19205 * unexnext.c:
19206 * m/ews4800.h:
19207 * m/hp9000s300.h:
19208 * m/ibm370aix.h:
19209 * m/mips-siemens.h:
19210 * m/ncr386.h:
19211 * m/next.h:
19212 * m/pmax.h:
19213 * m/powerpcle.h:
19214 * m/tandem-s2.h:
19215 * s/386bsd.h:
19216 * s/bsd386.h:
19217 * s/bsd4-1.h:
19218 * s/bsd4-2.h:
19219 * s/bsdos2-1.h:
19220 * s/bsdos2.h:
19221 * s/bsdos3.h:
19222 * s/bsdos4.h:
19223 * s/nextstep.h:
19224 * s/ultrix4-3.h:
19225 * s/usg5-0.h:
19226 * s/usg5-2-2.h:
19227 * s/usg5-2.h:
19228 * s/usg5-4-3.h:
19229 * s/ux4800.h:
19230 * s/uxpds.h:
19231 * s/uxpv.h: Remove support for obsolete systems.
19232 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
19233 Remove, insert contents in s/hpux10-20.h.
19234 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
19235 Remove, insert contents in s/aix4-2.h.
19236 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
19237 * s/bsd4-3.h: Rename to ...
19238 * s/bsd-common.h: ... this.
19239 * data.c:
19240 * doc.c:
19241 * ecrt0.c:
19242 * emacs.c:
19243 * fileio.c:
19244 * floatfns.c:
19245 * keyboard.c:
19246 * mem-limits.h:
19247 * print.c:
19248 * process.c:
19249 * sysdep.c:
19250 * syssignal.h:
19251 * systty.h:
19252 * syswait.h:
19253 * term.c:
19254 * unexec.c:
19255 * unexelf.c:
19256 * unexhp9k800.c:
19257 * m/hp800.h:
19258 * m/ibmrs6000.h:
19259 * m/mips.h:
19260 * m/vax.h:
19261 * s/darwin.h:
19262 * s/freebsd.h:
19263 * s/gnu.h:
19264 * s/ms-w32.h:
19265 * s/msdos.h:
19266 * s/netbsd.h:
19267 * s/template.h: Remove references to obsolete variables.
19268
19269 * Makefile.in: Add dependencies for all unexec files.
19270 (admindir): Remove unused variable.
19271 (UNEXEC_SRC): Remove references.
19272
19273 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
19274
19275 * xfns.c (x_default_font_parameter): If Xft is available, first
19276 try Monospace-12 for the default font.
19277
19278 2008-06-25 Jason Rumney <jasonr@gnu.org>
19279
19280 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
19281
19282 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
19283
19284 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
19285
19286 * buffer.c (syms_of_buffer): Remove default-word-wrap.
19287
19288 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
19289
19290 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
19291 <scroll-conservatively>: Fix typo in docstring.
19292
19293 * xselect.c (Fx_send_client_event): Doc fix.
19294
19295 2008-06-25 Kenichi Handa <handa@m17n.org>
19296
19297 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
19298
19299 * font.c (font_parse_fcname): Remove unused variables.
19300 (font_sort_entites): Delete the arg SPEC. Caller changed.
19301 Fix for the case of ! best_only.
19302 (font_delete_unmatched): Check DPI and AVGWIDTH too.
19303
19304 * lisp.h (Fstring_to_unibyte): EXFUN it.
19305
19306 * character.h (str_to_unibyte): Extern it.
19307
19308 * character.c (str_to_unibyte): New function.
19309
19310 * fns.c (Fstring_to_unibyte): New function.
19311 (syms_of_fns): Defsubr it.
19312
19313 2008-06-24 Kenichi Handa <handa@m17n.org>
19314
19315 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
19316 DPI too.
19317 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
19318
19319 2008-06-24 Andreas Schwab <schwab@suse.de>
19320
19321 * Makefile.in (${lispsource}loaddefs.el): Rename from
19322 ../lisp/loaddefs.el.
19323 (bootstrap-clean): Do what distclean does but don't remove
19324 Makefile.
19325 (distclean): Depend on bootstrap-clean and remove Makefile.
19326
19327 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
19328
19329 * buffer.h (struct buffer): New member word_wrap.
19330
19331 * buffer.c (syms_of_buffer): New variables default-word-wrap and
19332 word-wrap.
19333 (init_buffer_once): Initialize them.
19334
19335 * dispextern.h (struct it): Replace bool truncate_lines_p with a
19336 line_wrap enum possessing three possible values.
19337
19338 * termopts.h: Replace truncate_partial_width_windows with
19339 Vtruncate_partial_width_windows.
19340
19341 * dispnew.c (direct_output_for_insert): Avoid direct output when
19342 inserting a space with word wrap on.
19343
19344 * indent.c (compute_motion): Obey integer values of
19345 truncate-partial-width-windows.
19346
19347 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
19348 replacing truncate_partial_width_windows.
19349 (init_iterator): If Vtruncate_partial_width_windows is an integer,
19350 truncate only if the window width is below that integer.
19351 (start_display, resize_mini_window, produce_stretch_glyph)
19352 (display_string, move_it_in_display_line_to): Use line_wrap.
19353 (back_to_previous_visible_line_start, reseat_1):
19354 Reset string_from_display_prop_p.
19355 (display_line): Extend default face to end of line when wrapping.
19356
19357 2008-06-24 Kim F. Storm <storm@cua.dk>
19358
19359 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
19360 to wrap continued lines at word boundaries.
19361
19362 2008-06-24 Jason Rumney <jasonr@gnu.org>
19363
19364 * font.c (Ffont_face_attributes): Multiply pixel size before point
19365 conversion to avoid multiplying rounding error.
19366
19367 2008-06-23 Jason Rumney <jasonr@gnu.org>
19368
19369 * w32term.c (x_draw_glyph_string_background)
19370 (x_draw_glyph_string): Remove old bdf font code.
19371
19372 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
19373
19374 2008-06-22 Kenichi Handa <handa@m17n.org>
19375
19376 * font.c (font_find_for_lface): Try the adstyle specified in
19377 the property of LFACE_FONT of LFACE (if any).
19378
19379 2008-06-21 Seiji Zenitani <zenitani@mac.com>
19380 Ryo Yoshitake <ryo@shiftmode.net>
19381
19382 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
19383
19384 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
19385
19386 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
19387 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
19388 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
19389 (witness-emacs): Remove.
19390 (lisp, shortlisp): Move loaddefs.el earlier.
19391 (mostlyclean): Forget about witness-emacs.
19392
19393 2008-06-22 Glenn Morris <rgm@gnu.org>
19394
19395 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
19396 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
19397
19398 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19399
19400 * Makefile.in (PRECOMP): Remove.
19401 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
19402 (witness-emacs): Run `compile-first'.
19403 (.el.elc): Use the new compile-onefile target.
19404
19405 2008-06-21 Kenichi Handa <handa@m17n.org>
19406
19407 * xftfont.c (xftfont_open): Handle QCembolden only when
19408 FC_EMBOLDEN is defined.
19409
19410 2008-06-21 Andreas Schwab <schwab@suse.de>
19411
19412 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
19413 (.el.elc): Likewise.
19414
19415 2008-06-21 Miles Bader <miles@gnu.org>
19416
19417 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
19418 build dir, not the lisp source dir.
19419
19420 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
19421
19422 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
19423 (bootstrapclean): Remove.
19424 (.el.elc): New rule.
19425 (PRECOMP): New var.
19426 (../lisp/subdirs.el): Remove.
19427 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
19428 (witness-emacs): New target.
19429 (mostlyclean): Remove witness-emacs as well.
19430 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
19431 Add witness-emacs dependency.
19432
19433 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
19434
19435 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
19436 defined by the font.
19437
19438 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19439
19440 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
19441 (bootstrap-clean): New target that keeps TAGS around.
19442 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
19443 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
19444
19445 2008-06-20 Jason Rumney <jasonr@gnu.org>
19446
19447 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
19448 Remove obsolete font code.
19449
19450 * w32font.c (font_matches_spec): Use csb bitfield from font signature
19451 to determine language support.
19452
19453 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19454
19455 * sysdep.c (cfsetspeed): New fun extracted from the code.
19456 (cfmakeraw): Move before first use.
19457
19458 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
19459
19460 * sysdep.c (cfmakeraw): Provide fallback implementation.
19461 (serial_configure): Provide fallback implementation of cfsetspeed.
19462
19463 2008-06-20 Kenichi Handa <handa@m17n.org>
19464
19465 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
19466 the pattern.
19467
19468 * fontset.c (fontset_from_font): Copy font_spec before changing
19469 the elements.
19470
19471 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
19472
19473 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
19474
19475 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
19476 for explicit `font' parameters.
19477
19478 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
19479
19480 2008-06-19 Kenichi Handa <handa@m17n.org>
19481
19482 * frame.c: Include <ctype.h>.
19483 (x_set_font_backend): Allow spacing characters in the X resource
19484 for FontBackend.
19485
19486 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
19487
19488 * w32fns.c, xfns.c (Qfont_param): New var.
19489 (syms_of_w32fns): Initialize it.
19490 (x_default_font_parameter): Record explicit `font' into
19491 `font-parameter'.
19492
19493 2008-06-18 Kenichi Handa <handa@m17n.org>
19494
19495 * font.c (font_parse_xlfd): Fix previous change.
19496 (font_parse_fcname): Don't use :fc-unknown-spec.
19497 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
19498 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
19499 (font_add_log): Prepend the driver name to the resulting fonts.
19500
19501 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
19502 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
19503 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
19504
19505 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
19506 (QCembolden): New variables.
19507 (syms_of_xftfont): DEFSYM them.
19508 (xftfont_open): Call XftFontMatch. Don't trust the result of
19509 XftTextExtents8 if the pixel_size is less than 5.
19510
19511 2008-06-18 Andreas Schwab <schwab@suse.de>
19512
19513 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
19514 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
19515
19516 2008-06-18 Jason Rumney <jasonr@gnu.org>
19517
19518 * w32font.c (w32font_list, w32font_match): Add logging.
19519
19520 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
19521
19522 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
19523
19524 * font.c (font_parse_fcname): Store divider characters for
19525 unknown-spec list. For known key symbols, intern using correct
19526 symbol name.
19527
19528 2008-06-17 Kenichi Handa <handa@m17n.org>
19529
19530 * xfaces.c (realize_default_face): If the frame is not on window
19531 system, set the fontset of face to nil.
19532
19533 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19534
19535 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
19536
19537 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
19538
19539 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
19540 (build_font_name_from_vector): Delete externs.
19541
19542 * xfaces.c (struct font_name): Don't declare.
19543
19544 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
19545
19546 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
19547
19548 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
19549
19550 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
19551
19552 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
19553
19554 * font.c (Ffont_spec): Fix usage in docstring.
19555 (Ffont_face_attributes): Doc fix.
19556
19557 2008-06-16 Andreas Schwab <schwab@suse.de>
19558
19559 * font.c (Ffont_face_attributes): Fix definition.
19560
19561 2008-06-16 Jason Rumney <jasonr@gnu.org>
19562
19563 * font.h (font_style_symbolic_from_value): Remove.
19564
19565 * font.c (font_style_symbolic_from_value): Remove.
19566 (font_style_symbolic): Revert to pre 2008-06-13 version.
19567
19568 * w32font.c (w32_to_fc_weight): New function.
19569 (w32font_full_name, logfont_to_fcname): Use it.
19570
19571 2008-06-16 Kenichi Handa <handa@m17n.org>
19572
19573 * font.c (font_check_object): Delete it.
19574 (font_clear_cache): Check if a font-object is alive.
19575 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
19576 font-object to nil.
19577 (font_close_object): Don't check FONT_CLOSE_OBJECT.
19578 (font_at): Don't call font_check_object.
19579 (Ffont_get): Return a symbol for :weight, :slant, and :width.
19580
19581 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
19582
19583 * puresize.h (BASE_PURESIZE): Increase to 1230000.
19584
19585 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
19586
19587 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
19588
19589 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
19590
19591 * font.c (font_parse_fcname): Only one decimal point.
19592 (font_unparse_fcname): Handle data in family and foundry indices
19593 as symbols, not strings.
19594 (font_unparse_gtkname, Ffont_face_attributes): New functions.
19595
19596 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
19597
19598 * font.h (font_unparse_gtkname): Add prototype.
19599
19600 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
19601
19602 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
19603
19604 2008-06-15 Andreas Schwab <schwab@suse.de>
19605
19606 * font.c (font_update_drivers): Fix crash when no drivers match.
19607
19608 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19609
19610 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
19611 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
19612
19613 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
19614
19615 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
19616
19617 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
19618
19619 * process.c (Fserial_process_configure, Fprocess_send_eof):
19620 Use EQ to compare Lisp_Objects.
19621
19622 2008-06-13 Jason Rumney <jasonr@gnu.org>
19623
19624 * w32fns.c (Fw32_select_font): Remove old font API function.
19625
19626 * w32font.c (logfont_to_fcname): New function.
19627 (Fx_select_font): New font dialog function compatible with
19628 GTK/fontconfig version.
19629
19630 * font.c (font_style_symbolic_from_value): New function.
19631 (font_style_symbolic): Use it.
19632
19633 * font.h (font_style_symbolic_from_value): Declare new function.
19634
19635 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
19636
19637 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
19638 <font-width-table>: Fix typos in docstrings.
19639
19640 2008-06-13 Daniel Engeler <engeler@gmail.com>
19641
19642 These changes add serial port access.
19643 * process.c: Add HAVE_SERIAL.
19644 (Fdelete_process, Fprocess_status, Fset_process_buffer)
19645 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
19646 (list_processes_1, select_wrapper, Fstop_process)
19647 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
19648 (status_notify): Modify to handle serial processes.
19649 [HAVE_SERIAL] (Fserial_process_configure)
19650 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
19651 New functions.
19652 * process.h (struct Lisp_Process): Add `type'.
19653 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
19654 New functions.
19655 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
19656 serial ports.
19657 (serial_open, serial_configure): New functions.
19658 * w32.h: Add FILE_SERIAL.
19659 (struct _child_process): Add ovl_read, ovl_write.
19660
19661 2008-06-13 Kenichi Handa <handa@m17n.org>
19662
19663 * dispextern.h (enum lface_attribute_index): New member
19664 LFACE_FOUNDRY_INDEX.
19665
19666 * font.c (font_score): Delete arg alternate_families. Check only
19667 weight, slant, width, and size. Ignore the difference of alias
19668 style symbols.
19669 (font_sort_entites): Adjust for the above change. Reflect the
19670 order of font-driver to scores.
19671 (font_list_entities): Don't check alternate_familes here.
19672 (font_clear_prop): Handle foundry.
19673 (font_update_lface): Don't parse "foundry-family" form here.
19674 Handle FONT_FOUNDRY_INDEX.
19675 (font_find_for_lface): Likewise. Handle alternate families here.
19676 If registry is nil, try iso8859-1 and ascii-0.
19677 (font_open_for_lface): Pay attention to size in ENTITY.
19678 (font_open_by_name): Simplify by calling font_load_for_lface.
19679 (free_font_driver_list): Delete it.
19680 (font_update_drivers): Preserve the order of backends.
19681 (syms_of_font): Setting of sort_shift_bits adjusted for the change
19682 of font_score and font_sort_entites.
19683 (font_update_sort_order): Likewise.
19684
19685 * xfaces.c (LFACE_FOUNDRY): New macro.
19686 (check_lface_attrs): Check foundry.
19687 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
19688 (merge_face_vectors): Check foundry.
19689 (merge_face_ref): Likewise.
19690 (Finternal_set_lisp_face_attribute): Likewise.
19691 (x_update_menu_appearance): Likewise.
19692 (Finternal_get_lisp_face_attribute): Likewise.
19693 (lface_hash): Likewise.
19694 (lface_same_font_attributes_p): Likewise.
19695 (x_supports_face_attributes_p): Likewise.
19696 (tty_supports_face_attributes_p): Likewise.
19697 (Finternal_set_alternative_font_family_alist): Intern strings.
19698 (Finternal_set_alternative_font_registry_alist): Downcase strings.
19699 (realize_default_face): Set LFACE_FOUNDRY (lface).
19700
19701 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
19702 font-driver at first.
19703
19704 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
19705
19706 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
19707
19708 * lread.c (Fload): Use xfree, not free on saved_doc_string.
19709
19710 2008-06-12 Jim Meyering <meyering@redhat.com>
19711
19712 Make unexec_free handle NULL the same way free does.
19713 * unexmacosx.c (unexec_free): Ignore a NULL argument.
19714
19715 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
19716
19717 * character.h (CHAR_TO_BYTE_SAFE): New macro.
19718 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
19719 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
19720 (WEAK_ALIAS): Simplify.
19721 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
19722 when searching a unibyte buffer.
19723
19724 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
19725
19726 * xfns.c (Fx_select_font): Rename from x-font-dialog.
19727
19728 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
19729
19730 * w32font.c: Include ctype.h.
19731
19732 2008-06-11 Jason Rumney <jasonr@gnu.org>
19733
19734 * w32font.c (w32font_encode_char): Detect missing glyphs that are
19735 misreported as space.
19736 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
19737 as aliases for registry iso10646-1.
19738
19739 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
19740
19741 * buffer.c (clone_per_buffer_values): Skip `name'.
19742
19743 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
19744
19745 * font.c (font_parse_fcname): Fix last change; accept decimal
19746 points in font size.
19747
19748 2008-06-10 Jason Rumney <jasonr@gnu.org>
19749
19750 * w32uniscribe.c (add_opentype_font_name_to_list):
19751 Skip non unicode fonts.
19752
19753 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
19754
19755 * xfns.c (Fx_font_dialog): New function.
19756
19757 * gtkutil.c (xg_dialog_response_cb): Rename from
19758 xg_file_response_callback.
19759 (pop_down_dialog): Rename from pop_down_file_dialog.
19760 (xg_get_file_name): Callers changed.
19761 (xg_get_font_name): New function.
19762
19763 * gtkutil.h (xg_get_font_name): Insert prototype.
19764
19765 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
19766
19767 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
19768 x_underline_minimum_display_offset.
19769 (syms_of_xdisp): Declare it here rather than in xterm.c.
19770 * dispextern.h (underline_minimum_offset): Declare it.
19771 * w32term.c (x_draw_glyph_string): Use it.
19772 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
19773 (syms_of_xterm): Don't declare it any more.
19774 (x_draw_glyph_string): Adjust to the new name.
19775
19776 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
19777
19778 * xterm.c (x_underline_minimum_display_offset): New var.
19779 (x_draw_glyph_string): Use it.
19780 (syms_of_xterm): Declare it.
19781
19782 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
19783
19784 * font.c (font_parse_fcname): Accept GTK-style font names too.
19785
19786 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
19787
19788 * dired.c (file_name_completion): Don't return t if the match is exact
19789 but with different capitalization.
19790 * minibuf.c (Ftry_completion): Simplify.
19791
19792 * window.c (Vwindow_point_insertion_type): New var.
19793 (set_window_buffer): Use it.
19794 (syms_of_window): Init and export it to Lisp.
19795
19796 2008-06-10 Kenichi Handa <handa@m17n.org>
19797
19798 * font.h (font_intern_prop): Prototype adjusted.
19799
19800 * font.c (font_intern_prop): New arg force_symbol.
19801 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
19802 Adjust for the change of font_intern_prop.
19803
19804 * ftfont.c (ftfont_pattern_entity):
19805 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
19806 (w32_registry):
19807 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
19808 the change of font_intern_prop.
19809
19810 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
19811
19812 * w32menu.c (digest_single_submenu): Declare extern.
19813
19814 2008-06-09 Jason Rumney <jasonr@gnu.org>
19815
19816 * w32term.c (x_make_frame_visible): Use alternate restore flags.
19817
19818 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
19819 (parse_single_submenu): Remove.
19820 (digest_single_submenu): Remove.
19821 (syms_of_w32menu): Don't initialise variables that have moved
19822 to menu.c.
19823 (set_frame_menubar): Sync with version in xmenu.c.
19824 (w32_menu_show): Sync with xmenu_show in xmenu.c.
19825
19826 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
19827 Make static again.
19828
19829 2008-06-09 Jason Rumney <jasonr@gnu.org>
19830
19831 Changes to w32 files related to the move of common menu code
19832 to menu.c on 2008-06-08 by Chong Yidong.
19833
19834 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
19835 defs to w32gui.h.
19836 (single_keymap_panes, push_menu_item, push_menu_pane):
19837 Make globally visible.
19838
19839 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
19840 (local_free, malloc_widget_value, free_widget_value)
19841 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
19842 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
19843 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
19844 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
19845 (menu_items, menu_items_allocated, menu_items_used)
19846 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
19847 (init_menu_items, finish_menu_items, discard_menu_items)
19848 (grow_menu_items, push_submenu_start, push_submenu_end)
19849 (push_left_right_boundary, push_menu_pane, push_menu_item)
19850 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
19851 (free_menubar_widget_tree_value, parse_single_submenu)
19852 (update_submenu_strings): Remove functions.
19853 (xmalloc_widget_value): Remove and declare extern.
19854
19855 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
19856 (OBJ1): Build it.
19857
19858 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
19859 (local_heap, local_alloc, local_free, malloc_widget_value)
19860 (free_widget_value): Define here.
19861
19862 2008-06-09 Kenichi Handa <handa@m17n.org>
19863
19864 * font.h (Qascii_0): Extern it.
19865
19866 * font.c (Qascii_0): New variable.
19867 (syms_of_font): DEFSYM it.
19868 (font_open_by_name): If the registry "iso8859-1" fails, try also
19869 "ascii-0".
19870
19871 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
19872
19873 2008-06-08 Kenichi Handa <handa@m17n.org>
19874
19875 * .gdbinit (xfont): New command.
19876
19877 2008-06-08 Andreas Schwab <schwab@suse.de>
19878
19879 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
19880 * Makefile.in (menu.o): Update dependencies.
19881
19882 * Makefile.in (obj): Always add menu.o.
19883 * emacs.c (main): Always call syms_of_menu.
19884 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
19885
19886 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
19887
19888 * Makefile.in: Compile menu.c.
19889
19890 * lisp.h: Declare syms_of_menu.
19891
19892 * emacs.c (main): Call syms_of_menu.
19893
19894 * keyboard.h: Relocate platform-independent menu definitions from
19895 xmenu.c.
19896
19897 * menu.c: New file. Relocate platform-independent menu
19898 definitions from xmenu.c. Suggested by Adrian Robert.
19899
19900 * xmenu.c: Remove platform-independent menu definitions.
19901 (menu_items, menu_items_inuse, menu_items_allocated)
19902 (menu_items_used, menu_items_n_panes)
19903 (menu_items_submenu_depth): Move to keyboard.h.
19904 (init_menu_items, finish_menu_items, unuse_menu_items)
19905 (discard_menu_items, restore_menu_items, save_menu_items)
19906 (grow_menu_items, push_submenu_start, push_submenu_end)
19907 (push_left_right_boundary, push_menu_pane, push_menu_item)
19908 (keymap_panes, single_keymap_panes, single_menu_item)
19909 (list_of_panes, list_of_items, find_and_call_menu_selection)
19910 (xmalloc_widget_value, free_menubar_widget_value_tree)
19911 (parse_single_submenu, digest_single_submenu)
19912 (update_submenu_strings): Move to menu.c.
19913
19914 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
19915
19916 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
19917
19918 2008-06-06 Miles Bader <miles@gnu.org>
19919
19920 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
19921 face, not frame default.
19922
19923 2008-06-05 Martin Rudalics <rudalics@gmx.at>
19924
19925 * window.c (pop_up_windows, pop_up_frames)
19926 (display_buffer_reuse_frames, Vpop_up_frame_function)
19927 (Vdisplay_buffer_function, Veven_window_heights)
19928 (Vspecial_display_buffer_names, Vspecial_display_regexps)
19929 (Vspecial_display_function, Vsame_window_buffer_names)
19930 (Vsame_window_regexps, split_height_threshold)
19931 (Vsplit_window_preferred_function): Move those vars to window.el.
19932 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
19933 (Fdisplay_buffer): Move those functions to window.el.
19934 (syms_of_window): Remove corresponding declarations.
19935 (display_buffer): New function.
19936 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
19937 * dispnew.c (Flast_nonminibuf_frame): New function.
19938 * buffer.c (Fpop_to_buffer): Move to window.el.
19939
19940 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
19941
19942 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
19943
19944 2008-06-05 Kenichi Handa <handa@m17n.org>
19945
19946 * coding.c (detect_coding): Fix previous change.
19947 (detect_coding_system): Likewise.
19948
19949 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
19950
19951 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
19952
19953 * keymap.c (Vminibuffer_local_filename_must_match_map):
19954 Rename from Vminibuffer_local_must_match_filename_map.
19955 (syms_of_keymap):
19956 * minibuf.c (Fcompleting_read): Adjust accordingly.
19957 * commands.h: Rename declaration as well.
19958
19959 2008-06-05 Kenichi Handa <handa@m17n.org>
19960
19961 * font.c (Ffont_spec): Don't use font_parse_family_registry for
19962 family name.
19963 (Ffont_put): Likewise.
19964
19965 * fontset.c (fontset_find_font): Call font_open_for_lface with the
19966 current font-spec.
19967
19968 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
19969 is unspecified.
19970
19971 * xfaces.c (realize_x_face): If the font-related face attributes
19972 are the same as those of default face, realize a new fontset from
19973 default->fontset.
19974 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
19975
19976 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
19977
19978 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
19979 (move_it_in_display_line): New wrapper.
19980
19981 * window.c (window_scroll_pixel_based_preserve_x)
19982 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
19983 (window_scroll_pixel_based, window_scroll_line_based):
19984 Use them to preserve column positions.
19985 (syms_of_window): Initialize them.
19986
19987 * indent.c (Fvertical_motion): Extend first arg to allow passing an
19988 (HPOS . VPOS) pair.
19989
19990 * dispextern.h (move_it_in_display_line): Declare.
19991
19992 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
19993
19994 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
19995 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
19996 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
19997
19998 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
19999
20000 * window.c (Fset_window_parameter): Doc fix.
20001 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
20002
20003 2008-06-04 Joakim Verona <joakim@verona.se>
20004
20005 * window.h (struct window): Add new member window_parameters.
20006
20007 * window.c (Fwindow_parameters, Fwindow_parameter)
20008 (Fset_window_parameter): New defuns.
20009 (syms_of_window): Defsubr the new defuns.
20010 (make_window): Initialize window_parameters to nil.
20011
20012 2008-06-04 John Paul Wallington <jpw@pobox.com>
20013
20014 * eval.c (Fdefmacro): Doc fix.
20015
20016 2008-06-04 Kenichi Handa <handa@m17n.org>
20017
20018 * coding.c (detect_coding): Fix handling of coding->head_ascii.
20019 Be sure to call setup_coding_system when we find a proper coding system.
20020 (detect_coding_system): Fix handling of coding->head_ascii.
20021
20022 2008-06-03 Andreas Schwab <schwab@suse.de>
20023
20024 * font.c (font_prop_validate_spacing): Fix last change.
20025
20026 2008-06-03 Kenichi Handa <handa@m17n.org>
20027
20028 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
20029 (font_parse_fcname): Fix handling of unknown key.
20030
20031 * xfont.c (xfont_list): Try an alias.
20032
20033 * charset.c (char_charset): Return NULL if the arg charset_list is
20034 specified and C doesn't belong to any of them.
20035
20036 2008-06-02 Chip Coldwell <coldwell@redhat.com>
20037
20038 * font.c (font_pixel_size): Don't take cdr of an integer.
20039
20040 2008-06-02 Jim Meyering <meyering@redhat.com>
20041
20042 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
20043 * alloc.c (xfree): Return right away for a NULL arg.
20044 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
20045 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
20046 * mac.c (create_apple_event_from_event_ref): Likewise.
20047 (create_apple_event_from_drag_ref, cfstring_create_normalized):
20048 Likewise.
20049 * doprnt.c (doprnt1): Likewise.
20050 * frame.c (frame): Likewise.
20051 * keyboard.c (wipe_kboard): Likewise.
20052 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
20053 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
20054 * term.c (tty_default_color_capabilities, maybe_fatal)
20055 (delete_tty): Likewise.
20056 * w16select.c (string): Likewise.
20057 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
20058 * w32bdf.c (w32_free_bdf_font): Likewise.
20059 * w32fns.c (w32_unload_font): Likewise.
20060 * w32font.c (w32font_close): Likewise.
20061 * window.c (size_window): Likewise.
20062 * xselect.c (receive_incremental_selection): Likewise.
20063 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
20064 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
20065 * w32.c (stat): Likewise.
20066
20067 Remove useless if-before-free tests.
20068 * editfns.c (Fset_time_zone_rule): Likewise.
20069 * lread.c (nosuffix): Likewise.
20070 * ralloc.c (get_bloc): Likewise.
20071 * regex.c (reg_free): Likewise.
20072 * xftfont.c (xftfont_open, xftfont_close): Likewise.
20073 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
20074 * xsmfns.c (smc_save_yourself_CB): Likewise.
20075
20076 2008-06-02 Kenichi Handa <handa@m17n.org>
20077
20078 * font.c (font_find_for_lface): Handle float font size.
20079 (font_open_for_lface): Likewise.
20080
20081 * xfaces.c (x_supports_face_attributes_p): Check face->font before
20082 comparing the properties.
20083
20084 2008-06-01 Jason Rumney <jasonr@gnu.org>
20085
20086 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
20087 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
20088 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
20089 Don't add empty script list.
20090 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
20091
20092 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
20093
20094 * Makefile.in (dot, dotdot): Remove, update users.
20095 ".." has been used elsewhere in the file for a long time.
20096 (LIBXT_STATIC): Remove conditional based on unused variable.
20097
20098 2008-06-01 Miles Bader <miles@gnu.org>
20099
20100 * xfaces.c (Vface_remapping_alist): New variable.
20101 (syms_of_xfaces): Initialize it.
20102 (enum named_merge_point_kind): New type.
20103 (struct named_merge_point): Add `named_merge_point_kind' field.
20104 (push_named_merge_point): Make cycle detection respect different
20105 named-merge-point kinds.
20106 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
20107 Remove face-name alias resolution.
20108 (lface_from_face_name): New definition using
20109 `lface_from_face_name_no_resolve'.
20110 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
20111 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
20112 (get_lface_attributes): New definition that layers face-remapping on
20113 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
20114 (lookup_basic_face): New function.
20115 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
20116 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
20117 `get_lface_attributes'.
20118 (face_at_buffer_position): Use `lookup_basic_face' to lookup
20119 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
20120 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
20121
20122 * xdisp.c (init_iterator): Pass base_face_id through
20123 `lookup_basic_face' when we actually use it as a face-id.
20124 (handle_single_display_prop): Use `lookup_basic_face' to lookup
20125 DEFAULT_FACE_ID.
20126
20127 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
20128 lookup the initial face-id.
20129
20130 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
20131
20132 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
20133
20134 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
20135 (Fremove_text_properties): Fix typos in docstrings.
20136
20137 2008-05-31 Kenichi Handa <handa@m17n.org>
20138
20139 * font.c (font_list_entities): Fix the car part of data to be
20140 stored in the cache.
20141
20142 * ftfont.c (ftfont_font_format): Don't use strcasestr.
20143
20144 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20145
20146 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
20147 Add a `test' argument so another predicate than `equal' can be used.
20148 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
20149 (map_char_table): Remove unused vars `c' and `i'.
20150 * lisp.h (Foptimize_char_table): Adjust declaration.
20151 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
20152
20153 2008-05-30 Kenichi Handa <handa@m17n.org>
20154
20155 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
20156 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
20157 defined.
20158
20159 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
20160
20161 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
20162 (Fmake_variable_frame_local): Disallow mixing buffer-local and
20163 frame-local settings for the same variable.
20164
20165 2008-05-30 Kenichi Handa <handa@m17n.org>
20166
20167 * fontset.c (Ffont_info): Move to font.c.
20168 (syms_of_fontset): Delete defsubr of Sfont_info.
20169
20170 * font.c (font_style_to_value, font_score): Delete casting of the
20171 args to xstcasecmp.
20172 (register_font_driver): Increment num_font_drivers only when
20173 registering the driver globally.
20174 (Ffont_info): Move from fontset.c. Handle a font object too.
20175 (syms_of_font): Defsubr Sfont_info.
20176
20177 2008-05-29 Kenichi Handa <handa@m17n.org>
20178
20179 * coding.h (enum define_coding_utf8_arg_index): New enum.
20180 (enum coding_attr_index): Change coding_attr_utf_16_bom to
20181 coding_attr_utf_bom.
20182 (enum utf_bom_type): Rename from utf_16_bom_type.
20183 (struct utf_16_spec): Adjust for the above change.
20184 (struct coding_system): Add utf_8_bom in `spec' union.
20185
20186 * coding.c (CODING_UTF_8_BOM): New macro.
20187 (enum coding_category): Delete coding_category_utf_8, add
20188 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
20189 coding_category_utf_8_sig.
20190 (CATEGORY_MASK_UTF_8): Delete it.
20191 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
20192 (CATEGORY_MASK_UTF_8_SIG): New macros.
20193 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
20194 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
20195 CATEGORY_MASK_UTF_8_SIG.
20196 (CATEGORY_MASK_UTF_8): New macro.
20197 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
20198 (detect_coding_utf_8): Check BOM.
20199 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
20200 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
20201 (encode_coding_utf_16): Likewise.
20202 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
20203 (detect_coding, detect_coding_system): Handle utf-8-auto.
20204 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
20205 (syms_of_coding): Fix setting up of Vcoding_category_table.
20206
20207 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
20208
20209 * process.c (Faccept_process_output): If `millisec' is non-nil,
20210 `seconds' default to 0.
20211 (wait_reading_process_output): Also return non-nil if we read output
20212 from a non-running process.
20213
20214 2008-05-29 Jason Rumney <jasonr@gnu.org>
20215
20216 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
20217 `raster' specified.
20218 (add_font_entity_to_list): Allow non-opentype truetype fonts back
20219 in the uniscribe backend, but disallow any font that has no
20220 unicode subrange support.
20221
20222 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
20223
20224 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
20225 Fix typos in docstrings.
20226
20227 2008-05-29 Kenichi Handa <handa@m17n.org>
20228
20229 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
20230 (Fx_family_fonts): Set frame correctly.
20231
20232 2008-05-28 Jason Rumney <jasonr@gnu.org>
20233
20234 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
20235
20236 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
20237
20238 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
20239 calling build_annotations.
20240
20241 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
20242
20243 * coding.c (Fdecode_coding_region, Fencode_coding_region)
20244 (Fencode_coding_string):
20245 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
20246 <latin-extra-code-table>: Fix typos in docstrings.
20247 (syms_of_coding) <coding-system-alist>: Doc fix.
20248 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
20249
20250 2008-05-28 Kenichi Handa <handa@m17n.org>
20251
20252 * fontset.c (Ffont_info): Don't call font_close_object.
20253
20254 * font.c (font_parse_family_registry): Use Ffont_put to validate
20255 foundry and family.
20256 (font_delete_unmatched): Don't check spacing.
20257 (font_list_entities): Add spacing to the spec to list fonts.
20258
20259 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
20260 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
20261
20262 * coding.c (encode_coding_raw_text): Fix previous change.
20263 (encode_coding_object): When the dst_object is a buffer and is
20264 different from src_object, move gap to PT.
20265
20266 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20267
20268 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
20269
20270 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20271
20272 * coding.c (encode_coding_raw_text): Set coding->produced_char for
20273 all branches. Compute it differently.
20274
20275 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
20276
20277 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
20278
20279 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
20280 into "else if () ... else ...".
20281
20282 2008-05-27 Jason Rumney <jasonr@gnu.org>
20283
20284 * w32font.c (w32font_open_internal): Determine if glyph indices
20285 are likely to work here.
20286
20287 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
20288
20289 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
20290 draw overlap glyphs with appropriate highlighting.
20291
20292 2008-05-27 Kenichi Handa <handa@m17n.org>
20293
20294 * xfont.c (xfont_open): Fix calculation of font->average_width.
20295
20296 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20297
20298 * casefiddle.c (casify_object): Try to guess better whether the
20299 argument is a byte or a char.
20300
20301 2008-05-26 Andreas Schwab <schwab@suse.de>
20302
20303 * xselect.c (x_reply_selection_request): Properly handle format == 32.
20304 Always send multiples of format size.
20305
20306 * xterm.c (x_set_frame_alpha): Fix type mismatch.
20307
20308 2008-05-26 Jason Rumney <jasonr@gnu.org>
20309
20310 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
20311 (compute_metrics): Don't set failure if we just cleared the cache.
20312 (w32_weight_table): Remove unused variable.
20313 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
20314 backwards compatibility.
20315
20316 2008-05-25 Kenichi Handa <handa@m17n.org>
20317
20318 * w32term.c (x_draw_glyph_string):
20319 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
20320
20321 * xfaces.c: Delete unused function prototypes.
20322 (xstrlwr, font_frame): Delete them.
20323 (clear_face_cache): Delete unused variable.
20324
20325 * xftfont.c (xftfont_open): Delete unused variable.
20326 If underline_thickness is not 1, adjust underline_position.
20327
20328 * ftxfont.c (ftxfont_open): Delete unused variable.
20329
20330 * fontset.c (face_for_char): Optimize for the case of no charset
20331 property.
20332
20333 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
20334 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
20335 (otf_open, font_otf_capability, generate_otf_features)
20336 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
20337 Comment out by surrounding "#if 0" and "#endif" for the moment.
20338 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
20339 (syms_of_font): Codes for accessing above commented out.
20340
20341 2008-05-24 Eli Zaretskii <eliz@gnu.org>
20342
20343 * w32proc.c: Include dispextern.h.
20344
20345 * w32.c: Include dispextern.h.
20346
20347 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
20348
20349 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
20350 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
20351 Fix typos in docstrings.
20352
20353 2008-05-23 Jason Rumney <jasonr@gnu.org>
20354
20355 * xsmfns.c: Remove includes that are already included by config.h.
20356
20357 2008-05-23 Kenichi Handa <handa@m17n.org>
20358
20359 * charset.c (Qemacs, charset_emacs): New variables.
20360 (char_charset): Fix for non-Unicode characters.
20361 (syms_of_charset): Define charset_emacs.
20362
20363 * w32term.c (x_draw_glyph_string): Be sure to update
20364 s->underline_thickness and s->underline_position. Be sure to draw
20365 underline within the current line area.
20366
20367 * xterm.c (x_draw_glyph_string): Be sure to update
20368 s->underline_thickness and s->underline_position. Be sure to draw
20369 underline within the current line area.
20370
20371 * fontset.c: Delete unused variables and add casting for char *
20372 throughout the file.
20373 (fontset_font): Try the fallback fonts of the current fontset
20374 before consulting the default fontset.
20375
20376 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
20377
20378 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
20379
20380 2008-05-22 Jason Rumney <jasonr@gnu.org>
20381
20382 * font.c: Don't include strings.h.
20383
20384 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
20385
20386 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
20387 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
20388 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
20389 to call xstrcasecmp.
20390
20391 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
20392
20393 * fontset.c (fs_query_fontset): Use xstrcasecmp.
20394
20395 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
20396
20397 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
20398
20399 2008-05-22 Kenichi Handa <handa@m17n.org>
20400
20401 * puresize.h (BASE_PURESIZE): Increase to 1220000.
20402
20403 * font.c (font_prop_validate_style): Adjust for the format
20404 change of font_style_table.
20405
20406 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
20407 two args.
20408
20409 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
20410 two args.
20411
20412 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
20413
20414 * minibuf.c (keys_of_minibuf): Delete.
20415 * lisp.h (keys_of_minibuf): Delete.
20416 * emacs.c (main): Don't call keys_of_minibuf.
20417
20418 2008-05-22 Kenichi Handa <handa@m17n.org>
20419
20420 * ftfont.c (ftfont_resolve_generic_family): Rename from
20421 ftfont_list_generic_family. Return a single family for each
20422 generic family.
20423 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
20424 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
20425 Call font_add_log.
20426 (ftfont_match): Call font_add_log.
20427
20428 * font.h (Ffont_xlfd_name): EXFUN adjusted.
20429 (FONT_DEBUG): Define it.
20430 (font_add_log): Extern it.
20431 (font_assert): Rename from xassert.
20432
20433 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
20434 (xfont_list_family): Call font_add_log.
20435 (xfont_match): Likewise.
20436 (memq_no_quit): Delete.
20437
20438 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
20439 call of Ffont_xlfd_name.
20440
20441 * xfaces.c (struct table_entry, slant_table, weight_table)
20442 (swidth_table): Move to font.c.
20443
20444 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
20445 xassert are changed to font_assert. Delete many unused variables.
20446 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
20447 New variables.
20448 (struct table_entry): Move from xfaces.c and modified.
20449 (weight_table, slant_table, width_table): Move from xfaces.c and
20450 contents adjusted for the change of struct table_entry.
20451 (font_style_to_value, font_style_symbolic): Adjust for the
20452 format change of font_style_table.
20453 (font_parse_family_registry): Don't overwrite existing foundry and
20454 family of font_spec.
20455 (font_score): Fix calculation of diff for sizes.
20456 (font_sort_entites): Call font_add_log.
20457 (font_delete_unmatched): Return a newly created list.
20458 (font_list_entities): Fix previous change. Call font_add_log.
20459 (font_matching_entity, font_open_entity, font_close_entity):
20460 Call font_add_log.
20461 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
20462 (Finternal_set_font_style_table): Delete.
20463 (BUILD_STYLE_TABLE): New macro.
20464 (build_style_table): New function.
20465 (Vfont_log, font_log_env_checked): New variables.
20466 (font_add_log): New function.
20467 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
20468 Declare Lisp variables "font-weight-table", "font-slant-table",
20469 "font-width-table", and "font-log". Initialize font_style_table.
20470
20471 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
20472
20473 * xterm.c (x_set_frame_alpha): Move declarations before statements.
20474
20475 2008-05-21 Seiji Zenitani <zenitani@mac.com>
20476 Ryo Yoshitake <ryo@shiftmode.net>
20477
20478 * frame.c (Qalpha): Add a new frame parameter `alpha'.
20479 (Vframe_alpha_lower_limit): New variable.
20480 (x_set_alpha): New function.
20481
20482 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
20483
20484 * xfns.c (x-create-frame, Qalpha):
20485 Initialize the frame parameter `alpha'.
20486 * xterm.c (OPAQUE, OPACITY): New.
20487 (x_set_frame_alpha): New function.
20488 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
20489
20490 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
20491 * w32fns.c (w32_frame_parm_handlers): Likewise.
20492
20493 2008-05-20 Jason Rumney <jasonr@gnu.org>
20494
20495 * w32font.c (add_font_entity_to_list): Don't add non-opentype
20496 truetype fonts to opentype list.
20497
20498 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
20499
20500 * fontset.c (Ffontset_info): Doc fix.
20501 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
20502 <ignore-relative-composition>: Fix typos in docstrings.
20503
20504 * font.c (syms-of-font) <font-encoding-alist>:
20505 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
20506 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
20507 (Ffont_otf_alternates): Doc fixes.
20508
20509 2008-05-20 Kenichi Handa <handa@m17n.org>
20510
20511 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
20512 font.h through out the file.
20513 (FONT_DRIVERS): Rename from FONTOBJ.
20514 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
20515 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
20516
20517 * emacs.c (main): Call syms_of_font unconditionally.
20518
20519 * font.h (find_font_encoding): Extern it.
20520
20521 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
20522 fontset.c.
20523 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
20524 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
20525 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
20526 only when HAVE_WINDOW_SYSTEM is defined.
20527 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
20528 when HAVE_WINDOW_SYSTEM is defined.
20529
20530 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
20531 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
20532
20533 * xfaces.c: Include font.h unconditionally.
20534 (merge_face_ref, merge_face_vectors)
20535 (Finternal_set_lisp_face_attribute): Cancel the previous change.
20536
20537 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
20538
20539 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
20540 indirect_variable.
20541 * eval.c (lisp_indirect_variable): New fun.
20542 (Fuser_variable_p): Use it.
20543
20544 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
20545
20546 * lisp.h (indirect_variable):
20547 * data.c (indirect_variable, let_shadows_buffer_binding_p):
20548 Use Lisp_Symbol pointers rather than Lisp_Object.
20549 Adjust callers.
20550 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
20551 To this end, change calling-convention.
20552
20553 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
20554 if some non-hidden buffers are selected by string&pred.
20555
20556 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
20557
20558 * process.c (wait_reading_process_output): Always check status
20559 when in batch mode.
20560
20561 2008-05-19 Kenichi Handa <handa@m17n.org>
20562
20563 * font.c (font_list_entities): Fix handling of cache.
20564 (font_matching_entity): Likewise.
20565
20566 * ftfont.c (cs_iso8859_1): Delete.
20567 (ft_face_cache): New variable.
20568 (struct ftfont_info): New member fc_charset_idx.
20569 (ftfont_build_basic_charsets): Delete.
20570 (fc_charset_table): New variable.
20571 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
20572 . FC_CHARSET_IDX) as :font-entity property in the font entity.
20573 Callers changed.
20574 (ftfont_lookup_cache, ftfont_get_charset): New functions.
20575 (ftfont_spec_pattern): New argument fc_charset_idx.
20576 Check registry more rigidly. Change callers.
20577 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
20578 change of :font-entity property of the font.
20579
20580 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
20581 property of the font.
20582
20583 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
20584
20585 * coding.c (Fcoding_system_p): Rename argument to match docstring.
20586 (Funencodable_char_position, Fcheck_coding_systems_region)
20587 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
20588 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
20589 (Ffind_operation_coding_system, Fset_coding_system_priority)
20590 (Fcoding_system_eol_type): Doc fixes.
20591
20592 2008-05-17 Glenn Morris <rgm@gnu.org>
20593
20594 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
20595
20596 2008-05-16 Eli Zaretskii <eliz@gnu.org>
20597
20598 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
20599 and st_gid.
20600
20601 * frame.c (Fdelete_frame): Don't call font_update_drivers if
20602 HAVE_WINDOW_SYSTEM is not defined.
20603
20604 * xfaces.c (merge_face_ref, merge_face_vectors)
20605 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
20606 HAVE_WINDOW_SYSTEM is defined.
20607 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
20608
20609 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
20610
20611 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
20612
20613 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20614
20615 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
20616
20617 2008-05-15 Kenichi Handa <handa@m17n.org>
20618
20619 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
20620 preference.
20621
20622 2008-05-15 Glenn Morris <rgm@gnu.org>
20623
20624 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
20625
20626 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
20627
20628 * fns.c (init_fns): Don't initialize weak_hash_tables here.
20629 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
20630
20631 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
20632
20633 2008-05-15 Kenichi Handa <handa@m17n.org>
20634
20635 * ftfont.c (ftfont_list): Downcase family name to check generic
20636 families.
20637
20638 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
20639 font-spec for QCfont value.
20640
20641 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
20642 buffer. Check the return value of it.
20643
20644 2008-05-14 Jason Rumney <jasonr@gnu.org>
20645
20646 * w32term.c (w32_get_glyph_overhangs): Remove.
20647 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
20648
20649 2008-05-14 Kenichi Handa <handa@m17n.org>
20650
20651 * font.c (font_prop_validate): Make nil a valid value.
20652 (font_clear_cache): Check if the cached vector of entities is nil
20653 or not.
20654
20655 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20656
20657 * emacs.c (main_thread): Conditionalize on
20658 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20659 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
20660
20661 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
20662 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
20663 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
20664
20665 2008-05-14 Kenichi Handa <handa@m17n.org>
20666
20667 * coding.c (detect_coding_iso_2022): Ignore a coding category that
20668 has no corresponding coding system.
20669
20670 2008-05-14 Jason Rumney <jasonr@gnu.org>
20671
20672 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
20673
20674 * w32font.h (w32font_open_internal): Update declaration.
20675
20676 * w32font.c (w32font_open_internal): Change last argument from
20677 w32font_info struct to font object. Fill in font object from
20678 font_entity. Get Outline metrics if possible. Use them to
20679 calculate underline position and thickness. Use xlfd name as name
20680 property. Don't set codepage.
20681 (w32font_open): Pass font_object to w32font_open_internal. Don't
20682 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
20683 (w32font_draw): Use s->font.
20684 (clear_cached_metrics): Don't clear non-existent blocks.
20685
20686 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
20687 font was not found.
20688 (x_draw_glyph_string): Use underline position and thickness from font.
20689
20690 * w32uniscribe.c (uniscribe_open): Pass font_object to
20691 w32font_open_internal.
20692
20693 2008-05-14 Kenichi Handa <handa@m17n.org>
20694
20695 These changes are to delete all legacy font-handling codes, and
20696 make Emacs use only font-backends.
20697
20698 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
20699 (frame.o, image.o, print.o): Depend on $(FONTSRC).
20700
20701 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
20702
20703 * charset.h (Vcharset_non_preferred_head)
20704 (Vcurrent_iso639_language): Extern them.
20705
20706 * charset.c (Vcharset_non_preferred_head): New variable.
20707 (Vcurrent_iso639_language): New variable.
20708 (syms_of_charset): Declare it as a Lisp variable.
20709 (char_charset): Don't check non preferred charsets. As a last
20710 resort, return charset_unicode.
20711 (Fset_charset_priority): Update Vcharset_non_preferred_head.
20712
20713 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
20714 conditionals. Don't check enable_font_backend. Delete all codes
20715 used only when USE_FONT_BACKEND is not defined.
20716
20717 * dispextern.h (struct glyph_string): Change type of `font' to
20718 `struct font *'.
20719 (struct glyph_string): New member underline_position and
20720 underline_thickness.
20721 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
20722 (struct face): Change type of `font' to `struct font *'.
20723 Remove members `font_name', `font_info_id'.
20724 (per_char_metric, encode_char): Delete externs.
20725 (calc_pixel_width_or_height): Adjust the prototype.
20726
20727 * emacs.c (enable_font_backend): Delete extern.
20728 (main): Don't set enable_font_backend. Don't check the command
20729 line argument "-disable-font-backend".
20730
20731 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
20732 (enum font_property_index): New members FONT_DPI_INDEX,
20733 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
20734 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
20735 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
20736 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
20737 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
20738 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
20739 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
20740 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
20741 (struct font_spec, struct font_entity): New structs.
20742 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
20743 (struct font): Many members from old "struct font_info" moved to
20744 here. Members font and entity deleted.
20745 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
20746 the new font-related objects.
20747 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
20748 (CHECK_FONT_GET_OBJECT): Likewise.
20749 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
20750 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
20751 (struct font_driver): New members case_sensitive anc check.
20752 Type of the member list and open changed.
20753 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
20754 (font_symbolic_width, font_find_object, font_get_spec)
20755 (font_set_lface_from_name): Delete extern.
20756 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
20757
20758 * font.c: Include <strings.h>.
20759 (enable_font_backend): Delete it.
20760 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
20761 (CHECK_VALIDATE_FONT_SPEC): Delete it.
20762 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
20763 (null_string): Delete it.
20764 (null_vector): Make it static.
20765 (font_family_alist): Delete it.
20766 (Qnormal): Extern it.
20767 (QCextra, QClanguage): Delete it.
20768 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
20769 (font_make_spec, font_make_entity, font_make_object)
20770 (font_intern_prop): Rename from intern_downcase. Don't downcase
20771 the string. Callers changed.
20772 (font_pixel_size): Adjust for the format change of font-related
20773 objects.
20774 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
20775 (font_style_to_value, font_style_symbolic): New function.
20776 (build_font_family_alist): Delete it.
20777 (font_registry_charsets): Use Fassoc_string instead of
20778 assq_no_quit.
20779 (font_prop_validate_symbol): Don't return null_string.
20780 (font_prop_validate_style): Adjust for the change of
20781 style-related values in a font vector.
20782 (font_property_table): Delete entries for QClanguage and
20783 QCantialias, add entries for QCavgwidth.
20784 (get_font_prop_index): Delete the 2nd argument FROM.
20785 (font_prop_validate): Arguments changed.
20786 (font_put_extra): Adjust for the change of font-related objects.
20787 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
20788 (font_parse_fcname, font_unparse_fcname)
20789 (font_prepare_composition): Likewise.
20790 (font_parse_family_registry): Rename from font_merge_old_spec.
20791 (otf_open): Delete the 1st arg entity.
20792 (font_otf_capability): Adjust for the above change.
20793 (font_score): New arg alternate_families. Adjusted for the change
20794 of font-related objects.
20795 (font_sort_entites): New arg best_only.
20796 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
20797 Delete them.
20798 (font_match_p): Check alternate families.
20799 (font_find_object): Delete it.
20800 (font_check_object): New function.
20801 (font_clear_cache): Adjust for the change of font-related objects.
20802 (font_delete_unmatched): New arg.
20803 (font_list_entities): Call font_driver->list with a spec that
20804 doesn't specify style-related properties.
20805 (font_matching_entity): Arguments changed. Caller changed.
20806 (font_open_entity): Adjust for the change of font-related objects.
20807 (font_close_object, font_has_char, font_encode_char)
20808 (font_get_name, font_get_spec): Likewise.
20809 (font_spec_from_name, font_clear_prop, font_update_lface):
20810 New functions.
20811 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
20812 (font_prepare_for_face, font_done_for_face, font_open_by_name)
20813 (font_at): Adjust for the change of font-related objects.
20814 (font_range): New function.
20815 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
20816 (Ffont_xlfd_name): Adjust for the change of font-related objects.
20817 (Fcopy_font_spec, Fmerge_font_spec): New function.
20818 (Ffont_family_list): Rename from list-families.
20819 (Finternal_set_font_style_table): Arguments changed.
20820 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
20821 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
20822 change of font-related objects.
20823 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
20824
20825 * fontset.h (struct font_info): Delete it. Most members go to
20826 struct font.
20827 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
20828 (enum FONT_SPEC_INDEX): Delete it.
20829 (font_info, list_fonts_func, load_font_func, query_font_func)
20830 (set_frame_fontset_func, find_ccl_program_func)
20831 (get_font_repertory_func, new_fontset_from_font_name):
20832 Delete externs.
20833 (fontset_from_font_name): Extern it.
20834 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
20835 (FONT_INFO_FROM_FACE): Deleted.
20836 (face_for_font): Adjust prototype.
20837
20838 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
20839 conditionals. Don't check enable_font_backend. Delete all codes
20840 used only when USE_FONT_BACKEND is not defined.
20841 (get_font_info_func, list_font_func, load_font_func)
20842 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
20843 (get_font_repertory_func): Delete them.
20844 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
20845 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
20846 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
20847 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
20848 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
20849 (fontset_compare_rfontdef): New function.
20850 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
20851 rfont-defs by qsort. Adjusted for the change of font-group vector.
20852 (load_font_get_repertory): Deleted.
20853 (fontset_find_font): Use new macros to ref/set elements of
20854 font-def and rfont-def.
20855 (fontset_font): Fix the timing of remembering that no font for C.
20856 (free_face_fontset): Do nothing if the face has no fontset.
20857 (face_suitable_for_char_p): Use new macros to ref/set elements of
20858 rfont-def.
20859 (face_for_char): Likewise. Call face_for_char with font_object.
20860 (fs_load_font): Delete. Delete #pragma surrounding it.
20861 (fs_query_fontset): Use strcasecmp instead of strcmp.
20862 (generate_ascii_font_name): Adjust for the format change of
20863 font-spec.
20864 (Fset_fontset_font): Likewise. Use new macros to set elements of
20865 font-def.
20866 (Fnew_fontset): Use font_unparse_xlfd to generate
20867 FONTSET_ASCII (fontset).
20868 (new_fontset_from_font_name): Deleted.
20869 (fontset_from_font): Rename from new_fontset_from_font. Check if
20870 a fontset is already created for the font. FIx updating of
20871 Vfontset_alias_alist.
20872 (fontset_ascii_font): Deleted.
20873 (Ffont_info): Adjust for the format change of font-spec.
20874 (Finternal_char_font): Likewise.
20875 (Ffontset_info): Likewise.
20876 (syms_of_fontset): Don't check load_font_func.
20877
20878 * fns.c (internal_equal): Handle PREV_FONT.
20879
20880 * frame.h: Delete USE_FONT_BACKEND conditional.
20881
20882 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
20883 conditionals. Don't check enable_font_backend. Delete all codes
20884 used only when USE_FONT_BACKEND is not defined.
20885 (x_set_font): Call x_new_font, not x_new_fontset2.
20886 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
20887 already set for the frame.
20888
20889 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
20890 Make a font-entity by font_make_entity. Use font_intern_prop instead
20891 of intern_downcase. Use FONT_SET_STYLE to set a style-related
20892 font property. If a font is scalable, set avgwidth property to 0.
20893 Set font-entity property by font_put_extra.
20894 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
20895 (ffont_driver): Adjust for the change of struct font_driver.
20896 (ftfont_spec_pattern): New function.
20897 (ftfont_list): Return a list, not vector.
20898 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
20899 (ftfont_list_family): Don't downcase names.
20900 (ftfont_free_entity): Deleted.
20901 (ftfont_open): Return a font-object. Adjusted for the change of
20902 struct font. Get underline_thickness and underline_position from
20903 font property. Don't update dpyinfo->smallest_font_height and
20904 dpyinfo->smallest_char_width.
20905 (ftfont_close): Don't free `struct font'.
20906 (ftfont_has_char): Adjust for the format change of font-entity.
20907 (ftfont_encode_char, ftfont_text_extents): Likewise.
20908
20909 * ftxfont.c (ftxfont_list): Return a list, not vector.
20910 (ftxfont_open): Return a font-object. Adjusted for the change of
20911 struct font. Get underline_thickness and underline_position from
20912 font property. Don't update dpyinfo->smallest_font_height and
20913 dpyinfo->smallest_char_width.
20914 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
20915 (ftxfont_draw): Adjust for the change of struct font.
20916
20917 * image.c (image_ascent): Don't include "charset.h".
20918 Include "character.h" and "font.h".
20919
20920 * lisp.h (enum pvec_type): New member PREV_FONT.
20921 (Fassoc_string): EXFUN it.
20922
20923 * print.c: Include font.h.
20924 (print_object): Handle font-related objects.
20925
20926 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
20927 conditionals. Don't check enable_font_backend. Delete all codes
20928 used only when USE_FONT_BACKEND is not defined.
20929 (handle_auto_composed_prop): Do nothing if it->f is not on a
20930 window system. Check how many following characters can be
20931 displayed by the same font.
20932 (calc_pixel_width_or_height): Type of the 4th arg is changed to
20933 'struct font *'.
20934 (get_char_face_and_encoding): Assign the whole encoding task to
20935 the `encode-char' method of a font driver.
20936 (fill_composite_glyph_string): Adjust for the change of `struct
20937 face' and `struct glyph_string'.
20938 (fill_glyph_string): Likewise.
20939 (get_per_char_metric): Arguments changed.
20940 (x_get_glyph_overhangs): Adjust for the change of `struct face'
20941 and `struct glyph_string'.
20942 (produce_stretch_glyph, calc_line_height_property)
20943 (x_produce_glyphs): Likewise.
20944
20945 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
20946 conditionals. Don't check enable_font_backend. Delete all codes
20947 used only when USE_FONT_BACKEND is not defined.
20948 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
20949 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
20950 (Qp): Extern them.
20951 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
20952 Deleted.
20953 (struct font_name): Deleted.
20954 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
20955 (compare_fonts_by_sort_order): New function.
20956 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
20957 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
20958 Deleted.
20959 (Fx_family_fonts): Use font_list_entities, and sort fonts by
20960 compare_fonts_by_sort_order.
20961 (Fx_font_family_list): Call Ffont_family_list.
20962 (face_numeric_value, face_numeric_weight, face_numeric_slant)
20963 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
20964 (face_symbolic_slant, face_symbolic_swidth)
20965 (split_font_name_into_vector, build_font_name_from_vector)
20966 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
20967 (font_rescale_ratio, split_font_name, build_font_name)
20968 (free_font_names, sort_fonts, x_face_list_fonts)
20969 (face_font_available_p, sorted_font_list, cmp_font_names)
20970 (font_list_1, concat_font_list, font_list, remove_duplicates):
20971 Deleted.
20972 (Fx_list_fonts): Use Ffont_list.
20973 (LFACE_AVGWIDTH): Deleted.
20974 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
20975 by FONTP.
20976 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
20977 (set_lface_from_font_name): Delete it.
20978 (set_lface_from_font): Rename from
20979 set_lface_from_font_and_fontset. Caller changed. Don't set
20980 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
20981 for face.
20982 (merge_face_vectors): Copy font-spec if necessary.
20983 Clear properties of the font-spec if necessary.
20984 (merge_face_ref): Clear properties of the font-spec if necessary.
20985 (Finternal_set_lisp_face_attribute): Likewise.
20986 (set_font_frame_param): Use font_load_for_lface to load a
20987 font-object, and call Fmodify_frame_parameters with it.
20988 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
20989 font name by Ffont_xlfd_name.
20990 (Finternal_lisp_face_attribute_values): Don't check QCweight,
20991 QCslant, and QCwidth.
20992 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
20993 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
20994 Compare fonts by EQ.
20995 (lookup_non_ascii_face): Deleted.
20996 (face_for_font): The 2nd argument changed.
20997 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
20998 Check atomic font properties by case insensitive.
20999 (realize_non_ascii_face): Set face->overstrike correctly.
21000 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
21001 (dump_realized_face): Get font name from
21002 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
21003
21004 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
21005 conditionals. Don't check enable_font_backend. Delete all codes
21006 used only when USE_FONT_BACKEND is not defined.
21007 (xic_create_xfontset): Original code deleted and renamed from
21008 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
21009 (x_make_gc): Don't set GCFont in GCs.
21010 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
21011 opened by "fixed".
21012 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
21013 find_ccl_program_func, query_font_func, set_frame_fontset_func,
21014 get_font_repertory_func.
21015
21016 * xfont.c: Include <stdlib.h> and "ccl.h".
21017 (struct xfont_info): New structure.
21018 (xfont_query_font): Deleted.
21019 (xfont_find_ccl_program): Rename from x_find_ccl_program and
21020 moved from xterm.c.
21021 (xfont_driver): Adjust for the change of struct font_driver.
21022 (compare_font_names): New function.
21023 (xfont_list_pattern): Sort font names case insensitively.
21024 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
21025 (xfont_list): Return a list, not vector.
21026 (xfont_match): If the font doesn't have QCname property, generate
21027 a name from the other font properties.
21028 (xfont_open): Return a font-object. Adjusted for the change of
21029 struct font. Get underline_thickness and underline_position from
21030 font property. Don't update dpyinfo->smallest_font_height and
21031 dpyinfo->smallest_char_width.
21032 (xfont_close): Don't free struct font.
21033 (xfont_prepare_face): Adjust for the change of struct font.
21034 (xfont_done_face): Deleted.
21035 (xfont_has_char): Adjust for the change of struct font.
21036 (xfont_encode_char, xfont_draw): Likewise.
21037 (xfont_check): New function.
21038
21039 * xftfont.c (xftfont_list): Adjust for the change of `list'
21040 callback function.
21041 (xftfont_match): Adjust for the format change of font-entity.
21042 (xftfont_open): Adjust for the format change of font-entity and
21043 font-object. Adjusted for the change of struct font. Return a
21044 font-object. Don't update dpyinfo->smallest_font_height and
21045 dpyinfo->smallest_char_width.
21046 (xftfont_close): Block input while calling XftFontClose.
21047 (xftfont_prepare_face): Don't block input while calling
21048 xftfont_get_colors. Adjusted for the change of struct font.
21049 (xftfont_shape): Return value of error case fixed.
21050
21051 * xrdb.c (x_load_resources): Don't setup a fontset resource.
21052
21053 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
21054 conditionals.
21055 (FONT_WIDTH): Return (f)->max_width.
21056 (struct x_display_info): Delete member `font'.
21057 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
21058 (x_find_ccl_program, x_get_font_repertory): Delete externs.
21059 (struct x_output): Change type of `font' to `struct font *'.
21060
21061 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
21062 conditionals. Don't check enable_font_backend. Delete all codes
21063 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
21064 (x_per_char_metric, x_encode_char): Deleted.
21065 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
21066 (x_compute_glyph_string_overhangs): Adjust for the change of
21067 `struct face'.
21068 (x_draw_glyph_string_foreground)
21069 (x_draw_composite_glyph_string_foreground): Likewise.
21070 (x_draw_glyph_string): Likewise. Use font->underline_position and
21071 font->underline_thickness.
21072 (x_new_font): Rename from x_new_fontset2.
21073 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
21074 (x_check_font): Call `check' method of a font driver.
21075 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
21076 (x_query_font, x_get_font_repertory): Deleted.
21077 (x_find_ccl_program): Rename and moved to xfont.c.
21078 (x_redisplay_interface): Adjust for the change of `struct
21079 redisplay_interface'.
21080
21081 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
21082 conditionals. Don't check enable_font_backend. Delete all codes
21083 used only when USE_FONT_BACKEND is not defined. Surround non-used
21084 code by "#ifdef OLD_FONT" and "endif".
21085 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
21086
21087 * w32font.h (struct w32font_info): New member.
21088 (FONT_COMPAT): New macro.
21089 (w32font_open_internal): Prototype adjusted.
21090
21091 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
21092 OLD_FONT" and "endif".
21093
21094 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
21095 conditionals. Don't check enable_font_backend. Delete all codes
21096 used only when USE_FONT_BACKEND is not defined.
21097 (w32font_open): Return a font-object. Make a font-object by
21098 font_make_object. Adjusted for the change of struct w32font_info.
21099 (w32font_close): Don't free struct font. Adjusted for the change
21100 of struct w32font_info.
21101 (w32font_encode_char, w32font_text_extents, w32font_draw):
21102 Adjust for the change of struct w32font_info.
21103 (w32font_draw): Likewise.
21104 (w32font_list_internal): Return a list, not vector.
21105 (w32font_open_internal): Change the 4th arg to font-object.
21106 Adjusted for the change of struct w32font_info and font-object format.
21107 (add_font_name_to_list): Don't downcase names.
21108 (w32_enumfont_pattern_entity): Make a font-entity by
21109 font_make_entity. Adjusted for the format change of font-entity.
21110 Use FONT_SET_STYLE to set a style-related font property. If a
21111 font is scalable, set avgwidth property to 0. Set font-entity
21112 property by font_put_extra.
21113 (font_matches_spec): Adjust for the format change of font-entity.
21114 (w32_weight_table, w32_decode_weight): New variables.
21115 (w32_encode_weight): New function.
21116 (fill_in_logfont): Adjust for the format change of font-spec.
21117 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
21118 weight value.
21119 (w32font_driver): Adjust for the change of struct font_driver.
21120
21121 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
21122 conditionals. Don't check enable_font_backend. Surround non-used
21123 code by "#ifdef OLD_FONT" and "endif".
21124 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
21125 (FONT_AVG_WIDTH): Adjust for the change of struct font.
21126
21127 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
21128 conditionals. Don't check enable_font_backend. Delete all codes
21129 used only when USE_FONT_BACKEND is not defined. Surround non-used
21130 code by "#ifdef OLD_FONT" and "endif".
21131
21132 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
21133 (uniscribe_open): Return value changed to font-object.
21134 Adjusted for the format change of font-object.
21135 (uniscribe_otf_capability): Adjust for the change of struct font.
21136 (add_opentype_font_name_to_list): Don't downcase names.
21137 (uniscribe_font_driver): Adjust for the change of struct
21138 font_driver.
21139
21140 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
21141
21142 * dispnew.c (update_frame_1): Check if tty output is still valid
21143 before flushing it.
21144
21145 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
21146
21147 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
21148 to Gtk+ menus.
21149
21150 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
21151
21152 * dired.c (file_name_completion): Tweak the code so as to always do it
21153 in a single pass. Tighten the scope of some variables.
21154
21155 * dired.c (Qdefault_directory): New var.
21156 (file_name_completion): Use it instead of Fexpand_file_name.
21157 (syms_of_dired): Initialize it.
21158
21159 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
21160
21161 * fileio.c (double_dollars): Remove dead code.
21162
21163 2008-05-10 Eli Zaretskii <eliz@gnu.org>
21164
21165 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
21166 Mention w32-get-true-file-attributes in doc string.
21167
21168 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
21169
21170 2008-05-09 Glenn Morris <rgm@gnu.org>
21171
21172 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
21173 2008-04-23.
21174
21175 2008-05-09 Eli Zaretskii <eliz@gnu.org>
21176
21177 Support for reporting owner and group of each file on MS-Windows:
21178 * dired.c (stat_uname, stat_gname): New functions, with special
21179 implementation for w32.
21180 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
21181
21182 * w32.c: Rename the_passwd_* to dflt_passwd_*.
21183 (dflt_group_name): New static variable.
21184 (dflt_group): Rename from the_group.
21185 (init_user_info): Init dflt_group fields. Get user's group name
21186 from LookupAccountSid.
21187 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
21188 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
21189 New initialization states.
21190 (globals_of_w32): Initialize them to zero. Initialize the default
21191 group name to "None".
21192 (GetFileSecurity_Name): New global var, the name of the function
21193 to call for GetFileSecurity.
21194 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
21195 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
21196 (get_file_security, get_security_descriptor_owner)
21197 (get_security_descriptor_group, is_valid_sid)
21198 (get_file_security_desc, get_rid, get_name_and_id)
21199 (get_file_owner_and_group): New functions.
21200 (stat): Use get_file_security_desc and get_file_owner_and_group to
21201 report the owner and primary group of each file. Don't ignore the
21202 high 32 bits of file's size, now that st_size is 64-bit wide.
21203 Fix test when to get true file attributes.
21204 (init_user_info): Use get_rid instead of equivalent inline code.
21205 (fstat): Don't ignore the high 32 bits of file's size.
21206
21207 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
21208
21209 * image.c (png_load): Use correct bit-depth for setting background
21210 color.
21211
21212 2008-05-08 Eli Zaretskii <eliz@gnu.org>
21213
21214 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
21215 epa-hook.elc.
21216
21217 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
21218
21219 * font.c (Ffont_match_p): Don't use `iff' in docstring.
21220
21221 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
21222
21223 * macfns.c (Fx_create_frame): Make a copy of frame parameters
21224 because the original parameters are in pure storage now.
21225 (mac_window): Remove unused params. Update callers.
21226
21227 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
21228
21229 * lread.c (substitute_object_recurse): Use lower-level primitives.
21230 Don't signal errors when traversing sub-char-tables.
21231 Don't loop over all the possible characters when traversing char-tables.
21232
21233 * print.c (print_preprocess): Add sub-char-tables to the print-table,
21234 just like we do in print.c.
21235
21236 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
21237
21238 * minibuf.c (Ftry_completion): Remove code left over from when we used
21239 scmp instead of Fcompare_strings.
21240
21241 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
21242
21243 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
21244
21245 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21246
21247 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
21248 Create bitmap context in native byte order.
21249
21250 * macterm.c (XDrawLine)
21251 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
21252 context in native byte order.
21253
21254 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21255
21256 * config.in: Regenerate.
21257
21258 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
21259 New definitions for Image I/O support.
21260 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
21261 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
21262 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21263 (mac_data_provider_release_data, image_load_image_io)
21264 [USE_MAC_IMAGE_IO]: New functions.
21265 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
21266 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
21267 (init_image_func_pointer) [MAC_OSX]: Remove function.
21268 (image_load_quartz2d) [MAC_OSX]: Check availability of
21269 CGImageCreateWithPNGDataProvider at compile time.
21270 Use lowercase `false' for boolean constant.
21271 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
21272 Use image_load_image_io.
21273 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
21274 Don't check MyCGImageCreateWithPNGDataProvider.
21275 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
21276 Don't call init_image_func_pointer.
21277
21278 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
21279
21280 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
21281 Make variable non-static.
21282 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
21283 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
21284
21285 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
21286 (RED_FROM_ULONG): Mask off higher bits.
21287 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
21288
21289 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
21290 Include AvailabilityMacros.h.
21291 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
21292 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
21293
21294 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
21295
21296 * chartab.c (Fset_char_table_range): If range is t, really set all
21297 chars to that value.
21298
21299 2008-05-03 Eli Zaretskii <eliz@gnu.org>
21300
21301 * dired.c (Ffile_attributes): Don't allow the device number become
21302 negative.
21303
21304 2008-05-02 Daiki Ueno <ueno@unixuser.org>
21305
21306 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
21307
21308 2008-05-02 Juri Linkov <juri@jurta.org>
21309
21310 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
21311 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
21312 DEFAULT argument as a list of default values in docstrings.
21313
21314 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
21315
21316 * puresize.h (BASE_PURESIZE): Increase to 1210000.
21317
21318 2008-05-01 Martin Rudalics <rudalics@gmx.at>
21319
21320 * dispnew.c (change_frame_size_1): Preserve small windows when
21321 shrinking frames by calling set_window_height|width with third
21322 arg 2.
21323
21324 * window.h (struct window): Replace field too_small_ok by field
21325 resize_proportionally.
21326
21327 * window.c (make_window): Initialize resize_proportionally.
21328 (enlarge_window): Temporarily set resize_proportionally to make
21329 sure that shrink_windows does scale the window proportionally.
21330 (shrink_windows): When window has resize_proportionally set try
21331 to shrink it proportionally by stealing from other windows.
21332 (struct saved_window, Fset_window_configuration)
21333 (compare_window_configurations): Handle resize_proportionally.
21334 (WINDOW_TOTAL_SIZE): New macro.
21335 (window_min_size, shrink_windows, size_window): Use it.
21336 (check_min_window_sizes): Remove. Invalid values of
21337 window-min-height|width are handled by window_min_size_2 now.
21338 (size_window, Fsplit_window, enlarge_window)
21339 (adjust_window_trailing_edge, grow_mini_window): Don't call
21340 check_min_window_sizes.
21341 (window_min_size_2, window_min_size_1, window_min_size):
21342 New argument safe_p for retrieving "safe" minimum sizes.
21343 (Fdisplay_buffer, Fsplit_window, enlarge_window)
21344 (adjust_window_trailing_edge, grow_mini_window):
21345 Adjust arguments of window_min_size... functions.
21346 (shrink_windows): Argument min_size removed. New argument
21347 safe_p allows shrinking windows to their safe minimum sizes.
21348 Calculate minimum size and decide whether a window shall be
21349 deleted for each window individually.
21350 (size_window): When nodelete_p equals 2, tell shrink_windows to
21351 delete windows only if their new minimum size is no more safe.
21352 (shrink_window_lowest_first): Call window_min_size_1 to make
21353 sure to preserve modeline of bottom-most window when resizing
21354 the minibuffer.
21355 (Fset_window_configuration, Fcurrent_window_configuration)
21356 (compare_window_configurations): Do not handle
21357 window-min-height|width any more.
21358 (syms_of_window): Clarify window-min-height|width doc-strings.
21359
21360 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
21361
21362 * dired.c (file_name_completion): Fix up the encoding/decoding issue
21363 some more. Copy some of the code from Ftry_completions.
21364 Remove special case code that dates back to initial revision when the
21365 slash was only added when necessary and that can't trigger nowadays.
21366
21367 2008-04-27 Kenichi Handa <handa@m17n.org>
21368
21369 * font.c (font_prop_validate): Signal `error' instead of `font'.
21370
21371 2008-04-29 Jason Rumney <jasonr@gnu.org>
21372
21373 * w32fns.c (Fw32_battery_status): New defun.
21374 (syms_of_w32fns): Defsubr it.
21375
21376 2008-04-28 Andreas Schwab <schwab@suse.de>
21377
21378 * dired.c (file_name_completion): Fix another mixing of encoded
21379 and decoded names.
21380
21381 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
21382
21383 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
21384
21385 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
21386
21387 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
21388
21389 2008-04-27 Andreas Schwab <schwab@suse.de>
21390
21391 * dired.c (file_name_completion): Fix inappropriate mixing of
21392 encoded and decoded names.
21393
21394 * xterm.c (XTread_socket): Fix use of uninitialized variable.
21395
21396 * puresize.h (BASE_PURESIZE): Increase to 1200000.
21397
21398 2008-04-26 Eli Zaretskii <eliz@gnu.org>
21399
21400 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
21401 2008-03-31, it's not needed anymore with `struct stat' definition
21402 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
21403 for the same reasons.
21404
21405 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
21406
21407 * m/sparc.h: Additional redefinitions for GNU/Linux.
21408
21409 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21410
21411 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
21412 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
21413 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
21414 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
21415 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21416 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
21417 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21418 Likewise.
21419
21420 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
21421 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
21422 (mac_ax_number_of_characters): Add externs.
21423 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
21424 [USE_MAC_TSM]: Likewise.
21425 (mac_handle_text_input_event) [MAC_OSX]:
21426 Handle kEventTextInputOffsetToPos for no active input area case.
21427 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21428 (mac_handle_document_access_event)
21429 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
21430 (install_application_handler) [MAC_OSX]: Register handlers for
21431 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
21432 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21433 Register mac_handle_document_access_event.
21434
21435 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
21436 Make functions non-static.
21437
21438 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
21439
21440 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
21441 (read_file_name_completion_ignore_case, insert_default_directory)
21442 (Qdefault_directory): Move to minibuffer.el.
21443 (Fread_file_name): Call the new `read-file-name' instead.
21444
21445 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21446
21447 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
21448 Make function non-static.
21449 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
21450 Remove function.
21451 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21452 Move to mactoolbox.c.
21453 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
21454
21455 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
21456 (mac_rect_make): New macro.
21457
21458 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
21459 instead of float.
21460 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21461 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
21462 (XSetBackground) [USE_CG_DRAWING]: Likewise.
21463 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
21464 CGRectMake.
21465 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
21466 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
21467 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
21468 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21469 instead of WindowRef in argument type.
21470 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
21471 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
21472 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
21473 instead of DISPLAY. All uses changed.
21474 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
21475 (x_calc_absolute_position): Simplify so as not to use
21476 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
21477
21478 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
21479 instead of WindowRef in argument type.
21480 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
21481 [TARGET_API_MAC_CARBON]: Remove externs.
21482 (create_apple_event, mac_event_parameters_to_lisp)
21483 [TARGET_API_MAC_CARBON]: Add externs.
21484
21485 * mactoolbox.c (Vmac_ts_script_language_on_focus)
21486 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
21487 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
21488 is clicked.
21489 (x_activate_menubar): Remove extern for saved_menu_event_location.
21490 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
21491 Move from mac.c.
21492
21493 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21494
21495 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
21496 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
21497
21498 2008-04-23 Jason Rumney <jasonr@gnu.org>
21499
21500 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
21501 attributes only for local files.
21502
21503 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
21504 default to Qlocal.
21505
21506 2008-04-22 Juri Linkov <juri@jurta.org>
21507
21508 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
21509 read-buffer-to-switch instead of using the letter "B".
21510
21511 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
21512
21513 * fileio.c (Qdefault_directory): New variable.
21514 (Fread_file_name): Use it to pass `dir' to the completion functions.
21515
21516 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
21517
21518 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
21519
21520 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
21521
21522 * keyboard.c (Vpre_help_message): Remove.
21523 (show_help_echo): Remove default C code.
21524
21525 * dired.c (directory_files_internal, file_name_completion):
21526 Only call ENCODE_FILE if the string is indeed decoded.
21527
21528 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21529
21530 * Makefile.in (TOOLKIT_DEFINES): Remove.
21531 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
21532
21533 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21534
21535 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
21536 (mactoolbox.o): New target.
21537
21538 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
21539 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
21540
21541 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
21542 Use mac_set_frame_window_background instead of XSetWindowBackground.
21543 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
21544 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
21545 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
21546 instead of SetWindowTitleWithCFString.
21547 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
21548 Move function to mactoolbox.c.
21549 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
21550 Use mac_set_window_modified instead of SetWindowModified.
21551 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
21552 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
21553 (Fx_focus_frame): Use mac_front_non_floating_window instead of
21554 FrontNonFloatingWindow. Use mac_activate_window instead of
21555 ActivateWindow. Use mac_active_non_floating_window instead of
21556 ActiveNonFloatingWindow.
21557 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
21558 Use mac_show_hourglass and mac_hide_hourglass.
21559 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
21560 instead of GetGlobalMouse.
21561 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
21562 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
21563 Use mac_bring_window_to_front instead of BringToFront.
21564 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
21565 mactoolbox.c.
21566 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
21567 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
21568 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
21569 mactoolbox.c.
21570
21571 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
21572 (XtPointer): Move typedef from macmenu.c.
21573 (enum button_type): Move enum from macmenu.c.
21574 (widget_value): Move typedef from macmenu.c.
21575 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
21576 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21577 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21578 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21579 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21580 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21581 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21582 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
21583 (Selection): Move typedef from macselect.c.
21584 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
21585 macterm.c.
21586 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
21587 (mac_is_window_collapsed, mac_bring_window_to_front)
21588 (mac_send_window_behind, mac_hide_window, mac_show_window)
21589 (mac_collapse_window, mac_front_non_floating_window)
21590 (mac_active_non_floating_window, mac_activate_window)
21591 (mac_move_window_structure, mac_move_window, mac_size_window)
21592 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
21593
21594 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
21595 (enum mac_menu_kind): Move enum to mactoolbox.c.
21596 (min_menu_id): Move variable to mactoolbox.c.
21597 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
21598 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
21599 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
21600 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
21601 [TARGET_API_MAC_CARBON]: Likewise.
21602 (XtPointer): Move typedef to macgui.h.
21603 (enum button_type): Move enum to macgui.h.
21604 (widget_value): Move typedef to macgui.h.
21605 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
21606 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
21607 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
21608 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
21609 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
21610 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
21611 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
21612 (popup_activated_flag): Make variable non-static.
21613 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
21614 (add_menu_item, fill_menu, dispose_menus):
21615 Move functions to mactoolbox.c.
21616 (restore_show_help_function, menu_target_item_handler)
21617 (install_menu_target_item_handler, mac_handle_dialog_event)
21618 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
21619 [TARGET_API_MAC_CARBON]: Likewise.
21620 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
21621 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21622 (find_and_call_menu_selection, name_is_separator): Make function
21623 non-static.
21624 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
21625 to mactoolbox.c.
21626 (set_frame_menubar): Don't call install_menu_quit_handler.
21627 (menu_item_selection): New variable.
21628 (mac_menu_show): Use create_and_show_popup_menu.
21629 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
21630 selection but set variable menu_item_selection. All uses changed.
21631 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
21632 Call install_menu_quit_handler. Move to mactoolbox.c.
21633
21634 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
21635 (Selection): Move typedef to macgui.h.
21636 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
21637 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
21638 Make variables non-static.
21639 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21640 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
21641 Make functions non-static.
21642 (Vmac_service_selection) [MAC_OSX]: Likewise.
21643 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
21644 (mac_valid_selection_target_p, mac_clear_selection)
21645 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21646 (mac_put_selection_value, mac_selection_has_target_p)
21647 (mac_get_selection_value, mac_get_selection_target_list)
21648 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
21649 Move functions to mactoolbox.c.
21650 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
21651 Likewise.
21652 (copy_scrap_flavor_data, mac_handle_service_event)
21653 (install_service_handler) [MAC_OSX]: Likewise.
21654 (syms_of_macselect) <Vmac_dnd_known_types>:
21655 Use mac_dnd_default_known_types.
21656
21657 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
21658 Move to mactoolbox.c.
21659 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
21660 (Fx_selection_owner_p): Add EXFUN.
21661 (install_window_handler, remove_window_handler, XSetWindowBackground):
21662 Remove externs.
21663 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
21664 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
21665 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
21666 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
21667 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
21668 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
21669 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
21670 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
21671 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
21672 (create_and_show_popup_menu, mac_get_selection_from_symbol)
21673 (mac_valid_selection_target_p, mac_clear_selection)
21674 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
21675 (mac_put_selection_value, mac_selection_has_target_p)
21676 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
21677 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
21678 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
21679 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
21680 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
21681 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
21682 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
21683 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21684 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
21685
21686 * mactoolbox.c: New file.
21687
21688 2008-04-18 Jason Rumney <jasonr@gnu.org>
21689
21690 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
21691
21692 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
21693
21694 * character.c (Fmultibyte_char_to_unibyte):
21695 Return latin1 chars unchanged.
21696
21697 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
21698 relocated if it points to `name'.
21699
21700 2008-04-17 Kenichi Handa <handa@m17n.org>
21701
21702 * data.c (Faset): Allow setting a multibyte character in an
21703 ASCII-only unibyte string.
21704
21705 * lisp.h (STRING_SET_MULTIBYTE): New macro.
21706
21707 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
21708
21709 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
21710 done in config.h.
21711
21712 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
21713
21714 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
21715 (Fchar_direction): Add usage in the docstring.
21716
21717 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
21718
21719 * keyboard.c (read_key_sequence): Remove always-true checks.
21720
21721 2008-04-14 Jason Rumney <jasonr@gnu.org>
21722
21723 * w32font.c (w32font_open_internal): Set max_bounds.descent in
21724 compatibility struct, for better underline positioning.
21725
21726 2008-04-13 David Hansen <david.hansen@gmx.net>
21727
21728 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
21729 string.
21730
21731 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
21732
21733 * m/hp800.h (XUINT, XSET): Remove.
21734
21735 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
21736
21737 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
21738 previous change.
21739
21740 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
21741
21742 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
21743 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
21744
21745 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
21746
21747 * keymap.h (map_keymap_canonical): Declare.
21748 * xmenu.c (single_keymap_panes): Use it.
21749
21750 2008-04-11 Glenn Morris <rgm@gnu.org>
21751
21752 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
21753 set the target's value to that of the alias.
21754
21755 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
21756
21757 * term.c (set_tty_color_mode): Left over typo.
21758
21759 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
21760
21761 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
21762 only after check for file name handler functions. Signal, when
21763 native functionality is not supported.
21764 (syms_of_fileio): Declare it unconditionally.
21765
21766 2008-04-10 Jason Rumney <jasonr@gnu.org>
21767
21768 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
21769 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
21770
21771 * w32.c (logon_network_drive): Also logon to remote drives that
21772 are mapped to drive letters.
21773
21774 2008-04-10 Glenn Morris <rgm@gnu.org>
21775
21776 * xdisp.c (truncate-partial-width-windows): Doc fix.
21777
21778 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
21779
21780 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
21781 Move functions to minibuffer.el.
21782 (syms_of_fileio): Don't declare them.
21783
21784 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
21785
21786 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
21787 (syms_of_minibuf): Remove its initialization.
21788
21789 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
21790
21791 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
21792
21793 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
21794
21795 2008-04-09 Jason Rumney <jasonr@gnu.org>
21796
21797 * makefile.w32-in (distclean): Delete makefile too.
21798 (maintainer-clean): New target.
21799
21800 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
21801
21802 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
21803 for new font backend and composite cases.
21804
21805 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
21806
21807 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
21808 Most of the code moved to run_timers.
21809 (do_pending_atimers): Call run_timers.
21810 (run_timers): New function.
21811
21812 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
21813 run atimers.
21814
21815 * process.c (wait_reading_process_output): The same as above.
21816
21817 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
21818
21819 * minibuf.c (last_exact_completion): Remove variable.
21820 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
21821 (complete_and_exit_1, complete_and_exit_2)
21822 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
21823 (Fdisplay_completion_list, display_completion_list_1)
21824 (Fminibuffer_completion_help, Fself_insert_and_exit)
21825 (Fexit_minibuffer, Fminibuffer_message): Move functions to
21826 minibuffer.el.
21827 (syms_of_minibuf): Remove corresponding initializations.
21828
21829 * keyboard.c (Qdeactivate_mark): New var.
21830 (command_loop_1): Use it to call `deactivate-mark'.
21831 (syms_of_keyboard): Initialize it.
21832
21833 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
21834 to another frame.
21835 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
21836 Don't call set_tty_color_mode.
21837 (store_frame_param): Reset previous_frame rather than call
21838 set_tty_color_mode.
21839 * term.c (set_tty_color_mode): Rewrite.
21840 * dispextern.h (set_tty_color_mode): New type.
21841 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
21842
21843 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
21844
21845 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
21846 for generic chars, which do not exist any more in emacs-unicode.
21847
21848 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
21849
21850 * coding.c (detect_coding_emacs_mule)
21851 (Ffind_operation_coding_system): Fix typo.
21852
21853 2008-04-08 Jason Rumney <jasonr@gnu.org>
21854
21855 * w32uniscribe.c (SNAME): Extract only symbol name.
21856
21857 * w32font.h (struct w32_metric_cache): New struct.
21858 (w32font_info): Use it.
21859 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
21860 (CACHE_BLOCKSIZE): New constants.
21861
21862 * w32font.c (Qja, Qko, Qzh): New symbols.
21863 (syms_of_w32font): Initialise them.
21864 (font_matches_spec): Use them to filter by language.
21865 (recompute_cached_metrics): Remove function.
21866 (compute_metrics, clear_cached_metrics): New functions.
21867 (w32font_encode_char): Use them to manage metric cache.
21868 (w32font_text_extents): Cache metrics for all glyphs on demand.
21869 Delay converting glyph indices to WORD until needed.
21870 (w32font_open_internal): Initialize metric cache to empty.
21871 (registry_to_w32_charset): Charset should always be a symbol.
21872 (fill_in_logfont, list_all_matching_fonts): Family should
21873 always be a symbol.
21874
21875 2008-04-06 Jason Rumney <jasonr@gnu.org>
21876
21877 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
21878 Give up if glyph indices not supported. Use uniscribe obtained
21879 ABC widths for individual metrics. Map glyph clusters back to
21880 characters using fClusterStart flag. Return number of glyphs
21881 produced, not chars processed.
21882 (uniscribe_shape): Map char at FROM to current glyph.
21883
21884 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21885
21886 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
21887 Use SetMenuItemHierarchicalMenu.
21888
21889 2008-04-05 Jason Rumney <jasonr@gnu.org>
21890
21891 * image.c (pbm_load): Allow color values up to 65535.
21892 Throw an error if max_color_idx is outside the supported range.
21893 Report an error when image size is invalid.
21894 Read two bytes at a time when raw images have max_color_idx above 255.
21895
21896 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
21897
21898 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
21899 append "CCL: Quitted" when the CCL program is quitted.
21900 (setup_ccl_program): Initialize ccl->quit_silently to zero.
21901
21902 * ccl.h (struct ccl_program): New member quit_silently.
21903
21904 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
21905
21906 * search.c (compile_pattern_1): Treat non-nil and non-string of
21907 search-spaces-regexp as nil.
21908
21909 * minibuf.c (Fassoc_string): Tweak docstring.
21910
21911 2008-04-05 Eli Zaretskii <eliz@gnu.org>
21912
21913 * dired.c (Ffile_attributes): Support inode numbers wider than 32
21914 bits. Remove ugly WINDOWSNT-specific kludge introduced on
21915 2008-03-14 to force inode be positive.
21916
21917 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
21918 _S_* ones, since we now use our own sys/stat.h.
21919 (stat, fstat): Don't mangle the inode number.
21920 (init_user_info): Don't restrict UID and GID to 0-60000 range.
21921
21922 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21923
21924 * frame.h (struct frame): Give one more bit to `visible' since we use
21925 values larger than 1 to indicate obscured frames on ttys.
21926
21927 * keymap.c (Qkeymap_canonicalize): New var.
21928 (Fmap_keymap_internal): New fun.
21929 (describe_map): Use keymap-canonicalize.
21930
21931 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
21932 (Fundo_boundary): Set them.
21933 (syms_of_undo): Initialize them.
21934 (record_point): Use them instead of last_point_position*.
21935 (last_undo_buffer): Change type.
21936
21937 2008-04-04 Jason Rumney <jasonr@gnu.org>
21938
21939 * w32font.c (w32font_text_extents): Use font's ascent and descent.
21940 (recompute_cached_metrics): Don't set ascent and descent per char.
21941
21942 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
21943 (uniscribe_check_otf): Add GC protection before consing.
21944 Rearrange loop for counting features.
21945
21946 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
21947
21948 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
21949 buffer with byte-size of source buffer.
21950
21951 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
21952
21953 * callint.c (Fcall_interactively): Handle temporary region even
21954 when shift-select-mode is off.
21955
21956 2008-04-03 Jason Rumney <jasonr@gnu.org>
21957
21958 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
21959
21960 2008-04-03 Kenichi Handa <handa@m17n.org>
21961
21962 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
21963 (CATEGORY_MASK_UTF_16): Likewise.
21964 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
21965 binary file.
21966 (detect_coding): Add null-byte detection for a binary file.
21967 (detect_coding_system): Likewise.
21968
21969 2008-04-03 Jason Rumney <jasonr@gnu.org>
21970
21971 * w32uniscribe.c: New file.
21972
21973 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
21974
21975 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
21976
21977 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
21978 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
21979 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
21980 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
21981 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
21982 (Qphonetic): New symbols.
21983 (syms_of_w32font): Initialize them.
21984 (font_supported_scripts): Use them.
21985 (w32font_list_family): List all charsets.
21986 (w32font_text_extents, recompute_cached_metrics): Fix metric
21987 calculations.
21988 (w32_enumfont_pattern_entity): Make full_type a DWORD.
21989 Give opentype fonts their own format.
21990 (font_matches_spec): New arguments backend and logfont.
21991 Handle :otf spec for uniscribe backend.
21992 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
21993 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
21994
21995 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
21996 font backend.
21997 (globals_of_w32fns): Initialize uniscribe font backend.
21998
21999 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
22000 dependencies.
22001 (w32uniscribe.$(O)): New file to build.
22002 (FONT_OBJ): Include w32uniscribe.$(O).
22003 (LIBS): Add uniscribe libraries.
22004
22005 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
22006
22007 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
22008
22009 * callint.c (Vshift_select_mode): New var.
22010 (Finteractive): Document new ^ spec.
22011 (Fcall_interactively): Call handle-shift-selection if the ^ spec
22012 is present.
22013
22014 * keyboard.c (Vthis_command_keys_shift_translated): New var.
22015 (command_loop_1): Avoid running the direct display versions of
22016 forward-char and backward-char if shift-selection may occur.
22017 (read_key_sequence): Set Vthis_command_keys_shift_translated if
22018 shift-translation takes place.
22019
22020 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
22021 avoid clobbering by define-minor-mode.
22022
22023 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
22024 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
22025
22026 * syntax.c (Fforward_word): Add ^ interactive spec.
22027
22028 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
22029 (Fscroll_right): Add ^ interactive spec.
22030
22031 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22032
22033 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
22034
22035 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
22036
22037 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
22038
22039 2008-03-31 Juri Linkov <juri@jurta.org>
22040
22041 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
22042
22043 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
22044
22045 * gtkutil.c (xg_set_geometry): Fix indentation.
22046 (xg_resize_outer_widget): Remove.
22047 (x_wm_size_hint_off): Fix indentation.
22048 (xg_frame_set_char_size): Call flush_and_sync after
22049 gtk_window_resize.
22050 (x_wm_set_size_hint): Pass NULL as geometry window to
22051 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
22052 Add menu bar and tool bar height to base height.
22053 (xg_update_frame_menubar, free_frame_menubar)
22054 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
22055 (update_frame_tool_bar, free_frame_tool_bar):
22056 Change xg_resize_outer_widget to xg_frame_set_char_size.
22057
22058 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
22059
22060 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
22061 (Fdbus_call_method): New parameter TIMEOUT.
22062 (dbus-send-signal): Optimize UNGCPRO call.
22063
22064 2008-03-29 Juri Linkov <juri@jurta.org>
22065
22066 * window.c (Fdisplay_buffer): Move call to
22067 Vsplit_window_preferred_function out of conditions that check
22068 if window is eligible for vertical splitting.
22069 When Vsplit_window_preferred_function is non-nil, call it and use
22070 its non-nil return value as window. Otherwise, continue doing
22071 vertical splitting using Fsplit_window with arg horflag=nil.
22072 (syms_of_window) <Vsplit_window_preferred_function>: Change the
22073 default value from `split-window' to nil.
22074
22075 2008-03-29 Juri Linkov <juri@jurta.org>
22076
22077 * callint.c (Fcall_interactively): Revert 2008-03-16 change
22078 for interactive code letters 'b' and 'B'.
22079
22080 2008-03-29 Eli Zaretskii <eliz@gnu.org>
22081
22082 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
22083 multibyte string.
22084
22085 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
22086
22087 * keyboard.c (pending_funcalls): New var.
22088 (timer_check): Run it.
22089 (syms_of_keyboard): Initialize it.
22090 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
22091 (Vdelete_terminal_functions): New vars.
22092 (syms_of_terminal): Initialize them.
22093 (Fdelete_terminal): Run delete-terminal-functions.
22094 * xdisp.c (safe_eval): Rewrite.
22095 (safe_call2): New fun.
22096 * frame.c (Qdelete_frame_functions): New var.
22097 (syms_of_frame): Initialize it.
22098 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
22099 * lisp.h (safe_call2, pending_funcalls): Declare.
22100
22101 2008-03-28 Andreas Schwab <schwab@suse.de>
22102
22103 * indent.c (Fmove_to_column): Move declaration before statements.
22104
22105 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
22106
22107 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
22108 (struct frame): Use bit fields for boolean vars.
22109
22110 * process.c (server_accept_connection): Simplify naming.
22111 (emacs_get_tty_pgrp): Use SDATA.
22112
22113 * coding.c (decode_coding_object): Fix last change.
22114
22115 2008-03-27 Jason Rumney <jasonr@gnu.org>
22116
22117 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
22118
22119 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
22120
22121 * charset.c (Fdefine_charset_internal): Change the way of
22122 registering charsets in Vcharset_order_list.
22123 (syms_of_charset): Make the charset `eight-bit' supplementary.
22124
22125 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
22126
22127 * regex.c (EXTEND_BUFFER): Change order of pointer addition
22128 operations, to avoid having the difference between pointers
22129 overflow.
22130
22131 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
22132
22133 * indent.c (check_display_width): New fun.
22134 (scan_for_column): Use it.
22135
22136 * data.c (syms_of_data): Mark most-positive-fixnum and
22137 most-negative-fixnum as constants.
22138
22139 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
22140
22141 * indent.c (scan_for_column): Extract from current_column_1.
22142 Merge with the same code from Fmove_to_column.
22143 (current_column_1, Fmove_to_column): Use it.
22144
22145 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
22146
22147 * keymap.c (map_keymap_internal): New fun.
22148 (map_keymap): Use it.
22149 (Fmap_keymap_internal): New fun.
22150 (Fmap_keymap): Remove left-out test from before make_save_value.
22151
22152 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
22153
22154 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
22155 Use XCAR/XCDR.
22156
22157 * process.h (struct Lisp_Process): Remove filter_multibyte.
22158 * process.c (QCfilter_multibyte): Remove.
22159 (setup_process_coding_systems): Don't use filter_multibyte.
22160 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
22161 (read_process_output): Don't adjust multibyteness to filter_multibyte.
22162 (Fset_process_filter_multibyte): Change the coding-system to
22163 approximate the previous behavior.
22164 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
22165 coding-system.
22166
22167 * coding.c (decode_coding_object): When not decoding into a buffer,
22168 obey the coding system's preference of (uni|multi)byte.
22169
22170 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
22171
22172 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
22173 every char is changed and has a different byte-length.
22174 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
22175 Fix int -> EMACS_INT.
22176
22177 2008-03-23 David Hansen <david.hansen@gmx.net>
22178
22179 * dbusbind.c (xd_read_message): Remove extra copying of message
22180 strings. Check for NULL `interface' or `member'.
22181
22182 2008-03-22 Eli Zaretskii <eliz@gnu.org>
22183
22184 * w32.c (readdir): If FindFirstFile/FindNextFile return in
22185 cFileName a file name that includes `?' characters, use the 8+3
22186 alias in cAlternateFileName instead.
22187
22188 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
22189
22190 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
22191
22192 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22193
22194 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
22195 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
22196 work on current_buffer only instead (that was already the case
22197 for some of the code anyway).
22198 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
22199 (temp_set_point, temp_set_point_both): Use EMACS_INT.
22200 (SET_PT, SET_PT_BOTH): Adjust.
22201 * intervals.h (set_point, temp_set_point, set_point_both)
22202 (temp_set_point_both): Remove redundant declarations.
22203
22204 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
22205
22206 * fileio.c (Finsert_file_contents):
22207 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
22208 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
22209 when buffer != current_buffer anyway.
22210
22211 2008-03-20 Andreas Schwab <schwab@suse.de>
22212
22213 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
22214 as default.
22215
22216 2008-03-19 Jason Rumney <jasonr@gnu.org>
22217
22218 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
22219 (syms_of_w32fns): Initialize them.
22220 (HOURGLASS_ID): New constant.
22221 (x_window_to_frame): Don't check hourglass_window.
22222 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
22223 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
22224 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
22225 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
22226 Only change the cursor if hourglass is not active.
22227 (Fx_create_frame): Initialize frame's current_cursor.
22228 (hourglass_atimer): Remove.
22229 (hourglass_started): New function.
22230 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
22231 (show_hourglass): Adapt to w32, changing argument to frame.
22232
22233 * w32term.h (struct w32_output): Remove hourglass_window.
22234 Add current_cursor.
22235
22236 * eval.c (call_debugger, Fsignal):
22237 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
22238 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
22239 (Fexecute_extended_command, cancel_hourglass_unwind):
22240 * minibuf.c (read_minibuf):
22241 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
22242
22243 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
22244
22245 * window.c (run_funs): New fun.
22246 (run_window_configuration_change_hook): Use it to run the buffer-local
22247 and the global part of the hook.
22248
22249 * xdisp.c (format_mode_line_unwind_data): Add window argument.
22250 (unwind_format_mode_line): Restore selected window.
22251 (x_consider_frame_title, Fformat_mode_line): Set selected window.
22252
22253 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
22254
22255 * editfns.c (Fchar_equal): Check they are valid characters.
22256
22257 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
22258
22259 2008-03-17 Andreas Schwab <schwab@suse.de>
22260
22261 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
22262 against a charset.
22263
22264 * lisp.h (Fbuffer_list): Declare.
22265
22266 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
22267
22268 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
22269 handlebox_widget is != 0.
22270
22271 2008-03-16 Juri Linkov <juri@jurta.org>
22272
22273 * callint.c (Fcall_interactively): For interactive code letters
22274 'b' and 'B' put the buffer list into the list of default "future"
22275 values of the minibuffer.
22276
22277 2008-03-16 Andreas Schwab <schwab@suse.de>
22278
22279 * keyboard.c (read_key_sequence): Fix downcasing of letters with
22280 modifiers.
22281
22282 * regex.c (re_match_2_internal): Correct matching of a charset
22283 against latin-1 characters.
22284
22285 2008-03-16 Kenichi Handa <handa@m17n.org>
22286
22287 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
22288 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
22289 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
22290 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
22291 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
22292 CHAR_STRING_ADVANCE.
22293 (produce_chars): Fix for the case that the source and the
22294 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
22295 instead of CHAR_STRING_ADVANCE.
22296 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
22297 STRING_CHAR_ADVANCE.
22298
22299 2008-03-15 Andreas Schwab <schwab@suse.de>
22300
22301 * regex.c (re_match_2_internal): Correct matching of eight bit
22302 characters in unibyte strings.
22303
22304 2008-03-15 Martin Rudalics <rudalics@gmx.at>
22305
22306 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
22307 at end of range when it coincides with the end of the buffer.
22308
22309 2008-03-14 Eli Zaretskii <eliz@gnu.org>
22310
22311 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
22312
22313 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
22314
22315 2008-03-14 Jason Rumney <jasonr@gnu.org>
22316
22317 * editfns.c (initial_tz): New variable.
22318 (syms_of_editfns): Initialize it.
22319 (Fset_time_zone_rule): Set it when first called.
22320 Use it when TZSTRING is nil.
22321
22322 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
22323 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
22324 (monitor_from_point_fn, get_monitor_info_fn): New globals.
22325 (globals_of_w32fns): Initialize them.
22326 (compute_tip_xy): Use them to position tooltips.
22327
22328 2008-03-14 Glenn Morris <rgm@gnu.org>
22329
22330 * emacs.c (main): Revert previous change.
22331 (standard_args): Revert -internal-script back to -scriptload,
22332 and remove the long-option form.
22333
22334 2008-03-13 Glenn Morris <rgm@gnu.org>
22335
22336 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
22337 Remove option -enable-font-backend.
22338
22339 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
22340
22341 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
22342
22343 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
22344
22345 * xterm.c (x_connection_closed): For GTK: If this is the last
22346 terminal just exit without closing the display.
22347
22348 2008-03-11 Jason Rumney <jasonr@gnu.org>
22349
22350 * w32font.c (w32font_full_name): Use floor to round.
22351
22352 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
22353
22354 * sound.c (alsa_configure): Declare vol at beginning of block.
22355
22356 * fontset.c (Ffontset_info): Remove extra semicolon.
22357
22358 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
22359
22360 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
22361 size of resulting string.
22362
22363 2008-03-10 Jason Rumney <jasonr@gnu.org>
22364
22365 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
22366
22367 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22368
22369 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
22370 Don't pretend as if characters with display property haven't been
22371 consumed for string-replacing-string case.
22372
22373 2008-03-08 Kim F. Storm <storm@cua.dk>
22374
22375 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
22376 (get_next_display_element, next_element_from_string)
22377 (next_element_from_ellipsis, next_element_from_buffer): Use it.
22378
22379 2008-03-08 Andreas Schwab <schwab@suse.de>
22380
22381 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
22382
22383 2008-03-06 Jason Rumney <jasonr@gnu.org>
22384
22385 * w32font.c (w32_registry): Take font_type argument. Use ANSI
22386 when charset not specified. Only translate ANSI to unicode when
22387 font_type is truetype.
22388 (w32font_coverage_ok): New function.
22389 (add_font_entity_to_list): Use it to filter unsuitable fonts.
22390
22391 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
22392
22393 * lread.c (Fread_char): Resolve modifiers.
22394 (Fread_char_exclusive): Likewise.
22395
22396 * character.c (char_resolve_modifier_mask): New function.
22397 (char_string): Use char_resolve_modifier_mask.
22398 (Fchar_resolve_modifiers): New function.
22399 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
22400 function.
22401
22402 2008-03-04 Jason Rumney <jasonr@gnu.org>
22403
22404 * makefile.w32-in: Always include w32font.c in the build.
22405 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
22406
22407 2008-03-04 Andreas Schwab <schwab@suse.de>
22408
22409 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
22410 (versionclean): Likewise.
22411
22412 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
22413
22414 * .cvsignore: Add oo.
22415
22416 2008-03-03 Andreas Schwab <schwab@suse.de>
22417
22418 * coding.c (decode_coding_object): Inhibit gap shrinking while
22419 decoding in place.
22420
22421 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
22422
22423 * w32term.c: Remove unused include "gnu.h".
22424 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
22425
22426 * gnu.h: Rename to ...
22427 * emacs-icon.h: ... this.
22428 * xterm.c: Use emacs-icon.h instead of gnu.h.
22429 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
22430
22431 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
22432
22433 * w32font.c: Include math.h.
22434
22435 2008-03-03 Jason Rumney <jasonr@gnu.org>
22436
22437 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
22438 Compute options separately.
22439 (w32font_open_internal): Set glyph_idx before caching metrics.
22440
22441 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
22442 Define if system headers don't.
22443 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
22444 (w32font_encode_char): Don't declare here.
22445
22446 * w32font.c (Quniscribe, QCformat): New symbols.
22447 (syms_of_w32font): Define them.
22448 (w32font_has_char): Indicate uncertainty.
22449 (w32font_encode_char): Encode as glyph point. Make static.
22450 (recompute_cached_metrics): New function.
22451 (w32font_open_internal): Use it. Set font to use glyph points
22452 initially. Set format based on type of font.
22453 (w32font_text_extents, w32font_draw): Optionally use glyph points.
22454 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
22455 on it. Set format based on information available here.
22456 (add_font_entity_to_list): Identify backend based on opentype_only.
22457
22458 2008-03-02 Andreas Schwab <schwab@suse.de>
22459
22460 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
22461
22462 * coding.c (decode_coding_big5, produce_chars):
22463 Fix typos in last change.
22464
22465 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
22466
22467 * gnu.h: New icon.
22468
22469 2008-03-02 Kenichi Handa <handa@m17n.org>
22470
22471 * coding.c (decode_coding_utf_8): When eol-type of CODING is
22472 `dos', don't decode '\r' if that is the last in the source.
22473 (decode_coding_utf_16, decode_coding_emacs_mule)
22474 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22475 (decode_coding_raw_text, decode_coding_charset): Likewise.
22476 (produce_chars): Don't decode EOL here. Use EMACS_INT.
22477
22478 2008-03-01 Jason Rumney <jasonr@gnu.org>
22479
22480 * w32font.c (w32font_full_name): Report point size for scalable fonts.
22481
22482 2008-03-01 Kim F. Storm <storm@cua.dk>
22483
22484 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
22485
22486 2008-03-01 Jason Rumney <jasonr@gnu.org>
22487
22488 * w32font.c (w32font_full_name): New function.
22489 (w32font_open_internal): Use it.
22490
22491 2008-03-01 Kim F. Storm <storm@cua.dk>
22492
22493 * dispnew.c (line_draw_cost): Fix invalid glyph check.
22494
22495 2008-03-01 Jason Rumney <jasonr@gnu.org>
22496
22497 * font.c (font_unparse_fcname): Increase len when style is a symbol.
22498
22499 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
22500
22501 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
22502 xg_frame_resized when the event is for the edit widget.
22503
22504 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
22505
22506 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
22507 set_char_size.
22508 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
22509 operations on widgets here. Just set frame size if needed.
22510 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
22511 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
22512 (x_wm_set_size_hint): Set size hints on the edit widget only, not
22513 the whole frame.
22514 (xg_create_tool_bar): Move attachment of the tool bar to
22515 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
22516 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
22517
22518 2008-03-01 Jason Rumney <jasonr@gnu.org>
22519
22520 * w32fns.c (w32_msg_pump): Disable debug code.
22521
22522 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22523
22524 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
22525
22526 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
22527
22528 * xdisp.c (next_overlay_string): Don't set
22529 overlay_strings_at_end_processed_p if we're currently reading from
22530 a display string.
22531
22532 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
22533
22534 * xdisp.c (get_overlay_strings_1): Fix typo.
22535
22536 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
22537
22538 * xdisp.c (get_overlay_strings_1): Add missing argument type.
22539
22540 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
22541
22542 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
22543
22544 * xdisp.c (display_mode_element): Cancel the previous change.
22545 (decode_mode_spec): Likewise.
22546 (handle_auto_composed_prop): Don't make composition if it->string
22547 is a string.
22548
22549 2008-02-27 Kim F. Storm <storm@cua.dk>
22550
22551 * lisp.h (GLYPH): Change type from int to struct with separate char
22552 and face_id members.
22553 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
22554 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
22555 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
22556 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
22557 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
22558 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
22559 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
22560 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
22561 handle new Lisp glyph code encoding, either an integer or a cons.
22562
22563 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
22564 (GLYPH_ALIAS): Delete.
22565 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
22566 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
22567 (GLYPH_FROM_CHAR): Replace macro by ...
22568 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
22569
22570 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
22571 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
22572 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
22573 (GLYPH_INVALID_P): New macro.
22574 (spec_glyph_lookup_face): Update prototype.
22575
22576 * dispnew.c (line_draw_cost): Adapt to new glyph type.
22577 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
22578 new glyph code encoding.
22579 (spec_glyph_lookup_face): No return value; update passed glyph instead.
22580 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
22581
22582 * xdisp.c (get_next_display_element, next_element_from_display_vector):
22583 Adapt to new glyph type and new glyph code encoding.
22584
22585 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
22586
22587 * indent.c (current_column, current_column_1, Fmove_to_column)
22588 (compute_motion): Adapt to new glyph code encoding.
22589
22590 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
22591
22592 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
22593
22594 * process.c (wait_reading_process_output): Check for window
22595 changes caused by timers.
22596 Suggested by Johan Bockgård.
22597
22598 2008-02-27 Glenn Morris <rgm@gnu.org>
22599
22600 * emacs.c (USAGE1): Add `--disable-font-backend'.
22601
22602 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
22603
22604 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
22605 is made to the buffer.
22606
22607 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
22608
22609 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
22610 (face_at_string_position):
22611 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
22612 (face_at_string_position):
22613 * xdisp.c (display_string, next_overlay_change):
22614 * buffer.h (overlays_at):
22615 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
22616 Update callers.
22617
22618 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
22619
22620 * editfns.c (Fformat): Doc fix.
22621
22622 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
22623
22624 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
22625 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
22626 (Ffont_otf_alternates, Fquery_font): Doc fixes.
22627
22628 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22629
22630 * buffer.c (Fbuffer_swap_text): New function.
22631 (syms_of_buffer): Defsubr it.
22632
22633 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
22634
22635 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
22636
22637 2008-02-25 Jason Rumney <jasonr@gnu.org>
22638
22639 * w32font.c (w32font_draw): Draw one character at a time when padding.
22640
22641 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
22642
22643 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
22644 Handle a nil arg. Use run_window_configuration_change_hook.
22645 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
22646 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
22647 Use run_window_configuration_change_hook.
22648
22649 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22650
22651 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
22652 1-pixel width.
22653
22654 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
22655
22656 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
22657 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
22658 if the glyph in the font is zero pixel with.
22659
22660 * dispextern.h (struct glyph_string): New member padding_p.
22661
22662 * w32font.c (w32font_draw): Pay attention to s->padding_p.
22663
22664 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
22665
22666 * xfont.c (xfont_draw): Pay attention to s->padding_p.
22667
22668 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
22669
22670 * font.c: If the font driver doesn't have `shape' function, return Qnil.
22671
22672 2008-02-25 Jason Rumney <jasonr@gnu.org>
22673
22674 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
22675
22676 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
22677
22678 Allow fine-grained image-cache flushing.
22679 * dispextern.h (struct image): Add `dependencies' field.
22680 (clear_image_caches): Change arg to Lisp_Object.
22681 * image.c (make_image): Initialize `dependencies' field.
22682 (clear_image_cache): Change arg to allow fine-grained flushing.
22683 Perform the flush even if image-cache-eviction-delay is nil.
22684 (clear_image_caches): Change arg to Lisp_Object.
22685 (Fclear_image_cache): Expand meaning of the argument.
22686 (mark_image): Mark `dependencies' field.
22687 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
22688 (lface_hash): Use XHASH rather than XFASTINT.
22689 (face_at_buffer_position): Fix int -> EMACS_INT position.
22690 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
22691 (select_frame_for_redisplay): Remove code duplication.
22692 (redisplay_internal): Adapt arg to call to clear_image_caches.
22693
22694 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
22695
22696 * s/vms4-0.h:
22697 * s/vms4-2.h:
22698 * s/vms4-4.h:
22699 * s/vms5-5.h: Remove, unused.
22700
22701 * s/irix5-2.h:
22702 * s/irix6-0.h:
22703 * s/riscos5.h:
22704 * s/mach-bsd4-3.h:
22705 * m/mips4.h: Remove files for obsolete systems.
22706
22707 * Makefile.in:
22708 * filelock.c:
22709 * unexmips.c:
22710 * m/hp9000s300.h:
22711 * m/iris4d.h:
22712 * s/aix3-1.h:
22713 * s/hpux.h:
22714 * s/msdos.h:
22715 * s/usg5-0.h:
22716 * s/usg5-2-2.h:
22717 * s/usg5-2.h:
22718 * s/usg5-3.h: Remove references to obsolete variables.
22719
22720 * s/irix5-0.h: Remove, move all the contents ...
22721 * s/irix6-5.h: ... here. Simplify.
22722 * config.in: Regenerate.
22723
22724 2008-02-24 Jason Rumney <jasonr@gnu.org>
22725
22726 * w32term.c (x_draw_glyph_string_background): Clear the background
22727 manually when cleartype is in use.
22728 (x_draw_glyph_string_foreground): Draw text transparently when
22729 cleartype is in use.
22730
22731 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
22732 a font into it unless we have to.
22733
22734 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
22735
22736 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
22737 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
22738
22739 2008-02-18 Jason Rumney <jasonr@gnu.org>
22740
22741 * w32fns.c (Fw32_shell_execute): Encode parameters.
22742
22743 2008-02-09 Eli Zaretskii <eliz@gnu.org>
22744
22745 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
22746
22747 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
22748
22749 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
22750
22751 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
22752
22753 * xterm.c (x_set_offset): Don't change the gravity if
22754 CHANGE_GRAVITY is -1.
22755
22756 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
22757
22758 * fileio.c (auto_save_error_occurred): New var.
22759 (auto_save_error): Set it.
22760 (Fdo_auto_save): Don't overwrite the error message if an auto-save
22761 error occurred.
22762
22763 2008-02-23 Eli Zaretskii <eliz@gnu.org>
22764
22765 * w32.c (globals_of_w32): Add initializations for
22766 g_b_init_get_sid_sub_authority and
22767 g_b_init_get_sid_sub_authority_count.
22768
22769 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
22770
22771 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
22772 (font_parse_xlfd): Use them for sanity check.
22773 (Finternal_set_font_style_table): Make sure the table is bijective.
22774
22775 Consolidate the image_cache to the terminal struct.
22776 * termhooks.h (P_): Remove redundant def.
22777 (struct terminal): New field `image_cache'.
22778 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
22779 of FRAME_X_IMAGE_CACHE.
22780 * xterm.h (struct x_display_info): Remove image_cache field.
22781 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
22782 * w32term.h (struct w32_display_info): Remove image_cache field.
22783 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
22784 * macterm.h (struct mac_display_info): Remove image_cache field.
22785 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
22786 * xterm.c (x_term_init):
22787 * w32term.c (w32_term_init):
22788 * macterm.c (mac_term_init): Set the image_cache in the terminal.
22789 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
22790 Remove declarations.
22791 (clear_image_caches, mark_image_cache): New declarations.
22792 * xfaces.c (clear_face_cache):
22793 * xdisp.c (redisplay_internal): Use clear_image_caches.
22794 * image.c (clear_image_cache): Don't check that a frame is on
22795 a window-system before checking if it shares the same cache.
22796 (clear_image_caches): New function.
22797 (Fclear_image_cache): Use it.
22798 (mark_image): Move from allo.c.
22799 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
22800 * alloc.c (mark_image, mark_image_cache): Move to image.c.
22801 (mark_object): Don't call mark_image_cache for frames.
22802 (mark_terminals): Call mark_image_cache.
22803
22804 * lisp.h (Fdelete_terminal): Declare.
22805
22806 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
22807 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
22808 wrong_type_argument.
22809
22810 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
22811
22812 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
22813 malayalam.el, and tamil.el. Add sinhala.el.
22814
22815 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
22816
22817 * xterm.c (x_connection_closed): Consolidate identical tests.
22818 (x_delete_terminal): Don't crash if called via x_connection_closed.
22819
22820 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
22821
22822 * xdisp.c (decode_mode_spec): New arg string.
22823 (display_mode_element): Adjust for the above change.
22824
22825 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
22826
22827 * callint.c (Fcall_interactively): Use AREF.
22828
22829 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
22830
22831 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
22832
22833 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
22834
22835 * xfns.c (Fx_show_tip): Set string to " " if empty.
22836
22837 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
22838
22839 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
22840 with Qt.
22841
22842 2008-02-17 Kenichi Handa <handa@m17n.org>
22843
22844 * ftfont.c (ftfont_shape): Return Lispy number.
22845
22846 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
22847 for GCs.
22848 (Finternal_set_font_selection_order): Call font_update_sort_order
22849 only when enable_font_backend is set.
22850 (realize_x_face): Set face->font_info to that of default face only
22851 when enable_font_backend is set.
22852
22853 * xdisp.c (handle_composition_prop): Set it->c to the fist
22854 character of the composed region.
22855 (fill_composite_glyph_string): Set base_face->font_info to
22856 s->font_info. Get a face for ascii from base_face->ascii_face.
22857 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
22858 with a face already decided.
22859 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
22860 non-negative.
22861 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
22862 call font_prepare_composition unconditionally.
22863
22864 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
22865
22866 * xterm.h (struct x_display_info): New member font.
22867
22868 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
22869 (x_set_mouse_face_gc, x_new_font): Likewise.
22870 (x_term_init): Setup display_info->font.
22871 (x_delete_terminal): Free display_info->font.
22872
22873 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
22874
22875 * ftxfont.c (ftxfont_default_fid): Delete it.
22876 (ftxfont_open): Set xfont->fid to 0.
22877 (ftxfont_end_for_frame): Clear data specific to the frame and the
22878 font-driver.
22879
22880 * xftfont.c (xftfont_default_fid): Delete it.
22881 (xftfont_open): Set xfont->fid to 0.
22882
22883 * fontset.c (FONTSET_OBJLIST): New macro.
22884 (fontset_find_font): Update font-object list of the fontset.
22885 (free_realized_fontset): New function.
22886 (free_face_fontset): Call free_realized_fontset.
22887 (Ffont_info): Call font_close_object only when enable_font_backend
22888 is set.
22889
22890 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
22891 [HAVE_NTGUI]: Include w32term.h.
22892 [MAC_OS]: Include macterm.ch.
22893 (font_otf_ValueRecord): Use make_number.
22894 (font_finish_cache): Fix handling of reference count.
22895 (font_clear_cache): Update num_fonts.
22896 (font_open_entity): Update smallest_char_width and
22897 smallest_font_height of the frame.
22898 (font_close_object): Update num_fonts.
22899 (Fclear_font_cache): Fix finding the target cache data.
22900
22901 2008-02-16 Glenn Morris <rgm@gnu.org>
22902
22903 * fontset.c (Finternal_char_font): Fix compilation warning.
22904
22905 2008-02-16 Eli Zaretskii <eliz@gnu.org>
22906
22907 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
22908 instead of char arrays. Enlarge the size of array passed to
22909 get_token_information.
22910
22911 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
22912 warnings.
22913
22914 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
22915
22916 * .gdbinit: Don't set `args', it breaks gdb --args.
22917
22918 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
22919
22920 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
22921 within a narrowed buffer.
22922
22923 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
22924
22925 * coding.c (decode_coding_object, encode_coding_object):
22926 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
22927
22928 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
22929
22930 * coding.c (coding_set_destination): Use BEG_BYTE rather than
22931 hardcoding 1.
22932 (detect_coding_system):
22933 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
22934 (string_char_to_byte, string_byte_to_char, insert_from_gap):
22935 * insdel.c (insert_from_gap):
22936 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
22937 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
22938 (string_to_multibyte):
22939 * character.c (chars_in_text, multibyte_chars_in_text):
22940 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
22941
22942 * character.h (FETCH_STRING_CHAR_ADVANCE)
22943 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
22944 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
22945 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
22946
22947 * casefiddle.c (casify_region): Only call after-change and composition
22948 functions on the part of the region that was changed.
22949
22950 * keyboard.c (read_avail_input):
22951 * frame.c (Fdelete_frame): Call Fdelete_terminal.
22952
22953 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
22954
22955 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
22956 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
22957
22958 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
22959
22960 * w32menu.c (push_submenu_start, push_submenu_end)
22961 (push_left_right_boundary, push_menu_pane, push_menu_item):
22962 * keyboard.c (read_key_sequence): Don't pass args with side effects
22963 to AREF, it fails when compiling with -DENABLE_CHECKING.
22964
22965 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
22966
22967 * Makefile.in (${lispsource}international/charprop.el):
22968 Delete this target.
22969
22970 * search.c (boyer_moore): Fix incorrect synching of the trunk and
22971 emacs-unicode-2.
22972
22973 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
22974
22975 * terminal.c (Fdelete_terminal): Clean up the `force' path.
22976
22977 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
22978
22979 * frame.c (Qnoelisp): New symbol.
22980 (syms_of_frame): Initialize it.
22981 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
22982 harmless Elisp code, from a strong `force' from x_connection_closed.
22983 * frame.h (Qnoelisp): Declare.
22984 * xterm.c (x_connection_closed): Pass `noelisp'.
22985
22986 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
22987 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
22988 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
22989 rather than `int' for the type of `type'.
22990
22991 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
22992
22993 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
22994
22995 * Makefile.in (GNUC): Remove support for gcc-1.x.
22996
22997 2008-02-10 Richard Stallman <rms@gnu.org>
22998
22999 * lisp.h (ASET): Use AREF, not ASLOT.
23000
23001 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
23002
23003 * lisp.h (ASET): Check bounds.
23004
23005 2008-02-10 Glenn Morris <rgm@gnu.org>
23006
23007 * buffer.c (mode-name): Doc fix.
23008
23009 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23010
23011 * Makefile.in:
23012 * emacs.c:
23013 * gmalloc.c:
23014 * keyboard.c:
23015 * lisp.h:
23016 * m/ibm370aix.h:
23017 * process.c:
23018 * regex.c:
23019 * s/hpux.h:
23020 * sysdep.c:
23021 * sysselect.h:
23022 * systty.h:
23023 * unexec.c:
23024 * w32term.c:
23025 * xsmfns.c:
23026 * xterm.c: Remove code that deals with obsolete variables.
23027
23028 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
23029
23030 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
23031 nothing else needs it anymore.
23032
23033 2008-02-09 Eli Zaretskii <eliz@gnu.org>
23034
23035 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
23036 instead of unibyte_char_to_multibyte.
23037
23038 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
23039
23040 * s/gnu-linux.h: Remove commented out code.
23041
23042 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
23043
23044 * Makefile.in: Update what RMS says about using autoconf.
23045 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
23046 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
23047 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
23048 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
23049
23050 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
23051
23052 * keymap.c (Fkey_description): Move side effect outside of macro call.
23053
23054 * xfaces.c (Finternal_make_lisp_face):
23055 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
23056
23057 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
23058 (syms_of_fontset): Use ASET.
23059
23060 * fns.c (concat): Move side effect outside of macro call.
23061 (hash_clear): Use ASET.
23062
23063 2008-02-08 Richard Stallman <rms@gnu.org>
23064
23065 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
23066 If FORCE, and frame has a surrogate minibuffer for another frame,
23067 delete the other frame first.
23068
23069 2008-02-07 Timo Savola <timo.savola@iki.fi>
23070
23071 * xterm.c (x_detect_focus_change): Handle embed client message.
23072 (handle_one_xevent): Ditto.
23073 (handle_one_xevent): If embedded and we get a button press/release,
23074 request focus.
23075 (xembed_set_info, xembed_send_message): New functions.
23076 (x_make_frame_visible): Call xembed_set_info if embedded.
23077 (x_make_frame_invisible): Call xembed_set_info if embedded.
23078 (x_term_init): Initialize Xatom_XEMBED.
23079 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
23080 (x_iconify_frame): Ditto.
23081
23082 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
23083 (enum xembed_info, enum xembed_message, enum xembed_focus)
23084 (enum xembed_modifier, enum xembed_accelerator): New.
23085 (xembed_set_info, xembed_send_message): Declare.
23086 (FRAME_X_EMBEDDED_P): New.
23087
23088 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
23089 gtk_plug_new.
23090
23091 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
23092 window ID of a frame.
23093 (x_window): Reparent frame if embedded.
23094 (Fx_create_frame): Don't set border width if embedded.
23095
23096 * emacs.c (USAGE3): Add --parent-id.
23097 (standard_args): Ditto.
23098
23099 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
23100
23101 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
23102
23103 2008-02-07 Jim Meyering <meyering@redhat.com>
23104
23105 Use "do...while (0)", not "if (1)...else" in macro definitions.
23106 The latter provokes a warning from gcc about the empty else, when
23107 followed by ";". Also, without that trailing semicolon, it would
23108 silently swallow up any following statement.
23109 * syntax.h (SETUP_SYNTAX_TABLE)
23110 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
23111 * buffer.h (DECODE_POSITION): Likewise.
23112 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
23113 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
23114 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
23115 (FETCH_CHAR_ADVANCE): Likewise.
23116 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
23117
23118 2008-02-07 Jim Meyering <meyering@redhat.com>
23119
23120 * lread.c [lint]: Don't include <sys/inode.h>.
23121
23122 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
23123
23124 * xselect.c (x_handle_dnd_message):
23125 * xmenu.c (digest_single_submenu, xmenu_show):
23126 * xdisp.c (with_echo_area_buffer_unwind_data)
23127 (format_mode_line_unwind_data, unwind_format_mode_line)
23128 (display_menu_bar):
23129 * eval.c (Ffetch_bytecode):
23130 * doc.c (store_function_docstring):
23131 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
23132 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
23133 * buffer.c (add_overlay_mod_hooklist): Use ASET.
23134
23135 2008-02-07 Kenichi Handa <handa@m17n.org>
23136
23137 * ftxfont.c (ftxfont_open): Don't set
23138 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
23139
23140 * ftfont.c (ftfont_open): Fix previous change.
23141
23142 2008-02-06 Jason Rumney <jasonr@gnu.org>
23143
23144 * w32font.c (w32font_text_extents): Fill in lbearing metric.
23145 Use cached metrics for ASCII characters.
23146 (w32font_open_internal): Don't set font's owning_frame.
23147 Cache metrics for ASCII characters.
23148
23149 * w32font.h (struct w32font_info): Add ascii_metrics.
23150 Remove owning_frame.
23151
23152 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
23153
23154 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
23155 to negative value.
23156
23157 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
23158
23159 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
23160
23161 * charset.c (syms_of_charset): Set QCtest and Qeq.
23162
23163 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
23164
23165 * process.c (Fstart_process):
23166 * callproc.c (Fcall_process): Handle the case where
23167 Funhandled_file_name_directory returns nil.
23168
23169 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
23170 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
23171 * font.c (check_gstring): Use them and AREF to access the vector before
23172 we know it's really a gstring.
23173 (Ffont_shape_text): Fix typo.
23174 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
23175
23176 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
23177 Declare.
23178
23179 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
23180
23181 2008-02-05 Jason Rumney <jasonr@gnu.org>
23182
23183 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
23184 Set smallest_font_height and smallest_char_width in display info.
23185
23186 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
23187
23188 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
23189
23190 2008-02-05 Miles Bader <miles@gnu.org>
23191
23192 * xfaces.c (get_lface_attributes, merge_named_face)
23193 (lookup_named_face, lookup_derived_face, realize_named_face):
23194 Revert 2008-02-01 change by cyd@stupidchicken.com.
23195
23196 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
23197
23198 * fontset.c (Ffontset_info): Handle the case of inhibitting the
23199 fallback fonts.
23200 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
23201
23202 2008-02-04 Jason Rumney <jasonr@gnu.org>
23203
23204 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
23205 set full_name.
23206 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
23207
23208 2008-02-03 Jason Rumney <jasonr@gnu.org>
23209
23210 * makefile.w32-in (OBJ1): Include font.o here.
23211 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
23212
23213 2008-02-02 Jason Rumney <jasonr@gnu.org>
23214
23215 * makefile.w32-in (temacs): Bump EMHEAP to 21.
23216
23217 2008-02-01 Jason Rumney <jasonr@gnu.org>
23218
23219 * s/cygwin.h: Define VIRT_ADDR_VARIES.
23220
23221 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
23222
23223 2008-02-01 Andreas Schwab <schwab@suse.de>
23224
23225 * Makefile.in (shortlisp, lisp): Update for rename of
23226 ../lisp/language/myanmar.el.
23227
23228 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
23229
23230 * xfaces.c (get_lface_attributes): Delete function.
23231 (merge_named_face, lookup_named_face, lookup_derived_face)
23232 (realize_named_face): Call lface_from_face_name directly, and use
23233 the fact that merge_face_vectors does not alter its FROM argument.
23234
23235 2008-02-01 Jason Rumney <jasonr@gnu.org>
23236
23237 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
23238 input in the default locale. Handle non-Unicode multibyte input.
23239
23240 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23241
23242 * fontset.c (reorder_font_vector): Exclude nil elements from the
23243 font group. Don't try multiple fonts.
23244 (fontset_font): Adjust for the above change.
23245 (Finternal_char_font): Return nil if the found font doesn't
23246 contain the character ch.
23247
23248 * Makefile.in (lisp, shortlisp): Add cham.el.
23249
23250 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23251
23252 * font.h (FONTP): Make it return 1 also for a font-object.
23253
23254 * .gdbinit (xfontset): New function.
23255
23256 * font.c (font_find_for_lface): Check if the character C is
23257 supported or not only for the first font.
23258
23259 * fontset.c (reorder_font_vector): Fix typo.
23260 (fontset_find_font): Don't add a font-spec specifying a script.
23261 Use 0 (not Qt) for the indication of empty font-group. Change the
23262 format of RFONT-DEF. Return Qt if no font in the font-group
23263 support the character.
23264 (fontset_font): Adjust for the above change. If no font was
23265 found the character, remember that.
23266 (face_for_char): Adjust for the change of RFONT-DEF.
23267 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
23268 no font for the target.
23269 (Finternal_char_font): Adjust for the change of RFONT-DEF.
23270
23271 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23272
23273 * font.c (font_load_for_face): Handle the case that the font in
23274 face->lface is a string.
23275
23276 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23277
23278 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
23279
23280 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23281
23282 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
23283 Fix previous change. If the frame is not on a window system,
23284 signal an error.
23285
23286 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23287
23288 * coding.c (decode_coding_object, encode_coding_object):
23289 Adjust marker positions after conversion.
23290
23291 * lisp.h (struct Lisp_Marker): New member need_adjustment.
23292
23293 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23294
23295 * font.c (font_find_for_lface): Fix the handling of the return
23296 value of font_has_char.
23297 (Ffont_shape_text): Fix previous change.
23298
23299 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
23300 (fontset_ref_and_range): Delete it.
23301 (fontset_find_font): Call char_table_ref_and_range instead of
23302 FONTSET_REF_AND_RANGE.
23303 (make_fontset): Don't setup font groups of Latin here.
23304 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
23305 (new_fontset_from_font): Make the specified font the default for
23306 all Latin characters.
23307
23308 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23309
23310 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
23311 is on a window system before accessing the fontset of the frame.
23312
23313 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23314
23315 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
23316
23317 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
23318 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
23319
23320 * font.c (Ffont_shape_text): If the font driver doesn't have a
23321 shaper function, make zero-width glyphs to have at least one-pixel
23322 width. Fix setting of `to' field of glyphs.
23323
23324 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23325
23326 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
23327 glyphs.
23328
23329 * font.h (struct font_driver): Improve docstring of member `shape'.
23330
23331 2008-02-01 Kenichi Handa <handa@m17n.org>
23332
23333 * composite.c (syms_of_composite): Fix docstring of
23334 auto-composition-function.
23335
23336 * font.h (LGLYPH_SIZE): New macro.
23337
23338 * font.c (Ffont_fill_gstring): Stop filling when a character not
23339 supported by the font is found.
23340 (Ffont_shape_text): When a shape callback function returns nil,
23341 try at most two more times with larger gstring.
23342 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
23343
23344 * xdisp.c (handle_auto_composed_prop): Change the argument to
23345 auto-composition-function.
23346
23347 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
23348 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
23349 Lispy glyph and store it in the lgstring.
23350
23351 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
23352
23353 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
23354
23355 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23356
23357 * font.c (Ffont_shape_text): Avoid unnecessary composition.
23358
23359 * fontset.c (Vfont_encoding_charset_alist): New variable.
23360 (syms_of_fontset): DEFVAR it.
23361 (reorder_font_vector, fontset_find_font): Optimize for the case of
23362 no need of reordering.
23363 (face_for_char): Map the charset property by
23364 Vfont_encoding_charset_alist.
23365
23366 2008-02-01 Jason Rumney <jasonr@gnu.org>
23367
23368 * w32font.c (logfonts_match): Don't check adstyle here.
23369 (font_matches_spec): Check here against physical font instead.
23370 (add_font_entity_to_list): Avoid some substitutions.
23371
23372 * font.c (font_parse_fcname): Default weight and slant to normal.
23373 (font_score): Prefer normal fonts if weight or slant unspecified.
23374 (font_score) [WINDOWSNT]: Scale weight difference down to closer
23375 match freetype scores.
23376
23377 2008-02-01 Jason Rumney <jasonr@gnu.org>
23378
23379 * w32font.c (w32font_text_extents): Don't use the frame stored in the
23380 font, as it may have been deleted.
23381 (w32_enumfont_pattern_entity): Map generic family to adstyle using
23382 most common hyphenless variation.
23383 (logfonts_match): Check generic family.
23384 (font_matches_spec): Don't check generic family here.
23385 (fill_in_logfont): Set generic family based on adstyle.
23386
23387 * w32font.h (w32font_get_cache): Update declaration.
23388
23389 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23390
23391 * ftfont.c (ftfont_get_cache): Adjust the argument type.
23392
23393 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
23394 If none of the new drivers are available, call font_update_drivers
23395 with the old drivers.
23396
23397 * w32font.c (w32font_get_cache): Adjust the argument type.
23398
23399 * xfont.c (xfont_get_cache): Adjust the argument type.
23400
23401 * font.h (struct font_driver): Change argument type of get_cache.
23402
23403 * xftfont.c (xftfont_start_for_frame): Delete prototype.
23404
23405 * font.c (Ffont_get): Fix arguments to Fassoc.
23406 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
23407 (font_clear_cache): New function.
23408 (font_list_entities, font_matching_entity): Use font_get_cache.
23409 (font_update_drivers): Call font_clear_cache when finishing a driver.
23410
23411 * fontset.c (fontset_find_font): Fix previous change.
23412
23413 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23414
23415 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
23416 dpyinfo->font_table.
23417 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
23418 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
23419
23420 * font.c (font_at): Handle the case that the arg C is negative.
23421 Handle the unibyte case.
23422 (Ffont_at): Call font_at with the arg C -1.
23423
23424 * xdisp.c (handle_auto_composed_prop): Don't get a character at
23425 the position here, and call font_at with the arg C -1.
23426 Don't check the range of the existing composition at the point.
23427
23428 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23429
23430 * fontset.c (fontset_add): New args charset_id and family.
23431 Change caller.
23432 (load_font_get_repertory, fontset_find_font): Assume that
23433 font_spec is always a font-spec object.
23434 (Fset_fontset_font): Always store a font-spec object in a fontset.
23435
23436 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
23437 instead of get_property_and_range.
23438
23439 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23440
23441 * xftfont.c (struct xftfont_info): Delete the member ft_face.
23442 (xftfont_open): Don't keep locking face.
23443 (xftfont_close): Don't unlock face.
23444 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
23445
23446 * fontset.c (fontset_find_font): Don't prefer a font of
23447 supplementary charset.
23448
23449 2008-02-01 Kenichi Handa <handa@m17n.org>
23450
23451 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
23452 script, langsys_tag to langsys, new member script.
23453 (OTF_TAG_STR): Terminate by '\0'.
23454 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
23455 listing to the script specified in that property. Fix arg to
23456 OTF_check_features.
23457
23458 2008-02-01 Jason Rumney <jasonr@gnu.org>
23459
23460 * w32font.h: New file.
23461
23462 * w32font.c: Include it.
23463 (struct w32font_info): Add owning_frame field. Move to w32font.h.
23464 (w32font_open): Set owning_frame.
23465 (w32font_text_extents): Use owning_frame.
23466 (struct font_callback_data): Add opentype_only field.
23467 (add_font_entity_to_list): Use it to filter fonts.
23468 Don't check against full name.
23469 (w32font_list_internal): New function.
23470 (w32font_list): Use it.
23471 (w32font_match_internal): New function.
23472 (w32font_match): Use it.
23473 (w32font_open_internal): New function.
23474 (w32font_open): Use it.
23475 (w32font_get_cache, w32font_close, w32font_has_char)
23476 (w32font_encode_char, w32font_text_extents, w32font_draw):
23477 Make non-static.
23478
23479 * makefile.w32-in (w32font.o): Depend on w32font.h.
23480
23481 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23482
23483 * charset.c (Fdefine_charset_internal): Record a supplementary
23484 charset at the tail of Vcharset_order_list.
23485
23486 * font.c (Ffont_shape_text): Fix the return value.
23487
23488 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
23489
23490 * xdisp.c (handle_auto_composed_prop): Fix previous change.
23491
23492 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23493
23494 * ftfont.c (struct OpenTypeSpec): New struct.
23495 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
23496 (ftfont_get_open_type_spec): New function.
23497 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
23498
23499 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
23500
23501 2008-02-01 Jason Rumney <jasonr@gnu.org>
23502
23503 * w32font.c (add_font_entity_to_list): Compare only the beginning
23504 of full name.
23505
23506 2008-02-01 Kenichi Handa <handa@m17n.org>
23507
23508 * xdisp.c (handle_auto_composed_prop): Simplify the code.
23509 Never return HANDLED_RECOMPUTE_PROPS.
23510
23511 2008-02-01 Kenichi Handa <handa@m17n.org>
23512
23513 * font.c (font_gstring_produce): Delete it.
23514
23515 * composite.h (COMPOSITION_METHOD):
23516 Handle COMPOSITION_WITH_GLYPH_STRING.
23517
23518 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23519
23520 * xfont.c (Qx): Delete.
23521 (syms_of_xfont): Don't initialize Qx.
23522
23523 * composite.h (enum composition_method):
23524 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
23525
23526 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23527
23528 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
23529 (choose_face_font): Accept new form of font-spec.
23530
23531 * frame.h (font_driver_list): Declare it unconditionally.
23532 (struct frame): Define members font_driver_list and font_data_list
23533 unconditionally.
23534
23535 * fontset.c: Include "font.h" unconditionally.
23536 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
23537 (Fset_fontset_font): Accept a font-spec object.
23538
23539 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
23540 PIXEL_SIZE part a wild card.
23541
23542 * dispextern.h (struct glyph_string): Define members clip and
23543 num_clips unconditionally.
23544 (struct face): Define members font_info and extra unconditionally.
23545
23546 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
23547 ftfont_info only when HAVE_LIBOTF is defined.
23548
23549 2008-02-01 Andreas Schwab <schwab@suse.de>
23550
23551 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
23552 and end.
23553
23554 2008-02-01 Jason Rumney <jasonr@gnu.org>
23555
23556 * w32font.c (w32font_driver): Add new fields.
23557
23558 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23559
23560 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
23561 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
23562 (LIBES): Add @M17N_FLT_CFLAGS@.
23563
23564 * composite.c (compose_text): Don't treat the new style
23565 composition specially.
23566
23567 * emacs.c (main): Call syms_of_font unconditionally.
23568
23569 * font.h (FONT_ENTITY_NOT_LOADABLE)
23570 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
23571 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
23572 (struct font_driver): New member shape.
23573 (font_registry_charsets): Extern it.
23574 (font_find_for_lface, font_prepare_composition): Adjust prototype.
23575 (font_otf_capability, font_drive_otf): Delete their externs.
23576
23577 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
23578 (font_charset_alist, font_registry_charsets): Move from xfont.c
23579 and rename.
23580 (font_prop_validate_otf): New function.
23581 (font_property_table): Register it for QCotf.
23582 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
23583 (font_drive_otf): Delete.
23584 (font_prepare_composition): New arg F. Adjust for the change of
23585 lispy gstring.
23586 (font_find_for_lface): New arg C.
23587 (font_load_for_face): Adjust for the change of font_find_for_lface.
23588 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
23589 lispy gstring.
23590 (Ffont_shape_text): New function.
23591 (Fopen_font): If the font size is not given, use 12-pixel.
23592 (Ffont_at): New arg STRING.
23593 (syms_of_font): Initialize font_charset_alist.
23594 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
23595 conditionally.
23596
23597 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
23598 fonts of the same font-spec. Change the format of RFONT-DEF.
23599 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
23600 Adjust for the change of RFONT-DEF.
23601 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
23602
23603 * ftfont.h: New file.
23604
23605 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
23606 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23607 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23608 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
23609 font_otf_capability and font_drive_otf, set ftfont_shape.
23610 (ftfont_list): Adjust for the change of :otf property value.
23611 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
23612 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
23613 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
23614 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23615 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
23616 (otf_gstring, gstring, m17n_flt_initialized): New variables.
23617
23618 * w32term.c (x_draw_composite_glyph_string_foreground):
23619 Adjust for the change of lispy gstring.
23620
23621 * xdisp.c (handle_composition_prop): Adjust for the change of
23622 lispy gstring. Call a function for auto-composition with the
23623 third arg it->window.
23624 (fill_composite_glyph_string): Adjust for the change of lispy string.
23625 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
23626
23627 * xfaces.c (set_font_frame_param): Adjust for the change of
23628 font_find_for_lface.
23629
23630 * xfont.c (x_font_charset_alist): Move to font.c and rename.
23631 (xfont_registry_charsets): Likewise. Change caller.
23632 (syms_of_xfont): Don't handle x_font_charset_alist.
23633
23634 * xftfont.c: Include "ftfont.h".
23635 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
23636 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
23637 (xftfont_close) [HAVE_LIBOTF]: Close otf.
23638 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
23639 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
23640 Set xftfont_driver.shape to xftfont_shape.
23641
23642 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
23643 the change of lispy gstring.
23644
23645 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23646
23647 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
23648
23649 2008-02-01 Jason Rumney <jasonr@gnu.org>
23650
23651 * w32font.c (w32font_draw): Fill background manually.
23652
23653 2008-02-01 Jason Rumney <jasonr@gnu.org>
23654
23655 * font.c (Qfontp): Remove unused symbol.
23656 (QCantialias): New symbol.
23657 (syms_of_font): Define it.
23658 (font_property_table): Set a validator for QCantialias.
23659
23660 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
23661 Define if not already.
23662 (QCfamily): Share with xfaces.c.
23663 (Qstandard, Qsubpixel, Qnatural): New symbols.
23664 (syms_of_w32font): Define them. Don't define QCfamily here.
23665 (w32_antialias_type, lispy_antialias_type): New functions.
23666 (w32_enumfont_pattern_entity): New arg requested_font.
23667 Set antialias parameter if non-default was requested.
23668 (fill_in_logfont): Fill in lfQuality if :antialias specified.
23669
23670 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23671
23672 * lread.c (read1): Undo the previous change.
23673
23674 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
23675
23676 * frame.c (Fdelete_frame): Call font_update_drivers only when
23677 USE_FONT_BACKEND is defined.
23678
23679 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23680
23681 * font.h (struct font_bitmap): New member bits_per_pixel.
23682 (struct font_driver): New members start_for_frame and end_for_frame.
23683 (struct font_data_list): New struct.
23684 (font_put_frame_data, font_get_frame_data): Extern them.
23685
23686 * frame.h (struct frame): New member font_data_list.
23687
23688 * font.c (font_update_drivers): Call driver->start_for_frame and
23689 driver->end_for_frame at proper timings.
23690 (font_put_frame_data, font_get_frame_data): New functions.
23691 (Ffont_spec): Add usage in the docstring.
23692
23693 * frame.c (make_frame): Initialize f->font_data_list to NULL.
23694 (Fdelete_frame): Call font_update_drivers.
23695
23696 * xftfont.c (struct xftface_info): Delete the member xft_draw.
23697 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
23698 (xftfont_get_xft_draw): New function.
23699 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
23700 (xftfont_end_for_frame): New function.
23701 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
23702
23703 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
23704 Change argument. Cache GCs in the per-frame data.
23705 (struct ftxfont_frame_data): New struct.
23706 (ftxfont_draw_bitmap): New arg gc_fore and flush.
23707 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
23708 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
23709 (ftxfont_end_for_frame): New function.
23710 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
23711
23712 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
23713
23714 2008-02-01 Kenichi Handa <handa@m17n.org>
23715
23716 * xselect.c (Vselection_coding_system)
23717 (Vnext_selection_coding_system): Delete them.
23718 (syms_of_xselect): Don't declare selection-coding-system and
23719 next-selection-coding-system. They are declared in select.el.
23720
23721 2008-02-01 Jason Rumney <jasonr@gnu.org>
23722
23723 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
23724
23725 * w32fns.c: Include imm.h.
23726 (get_composition_string_fn, get_ime_context_fn): New optional
23727 system functions.
23728 (globals_of_w32fns): Load them from imm32.dll.
23729 (ignore_ime_char): New flag.
23730 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
23731 WM_IME_ENDCOMPOSITION messages.
23732
23733 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
23734 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
23735
23736 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23737
23738 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
23739 (READCHAR_REPORT_MULTIBYTE): New macro.
23740 (readchar): New 2nd arg MULTIBYTE.
23741 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
23742 Make symbol's name multibyte according to the multibyteness of the
23743 source.
23744
23745 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23746
23747 * xfaces.c (face_for_overlay_string): Call lookup_face with
23748 correct arguments (fix of synching with the trunk).
23749
23750 2008-02-01 Kenichi Handa <handa@m17n.org>
23751
23752 * font.c (font_prop_validate_symbol, font_prop_validate_style)
23753 (font_prop_validate_non_neg, font_prop_validate_spacing):
23754 Delete argument prop_index.
23755 (font_property_table): Change arguments to validater. Change Callers.
23756 (font_lispy_object): Delete.
23757 (font_at): Use font_find_object instead fo font_lispy_object.
23758
23759 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
23760
23761 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
23762 and file names.
23763
23764 2008-02-01 Jason Rumney <jasonr@gnu.org>
23765
23766 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
23767 (font_matches_spec): Remove debug output.
23768 (add_font_entity_to_list): Avoid using substituted fonts.
23769
23770 2008-02-01 Jason Rumney <jasonr@gnu.org>
23771
23772 * doc.c (Fsnarf_documentation):
23773 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
23774
23775 2008-02-01 Miles Bader <miles@gnu.org>
23776
23777 * dispextern.h (struct glyph_row): Only define "clip" field if
23778 HAVE_WINDOW_SYSTEM is defined.
23779
23780 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
23781
23782 Fix up multi-tty merge.
23783
23784 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
23785 and indentation.
23786
23787 * xfaces.c (free_realized_face, clear_face_gcs):
23788 Include font_done_for_face in the input_blocked section, just in case.
23789
23790 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
23791 (get_char_face_and_encoding): Undo last change and remove the *other*
23792 duplicate definition (i.e. keep the one that's better scoped and that
23793 includes code for the font-backend).
23794
23795 * terminal.c (create_terminal): Default keyboard_coding to
23796 `no-conversion' and terminal_coding to `undecided'.
23797
23798 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
23799
23800 * fontset.c (free_realized_fontsets): Check that the table entry does
23801 contain a fontset before trying to compare it to `base'.
23802
23803 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
23804 syms_of_charset, and syms_of_coding earlier because init_window_once
23805 now needs Vcoding_system_hash_table to be setup.
23806
23807 * coding.h (default_buffer_file_coding): Remove.
23808
23809 * coding.c (default_buffer_file_coding): Remove.
23810 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
23811 than ->symbol, and use the terminal-local coding system.
23812 (syms_of_coding): Don't setup the coding-systems that are not
23813 terminal-local.
23814 (Fdefine_coding_system_internal): Use XCAR/XCDR.
23815
23816 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
23817 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
23818
23819 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
23820 in chartab.c and were re-added here by mistake.
23821 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
23822
23823 * doc.c (Fsnarf_documentation):
23824 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
23825 src to etc.
23826
23827 * ChangeLog.10: Add mistakenly removed entry.
23828
23829 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
23830
23831 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
23832
23833 2008-02-01 Miles Bader <miles@gnu.org>
23834
23835 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
23836 Add extra args to FACE_FOR_CHAR.
23837
23838 2008-02-01 Kenichi Handa <handa@m17n.org>
23839
23840 * keymap.c (where_is_internal_1): If key is a cons, store the copy
23841 in sequence.
23842
23843 * chartab.c (map_sub_char_table, map_char_table): If the range
23844 contains just one character, call the function with that character
23845 even if the depth is not 3.
23846
23847 2008-02-01 Jason Rumney <jasonr@gnu.org>
23848
23849 * w32font.c (w32font_text_extents): Calculate metrics for the
23850 whole string.
23851
23852 2008-02-01 Jason Rumney <jasonr@gnu.org>
23853
23854 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
23855
23856 2008-02-01 Jason Rumney <jasonr@gnu.org>
23857
23858 * w32term.c (x_set_glyph_string_clipping):
23859 Use get_glyph_string_clip_rects.
23860 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
23861 Adjust for the change of struct glyph_string.
23862
23863 * w32font.c (w32font_draw): Do clipping here.
23864
23865 2008-02-01 Kenichi Handa <handa@m17n.org>
23866
23867 * xftfont.c (xftfont_draw): Adjust for the change of struct
23868 glyph_string.
23869
23870 * xterm.c (x_set_glyph_string_clipping):
23871 Use get_glyph_string_clip_rects.
23872 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
23873 Adjust for the change of struct glyph_string.
23874
23875 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
23876 the resulting clip(s}.
23877 (expose_overlaps): Add arg r. Change callers. Set it to
23878 row->clip temporarily.
23879 (expose_window): Redraw rows overlapping the exposed area.
23880
23881 * dispextern.h (struct glyph_row): New member clip.
23882 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
23883 clip_height, new member clip, and num_clips.
23884
23885 2008-02-01 Kenichi Handa <handa@m17n.org>
23886
23887 * data.c (Fchar_or_string_p): Fix docstring.
23888
23889 2008-02-01 Kenichi Handa <handa@m17n.org>
23890
23891 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
23892 create a temporary XftDraw object.
23893
23894 2008-02-01 Kenichi Handa <handa@m17n.org>
23895
23896 * font.c (Ffontp): Fix docstring.
23897
23898 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
23899 strong evidence of ISO-2022.
23900
23901 2008-02-01 Kenichi Handa <handa@m17n.org>
23902
23903 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
23904 SYNTAX_ENTRY_FOLLOW_PARENT.
23905
23906 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
23907
23908 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
23909 its type.
23910 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
23911 Update to the new type of weak_hash_tables and next_weak.
23912
23913 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
23914 a plain C pointer to Lisp_Hash_Table.
23915
23916 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
23917 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
23918 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
23919 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
23920 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
23921 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
23922 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
23923 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
23924 (GC_EQ): Remove since they've been identical to their non-GC_
23925 alter-egos ever since the markbit was eradicated.
23926
23927 * alloc.c:
23928 * buffer.c:
23929 * buffer.h:
23930 * data.c:
23931 * fileio.c:
23932 * filelock.c:
23933 * fns.c:
23934 * frame.h:
23935 * lisp.h:
23936 * macterm.c:
23937 * print.c:
23938 * process.c:
23939 * w32fns.c:
23940 * w32menu.c:
23941 * w32term.c:
23942 * xfns.c:
23943 * xmenu.c:
23944 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
23945
23946 2008-02-01 Kenichi Handa <handa@m17n.org>
23947
23948 * chartab.c (map_sub_char_table): Make it work for the top-level
23949 char-table. Fix handling of parent char-table.
23950 (map_char_table): Adjust for the above change.
23951
23952 2008-02-01 Jason Rumney <jasonr@gnu.org>
23953
23954 * w32font.c (Qgdi): Rename from Qw32.
23955
23956 2008-02-01 Jason Rumney <jasonr@gnu.org>
23957
23958 * w32bdf.c (get_quoted_string): Make function static.
23959
23960 2008-02-01 Kenichi Handa <handa@m17n.org>
23961
23962 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
23963 bigger ascent and descent than those of the font, use them as
23964 font's ascent and descent.
23965
23966 2008-02-01 Kenichi Handa <handa@m17n.org>
23967
23968 * Makefile.in (${lispsource}international/charprop.el): Move this
23969 target within "#ifdef HAVE_UNIDATA" and "#endif".
23970
23971 2008-02-01 Kenichi Handa <handa@m17n.org>
23972
23973 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
23974 (shortlisp): Add ../lisp/language/tai-viet.el.
23975
23976 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
23977
23978 * Makefile.in (${lispsource}international/charprop.el): Depend on
23979 temacs${EXEEXT}.
23980
23981 2008-02-01 Jason Rumney <jasonr@gnu.org>
23982
23983 * w32font.c (w32font_close): Delete the GDI font object.
23984
23985 * w32menu.c: Include character.h.
23986
23987 * w32proc.c: Likewise.
23988
23989 * w32select.c: Likewise.
23990
23991 * makefile.w32-in (w32proc.o): Depend on character.h.
23992
23993 2008-02-01 Jason Rumney <jasonr@gnu.org>
23994
23995 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
23996
23997 * w32menu.c (syms_of_w32menu): Likewise.
23998
23999 * w32proc.c (syms_of_ntproc): Likewise.
24000
24001 * w32select.c (syms_of_w32select): Likewise.
24002
24003 * w32term.c (syms_of_w32term): Likewise.
24004
24005 2008-02-01 Jason Rumney <jasonr@gnu.org>
24006
24007 * w32font.c (w32font_draw): Delete brush after using it.
24008
24009 2008-02-01 Jason Rumney <jasonr@gnu.org>
24010
24011 * w32font.c (w32font_open): Don't set font_idx.
24012 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
24013 to font settings.
24014 (w32font_draw): Fill background explicitly.
24015
24016 2008-02-01 Jason Rumney <jasonr@gnu.org>
24017
24018 * w32term.c (w32_initialize): Don't call w32font_initialize.
24019
24020 * w32font.c (w32font_info): Remove subranges.
24021 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
24022 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
24023 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
24024 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
24025 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
24026 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
24027 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
24028 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
24029 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
24030 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
24031 New symbols.
24032 (font_callback_data): New struct.
24033 (w32font_list, w32font_match): Use it.
24034 (w32font_open): Don't populate subranges.
24035 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
24036 (w32font_encode_char): Always return unicode code-point as-is.
24037 (w32font_text_extents): Supply a transformation matrix to
24038 GetGlyphOutline. Never look up by glyph index. Avoid looping
24039 twice. Use unicode version of GetTexExtentPoint32 instead of
24040 glyph index version.
24041 (set_fonts_frame): Remove.
24042 (w32_enumfont_pattern_entity): Add frame parameter, use it to
24043 set frame parameter. Use backward compatible fake foundries.
24044 Save generic family in extra slot under QCfamily. Make width slot
24045 constant. Save QCspacing value. Save list of scripts instead of
24046 binary subranges.
24047 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
24048 (add_font_entity_to_list): Use font_callback_data struct.
24049 Filter unwanted fonts.
24050 (add_one_font_entity_to_list): Use font_callback_data struct.
24051 (w32_registry): Default to iso10646_1.
24052 (fill_in_logfont): Use dpi from extra slot. Don't bother with
24053 string font registries. Don't fill in font name if it is a generic
24054 family name, fill family instead. Use spacing, family and script
24055 extra info to fill pitch, family and charset fields.
24056 (list_all_matching_fonts): Use font_callback_data struct.
24057 (unicode_range_for_char): Remove.
24058 (font_supported_scripts): New function.
24059 (w32font_initialize): Remove.
24060 (syms_of_w32font): Update which symbols are defined.
24061
24062 2008-02-01 Jason Rumney <jasonr@gnu.org>
24063
24064 * font.c (font_pixel_size): Reverse assq_no_quit args.
24065
24066 * w32term.h (FONT_WIDTH): Report max width, not average.
24067 (FONT_MAX_WIDTH): Remove.
24068 (FONT_AVG_WIDTH): New macro.
24069
24070 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
24071 redefinition of FONT_WIDTH.
24072
24073 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
24074 (w32_cache_char_metrics): Use FONT_WIDTH.
24075
24076 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
24077
24078 2008-02-01 Jason Rumney <jasonr@gnu.org>
24079
24080 * w32font.c (w32font_open): Make lfHeight negative.
24081
24082 * w32fns.c (x_default_font_parameter): Use new style font name.
24083 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
24084
24085 2008-02-01 Jason Rumney <jasonr@gnu.org>
24086
24087 * w32font.c (QCsubranges): New symbol.
24088 (w32font_open, w32font_has_char): Get subranges from subproperty
24089 of extra.
24090 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
24091 (syms_of_w32font): Define :subranges symbol.
24092
24093 * font.c (font_put_extra): Expose externally.
24094
24095 * font.h (font_put_extra): Move declaration from font.c.
24096
24097 * font.c (Ffont_get): Use font driver to determine otf capability.
24098 (adjust_anchor): Check if driver defines anchor_point before using.
24099
24100 * w32font.c (w32font_open): Handle size, height and pixel_size better.
24101 (w32font_draw): Use options.
24102 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
24103 Fix detection of truetype fonts.
24104 (registry_to_w32_charset): Handle charsets other than iso8859-1
24105 expressed as lisp symbols.
24106 (w32_registry): Express charset as lisp symbol.
24107 (fill_in_logfont): Reverse pixel and point height logic.
24108 Don't set width here. Set quality to default.
24109
24110 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
24111 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
24112
24113 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24114 Remove redundant loop and allocation.
24115
24116 * makefile.w32-in (font.o, w32font.o): New objects.
24117 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
24118 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
24119
24120 * xdisp.c (fill_composite_glyph_string): Make the first arg to
24121 STORE_XCHARB a valid l-value.
24122
24123 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
24124 calculations for non-Truetype fonts.
24125 (x_draw_glyph_string): Sync with xterm.c.
24126 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
24127 Remove redundant code.
24128 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
24129
24130 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
24131 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
24132
24133 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
24134 (x_to_w32_charset, w32_to_x_charset): Expose externally.
24135
24136 * w32font.c: New file for w32 font backend.
24137
24138 2008-02-01 Kenichi Handa <handa@m17n.org>
24139
24140 * term.c: Don't include "buffer.h" twice.
24141
24142 2008-02-01 Kenichi Handa <handa@m17n.org>
24143
24144 * character.c (Funibyte_string): New function.
24145 (syms_of_character): Defsubr it.
24146
24147 2008-02-01 Jason Rumney <jasonr@gnu.org>
24148
24149 * w32term.c [USE_FONT_BACKEND]:
24150 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
24151 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
24152 (x_draw_glyph_string, x_draw_glyph_string_foreground)
24153 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
24154 (x_free_frame_resources): Sync with xterm.c.
24155
24156 2008-02-01 Andreas Schwab <schwab@suse.de>
24157
24158 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
24159 char-table size.
24160
24161 2008-02-01 Kenichi Handa <handa@m17n.org>
24162
24163 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
24164
24165 2008-02-01 Kenichi Handa <handa@m17n.org>
24166
24167 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
24168 font_otf_gpos, add font_drive_otf.
24169
24170 * fontset.c (fontset_find_font): Pay attention to font size
24171 specified for a font.
24172 (reorder_font_vector): Check contents of font_def.
24173
24174 * font.c (struct otf_list): Delete it.
24175 (otf_list): Make it a lisp variable.
24176 (otf_open): Use lispy otf_list.
24177 (generate_otf_features): Rename from parse_gsub_gpos_spec.
24178 (check_otf_features): New function.
24179 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
24180 New functions.
24181 (font_drive_otf): New function merging font_otf_gsub and
24182 font_otf_gpos.
24183 (font_open_for_lface): New arg spec. Change argument order.
24184 (font_load_for_face): Adjust for the change of font_open_for_lface.
24185 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
24186 Ffont_otf_gpos.
24187 (syms_of_font): Staticpro otf_list. Delete defsubr of
24188 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
24189
24190 * xfaces.c (set_font_frame_param): Adjust for the change of
24191 font_open_for_lface.
24192
24193 * font.h (font_open_for_lface): Adjust prototype.
24194 (struct font_driver): Delete members otf_gsub and otf_gpos, add
24195 member otf_drive.
24196 (font_otf_gsub, font_otf_gpos): Delete externs.
24197 (font_drive_otf): Extern it.
24198
24199 2008-02-01 Kenichi Handa <handa@m17n.org>
24200
24201 * font.c (font_at): If the window W is not on a window system,
24202 return Qnil.
24203
24204 * coding.c (produce_chars, encode_coding): Don't call
24205 insert_from_gap if no characters to produce.
24206
24207 2008-02-01 Kenichi Handa <handa@m17n.org>
24208
24209 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
24210 Fclear_face_cache.
24211
24212 * xfaces.c (face_for_font): Check also face->font==font->font.font.
24213
24214 2008-02-01 Miles Bader <miles@gnu.org>
24215
24216 * emacs.c (main): Change default value of `enable_font_backend' to 1.
24217 Parse "--disable-font-backend" option.
24218 (standard_args): Add "--disable-font-backend" option.
24219
24220 2008-02-01 Kenichi Handa <handa@m17n.org>
24221
24222 * fontset.c (fontset_find_font): New function.
24223 (fontset_font): Use fontset_find_font.
24224 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
24225 Register the specified font for all Latin characters.
24226 (new_fontset_from_font): Register the specified font for all Latin
24227 characters.
24228 (dump_fontset): For a realized fontset, include the base fontset
24229 name in the returned vector.
24230
24231 2008-02-01 Kenichi Handa <handa@m17n.org>
24232
24233 * character.h (CHAR_STRING): Cast C to unsigned on calling
24234 char_string.
24235
24236 * character.c (char_string): Type of arg C changed to unsigned.
24237 Signal an error if C is an invalid character code.
24238
24239 * editfns.c (general_insert_function, Fchar_to_string):
24240 Use CHARACTERP, not INTEGERP.
24241
24242 2008-02-01 Kenichi Handa <handa@m17n.org>
24243
24244 * character.h (MIN_MULTIBYTE_LEADING_CODE)
24245 (MAX_MULTIBYTE_LEADING_CODE): New macros.
24246
24247 * regex.c (analyse_first): Fix for multibyte characters in "case
24248 charset:" and "case categoryspec:".
24249
24250 2008-02-01 Andreas Schwab <schwab@suse.de>
24251
24252 * Makefile.in (LIBES): Move standard libraries to the end.
24253
24254 2008-02-01 Kenichi Handa <handa@m17n.org>
24255
24256 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
24257 nonzero, don't shrink the buffer nextb.
24258
24259 * buffer.h (struct buffer_text): New member inhibit_shrinking.
24260
24261 * coding.c (coding_alloc_by_making_gap): New arg offset.
24262 (alloc_destination): Call coding_alloc_by_making_gap with the arg
24263 offset.
24264 (decode_coding_iso_2022): Update coding->safe_charsets.
24265 (decode_coding_gap): Temporarily set
24266 current_buffer->text->inhibit_shrinking to 1.
24267
24268 2008-02-01 Kenichi Handa <handa@m17n.org>
24269
24270 * xterm.c (x_draw_composite_glyph_string_foreground):
24271 Fix indexing into elements of s->cmp and s->char2b.
24272
24273 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
24274
24275 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
24276
24277 2008-02-01 Kenichi Handa <handa@m17n.org>
24278
24279 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
24280 target_multibyte instead of multibyte.
24281 (re_match_2_internal): Call bcmp_translate with target_multibyte.
24282 (bcmp_translate): Change the argument name from multibyte to
24283 target_multibyte.
24284
24285 2008-02-01 Kenichi Handa <handa@m17n.org>
24286
24287 These changes are to compile a regexp into a pattern that can be
24288 used both for multibyte and unibyte targets.
24289
24290 * Makefile.in (search.o): Depend on charset.h.
24291
24292 * character.c (multibyte_char_to_unibyte_safe): New function.
24293
24294 * search.c: Include "charset.h".
24295 (compile_pattern_1): Delete argument multibyte. Don't set
24296 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
24297 (compile_pattern): Don't compare cp->buf.target_multibyte.
24298 Compare cp->buf.charset_unibyte.
24299 (compile_pattern): Set cp->buf.target_multibyte.
24300
24301 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
24302
24303 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
24304
24305 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
24306 multibyte. Change callers.
24307 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
24308 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
24309 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
24310 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
24311 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
24312 (regex_compile): Make the compiled pattern usable both for
24313 multibyte and unibyte targets.
24314 (analyse_first): Make the fastmap usable both for multibyte and
24315 unibyte targets.
24316 (TRANSLATE_VIA_MULTIBYTE): Delete.
24317 (re_match_2_internal): Pay attention to the case that the
24318 multibyteness of bufp and target may be different.
24319
24320 2008-02-01 Kenichi Handa <handa@m17n.org>
24321
24322 * xdisp.c (x_produce_glyphs): When a font is not found, make the
24323 empty box occupy at least one column width.
24324
24325 2008-02-01 Miles Bader <miles@gnu.org>
24326
24327 * Makefile.in: Remove redundant HAVE_XFT clause.
24328
24329 2008-02-01 Kenichi Handa <handa@m17n.org>
24330
24331 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
24332
24333 2008-02-01 Kenichi Handa <handa@m17n.org>
24334
24335 * fontset.c (Finternal_char_font): Fix for the case of POSITION
24336 being nil.
24337
24338 2008-02-01 Kenichi Handa <handa@m17n.org>
24339
24340 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
24341
24342 2008-02-01 Kenichi Handa <handa@m17n.org>
24343
24344 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
24345
24346 2008-02-01 Kenichi Handa <handa@m17n.org>
24347
24348 * search.c (simple_search): Fix previous change.
24349
24350 2008-02-01 Kenichi Handa <handa@m17n.org>
24351
24352 * xftfont.c (ftfont_font_format): Extern declaration.
24353
24354 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
24355
24356 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
24357 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
24358
24359 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
24360 (ftfont_font_format): Fix previous change.
24361
24362 * font.h (Ffont_xlfd_name): EXFUN it.
24363
24364 * font.c (font_parse_xlfd): Fix the array size of `f'.
24365 (register_font_driver): Use EQ to compare driver->type.
24366
24367 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
24368 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
24369 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
24370
24371 2008-02-01 Kenichi Handa <handa@m17n.org>
24372
24373 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
24374 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
24375
24376 2008-02-01 Kenichi Handa <handa@m17n.org>
24377
24378 * xfont.c (xfont_open): Set font->format.
24379
24380 * xftfont.c (xftfont_open): Set font->format.
24381
24382 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
24383 (ftfont_list): Include FC_FONTFORMAT in FcObject.
24384 (ftfont_open): Set font->format.
24385 (ftfont_font_format): New function.
24386
24387 * font.h (struct font): New member format.
24388
24389 * font.c (Qopentype): New variable.
24390 (syms_of_font): Defsym it.
24391 (Fquery_font): Change the format of the last element of the return
24392 value.
24393
24394 2008-02-01 Kenichi Handa <handa@m17n.org>
24395
24396 * xfns.c (xic_create_xfontset): Try the default fontset name as a
24397 last resort.
24398
24399 2008-02-01 Kenichi Handa <handa@m17n.org>
24400
24401 * coding.c (detect_coding_charset): Fix detection of multi-byte
24402 charset.
24403
24404 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
24405
24406 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
24407
24408 2008-02-01 Kenichi Handa <handa@m17n.org>
24409
24410 * xdisp.c (get_next_display_element): Set it->face_id for the
24411 first component of a composition.
24412 (x_produce_glyphs): Check if the font is changed or not for composition.
24413
24414 2008-02-01 Kenichi Handa <handa@m17n.org>
24415
24416 * fontset.c (Qlatin): New variable.
24417 (syms_of_fontset): Define it as a lisp symbol.
24418 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
24419
24420 2008-02-01 Kenichi Handa <handa@m17n.org>
24421
24422 * font.c (font_unparse_fcname): Pay attention to the case that
24423 some of font property is a null string.
24424
24425 2008-02-01 Kenichi Handa <handa@m17n.org>
24426
24427 * term.c: Include "composite.h".
24428 (encode_terminal_code): Output all components of composition.
24429 Check the size of encode_terminal_src.
24430 (produce_glyphs): For composition, call produce_composite_glyph.
24431 (append_composite_glyph, produce_composite_glyph): New functions.
24432
24433 * xdisp.c (x_produce_glyphs): In handling composition, if a font
24434 is not found, get font_info from the current ascii face.
24435
24436 2008-02-01 Kenichi Handa <handa@m17n.org>
24437
24438 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
24439 buffer-file-name to Qnil before calling insert_from_buffer.
24440
24441 * font.c (font_unparse_fcname): Pay attention to the case that
24442 foundry is a null string.
24443
24444 2008-02-01 Kenichi Handa <handa@m17n.org>
24445
24446 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
24447
24448 * font.c (Qunicode_sip): New variable.
24449 (syms_of_font): Declare it as a Lisp symbol.
24450
24451 * font.h (Qunicode_sip): Extern it.
24452
24453 2008-02-01 Kenichi Handa <handa@m17n.org>
24454
24455 * composite.c (get_composition_id): Pay attention to TAB component.
24456
24457 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
24458 TAB. Adjust for the change of s->char2b which always points to
24459 the first element of allocated memory.
24460
24461 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
24462
24463 * xdisp.c (handle_composition_prop): Set it->c to the first
24464 non-TAB component.
24465 (fill_composite_glyph_string): Change argument.
24466 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
24467 (x_produce_glyphs): Fix handling of left/right padding.
24468
24469 2008-02-01 Kenichi Handa <handa@m17n.org>
24470
24471 * coding.c (detect_coding_system): Fix for handling off
24472 inhibit_iso_escape_detection. Fix for the case that no coding
24473 system is defined for a specific coding category.
24474
24475 2008-02-01 Kenichi Handa <handa@m17n.org>
24476
24477 * font.c (font_matching_entity): Delete unused local var.
24478
24479 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
24480 opening a font.
24481
24482 * fileio.c (Finsert_file_contents): On recovering a file, assume
24483 Unix-like eol.
24484 (choose_write_coding_system): On auto-saving a file, force
24485 Unix-like eol.
24486
24487 * coding.c (setup_coding_system): Fix setting of
24488 coding->common_flags based on eol_type.
24489 (coding_inherit_eol_type): If PARENT is not nil, be sure to
24490 inherit from it.
24491
24492 2008-02-01 Kenichi Handa <handa@m17n.org>
24493
24494 * alloc.c (NSTATICS): Increas to 0x600.
24495
24496 2008-02-01 Kenichi Handa <handa@m17n.org>
24497
24498 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
24499 (ftfont_list): Don't check :name property.
24500 (ftfont_match): New function.
24501 (ftfont_pattern_entity): If the pattern doesn't contain
24502 FC_SPACING, don't assume FC_MONO.
24503
24504 * font.h (struct font_driver): New member `match'.
24505 (font_update_drivers): Adjust prototype.
24506
24507 * font.c (font_parse_fcname, font_parse_name): Don't change :name
24508 property of FONT.
24509 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
24510 Define them unconditionally.
24511 (font_matching_entity): New function.
24512 (font_open_by_name): Try font_matching_entity if exact match is
24513 not found.
24514 (font_update_drivers): Delete the arg FONT. Return a list of
24515 actually used backends. Don't free faces, font caches here.
24516 Don't store data in frame parameters. Don't call x_set_font.
24517 (Ffont_spec): Store :name property as is.
24518 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
24519 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
24520 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
24521 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
24522 Call font->driver->otf_gsub instead of font_otf_gsub.
24523
24524 * frame.c (x_set_font_backend): Do more works that were done in
24525 font_update_drivers before.
24526
24527 * xfont.c (xfont_match): New function.
24528 (xfont_driver): Set xfont_driver.match to xfont_match.
24529 (xfont_draw): Set font in GC if necessary.
24530
24531 * ftxfont.c (ftxfont_match): New function.
24532 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
24533
24534 * xftfont.c (xftfont_match): New function.
24535 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
24536
24537 2008-02-01 Kenichi Handa <handa@m17n.org>
24538
24539 * font.h (struct font): New member scalable.
24540 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
24541 (font_otf_gsub): Adjust prototype.
24542
24543 * font.c (font_otf_capability): Fix handling of the default langsys.
24544 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
24545 Check the contents of SPEC.
24546 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
24547 (check_gstring): New function.
24548 (REPLACEMENT_CHARACTER): New macro.
24549 (font_otf_gsub): New arg alternate_subst. Be sure to set all
24550 glyph codes of GSTRING.
24551 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
24552 (font_prepare_composition): Set cmp->glyph_len.
24553 (font_open_entity): Set font->scalable.
24554 (Ffont_get): Handle :otf property.
24555 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
24556 New functions.
24557 (Fquery_font): Use font->font.full_name.
24558 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
24559 Sfont_otf_alternates.
24560
24561 * ftfont.c (ftfont_open): Set font->font.full_name and
24562 font->font.name properly. Fix calculation of font->font.height
24563 and font->min_width.
24564
24565 * ftxfont.c (ftxfont_create_gcs): New function.
24566 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
24567 (ftxfont_draw_backgrond): Fix filling region.
24568 (ftxfont_default_fid): New function.
24569 (ftxfont_open): Set xfont->fid to the return value of
24570 ftxfont_default_fid.
24571 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
24572 (ftxfont_done_face): Free only GCs that are created by
24573 ftxfont_create_gcs.
24574 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
24575
24576 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
24577 Clip to src->width, etc (not src->clip_XXX).
24578
24579 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
24580 FontBackend frame parameter.
24581
24582 2008-02-01 Kenichi Handa <handa@m17n.org>
24583
24584 * font.h (struct font_driver_list): New member `on'.
24585 (Fclear_font_cache): EXFUN it.
24586 (font_update_drivers): Extern it.
24587
24588 * font.c (font_unparse_fcname): Fix typo (swidth->width).
24589 (font_list_entities): Check driver_list->on.
24590 (register_font_driver): Initialize `on' member to 0.
24591 (font_update_drivers): New function.
24592 (Fclear_font_cache): Check driver_list->on.
24593
24594 * frame.h (Qfont_backend): Extern it.
24595 (x_set_font_backend): Extern it.
24596
24597 * frame.c (Qfont_backend): New variable.
24598 (frame_parms): New element for font-backend.
24599 (x_set_font_backend): New function.
24600
24601 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
24602 FontBackend frame parameter.
24603 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
24604 x_set_font_backend.
24605
24606 * xfont.c (xfont_list): Don't try listing by :name property if the
24607 name is not for XLFD.
24608
24609 2008-02-01 Kenichi Handa <handa@m17n.org>
24610
24611 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
24612 (LGLYPH_SET_TO): New macros.
24613 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
24614 element of G is vector or not.
24615 (font_at): Extern it.
24616
24617 * font.c: Include window.h.
24618 (font_lispy_object): New function.
24619 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
24620 end of valid glyph.
24621 (font_close_object): Fix getting (struct font *).
24622 (font_at): New function.
24623 (Ffont_get): If FONT is a font-object, get entity from it.
24624 (Ffont_make_gstring): Initialize elements of glyphs with nil.
24625 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
24626 Fix range check.
24627 (Ffont_at): New function.
24628 (syms_of_font): Defsubr Sfont_at.
24629
24630 * xdisp.c (it_props): Move the entry for Qauto_composed to just
24631 before the entry for Qcomposition.
24632 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
24633 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
24634 the font in gstring.
24635 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
24636 LGLYPH_FORM (g) to detect the end of valid glyph.
24637 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
24638 we are composing with gstring.
24639
24640 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
24641 Check if adjustment is vector or not.
24642
24643 * Makefile.in (font.o): Make it depends on window.h.
24644
24645 2008-02-01 Kenichi Handa <handa@m17n.org>
24646
24647 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
24648 adjustment is vector or not.
24649
24650 2008-02-01 Miles Bader <miles@gnu.org>
24651
24652 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
24653
24654 2008-02-01 Kenichi Handa <handa@m17n.org>
24655
24656 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
24657 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
24658 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
24659
24660 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
24661 (DEVICE_DELTA): Fix typo.
24662 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
24663 LGLYPH format.
24664
24665 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
24666 the change of LGLYPH format.
24667
24668 2008-02-01 Kenichi Handa <handa@m17n.org>
24669
24670 * ftfont.c (ftfont_list): Fix typo.
24671 (ftfont_build_basic_charsets): Don't include letters with diacritics.
24672
24673 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24674
24675 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
24676
24677 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
24678 xftface_info is non-NULL.
24679
24680 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24681
24682 * ftfont.c (ftfont_list): Move misplaced #endif.
24683
24684 2008-02-01 Kenichi Handa <handa@m17n.org>
24685
24686 * ftfont.c (ftfont_list): Pay attention to the case that
24687 FC_CAPABILITY is not defined.
24688
24689 2008-02-01 Kenichi Handa <handa@m17n.org>
24690
24691 * xftfont.c (xftfont_open): Set charset related members to -1.
24692
24693 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
24694 QCname.
24695 (ftfont_open): Set charset related members to -1.
24696
24697 * fontset.c (Votf_script_alist): New variable.
24698 (syms_of_fontset): Initialize it.
24699 (fontset_font): Delete unused variable.
24700
24701 * fontset.h (Votf_script_alist): Extern it.
24702
24703 * font.c (font_find_for_lface): Optimize code.
24704
24705 * font.h (font_close_object, font_merge_old_spec): Extern them.
24706
24707 2008-02-01 Kenichi Handa <handa@m17n.org>
24708
24709 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
24710 (syms_of_font): Initialize them.
24711 (font_pixel_size): Allow float value in dpi.
24712 (font_prop_validate_type): Delete.
24713 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
24714 Change caller.
24715 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
24716 (font_prop_validate_extra): Delete.
24717 (font_prop_validate_spacing): New function.
24718 (font_property_table): Add elements for all known properties.
24719 (get_font_prop_index): Rename from check_font_prop_name.
24720 New argument FROM. Change caller.
24721 (font_prop_validate): Validate all known properties.
24722 (font_put_extra): Delete argument force. Change caller.
24723 (font_expand_wildcards): Make it static. Fix the way of shrinking
24724 the possible range.
24725 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
24726 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
24727 Change caller.
24728 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
24729 (font_parse_fcname): Delete argument merge. Fix parsing of point
24730 size. Don't validate properties values here. Change caller.
24731 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
24732 (font_open_by_name): Delete unused variable.
24733 (Ffont_spec): Likewise. Validate property values.
24734 (Ffont_match_p): New function.
24735
24736 * font.h (QCscalable): Extern it.
24737 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
24738
24739 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
24740
24741 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
24742 (xfont_list_pattern): New function.
24743 (xfont_list): Use xfont_list_pattern.
24744
24745 2008-02-01 Kenichi Handa <handa@m17n.org>
24746
24747 * font.h (Flist_fonts): EXFUN it.
24748
24749 2008-02-01 Jason Rumney <jasonr@gnu.org>
24750
24751 * w32term.c (w32_initialize): Add back smoothing_type and
24752 smoothing_enabled definitions.
24753
24754 2008-02-01 Kenichi Handa <handa@m17n.org>
24755
24756 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
24757 s->face->font on determining underline position.
24758
24759 2008-02-01 Kenichi Handa <handa@m17n.org>
24760
24761 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
24762 (font_has_char): Accept font-object too.
24763 (font_find_for_lface): Try at first with a size specified in face.
24764
24765 2008-02-01 Kenichi Handa <handa@m17n.org>
24766
24767 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
24768 font_open_by_name.
24769
24770 2008-02-01 Kenichi Handa <handa@m17n.org>
24771
24772 * font.h (QCspacing, QCdpi): Extern them.
24773 (enum font_spacing): New enum.
24774 (FONT_PIXEL_SIZE_QUANTUM): New macro.
24775
24776 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
24777 (QCspacing, QCdpi): New variables.
24778 (syms_of_font): Initialize them.
24779 (font_pixel_size): New function.
24780 (font_put_extra): New function.
24781 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
24782 in FONT_EXTRA.
24783 (font_parse_fcname): Handle enumerated values (e.g. bold).
24784 Fix handling font size. Add QCname property that contains only
24785 unknown properties.
24786 (font_score): Change argument. Change caller. Pay attention to
24787 FONT_PIXEL_SIZE_QUANTUM.
24788 (font_sort_entites, font_list_entities, font_find_for_lface)
24789 (font_open_for_lface, font_open_by_name): Fix handling of font size.
24790 (Ffont_spec): Add QCname property that contains only unknown properties.
24791
24792 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
24793 Don't include weight in listing pattern, instead check weight of each
24794 listed font. Don't include scalable in pattern. Pay attention to
24795 FONT_PIXEL_SIZE_QUANTUM.
24796
24797 2008-02-01 Kenichi Handa <handa@m17n.org>
24798
24799 * font.c (font_parse_fcname): Fix parsing of point-size.
24800 (font_unparse_fcname): Produce symbolic names for style properties.
24801 (font_list_entities): Handle float size correctly.
24802 (font_open_by_name): Prefer `normal' property values if the name
24803 doesn't specify them.
24804
24805 * fontset.c (Finternal_char_font): Use font_get_name, not
24806 Ffont_xlfd_name.
24807
24808 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
24809 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
24810 pattern. Don't force scalable.
24811
24812 * xftfont.c (xftfont_open): For generating a name, start from
24813 96-byte buffer.
24814
24815 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
24816
24817 * frame.h (x_new_fontset2): Fix prototype.
24818
24819 2008-02-01 Kenichi Handa <handa@m17n.org>
24820
24821 * font.h (struct font_driver): Delete member parse_name.
24822 (font_match_p, font_get_spec, font_parse_fcname)
24823 (font_unparse_fcname): Extern them.
24824 (font_get_name): Adjust prototype.
24825
24826 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
24827 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
24828 (font_expand_wildcards): Fix handling ENCODING field.
24829 Avoid unnecessary checks for weight, slant, and swidth.
24830 (font_parse_fcname): New function.
24831 (font_unparse_fcname): New function.
24832 (font_parse_name): New function.
24833 (font_match_p): New function.
24834 (font_get_name): Change return value to Lisp string.
24835 (font_get_spec): New function.
24836 (Qunspecified, Qignore_defface): Don't extern them.
24837 (font_find_for_lface): Assume that LFACE is fully specified.
24838 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
24839 object, use it for FACE.
24840 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
24841 driver->parse_name.
24842 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
24843
24844 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
24845 prototype.
24846
24847 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
24848 argument F. Don't call Fnew_fontset. Instead, directly call
24849 make_fontset.
24850
24851 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
24852
24853 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
24854 of x_new_fontset2.
24855
24856 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
24857 (Qsans__serif): New variables.
24858 (ftfont_generic_family_list): New variable.
24859 (syms_of_ftfont): Initialize the above variables.
24860 (ftfont_pattern_entity): Delete argument NAME.
24861 (ftfont_list_generic_family): New function.
24862 (ftfont_parse_name): Delete this function.
24863 (ftfont_list): Try generic family only when FcFontList found no font.
24864 (ftfont_list_family): Fix args to FcObjectSetBuild.
24865
24866 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
24867 object in attrs[LFACE_FONT_INDEX].
24868 (set_lface_from_font_name): Cancel all changes for font-backend.
24869 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
24870 function.
24871 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
24872 font object in QCfont attribute.
24873 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
24874 (realize_default_face) [USE_FONT_BACKEND]: Call
24875 set_lface_from_font_and_fontset.
24876
24877 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
24878 "fixed", and signal error here if no suitable font was found.
24879
24880 * xfont.c (xfont_parse_name): Delete this function.
24881
24882 * xftfont.c (xftfont_open): Change coding style of error
24883 handling. Generate fontconfig's fontname pattern.
24884
24885 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
24886 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
24887
24888 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
24889 Both args FONTSET and FONT_OBJECT must be existing ones.
24890
24891 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
24892
24893 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
24894
24895 2008-02-01 Kenichi Handa <handa@m17n.org>
24896
24897 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
24898
24899 * font.h (struct font): Fix typo.
24900
24901 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
24902 XLFD_XXX_INDEX.
24903 (enum xlfd_field_mask): New enum.
24904 (intern_font_field): Change argument. Change caller. If digits
24905 are followed by non-digits, return a symbol.
24906 (font_expand_wildcards): New function.
24907 (font_parse_xlfd): Fix wildcard handling.
24908 (Ffont_spec): If :name is specified, reflect the info in the other
24909 properties.
24910
24911 * ftfont.c (ftfont_pattern_entity): Fix typo.
24912 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
24913 locale.
24914
24915 2008-02-01 Kenichi Handa <handa@m17n.org>
24916
24917 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
24918
24919 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
24920 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
24921 registry doesn't specify encoding part.
24922 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
24923 (font_open_by_name): At first try parsing the name.
24924 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
24925 as Lisp symbols.
24926
24927 * fontset.c (reorder_font_vector): Pay attention to the case that
24928 the 3rd element of font_def is nil.
24929 (fontset_font): For the default fontset, append one more fontset
24930 elements for a script-based font specification. Don't add script
24931 attribute on finding a font.
24932 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
24933 font name.
24934 (fontset_ascii_font): If a font can't be opened, return nil.
24935
24936 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
24937 (ftfont_pattern_entity): New function.
24938 (ftfont_get_cache): Assume that freetype_font_cache is already
24939 initialized.
24940 (ftfont_list): Handle the case that a file is specified in font
24941 name. Use ftfont_pattern_entity to generate entities.
24942 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
24943 (syms_of_ftfont): Initialize freetype_font_cache.
24944
24945 * xftfont.c (xftfont_open): Make the font name fontconfig's
24946 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
24947 (xftfont_close): Free font->font.name if not NULL.
24948
24949 * xfont.c (xfont_list): If script is specified for a font, return
24950 null_vector.
24951 (xfont_list_family): Declare argument type.
24952
24953 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
24954 name, set LFACE_FONT (lface) to nil.
24955
24956 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
24957 return Qnil.
24958
24959 2008-02-01 Kenichi Handa <handa@m17n.org>
24960
24961 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
24962 (standard_args): Add "-enable-font-backend".
24963
24964 2008-02-01 Kenichi Handa <handa@m17n.org>
24965
24966 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
24967 (struct xftdraw_list, xftdraw_list): Delete them.
24968 (register_xftdraw, check_xftdraw): Delete them.
24969 (xftfont_prepare_face): Don't call register_xftdraw.
24970 (xftfont_done_face): Don't call check_xftdraw.
24971 (xftfont_draw): Get background color only when with_background is
24972 nonzero.
24973
24974 * xfont.c (xfont_encode_char): Fix calculation of char2b.
24975
24976 2008-02-01 Kenichi Handa <handa@m17n.org>
24977
24978 These changes are for the new font handling codes.
24979
24980 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
24981 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
24982 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
24983 (FONTSRC, FONTOBJ): New variables.
24984 (obj): Add $(FONTOBJ).
24985 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
24986 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
24987 @LIBOTF_LIBS@.
24988 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
24989 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
24990
24991 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
24992
24993 * character.h (Vscript_representative_chars): Extern it.
24994
24995 * character.c (Vscript_representative_chars): New variable.
24996 (syms_of_character): Declare it as a Lisp variable.
24997
24998 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
24999 enable_font_backend is nonzero, accept the composition method
25000 COMPOSITION_WITH_GLYPH_STRING.
25001
25002 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
25003 enumeration COMPOSITION_WITH_GLYPH_STRING.
25004
25005 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
25006 members clip_x, clip_y, clip_width, and clip_height.
25007 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
25008
25009 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
25010 --enable-font-backend. Call syms_of_font.
25011
25012 * fns.c (assoc_no_quit): New function.
25013
25014 * fontset.h (FONT_INFO_FROM_FACE): New macro.
25015 (face_for_font, new_fontset_from_font)
25016 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
25017
25018 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
25019 (fontset_font, fontset_ascii, face_for_char)
25020 (make_fontset_for_ascii_face, Ffont_info)
25021 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
25022 is nonzero, use font-backend mechanism.
25023 (find_font_encoding): Make it non-static.
25024 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
25025 New functions.
25026
25027 * frame.h (struct frame): New members resx and resy.
25028 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
25029 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
25030
25031 * frame.c [USE_FONT_BACKEND]: Include "font.h".
25032 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
25033
25034 * lisp.h (assoc_no_quit): Extern it.
25035
25036 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
25037 Through out the file, use FONT_INFO_FROM_FACE instead of
25038 FONT_INFO_FROM_ID, use get_per_char_metric instead of
25039 rif->per_char_metric.
25040 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
25041 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
25042 (get_glyph_face_and_encoding, fill_composite_glyph_string)
25043 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
25044 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
25045 nonzero, use font-backend mechanism.
25046 (get_per_char_metric): New function.
25047
25048 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
25049 (set_lface_from_font_name)
25050 (set_font_frame_param, free_realized_face)
25051 (prepare_face_for_display, clear_face_gcs)
25052 (Finternal_set_font_selection_order, realize_x_face)
25053 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
25054 font-backend mechanism.
25055 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
25056 (load_face_font) [USE_FONT_BACKEND]: Abort.
25057 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
25058 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
25059
25060 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
25061 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
25062 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
25063 nonzero, register all available font drivers.
25064 Call x_default_font_parameter for deciding a font.
25065 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
25066
25067 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
25068 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
25069 (x_set_glyph_string_clipping_exactly)
25070 (x_compute_glyph_string_overhangs)
25071 (x_draw_glyph_string_foreground)
25072 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
25073 (x_free_frame_resources) [USE_FONT_BACKEND]: If
25074 enable_font_backend is nonzero, use font-backend mechanism.
25075 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
25076
25077 2008-02-01 Kenichi Handa <handa@m17n.org>
25078
25079 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
25080 system_eol_type.
25081 (syms_of_coding): Initialize system_eol_type.
25082
25083 * process.c (Fset_process_coding_system): Inherit system's eol
25084 format if necessary.
25085
25086 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25087
25088 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
25089
25090 2008-02-01 Kenichi Handa <handa@m17n.org>
25091
25092 * coding.c (decode_eol): Pay attention to buffer relocation in
25093 del_range_2.
25094 (decode_coding): Call decode_eol before restoring undo_list.
25095
25096 2008-02-01 Kenichi Handa <handa@m17n.org>
25097
25098 * charset.c (Fdefine_charset_internal): Fix setting of
25099 emacs_mule_bytes.
25100
25101 2008-02-01 Kenichi Handa <handa@m17n.org>
25102
25103 * keyboard.c (read_char): Check if C is a character or not before
25104 looking up Vkeyboard_translate_table.
25105
25106 2008-02-01 Kenichi Handa <handa@m17n.org>
25107
25108 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
25109 Fix condition to terminate the loop.
25110
25111 2008-02-01 Kenichi Handa <handa@m17n.org>
25112
25113 * coding.c (produce_composition): Compare charbuf[i] instead of
25114 args[i] against 0.
25115 (Fterminal_coding_system): Use EQ to compare Lisp objects.
25116
25117 2008-02-01 Kenichi Handa <handa@m17n.org>
25118
25119 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
25120 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
25121 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
25122 detect_coding.
25123 (emacs_mule_char): Handle old style (Emacs 20) component character
25124 of a composition.
25125 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
25126 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
25127 composition rule.
25128 (decode_coding_emacs_mule): Handle invalid bytes correctly.
25129
25130 2008-02-01 Kenichi Handa <handa@m17n.org>
25131
25132 * coding.c (encode_coding_ccl): Allocate destination dynamically
25133 when necessary.
25134
25135 2008-02-01 Kenichi Handa <handa@m17n.org>
25136
25137 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
25138 the loop. When quitted, show a proper error message.
25139
25140 2008-02-01 Kenichi Handa <handa@m17n.org>
25141
25142 * xterm.c (x_set_glyph_string_clipping_exactly):
25143 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
25144
25145 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
25146 character sequence.
25147 (Fccl_execute_on_string): Use ASET, not XSET.
25148
25149 2008-02-01 Kenichi Handa <handa@m17n.org>
25150
25151 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
25152
25153 2008-02-01 Kenichi Handa <handa@m17n.org>
25154
25155 * coding.c (decode_coding): Fix the condition of terminating the
25156 decoding loop.
25157
25158 2008-02-01 Kenichi Handa <handa@m17n.org>
25159
25160 * data.c (Faset): On setting a character bigger than 255 in a
25161 unibyte string, signal an error instead of make the string multibyte.
25162
25163 2008-02-01 Kenichi Handa <handa@m17n.org>
25164
25165 * charset.c (map_charset_chars): Fix for ascii-compatible charset
25166 made by a mapping table.
25167
25168 2008-02-01 Kenichi Handa <handa@m17n.org>
25169
25170 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
25171 not.
25172 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
25173 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
25174
25175 * xterm.c (x_draw_composite_glyph_string_foreground):
25176 Check s->face is NULL or not.
25177
25178 2008-02-01 Kenichi Handa <handa@m17n.org>
25179
25180 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
25181 (x_draw_glyph_string): Fix drawing of right_overhang and
25182 left_overhang around/on cursor.
25183
25184 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
25185
25186 2008-02-01 Kenichi Handa <handa@m17n.org>
25187
25188 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
25189
25190 2008-02-01 Kenichi Handa <handa@m17n.org>
25191
25192 * coding.c (Fdefine_coding_system_internal)
25193 (Fdefine_coding_system_alias): Avoid a duplicated element in
25194 Vcoding_system_alist.
25195
25196 2008-02-01 Kenichi Handa <handa@m17n.org>
25197
25198 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
25199
25200 * coding.c (Qcoding_system_define_form): New variable.
25201 (syms_of_coding): Intern and staticpro it.
25202 (Fcoding_system_p): Check Qcoding_system_define_form.
25203 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
25204
25205 * coding.h (CODING_SYSTEM_P): If ID is not available, call
25206 Fcoding_system_p.
25207 (CHECK_CODING_SYSTEM): If ID is not available, call
25208 Fcheck_coding_system.
25209 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
25210 Try also Fcheck_coding_system.
25211
25212 2008-02-01 Kenichi Handa <handa@m17n.org>
25213
25214 * coding.c (code_conversion_restore): GCPRO arg.
25215
25216 2008-02-01 Kenichi Handa <handa@m17n.org>
25217
25218 * character.c (lisp_string_width): Check multibyteness of STRING.
25219
25220 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25221
25222 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
25223 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
25224 (decode_mac_font_name): Use decode_coding_c_string instead of
25225 decode_coding.
25226 (x_load_font): Initialize fontp->fontset to -1.
25227 Set fontp->encoding_type.
25228
25229 2008-02-01 Kenichi Handa <handa@m17n.org>
25230
25231 * search.c (search_buffer): Give up BM search on case-fold-search
25232 if one of a target character has a case-equivalence of different
25233 byte length even if that target character is an ASCII.
25234 (simple_search): Fix calculation of byte length of matched text.
25235 (boyer_moore): Fix handling of case-equivalent multibyte characters.
25236
25237 2008-02-01 Kenichi Handa <handa@m17n.org>
25238
25239 * coding.c (decode_coding): Fix handling of invalid bytes.
25240
25241 2008-02-01 Kenichi Handa <handa@m17n.org>
25242
25243 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
25244 Unicode characters.
25245
25246 2008-02-01 Kenichi Handa <handa@m17n.org>
25247
25248 * coding.c (encode_coding_object): If a pre-write-conversion
25249 function makes a new buffer, kill it.
25250
25251 2008-02-01 Kenichi Handa <handa@m17n.org>
25252
25253 * coding.c (QCascii_compatible_p): New variable.
25254 (syms_of_coding): Initialize it.
25255 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
25256 calling string_char.
25257 (record_conversion_result): Add `default:' case.
25258 (coding_charset_list): Delete unused variable `coding_type'.
25259 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
25260 property in the plist of the coding system.
25261 (Fcoding_system_put): Check QCascii_compatible_p.
25262
25263 2008-02-01 Miles Bader <miles@gnu.org>
25264
25265 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
25266 removed calculation of frame `f', as it's now used.
25267
25268 2008-02-01 Kenichi Handa <handa@m17n.org>
25269
25270 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
25271 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
25272 (UNIDATA): New variable.
25273 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
25274 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
25275 Run $(RUN_TEMACS) unconditionally.
25276
25277 2008-02-01 Kenichi Handa <handa@m17n.org>
25278
25279 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
25280 (admindir): New variable.
25281 ($(lispsource)international/charprop.el): New target.
25282
25283 2008-02-01 Miles Bader <miles@gnu.org>
25284
25285 * character.c (chars-in-region): Remove obsolete function.
25286 (syms_of_character): Remove its initialization.
25287
25288 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
25289
25290 * w32select.c (validate_coding_system)
25291 (setup_windows_coding_system): New functions.
25292 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
25293 Use setup_windows_coding_system.
25294 (setup_config, Fw32_get_clipboard_data):
25295 Use validate_coding_system.
25296 (Fx_selection_exists): Move call to setup_config to a place
25297 where signals are allowed.
25298
25299 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
25300 (Fcheck_coding_system): Add declarations.
25301
25302 2008-02-01 Kenichi Handa <handa@m17n.org>
25303
25304 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
25305
25306 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25307
25308 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
25309 string as the second argument for x_new_fontset.
25310
25311 2008-02-01 Kenichi Handa <handa@m17n.org>
25312
25313 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
25314 (encode_coding_object): Use safe_call instead of call2.
25315
25316 2008-02-01 Kenichi Handa <handa@m17n.org>
25317
25318 * fontset.c (Fset_fontset_font): Check family element of a given vector.
25319
25320 * Makefile.in (lisp): Include charprop.el.
25321
25322 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
25323
25324 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
25325 Not sure if it's unnecessary.
25326
25327 2008-02-01 Steven Tamm <steventamm@mac.com>
25328
25329 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
25330 some possibly unnecessary fontset checking code that crashed
25331 when creating a new frame.
25332
25333 2008-02-01 Kenichi Handa <handa@m17n.org>
25334
25335 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
25336 lookup_face.
25337
25338 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
25339
25340 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
25341
25342 2008-02-01 Kenichi Handa <handa@m17n.org>
25343
25344 * coding.c: Cancel the change done in HEAD on 2008-02-01.
25345 (coding_charset_list): New function.
25346
25347 * coding.h (coding_charset_list): Extern it.
25348
25349 2008-02-01 Kenichi Handa <handa@m17n.org>
25350
25351 * fontset.c (Fset_fontset_font): Call find_font_encoding with
25352 concatenation of family and registry.
25353
25354 2008-02-01 Kenichi Handa <handa@m17n.org>
25355
25356 * character.h (BYTE8_STRING): Fix typo.
25357
25358 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
25359 string to multibyte (sync to HEAD).
25360
25361 * casefiddle.c (casify_region): Handle changes in byte-length
25362 using replace_range_2 (sync to HEAD).
25363
25364 2008-02-01 Andreas Schwab <schwab@suse.de>
25365
25366 * chartab.c (map_char_table): GCPRO table and arg.
25367
25368 2008-02-01 Kenichi Handa <handa@m17n.org>
25369
25370 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
25371 already at limit.
25372
25373 2008-02-01 Kenichi Handa <handa@m17n.org>
25374
25375 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
25376 instead of fast_c_string_match_ignore_case.
25377 (find_font_encoding): Change argument to Lisp_Object.
25378 Use fast_string_match_ignore_case instead of
25379 fast_c_string_match_ignore_case. Change caller.
25380
25381 2008-02-01 Kenichi Handa <handa@m17n.org>
25382
25383 * xdisp.c (get_next_display_element): In unibyte case, decide to
25384 display in octal form by checking a character by
25385 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
25386
25387 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
25388
25389 * character.c (unibyte_has_multibyte_table): New variable.
25390
25391 * character.h (unibyte_has_multibyte_table): Extern it.
25392 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
25393
25394 2008-02-01 Kenichi Handa <handa@m17n.org>
25395
25396 * coding.c (encode_coding_iso_2022): Fix handling of charset
25397 annotation.
25398
25399 2008-02-01 Kenichi Handa <handa@m17n.org>
25400
25401 * coding.c (setup_coding_system): If coding_system is nil, use
25402 Qundecided.
25403 (Fterminal_coding_system): Return nil if terminal coding system is
25404 `undecided'.
25405 (syms_of_coding): Define coding-system `undecided' here.
25406 Setup terminal_coding as `undecided'.
25407
25408 2008-02-01 Kenichi Handa <handa@m17n.org>
25409
25410 * xdisp.c (message_dolog, set_message_1):
25411 Call unibyte_char_to_multibyte with arg type int.
25412
25413 * lread.c (read1): Fix reading of a char-table.
25414
25415 * print.c (print_object): Include sub char-table in circularities
25416 detection.
25417
25418 2008-02-01 Kenichi Handa <handa@m17n.org>
25419
25420 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
25421 Append the found sequences in car of ARGS instead of prepending.
25422
25423 2008-02-01 Kenichi Handa <handa@m17n.org>
25424
25425 * fileio.c (report_file_error): Make a unibyte string from
25426 strerror (errorno).
25427 (Fsubstitute_in_file_name): Fix the arg to
25428 unibyte_char_to_multibyte. It is evaluated twice.
25429
25430 2008-02-01 Kenichi Handa <handa@m17n.org>
25431
25432 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
25433
25434 2008-02-01 Kenichi Handa <handa@m17n.org>
25435
25436 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
25437 BOM is not found.
25438 (detect_coding, detect_coding_system): Optimization for ISO-2022
25439 when no 8-bit data is found.
25440
25441 2008-02-01 Jason Rumney <jasonr@gnu.org>
25442
25443 * w32fns.c (x_to_w32_font): Update to use new coding struct.
25444
25445 2008-02-01 Kenichi Handa <handa@m17n.org>
25446
25447 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
25448 CHARS.
25449
25450 2008-02-01 Steven Tamm <steventamm@mac.com>
25451
25452 * macterm.c (mac_encode_char): Add charset argument and update
25453 to use encoding_type.
25454 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
25455 switch to pure fontset.
25456 (decode_mac_font_name): Temporarily remove decoding.
25457 (x_font_name_to_mac_font_name): Temporarily remove encoding.
25458 (x_load_font): Temporarily remove encoding.
25459
25460 2008-02-01 Kenichi Handa <handa@m17n.org>
25461
25462 * xfaces.c (Fface_font): If frame is not on a window system,
25463 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
25464 refer to face->font.
25465 (split_font_name_into_vector, build_font_name_from_vector)
25466 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
25467 when HAVE_WINDOW_SYSTEM is defined.
25468
25469 2008-02-01 Kenichi Handa <handa@m17n.org>
25470
25471 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
25472 (x_produce_glyphs): Fix setting of members of cmp in case
25473 cmp->glyph_len is zero.
25474
25475 * fontset.c (Fset_fontset_font): Fix docstring.
25476 (Ffontset_info): Make it backward compatible. New arg ALL.
25477
25478 2008-02-01 Kim F. Storm <storm@cua.dk>
25479
25480 * process.c (read_process_output): Grow decoding_buf when needed;
25481 this could cause a crash in allocate_string and compact_small_strings.
25482
25483 2008-02-01 Kenichi Handa <handa@m17n.org>
25484
25485 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
25486
25487 2008-02-01 Kenichi Handa <handa@m17n.org>
25488
25489 * coding.c (setup_coding_system): Set coding->common_flags
25490 correctly for raw-text.
25491 (consume_chars): On encoding unibyte text by raw-text, don't check
25492 multibyte form.
25493 (encode_coding): On encoding by raw-text, never use translation tables.
25494
25495 * fileio.c (e_write): Short cut for the case of no encoding.
25496
25497 2008-02-01 Kenichi Handa <handa@m17n.org>
25498
25499 * coding.c (detect_coding, detect_coding_system): Delete unused
25500 variables.
25501
25502 2008-02-01 Kenichi Handa <handa@m17n.org>
25503
25504 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
25505 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
25506
25507 2008-02-01 Kenichi Handa <handa@m17n.org>
25508
25509 * coding.c (Ffind_coding_systems_region_internal):
25510 Include raw-text and no-conversion in the result.
25511
25512 2008-02-01 Kenichi Handa <handa@m17n.org>
25513
25514 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
25515 (load_font_get_repertory): Delete unnecessary check of ENCODING of
25516 FONT_DEF.
25517 (font_def_arg, add_arg, from_arg, to_arg): New args.
25518 (set_fontset_font): Change argument.
25519 (Fset_fontset_font): Fix for the case that TARGET is a script
25520 name and charset name.
25521 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
25522
25523 2008-02-01 Kenichi Handa <handa@m17n.org>
25524
25525 * fontset.c (fontset_font): Rename from fontset_face. Change return
25526 value.
25527 (face_suitable_for_char_p, face_for_char): Adjust for the change
25528 of fontset_font.
25529 (make_fontset_for_ascii_face): Fix setting of the fontset element
25530 for ASCII.
25531 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
25532 to get a font name.
25533 (Ffontset_info): Adjust for the change of fontset_font.
25534
25535 * coding.c (emacs_mule_char): Check invalid code more rigidly.
25536
25537 * character.h (LEADING_CODE_LATIN_1_MIN)
25538 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
25539
25540 2008-02-01 Kenichi Handa <handa@m17n.org>
25541
25542 * editfns.c (check_translation): New function.
25543 (Ftranslate_region_internal): Handle M:N mapping.
25544
25545 2008-02-01 Kenichi Handa <handa@m17n.org>
25546
25547 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
25548
25549 2008-02-01 Kenichi Handa <handa@m17n.org>
25550
25551 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
25552 goto invalid_code.
25553 (decode_coding_iso_2022): Fix handling of invalid designation.
25554
25555 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
25556 after calling code_conversion_save.
25557
25558 2008-02-01 Kenichi Handa <handa@m17n.org>
25559
25560 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
25561
25562 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
25563
25564 * fontset.c: Include "intervals.h".
25565 (fontset_face): Fix comparing of Lisp_Objects.
25566 (free_face_fontset, new_fontset_from_font_name):
25567 Fix Lisp_Object/int mixup.
25568
25569 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
25570
25571 * coding.c: Add many prototypes for static functions.
25572 (get_translation_table): Allow max_lookup to be NULL.
25573 (decode_coding, Ffind_coding_systems_region_internal)
25574 (Funencodable_char_position, Fcheck_coding_systems_region):
25575 Call get_translation_table with max_lookup NULL.
25576
25577 2008-02-01 Kenichi Handa <handa@m17n.org>
25578
25579 * coding.c (get_translation_table): Declare it as Lisp_Object.
25580 (LOOKUP_TRANSLATION_TABLE): New macro.
25581 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
25582 instead of CHAR_TABLE_REF.
25583
25584 2008-02-01 Kenichi Handa <handa@m17n.org>
25585
25586 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
25587 annotation data format.
25588 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
25589 Change arguments FROM and TO to single argument NCHARS. Change caller.
25590 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
25591 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
25592 (decode_coding_ccl, decode_coding_charset): Pay attention to
25593 coding->charbuf_used.
25594 (get_translation): New function.
25595 (produce_chars): New arguments translation_table and last_block.
25596 Translate characters here. Return number of carryover chars.
25597 Change caller.
25598 (produce_composition): New argument pos. Change caller.
25599 Adjust for the change of annotation data format.
25600 (produce_charset, produce_annotation): Likewise.
25601 (decode_coding, encode_coding): Don't call translate_chars.
25602 (consume_chars): New arg translation_table. Change caller.
25603 (translate_chars): Delete.
25604 (syms_of_coding): Make translation-table's number of extra slots 2.
25605
25606 2008-02-01 Kenichi Handa <handa@m17n.org>
25607
25608 * search.c (simple_search): Fix setting this_pos_byte in backward
25609 search.
25610
25611 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
25612 byte sequence.
25613 (detect_coding_ccl): Fix setting of the variable valids.
25614
25615 2008-02-01 Kenichi Handa <handa@m17n.org>
25616
25617 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
25618
25619 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
25620
25621 * editfns.c (Ftranslate_region_internal): Rename from
25622 Ftranslate_region. Accept a char-table in TABLE.
25623 (syms_of_editfns): Defsubr Stranslate_region_internal.
25624
25625 * xfaces.c (set_lface_from_font_name): If a font is specified for
25626 a frame, generate a fontset from the font.
25627 (build_scalable_font_name): If the scalable font is requested for
25628 a specific size, don't change that size.
25629 (try_font_list): Try a scalable font also in the case that a
25630 pattern string is specified.
25631
25632 2008-02-01 Kenichi Handa <handa@m17n.org>
25633
25634 * xfaces.c (Fface_font): New optional arg CHARACTER.
25635
25636 2008-02-01 Kenichi Handa <handa@m17n.org>
25637
25638 * charset.h (CHARSET_OFFSET): New macro.
25639
25640 2008-02-01 Kenichi Handa <handa@m17n.org>
25641
25642 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
25643
25644 * fontset.c (fontset_face): Handle the case that repertory is a
25645 char-table.
25646 (find_font_encoding): Return nil for unknown encoding.
25647 (Fset_fontset_font): Ignore a font of unknown encoding.
25648
25649 2008-02-01 Kenichi Handa <handa@m17n.org>
25650
25651 * keymap.c (describe_vector): Handle default value of a char table.
25652
25653 * fontset.c (fontset_face): Handle fallback fonts correctly.
25654 (Ffontset_info): Return infomation about fallback fonts.
25655
25656 2008-02-01 Kenichi Handa <handa@m17n.org>
25657
25658 * fontset.c (FONTSET_DEFAULT): New macro.
25659 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
25660 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
25661 the case that it is nil.
25662 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
25663 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
25664
25665 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
25666 subset or superset.
25667
25668 2008-02-01 Kenichi Handa <handa@m17n.org>
25669
25670 * emacs.c (main): Call init_charset after syms_of_XXX.
25671
25672 * charset.c (Vcharset_map_directory): Delete.
25673 (Vcharset_map_path): New variable.
25674 (load_charset_map_from_file): Use Vcharset_map_path instead.
25675 (init_charset): Initialize Vcharset_map_path.
25676 (syms_of_charset): Delete declaration of "charset-map-directory",
25677 add declaration of "charset-map-path".
25678
25679 2008-02-01 Kenichi Handa <handa@m17n.org>
25680
25681 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
25682 ASCII only string.
25683
25684 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
25685
25686 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
25687 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
25688
25689 2008-02-01 Kenichi Handa <handa@m17n.org>
25690
25691 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
25692
25693 * coding.c (QCmnemonic, QCdefalut_char)
25694 (QCdecode_translation_table, QCencode_translation_table)
25695 (QCpost_read_conversion, QCpre_write_conversion): New variables.
25696 (get_translation_table): Return a list of translation tables if
25697 necessary.
25698 (decode_coding): Call get_translation_table with ENCODEP 0.
25699 (char_encodable_p): If translation_table is non-nil, always call
25700 translate_char.
25701 (Fdefine_coding_system_internal): Accept list of translation
25702 tables as :encode-translation-table and :decode-translation-table.
25703 (Fcoding_system_put): New function.
25704 (syms_of_coding): Declare new symbols.
25705 Defsubr Scoding_system_put.
25706 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
25707 typically JISX0212.
25708
25709 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
25710 when the charset is superset type.
25711
25712 * character.c (translate_char): Accept list of translation tables.
25713
25714 2008-02-01 Kenichi Handa <handa@m17n.org>
25715
25716 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
25717 (CODING_ATTR_TRANS_TBL): New macro.
25718
25719 * coding.c (get_translation_table): New function.
25720 (translate_chars): Fix the bug of skipping annotation data.
25721 (decode_coding, encode_coding): Utilize get_translation_table.
25722 (char_encodable_p, Funencodable_char_position): Translate char if
25723 necessary.
25724 (Ffind_coding_systems_region_internal)
25725 (Fcheck_coding_systems_region): Setup translation table for encode
25726 in a coding system attribute vector in advance.
25727 (Fdefine_coding_system_internal): Allow a symbol as translation
25728 table. For shift-jis type coding system, allow 4th charset.
25729
25730 2008-02-01 Kenichi Handa <handa@m17n.org>
25731
25732 * coding.c (decode_coding_sjis): Check the first byte rigidly.
25733
25734 * xdisp.c (get_next_display_element): Pass -1 as POS to
25735 FACE_FOR_CHAR if displaying a C-string.
25736
25737 2008-02-01 Kenichi Handa <handa@m17n.org>
25738
25739 * composite.c (get_composition_id): Handle xoff and yoff in a
25740 composition rule.
25741
25742 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
25743 (struct composition): New member lbearing and rbearing.
25744
25745 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
25746 (x_get_glyph_overhangs): Handle a composition glyph.
25747 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
25748
25749 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
25750 composition glyph.
25751
25752 2008-02-01 Kenichi Handa <handa@m17n.org>
25753
25754 * print.c: Include charset.h.
25755 (Vprint_charset_text_property): New variable.
25756 (Qdefault): Extern it.
25757 (PRINT_STRING_NON_CHARSET_FOUND)
25758 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
25759 (print_check_string_result): New variable.
25760 (print_check_string_charset_prop): New function.
25761 (print_prune_charset_plist): New variable.
25762 (print_prune_string_charset): New function.
25763 (print_object): Call print_prune_string_charset if
25764 Vprint_charset_text_property is not t.
25765 (print_interval): Print nothing if interval->plist is nil.
25766 (syms_of_print): Declare Vprint_charset_text_property as a lisp
25767 variable. Init and staticpro print_prune_charset_plist.
25768
25769 2008-02-01 Kenichi Handa <handa@m17n.org>
25770
25771 * fontset.c (new_fontset_from_font_name): Use the specified font
25772 for all characters in the new fontset.
25773
25774 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
25775 OBJECT args.
25776
25777 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
25778 OBJECT args for composition too.
25779
25780 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
25781 OBJECT args.
25782
25783 2008-02-01 Kenichi Handa <handa@m17n.org>
25784
25785 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
25786
25787 * fontset.c (reorder_font_vector): Adjust for the change of
25788 FONT_DEF format.
25789 (fontset_face): New arg id. Change caller.
25790 (face_for_char): New args pos and object.
25791 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
25792 (fs_query_fontset): Check NAME by Fassoc too.
25793 (Fset_fontset_font): Allow non-XLFD font name.
25794 (Ffontset_info): Adjust for the change of FONT_DEF format.
25795
25796 * fontset.h (face_for_char): Adjust prototype.
25797
25798 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
25799 (append_space, extend_face_to_end_of_line)
25800 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
25801 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
25802
25803 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
25804 POS and OBJECT args.
25805
25806 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
25807 POS and OBJECT args.
25808
25809 2008-02-01 Jason Rumney <jasonr@gnu.org>
25810
25811 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
25812 of GlobalAlloc'ed memory.
25813
25814 2008-02-01 Kenichi Handa <handa@m17n.org>
25815
25816 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
25817
25818 * charset.h (charset_table_used): Delete extern.
25819
25820 * charset.c (charset_table_used): Make it static.
25821 (map_charset_chars): Fix args to c_function with.
25822
25823 * chartab.c (map_sub_char_table_for_charset): Fix args to
25824 c_function with.
25825
25826 * coding.h (enum coding_result_code):
25827 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
25828
25829 * coding.c (Qinsufficient_source, Qinconsistent_eol)
25830 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
25831 (Vlast_code_conversion_error): New variables.
25832 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
25833 (ONE_MORE_BYTE): Record error if any instead of signaling an
25834 error. If non-ASCII multibyte char is found, return the negative
25835 value of the code. All callers changed to check it.
25836 (ONE_MORE_BYTE_NO_CHECK): Likewise.
25837 (record_conversion_result): New function. Change all codes setting
25838 coding->result to call this function.
25839 (detect_coding_utf_8, decode_coding_utf_8)
25840 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
25841 Don't use the local variable incomplete.
25842 (emacs_mule_char): Change the second arg to `const'.
25843 (decode_coding): Fix of flushing out unprocessed data.
25844 (make_conversion_work_buffer): Fix making of a work buffer.
25845 (decode_coding_object): Return coding->dst_object.
25846
25847 * fontset.c (set_fontset_font): Fix args.
25848
25849 * lisp.h (CHARACTERBITS): Define as 22.
25850
25851 * process.c (send_process): Be sure to set coding->src_multibyte.
25852
25853 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
25854
25855 2008-02-01 Kenichi Handa <handa@m17n.org>
25856
25857 * xdisp.c (handle_auto_composed_prop): Give limit to
25858 Fnext_single_char_property_change.
25859
25860 2008-02-01 Kenichi Handa <handa@m17n.org>
25861
25862 * composite.c (syms_of_composite): Don't make the composition hash
25863 table weak.
25864
25865 * fontset.c (Fset_fontset_font): Fix docstring.
25866
25867 * lisp.h (detect_coding_system): Adjust prototype.
25868
25869 * fileio.c (kill_workbuf_unwind): Delete this function.
25870 (Finsert_file_contents): Adjust the call of detect_coding_system.
25871 Get conversion_buffer by code_conversion_save. Use the macro
25872 CODING_MAY_REQUIRE_DECODING. After decoding, update
25873 coding_system.
25874
25875 * coding.h (make_conversion_work_buffer): Delete extern.
25876 (code_conversion_save): Extern it.
25877
25878 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
25879 (CODING_GET_INFO): Delete argument eol_type. Change callers.
25880 (decode_coding_utf_8): Don't do eol converion.
25881 (detect_coding_utf_16): Check coding->src_chars, not
25882 coding->src_bytes. Add heuristics for those that have no signature.
25883 (decode_coding_emacs_mule, decode_coding_iso_2022)
25884 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
25885 Don't do eol converion.
25886 (adjust_coding_eol_type): Return a new coding system.
25887 (detect_coding): Don't detect eol. Fix for utf-16 detection.
25888 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
25889 each change.
25890 (decode_coding): Pay attention to undo_list. Do eol conversion for
25891 all types of coding-systems (if necessary).
25892 (Vcode_conversion_work_buf_list): Delete it.
25893 (Vcode_conversion_reused_workbuf): Rename from
25894 Vcode_conversion_reused_work_buf.
25895 (Vcode_conversion_workbuf_name): New variable.
25896 (reused_workbuf_in_use): New variable.
25897 (make_conversion_work_buffer): Delete the arg DEPTH.
25898 (code_conversion_restore): Change argument to cons.
25899 (code_conversion_save): Delete the argument BUFFER. Change callers.
25900 (detect_coding_system): New argument src_chars. Change callers.
25901 Fix for utf-16 detection.
25902 (init_coding_once): Don't use ISO_carriage_return.
25903 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
25904 reused_workbuf_in_use.
25905
25906 2008-02-01 Kenichi Handa <handa@m17n.org>
25907
25908 * keymap.c (store_in_keymap): Pay attention to the case that idx
25909 is a cons specifying a character range.
25910
25911 2008-02-01 Kenichi Handa <handa@m17n.org>
25912
25913 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
25914 HANDLED_RECOMPUTE_PROPS.
25915
25916 * coding.c (Fdefine_coding_system_internal): Fix checking of
25917 ascii compatibility.
25918
25919 2008-02-01 Kenichi Handa <handa@m17n.org>
25920
25921 * charset.c (find_charsets_in_text): Delete unused locale variable.
25922 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
25923
25924 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
25925 Resync charset_list to Vemacs_mule_charset_list.
25926
25927 * keymap.c (store_in_keymap): Pay attention to the case that idx
25928 is a cons specifying a character range.
25929
25930 2008-02-01 Kenichi Handa <handa@m17n.org>
25931
25932 * composite.c (update_compositions): Bind inhibit-read-only, etc
25933 to t before calling remove-list-of-text-properties.
25934
25935 * print.c (print_object): Always print ASCII chars as is.
25936
25937 2008-02-01 Kenichi Handa <handa@m17n.org>
25938
25939 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
25940
25941 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
25942 is a char table.
25943
25944 2008-02-01 Kenichi Handa <handa@m17n.org>
25945
25946 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
25947
25948 2008-02-01 Kenichi Handa <handa@m17n.org>
25949
25950 * xfaces.c (set_lface_from_font_name): Fix for the case that
25951 FONTNAME is not fontset name.
25952
25953 2008-02-01 Kenichi Handa <handa@m17n.org>
25954
25955 * fns.c (base64_encode_1): Fix previous change.
25956
25957 2008-02-01 Kenichi Handa <handa@m17n.org>
25958
25959 * fontset.c (set_fontset_font): New function.
25960 (Fset_fontset_font): If a font is specified for a charset, use
25961 map_charset_chars to store the font spec in a fontset.
25962
25963 2008-02-01 Kenichi Handa <handa@m17n.org>
25964
25965 * fontset.c (fontset_face): Create a fallback fontset on demand.
25966 (make_fontset): Don't create a fallback fontset here.
25967 (free_face_fontset): Free a fallback fontset (if any) too.
25968 (n_auto_fontsets): Delete this variable.
25969 (auto_fontset_alist): New variable.
25970 (new_fontset_from_font_name): Check auto_fontset_alist.
25971 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
25972 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
25973 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
25974 Defsubr Sfontset_list_all.
25975
25976 2008-02-01 Kenichi Handa <handa@m17n.org>
25977
25978 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
25979
25980 2008-02-01 Kenichi Handa <handa@m17n.org>
25981
25982 * fontset.c (Fnew_fontset): Check NAME more rigidly.
25983
25984 2008-02-01 Kenichi Handa <handa@m17n.org>
25985
25986 * editfns.c (Fgoto_char): Fix docstring.
25987
25988 2008-02-01 Kenichi Handa <handa@m17n.org>
25989
25990 * insdel.c (insert_from_gap): Adjust intervals correctly.
25991
25992 2008-02-01 Jason Rumney <jasonr@gnu.org>
25993
25994 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
25995 (pfnGetFontUnicodeRanges): New dynamically loaded function.
25996 (w32_initialize): Try to load it.
25997 (x_get_font_repertory): Use it if available.
25998 (w32_encode_char): Add shortcut for unicode output.
25999
26000 * w32fns.c (w32_load_system_font): Default charset to -1.
26001 (x_to_w32_charset): Match all fonts for unicode.
26002 (w32_to_x_charset): New parameter matching. Don't return partial
26003 or wildcard charsets.
26004 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
26005 (w32_codepage_for_font): Return CP_UNICODE for unicode.
26006 (w32_to_x_font): Match charset to real charset.
26007 (enum_font_cb2): Always list unicode versions.
26008
26009 * makefile.w32-in (temacs): Increase EMHEAP.
26010
26011 2008-02-01 Jason Rumney <jasonr@gnu.org>
26012
26013 * w32term.c (w32_encode_char): New charset parameter.
26014 font_info.encoding becomes encoding_type.
26015 (x_get_font_repertory): New function. Warning: stub only!
26016 (x_new_font): Return quickly if font already set.
26017 (x_new_fontset): fontsetname parameter is Lisp_Object.
26018 Use new fs_query_fontset. Try new_fontset_from_font_name.
26019 Use fontset_name for return value.
26020
26021 * w32term.h: Declare x_get_font_repertory.
26022
26023 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
26024 place of find_charset_in_text. Use encode_coding_object in place
26025 of encode_coding.
26026 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
26027 decode_coding.
26028
26029 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
26030 of x_new_fontset.
26031 (w32_load_system_font): Initialize charset as unicode.
26032 font_info.encoding becomes encoding_type.
26033 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
26034 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
26035 (syms_of_w32fns): Set get_font_repertory_func.
26036
26037 * w32console.c: Include character.h. Use terminal_encode_buffer
26038 from term.c.
26039 (write_glyphs): Use new version of encode_terminal_code.
26040 Use encode_coding_object in place of encode_coding.
26041
26042 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
26043 encoding becomes encoding_type.
26044
26045 * term.c (terminal_encode_buffer): Make externally visible.
26046
26047 * makefile.w32-in: Add character.h dependancies.
26048 (character.o, chartab.o): New targets.
26049
26050 2008-02-01 Kenichi Handa <handa@m17n.org>
26051
26052 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
26053 CODING_ID_EOL_TYPE.
26054
26055 2008-02-01 Andreas Schwab <schwab@suse.de>
26056
26057 * coding.c (produce_chars): Revert last change.
26058
26059 2008-02-01 Kenichi Handa <handa@m17n.org>
26060
26061 * charset.h (charset_unicode): Extern it.
26062
26063 * charset.c (string_xstring_p): Check by (C >= 0x100).
26064 (find_charsets_in_text): Change format of the arc CHARSETS.
26065 New arg MULTIBYTE.
26066 (Ffind_charset_region, Ffind_charset_string): Adjust for the
26067 change of find_charsets_in_text.
26068 (Fsplit_char): Fix doc. Never return unknown.
26069
26070 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
26071
26072 * coding.c (Fdefine_coding_system_alias):
26073 Update Vcoding_system_list.
26074
26075 * fontset.c (load_font_get_repertory): Pay attention to the case
26076 that ENCODING of a font is specified by a char-table.
26077
26078 * xterm.c (x_get_font_repertory): Handle the case that the
26079 encoding of font is other than Unicode.
26080
26081 2008-02-01 Kenichi Handa <handa@m17n.org>
26082
26083 * term.c (encode_terminal_code): Don't handle glyph-table.
26084 Check if a character is encodable by the terminal coding system.
26085 If not, produces proper number of `?'s. Update
26086 terminal_encode_buffer and terminal_encode_buf_size if necessary.
26087 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
26088
26089 2008-02-01 Kenichi Handa <handa@m17n.org>
26090
26091 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
26092 New variables.
26093 (encode_terminal_code): Change argument. Encode multiple
26094 characters at once. Store the result of encoding in
26095 terminal_encode_buffer.
26096 (write_glyphs, insert_glyphs): Adjust for the change of
26097 encode_terminal_code.
26098 (term_init): Initialize terminal_encode_buffer and
26099 terminal_encode_buf_size.
26100
26101 * coding.c (consume_chars): If coding->src_object is nil, don't
26102 check annotation.
26103
26104 2008-02-01 Kenichi Handa <handa@m17n.org>
26105
26106 * character.c (char_string): Use ASCII_CHAR_P instead of
26107 SINGLE_BYTE_CHAR_P.
26108
26109 2008-02-01 Kenichi Handa <handa@m17n.org>
26110
26111 * xdisp.c (handle_auto_composed_prop): Check if the last
26112 characters of auto-composed region is newly composed with the
26113 following characters.
26114 (handle_composition_prop): Fix checking of point being inside
26115 composition.
26116
26117 2008-02-01 Kenichi Handa <handa@m17n.org>
26118
26119 * fns.c (concat): Don't change multibyteness of the result by
26120 concatenating an 8-bit character.
26121
26122 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
26123 multibyteness of the result when newelt is an 8-bit character.
26124
26125 2008-02-01 Dave Love <fx@gnu.org>
26126
26127 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
26128 EMACS_INT.
26129
26130 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
26131
26132 * xfaces.c (face_numeric_value): Declare dim size_t.
26133 (Finternal_lisp_face_equal_p): Remove unused f.
26134
26135 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
26136 (MATRIX_ROW): Remove unused vars.
26137 (draw_glyphs, x_insert_glyphs, fast_find_position)
26138 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
26139 byte/char counts.
26140
26141 * regex.c (regex_compile): Remove unused var.
26142
26143 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
26144
26145 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
26146 (Faccessible_keymaps, where_is_internal): Remove unused vars.
26147
26148 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
26149
26150 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
26151
26152 * fileio.c (Fwrite_region): Remove unused var.
26153
26154 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
26155 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
26156
26157 * composite.c (Fremove_list_of_text_properties): Declare.
26158
26159 * coding.c (inhibit_pre_post_conversion): Remove (unused).
26160 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
26161 (coding_inherit_eol_type): Remove unused attrs.
26162 (detect_coding): Cast arg of detect_eol.
26163
26164 * charset.c (syms_of_charset): Remove unused var p.
26165 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
26166 byte/char counts.
26167
26168 * casetab.c (set_case_table): Remove unused var.
26169
26170 * window.c (Fdisplay_buffer, Fframe_selected_window):
26171 Remove unused vars.
26172
26173 2008-02-01 Dave Love <fx@gnu.org>
26174
26175 * xterm.c (x_bitmap_mask): Declare.
26176
26177 2008-02-01 Dave Love <fx@gnu.org>
26178
26179 * xterm.c (x_term_init): Fix type error.
26180
26181 * lisp.h: Add Funibyte_char_to_multibyte.
26182
26183 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
26184 (Fset_coding_system_priority): Doc fix.
26185
26186 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
26187
26188 * indent.c (check_composition): Make start and end EMACS_INT.
26189
26190 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
26191
26192 * xdisp.c (handle_composition_prop, check_point_in_composition):
26193 Make buffer positions EMACS_INT.
26194
26195 * composite.c (find_composition, run_composition_function)
26196 (update_compositions, Ffind_composition_internal): Make buffer
26197 positions EMACS_INT.
26198
26199 * composite.h (find_composition, update_compositions):
26200 Make position args EMACS_INT.
26201
26202 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
26203
26204 * intervals.c (get_property_and_range):
26205 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
26206
26207 * unexalpha.c: Don't include varargs.h.
26208
26209 2008-02-01 Dave Love <fx@gnu.org>
26210
26211 * coding.h (ENCODE_UTF_8): New.
26212
26213 * Makefile.in (gtkutil.o): Depend on coding.h.
26214
26215 * coding.c (Fset_coding_system_priority): Doc fix.
26216
26217 2008-02-01 Kenichi Handa <handa@m17n.org>
26218
26219 * fileio.c (Finsert_file_contents): Call setup_coding_system in
26220 the case of auto saving.
26221
26222 2008-02-01 Andreas Schwab <schwab@suse.de>
26223
26224 * chartab.c (map_char_table, map_char_table_for_charset):
26225 Protect `range' from GC.
26226
26227 2008-02-01 Kenichi Handa <handa@m17n.org>
26228
26229 * coding.c (decode_coding_sjis): Check bytes more rigidly.
26230
26231 2008-02-01 Kenichi Handa <handa@m17n.org>
26232
26233 * fileio.c (choose_write_coding_system): Return a decided coding system.
26234 (Fwrite_region): Set Vlast_coding_system_used to the return value
26235 of choose_write_coding_system.
26236
26237 2008-02-01 Kenichi Handa <handa@m17n.org>
26238
26239 * charset.c (Fset_charset_priority): Pay attention to duplicated
26240 arguments.
26241
26242 * coding.c (QCcategory): New variable.
26243 (syms_of_coding): Defsym it. Set all elements of
26244 Vcoding_category_table and their symbol values.
26245 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
26246 coding-category-XXX, and coding-category-list.
26247 (Fdefine_coding_system_internal): Add category in the plist.
26248
26249 2008-02-01 Kenichi Handa <handa@m17n.org>
26250
26251 * callproc.c (Fcall_process): Handle carryover correctly.
26252
26253 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
26254 (raw_text_coding_system): Check NILP (coding_system).
26255 (coding_inherit_eol_type): Check NILP (coding_system) and
26256 NILP (parent).
26257 (consume_chars): Fix for the case of raw-text.
26258
26259 * process.c (read_process_output): Handle carryover correctly.
26260
26261 2008-02-01 Dave Love <fx@gnu.org>
26262
26263 * regex.c (re_search_2): Fix last change.
26264
26265 2008-02-01 Kenichi Handa <handa@m17n.org>
26266
26267 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
26268 target_multibyte. Even in a unibyte case, return a converted
26269 multibyte char.
26270 (GET_CHAR_AFTER): New macro.
26271 (PATFETCH): Translate via multibyte char.
26272 (HANDLE_UNIBYTE_RANGE): Delete this macro.
26273 (SETUP_MULTIBYTE_RANGE): New macro.
26274 (regex_compile): Setup compiled code so that its multibyteness
26275 matches that of a target. Fix the handling of "[X-YZ]" using
26276 SETUP_MULTIBYTE_RANGE.
26277 (analyse_first) <charset>: For filling fastmap for all multibyte
26278 characters, don't check by BASE_LEADING_CODE_P.
26279 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
26280 the same as RE_MULTIBYTE_P (bufp) now.
26281 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
26282 (TARGET_CHAR_AND_LENGTH): Delete this macro.
26283 (TRANSLATE_VIA_MULTIBYTE): New macro.
26284 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
26285 It is the same as RE_MULTIBYTE_P (bufp) now.
26286 <exactn>: Translate via multibyte.
26287 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
26288 Don't translate it.
26289 <charset, charset_not>: Fetch a character by
26290 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
26291 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
26292 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
26293 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
26294 by GET_CHAR_AFTER.
26295 (bcmp_translate): Likewise.
26296
26297 * search.c (compile_pattern): Check the member target_multibyte,
26298 not the member multibyte of buf.
26299
26300 * lread.c (read1): While reading a string, set force_singlebyte
26301 and force_multibyte correctly.
26302
26303 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
26304 up of unibyte_to_multibyte_table.
26305
26306 2008-02-01 Kenichi Handa <handa@m17n.org>
26307
26308 * coding.c (setup_coding_system): If coding has
26309 post-read-conversion or pre-write-conversion, set
26310 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
26311 respectively.
26312 (decode_coding_gap): Run post-read-conversion if any.
26313
26314 * fileio.c (Finsert_file_contents): Even if we read into a
26315 unibyte buffer, check if we must decode the result or not.
26316
26317 2008-02-01 Kenichi Handa <handa@m17n.org>
26318
26319 * coding.c (make_conversion_work_buffer): Change the work buffer
26320 name to the same one as that of Emacs 21.
26321
26322 2008-02-01 Kenichi Handa <handa@m17n.org>
26323
26324 * coding.h (make_conversion_work_buffer): Adjust prototype.
26325 (code_conversion_restore): Don't extern it.
26326
26327 * coding.c (detected_mask): Delete unused variable.
26328 (decode_coding_iso_2022): Pay attention to the byte sequence of
26329 CTEXT extended segment, and retain those bytes as is.
26330 (decode_coding_ccl): Delete unused variable `valids'.
26331 (setup_coding_system): Delete unused variable `category'.
26332 (consume_chars): Delete unused variable `category'. Make it work
26333 for non-multibyte case.
26334 (make_conversion_work_buffer): Change argument.
26335 (saved_coding): Delete unused variable.
26336 (code_conversion_restore): Don't check saved_coding->destination.
26337 (code_conversion_save): New function.
26338 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
26339 instead of record_unwind_protect.
26340 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
26341 (detect_coding_system): Delete unused variable `mask'.
26342 (Fdefine_coding_system_internal): Delete unused variable id.
26343
26344 * fileio.c (kill_workbuf_unwind): New function.
26345 (Finsert_file_contents): On replacing, call
26346 make_conversion_work_buffer with correct args, and call
26347 record_unwind_protect with the first arg kill_workbuf_unwind.
26348
26349 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
26350
26351 2008-02-01 Kenichi Handa <handa@m17n.org>
26352
26353 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
26354 (fontset_add): Fix for the case that TO is less than TO1.
26355 (Ffontset_info): Don't use fallback fontset on checking the
26356 default fontset.
26357 (dump_fontset): New function for debugging.
26358
26359 * coding.c (Fdefine_coding_system_internal): Fix for the case that
26360 coding_type is Qcharset.
26361
26362 2008-02-01 Kenichi Handa <handa@m17n.org>
26363
26364 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
26365 (map_char_table): Don't inherit the value from the parent on
26366 initializing VAL. Adjust for the above change.
26367
26368 2008-02-01 Kenichi Handa <handa@m17n.org>
26369
26370 * coding.c (Qsignature, Qendian): Delete these variables.
26371 (syms_of_coding): Don't initialize them.
26372 (CATEGORY_MASK_UTF_16_AUTO): New macro.
26373 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
26374 detect_info->found.
26375 (decode_coding_utf_16): Don't detect BOM here.
26376 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
26377 is NOT utf_16_without_bom.
26378 (setup_coding_system): For a coding system of type utf-16, check
26379 if the attribute :endian is Qbig or not (not nil or not), and set
26380 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
26381 (detect_coding): If coding type is utf-16 and BOM detection is
26382 required, detect it.
26383 (Fdefine_coding_system_internal): For a coding system of type
26384 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
26385
26386 2008-02-01 Kenichi Handa <handa@m17n.org>
26387
26388 * coding.c (coding_set_source): Fix for the case that the current
26389 buffer is different from coding->src_object.
26390 (decode_coding_object): Don't use the conversion work buffer if
26391 DST_OBJECT is a buffer.
26392
26393 2008-02-01 Dave Love <fx@gnu.org>
26394
26395 * lread.c (read_emacs_mule_char) [len==2]: Index
26396 emacs_mule_charset correctly.
26397
26398 2008-02-01 Dave Love <fx@gnu.org>
26399
26400 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
26401 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
26402 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
26403 treated specially.)
26404 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
26405 (detected_mask): Remove Big5 bits.
26406
26407 2008-02-01 Kenichi Handa <handa@m17n.org>
26408
26409 The following changes are to make the font rescaling facility
26410 compatible with Emacs 21.
26411
26412 * xfaces.c (Vface_font_rescale_alist): Rename from
26413 Vface_resizing_fonts.
26414 (struct font_name): Rename member resizing_ratio to rescale_ratio.
26415 (font_rescale_ratio): Rename from font_resizing_ratio.
26416 (split_font_name): Set font->rescale_ratio.
26417 (better_font_p): Pay attention to font->rescale_ratio.
26418 (build_scalable_font_name): Likewise. Change RESX, and RESY
26419 fields.
26420 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
26421
26422 2008-02-01 Kenichi Handa <handa@m17n.org>
26423
26424 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
26425 (Qutf_16_le): Remove these variables.
26426 (syms_of_coding): Don't DEFSYM them.
26427 (decode_coding_utf_16): Fix handling of BOM.
26428 (encode_coding_utf_16): Fix handling of BOM.
26429
26430 2008-02-01 Kenichi Handa <handa@m17n.org>
26431
26432 * fileio.c (Finsert_file_contents): On replacing, before decoding
26433 the file into the work buffer, set point of the work buffer to the end.
26434
26435 2008-02-01 Dave Love <fx@gnu.org>
26436
26437 * coding.c (Fcheck_coding_systems_region): Fix type errors.
26438
26439 2008-02-01 Dave Love <fx@gnu.org>
26440
26441 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26442 and fix C types.
26443
26444 2008-02-01 Kenichi Handa <handa@m17n.org>
26445
26446 * xdisp.c (SKIP_GLYPHS): New macro.
26447 (set_cursor_from_row): Pay attention to string display properties.
26448
26449 * category.c (copy_category_entry): Fix for the case that RANGE
26450 is an integer.
26451
26452 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
26453
26454 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
26455
26456 2008-02-01 Kenichi Handa <handa@m17n.org>
26457
26458 * charset.c (Fcharset_id_internal): New function.
26459 (syms_of_charset): Defsubr it.
26460
26461 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
26462 with the last arg charset_list acquired from coding.
26463 (Fdefine_coding_system_internal): For ccl-based coding system, fix
26464 the attribute coding_attr_ccl_valids.
26465
26466 * coding.h (enum define_coding_ccl_arg_index): Set the first
26467 member coding_arg_ccl_decoder to coding_arg_max.
26468
26469 * ccl.h (ccl_driver): Adjust prototype.
26470
26471 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
26472 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
26473 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
26474 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
26475 last arg Qnil.
26476
26477 2008-02-01 Kenichi Handa <handa@m17n.org>
26478
26479 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
26480 call encode_char.
26481
26482 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
26483
26484 2008-02-01 Dave Love <fx@gnu.org>
26485
26486 * composite.c (syms_of_composite): Make composition_hash_table weak.
26487
26488 2008-02-01 Kenichi Handa <handa@m17n.org>
26489
26490 * dispextern.h (check_face_attributes, generate_ascii_font_name)
26491 (font_name_registry): Don't extern them.
26492 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
26493
26494 * fontset.h (Qfontset): Don't extern it.
26495 (new_fontset_from_font_name): Extern it.
26496
26497 * fontset.c: Give 8 extra slots to fontset objects.
26498 (Qfontset_info): New variable.
26499 (syms_of_fontset): Defsym it.
26500 (FONTSET_FALLBACK): New macro.
26501 (fontset_face): Try also the default fontset.
26502 (make_fontset): Realize a fallback fontset from the default fontset.
26503 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
26504 using split_font_name_into_vector and build_font_name_from_vector.
26505 (Fset_fontset_font): Access the elements of font_spec by enum
26506 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
26507 name by using split_font_name_into_vector.
26508 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
26509 generate a proper font name from the fontset name.
26510 Update Vfontset_alias_alist.
26511 (n_auto_fontsets): New variable.
26512 (new_fontset_from_font_name): New function.
26513 (Ffont_info): Store the information about fonts generated from the
26514 default fontset in the first extra slot of the returned char-table.
26515
26516 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
26517 (font_name_registry): Delete function.
26518 (split_font_name_into_vector): New function.
26519 (build_font_name_from_vector): New function.
26520 (font_list): The argument REGISTRY is now a list of registry names.
26521 (choose_face_font): If we are choosing an ASCII font, and ATTRS
26522 specifies an explicit font name, return the name as is. Make a
26523 list of registy names.
26524
26525 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
26526 of x_new_fontset.
26527 (Fx_create_frame): Don't call x_new_fontset here. Just use
26528 x_list_fonts to check the existence of fonts.
26529
26530 * xterm.h (x_new_fontset): Adjust prototype.
26531
26532 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
26533 string. Use new_fontset_from_font_name to create a fontset from a
26534 font name.
26535
26536 2008-02-01 Kenichi Handa <handa@m17n.org>
26537
26538 * syntax.c (Vfind_word_boundary_function_table): New name for
26539 Vnext_word_boundary_function_table.
26540 (find-word-boundary-function-table): New name for
26541 next-word-boundary-function-table.
26542
26543 2008-02-01 Dave Love <fx@gnu.org>
26544
26545 * Makefile.in: Fix some dependencies.
26546
26547 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
26548 set it to nil before returning.
26549
26550 * composite.c (update_compositions): Fix type error.
26551
26552 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
26553
26554 2008-02-01 Kenichi Handa <handa@m17n.org>
26555
26556 * xterm.c (x_new_font): Optimize for the case that the font is
26557 already set for the frame.
26558
26559 2008-02-01 Kenichi Handa <handa@m17n.org>
26560
26561 * chartab.c (char_table_ascii): Check if the char table contents
26562 is sub-char-table or not.
26563 (char_table_set, char_table_set_range): Fix argument to
26564 char_table_ascii.
26565
26566 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
26567 (detect_coding_utf_8, detect_coding_utf_16)
26568 (detect_coding_emacs_mule, detect_coding_iso_2022)
26569 (detect_coding_sjis, detect_coding_big5)
26570 (detect_coding_ccl, detect_coding_charset): Change argument MASK
26571 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
26572 sequence is valid in this coding system. Change callers.
26573 (MAX_ANNOTATION_LENGTH): New macro.
26574 (ADD_ANNOTATION_DATA): New macro.
26575 (ADD_COMPOSITION_DATA): Change argument. Change callers.
26576 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
26577 (ADD_CHARSET_DATA): New macro.
26578 (emacs_mule_char): New argument ID. Change callers.
26579 (decode_coding_emacs_mule, decode_coding_iso_2022)
26580 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
26581 Produce charset annotation data in coding->charbuf.
26582 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
26583 to charset annotation data in coding->charbuf.
26584 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
26585 coding->common_flags if the coding system is iso-2022 based and
26586 uses designation.
26587 (produce_composition): Adjust for the new annotation data format.
26588 (produce_charset): New function.
26589 (produce_annotation): Handle charset annotation.
26590 (handle_composition_annotation, handle_charset_annotation):
26591 New functions.
26592 (consume_chars): Handle charset annotation. Utilize the above two
26593 functions.
26594 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
26595 buffer, get the deleted text as a string and set
26596 coding->src_object to that string.
26597 (detect_coding, detect_coding_system): Use the new struct
26598 coding_detection_info.
26599
26600 * coding.h (struct coding_detection_info): New structure.
26601 (struct coding_system): Adjust prototype of the member `detector'.
26602 (CODING_ANNOTATE_CHARSET_MASK): New macro.
26603
26604 2008-02-01 Kenichi Handa <handa@m17n.org>
26605
26606 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
26607
26608 2008-02-01 Dave Love <fx@gnu.org>
26609
26610 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
26611 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
26612 to new local and nullify apropos_accumulate before returning.
26613 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
26614
26615 2008-02-01 Kenichi Handa <handa@m17n.org>
26616
26617 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
26618 correctly.
26619
26620 2008-02-01 Dave Love <fx@gnu.org>
26621
26622 * fns.c (Flanginfo): Call synchronize_system_time_locale.
26623
26624 2008-02-01 Kenichi Handa <handa@m17n.org>
26625
26626 The following changes are to make character composition happen
26627 automatically on displaying.
26628
26629 * Makefile.in (lisp, shortlisp): Add composite.elc.
26630
26631 * composite.h (Qauto_composed, Vauto_composition_function)
26632 (Qauto_composition_function): Extern them.
26633
26634 * composite.c (Vcomposition_function_table)
26635 (Qcomposition_function_table): Delete variables.
26636 (Qauto_composed, Vauto_composition_function)
26637 (Qauto_composition_function): New variables.
26638 (run_composition_function): Don't call
26639 compose-chars-after-function.
26640 (update_compositions): Clear `auto-composed' text property.
26641 (compose_chars_in_text): Delete this function.
26642 (syms_of_composite): Staticpro Qauto_composed and
26643 Qauto_composition_function. Declare Vauto_composition_function as
26644 a Lisp variable.
26645
26646 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
26647
26648 * xdisp.c (it_props): Add an entry for Qauto_composed.
26649 (handle_auto_composed_prop): New function.
26650
26651 * xselect.c (selection_data_to_lisp_data): Don't call
26652 compose_chars_in_text.
26653
26654 2008-02-01 Dave Love <fx@gnu.org>
26655
26656 * keyboard.c (read_char): Modify checking around use of
26657 Vkeyboard_translate_table.
26658
26659 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
26660 and fix C types.
26661
26662 2008-02-01 Kenichi Handa <handa@m17n.org>
26663
26664 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
26665 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
26666 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
26667 the case that the last byte is '\r' correctly.
26668 (decode_coding): Flush out the unprocessed data correctly.
26669 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
26670
26671 2008-02-01 Dave Love <fx@gnu.org>
26672
26673 * xterm.c (XTread_socket): Fix changes for defined keysyms.
26674 Add XK_ISO... case.
26675 (xaw_scroll_callback): Revert last change.
26676
26677 2008-02-01 Kenichi Handa <handa@m17n.org>
26678
26679 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
26680
26681 2008-02-01 Kenichi Handa <handa@m17n.org>
26682
26683 * xfaces.c (Vface_resizing_fonts): New variable.
26684 (struct font_name): New member `resizing_ratio'.
26685 (font_resizing_ratio): New function.
26686 (split_font_name): Set font->resizing_ratio.
26687 (better_font_p): Pay attention to font->resizing_ratio.
26688 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
26689 RESX, and RESY fields.
26690 (try_alternative_families): Try scalable fonts if
26691 Vscalable_fonts_allowed is not Qt.
26692 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
26693
26694 2008-02-01 Dave Love <fx@gnu.org>
26695
26696 * xterm.c (xaw_scroll_callback): Cast correctly.
26697
26698 2008-02-01 Dave Love <fx@gnu.org>
26699
26700 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
26701 (lispy_kana_keys): Comment out.
26702 (make_lispy_event) [XK_kana_A]: Comment out.
26703
26704 * xterm.c (xaw_scroll_callback): Cast call_data.
26705 (XTread_socket): Deal with ASCII keysyms.
26706 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
26707
26708 2008-02-01 Dave Love <fx@gnu.org>
26709
26710 * xterm.c (Vx_keysym_table): New.
26711 (syms_of_xterm): Initialize it.
26712 (XTread_socket): Use it.
26713 From head: Eliminate incorrect optimization that tried to avoid
26714 decoding the output of X*LookupString.
26715 (x_get_font_repertory): Delete charset declaration.
26716
26717 2008-02-01 Kenichi Handa <handa@m17n.org>
26718
26719 * coding.c (detect_coding_charset): If only ASCII bytes are found,
26720 return 0.
26721 (Fdefine_coding_system_internal):
26722 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
26723
26724 2008-02-01 Dave Love <fx@gnu.org>
26725
26726 * coding.c (Fcheck_coding_system): Doc fix.
26727
26728 * editfns.c (Finsert_byte): Return a proper value.
26729
26730 2008-02-01 Kenichi Handa <handa@m17n.org>
26731
26732 * coding.c (decode_coding): Fix args to translate_chars.
26733 Pay attention to Vstandard_translation_table_for_decode.
26734 (encode_coding): Fix args to translate_chars. Pay attention to
26735 Vstandard_translation_table_for_encode.
26736
26737 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
26738 SINGLE_BYTE_CHAR_P.
26739
26740 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
26741 not by SINGLE_BYTE_CHAR_P.
26742
26743 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
26744 SINGLE_BYTE_CHAR_P.
26745
26746 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
26747 SINGLE_BYTE_CHAR_P.
26748
26749 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
26750 by SINGLE_BYTE_CHAR_P.
26751
26752 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
26753 SINGLE_BYTE_CHAR_P.
26754
26755 2008-02-01 Dave Love <fx@gnu.org>
26756
26757 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
26758
26759 2008-02-01 Dave Love <fx@gnu.org>
26760
26761 * fns.c (Flanginfo): Fix typo.
26762
26763 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
26764
26765 2008-02-01 Kenichi Handa <handa@m17n.org>
26766
26767 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
26768 (detect_coding_emacs_mule, detect_coding_iso_2022)
26769 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
26770 incomplete byte sequence. Don't update *mask when correctly detected.
26771 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
26772 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
26773 (detect_coding, detect_coding_system): Adjust for the changes above.
26774
26775 2008-02-01 Kenichi Handa <handa@m17n.org>
26776
26777 * character.c (char_string): Rename from
26778 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
26779 (string_char): Rename from string_char.
26780
26781 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
26782 if C is greater than MAX_3_BYTE_CHAR.
26783 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
26784 Call string_char instead of string_char_with_unification.
26785
26786 2008-02-01 Dave Love <fx@gnu.org>
26787
26788 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
26789
26790 2008-02-01 Kenichi Handa <handa@m17n.org>
26791
26792 * keymap.c (push_key_description): Pay attention to force_multibyte.
26793
26794 * regex.c (re_search_2): Fix for the case of unibyte buffer.
26795
26796 2008-02-01 Dave Love <fx@gnu.org>
26797
26798 * charset.c (define_charset_internal): Rename `supprementary'.
26799
26800 * Makefile.in (lisp, shortlisp): Remove latin-N.
26801
26802 2008-02-01 Dave Love <fx@gnu.org>
26803
26804 * xfns.c (x_window, x_window): Use use_xim.
26805
26806 * xterm.c (use_xim): Initialize.
26807 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
26808 (x_term_init): Maybe set use_xim.
26809
26810 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
26811
26812 2008-02-01 Kenichi Handa <handa@m17n.org>
26813
26814 * search.c (search_buffer): Fix case-fold-search of multibyte
26815 characters.
26816 (boyer_moore): Rename the last argument to char_high_bits.
26817
26818 2008-02-01 Kenichi Handa <handa@m17n.org>
26819
26820 * xdisp.c (display_string): Fix for the case of zero width glyph.
26821
26822 * xfns.c (x_set_font): Change the error message of the case that
26823 x_new_fontset returns Qt.
26824
26825 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
26826 (Finternal_set_lisp_face_attribute): Use signal_error for the
26827 error of invalid fontset.
26828
26829 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
26830 fontset, return Qt.
26831
26832 2008-02-01 Dave Love <fx@gnu.org>
26833
26834 * unexelf.c (unexec): Make .got handling not SGI-specific.
26835
26836 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
26837
26838 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
26839
26840 * keyboard.c (read_key_sequence): Fix type error.
26841
26842 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
26843 Fix type error.
26844
26845 * fontset.c (fontset_add): Return Lisp_Object.
26846
26847 2008-02-01 Dave Love <fx@gnu.org>
26848
26849 * charset.h (charset_ordered_list_tick): Declare extern.
26850
26851 2008-02-01 Kenichi Handa <handa@m17n.org>
26852
26853 The following changes (and some of 2008-02-01 changes of mine) are
26854 for handling syntax, category, and case conversion for unibyte
26855 characters by converting them to multibyte on the fly. With these
26856 changes, we don't have to setup syntax and case tables for unibyte
26857 characters in each language environment.
26858
26859 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
26860 multibyte if necessary.
26861
26862 * bytecode.c (Fbyte_code): Likewise.
26863
26864 * character.h (LEADING_CODE_LATIN_1_MIN)
26865 (LEADING_CODE_LATIN_1_MAX): New macros.
26866 (unibyte_to_multibyte_table): Extern it.
26867 (unibyte_char_to_multibyte): New macro.
26868 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
26869 (CHAR_LEADING_CODE): New macro.
26870 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
26871
26872 * character.c (unibyte_to_multibyte_table): New variable.
26873 (unibyte_char_to_multibyte): Move to character.h and define as macro.
26874 (multibyte_char_to_unibyte): If C is an eight-bit character,
26875 convert it to the corresponding byte value.
26876
26877 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
26878 not 1, signals an error. Update the elements of
26879 unibyte_to_multibyte_table.
26880 (init_charset_once): Initialize unibyte_to_multibyte_table.
26881 (syms_of_charset): Define the charset `iso-8859-1'.
26882
26883 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
26884 as is without converting it to unibyte. In a unibyte buffer,
26885 convert C to multibyte before checking the syntax.
26886
26887 * lisp.h (unibyte_char_to_multibyte): Delete extern.
26888
26889 * minibuf.c (Fminibuffer_complete_word): Use the macro
26890 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
26891
26892 * regex.h (struct re_pattern_buffer): New member target_multibyte.
26893
26894 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
26895 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
26896 If that is zero, convert an eight-bit char to multibyte.
26897 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
26898 non-emacs case.
26899 (PATFETCH): Convert an eight-bit char to multibyte.
26900 (HANDLE_UNIBYTE_RANGE): New macro.
26901 (regex_compile): Setup the compiled pattern for multibyte chars
26902 even if the given regex string is unibyte. Use PATFETCH_RAW
26903 instead of PATFETCH in many places. To handle `charset'
26904 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
26905 only for ASCII chars.
26906 (analyse_first) <exactn>: Simplify because the compiled pattern
26907 is multibyte.
26908 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
26909 <charset>: Use CHAR_LEADING_CODE to get leading codes.
26910 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
26911 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
26912 multibyte always 1.
26913 (re_search_2): In emacs, set the locale variable multibyte to 1,
26914 otherwise to 0. New local variable target_multibyte. Check it
26915 to decide the multibyteness of STR1 and STR2.
26916 If target_multibyte is zero, convert unibyte chars to multibyte
26917 before translating and checking fastmap.
26918 (TARGET_CHAR_AND_LENGTH): New macro.
26919 (re_match_2_internal): In emacs, set the locale variable multibyte
26920 to 1, otherwise to 0. New local variable target_multibyte.
26921 Check it to decide the multibyteness of STR1 and STR2.
26922 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
26923 <charset, charset_not>: If multibyte is nonzero, check fastmap
26924 only for ASCII chars. Call bcmp_translate with
26925 target_multibyte, not with multibyte.
26926 <begline>: Declare the local variable C as `unsigned'.
26927 (bcmp_translate): Change the last arg name to target_multibyte.
26928
26929 * search.c (compile_pattern_1): Don't adjust the multibyteness of
26930 the regexp pattern and the matching target. Set cp->buf.multibyte
26931 to the multibyteness of the regexp pattern. Set
26932 cp->but.target_multibyte to the multibyteness of the matching target.
26933 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
26934 FETCH_STRING_CHAR_ADVANCE.
26935 (Freplace_match): Convert unibyte chars to multibyte.
26936
26937 * syntax.c (char_quoted, back_comment, scan_words)
26938 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
26939 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
26940 unibyte chars to multibyte.
26941 (skip_chars): Delete the arg syntaxp, and move the code for
26942 handling syntaxes to skip_syntaxes. Change callers.
26943 Fix the case that the multibyteness of STRING and the current
26944 buffer doesn't match.
26945 (skip_syntaxes): New function.
26946 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
26947 SINGLE_BYTE_CHAR_P.
26948
26949 2008-02-01 Kenichi Handa <handa@m17n.org>
26950
26951 * xfaces.c (QCfontset): New variable.
26952 (LFACE_FONTSET): New macro.
26953 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
26954 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
26955 (Finternal_set_lisp_face_attribute)
26956 (Finternal_get_lisp_face_attribute): Handle QCfontset.
26957 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
26958 check also LFACE_FONTSET_INDEX.
26959 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
26960 attrs[LFACE_FONT_INDEX].
26961 (syms_of_xfaces): Intern and staticpro QCfontset.
26962
26963 * dispextern.h (enum lface_attribute_index): New member
26964 LFACE_FONTSET_INDEX.
26965
26966 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
26967
26968 2008-02-01 Kenichi Handa <handa@m17n.org>
26969
26970 * coding.c (coding_set_destination): Fix coding->destination for
26971 the case converting a region.
26972 (encode_coding_utf_8): Encode eight-bit chars as single byte.
26973 (encode_coding_object): Fix coding->dst_pos and
26974 coding->dst_pos_byte for the case converting a region.
26975
26976 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
26977
26978 * character.h (BYTE8_STRING): New macro.
26979
26980 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
26981
26982 2008-02-01 Kenichi Handa <handa@m17n.org>
26983
26984 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
26985 characters by octal form.
26986
26987 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
26988
26989 * buffer.h (_fetch_multibyte_char_len): Delete extern.
26990 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
26991 _fetch_multibyte_char_len.
26992 (FETCH_CHAR_AS_MULTIBYTE): New macro.
26993
26994 * casetab.c (set_canon, set_identity, shuffle): Simplify.
26995
26996 * casefiddle.c (casify_object): Simplify. Handle the case that
26997 the case conversion change the byte length.
26998 (casify_region): Likewise.
26999
27000 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
27001
27002 * character.c (_fetch_multibyte_char_len): Delete this variable.
27003 (syms_of_character): Setup Vprintable_chars.
27004
27005 * editfns.c (Fchar_equal): Fix for the unibyte case.
27006 (Finsert_byte): New function.
27007 (syms_of_editfns): Defsubr it.
27008
27009 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
27010 of direct code 0x3ffff.
27011
27012 * search.c (Freplace_match): Fix for the unibyte case.
27013
27014 2008-02-01 Kenichi Handa <handa@m17n.org>
27015
27016 * lread.c (safe_to_load_p): Fix the logic.
27017
27018 * syntax.c (scan_words): Don't treat characters belonging to
27019 different scripts as constituting a word.
27020
27021 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27022
27023 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
27024
27025 * emacs.c (main): In the case of --unibyte, instead of aborting on
27026 finding non-empty buffer, make it unibyte.
27027
27028 2008-02-01 Kenichi Handa <handa@m17n.org>
27029
27030 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
27031 to create a fontset.
27032
27033 2008-02-01 Dave Love <fx@gnu.org>
27034
27035 * character.c (Funibyte_char_to_multibyte): Doc fix.
27036
27037 * xfns.c [HAVE_STDLIB_H]: Fix last change.
27038
27039 2008-02-01 Kenichi Handa <handa@m17n.org>
27040
27041 * fontset.c (fontset_add): Make the type `int'.
27042 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
27043
27044 * character.c (unibyte_char_to_multibyte)
27045 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
27046 charset_unibyte, not charset_primary.
27047
27048 * charset.h (charset_unibyte): Extern it instead of charset_primary.
27049
27050 * charset.c (charset_unibyte): Rename from charset_primary.
27051 (Funibyte_charset): Rename from Fprimary_charset.
27052 (Fset_unibyte_charset): Rename from Fset_primary_charset.
27053 (syms_of_charset): Adjust for the above changes.
27054
27055 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27056 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27057 it->multibyte_p is zero.
27058
27059 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
27060 Delete extern.
27061
27062 2008-02-01 Kenichi Handa <handa@m17n.org>
27063
27064 * coding.c (Fdefine_coding_system_internal): Fix category setting
27065 for a coding system of type iso-2022.
27066
27067 2008-02-01 Kenichi Handa <handa@m17n.org>
27068
27069 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
27070
27071 2008-02-01 Kenichi Handa <handa@m17n.org>
27072
27073 * syntax.c (Vnext_word_boundary_function_table): New variable.
27074 (next-word-boundary-function-table): Declare it as a Lisp variable
27075 in syms_of_syntax.
27076 (scan_words): Call functions in Vnext_word_boundary_function_table
27077 if any.
27078
27079 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
27080
27081 * fontset.c (fs_load_font): If fontp->charset is not negative,
27082 return fontp without setting its members.
27083
27084 2008-02-01 Dave Love <fx@gnu.org>
27085
27086 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
27087
27088 * m/sparc.h (HAVE_ALLOCA): Delete.
27089
27090 * s/irix6-5.h: Don't include strings.h.
27091 (bcopy, bzero, bcmp): Don't undef.
27092
27093 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
27094
27095 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
27096 (TIOCSIGSEND): Don't test IRIX6.
27097 (bcopy, bzero, bcmp): Define conditionally.
27098
27099 2008-02-01 Kenichi Handa <handa@m17n.org>
27100
27101 * buffer.c (Qas, Qmake, Qto): New variables.
27102 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
27103 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
27104
27105 * callproc.c (Fcall_process): Don't call insert_1_both directly if
27106 we are inserting a process output into a multibyte buffer.
27107
27108 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
27109 multibyte_char_to_unibyte.
27110
27111 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
27112 by the primary charset, make it eight-bit char.
27113 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
27114
27115 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
27116 (charset_8_bit__control, charset_8_bit_graphic)
27117 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
27118 (define_charset_internal): New function.
27119 (syms_of_charset): Call define_charset_internal for pre-defined
27120 charsets.
27121
27122 * charset.h (charset_8_bit): Extern it.
27123
27124 * coding.c (make_conversion_work_buffer): Adjust for the change
27125 of Fset_buffer_multibyte.
27126 (encode_coding_raw_text): Increment p0 in the loop.
27127
27128 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
27129
27130 * xdisp.c (setup_echo_area_for_printing, set_message_1):
27131 Adjust for the change of Fset_buffer_multibyte.
27132
27133 * fns.c (Fstring_to_multibyte): New function.
27134 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
27135
27136 2008-02-01 Dave Love <fx@gnu.org>
27137
27138 * xfns.c (x_put_x_image): Declare args.
27139
27140 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
27141 (try_font_list): Declare an arg.
27142
27143 * xdisp.c (message2_nolog, set_message): Declare an arg.
27144
27145 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
27146
27147 * syntax.c (scan_sexps_forward): Declare an arg.
27148
27149 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
27150 Declare an arg.
27151
27152 * lisp.h (Fnew_fontset): Declare.
27153
27154 * keymap.c (push_key_description): Call CHARACTERP correctly.
27155
27156 * fontset.c (fontset_add): Declare args. Call make_number correctly.
27157 (face_for_char): Delete unused vars.
27158 (Fset_fontset_font): Doc fix. Delete unused vars.
27159
27160 * doc.c (Fsubstitute_command_keys): Delete unused vars.
27161
27162 * composite.c (update_compositions): Declare arg.
27163
27164 * cm.c (calccost, cmgoto): Declare args.
27165
27166 * charset.c: Remove `emacs' conditional. Doc fixes.
27167 (map_char_table_for_charset): Declare.
27168
27169 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
27170
27171 * ccl.c: Remove `emacs' conditional.
27172
27173 2008-02-01 Kenichi Handa <handa@m17n.org>
27174
27175 The following changes are to allow specifying multiple font
27176 patterns for a character range (specified by script or charset).
27177
27178 * Makefile.in (abbrev.o): Depend on syntax.h.
27179 (xfaces.o): Depend on charset.h.
27180
27181 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
27182 SINGLE_BYTE_CHAR_P.
27183
27184 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
27185
27186 * character.h (Vchar_script_table): Extern it.
27187
27188 * character.c (Vscript_alist): Delete.
27189 (Vchar_script_table, Qchar_script_table): New variable.
27190 (syms_of_character): Declare Vchar_script_table as a lisp variable
27191 and initialize it.
27192
27193 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
27194 have property char-table-extra-slots, make no extra slot.
27195
27196 * dispextern.h (struct face): Delete member `charset'.
27197 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
27198 SINGLE_BYTE_CHAR_P.
27199 (choose_face_font, lookup_non_ascii_face, font_name_registry):
27200 Add prototypes.
27201 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
27202 (generate_ascii_font_name): Rename from generate_ascii_font.
27203
27204 * fontset.h (get_font_repertory_func): New prototype.
27205 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
27206 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
27207
27208 * fontset.c (Qprepend, Qappend): New variables.
27209 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
27210 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
27211 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
27212 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
27213 (fontset_ref_and_range, fontset_add, reorder_font_vector)
27214 (load_font_get_repertory): New functions.
27215 (fontset_set): Delete.
27216 (fontset_face): New arg FACE. Return face ID, not face.
27217 Complete re-write to handle new fontset structure. Change caller.
27218 (free_face_fontset): Use ASET istead of AREF (X) = Y.
27219 (face_for_char): Don't call lookup_face.
27220 (make_fontset_for_ascii_face): New arg FACE.
27221 (fs_load_font): New arg CHARSET_ID. Don't check
27222 Vfont_encoding_alist here.
27223 (find_font_encoding): New function.
27224 (list_fontsets): Use STRINGP, not ! NILP.
27225 (accumulate_script_ranges): New function.
27226 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
27227 Completely re-written to handle new fontset structure.
27228 (Ffontset_font): Return a copy of element.
27229 (syms_of_fontset): Define symbols Qprepend and Qappend.
27230 Fix docstring of font-encoding-alist.
27231
27232 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
27233 (Fset_fotset_font): Fix arguments to 5.
27234
27235 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
27236
27237 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
27238 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27239 (highlight_trailing_whitespace): Adjust for the change of
27240 lookup_named_face.
27241
27242 * xfaces.c: Include charset.h.
27243 (load_face_font): Delete argument C. Change caller.
27244 (generate_ascii_font_name): Rename from generate_ascii_font.
27245 (font_name_registry): New function.
27246 (cache_face): Store ascii faces before non-ascii faces in buckets.
27247 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
27248 Lookup only ascii faces.
27249 (lookup_non_ascii_face): New function.
27250 (lookup_named_face): Delete argument C. Change caller.
27251 (lookup_derived_face): Delete argument C. Change caller.
27252 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
27253 a string, just call font_list with it.
27254 (choose_face_font): Delete arguments FACE and C. New arg
27255 FONT_SPEC. Change caller.
27256 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
27257 Change caller.
27258 (realize_non_ascii_face): New function.
27259 (realize_x_face): Call load_face_font here.
27260 (realize_tty_face): Delete argument C. Change caller.
27261 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
27262 get a face ID.
27263 (dump_realized_face): Don't print charset of FACE.
27264
27265 * xfns.c (x_set_font): Always call x_new_fontset and
27266 store_frame_parameter.
27267 (Fx_create_frame): Call x_new_fontset, not x_new_font.
27268 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
27269
27270 * xterm.h (x_get_font_repertory): Extern it.
27271
27272 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
27273 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
27274 it->multibyte_p is zero.
27275 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
27276 (x_new_fontset): If FONTSETNAME doesn't match any existing
27277 fontsets, create a new one.
27278 (x_get_font_repertory): New function.
27279
27280 2008-02-01 Kenichi Handa <handa@m17n.org>
27281
27282 * coding.c (Ffind_coding_systems_region_internal): Detect an
27283 ASCII only string correctly.
27284
27285 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
27286 version is 0.
27287
27288 2008-02-01 Kenichi Handa <handa@m17n.org>
27289
27290 * lread.c: Include "coding.h".
27291 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
27292 (load_each_byte, unread_char): New variables.
27293 (readchar_backlog): Delete.
27294 (readchar): Return a character unless load_each_byte is nonzero.
27295 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
27296 cons. If unread_char is not -1, simply return it.
27297 (unreadchar): Handle the case that readcharfun is
27298 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
27299 (read_multibyte): Delete.
27300 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
27301 (read_emacs_mule_char): New functions.
27302 (Fload): Even if the file doesn't have the extension ".elc", if
27303 safe_to_load_p returns a positive version number, assume that the
27304 file contains bytecompiled code. If the version is less than 22,
27305 load the file while decoding multibyte sequences by emacs-mule.
27306 (readevalloop): Don't use readchar_backlog.
27307 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
27308 (Fread_from_string): Pay attention to the case that STREAM is a cons.
27309 (read_escape): Delete the arg BYTEREP.
27310 (read1): Set load_each_byte to 1 temporarily while handling
27311 #@NUMBER. Don't call read_multibyte.
27312 (read_vector): Call Fread with a cons. If readcharfun is
27313 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
27314 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
27315 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
27316 and Qload_force_doc_strings.
27317
27318 2008-02-01 Kenichi Handa <handa@m17n.org>
27319
27320 * xdisp.c (face_before_or_after_it_pos):
27321 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
27322
27323 2008-02-01 Kenichi Handa <handa@m17n.org>
27324
27325 * character.h (TRAILING_CODE_P): New macro.
27326 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
27327 (string_char_with_unification): Fix prototype.
27328 (Vscript_alist): Extern it.
27329
27330 * character.c (Vscript_alist): New variable.
27331 (string_char_with_unification, str_as_unibyte)
27332 (string_escape_byte8): Add `const' to local variables.
27333 (syms_of_character): Declare script-alist as a Lisp variable.
27334
27335 * charset.h (Vcharset_ordered_list): Extern it.
27336 (charset_ordered_list_tick): Extern it.
27337 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
27338 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
27339 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
27340 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
27341 (Funify_charset): Adjust for the change of Funify_charset.
27342
27343 * charset.c (charset_ordered_list_tick): New variable.
27344 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
27345 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
27346 deunify instead of unify a charset.
27347 (string_xstring_p): Add `const' to local variables.
27348 (find_charsets_in_text): Add `const' to arguments and local variables.
27349 (encode_char): Adjust for the change of Funify_charset.
27350 Fix detecting of invalid code.
27351 (Fset_charset_priority): Increment charset_ordered_list_tick.
27352 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
27353 and TO_CODE.
27354
27355 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
27356 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
27357 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
27358 (decode_coding_ccl, consume_chars)
27359 (Ffind_coding_systems_region_internal)
27360 (Fcheck_coding_systems_region): Add `const' to local variables.
27361
27362 * print.c (print_object): Use octal form for printing the
27363 contents of a bool vector.
27364
27365 2008-02-01 Dave Love <fx@gnu.org>
27366
27367 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
27368 <version == 20>: Refuse to load.
27369
27370 2008-02-01 Dave Love <fx@gnu.org>
27371
27372 * fns.c: Move coding.h.
27373 (Qcodeset, Qdays, Qmonths): New.
27374 (concat): Use CHARACTERP instead of INTEGERP.
27375 (Flocale_codeset): Delete.
27376 (Flanginfo): New function.
27377 (syms_of_fns): Change accordingly.
27378
27379 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
27380
27381 2008-02-01 Dave Love <fx@gnu.org>
27382
27383 * casetab.c (init_casetab_once, init_casetab_once):
27384 Fix CHAR_TABLE_SET call.
27385
27386 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
27387
27388 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
27389
27390 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
27391 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
27392 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
27393
27394 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
27395
27396 * coding.c (ENCODE_DESIGNATION, decode_eol)
27397 (make_conversion_work_buffer, code_conversion_restore)
27398 (Fdefine_coding_system_internal): Convert Lisp types.
27399 (code_conversion_restore): Use EQ, not ==.
27400 (Fencode_coding_string): Fix code_convert_string call.
27401
27402 * coding.h (code_convert_region): Fix prototype.
27403
27404 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
27405
27406 * fontset.c (fontset_ref, fontset_set, fs_load_font)
27407 (Ffontset_info): Convert Lisp types.
27408
27409 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
27410
27411 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
27412
27413 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
27414
27415 * chartab.c: Include "...h", not <...h> in some cases.
27416
27417 * callproc.c (Fcall_process): Remove unused variables.
27418
27419 2008-02-01 Dave Love <fx@gnu.org>
27420
27421 * coding.c (Fset_coding_system_priority): Allow null arg list.
27422
27423 2008-02-01 Dave Love <fx@gnu.org>
27424
27425 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
27426 (Fself_insert_and_exit): Use CHARACTERP.
27427
27428 * callproc.c (Fcall_process): Remove unused vars.
27429
27430 * xterm.c (XTread_socket): Add extra dead keysyms.
27431
27432 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
27433
27434 * dispextern.h: Remove prototypes for redraw_frame,
27435 redraw_garbaged_frames.
27436
27437 * cmds.c (Fself_insert_command): Use CHARACTERP.
27438
27439 * chartab.c (make_sub_char_table): Remove unused var.
27440 (Fset_char_table_default, Fmap_char_table): Doc fix.
27441
27442 * keymap.c (access_keymap): Remove generic char code.
27443 (push_key_description): Use CHARACTERP.
27444
27445 2008-02-01 Dave Love <fx@gnu.org>
27446
27447 * charset.c: Doc fixes.
27448 (Funify_charset): Extra checking.
27449
27450 2008-02-01 Dave Love <fx@gnu.org>
27451
27452 * lread.c: Remove some unused variables.
27453 (safe_to_load_p): If safe, return the magic number version byte.
27454 (Fload): Maybe use load-with-code-conversion.
27455
27456 2008-02-01 Kenichi Handa <handa@m17n.org>
27457
27458 * category.c (Fmodify_category_entry): Don't modify the contents
27459 of category_set for characters out of the range.
27460 Avoid unnecessary modification.
27461
27462 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
27463 Vchar_unify_table. The default value of the table is now nil.
27464
27465 * character.c (syms_of_character): Setup Vchar_width_table for
27466 eight-bit-control and raw-byte chars.
27467
27468 * charset.h (enum define_charset_arg_index):
27469 Delete charset_arg_parents and add charset_arg_subset and
27470 charset_arg_superset.
27471 (enum charset_attr_index): Delete charset_parents and add
27472 charset_subset and charset_superset.
27473 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
27474 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
27475 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
27476 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
27477 (CHARSET_SUPERSET): New macros.
27478 (charset_work): Extern it.
27479 (ENCODE_CHAR): Use charset_work.
27480 (CHAR_CHARSET_P): Adjust for the change of encoder format.
27481 (map_charset_chars): Extern it.
27482
27483 * charset.c (load_charset_map): Set the default value of encoder
27484 and deunifier char-tables to nil.
27485 (map_charset_chars): Change argument. Change callers.
27486 Use map_char_table_for_charset instead of map_char_table.
27487 (Fmap_charset_chars): New optional args from_code and to_code.
27488 (Fdefine_charset_internal): Adjust for the change of
27489 `define-charset' (:parents -> :subset or :superset).
27490 (charset_work): New variable.
27491 (encode_char, syms_of_charset): Adjust for the change of
27492 Fdefine_charset_internal.
27493 (Ffind_charset_string): Setup the vector `charsets' correctly.
27494
27495 * chartab.c (sub_char_table_ref_and_range): New arg default.
27496 Fix the previous change.
27497 (char_table_ref_and_range): Adjust for the above change.
27498 (map_sub_char_table_for_charset): New function.
27499 (map_char_table_for_charset): New function.
27500
27501 * keymap.c (describe_vector): Handle a char-table directly here.
27502 (describe_char_table): Delete.
27503
27504 * lisp.h (map_charset_chars): Delete.
27505
27506 2008-02-01 Dave Love <fx@gnu.org>
27507
27508 * fns.c (count_combining): Comment out (unused).
27509 (Flocale_codeset): New.
27510 (syms_of_fns): Defsubr it.
27511
27512 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
27513 (size_t): Remove.
27514
27515 2008-02-01 Dave Love <fx@gnu.org>
27516
27517 * Makefile.in (chartab.o): Depend on charset.h.
27518
27519 2008-02-01 Kenichi Handa <handa@m17n.org>
27520
27521 * character.c (syms_of_character): Set the default value of
27522 Vprintable_chars to Qnil.
27523
27524 2008-02-01 Dave Love <fx@gnu.org>
27525
27526 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
27527
27528 2008-02-01 Kenichi Handa <handa@m17n.org>
27529
27530 * charset.c (load_charset_map): Handle the case that from < to
27531 correctly.
27532
27533 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
27534 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
27535 Pay attention to raw-8-bit chars.
27536
27537 2008-02-01 Kenichi Handa <handa@m17n.org>
27538
27539 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
27540 It is not bytecompiled now.
27541
27542 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
27543 (charset_jisx0208): New variables.
27544 (Fdefine_charset_internal): Setup them if appropriate.
27545 (init_charset_once): Initialize them to -1.
27546
27547 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
27548 (charset_jisx0208): Extern them.
27549
27550 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
27551 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
27552 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
27553 (setup_iso_safe_charsets): Fix arguments to Fassq.
27554 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
27555 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
27556 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
27557 (encode_coding_iso_2022): Change the 1st arg to
27558 ENCODE_ISO_CHARACTER to a variable.
27559
27560 2008-02-01 Kenichi Handa <handa@m17n.org>
27561
27562 * charset.h (enum define_charset_arg_index): New enums
27563 charset_arg_min_code and charset_arg_max_code.
27564 (struct charset): New member char_index_offset.
27565
27566 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
27567 Take charset->char_index_offset into account.
27568 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
27569 args[charset_arg_max_code]. Setup charset.char_index_offset.
27570 (syms_of_charset): Fix args to Fdefine_charset_internal.
27571
27572 2008-02-01 Dave Love <fx@gnu.org>
27573
27574 * coding.c (decode_coding_utf_8): Reject overlong sequences.
27575
27576 2008-02-01 Dave Love <fx@gnu.org>
27577
27578 * coding.c: Doc fixes.
27579 (Fcoding_system_aliases): Fix return value.
27580 (Qmac): Remove (duplicated) definition.
27581
27582 2008-02-01 Dave Love <fx@gnu.org>
27583
27584 * charset.c (Fcharset_priority_list, Fset_charset_priority):
27585 New functions.
27586
27587 * character.c (Fstring): Doc fix.
27588
27589 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
27590
27591 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
27592 (font-encoding-alist): Doc fix.
27593
27594 2008-02-01 Dave Love <fx@gnu.org>
27595
27596 * term.c (costs_set): Declare static, non-initialized for pcc.
27597 (encode_terminal_code): Remove unused var.
27598
27599 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
27600 for K&R.
27601
27602 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
27603
27604 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
27605 (suffixes): Move out of make_subsidiaries for K&R.
27606
27607 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
27608
27609 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
27610
27611 2008-02-01 Dave Love <fx@gnu.org>
27612
27613 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
27614
27615 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
27616
27617 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
27618
27619 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
27620
27621 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
27622
27623 2008-02-01 Kenichi Handa <handa@m17n.org>
27624
27625 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
27626 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
27627
27628 2008-02-01 Kenichi Handa <handa@m17n.org>
27629
27630 * coding.c (decode_coding_charset): Adjust for the change of
27631 Fdefine_coding_system_internal.
27632 (Fdefine_coding_system_internal): For a coding system of
27633 `charset' type, store a list of charset IDs in
27634 `charset_attr_charset_valids' element of coding attributes.
27635
27636 2008-02-01 Kenichi Handa <handa@m17n.org>
27637
27638 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
27639 (emacs_mule_char): New arg src. Delete arg `composition'.
27640 Change caller. Handle 2-byte and 3-byte charsets correctly.
27641 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
27642 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
27643 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
27644 (DECODE_EMACS_MULE_21_COMPOSITION):
27645 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
27646 sequence.
27647 (decode_coding_emacs_mule): Handle composition correctly. Rewind
27648 `src' and `consumed_chars' correctly before calling emacs_mule_char.
27649 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
27650 and alt&rule composition.
27651 (decode_coding_iso_2022): Handle composition correctly.
27652 (init_coding_once): Setup emacs_mule_bytes for private charsets.
27653
27654 * charset.c (Fdefine_charset_internal): Fix bug for the case of
27655 re-defining a charset. If the charset has :emacs-mule-id, setup
27656 emacs_mule_bytes.
27657 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
27658
27659 2008-02-01 Kenichi Handa <handa@m17n.org>
27660
27661 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
27662 (encode_coding_big5, encode_coding_charset): If coding requires safe
27663 encoding, produce a character specified by
27664 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
27665
27666 2008-02-01 Dave Love <fx@gnu.org>
27667
27668 * xterm.c (XSetIMValues): Declare.
27669
27670 * process.c: Conditionally include sys/wait.h, pty.h.
27671
27672 * print.c (print_object): Fix print format for 64-bit systems.
27673
27674 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
27675
27676 * buffer.c (emacs_strerror): Declare.
27677
27678 * fontset.c (Fclear_face_cache): Declare.
27679 (accumulate_font_info): Comment-out (unused).
27680 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
27681 variables.
27682
27683 * character.h (string_escape_byte8): Declare.
27684
27685 * charset.c (load_charset_map, load_charset_map_from_file):
27686 Remove unused vars.
27687 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
27688 (Fmap_charset_chars): Doc fix.
27689
27690 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
27691 (Fset_coding_system_priority, Fset_coding_system_priority)
27692 (Fdefine_coding_system_internal): Doc fix.
27693
27694 2008-02-01 Dave Love <fx@gnu.org>
27695
27696 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
27697
27698 2008-02-01 Kenichi Handa <handa@m17n.org>
27699
27700 * character.c (string_escape_byte8): Make multibyte string with
27701 correct size.
27702
27703 * charset.c (Fmake_char): Delete unnecessary code.
27704
27705 2008-02-01 Kenichi Handa <handa@m17n.org>
27706
27707 * xfns.c (x_encode_text): Allocate coding.destination here, and
27708 call encode_coding_object with dst_object Qnil.
27709
27710 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
27711 multibyte form correctly.
27712
27713 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
27714 against Vfont_encoding_alist.
27715
27716 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
27717 handling of charset list.
27718 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
27719 (decode_coding_object): Move point to coding->dst_pos before
27720 calling post-read-conversion function.
27721 (encode_coding_object): Give correct arguments to
27722 pre-write-conversion. Ignore the return value of
27723 pre-write-conversion function. Pay attention to the case that
27724 pre-write-conversion changes the current buffer. If dst_object is
27725 Qt, even if coding->src_bytes is zero, allocate at least one byte
27726 to coding->destination.
27727
27728 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
27729
27730 * charset.c (Fmake_char): Make it more backward compatible.
27731 (Fmap_charset_chars): Fix docstring.
27732
27733 2008-02-01 Dave Love <fx@gnu.org>
27734
27735 * coding.c: Doc fixes.
27736 (Fdefine_coding_system_alias): Use names, not symbols, in
27737 coding-system-alist.
27738
27739 2008-02-01 Kenichi Handa <handa@m17n.org>
27740
27741 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
27742 of calling free_realized_face.
27743
27744 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
27745
27746 * charset.c (read_hex): Don't treat SPC as a comment starter.
27747 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
27748 (Fdecode_char): Fix typo.
27749
27750 2008-02-01 Kenichi Handa <handa@m17n.org>
27751
27752 * charset.h (struct charset): New member `code_space_mask'.
27753
27754 * coding.c (coding_set_source): Delete the local variable beg_byte.
27755 (encode_coding_charset, Fdefine_coding_system_internal):
27756 Delete the local variable charset.
27757 (Fdefine_coding_system_internal):
27758 Setup attrs[coding_attr_charset_valids] correctly.
27759
27760 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
27761 member to check if CODE is valid or not.
27762 (Fdefine_charset_internal): Initialize `code_space_mask' member.
27763 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
27764 is within the range of charset->min_code and carset->max_code.
27765
27766 2008-02-01 Dave Love <fx@gnu.org>
27767
27768 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
27769
27770 * dispextern.h (generate_ascii_font): Fix return type.
27771
27772 * xfaces.c (generate_ascii_font): Fix arg declaration.
27773
27774 * coding.c (coding_inherit_eol_type)
27775 (Fset_terminal_coding_system_internal)
27776 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
27777
27778 2008-02-01 Kenichi Handa <handa@m17n.org>
27779
27780 * coding.c (decode_coding_charset, encode_coding_charset):
27781 Handle multiple charsets correctly.
27782
27783 2008-02-01 Kenichi Handa <handa@m17n.org>
27784
27785 * search.c (boyer_moore): Fix handling of multibyte character
27786 translation.
27787
27788 * xdisp.c (display_mode_element): When the variable `elt' is
27789 changed, update `this' and `lisp_string'.
27790
27791 2008-02-01 Kenichi Handa <handa@m17n.org>
27792
27793 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
27794
27795 * callproc.c (Fcall_process): Be sure to give the current buffer
27796 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
27797
27798 * charset.c (struct charset_map_entries): New struct.
27799 (load_charset_map): Rename from parse_charset_map. New args
27800 entries and n_entries. Change caller.
27801 (load_charset_map_from_file): Rename from load_charset_map.
27802 Change caller. New arg control_flag. Call load_charset_map at
27803 the tail.
27804 (load_charset_map_from_vector): New function.
27805 (Fdefine_charset_internal): Setup charset.compact_codes_p.
27806 (encode_char): If the charset is compact, change a character index
27807 to a code point.
27808
27809 * coding.c (coding_alloc_by_making_gap): Check the case that the
27810 source and destination are the same correctly.
27811 (decode_coding_raw_text): Set coding->consumed_char and
27812 coding->consumed to 0.
27813 (produce_chars): If coding->chars_at_source is nonzero, update
27814 coding->consumed_char and coding->consumed before calling
27815 alloc_destination.
27816 (Fdefine_coding_system_alias): Register ALIAS in
27817 Vcoding_system_alist.
27818 (syms_of_coding): Define `no-conversion' coding system at the tail.
27819
27820 * fileio.c (Finsert_file_contents): Set coding_system instead of
27821 val. If the current buffer is multibyte, always call
27822 decode_coding_gap.
27823
27824 * xfaces.c (try_font_list): Give higher priority to fontset's
27825 family than face's family.
27826
27827 2008-02-01 Kenichi Handa <handa@m17n.org>
27828
27829 * callproc.c (Fcall_process): Be sure to give the current buffer
27830 to decode_coding_c_string.
27831
27832 * xfaces.c (try_font_list): Give a family specified in a fontset
27833 higher priority than a family specified in a face.
27834
27835 2008-02-01 Kenichi Handa <handa@m17n.org>
27836
27837 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
27838 Fix arguments to insert_from_buffer.
27839
27840 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
27841
27842 2008-02-01 Kenichi Handa <handa@m17n.org>
27843
27844 * coding.c (produce_chars): Set the variable `multibytep' correctly.
27845 (decode_coding_gap): Set coding->dst_multibyte correctly.
27846
27847 2008-02-01 Kenichi Handa <handa@m17n.org>
27848
27849 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
27850 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
27851 (encode_coding_utf_16): Substitute coding->default_char for
27852 non-Unicode characters.
27853 (decode_coding): Don't call record_insert here.
27854 (setup_coding_system): Initialize `surrogate' of
27855 coding->spec.utf_16 to 0.
27856 (EMIT_ONE_BYTE): Fix for multibyte case.
27857
27858 * insdel.c (insert_from_gap): Call record_insert.
27859
27860 2008-02-01 Kenichi Handa <handa@m17n.org>
27861
27862 * casefiddle.c (casify_region): Fix multibyte case.
27863
27864 * character.c (c_string_width): Add return type `int'.
27865 (char_string_with_unification): Delete arg ADVANCED.
27866
27867 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
27868 (CHAR_STRING): Adjust for the change of char_string_with_unification.
27869 (CHAR_STRING_ADVANCE): Make it do-while statement.
27870
27871 * chartab.c (sub_char_table_set_range): Optimize for the case
27872 DEPTH == 3. Add workaround code for a GCC optimization bug.
27873
27874 * charset.c (parse_charset_map): Remove an unused variable.
27875
27876 * coding.c: Delete unused variables.
27877
27878 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
27879 earlier. If inserted is zero and the coding system doesn't
27880 require flushing, don't call decode_coding_gap.
27881
27882 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
27883
27884 2008-02-01 Kenichi Handa <handa@m17n.org>
27885
27886 The following changes are for using Unicode as an internal
27887 character model, and use UTF-8 format for buffer/string
27888 representation.
27889
27890 * .gdbinit (xchartable): Adjust for the change of char table structure.
27891 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
27892
27893 * Makefile.in (obj): Add character.o and chartab.o.
27894 (lisp, shortlisp): Remove utf-8.elc.
27895 (*.o): For many files, change dependency on charset.h to
27896 character.h, and add dependency on character.h.
27897 (character.o, chartab.o): New targets.
27898
27899 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
27900 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
27901 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
27902 of "charset.h".
27903
27904 * dired.c, filelock.c: Include "character.h".
27905
27906 * alloc.c: Include "character.h" instead of "charset.h".
27907 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
27908 (syms_of_alloc): Remove defsubr for Smake_char_table.
27909
27910 * buffer.c: Include "character.h" instead of "charset.h", don't
27911 include "coding.h".
27912 (Fset_buffer_multibyte): Adjust for UTF-8.
27913
27914 * buffer.h: EXFUN Fbuffer_live_p.
27915
27916 * callproc.c: Include "character.h" instead of "charset.h".
27917 (Fcall_process): Big change for the new code-conversion APIs.
27918
27919 * casetab.c: Include "character.h" instead of "charset.h".
27920 (set_canon, set_identity, shuffle): Adjust for the new
27921 map_char_table spec.
27922 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
27923 accessing the char table structure.
27924
27925 * chartab.c: New file that implements char table.
27926
27927 * category.c: Include "character.h".
27928 (copy_category_entry): New function.
27929 (copy_category_table): Call map_char_table and copy_category_entry.
27930 (Fmake_category_table): Initialize all top-level slots.
27931 (char_category_set): New function.
27932 (modify_lower_category_set): Delete.
27933 (Fmodify_category_entry): Call char_table_ref_and_range.
27934
27935 * category.h (CATEGORY_SET): Just call char_category_set.
27936
27937 * ccl.c: Include "character.h".
27938 (Qccl, Qcclp): New variables.
27939 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
27940 it's less than 256.
27941 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
27942 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
27943 and DST type.
27944 (ccl_driver): Change types of argument, adjust code accordingly.
27945 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
27946 ccl_driver.
27947 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
27948
27949 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
27950 New members src_multibyte, dst_multibyte, consumed, and produced.
27951 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
27952 (CODING_SPEC_CCL_PROGRAM): New macro.
27953 (ccl_driver): Update prototype.
27954 (Qccl, Qcclp, Fccl_program_p): Extern them.
27955 (CHECK_CCL_PROGRAM): New macro.
27956
27957 * character.c, character.h, chartab.c: New files.
27958
27959 * charset.c: Mostly re-written. Move character and multibyte sequence
27960 handling codes to character.c.
27961
27962 * charset.h: Mostly re-written. Move character and multibyte sequence
27963 handling codes to character.h.
27964
27965 * coding.c, coding.h: Mostly re-written.
27966
27967 * composite.c: Include "character.h" instead of "charset.h".
27968 (CHAR_WIDTH): Move to character.h.
27969 (HASH_KEY, HASH_VALUE): Delete.
27970
27971 * composite.h (enum composition_method): Change order of enumeration
27972 symbols.
27973
27974 * data.c: Include "character.h" instead of "charset.h".
27975 (Faref): Call CHAR_TABLE_REF for a char table.
27976 (Faset): Call CHAR_TABLE_SET for a char table.
27977
27978 * dispextern.h (free_realized_face, check_face_attribytes)
27979 (generate_ascii_font): Extern them.
27980 (free_realized_multibyte_face): Delete extern.
27981
27982 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
27983 table structure.
27984
27985 * editfns.c: Include "character.h" instead of "charset.h".
27986 (Fchar_to_string): Always call CHAR_STRING.
27987
27988 * emacs.c (main): Call init_charset_once, init_charset,
27989 syms_of_chartab, and syms_of_character.
27990
27991 * fileio.c: Include "character.h" instead of "charset.h".
27992 (Finsert_file_contents): Big change for the new code-conversion API.
27993 (choose_write_coding_system, Fwrite_region): Likewise.
27994 (build_annotations_2): Delete.
27995 (e_write): Big change for the new code-conversion API.
27996
27997 * fns.c: Include "character.h" instead of "charset.h".
27998 (copy_sub_char_table): Move to chartab.c.
27999 (Fcopy_sequence): Call copy_char_table for a char table.
28000 (concat): Delete codes calling count_multibyte.
28001 (string_char_to_byte, string_byte_to_char): Adjust for the new
28002 multibyte form.
28003 (internal_equal): Adjust for the change of char table structure.
28004 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
28005 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
28006 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
28007 (char_table_translate, optimize_sub_char_table)
28008 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
28009 chartab.c.
28010 (char_table_ref_and_index): Delete.
28011 (HASH_KEY, HASH_VALUE): Move to lisp.h.
28012 (Fmd5): Call preferred_coding_system instead of accessing
28013 Vcoding_category_list. Adjust for the new code-conversion API.
28014 (syms_of_fns): Move defsubr for char table related functions to
28015 chartab.c.
28016
28017 * fontset.c: Mostly re-written.
28018
28019 * fontset.h (struct font_info): Change type of the member encoding_type.
28020 (enum FONT_SPEC_INDEX): New enum.
28021 (fontset_font_pattern, fs_load_font): Update prototype.
28022 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
28023
28024 * indent.c: Include "character.h" instead of "charset.h".
28025 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
28026
28027 * insdel.c: Include "character.h" instead of "charset.h".
28028 (copy_text): Don't refer to Vnonascii_translation_table.
28029 (insert_from_gap): New function.
28030
28031 * keyboard.c: Include "character.h" instead of "charset.h".
28032 (command_loop_1): Never call direct_output_forward_char before
28033 a non-ASCII character.
28034 (read_char): If Vkeyboard_translate_table is a char table, always
28035 translate a character.
28036
28037 * keymap.c: Include "character.h".
28038 (store_in_keymap): Handle the case that IDX is a cons.
28039 (Fdefine_key): Handle the case that KEY is a cons and the car part
28040 is also a cons (range).
28041 (push_key_description): Adjust for the new character code.
28042 (describe_vector): Call describe_char_table for a char table.
28043 (describe_char_table): New function.
28044
28045 * keymap.h (describe_char_table): Extern it.
28046
28047 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
28048 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
28049 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
28050 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
28051 Delete.
28052 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
28053 structure.
28054 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
28055 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
28056 (CHARTAB_SIZE_BITS_3): New macros.
28057 (chartab_size): Extern it.
28058 (struct Lisp_Char_Table): Re-design.
28059 (struct Lisp_Sub_Char_Table): New structure.
28060 (HASH_KEY, HASH_VALUE): Move from fns.c.
28061 (CHARACTERBITS): Define as 22.
28062 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
28063 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
28064 (GC_SUB_CHAR_TABLE_P): New macro.
28065 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
28066 (code_convert_string_norecord): Delete extern.
28067 (init_character_once, syms_of_character, init_charset)
28068 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
28069
28070 * lread.c: Include "character.h".
28071 (read_multibyte): New arg NBYTES.
28072 (read_escape): Change the meaning of returned *BYTEREP.
28073 (to_multibyte): Delete.
28074 (read1): Adjust the handling of char table and string.
28075
28076 * print.c: Include "character.h" instead of "charset.h".
28077 (print_string): Convert 8-bit raw bytes to octal form by
28078 string_escape_byte8.
28079 (print_object): Adjust for the new multibyte form. Print 8-bit
28080 raw bytes always in octal form. Handle sub char table correctly.
28081
28082 * process.c: Include "character.h" instead of "charset.h".
28083 (read_process_output, send_process): Adjust for the new
28084 code-conversion API.
28085
28086 * puresize.h (BASE_PURESIZE): Increase.
28087
28088 * regex.c: Include "character.h" instead of "charset.h".
28089 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
28090 (regex_compile): Accept a range whose starting and ending
28091 character have different leading bytes.
28092 (analyse_first): Adjust for the above change.
28093
28094 * search.c: Include "character.h" instead of "charset.h".
28095 (search_buffer, boyer_moore): Adjust for the new multibyte form.
28096 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
28097
28098 * syntax.c: Include "character.h" instead of "charset.h".
28099 (syntax_parent_lookup): Delete.
28100 (Fmodify_syntax_entry): Accept a cons as CHAR.
28101 (skip_chars): Adjust for the new multibyte form.
28102 (init_syntax_once): Call char_table_set_range instead of directly
28103 accessing the structure of a char table.
28104
28105 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
28106 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
28107 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
28108 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
28109
28110 * term.c: Include "buffer.h" and "character.h".
28111 (encode_terminal_code, write_glyphs): Adjust for the new
28112 code-conversion API.
28113 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
28114
28115 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
28116
28117 * xdisp.c: Include "character.h".
28118 (get_next_display_element): Adjust for the new multibyte form.
28119 (disp_char_vector): Adjust for the new char table structure.
28120 (decode_mode_spec_coding): Adjust for the new structure of
28121 coding system.
28122 (decode_mode_spec): Adjust for the new code-conversion API.
28123
28124 * xfaces.c: Include "character.h" instead of "charset.h".
28125 (load_face_font): Adjust for the change of choose_face_font and
28126 FS_LOAD_FONT.
28127 (generate_ascii_font): New function.
28128 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
28129 (set_font_frame_param): Adjust for the change of choose_face_font.
28130 (free_realized_face): Make it public.
28131 (free_realized_faces_for_fontset): Rename from
28132 free_realized_multibyte_face. Free also faces realized for ASCII.
28133 (choose_face_font): Change arguments. Adjust for the change of
28134 fontset_font_pattern and FS_LOAD_FONT.
28135
28136 * xfns.c: Include "character.h".
28137 (x_encode_text): Adjust for the new code-conversion API.
28138
28139 * xselect.c: Don't include "charset.h".
28140 (selection_data_to_lisp_data): Adjust for the new code conversion API.
28141
28142 * xterm.c: Include "character.h".
28143 (x_encode_char): New argument CHARSET. Change caller.
28144 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
28145 Call ENCODE_CHAR instead of SPLIT_CHAR.
28146 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
28147 CHAR_WIDTH instead of CHARSET_WIDTH.
28148 (XTread_socket): Adjust for the new code-conversion API.
28149 (x_new_font): Adjust for the change of FS_LOAD_FONT.
28150 (x_load_font): Adjust for the change of struct font.
28151
28152 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
28153
28154 * xfaces.c (face_at_buffer_position): Remove unused vars.
28155
28156 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28157
28158 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
28159 Fix overflow checking.
28160
28161 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
28162
28163 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
28164 Cancel previous change.
28165
28166 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28167
28168 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
28169 ccl->eight_bit_control. Fix check for buffer overflow.
28170 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
28171 (ccl_driver): Initialize extra_bytes to 0.
28172
28173 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
28174
28175 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
28176 return it ORed with ctrl_modifier.
28177
28178 2008-01-29 Miles Bader <miles@gnu.org>
28179
28180 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
28181
28182 2008-01-28 Jason Rumney <jasonr@gnu.org>
28183
28184 * w32.c (stat): Don't double check for networked drive.
28185
28186 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
28187
28188 * window.c (run_window_configuration_change_hook): New function.
28189 Code extracted from set_window_buffer. Set the selected frame.
28190 (set_window_buffer): Use it.
28191 * window.h (run_window_configuration_change_hook): Declare.
28192 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
28193
28194 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
28195
28196 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
28197
28198 * Makefile.in: Remove references to unused macros.
28199
28200 2008-01-26 Eli Zaretskii <eliz@gnu.org>
28201
28202 * w32.c (g_b_init_get_sid_sub_authority)
28203 (g_b_init_get_sid_sub_authority_count): New static variables.
28204 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
28205 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
28206 (init_user_info): Use them to retrieve uid and gid.
28207 Use 500/513, the Windows defaults, as Administrator's uid/gid.
28208 (fstat): Use pw_uid and pw_gid from the_passwd structure for
28209 st_uid and st_gid of the file.
28210
28211 2008-01-26 Jason Rumney <jasonr@gnu.org>
28212
28213 * w32.c (logon_network_drive): New function.
28214 (stat): Use it.
28215
28216 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
28217
28218 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
28219 invisible text covered with an ellipsis.
28220
28221 2008-01-25 Richard Stallman <rms@gnu.org>
28222
28223 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
28224 jump back to beginning. Move some other initializations after that.
28225 (Qwindow_text_change_functions, Vwindow_text_change_functions):
28226 New variables.
28227 (syms_of_xdisp): Init them.
28228
28229 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
28230
28231 * buffer.c (reset_buffer_local_variables):
28232 Implement `permanent-local-hook'.
28233 (Qpermanent_local_hook): New variable.
28234 (syms_of_buffer): Init and staticpro it.
28235
28236 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
28237
28238 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
28239
28240 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
28241
28242 * fns.c (Fclrhash): Return TABLE.
28243
28244 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28245
28246 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
28247 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
28248 is set even without positional changes.
28249 (x_scroll_bar_clear): Set bar->redraw_needed_p.
28250
28251 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
28252
28253 2008-01-23 Jason Rumney <jasonr@gnu.org>
28254
28255 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
28256
28257 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
28258 the unicode range available in MULE by locale-coding-system.
28259 Improve dbcs lead byte detection. Set event timestamp and modifiers
28260 earlier.
28261
28262 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28263
28264 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
28265 [MAC_OSX] (init_mac_osx_environment): Initialize it.
28266 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
28267 when used on child processes.
28268
28269 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
28270
28271 * dbusbind.c (Fdbus_method_return_internal): Rename from
28272 Fdbus_method_return.
28273 (Fdbus_unregister_object): Move to dbus.el.
28274 (Fdbus_call_method, Fdbus_method_return_internal)
28275 (Fdbus_send_signal): Improve debug messages.
28276
28277 2008-01-20 Martin Rudalics <rudalics@gmx.at>
28278
28279 * undo.c (undo_inhibit_record_point): New variable.
28280 (syms_of_undo): Initialize it.
28281 (record_point): Don't record point when undo_inhibit_record_point
28282 is set.
28283
28284 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
28285
28286 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
28287
28288 * xdisp.c (Qauto_hscroll_mode): New var.
28289 (syms_of_xdisp): Initialize it.
28290 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
28291 window's buffer.
28292 (hscroll_windows): Don't check automatic_hscrolling_p here.
28293
28294 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
28295 vscroll if we're setting window-buffer to the value it already has.
28296
28297 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
28298
28299 * m/intel386.h: Remove references to XENIX.
28300
28301 2008-01-17 Andreas Schwab <schwab@suse.de>
28302
28303 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
28304 instead of HAVE_X86_64_LIB64_DIR.
28305 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
28306
28307 2008-01-17 Glenn Morris <rgm@gnu.org>
28308
28309 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
28310 to HAVE_X86_64_LIB64_DIR.
28311
28312 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
28313
28314 * s/irix3-3.h:
28315 * s/irix4-0.h:
28316 * s/386-ix.h:
28317 * s/domain.h:
28318 * s/hpux9-x11r4.h:
28319 * s/hpux9shxr4.h: Remove files for systems no longer supported.
28320
28321 * sysdep.c: Remove code containing references to symbols defined
28322 by unsupported systems.
28323
28324 2008-01-16 Glenn Morris <rgm@gnu.org>
28325
28326 * coding.c (select-safe-coding-system-function): Doc fix.
28327
28328 2008-01-15 Glenn Morris <rgm@gnu.org>
28329
28330 * config.in: Revert 2008-01-13 change: this is a generated file.
28331
28332 2008-01-13 Tom Tromey <tromey@redhat.com>
28333
28334 * lisp.h: Fix typo.
28335
28336 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28337
28338 * m/sequent-ptx.h:
28339 * m/sequent.h:
28340 * s/ptx.h:
28341 * s/ptx4-2.h:
28342 * s/ptx4.h: Remove files for systems no longer supported.
28343
28344 * callproc.c (Fcall_process): Fix previous change.
28345
28346 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
28347
28348 * unexsunos4.c: Remove file, system not supported anymore.
28349
28350 * m/mips.h:
28351 * m/intel386.h:
28352 * callproc.c:
28353 * config.in:
28354 * ecrt0.c:
28355 * emacs.c:
28356 * fileio.c:
28357 * frame.c:
28358 * getpagesize.h:
28359 * keyboard.c:
28360 * lread.c:
28361 * process.c:
28362 * puresize.h:
28363 * sysdep.c:
28364 * systty.h:
28365 * syswait.h:
28366 * unexec.c:
28367 * xdisp.c:
28368 * alloc.c: Remove code containing references to symbols defined by
28369 unsupported systems.
28370
28371 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
28372
28373 * coding.c (detect_coding_mask): Fix previous change.
28374
28375 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
28376
28377 * coding.c (detect_coding_iso2022): New arg
28378 latin_extra_code_state. Allow Latin extra codes only
28379 when *latin_extra_code_state is nonzero.
28380 (detect_coding_mask): If there is a NULL byte, detect the encoding
28381 as UTF-16 or binary. If Latin extra codes exist, detect the
28382 encoding as ISO-2022 only when there's no other proper encoding is
28383 found.
28384
28385 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28386
28387 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
28388 #ifdef MAC_OS.
28389
28390 2008-01-08 Richard Stallman <rms@gnu.org>
28391
28392 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
28393
28394 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
28395
28396 * keyboard.c (parse_menu_item): Don't enclose key bindings on
28397 menu bar in parentheses.
28398
28399 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
28400
28401 * m/7300.h:
28402 * m/acorn.h:
28403 * m/alliant-2800.h:
28404 * m/alliant.h:
28405 * m/alliant1.h:
28406 * m/alliant4.h:
28407 * m/altos.h:
28408 * m/amdahl.h:
28409 * m/apollo.h:
28410 * m/att3b.h:
28411 * m/aviion-intel.h:
28412 * m/aviion.h:
28413 * m/celerity.h:
28414 * m/clipper.h:
28415 * m/cnvrgnt.h:
28416 * m/convex.h:
28417 * m/cydra5.h:
28418 * m/delta88k.h:
28419 * m/dpx2.h:
28420 * m/dual.h:
28421 * m/elxsi.h:
28422 * m/f301.h:
28423 * m/gould-np1.h:
28424 * m/gould.h:
28425 * m/i860.h:
28426 * m/ibmps2-aix.h:
28427 * m/ibmrt-aix.h:
28428 * m/ibmrt.h:
28429 * m/irist.h:
28430 * m/is386.h:
28431 * m/isi-ov.h:
28432 * m/mega68.h:
28433 * m/mg1.h:
28434 * m/news-r6.h:
28435 * m/news-risc.h:
28436 * m/news.h:
28437 * m/nh3000.h:
28438 * m/nh4000.h:
28439 * m/ns16000.h:
28440 * m/ns32000.h:
28441 * m/nu.h:
28442 * m/orion.h:
28443 * m/orion105.h:
28444 * m/paragon.h:
28445 * m/pfa50.h:
28446 * m/plexus.h:
28447 * m/pyramid.h:
28448 * m/pyrmips.h:
28449 * m/sh3el.h:
28450 * m/sps7.h:
28451 * m/sr2k.h:
28452 * m/stride.h:
28453 * m/sun1.h:
28454 * m/sun2.h:
28455 * m/sun3-68881.h:
28456 * m/sun3-fpa.h:
28457 * m/sun3-soft.h:
28458 * m/sun3.h:
28459 * m/sun386.h:
28460 * m/symmetry.h:
28461 * m/tad68k.h:
28462 * m/tahoe.h:
28463 * m/targon31.h:
28464 * m/tek4300.h:
28465 * m/tekxd88.h:
28466 * m/tower32.h:
28467 * m/tower32v3.h:
28468 * m/ustation.h:
28469 * m/wicat.h:
28470 * m/xps100.h:
28471 * s/cxux.h:
28472 * s/cxux7.h:
28473 * s/dgux.h:
28474 * s/dgux4.h:
28475 * s/dgux5-4-3.h:
28476 * s/dgux5-4r2.h:
28477 * s/esix.h:
28478 * s/esix5r4.h:
28479 * s/hiuxmpp.h:
28480 * s/hiuxwe2.h:
28481 * s/iris3-5.h:
28482 * s/iris3-6.h:
28483 * s/isc2-2.h:
28484 * s/isc3-0.h:
28485 * s/isc4-0.h:
28486 * s/isc4-1.h:
28487 * s/newsos5.h:
28488 * s/newsos6.h:
28489 * s/osf1.h:
28490 * s/osf5-0.h:
28491 * s/riscix1-1.h:
28492 * s/riscix12.h:
28493 * s/sco4.h:
28494 * s/sco5.h:
28495 * s/sunos4-0.h:
28496 * s/sunos4-1.h:
28497 * s/sunos413.h:
28498 * s/sunos4shr.h:
28499 * s/umax.h:
28500 * s/unipl5-2.h:
28501 * s/xenix.h:
28502 * cxux-crt0.s:
28503 * unexapollo.c:
28504 * unexconvex.c:
28505 * unexenix.c:
28506 * unexsni.c: Remove files for systems no longer supported.
28507
28508 * m/intel386.h: Remove references to unsupported systems.
28509
28510 * w32.c (get_emacs_configuration): Remove reference to i860.
28511
28512 * sysdep.c: Remove dead code.
28513
28514 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
28515
28516 * s/rtu.h:
28517 * m/masscomp.h: Remove files. Platform is obsolete.
28518
28519 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
28520
28521 * dbusbind.c (Fdbus_method_return): New function.
28522 (xd_read_message): Add the serial number to the event.
28523 (Fdbus_register_method): Activate the function.
28524
28525 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
28526
28527 * keyboard.c (read_key_sequence): Fix typo.
28528
28529 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
28530
28531 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
28532 (xd_signature, xd_append_arg): Handle element type detection for
28533 empty arrays.
28534 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
28535 SDATA () calls; this must be solved more general.
28536 (Fdbus_register_signal): Use SBYTES instead of strlen.
28537
28538 2008-01-03 Magnus Henoch <magnus@zemdatav>
28539
28540 * dbusbind.c (xd_append_arg): Use unsigned char instead of
28541 unsigned int for byte values (necessary for big-endian platform).
28542 (Fdbus_call_method): Handle the case of no returned arguments.
28543
28544 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
28545
28546 * dbusbind.c (xd_read_message): Use non-static input_event struct.
28547
28548 2007-12-31 Magnus Henoch <mange@freemail.hu>
28549
28550 * dbusbind.c (xd_signature): Signature of variant is just "v".
28551
28552 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
28553
28554 * dbusbind.c: Fix several errors and compiler warnings.
28555 Reported by Tom Tromey <tromey@redhat.com>.
28556 (XD_ERROR, XD_DEBUG_MESSAGE)
28557 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
28558 (xd_append_arg): Part for basic D-Bus types rewritten.
28559 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
28560 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
28561 appropriate.
28562 (xd_read_message): Return Qnil. Don't signal an error; it is not
28563 useful during event reading.
28564 (Fdbus_register_signal): Signal an error if the check for
28565 FUNCTIONP fails.
28566 (Fdbus_register_method): New function. The implementation is not
28567 complete, the call of the function signals an error therefore.
28568 (Fdbus_unregister_object): New function, renamed from
28569 Fdbus_unregister_signal. The initial check signals an error, if
28570 the object is not well formed.
28571
28572 2007-12-30 Richard Stallman <rms@gnu.org>
28573
28574 * textprop.c (get_char_property_and_overlay):
28575 Signal error if POSITION is out of range in a buffer.
28576
28577 2007-12-29 Martin Rudalics <rudalics@gmx.at>
28578
28579 * w32fns.c (Fx_create_frame): Make copy of frame parameters
28580 because the original parameters are in pure storage now.
28581
28582 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28583
28584 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
28585
28586 2007-12-22 Eli Zaretskii <eliz@gnu.org>
28587
28588 * callint.c (syms_of_callint) <command-history>: Add reference to
28589 history-length in the doc string.
28590
28591 2007-12-17 Jason Rumney <jasonr@gnu.org>
28592
28593 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
28594 before passing as wParam.
28595
28596 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
28597
28598 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
28599 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
28600 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
28601 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
28602 as number.
28603 (Fdbus_call_method): Fix docstring.
28604
28605 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
28606
28607 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
28608 New macros.
28609 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
28610 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
28611 Simplify.
28612 (xd_signature): New function.
28613 (xd_append_arg): Compute also signatures. Major rewrite.
28614 (xd_retrieve_arg): Make debug messages friendly.
28615 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
28616 Check for signatures of arguments.
28617
28618 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
28619
28620 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
28621 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
28622 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
28623 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
28624 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
28625 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
28626 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
28627 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
28628 (xd_retrieve_value): Remove. Functionality included in ...
28629 (xd_append_arg): New function.
28630 (Fdbus_call_method, Fdbus_send_signal): Apply it.
28631
28632 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
28633
28634 * dbusbind.c (top): Include <stdio.h>.
28635 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
28636 dbus_message_new_method_call and dbus_message_new_signal.
28637 (Fdbus_register_signal): Rename unique_name to uname.
28638 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
28639 non-existing unique name. Fix typos in matching rule. Return an
28640 object which is useful in Fdbus_unregister_signal.
28641 (Fdbus_unregister_signal): Reimplementation, in order to remove
28642 only the corresponding entry.
28643 (Vdbus_registered_functions_table): Change the order of entries.
28644 Apply these changes in xd_read_message and Fdbus_register_signal.
28645
28646 2007-12-16 Andreas Schwab <schwab@suse.de>
28647
28648 * fileio.c (Finsert_file_contents): Fix overflow check to not
28649 depend on undefined integer overflow.
28650
28651 2007-12-14 Jason Rumney <jasonr@gnu.org>
28652
28653 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
28654 for characters above 127.
28655
28656 2007-12-13 Jason Rumney <jasonr@gnu.org>
28657
28658 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
28659 before dereferencing array.
28660 (lookup_vk_code): Remove zero comparison.
28661
28662 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
28663
28664 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
28665 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
28666 Use `unsigned int' instead of `uint'.
28667 (xd_read_message, Fdbus_register_signal): Split expressions into
28668 multiple lines before operators "&&" and "||", according to the
28669 GNU Coding Standards.
28670
28671 2007-12-14 Eli Zaretskii <eliz@gnu.org>
28672
28673 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
28674
28675 2007-12-12 Juri Linkov <juri@jurta.org>
28676
28677 * buffer.c (Frename_buffer): In interactive spec replace
28678 `read-buffer' with `read-string' that uses `buffer-name-history'
28679 as history, and the current buffer's name as default.
28680
28681 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
28682
28683 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
28684 manipulating the backtrace manually.
28685 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
28686 (struct backtrace, backtrace_list): Remove.
28687 (command_loop_1): Remove dead var `no_direct'.
28688
28689 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
28690 preserve non-built-in buffer-local variables.
28691 (Fkill_all_local_variables): Don't re-create&re-set permanent
28692 buffer-local variables.
28693
28694 2007-12-09 Juri Linkov <juri@jurta.org>
28695
28696 * buffer.c (Frename_buffer): Change interactive spec from "s" to
28697 Lisp code that uses `read-buffer' with current buffer as default.
28698
28699 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
28700
28701 * dbusbind.c (xd_read_message): Generate an event for every
28702 registered handler. There might be several handlers registered
28703 for the same signal.
28704 (Fdbus_register_signal): Don't overwrite a registration for the
28705 same signal. Add a new registration if handlers are different.
28706 (Vdbus_registered_functions_table): Rework doc string.
28707
28708 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
28709
28710 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
28711 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
28712 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
28713 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
28714 Unify argument lists.
28715 (xd_read_message, Fdbus_register_signal): Reorder and extend event
28716 arguments and hash table keys. Use unique name for service.
28717 (Fdbus_unregister_signal): Remove checks.
28718 (Vdbus_registered_functions_table): Fix doc string.
28719
28720 2007-12-05 Magnus Henoch <mange@freemail.hu>
28721
28722 * process.c (make_process): Initialize pty_flag to 0.
28723
28724 2007-12-05 Jason Rumney <jasonr@gnu.org>
28725
28726 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
28727 specified XBMs.
28728
28729 2007-12-05 Richard Stallman <rms@gnu.org>
28730
28731 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
28732
28733 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28734
28735 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
28736 New variable.
28737 (mac_try_close_socket) [MAC_OSX]: New function.
28738 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
28739 Update cfsockets_for_select. Replace invalid CFRunLoop source.
28740
28741 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
28742 Use mac_try_close_socket.
28743
28744 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28745
28746 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
28747 reloc_base.
28748 (copy_dysymtab): Compute relocation base here.
28749 (rebase_reloc_address) [__ppc64__]: New function.
28750 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
28751 changed.
28752
28753 2007-12-05 Jason Rumney <jasonr@gnu.org>
28754
28755 * w32proc.c (sys_spawnve): Quote args with wildcards.
28756
28757 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28758
28759 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
28760 __objc_* sections.
28761 (unrelocate) [_LP64]: Set relocation base to address of data segment.
28762
28763 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
28764
28765 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
28766 Move check for Vdbus_registered_functions_table to
28767 xd_read_queued_messages.
28768 (xd_read_queued_messages): Protect xd_read_message calls by
28769 internal_condition_case_1.
28770
28771 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
28772
28773 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
28774 Qdbus_system_bus and Qdbus_session_bus, respectively.
28775 (Vdbus_intern_symbols): Remove.
28776 (Vdbus_registered_functions_table): New hash table.
28777 (XD_SYMBOL_INTERN_SYMBOL): Remove.
28778 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
28779 Rewrite in order to manage registered functions by hash table
28780 Vdbus_registered_functions_table.
28781
28782 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
28783
28784 * xterm.c: Update URL to Window Manager Specification in comment.
28785
28786 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
28787
28788 * config.in (HAVE_DBUS): Add.
28789
28790 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
28791 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
28792 (obj): Add $(DBUS_OBJ).
28793 (LIBES): Add $(DBUS_LIBS).
28794 (dbusbind.o): New target.
28795
28796 * dbusbind.c: New file.
28797
28798 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
28799
28800 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
28801 (Qdbus_event): New Lisp symbol.
28802 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
28803 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
28804 (keys_of_keyboard): Define dbus-event.
28805
28806 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
28807
28808 2007-12-01 Richard Stallman <rms@gnu.org>
28809
28810 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
28811
28812 2007-11-30 Jason Rumney <jasonr@gnu.org>
28813
28814 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
28815 (w32con_reset_terminal_modes): Clear screen buffer.
28816 (w32_face_attributes): Don't use color indexes that are out of range.
28817 Only reverse the default colors.
28818
28819 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
28820 WINDOWSNT.
28821
28822 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
28823
28824 2007-11-29 Jason Rumney <jasonr@gnu.org>
28825
28826 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
28827 (w32_face_attributes): Use Vtty_defined_color_alist to determine
28828 if the terminal colors are initialized.
28829 (unspecified_fg, unspecified_bg): Remove unused declarations.
28830
28831 2007-11-29 Andreas Schwab <schwab@suse.de>
28832
28833 * keyboard.c (apply_modifiers): Fix typo.
28834
28835 2007-11-29 Richard Stallman <rms@gnu.org>
28836
28837 * keymap.c (Fcurrent_local_map): Doc fix.
28838
28839 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
28840
28841 * s/gnu-kfreebsd.h: New file.
28842
28843 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
28844
28845 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
28846 Don't cast redundantly.
28847
28848 * keyboard.c (KEY_TO_CHAR): New macro.
28849 (parse_modifiers, apply_modifiers): Accept integer arguments.
28850 (read_key_sequence): Use them to unify the "shift->unshift" mapping
28851 for chars and symbol keys.
28852 After doing such remapping, apply function-key-map again.
28853
28854 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
28855
28856 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
28857 compiled anymore.
28858
28859 2007-11-26 Andreas Schwab <schwab@suse.de>
28860
28861 * process.c (list_processes_1): Fix indentation level of the
28862 command column.
28863
28864 2007-11-23 Andreas Schwab <schwab@suse.de>
28865
28866 * editfns.c (Fformat): Handle %c specially since it requires the
28867 argument to be of type int.
28868
28869 2007-11-23 Markus Triska <markus.triska@gmx.at>
28870
28871 * emacs.c (main): Call init_editfns before init_process, since
28872 init_process sets Vprocess_connection_type depending on OS release.
28873
28874 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
28875
28876 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
28877 (find_symbol_value): Use do_symval_forwarding.
28878
28879 * data.c (set_internal): Set the value in the `cons-cell' (for
28880 Buffer_Local_values) not only for frame-local variables.
28881
28882 2007-11-22 Andreas Schwab <schwab@suse.de>
28883
28884 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
28885 values to sprintf.
28886 * keymap.c (Fsingle_key_description): Likewise.
28887 * print.c (print_object): Likewise.
28888
28889 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
28890
28891 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
28892 file for image is nil.
28893
28894 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
28895
28896 * term.c: Include stdarg.h.
28897 (fatal): Implement using varargs.
28898 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
28899
28900 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
28901
28902 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
28903 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
28904 Update call to buffer_slot_type_mismatch.
28905 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
28906 (buffer_slot_type_mismatch): Update.
28907 * buffer.c (buffer_local_types): Remove.
28908 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
28909 (defvar_per_buffer): Set the type in the buffer_objfwd.
28910
28911 2007-11-21 Jason Rumney <jasonr@gnu.org>
28912
28913 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
28914 CreateFileMapping returns NULL on failure.
28915
28916 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
28917
28918 * search.c (Fset_match_data): Remove the `evaporate' feature.
28919 (unwind_set_match_data): Don't use the `evaporate' feature.
28920
28921 2007-11-21 Jason Rumney <jasonr@gnu.org>
28922
28923 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
28924
28925 * w32console.c (w32con_write_glyphs): Remove unused variables.
28926
28927 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
28928
28929 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
28930
28931 * s/darwin.h (MULTI_KBOARD): Remove.
28932
28933 * macfns.c (x_create_tip_frame, Fx_create_frame)
28934 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
28935
28936 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
28937
28938 * buffer.c (Fbuffer_local_value): Remove redundant test.
28939 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
28940 than in `current-buffer' to match the comment.
28941 Do the swap using swap_in_global_binding.
28942
28943 * data.c (store_symval_forwarding, set_internal):
28944 * eval.c (specbind): Remove dead code.
28945
28946 * coding.c (detect_coding, Fupdate_coding_systems_internal):
28947 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
28948 Since we do not want to see internal Lisp_*fwd objects here.
28949
28950 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
28951
28952 * sysdep.c (init_system_name): Use getaddrinfo if available.
28953
28954 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
28955 (x_scroll_bar_note_movement): start, end, with, height in struct
28956 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
28957
28958 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
28959
28960 * puresize.h (BASE_PURESIZE): Increase to 1190000.
28961
28962 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
28963
28964 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
28965 This undoes Richard's change of 14-Oct-2002.
28966
28967 * alloc.c (allocate_other_vector):
28968 * lisp.h (allocate_other_vector): Remove.
28969
28970 * window.c (struct save_window_data): Move non-lisp data to the end
28971 and make it `int' rather than Lisp_Object.
28972 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
28973 Done wrap/unwrap integer values.
28974 (Fset_window_configuration, compare_window_configurations):
28975 Update use of fields to their new types.
28976
28977 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
28978 Turn integer fields into `int'. Merge x_window_low and x_window_high.
28979 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
28980 (SET_SCROLL_BAR_X_WINDOW): Remove.
28981 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
28982 Access the new x_window field directly.
28983 * xterm.c (x_scroll_bar_create): Use a pseudovector.
28984 Don't wrap/unwrap integers into Lisp_Objects.
28985 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
28986 (x_scroll_bar_report_motion):
28987 Don't wrap/unwrap integers into Lisp_Objects.
28988 (x_term_init): Use SDATA.
28989 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
28990 (x_scroll_bar_set_handle, x_scroll_bar_remove)
28991 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
28992 (x_scroll_bar_report_motion, x_scroll_bar_clear):
28993 * xfns.c (x_set_background_color):
28994 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
28995 Access the new x_window field directly.
28996
28997 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
28998 (allocate_pseudovector): Make non-static.
28999
29000 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
29001 (allocate_pseudovector): Declare.
29002 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
29003
29004 2007-11-15 Andreas Schwab <schwab@suse.de>
29005
29006 * editfns.c (Fformat): Correctly format EMACS_INT values.
29007 Also take precision into account when formatting an integer.
29008
29009 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
29010
29011 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
29012
29013 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
29014 (syms_of_keyboard): Defsubr it.
29015
29016 * data.c (swap_in_global_binding): Fix longstanding bug where
29017 store_symval_forwarding was not called with the right second argument,
29018 thus causing objfwd-ing from being dropped.
29019
29020 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29021
29022 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
29023 (Fx_display_pixel_height, Fx_display_planes)
29024 (Fx_display_color_cells, Fx_server_max_request_size)
29025 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29026 (Fx_display_visual_class, Fx_display_save_under):
29027 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
29028 (Fx_display_pixel_height, Fx_display_planes)
29029 (Fx_display_color_cells, Fx_server_max_request_size)
29030 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
29031 (Fx_display_mm_height, Fx_display_mm_width)
29032 (Fx_display_backing_store, Fx_display_visual_class)
29033 (Fw32_select_font, Fx_display_save_under):
29034 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
29035 (Fx_display_pixel_height, Fx_display_planes)
29036 (Fx_display_color_cells, Fx_server_max_request_size)
29037 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
29038 (Fx_display_save_under): Fix typos in docstrings.
29039
29040 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
29041
29042 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
29043 corresponding to deleted entries; they are an implementation detail.
29044 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
29045 Remove variables.
29046 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
29047 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
29048 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
29049 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
29050 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
29051 (Fw32_define_rgb_color, Fw32_load_color_file)
29052 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
29053 Fix typos in docstrings.
29054 (Fx_server_version): Reflow docstring.
29055 (Fw32_shell_execute): Doc fixes.
29056
29057 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
29058
29059 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
29060 if w32_parse_hot_key returned nil.
29061
29062 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
29063
29064 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
29065
29066 2007-11-09 Jason Rumney <jasonr@gnu.org>
29067
29068 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
29069
29070 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
29071
29072 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
29073 Remove W32_SCROLL_BAR_CLICK_EVENT.
29074
29075 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
29076 Add MULTIMEDIA_KEY_EVENT.
29077
29078 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
29079 (lispy_multimedia_keys) [WINDOWSNT]: New array.
29080 (make_lispy_event) [WINDOWSNT]: Use it to translate
29081 MULTIMEDIA_KEY_EVENT.
29082
29083 * w32term.h (WM_APPCOMMAND): Define if not already.
29084 (GET_APPCOMMAND_LPARAM): Likewise.
29085
29086 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
29087 WM_APPCOMMAND.
29088
29089 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
29090 (syms_of_w32fns): Export and initialize it.
29091 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
29092
29093 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
29094
29095 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
29096 twice.
29097
29098 * xdisp.c (handle_face_prop): Fix last change.
29099
29100 2007-11-09 Richard Stallman <rms@gnu.org>
29101
29102 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
29103 not just for after-strings and before-strings.
29104 Call face_for_overlay_string and pass the overlay to it.
29105 (handle_display_prop): Determine whether property came from an overlay.
29106 Pass OVERLAY arg to handle_single_display_spec.
29107 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
29108 (load_overlay_strings): Fill in it->string_overlays.
29109 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
29110
29111 * xfaces.c (face_for_overlay_string): Function renamed from
29112 face_at_buffer_position_no_overlays, and add arg OVERLAY.
29113
29114 * dispextern.h (struct it): New elt string_overlays.
29115 New elt from_overlay, also in stack.
29116 Rearrange a few elements.
29117 (face_for_overlay_string): Decl renamed from
29118 face_at_buffer_position_no_overlays, and add argument.
29119
29120 2007-11-09 Richard Stallman <rms@gnu.org>
29121
29122 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
29123 to get the base face for an overlay string.
29124
29125 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
29126
29127 * xfaces.c (face_at_buffer_position_no_overlays): New function.
29128
29129 * xdisp.c (handle_stop): Move some code out of loop.
29130
29131 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29132
29133 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
29134 Fix conversion from Lisp object to ATSUFontID.
29135
29136 2007-11-09 Jason Rumney <jasonr@gnu.org>
29137
29138 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
29139
29140 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29141
29142 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
29143 Don't assume regions are aligned to page boundary.
29144 (print_load_command_name): Add LC_UUID if defined.
29145
29146 2007-11-09 Richard Stallman <rms@gnu.org>
29147
29148 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
29149
29150 2007-11-07 Jason Rumney <jasonr@gnu.org>
29151
29152 * s/windows95.h: Remove.
29153
29154 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
29155
29156 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
29157 abort with a message on unhandled store_type values.
29158
29159 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
29160
29161 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
29162 Remove HAVE_X11R5 and HAVE_X11R4.
29163
29164 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29165
29166 * Makefile.in: Remove references to sunfns.c and sunfns.o.
29167
29168 2007-11-01 Johan Bockgård <bojohan@gnu.org>
29169
29170 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
29171 Don't set s->stippled_p here, since it has already been set by
29172 x_set_glyph_string_gc from x_draw_glyph_string.
29173
29174 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
29175
29176 * sunfns.c: Remove file.
29177
29178 * m/sun386.h:
29179 * m/sun2.h:
29180 * m/sparc.h: Remove Sun windows code.
29181
29182 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
29183
29184 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
29185 (init_keyboard): Set current_kboard's window-system to nil.
29186 (tty_read_avail_input): Typo.
29187 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
29188
29189 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
29190
29191 * s/usg5-4.h:
29192 * s/usg5-3.h:
29193 * s/ptx.h:
29194 * m/is386.h:
29195 * m/ibmps2-aix.h:
29196 * Makefile.in: Remove all mentions of X10.
29197
29198 * dispnew.c (syms_of_display): Don't mention version 10.
29199
29200 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
29201
29202 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
29203 ($(BLD)/abbrev.$(O)): Remove.
29204
29205 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
29206
29207 Rewrite abbrev.c in Elisp.
29208 * image.c (Qcount): Don't declare as extern.
29209 (syms_of_image): Initialize and staticpro `Qcount'.
29210 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
29211 * emacs.c (main): Don't call syms_of_abbrev.
29212 * Makefile.in (obj): Remove abbrev.o.
29213 (abbrev.o): Remove.
29214 * abbrev.c: Remove.
29215
29216 2007-10-26 Martin Rudalics <rudalics@gmx.at>
29217
29218 * window.c (window_min_size_2): Don't count header-line.
29219
29220 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
29221
29222 * frame.h (struct frame): Move all bit fields after the first bit
29223 field to take advantage of the available space. Group all the
29224 chars together to reduce wasted space due to padding.
29225
29226 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
29227
29228 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
29229
29230 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
29231 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
29232 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
29233 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
29234 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
29235 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
29236 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
29237 (last_marked, mark_object_loop_halt): Make static.
29238
29239 * frame.c (syms_of_frame) <delete-frame-functions>:
29240 Fix typo in docstring.
29241
29242 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
29243
29244 * w32.c (init_environment): Fix tiny memory leak.
29245 (w32_get_resource): Remove unused variable `ok'.
29246
29247 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
29248
29249 Make `window-system' into a keyboard-local variable (rather than
29250 frame-local as done originally by multi-tty).
29251
29252 * keyboard.h (struct kboard): Add Vwindow_system.
29253 * keyboard.c (init_kboard): Set a default for Vwindow_system.
29254 (mark_kboards): Mark Vwindow_system.
29255
29256 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
29257 (init_display): Don't set the obsolete `window-system' frame-param.
29258
29259 * xterm.c (x_term_init):
29260 * w32term.c (w32_create_terminal):
29261 * term.c (init_tty): Set Vwindow_system.
29262 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
29263 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
29264
29265 * xfns.c (Fx_create_frame, x_create_tip_frame):
29266 * w32fns.c (Fx_create_frame, x_create_tip_frame):
29267 * macfns.c (Fx_create_frame):
29268 Don't set the obsolete `window-system' frame-param.
29269
29270 * frame.h (Qwindow_system): Remove.
29271 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
29272 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
29273
29274 2007-10-24 Richard Stallman <rms@gnu.org>
29275
29276 * frame.c (x_figure_window_size): For fullscreen case,
29277 set USPosition | PPosition without clobbering rest of window_prompting.
29278
29279 * keyboard.c (Fcurrent_idle_time): Doc fix.
29280
29281 * print.c (Fwith_output_to_temp_buffer): Doc fix.
29282
29283 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
29284
29285 * process.c (unwind_request_sigio): Only define if __ultrix__.
29286
29287 * callproc.c (child_setup): Remove spurious *.
29288
29289 * lisp.h (Fget_text_property): Declare.
29290 (have_menus_p): Declare it here rather than in sys-dep header files.
29291 * macterm.h (have_menus_p):
29292 * msdos.h (have_menus_p):
29293 * xterm.h (have_menus_p): Remove.
29294
29295 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
29296 (Fmake_variable_frame_local): Just check the variable's const-ness
29297 rather than checking nil or t.
29298
29299 2007-10-22 Jason Rumney <jasonr@gnu.org>
29300
29301 * w32fns.c: Include math.h.
29302 (w32_abort): Declaration moved to nt/config.nt.
29303
29304 * s/ms-w32.h (HAVE_STDLIB_H): Define.
29305 (abort): Redefinition moved to nt/config.nt.
29306
29307 * m/windowsnt.h: Remove.
29308
29309 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
29310
29311 * emacs.c (Fdump_emacs): Fix typo in message.
29312 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
29313 <installation-directory>: Reflow docstring.
29314
29315 2007-10-22 Juri Linkov <juri@jurta.org>
29316
29317 * minibuf.c: Allow minibuffer default to be a list of default values.
29318 With empty input use the first element of this list as returned default.
29319 (string_to_object)
29320 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
29321 (read_minibuf): If defalt is cons, set histstring to its car.
29322 (Fread_string): If default_value is cons, set val to its car.
29323 (Fread_buffer): If def is cons, use its car.
29324 (Fcompleting_read): If defalt is cons, set val to its car.
29325
29326 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
29327
29328 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
29329
29330 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
29331
29332 * doc.c (Fdocumentation): Check for advice in all cases.
29333
29334 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
29335
29336 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
29337
29338 2007-10-19 Richard Stallman <rms@gnu.org>
29339
29340 * doc.c (Fdocumentation): Check for and handle an advised function.
29341
29342 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
29343
29344 * process.c (Fset_process_filter): Doc fix.
29345
29346 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
29347
29348 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
29349 which caused key-translation-map to applied repeatedly (thus breaking
29350 double-mode).
29351
29352 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29353
29354 * xselect.c (x_own_selection, x_handle_selection_clear)
29355 (x_clear_frame_selections):
29356 * w32menu.c (list_of_panes, list_of_items):
29357 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
29358 * textprop.c (validate_plist, interval_has_all_properties)
29359 (interval_has_some_properties, interval_has_some_properties_list)
29360 (add_properties, text_property_list):
29361 * process.c (Fget_buffer_process, list_processes_1, status_notify):
29362 * minibuf.c (Fassoc_string):
29363 * macselect.c (x_own_selection, x_clear_frame_selections)
29364 (Fx_disown_selection_internal):
29365 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
29366 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
29367
29368 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
29369
29370 * process.c: Link to libs for calling res_init() if available.
29371 (Fmake_network_process): Call res_init() before getaddrinfo or
29372 gethostbyname, if possible.
29373
29374 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
29375
29376 * lread.c (read1): Set pvectype for char_tables.
29377
29378 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
29379 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
29380 Add type checks.
29381 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
29382
29383 * alloc.c (free_misc): Use XMISCTYPE.
29384 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
29385
29386 2007-10-17 Glenn Morris <rgm@gnu.org>
29387
29388 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
29389 (syms_of_minibuf): Add Qcompletion_ignore_case.
29390 * dired.c (Qcompletion_ignore_case): Change to external.
29391 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
29392 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
29393 (Fread_file_name): Use it rather than intern'ing.
29394
29395 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
29396 (Fread_coding_system): Ignore case of user input.
29397
29398 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29399
29400 * xdisp.c (handle_display_prop): Ignore display specs after
29401 replacing one when string text is being replaced.
29402 (handle_single_display_spec): Pretend as if characters with display
29403 property haven't been consumed only when buffer text is being replaced.
29404
29405 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
29406
29407 * xfns.c (Fx_create_frame, Fx_display_list):
29408 * window.c (window_fixed_size_p, enlarge_window)
29409 (shrink_window_lowest_first):
29410 * macterm.c (init_font_name_table):
29411 * macfns.c (Fx_create_frame, Fx_display_list):
29412 * lread.c (close_load_descs):
29413 * keyboard.c (read_char_x_menu_prompt):
29414 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
29415 * coding.c (code_convert_region_unwind): Test the type of an object
29416 rather than just !NILP before extracting data from it.
29417
29418 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
29419
29420 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
29421 (XMISCANY): New macro.
29422 (XMISCTYPE): Use it.
29423 (struct Lisp_Misc_Any): New type.
29424 (union Lisp_Misc): Use it.
29425 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
29426 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
29427 (find_symbol_value, set_internal, default_value, Fset_default)
29428 (Fmake_variable_buffer_local, Fmake_local_variable)
29429 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
29430 (Flocal_variable_if_set_p, Fvariable_binding_locus):
29431 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
29432 * alloc.c (allocate_buffer): Set the size and tag.
29433 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
29434 Use XMISCANY.
29435 (die): Follow the GNU convention for error messages.
29436 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
29437 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
29438 tag any more.
29439 (set_buffer_internal_1):
29440 * frame.c (store_frame_param):
29441 * eval.c (specbind):
29442 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
29443
29444 * doc.c (Fsnarf_documentation): Simplify.
29445
29446 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
29447
29448 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
29449 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
29450
29451 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
29452
29453 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
29454
29455 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
29456
29457 * eval.c (do_autoload): Don't save autoloads.
29458
29459 * data.c (Ffset): Save autoload of the function being set.
29460
29461 2007-10-07 John Paul Wallington <jpw@pobox.com>
29462
29463 * xfns.c (x_create_tip_frame): Set the `display-type' frame
29464 parameter before setting up faces.
29465
29466 2007-10-13 Eli Zaretskii <eliz@gnu.org>
29467
29468 * ccl.c (Fregister_code_conversion_map):
29469 * keyboard.c (append_tool_bar_item): Reformat last change.
29470
29471 * lisp.h (eabs): Rename from `abs'. All callers changed.
29472
29473 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
29474
29475 * buffer.c (add_overlay_mod_hooklist):
29476 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
29477 * fontset.c (make_fontset):
29478 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
29479 (append_tool_bar_item):
29480 * macmenu.c (grow_menu_items):
29481 * w32menu.c (grow_menu_items):
29482 * xmenu.c (grow_menu_items): Use larger_vector.
29483
29484 2007-10-13 Eli Zaretskii <eliz@gnu.org>
29485
29486 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
29487 selected frame'' on MSDOS).
29488
29489 2007-10-12 Martin Rudalics <rudalics@gmx.at>
29490
29491 * frame.c (Qexplicit_name): New variable.
29492 (x_report_frame_params): Report it in parameter alist.
29493 (syms_of_frame): Intern and staticpro it.
29494
29495 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
29496
29497 * macfns.c (x_create_tip_frame): Set terminal for frame.
29498
29499 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
29500
29501 * frame.c (Qenvironment): Remove.
29502 (syms_of_frame) <Qenvironment>: Don't initialize.
29503 (Fdelete_frame): Don't treat the `environment' param specially.
29504 * frame.h (Qenvironment): Don't declare.
29505 * callproc.c (set_initial_environment): Don't set unused frame param.
29506
29507 * frame.c (Fframe_with_environment): Remove.
29508 (syms_of_frame) <Sframe_with_environment>: Don't declare.
29509
29510 * lisp.h (Fframe_with_environment): Don't declare.
29511
29512 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
29513
29514 * indent.c (indent_tabs_mode, last_known_column)
29515 (last_known_column_modified): Make static.
29516 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
29517
29518 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
29519
29520 * puresize.h (BASE_PURESIZE): Increase to 1170000.
29521
29522 2007-10-09 Jason Rumney <jasonr@gnu.org>
29523
29524 * w32term.c (x_set_window_size): Disable code that attempts to tell
29525 Lisp code about a size change before it actually happens.
29526
29527 2007-10-09 Richard Stallman <rms@gnu.org>
29528
29529 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
29530 return HANDLED_RETURN.
29531
29532 2007-10-08 Martin Rudalics <rudalics@gmx.at>
29533
29534 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
29535 when there's an unread command event.
29536
29537 * frame.c (focus_follows_mouse): Move here from frame.el to allow
29538 window autoselection act appropriately when leaving selected frame.
29539 (syms_of_frame): Initialize focus_follows_mouse.
29540 * frame.h (focus_follows_mouse): Extern it.
29541 * macterm.c (XTread_socket): When focus_follows_mouse is nil
29542 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
29543 * msdos.c (dos_rawgetc): Likewise.
29544 * w32term.c (w32_read_socket): Likewise.
29545 * xterm.c (handle_one_xevent): Likewise.
29546 * xdisp.c (syms_of_xdisp): In doc-string of
29547 mouse-autoselect-window mention focus-follows-mouse.
29548
29549 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29550
29551 * macterm.c (mac_load_query_font): Fix missing return value.
29552 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
29553 Add BLOCK_INPUT.
29554
29555 2007-10-08 Richard Stallman <rms@gnu.org>
29556
29557 * xdisp.c (get_window_cursor_type): Implement documented behavior
29558 for cursor-in-non-selected-windows = t.
29559
29560 2007-10-08 Jason Rumney <jasonr@gnu.org>
29561
29562 * w32.c (w32_get_resource): Always close registry keys.
29563
29564 2007-10-08 Jason Rumney <jasonr@gnu.org>
29565
29566 * makefile.w32-in (LIBS): Add COMCTL32.
29567
29568 * w32fns.c (globals_of_w32fns): Init common controls.
29569
29570 2007-10-08 Richard Stallman <rms@gnu.org>
29571
29572 * image.c (our_memory_buffer): Rename from omfib_buffer.
29573
29574 2007-10-08 Richard Stallman <rms@gnu.org>
29575
29576 * buffer.c (Foverlays_at): Doc fix.
29577
29578 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
29579
29580 * fns.c (Fplist_put): Preserve uneven tail data.
29581
29582 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
29583
29584 * termhooks.h (enum event_kind): Remove trailing comma.
29585
29586 * frame.h (enum): Remove trailing comma.
29587
29588 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
29589
29590 * w32proc.c (delete_child): Don't terminate threads of zombies.
29591
29592 2007-10-08 Martin Rudalics <rudalics@gmx.at>
29593
29594 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
29595
29596 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
29597 last-repeatable-command.
29598 (init_kboard): Initialize Vlast_repeatable_command.
29599 (command_loop_1): Set it to real_this_command unless that was
29600 bound to an input event.
29601 (mark_kboards): Mark it.
29602
29603 2007-10-08 Richard Stallman <rms@gnu.org>
29604
29605 * eval.c (condition-case): Doc fix.
29606
29607 2007-10-08 Masatake YAMATO <jet@gyve.org>
29608
29609 * xfaces.c (tty_supports_face_attributes_p): Fix code
29610 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
29611 was copied and not edited.
29612
29613 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
29614
29615 Add new `input-decode-map' keymap and use it for terminal
29616 escape sequences.
29617 * keyboard.h (struct kboard): Add Vinput_decode_map.
29618 Remove Vlocal_key_translation_map.
29619 * keyboard.c (read_key_sequence): Add support for input-decode-map.
29620 (init_kboard): Init input-decode-map.
29621 Replace local-key-translation-map back with key-translation-map.
29622 (syms_of_keyboard): Declare input-decode-map.
29623 Remove local-key-translation-map. Update docstrings.
29624 (mark_kboards): Mark Vinput_decode_map.
29625 Don't mark Vlocal_key_translation_map.
29626 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
29627 Replace local-key-translation-map back with key-translation-map.
29628 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
29629 Bind in input-decode-map rather than function-key-map.
29630
29631 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
29632 This was made redundant by the previous introduction of XSETPVECTYPE.
29633
29634 2007-10-09 Richard Stallman <rms@gnu.org>
29635
29636 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
29637
29638 2007-09-29 Richard Stallman <rms@gnu.org>
29639
29640 * eval.c (internal_condition_case_2, internal_condition_case_1)
29641 (internal_condition_case): Reenable abort if x_catching_errors ()
29642 to see if that really happens and why.
29643
29644 2007-10-06 Andreas Schwab <schwab@suse.de>
29645
29646 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
29647
29648 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
29649
29650 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
29651
29652 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
29653
29654 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
29655
29656 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
29657
29658 * window.h (struct window):
29659 * window.c (struct save_window_data, struct saved_window):
29660 * termhooks.h (struct terminal):
29661 * process.h (struct Lisp_Process):
29662 * frame.h (struct frame):
29663 * buffer.h (struct buffer):
29664 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
29665 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
29666 The size field of (pseudo)vectors is now unsigned.
29667 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
29668
29669 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
29670 Turn `count' into an integer.
29671
29672 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
29673 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
29674 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
29675 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
29676 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
29677
29678 * alloc.c (allocate_pseudovector): New fun.
29679 (ALLOCATE_PSEUDOVECTOR): New macro.
29680 (allocate_window, allocate_terminal, allocate_frame)
29681 (allocate_process): Use it.
29682 (mark_vectorlike): New function.
29683 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
29684 (mark_terminals): Use it.
29685 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
29686 (Fmake_byte_code): Use XSETPVECTYPE.
29687
29688 * frame.c (Fframe_parameters): Minor simplification.
29689
29690 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
29691
29692 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
29693
29694 * buffer.c (Fget_buffer_create, init_buffer_once):
29695 * lread.c (defsubr):
29696 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
29697
29698 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
29699 defined differently in the m/*.h files.
29700 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
29701 (XSETPVECTYPE): New macro.
29702 (XSETPSEUDOVECTOR): Use it.
29703
29704 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
29705 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
29706
29707 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
29708 * lread.c (defvar_per_buffer):
29709 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
29710
29711 * window.c (candidate_window_p): Only consider as visible frames that
29712 are on the same terminal.
29713
29714 * m/ibms390x.h (MARKBIT): Remove unused macro.
29715
29716 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
29717
29718 * lread.c (Fload): Fix typo in docstring.
29719
29720 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
29721
29722 * floatfns.c (Fexpt): Manually check for overflows, so that a power
29723 of a non-zero value can't yield zero.
29724
29725 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
29726
29727 * term.c (term_clear_mouse_face, term_mouse_highlight)
29728 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
29729
29730 * print.c (safe_debug_print): Use XHASH.
29731
29732 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
29733 Lisp elements such as tags.
29734 (XHASH): New macro.
29735 (EQ): Use it.
29736 (SREF, SSET, STRING_COPYIN): Use SDATA.
29737 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
29738
29739 * alloc.c (mark_terminal): Remove left-over declaration.
29740 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
29741 (allocate_vectorlike): Remove type argument. Adjust callers.
29742 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
29743 Only handle the one remaining MEM_TYPE_VECTORLIKE.
29744
29745 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
29746 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
29747 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
29748 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
29749 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
29750 Use them.
29751
29752 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
29753 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
29754 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
29755
29756 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
29757
29758 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
29759 loaded by default.
29760
29761 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
29762
29763 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
29764 on this tty.
29765 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
29766
29767 * term.c (mouse_face_window): Rename from Qmouse_face_window.
29768 Update all users.
29769 (handle_one_term_event): Use Gpm_DrawPointer.
29770 (Fgpm_mouse_start): Rename from Fterm_open_connection.
29771 Signal errors instead of returning nil. Always return nil.
29772 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
29773 Make it a noop if gpm-mouse was not activated.
29774 (syms_of_term): Update names.
29775
29776 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
29777
29778 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
29779 (init_sys_modes): Check that gpm_tty is the current tty.
29780
29781 * alloc.c (allocate_terminal): Set the vector size to only count the
29782 lisp fields. Initialize those to nil.
29783 (mark_object): Don't treat terminals specially.
29784 (mark_terminal): Remove.
29785 (mark_terminals): Use mark_object instead.
29786
29787 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
29788 the GC to the beginning.
29789
29790 * indent.h:
29791 * indent.c: Use EMACS_INT for ints coming from Elisp data.
29792
29793 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
29794
29795 2007-09-25 Jason Rumney <jasonr@gnu.org>
29796
29797 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
29798
29799 * w32console.c (create_w32cons_output): Remove.
29800
29801 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
29802
29803 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
29804 (reset_sys_modes): Use reset_terminal_modes_hook.
29805
29806 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
29807
29808 * eval.c (do_autoload): Don't output any message.
29809
29810 2007-09-24 Juri Linkov <juri@jurta.org>
29811
29812 * emacs.c (standard_args): Change priority of "--no-splash"
29813 from 40 to 3. Add "--no-desktop" with the same priority.
29814
29815 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
29816
29817 * alloc.c (gc_sweep): Check cons cell mark bits word by word
29818 and optimize the case where they are all 1.
29819
29820 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
29821
29822 * lisp.h (abs): Define if not defined.
29823 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
29824 Don't define `abs', since it's defined in lisp.h.
29825
29826 2007-09-22 Eli Zaretskii <eliz@gnu.org>
29827
29828 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
29829 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
29830 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
29831 (init_tty): Use DEV_TTY instead of "/dev/tty".
29832 [WINDOWSNT]: No need to protect from NAME arg being null.
29833
29834 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
29835
29836 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
29837 up the tty state.
29838
29839 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
29840
29841 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
29842 (gpm_tty): Change its type.
29843 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
29844 (gpm_tty): Change its type and initialize it.
29845 (Fterm_open_connection): Check the frame is indeed a tty.
29846 Use the new gpm_tty.
29847 (Fterm_close_connection): Use the new gpm_tty.
29848 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
29849 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
29850
29851 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
29852
29853 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
29854 underline_color, to draw strike-through.
29855
29856 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
29857
29858 * lisp.h (allocate_terminal): Declare.
29859
29860 * window.c (candidate_window_p): Consider frames that are being placed
29861 by the user as somewhere between visible and iconified.
29862 (window_loop): Prefer windows on the current frame.
29863 (Fselect_window): Move the use of select-frame to the beginning so we
29864 can just delegate all the work (it'll call us back anyway).
29865
29866 * frame.c (Qdisplay_environment_variable):
29867 * frame.h (Qdisplay_environment_variable): Delete.
29868
29869 * .gdbinit (xbacktrace): Print the arg's address rather than the value
29870 of the first arg, since that value may be a union.
29871
29872 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
29873 parameter rather than Qdisplay_environment_variable. If all else
29874 fails, look for DISPLAY in initial-environment.
29875
29876 2007-09-21 Glenn Morris <rgm@gnu.org>
29877
29878 * Makefile.in (emacstool): Remove target.
29879 (lisp, shortlisp): Remove termdev.elc.
29880
29881 2007-09-21 Markus Triska <markus.triska@gmx.at>
29882
29883 * xterm.c (x_delete_display): Compile session management conditionally.
29884
29885 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
29886
29887 * callproc.c (getenv_internal_1): New function.
29888 (getenv_internal): Use it.
29889 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
29890
29891 * terminal.c (get_terminal): Don't accept ints to represent terminals.
29892 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
29893 (Fset_terminal_parameter): Work with dead terminals as well.
29894 (Fmodify_terminal_parameters): Remove.
29895
29896 * terminal.c (get_terminal): Handle terminals.
29897 Make sure the terminal returned is live.
29898 (create_terminal): Use allocate_terminal.
29899 (mark_terminals): Move to alloc.c.
29900 (delete_terminal): Use terminal->name as liveness status.
29901 NULL out fields after freeing their contents.
29902 Don't deallocate the object.
29903 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
29904 rather than an int.
29905 (Fterminal_live_p): Accept non-integer arguments.
29906 (Fterminal_list): Return terminal objects rather than an ints.
29907
29908 * alloc.c (enum mem_type): New member for `terminal' objects.
29909 (allocate_terminal): New function.
29910 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
29911 Handle terminals.
29912 (mark_terminal): New fun.
29913 (mark_terminals): Move from terminal.c.
29914
29915 * term.c (get_tty_terminal): Don't treat output_initial specially.
29916 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
29917 (delete_tty): Use terminal->name as liveness status.
29918
29919 * termhooks.h (struct terminal): Make it into a pseudovector.
29920 Remove `deleted' replaced by checking `name's nullness.
29921
29922 * print.c (print_object): Handle terminals.
29923
29924 * lisp.h (enum pvec_type): New `terminal' pseudovector.
29925 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
29926
29927 * frame.c (make_terminal_frame):
29928 * keyboard.c (tty_read_avail_input):
29929 * w32term.c (x_delete_terminal):
29930 * xfns.c (Fx_create_frame, x_create_tip_frame):
29931 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
29932
29933 2007-09-20 Glenn Morris <rgm@gnu.org>
29934
29935 * process.c (Fmake_network_process): Doc fix.
29936
29937 2007-09-19 Jason Rumney <jasonr@gnu.org>
29938
29939 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
29940
29941 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
29942
29943 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
29944 Fix a C warning regarding variable constness.
29945
29946 * xterm.c (handle_one_xevent): Fix a C warning.
29947
29948 2007-09-18 Jason Rumney <jasonr@gnu.org>
29949
29950 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
29951
29952 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
29953
29954 * gtkutil.c (gdpy_def): New variable.
29955 (xg_initialize): Initialize gdpy_def.
29956 (xg_display_close): If no other display exists, set gdpy_def to a
29957 new connection.
29958
29959 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
29960
29961 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
29962 when we have no file name for the icon.
29963 (xg_tool_bar_expose_callback): Remove.
29964 (xg_create_tool_bar): Don't connect expose signal to
29965 xg_tool_bar_expose_callback.
29966 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
29967
29968 2007-09-16 Andreas Schwab <schwab@suse.de>
29969
29970 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
29971 values instead of zapping them.
29972
29973 2007-09-14 Glenn Morris <rgm@gnu.org>
29974
29975 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
29976 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
29977 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
29978 scope and rename to omfib_buffer for clarity.
29979 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
29980
29981 2007-09-14 Kenichi Handa <handa@m17n.org>
29982
29983 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
29984
29985 2007-09-13 Jason Rumney <jasonr@gnu.org>
29986
29987 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
29988
29989 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
29990
29991 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
29992 (mac_term_init): Call here instead, passing rif.
29993
29994 2007-09-13 Glenn Morris <rgm@gnu.org>
29995
29996 * s/hpux.h: No longer define `static' as nothing.
29997
29998 2007-09-13 Johan Bockgård <bojohan@gnu.org>
29999
30000 * callint.c (Fcall_interactively): Remove unused var `fun'.
30001
30002 2007-09-12 Romain Francoise <romain@orebokech.com>
30003
30004 * window.c (prefer_window_split_horizontally, display_buffer):
30005 Revert 2007-09-08 change.
30006
30007 2007-09-12 Glenn Morris <rgm@gnu.org>
30008
30009 * alloca.c: Remove file.
30010 * Makefile.in (alloca): Do not undef.
30011 (allocaobj, alloca.o): Remove.
30012 (otherobj): Remove allocaobj.
30013 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
30014 * regex.c (C_ALLOCA): Remove all references and code that was only
30015 used when this was defined.
30016 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
30017 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
30018 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
30019
30020 * Makefile.in (SOURCES, unlock, relock): Delete.
30021
30022 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
30023 (menu_grab_callback): All uses changed.
30024
30025 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
30026 (x_reply_selection_request): All uses changed.
30027
30028 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
30029
30030 * lread.c (load_warn_old_style_backquotes): Change message to look
30031 better when it appears in the middle of byte-compiler messages.
30032
30033 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
30034
30035 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
30036
30037 * xterm.c (x_create_terminal): Add comment.
30038
30039 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
30040
30041 2007-09-10 Richard Stallman <rms@gnu.org>
30042
30043 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
30044
30045 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
30046
30047 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
30048 (DEFUN): Document `intspec', use it instead of `prompt'.
30049
30050 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
30051
30052 * data.c (Finteractive_form): If the interactive specification starts
30053 with a `(', use it as a Lisp form.
30054
30055 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
30056 name and file modes.
30057
30058 * callint.c (Fcall_interactively): Comment fixes.
30059
30060 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
30061
30062 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
30063 and compiled functions.
30064
30065 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
30066
30067 * window.c (prefer_window_split_horizontally): New variable.
30068 (display_buffer): Consider splitting window horizontally depending
30069 on prefer_window_split_horizontally.
30070
30071 2007-09-08 Eli Zaretskii <eliz@gnu.org>
30072
30073 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
30074
30075 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30076
30077 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
30078
30079 * frame.c (x_set_frame_parameters): Check number is positive before
30080 using XFASTINT.
30081
30082 * window.c (freeze_window_start): Don't presume selected_window holds
30083 a window object.
30084 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
30085
30086 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
30087
30088 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
30089
30090 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
30091
30092 * window.c (Vsplit_window_preferred_function): New var.
30093 (Fdisplay_buffer): Use it.
30094 (syms_of_window): Export, and initialize it.
30095
30096 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
30097
30098 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
30099
30100 2007-09-06 Glenn Morris <rgm@gnu.org>
30101
30102 * gtkutil.c (menu_grab_callback) <cnt>:
30103 * xselect.c (x_reply_selection_request) <cnt>: Move static
30104 variable to file scope.
30105
30106 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
30107
30108 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
30109 consistent values of selected_frame and selected_window.
30110
30111 2007-09-04 Jason Rumney <jasonr@gnu.org>
30112
30113 * w32console.c (initialize_w32_display): Zero unused hooks.
30114
30115 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30116
30117 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
30118 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
30119
30120 2007-09-04 Jason Rumney <jasonr@gnu.org>
30121
30122 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
30123 in w32console.c. Set up input. Remove XXX comments that have been
30124 confirmed as correct.
30125
30126 * s/ms-w32.h (MULTI_KBOARD): Define.
30127
30128 * w32console.c (one_and_only_w32cons): Remove.
30129 (initialize_w32_display): Take terminal argument.
30130
30131 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
30132 initialize_w32_display.
30133 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
30134
30135 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
30136
30137 * keyboard.c (discard_mouse_events): Discard it.
30138 (make_lispy_event): Translate it to a lisp event.
30139 (lispy_wheel_names): Add wheel-left and right events.
30140 (syms_of_keyboard): Enlarge wheel_syms.
30141
30142 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
30143 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
30144
30145 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
30146
30147 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
30148 from WM_MOUSEHWHEEL.
30149 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
30150
30151 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
30152 terminal.
30153
30154 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
30155 keyboard for the terminal.
30156
30157 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
30158
30159 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
30160 (Vresume_tty_hook): Rename from Vresume_tty_functions.
30161 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
30162 and resume-tty-function to resume-tty-hook.
30163 (Fsuspend_tty, Fresume_tty): Use new names.
30164
30165 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
30166
30167 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
30168 if it starts with "n:".
30169
30170 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
30171
30172 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
30173
30174 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
30175
30176 * frame.h:
30177 * frame.c (Qterm_environment_variable): Remove.
30178 (syms_of_frame): Don't init and staticpro it.
30179
30180 * callproc.c (getenv_internal): Remove special case for $TERM.
30181
30182 * callproc.c (Vinitial_environment): New variable.
30183 (set_initial_environment): Initialize it.
30184 (syms_of_callproc): Declare it.
30185 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
30186 TERM under which a process runs is never related to the TERM in which
30187 Emacs is running.
30188
30189 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30190
30191 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
30192 * s/darwin.h: ... do it here.
30193
30194 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
30195
30196 * lisp.h (set_initial_environment): Rename from set_global_environment.
30197
30198 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
30199 removed by mistake on the multi-tty branch.
30200
30201 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
30202 (Fmodify_frame_parameters): Return a value.
30203
30204 * image.c (png_load): Comment-out var only used in commented-out code.
30205
30206 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
30207 before passing it to mark_object.
30208
30209 * xfaces.c (internal_resolve_face_name): Return a value.
30210 (internal_resolve_face_name, resolve_face_name_error): Comment out.
30211
30212 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
30213 (x_icon): Comment-out var only used in commented-out code.
30214
30215 2007-08-29 Romain Francoise <romain@orebokech.com>
30216
30217 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
30218 QUIT hasn't been provided.
30219
30220 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
30221
30222 * callproc.c (child_setup, getenv_internal): Use the
30223 display-environment-variable and term-environment-variable frame params.
30224 (set_initial_environment): Initialise Vprocess_environment.
30225
30226 * config.in: Disable multi-keyboard support on a mac.
30227
30228 * frame.c (Qterm_environment_variable)
30229 (Qdisplay_environment_variable): New variables.
30230 (syms_of_frame): Intern and staticpro them.
30231 (Fmake_terminal_frame): Disable output method test.
30232
30233 * frame.h: Declare them here.
30234
30235 * macfns.c (x_set_mouse_color): Get rif from the frame.
30236 (x_set_tool_bar_lines): Don't use updating_frame.
30237 (mac_window): Add 2 new parameters for consistency with other systems.
30238 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
30239 frame parameters following what is done in X11 and w32. Don't use
30240 FRAME_MAC_DISPLAY_INFO.
30241 (Fx_open_connection, start_hourglass): Remove window-system check.
30242 (x_create_tip_frame): Get the keyboard from the terminal.
30243
30244 * macmenu.c: Reorder includes.
30245 (Fx_popup_menu): Use terminal specific mouse_position_hook.
30246
30247 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
30248 terminal parameter.
30249 (x_clear_frame): Add a frame parameter.
30250 (note_mouse_movement): Get rif from the frame.
30251 (mac_term_init): Initialize the terminal.
30252 (mac_initialize): Make static and move terminal initialization ...
30253 (mac_create_terminal): ... to this new function.
30254
30255 * macterm.h (struct mac_display_info): Add terminal.
30256 (mac_initialize): Delete declaration.
30257
30258 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
30259
30260 * sysdep.c: Comment out text after #endif.
30261
30262 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
30263 is defined. Better initialize ttys in windows. Use terminal
30264 specific mouse_position_hook.
30265
30266 * termhooks.h (union display_info): Add mac_display_info.
30267
30268 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
30269 Set the default minibuffer frame, window_system and the rest of the
30270 frame parameters following what is done in X11.
30271
30272 * w32term.c (w32_initialize): Make static.
30273
30274 * xselect.c (x_handle_selection_clear): Only access
30275 terminal->kboard when MULTI_KBOARD is defined.
30276
30277 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
30278 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
30279
30280 2007-08-29 Jason Rumney <jasonr@gnu.org>
30281
30282 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
30283 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
30284
30285 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
30286 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
30287
30288 * keyboard.c (restore_kboard_configuration): Only define when
30289 MULTI_KBOARD defined.
30290
30291 * makefile.w32-in: Update dependancies from Makefile.in.
30292 (OBJ1): Add terminal.$(O)
30293
30294 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
30295 Don't define function body.
30296 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
30297
30298 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
30299
30300 * w32.c (request_sigio, unrequest_sigio): Remove.
30301
30302 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
30303 (w32con_clear_frame, w32con_clear_end_of_line)
30304 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
30305 (w32con_delete_glyphs, w32con_set_terminal_window)
30306 (scroll_line, w32_sys_ring_bell): Add frame arg.
30307 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
30308 Add terminal arg.
30309 (PICK_FRAME): Remove.
30310 (w32con_write_glyphs): Use frame specific terminal coding.
30311 (one_and_only_w32cons): New global variable.
30312 (initialize_w32_display): Use it for storing hooks.
30313 (create_w32cons_output): New function.
30314
30315 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
30316 arg a frame.
30317
30318 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
30319 Set window_system.
30320 (x_set_tool_bar_lines): Don't use updating_frame.
30321 (Fx_create_frame): Set terminal and ref count.
30322 (Fx_open_connection): Remove window-system check.
30323
30324 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
30325
30326 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
30327 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
30328 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
30329 Add frame arg.
30330 (x_delete_terminal, w32_create_terminal): New functions.
30331 (w32_term_init): Create a terminal.
30332 (w32_initialize): Move terminal specific initialization to
30333 w32_create_terminal.
30334
30335 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
30336 (w32_clear_rect, w32_clear_area): Use background from frame.
30337 (w32_display_info): Add terminal.
30338 (w32_sys_ring_bell, x_delete_display): Declare here.
30339
30340 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
30341
30342 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
30343
30344 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
30345
30346 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
30347 Fix get_named_tty calls for the controlling tty.
30348
30349 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
30350
30351 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
30352
30353 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
30354
30355 * term.c (tty_insert_glyphs): Add missing first parameter.
30356
30357 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
30358
30359 * buffer.c (Fbuffer_list, Fbury_buffer):
30360 Take frame->buried_buffer_list into account.
30361
30362 * cm.c (current_tty): New variable, for cmputc().
30363 (cmputc): Use it.
30364 (cmcheckmagic): Add tty parameter, look up terminal streams there.
30365 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
30366 (cmgoto): Add tty parameter. Pass it on to calccost().
30367 Use emacs_tputs() instead of tputs().
30368
30369 * cm.h (emacs_tputs): New macro to set current_tty, and then call
30370 tputs().
30371 (current_tty): New variable, for cmputc().
30372 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
30373
30374 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
30375 (internal_condition_case, internal_condition_case_1)
30376 (internal_condition_case_2): Don't abort when x_catching_errors.
30377
30378 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
30379 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
30380 prevent crashes caused by bogus longjmps in read_char.
30381
30382 * keymap.h (Fset_keymap_parent): Add EXFUN.
30383
30384 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
30385 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30386 Remove redundant definition.
30387
30388 * macfns.c (x_set_mouse_color, x_make_gc):
30389 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30390
30391 * w32term.c (x_free_frame_resources):
30392 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30393 (w32_initialize): Use the accessor macros for terminal characteristics.
30394
30395 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
30396 Use the accessor macros for terminal characteristics.
30397 * msdos.c (internal_terminal_init): Use the accessor macros for
30398 terminal characteristics.
30399 (ScreenVisualBell, internal_terminal_init):
30400 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30401
30402 * termopts.h (no_redraw_on_reenter): Declare.
30403
30404 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
30405 (mark_terminals, mark_ttys): Declare.
30406 (Fgarbage_collect): Call them.
30407 (mark_object): Mark buried_buffer_list.
30408
30409 * prefix-args.c: Include stdlib.h for exit.
30410
30411 * syssignal.h: Add comment.
30412
30413 * indent.c: Include stdio.h.
30414
30415 * window.h (Vinitial_window_system): Declare.
30416 (Vwindow_system): Delete declaration.
30417
30418 * fontset.c (Finternal_char_font): Use FRAME_RIF.
30419
30420 * image.c (lookup_image): Don't initialize `c' until the xasserts
30421 have been run.
30422
30423 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
30424 FRAME_FOREGROUND_PIXEL.
30425
30426 * print.c (print_preprocess): Don't lose print_depth levels while
30427 iterating.
30428
30429 * widget.c (update_from_various_frame_slots):
30430 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30431
30432 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
30433 frames.
30434 (window_internal_height): Remove bogus make_number call.
30435 (init_window_once): Call make_terminal_frame with two zero parameters.
30436
30437 * fileio.c (Fread_file_name): Update comment.
30438
30439 * callint.c (Fcall_interactively):
30440 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
30441 Make sure it is correctly unwound.
30442
30443 * xsmfns.c (x_session_close): New function.
30444
30445 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
30446 Delete declarations.
30447
30448 * xterm.h: Remove declaration for x_fully_uncatch_errors.
30449 (x_output): Remove background_pixel and foreground_pixel fields.
30450 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
30451 (x_delete_device, x_session_close): Declare.
30452
30453 * lread.c: Include setjmp.h. Update declaration of `read_char'.
30454 (read_filtered_event): Call `read_char' with a local
30455 `wrong_kboard_jmpbuf'.
30456
30457 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
30458 Don't call single_kboard_state. Use FRAME_RIF.
30459
30460 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
30461 systems.
30462
30463 * lisp.h (set_process_environment): Rename to `set_global_environment'.
30464 (Fframe_with_environment, Fset_input_meta_mode)
30465 (Fset_quit_char): EXFUN.
30466 (x_create_device, tty_output, terminal, tty_display_info): Declare.
30467 (init_sys_modes, reset_sys_modes): Update prototypes.
30468 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
30469
30470 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
30471 Vlocal_key_translation_map, and Vkeyboard_translate_table.
30472 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
30473 Delete declarations.
30474 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
30475 (temporarily_switch_to_single_kboard, tty_read_avail_input):
30476 New declarations.
30477
30478 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
30479 already does that during init_display(). Call syms_of_keymap
30480 before syms_of_keyboard. Call `syms_of_terminal'.
30481 Call set_initial_environment, not set_process_environment.
30482 (shut_down_emacs): Call reset_all_sys_modes() instead of
30483 reset_sys_modes().
30484
30485 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
30486 (internal_resolve_face_name, resolve_face_name_error): New functions.
30487 (resolve_face_name): Protect against loops and errors thrown by Fget.
30488 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
30489 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
30490
30491 * scroll.c: Replace CURTTY() with local variables throughout the
30492 file (where applicable).
30493 (calculate_scrolling, calculate_direct_scrolling)
30494 (scrolling_1, scroll_cost): Use the accessor macros for terminal
30495 characteristics.
30496
30497 * keymap.c (Vfunction_key_map): Remove.
30498 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
30499 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
30500 (Vkey_translation_map): Remove.
30501 (syms_of_keymap): Remove DEFVAR for key-translation-map.
30502 (Fdescribe_buffer_bindings)
30503 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
30504 Update for terminal-local key-translation-map.
30505
30506 * Makefile.in (callproc.o): Update dependencies.
30507 (lisp, shortlisp): Add termdev.elc.
30508 (obj): Add terminal.o.
30509 (terminal.o): Add dependencies.
30510 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
30511 (data.o, fns.o): Add termhooks.h dependency.
30512 (SOME_MACHINE_LISP): Add dnd.elc.
30513 (minibuf.o): Fix typo.
30514 Update dependencies.
30515
30516 * data.c (do_symval_forwarding, store_symval_forwarding)
30517 (find_symbol_value): Use the selected frame's keyboard, not
30518 current_kboard.
30519
30520 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
30521 Vwindow_system.
30522
30523 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
30524 Fmenu_bar_open.
30525 (syms_of_xmenu): Update defsubr.
30526 (mouse_position_for_popup, Fx_popup_menu)
30527 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
30528 (set_frame_menubar, free_frame_menubar)
30529 (create_and_show_popup_menu, xmenu_show)
30530 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
30531 an X frame.
30532
30533 * xselect.c (x_own_selection): Abort if not an X frame.
30534 (some_frame_on_display): Check if it is an X frame.
30535 (x_handle_selection_clear): Deal with MULTI_KBOARD.
30536
30537 * coding.c: Include frame.h and termhooks.h.
30538 (terminal_coding, keyboard_coding): Delete.
30539 (Fset_terminal_coding_system_internal)
30540 (Fset_keyboard_coding_system_internal)
30541 (Fkeyboard_coding_system)
30542 (Fterminal_coding_system): Add a terminal parameter.
30543 Get terminal_coding from the terminal.
30544 (init_coding_once): Don't call setup_coding_system here.
30545
30546 * dispextern.h (set_scroll_region, turn_off_insert)
30547 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
30548 (tty_clear_end_of_line, tty_setup_colors)
30549 (delete_tty, updating_frame)
30550 (produce_special_glyphs, produce_glyphs, write_glyphs)
30551 (insert_glyphs): Remove.
30552 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
30553 (tty_turn_off_highlight, get_tty_size): Add declaration.
30554 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
30555
30556 * frame.h (enum output_method): Add output_initial.
30557 (struct x_output): Delete.
30558 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
30559 Access foreground_pixel and background_pixel directly from the frame.
30560 (tty_display): Delete.
30561 (struct frame): Add buried_buffer_list, foreground_pixel,
30562 background_pixel and terminal. Delete kboard.
30563 (union output_data): Add tty.
30564 (FRAME_KBOARD): Get the kboard from the terminal.
30565 (FRAME_INITIAL_P): New macro.
30566 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
30567 (Qterm_environment_variable, Qdisplay_environment_variable)
30568 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
30569 New declarations.
30570
30571 * termchar.h (tty_output, tty_display_info): New structures.
30572 (tty_list): Declare.
30573 (FRAME_TTY, CURTTY): New macros.
30574 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
30575 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
30576 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
30577 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
30578
30579 * callproc.c: Include frame.h and termhooks.h, for terminal
30580 parameters.
30581 (add_env): New function.
30582 (child_setup): Use it.
30583 (child_setup, getenv_internal): Handle the new Vprocess_environment.
30584 (getenv_internal): Fix get_terminal_param call.
30585 (Fgetenv_internal, egetenv): Update doc.
30586 (syms_of_callproc): Initialize Vprocess_environment to nil.
30587 Register and initialize them. Remove obsolete defvars. Update doc
30588 strings.
30589 (child_setup): Handle Vlocal_environment_variables.
30590 (getenv_internal): Add terminal parameter.
30591 Handle Vlocal_environment_variables.
30592 (Fgetenv_internal): Add terminal parameter.
30593 (child_setup, getenv_internal, Fgetenv_internal): Store the local
30594 environment in a frame (not terminal) parameter. Update doc strings.
30595 (set_initial_environment): Rename from set_global_environment.
30596 Store Emacs environment in initial frame parameter.
30597
30598 * xdisp.c (redisplay_internal): Update references to
30599 `previous_terminal_frame'.
30600 (display_mode_line, Fformat_mode_line): Replace calls to
30601 `push_frame_kboard' with `push_kboard'.
30602 (get_glyph_string_clip_rects): Add extra parentheses and
30603 braces to prevent compiler warnings.
30604 (calc_pixel_width_or_height): Add xassert to check that the
30605 frame is alive. Don't call `lookup_image' on a termcap frame.
30606 (message2_nolog, message3_nolog, redisplay_internal)
30607 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
30608 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
30609 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
30610 (Fx_display_pixel_width, Fx_display_pixel_height)
30611 (Fx_display_planes, Fx_display_color_cells)
30612 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
30613 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
30614 (Fx_display_backing_store, Fx_display_visual_class)
30615 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
30616 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
30617
30618 * xfns.c (x_set_foreground_color x_set_background_color)
30619 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
30620 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30621 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
30622 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
30623 terminal that is being deleted.
30624 (Fx_create_frame): Use `store_frame_param' to set `window-system'
30625 frame parameter, and make sure it overrides any user-supplied setting.
30626 (Fx_close_connection, Fx_synchronize): Unify argument names with
30627 the rest of the DEFUNs.
30628
30629 * dispnew.c (Fsend_string_to_terminal): Update call to
30630 `get_tty_terminal'.
30631 (Fredraw_frame, Fsend_string_to_terminal)
30632 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
30633 FRAME_TERMCAP_P and FRAME_TTY.
30634 (window_change_signal): Don't believe width/height values that are
30635 impossibly small.
30636 (Vinitial_window_system): Rename from Vwindow_system.
30637 (termscript, Wcm, rif): Delete.
30638
30639 * termhooks.h (struct terminal): New struct containing the
30640 previously global text display hooks and new members NAME,
30641 DELETED and PARAM_ALIST.
30642 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
30643 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
30644 (FRAME_RIF): New macros.
30645 (get_terminal_param, get_device): New declarations.
30646 (termscript): Delete declaration.
30647
30648 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
30649 (XTflash, x_free_frame_resources, x_scroll_bar_create)
30650 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
30651 FRAME_FOREGROUND_PIXEL.
30652 (x_fully_uncatch_errors): Disable definition.
30653 (x_scroll_bar_expose): Fix reference to foreground pixel.
30654 (XTread_socket): Disable loop on all X displays.
30655 (x_delete_terminal): Don't set terminal->deleted and let
30656 delete_terminal delete the frames on the terminal.
30657 (x_delete_display): Doc update to reflect changes in
30658 delete_terminal.
30659 (x_display_info) <terminal>: Move member earlier in the struct.
30660 (deleting_tty): Remove old variable.
30661 (Fsuspend_tty): Call clear_tty_hooks.
30662 (Fresume_tty, init_tty): Call set_tty_hooks.
30663 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
30664 errors on X frames.
30665 (x_catch_errors_unwind): Abort if x_error_message is NULL.
30666 (handle_one_xevent): Initialize `f' to NULL.
30667 (x_delete_terminal, x_create_terminal): New functions.
30668 (XTset_terminal_modes, XTreset_terminal_modes)
30669 (XTread_socket, x_connection_closed, x_term_init)
30670 (x_term_init, x_delete_display): Add terminal parameter.
30671 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
30672 X connections.
30673
30674 * frame.c: Include termchar.h.
30675 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
30676 (Qwindow_system, Qenvironment, Qterm_environment_variable)
30677 (Qdisplay_environment_variable): New vars.
30678 (Fframep): Deal with output_initial.
30679 (Fframe-live-p): Doc fix.
30680 (Fwindow-system): New function.
30681 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
30682 (make_terminal_frame): Don't create frames on a terminal that is
30683 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
30684 (store_frame_param): Check for found_for_frame before calling XFRAME.
30685 (Fmake_terminal_frame): Handle NULL tty names correctly.
30686 (syms_of_frame): Enhance doc string of `default-frame-alist'.
30687 (Fdelete_frame): Remove unused variable `count'. Don't allow other
30688 frames to refer to a deleted frame in their 'environment parameter.
30689 (Fframe_with_environment): New function.
30690 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
30691 (get_future_frame_param): New function.
30692 (Fmake_terminal_frame): Use it.
30693 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
30694
30695 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
30696 * sysdep.c (reset_sys_modes): Update for renames.
30697
30698 * keyboard.c (tty_read_avail_input): New function.
30699 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
30700 (syms_of_keyboard): Defsubr them.
30701 (Fset_input_meta_mode, Fset_quit_char): New functions.
30702 (Fset_input_mode): Split to above functions.
30703 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
30704 parameter. Use it in call to `read_char'.
30705 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
30706 Set wrong_kboard_jmpbuf correctly in recursive calls.
30707 Use current_kboard to access Vkeyboard_translate_table.
30708 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
30709 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
30710 Update longjmp invocations. Remember the original current_kboard,
30711 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
30712 changes it. Comment out unnecessary calls to
30713 `record_single_kboard_state' and `any_kboard_state'.
30714 Update recursive calls.
30715 (wrong_kboard_jmpbuf): Remove global variable.
30716 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
30717 Handle deleted interrupted_kboards correctly; that is a legal
30718 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
30719 and read_char calls. Abort if interrupted_kboard died in read_char.
30720 (any_kboard_state, single_kboard_state)
30721 (push_frame_kboard): Remove function.
30722 (pop_kboard): Switch out of single_kboard mode if the kboard has
30723 been deleted. Remove unused variable. Help debugging by not
30724 changing current_kboard unnecessarily. Set current_kboard to the
30725 kboard of the selected frame when the stored kboard object has
30726 been deleted before pop_kboard.
30727 (temporarily_switch_to_single_kboard): Change first parameter to a
30728 frame pointer. Throw an error when caller wants to change kboards
30729 while in single_kboard mode. Don't push_kboard if we weren't in
30730 single kboard state. Don't pop_kboard if we popped into any
30731 kboard state.
30732 (restore_kboard_configuration): Abort if pop_kboard changed the
30733 kboard in single_kboard mode. Call pop_kboard only after setting
30734 up single_kboard mode.
30735 (Frecursive_edit): Switch to single_kboard mode only in nested
30736 command loops.
30737 (cmd_error, command_loop, command_loop_1, timer_check):
30738 Comment out unnecessary call to `any_kboard_state' and
30739 `record_single_kboard_state'.
30740 (delete_kboard): Exit single_kboard mode if we have just deleted
30741 that kboard. Use FRAME_KBOARD.
30742 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
30743 `fatal_error_signal'.
30744 (record_single_kboard_state): Don't push_kboard if we weren't in
30745 single kboard state. Don't pop_kboard if we popped into any
30746 kboard state.
30747 (push_frame_kboard): Rename to push_kboard.
30748 (kbd_buffer_get_event): Use FRAME_TERMINAL.
30749 (read_avail_input): Read input from all terminals.
30750 (mark_kboards): Also mark Vkeyboard_translate_table.
30751 (kbd_buffer_store_event_hold): Simplify condition.
30752 (read_key_sequence): Reinitialize fkey and keytran at each replay.
30753 (Vkeyboard_translate_table): Move to struct kboard.
30754 (init_kboard): Initialize Vkeyboard_translate_table.
30755 (syms_of_keyboard): Use DEFVAR_KBOARD to define
30756 Vkeyboard_translate_table. Update doc strings. Update docs of
30757 local-function-key-map and function-key-map.
30758
30759 * terminal.c: New file.
30760
30761 * term.c: Include errno.h.
30762 (Vring_bell_function, device_list, initial_device)
30763 (next_device_id, ring_bell, update_begin, update_end)
30764 (set_terminal_window, cursor_to, raw_cursor_to)
30765 (clear_to_end, clear_frame, clear_end_of_line)
30766 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
30767 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
30768 (syms_of_term): Move their initialization to terminal.c.
30769 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
30770 (Ftty_display_color_cells)
30771 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
30772 (clear_tty_hooks, set_tty_hooks)
30773 (init_tty, maybe_fatal): New functions.
30774 (Ftty_type): Return nil if terminal is not on a tty instead of
30775 throwing an error. Doc update.
30776 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
30777 Doc update. Initialize new subrs and variables.
30778 (delete_tty): Use terminal->deleted.
30779 (tty_set_terminal_modes): Rename from set_terminal_modes.
30780 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
30781 (set_scroll_region): Rename to `tty_set_scroll_region'.
30782 (turn_on_insert): Rename to `tty_turn_on_insert'.
30783 (turn_off_insert): Rename to `tty_turn_off_insert'.
30784 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
30785 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
30786 (toggle_highligh): Rename to `tty_toggle_highlight'.
30787 (background_highlight): Rename to `tty_background_highlight'.
30788 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
30789 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
30790 (tty_set_scroll_region, tty_background_highlight)
30791 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
30792 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
30793 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
30794 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
30795 Add static modifier.
30796 (tty_reset_terminal_modes, tty_set_terminal_window)
30797 (tty_set_scroll_region, tty_background_highlight)
30798 (tty_highlight_if_desired, tty_cursor_to)
30799 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
30800 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
30801 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
30802 renames.
30803
30804 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
30805
30806 * keyboard.c: Qrtl is new.
30807 (parse_tool_bar_item): Handle :rtl keyword.
30808 (syms_of_keyboard): Intern :rtl keyword.
30809
30810 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
30811
30812 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
30813 so no Lisp code is executed.
30814 (file_for_image, find_rtl_image): New functions.
30815 (xg_get_image_for_pixmap): Use file_for_image.
30816 (update_frame_tool_bar): If direction is RTL, use RTL image if
30817 defined. Use Gtk stock images if defined.
30818
30819 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30820
30821 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
30822 for nonexistent or zero-width glyph in composition glyph.
30823
30824 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
30825
30826 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
30827
30828 * xdisp.c (Finvisible_p): New function.
30829 (syms_of_xdisp): defsubr it.
30830
30831 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
30832
30833 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
30834 Doc fixes.
30835
30836 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30837
30838 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
30839
30840 2007-08-24 Martin Rudalics <rudalics@gmx.at>
30841
30842 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
30843 whether decoding has modified buffer contents.
30844
30845 2007-08-24 Jason Rumney <jasonr@gnu.org>
30846
30847 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
30848 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
30849 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
30850 (init_svg_functions) [HAVE_NTGUI]: New function.
30851 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
30852 (svg_load_image): Use them.
30853 (svg_load_image) [HAVE_NTGUI]: Implement background.
30854
30855 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30856
30857 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
30858 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
30859 (LIBX): Remove @RSVG_LIBS@.
30860 (LIBES): Add $(RSVG_LIBS).
30861
30862 * image.c (svg_load_image): Blend with specified background if exists.
30863 Use IMAGE_BACKGROUND. Add Mac OS Support.
30864
30865 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
30866 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
30867 Remove macros.
30868 [MAC_OSX] (socket_callback): Do nothing.
30869 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
30870 ReceiveNextEvent.
30871 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
30872 socket_callback.
30873 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
30874
30875 2007-08-22 Glenn Morris <rgm@gnu.org>
30876
30877 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
30878
30879 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
30880
30881 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
30882
30883 * image.c: Add support for SVG images. Some additional comments
30884 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
30885 (svg_image_p): New function to test for SVG image.
30886 (svg_load): New function to load SVG image.
30887 (svg_load_image): New function, helper for svg_load.
30888 (Qsvg): New Lisp_object.
30889 (svg_keyword_index): New enum.
30890 (svg_format): New static `image_keyword' struct.
30891 (svg_type): New static `image_type' struct.
30892 (librsvg/rsvg.h): Include it.
30893
30894 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
30895
30896 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
30897
30898 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
30899
30900 * lread.c (Qold_style_backquotes): New var.
30901 (syms_of_lread): Init and staticpro it.
30902 (load_warn_old_style_backquotes): New fun.
30903 (Fload): Use them to warn about old style backquotes.
30904 (end_of_file_error, Fload): Remove unused vars.
30905
30906 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
30907
30908 * lread.c (Vold_style_backquotes): New var.
30909 (syms_of_lread): Init and export it to Elisp.
30910 (read1): Set it when we find an old-style (back)quote.
30911
30912 2007-08-22 Jason Rumney <jasonr@gnu.org>
30913
30914 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
30915
30916 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
30917
30918 * puresize.h (BASE_PURESIZE): Increase to 1140000.
30919
30920 2007-08-19 Richard Stallman <rms@gnu.org>
30921
30922 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
30923
30924 2007-08-19 Andreas Schwab <schwab@suse.de>
30925
30926 * alloc.c (pure): Round PURESIZE up.
30927
30928 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
30929
30930 * xterm.c (handle_one_xevent): Remove check that mouse click is in
30931 active frame.
30932
30933 2007-08-16 Richard Stallman <rms@gnu.org>
30934
30935 * eval.c (Fcommandp): Add parens to clarify.
30936
30937 * minibuf.c (Fall_completions): Use enum for type of table.
30938
30939 * emacs.c (USAGE2): Improve text.
30940
30941 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
30942
30943 * term.c (tty_default_color_capabilities): Declare static
30944 variables in file scope, to avoid HPUX compiler problem.
30945
30946 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
30947
30948 * gtkutil.c (update_frame_tool_bar): Use -1 as index
30949 to gtk_toolbar_insert.
30950
30951 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
30952
30953 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
30954
30955 * insdel.c (reset_var_on_error): New fun.
30956 (signal_before_change, signal_after_change):
30957 Use it to reset (after|before)-change-functions to nil in case of error.
30958 Bind inhibit-modification-hooks to t.
30959 Don't bind (after|before)-change-functions to nil while they run.
30960
30961 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30962
30963 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
30964 filling pixmap with stippled background.
30965
30966 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30967
30968 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
30969 Don't use invisible frame as parent window for repositioning.
30970
30971 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
30972
30973 * print.c (new_backquote_output): Rename from old_backquote_output.
30974 (print): Inverse its logic (according to its name) so as to match the
30975 behavior of new_backquote_flag in lread.c.
30976
30977 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30978
30979 * gmalloc.c (posix_memalign): New function.
30980
30981 * macterm.c (frame_highlight, frame_unhighlight): Don't call
30982 ActivateControl/DeactivateControl here.
30983 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
30984 frame-notice-user-settings is non-nil.
30985 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
30986 for kEventParamFMFontStyle.
30987 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
30988 mac_pass_command_to_system and mac_pass_control_to_system here.
30989 (XTread_socket): Call ActivateControl/DeactivateControl here.
30990 (XTread_socket) [TARGET_API_MAC_CARBON]:
30991 Check mac_pass_command_to_system and mac_pass_control_to_system here.
30992 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
30993 for window repositioning.
30994
30995 2007-08-08 Glenn Morris <rgm@gnu.org>
30996
30997 * Replace `iff' in doc-strings and comments.
30998
30999 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
31000
31001 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
31002
31003 2007-08-07 Martin Rudalics <rudalics@gmx.at>
31004
31005 * fileio.c (Finsert_file_contents): Run format-decode and
31006 after_insert_file_functions on entire buffer when REPLACE is
31007 non-nil and inhibit modification_hooks and point_motion_hooks.
31008 For consistency, run after_insert_file_functions iff something
31009 got inserted. Move signal_after_change and update_compositions
31010 after code running after_insert_file_functions. Make sure that
31011 undo_list doesn't record intermediate steps of the decoding process.
31012
31013 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31014
31015 * emacs.c (main)
31016 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
31017 Call malloc_enable_thread on interactive startup.
31018
31019 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
31020 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
31021 [USE_PTHREAD]: Conditionalize with it.
31022 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
31023 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
31024 New functions.
31025
31026 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
31027
31028 * xdisp.c (redisplay_window): When restoring original buffer
31029 position, make sure it is still valid.
31030
31031 * image.c (png_load): Ignore png-supplied background color.
31032
31033 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31034
31035 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
31036 Use kCFAbsoluteTimeIntervalSince1970.
31037
31038 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
31039 New variable.
31040 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
31041 event loop should be quit.
31042 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
31043 Quit dialog event loop if quit_dialog_event_loop is set.
31044
31045 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
31046 (Selection): New typedef. Use instead of ScrapRef.
31047 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
31048 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
31049 (mac_clear_selection): Rename from clear_scrap.
31050 (get_flavor_type_from_symbol): New argument SEL and subsume function of
31051 scrap_has_target_type. All uses changed.
31052 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
31053 (mac_selection_has_target_p): New functions.
31054 (mac_put_selection_value): Rename from put_scrap_string.
31055 (mac_get_selection_value): Rename from get_scrap_string.
31056 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
31057 (put_scrap_private_timestamp, scrap_has_target_type)
31058 (get_scrap_private_timestamp): Remove functions.
31059 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
31060 (x_own_selection, x_get_local_selection):
31061 Use mac_valid_selection_value_p.
31062 (x_own_selection): Don't use put_scrap_private_timestamp.
31063 Record OWNERSHIP-INFO into Vselection_alist instead.
31064 (x_get_local_selection): Don't check type if request is local.
31065 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
31066 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
31067
31068 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
31069
31070 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
31071 add comment explaining why.
31072
31073 2007-08-03 Richard Stallman <rms@gnu.org>
31074
31075 * fileio.c (Fvisited_file_modtime): Use make_time.
31076
31077 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
31078
31079 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
31080 build.
31081
31082 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
31083
31084 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
31085
31086 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
31087
31088 * puresize.h (BASE_PURESIZE): Increase to 1130000.
31089
31090 2007-07-30 Richard Stallman <rms@gnu.org>
31091
31092 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
31093
31094 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
31095
31096 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
31097
31098 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
31099
31100 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
31101 remote default-directory.
31102
31103 * buffer.c (mode-line-format): Update doc string.
31104
31105 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31106
31107 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
31108 scroll bar gap.
31109 (x_scroll_bar_create): Set bar->fringe_extended_p.
31110 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
31111 on frame edge. Check fringe background extension. Don't clear
31112 extended fringe background area.
31113
31114 * w32term.h (struct scroll_bar): New member fringe_extended_p.
31115 (w32_fill_area): Enclose multiple statements with do ... while (0).
31116
31117 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
31118 Extend fringe background to scroll bar gap.
31119 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
31120 Set bar->fringe_extended_p.
31121 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31122 Put leftmost/rightmost scroll bars on frame edge. Check fringe
31123 background extension. Don't clear extended fringe background area.
31124
31125 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
31126 New member fringe_extended_p.
31127
31128 2007-07-25 Glenn Morris <rgm@gnu.org>
31129
31130 * Relicense all FSF files to GPLv3 or later.
31131
31132 * COPYING: Switch to GPLv3.
31133
31134 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
31135
31136 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
31137
31138 * data.c (Finteractive_form): Check for the presence of an
31139 `interactive-form' symbol property more thoroughly.
31140
31141 * data.c (Finteractive_form): Use an `interactive-form' property if
31142 present, analogous to the function-documentation property.
31143
31144 2007-07-24 Jason Rumney <jasonr@gnu.org>
31145
31146 * w32fns.c (x_real_positions): Get real position from OS instead of
31147 calculating it.
31148
31149 2007-07-23 Jason Rumney <jasonr@gnu.org>
31150
31151 * filelock.c (current_lock_owner): Allow for @ sign in username.
31152
31153 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
31154
31155 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
31156 remote default-directory.
31157
31158 * buffer.c (mode-line-format): Describe above case in doc string.
31159
31160 2007-07-20 Eli Zaretskii <eliz@gnu.org>
31161
31162 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
31163 Define if not defined.
31164
31165 2007-07-18 Jason Rumney <jasonr@gnu.org>
31166
31167 * w32proc.c (w32_executable_type): Handle 64 bit executables.
31168
31169 2007-07-18 Richard Stallman <rms@gnu.org>
31170
31171 * data.c (Fsetq_default): Doc fix.
31172
31173 * eval.c (Fsetq): Doc fix.
31174
31175 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
31176
31177 * coding.c (Ffind_operation_coding_system):
31178 * eval.c (For, Fand): Doc fixes.
31179 Reported by Johan Bockgård.
31180
31181 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
31182
31183 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
31184
31185 * xterm.h: Declare x_ewmh_activate_frame.
31186
31187 * xterm.c (x_ewmh_activate_frame): New function.
31188 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
31189
31190 2007-07-17 Martin Rudalics <rudalics@gmx.at>
31191
31192 * window.c (Fdisplay_buffer): If largest or LRU window is the
31193 only window, split it even if it is not eligible for splitting.
31194 This restores the original behavior broken by the 2007-07-15
31195 change.
31196
31197 2007-07-17 Glenn Morris <rgm@gnu.org>
31198
31199 * abbrev.c (abbrev_check_chars): New function.
31200 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
31201 Call abbrev_check_chars to check abbrev characters are word
31202 constituents. Doc fix.
31203
31204 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
31205
31206 * process.c (Fstart_process, Fmake_network_process)
31207 (read_process_output): Fix up last changes.
31208
31209 2007-07-16 Eli Zaretskii <eliz@gnu.org>
31210
31211 * makefile.w32-in (clean): Don't delete *~.
31212
31213 2007-07-16 Andreas Schwab <schwab@suse.de>
31214
31215 * window.c (Fdisplay_buffer): Use NILP.
31216 (Fset_window_scroll_bars): Likewise.
31217
31218 2007-07-15 Martin Rudalics <rudalics@gmx.at>
31219
31220 * window.c (window_min_size_2): New function.
31221 (window_min_size_1, size_window, Fdisplay_buffer)
31222 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
31223 windows without mode- or header-lines when window-min-height is
31224 too small.
31225 (size_window): Reset nodelete_p after testing it, following an
31226 earlier note by Kim F. Storm.
31227 (display_buffer): Do not set split_height_threshold to twice the
31228 value of window_min_height to avoid changing the value of a
31229 customizable variable. Rather explicitly check whether the
31230 height of the window that shall be splitted is at least as large
31231 as split_height_threshold.
31232 (Fwindow_full_width_p): New defun.
31233 (syms_of_window): Defsubr it.
31234
31235 * window.h: Add EXFUN for Fwindow_full_width_p.
31236
31237 2007-07-14 Jason Rumney <jasonr@gnu.org>
31238
31239 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
31240
31241 2007-07-14 Richard Stallman <rms@gnu.org>
31242
31243 * eval.c (maybe_call_debugger): New function.
31244 (find_handler_clause): Use maybe_call_debugger.
31245 Call it when the handler says `debug'.
31246 Eliminate DEBUGGER_VALUE_PTR.
31247 (Fsignal): Eliminate debugger_value.
31248 (Qdebug): New variable.
31249 (syms_of_eval): Initialize it.
31250
31251 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
31252
31253 * eval.c (Fprogn):
31254 * keyboard.c (Ftrack_mouse):
31255 * print.c (Fwith_output_to_temp_buffer):
31256 * window.c (Fsave_window_excursion): Doc fix.
31257
31258 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
31259
31260 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
31261
31262 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
31263
31264 * process.h (struct Lisp_Process): Turn slots infd, outfd,
31265 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
31266 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
31267 read_output_delay, and read_output_skip from Lisp_Objects to ints.
31268 Remove unused encoding_carryover.
31269 * process.c: Adjust all functions accordingly.
31270
31271 2007-07-12 Richard Stallman <rms@gnu.org>
31272
31273 * term.c: Include unistd.h only if HAVE_UNISTD_H.
31274
31275 2007-07-11 Jason Rumney <jasonr@gnu.org>
31276
31277 * makefile.w32-in (LIBS): Include OLE32.
31278
31279 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
31280 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
31281
31282 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
31283
31284 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
31285 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
31286 from a Lisp_Object into a bare pointer.
31287 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
31288 Adjust the code correspondingly.
31289
31290 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
31291
31292 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
31293 (term_show_mouse_face): Remove unused var `j'.
31294 (handle_one_term_event): Remove unused vars `i' and `j'.
31295 Don't cast return value of ttyname since it's not necessary.
31296
31297 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
31298
31299 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
31300 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
31301
31302 * fns.c (map_char_table): Use an array of int for `indices' rather than
31303 an array of Lisp_Objects (which are only ever integers anyway).
31304 (Fmap_char_table): Update caller.
31305 * lisp.h: Update prototype.
31306 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
31307 * fontset.c (Ffontset_info):
31308 * casetab.c (set_case_table): Update callers.
31309
31310 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
31311
31312 * keymap.c (struct accessible_keymaps_data)
31313 (struct where_is_internal_data): New structures.
31314 (accessible_keymaps_1, where_is_internal_1): Use them to change
31315 interface to adhere to the one used by map_keymap.
31316 (Faccessible_keymaps, where_is_internal): Use map_keymap.
31317 (accessible_keymaps_char_table, where_is_internal_2): Remove.
31318
31319 * keymap.h (map_keymap_function_t): More informative prototype.
31320
31321 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
31322
31323 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
31324 (looking_at_1): Don't change search_regs and last_thing_searched
31325 if `inhibit-changing-match-data' is non-nil.
31326 (string_match_1, search_buffer, set_search_regs): Likewise.
31327 (syms_of_search): Add Lisp level definition for
31328 `inhibit-changing-match-data' and set it to nil.
31329 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
31330 start and end of the match, instead of using values in search_regs.
31331
31332 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
31333
31334 * minibuf.c (Fcompleting_read): New value `confirm-only'
31335 for `require-match'.
31336
31337 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
31338
31339 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
31340 part of the 2007-06-27 change to syms_of_fileio.
31341
31342 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31343
31344 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
31345 Check WINDOWP before using XWINDOW. Consolidate return statements.
31346
31347 2007-06-27 Richard Stallman <rms@gnu.org>
31348
31349 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
31350
31351 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
31352
31353 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
31354
31355 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31356
31357 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
31358 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
31359 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
31360 (_free_internal, memalign): Use them.
31361 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
31362 Initialize to PTHREAD_MUTEX_INITIALIZER.
31363 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
31364 (morecore_nolock): Rename from morecore. All uses changed.
31365 Use only nolock versions of internal allocation functions.
31366 (_malloc_internal_nolock, _realloc_internal_nolock)
31367 (_free_internal_nolock): New functions created from
31368 _malloc_internal, _realloc_internal, and _free_internal.
31369 (_malloc_internal, _realloc_internal, _free_internal): Use them.
31370 Copy hook value to automatic variable before its use.
31371 (memalign): Copy hook value to automatic variable before its use.
31372
31373 2007-06-26 Kenichi Handa <handa@m17n.org>
31374
31375 * coding.c (Ffind_operation_coding_system): Docstring improved.
31376 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
31377
31378 2007-06-25 David Kastrup <dak@gnu.org>
31379
31380 * keymap.c (Fcurrent_active_maps): Add `position' argument.
31381 (Fwhere_is_internal): Adjust call to `current-active-maps' to
31382 cater for additional parameter.
31383
31384 * keymap.h: Adjust number of parameters to `current-active-maps'.
31385
31386 * doc.c (Fsubstitute_command_keys): Adjust call of
31387 `current-active-maps'.
31388
31389 2007-06-25 David Kastrup <dak@gnu.org>
31390
31391 * callint.c (Fcall_interactively): Make the parsing of interactive
31392 specs somewhat more readable.
31393
31394 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31395
31396 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
31397 to scroll bar gap also when bitmap fills fringe. Draw only foreground
31398 if extended background has already been filled.
31399
31400 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31401
31402 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
31403 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
31404
31405 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
31406 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
31407 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
31408 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
31409 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
31410 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
31411 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
31412 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
31413 Run timers during dialog popup.
31414 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
31415
31416 2007-06-21 Jason Rumney <jasonr@gnu.org>
31417
31418 * image.c (convert_mono_to_color_image): Swap fore and background.
31419
31420 2007-06-20 Jason Rumney <jasonr@gnu.org>
31421
31422 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
31423 (w32_free_bdf_font): Unmap memory not handle.
31424
31425 2007-06-20 Sam Steingold <sds@gnu.org>
31426
31427 * gmalloc.c (__morecore): Fix the declaration to comply with the
31428 definition.
31429
31430 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
31431
31432 * w32term.c (w32_delete_display): Remove leftover declaration.
31433 (w32_define_cursor, w32_initialize): Make static.
31434
31435 * w32.c (_wsa_errlist): Fix typo in error message.
31436 (init_environment): Ignore any environment variable from the
31437 registry having a null value.
31438
31439 2007-06-20 Glenn Morris <rgm@gnu.org>
31440
31441 * Makefile.in (LIBGIF): Default to -lgif.
31442
31443 2007-06-17 Jason Rumney <jasonr@gnu.org>
31444
31445 * w32menu.c (add_menu_item): Don't use multibyte string functions on
31446 unicode strings.
31447
31448 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
31449
31450 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
31451 Fix typo in docstring.
31452
31453 2007-06-16 Eli Zaretskii <eliz@gnu.org>
31454
31455 * w32menu.c (add_menu_item): Escape `&' characters in menu items
31456 and their keybindings.
31457
31458 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
31459
31460 * composite.c (update_compositions): Fix last fix.
31461
31462 2007-06-14 Jason Rumney <jasonr@gnu.org>
31463
31464 * w32.c (get_process_times_fn): New function pointer.
31465 (globals_of_w32): Intialize it if present in kernel32.dll.
31466 (w32_get_internal_run_time): New function.
31467
31468 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
31469
31470 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
31471
31472 * composite.c (update_compositions): Check the validness of
31473 compositions.
31474
31475 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31476
31477 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
31478 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
31479
31480 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
31481 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
31482
31483 * macgui.h (USE_MAC_TOOLBAR): New define.
31484
31485 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31486 Return immediately unless popup is activated.
31487
31488 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
31489 background to scroll bar gap.
31490 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
31491 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
31492 scroll bars on frame edge. Check fringe background extension.
31493 Don't clear extended fringe background area.
31494 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
31495 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
31496 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
31497 [USE_MAC_TOOLBAR]: New macros.
31498 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
31499 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
31500 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
31501 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
31502 [USE_MAC_TOOLBAR]: New functions.
31503 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
31504 manually if previous repositioning has failed.
31505 (mac_handle_keyboard_event): Use precomputed event kind.
31506 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
31507 as tool bar item click. Handle mouse movement over tool bar items.
31508
31509 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
31510 toolbar_win_gravity.
31511 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
31512 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
31513 Add externs.
31514
31515 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
31516 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
31517
31518 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
31519
31520 * image.c (search_image_cache): Remove unused variable.
31521
31522 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
31523
31524 * xfns.c, xmenu.c: Link to xaw3d if available.
31525
31526 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31527
31528 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
31529 frame_foreground and frame_background.
31530
31531 * image.c (lookup_image): Save frame foreground and background colors.
31532 (search_image_cache): Check if saved and current frame colors match.
31533
31534 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
31535
31536 * regex.c (regex_compile): Remove the `regnum' counter.
31537 Use bufp->re_nsub instead. Add support for \(?N:RE\).
31538
31539 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
31540
31541 * term.c: Include intervals.h to declare Fget_text_property.
31542
31543 2007-06-10 Jason Rumney <jasonr@gnu.org>
31544
31545 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
31546
31547 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
31548
31549 * callint.c (Fcall_interactively):
31550 * editfns.c (Fdelete_and_extract_region):
31551 * fileio.c (Fread_file_name):
31552 * fns.c (Fmapconcat):
31553 * keyboard.c (cmd_error_internal):
31554 * keymap.c (Fkey_description):
31555 * lread.c (openp):
31556 * minibuf.c (read_minibuf):
31557 * search.c (wordify):
31558 * sunfns.c (sel_read):
31559 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
31560 * xfns.c (x_default_scroll_bar_color_parameter):
31561 * xmenu.c (menu_help_callback):
31562 * xselect.c (Fx_get_atom_name):
31563 * xterm.c (x_term_init): Use empty_unibyte_string.
31564
31565 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
31566
31567 * alloc.c (init_strings): Initialize canonical empty strings.
31568 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
31569 canonical empty string when the requested size is 0.
31570
31571 * emacs.c (empty_unibyte_string): Rename from empty_string.
31572 (empty_multibyte_string): New canonical empty string.
31573 (syms_of_emacs): Don't initialize empty_string.
31574
31575 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
31576 string, if appropriate.
31577 (empty_unibyte_string, empty_multibyte_string): New externs.
31578 (empty_string): Remove extern.
31579
31580 * lread.c (syms_of_lread): Use empty_unibyte_string.
31581
31582 2007-06-07 Jason Rumney <jasonr@gnu.org>
31583
31584 * s/ms-w32.h: Don't define HAVE_TZNAME.
31585
31586 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
31587
31588 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31589
31590 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
31591
31592 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
31593 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
31594
31595 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
31596 Don't call next handler.
31597 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
31598 Remove argument. Install handler to application.
31599 (set_frame_menubar): Don't change deep_p.
31600 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
31601 FRAME_OUTER_TO_INNER_DIFF_Y.
31602 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
31603 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
31604 [HAVE_DIALOGS]: New macros.
31605 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
31606 Use them.
31607 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
31608
31609 * macselect.c [MAC_OSX] (install_service_handler): Rename from
31610 init_service_handler. All callers changed. Return OSStatus value.
31611
31612 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
31613 All callers changed so as not to call SetPortWindowPort.
31614 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
31615 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
31616 mac_draw_string_common.
31617 (mac_draw_image_string_qd): Likewise.
31618 (mac_draw_string_common): Use them. Add INLINE.
31619 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
31620 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
31621 GetGlobalMouse.
31622 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
31623 and FRAME_OUTER_TO_INNER_DIFF_Y.
31624 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
31625 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
31626 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
31627 repositioning window to mac_handle_window_event.
31628 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
31629 saving window location to mac_handle_window_event
31630 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
31631 (install_menu_target_item_handler): Remove argument in extern.
31632 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
31633 Also accept command events.
31634 (do_keystroke): New function created from XTread_socket.
31635 (init_command_handler): Remove functions.
31636 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
31637 and save window location by kEventWindowShowing and kEventWindowHiding
31638 handlers here. Don't call next handler for window state change and
31639 focus events.
31640 (mac_handle_application_event, mac_handle_keyboard_event)
31641 [TARGET_API_MAC_CARBON]: New functions.
31642 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
31643 kEventWindowShowing and kEventWindowHiding events. Move installation
31644 of mouse, font, text input and menu target item handlers to
31645 install_application_handler.
31646 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
31647 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31648 New function.
31649 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
31650 Register it.
31651 (XTread_socket) [TARGET_API_MAC_CARBON]:
31652 Consolidate SendEventToEventTarget calls.
31653 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
31654 Move application activation handler to mac_handle_application_event.
31655 Move keyboard handler to mac_handle_keyboard_event.
31656 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
31657 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
31658 init_command_handler. Call install_application_handler.
31659
31660 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
31661 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
31662
31663 2007-06-07 Glenn Morris <rgm@gnu.org>
31664
31665 * emacs.c (main): Use `emacs-copyright' in --version output.
31666
31667 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
31668
31669 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
31670
31671 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31672
31673 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
31674
31675 * macgui.h: Replace WindowPtr with WindowRef.
31676
31677 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31678 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31679 Replace ControlHandle with ControlRef.
31680 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
31681
31682 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
31683 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
31684 Replace ControlHandle with ControlRef.
31685 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
31686 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
31687
31688 * macterm.h (struct scroll_bar): Rename member control_handle_low
31689 and control_handle_high to control_ref_low and control_ref_high.
31690 All uses changed.
31691 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
31692 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
31693 respectively. All uses changed.
31694 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
31695 (install_window_handler, remove_window_handler): Replace WindowPtr
31696 with WindowRef in externs.
31697
31698 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
31699
31700 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
31701
31702 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
31703
31704 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
31705
31706 * frame.c (Fmouse_position, Fmouse_pixel_position):
31707 Condition on HAVE_GPM too.
31708
31709 * term.c (term_mouse_highlight): Remove unused variables.
31710 (Fterm_open_connection): Set gpm_zerobased to 1.
31711 (term_mouse_movement, term_mouse_click, handle_one_term_event):
31712 Use zero based co-ordinates.
31713 (handle_one_term_event): Report a drag as mouse movement too.
31714
31715 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
31716
31717 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
31718
31719 * image.c (search_image_cache): New function. Require background
31720 color match if background color is unspecified in the image spec.
31721 (uncache_image, lookup_image): Use it.
31722
31723 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
31724
31725 * window.c (Fshrink_window): Reflow docstring.
31726
31727 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
31728
31729 * Version 22.1 released.
31730
31731 2007-06-01 Richard Stallman <rms@gnu.org>
31732
31733 * xfns.c (x_encode_text): Add GCPRO.
31734
31735 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31736
31737 * xfns.c (x_set_name_internal): Save encoded name before
31738 x_encode_text in case string data is relocated.
31739
31740 2007-05-31 Richard Stallman <rms@gnu.org>
31741
31742 * buffer.c (syms_of_buffer): Doc fix.
31743
31744 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
31745
31746 * sysdep.c (init_sys_modes): Add rather than replace with
31747 O_NONBLOCK.
31748
31749 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
31750 term_mouse_moveto.
31751
31752 * termhooks.h (term_mouse_moveto): New extern.
31753
31754 * term.c (mouse_face_window): Rename...
31755 (Qmouse_face_window): ...to this.
31756 (term_show_mouse_face, term_clear_mouse_face)
31757 (term_mouse_highlight): Use Qmouse_face_window.
31758 (term_mouse_moveto): New function.
31759 (term_mouse_position): Make it work.
31760 (syms_of_term): Uncomment assignment to mouse_position_hook.
31761 Staticpro Qmouse_face_window.
31762
31763 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31764
31765 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
31766 around current_column call.
31767
31768 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
31769
31770 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
31771 * xdisp.c (next_element_from_buffer):
31772 * window.c (delete_window):
31773 * term.c (term_mouse_highlight):
31774 * msdos.c (getdefdir):
31775 * macterm.c (mac_create_bitmap_from_bitmap_data)
31776 (init_font_name_table):
31777 * fns.c (Fsxhash):
31778 * data.c (Fmake_local_variable):
31779 * ccl.c (ccl_driver): Likewise.
31780
31781 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31782
31783 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
31784 Call mac_wakeup_from_rne on window size change.
31785
31786 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
31787
31788 * image.c (uncache_image): Fix typo.
31789
31790 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
31791
31792 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
31793
31794 2007-05-22 Richard Stallman <rms@gnu.org>
31795
31796 * xterm.c (x_connection_closed): Remove NO_RETURN.
31797
31798 2007-05-22 Martin Rudalics <rudalics@gmx.at>
31799
31800 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
31801
31802 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
31803
31804 * image.c (uncache_image): New function.
31805 (Fimage_refresh): New function.
31806
31807 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
31808
31809 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
31810
31811 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
31812
31813 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
31814 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
31815
31816 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
31817
31818 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
31819 conditional on [HAVE_GPM_H].
31820
31821 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
31822
31823 * syntax.c (skip_chars): Update syntax-table only after we checked that
31824 the new location is valid.
31825
31826 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31827
31828 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
31829 mac_get_window_bounds.
31830
31831 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
31832
31833 * Makefile.in (LIBGPM): Allow it to be set from configure.
31834 If set then link Emacs with it.
31835
31836 * config.in: Regenerate.
31837
31838 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
31839 New externs.
31840
31841 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
31842 Include gpm.h.
31843 (handle_one_term_event, term_gpm): New externs.
31844
31845 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
31846 and allow it to be interrupted by SIGIO.
31847
31848 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
31849 (wait_reading_process_output): Wait on gpm_fd too.
31850 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
31851 (add_gpm_wait_descriptor_called_flag): New variable.
31852 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
31853
31854 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
31855 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
31856 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
31857 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
31858 (make_lispy_event): Add case GPM_CLICK_EVENT.
31859 (read_avail_input): Handle mouse input.
31860
31861 * term.c (write_glyphs_with_face): New function.
31862 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
31863 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
31864 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
31865 (mouse_face_face_id, term_gpm, pos_x, pos_y)
31866 (last_mouse_x, last_mouse_y): New variables.
31867 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
31868 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
31869 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
31870 (Fterm_close_connection): New functions.
31871 (term_init): Initialise mouse_face_window.
31872
31873 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
31874
31875 * xdisp.c (redisplay_window): If first window line is a
31876 continuation line, recompute the new window start instead of
31877 recentering.
31878
31879 2007-05-18 Glenn Morris <rgm@gnu.org>
31880
31881 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
31882 Suggested by Alfred M. Szmidt <ams@gnu.org>.
31883
31884 2007-05-17 Glenn Morris <rgm@gnu.org>
31885
31886 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
31887
31888 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31889
31890 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
31891 dead key repeat and up events.
31892
31893 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
31894
31895 * image.c (pbm_load): Check image size for monochrome pbm.
31896
31897 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
31898
31899 * xterm.c (XTread_socket): Revert last change.
31900
31901 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
31902
31903 * image.c (pbm_load): Correctly check image size for greyscale pbm.
31904
31905 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
31906
31907 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
31908
31909 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
31910 mixup (YAILOM).
31911
31912 2007-05-07 Andreas Schwab <schwab@suse.de>
31913
31914 * keymap.c (Flookup_key): Fix typo in last change.
31915
31916 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
31917
31918 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
31919 mapping for unibyte strings.
31920
31921 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31922
31923 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
31924 (Fx_popup_dialog) [MAC_OSX]: Likewise.
31925
31926 2007-04-29 Richard Stallman <rms@gnu.org>
31927
31928 * insdel.c (replace_range): For undo, record insertion first.
31929
31930 2007-04-29 Andreas Schwab <schwab@suse.de>
31931
31932 * lisp.h (VECSIZE): Use OFFSETOF.
31933
31934 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
31935
31936 * xdisp.c (try_window_reusing_current_matrix): Fix number of
31937 disabled lines.
31938
31939 2007-04-28 Richard Stallman <rms@gnu.org>
31940
31941 * lread.c (read_escape): In a string, \s is always space.
31942
31943 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
31944
31945 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
31946
31947 * gtkutil.c (xg_update_menubar, create_menus): Create empty
31948 submenu for menu bar items.
31949
31950 See ChangeLog.10 for earlier changes.
31951
31952 ;; Local Variables:
31953 ;; coding: utf-8
31954 ;; End:
31955
31956 Copyright (C) 2007-2011 Free Software Foundation, Inc.
31957
31958 This file is part of GNU Emacs.
31959
31960 GNU Emacs is free software: you can redistribute it and/or modify
31961 it under the terms of the GNU General Public License as published by
31962 the Free Software Foundation, either version 3 of the License, or
31963 (at your option) any later version.
31964
31965 GNU Emacs is distributed in the hope that it will be useful,
31966 but WITHOUT ANY WARRANTY; without even the implied warranty of
31967 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31968 GNU General Public License for more details.
31969
31970 You should have received a copy of the GNU General Public License
31971 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.