* keyboard.c: conform to C89 pointer rules
[bpt/emacs.git] / src / ChangeLog
1 2011-02-06 Paul Eggert <eggert@cs.ucla.edu>
2
3 * xterm.c (x_alloc_nearest_color_1): Avoid unportable int assumption.
4 Emacs assumes two's complement elsewhere, but the assumption is
5 easy to remove here, and this suppresses a warning with Sun C 5.8.
6
7 conform to C89 pointer rules
8
9 * xterm.c (x_draw_fringe_bitmap, handle_one_xevent, x_bitmap_icon):
10 (same_x_server, x_term_init):
11 Change types between char * and unsigned char *, to satisfy C89
12 rules about pointer type compatibility.
13 * doc.c (get_doc_string, Fsnarf_documentation):
14 (Fsubstitute_command_keys): Likewise.
15 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
16 * bitmaps/gray.xbm (gray_bits): Likewise.
17 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
18 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
19 Likewise.
20
21 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
22
23 don't ignore chdir failure
24 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
25 failure and exit.
26 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
27 remaining unchecked chdir calls in this function; some DOS/NT
28 expert needs to fix them.
29 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
30 in this function; some NextStep expert needs to fix them.
31
32 2011-02-05 Glenn Morris <rgm@gnu.org>
33
34 * xfaces.c (Finternal_set_lisp_face_attribute):
35 Try to clarify some error messages. (Bug#2659)
36
37 2011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
38
39 * editfns.c (save_restriction_restore): Don't forget to invalidate the
40 current_column cache (bug#7946).
41
42 2011-02-05 Kenichi Handa <handa@m17n.org>
43
44 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
45
46 * xftfont.c (xftfont_open): Likewise.
47
48 2011-02-05 Andreas Schwab <schwab@linux-m68k.org>
49
50 * window.c (Fselect_window): Add missing return value.
51
52 2011-02-05 Paul Eggert <eggert@cs.ucla.edu>
53
54 xstrcasecmp: conform to C89 pointer rules
55 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
56 to const char *, since they're usually low-level C strings, and
57 this stays compatible with C89 pointer rules. All callers changed.
58
59 * charset.c: conform to C89 pointer rules
60 (define_charset_internal): Switch between char * and unsigned char *.
61
62 * xmenu.c: conform to C89 const rules
63 (xmenu_show, xdialog_show): Declare local var as char *, not
64 const char *, to stay compatible with C89 const rules.
65
66 * xdisp.c: conform to C89 pointer rules
67 (store_mode_line_noprop, display_string, reseat_to_string):
68 (c_string_pos, number_of_chars, message_dolog):
69 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
70 (display_mode_element, display_string):
71 Switch between char * and unsigned char * to stay compatible wth
72 C89 pointer rules.
73
74 * regex.c: conform to C89 pointer rules
75 (re_wctype): Add cast, as C89 does not allow assigning between
76 char * and unsigned char *.
77 (regex_compile): Likewise.
78
79 sync from gnulib to remove HAVE_STDBOOL_H
80 * config.in: Regenerate.
81
82 2011-02-04 Eli Zaretskii <eliz@gnu.org>
83
84 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
85 Replace all uses of lisp.h with $(LISP_H), and all uses of
86 process.h with $(PROCESS_H).
87 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
88 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
89
90 * deps.mk: Update for recent changes: gnutls support, gnulib
91 imports, addition of globals.h.
92
93 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
94 ../lib/ignore-value.h.
95
96 2011-02-03 Paul Eggert <eggert@cs.ucla.edu>
97
98 allow C code to suppress warnings about ignored return values
99
100 We need to go through the code and for each such warning, either
101 fix the code to pay attention to the returned value, or tell GCC
102 that we really do want to ignore the returned value. Here is one
103 example of how to do the latter.
104 * sysdep.c: Include <ignore-value.h>.
105 (sys_subshell): Suppress an undesirable warning about not checking
106 the returned value of 'write', as there's nothing useful one can
107 do with that returned value.
108
109 2011-02-03 Jan Djärv <jan.h.d@swipnet.se>
110
111 * xterm.c (x_connection_closed): Remove all calls that calls
112 XSync (Bug#7949).
113
114 2011-02-01 Eli Zaretskii <eliz@gnu.org>
115
116 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
117 TIFFClientOpen.
118
119 2011-02-01 Jan Djärv <jan.h.d@swipnet.se>
120
121 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
122 (x_session_check_input): Change args and return type so it can be used
123 as argument to add_read_fd. Make static. Remove call to select.
124 Call kbd_buffer_store_event for emacs_event.
125 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
126 (ice_conn_watch_CB): Call add_read_fd.
127
128 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
129 x_session_check_input.
130 (x_session_initialized): Remove definition.
131 (x_initialize): Remove setting of x_session_initialized.
132
133 * xterm.h (x_session_check_input): Remove declaration.
134
135 2011-02-01 Paul Eggert <eggert@cs.ucla.edu>
136
137 format-time-string now supports subsecond time stamp resolution
138 * editfns.c (emacs_nmemftime): Renamed from emacs_memftimeu,
139 for consistency with its new argument and with gnulib nstrftime.
140 All callers changed. New argument NS.
141 (Fformat_time_string): Check that the time argument's microseconds
142 component, if any, is in range; this avoids integer overflow and
143 also nstrftime needs this. Document %N.
144
145 2011-01-31 Andreas Schwab <schwab@linux-m68k.org>
146
147 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
148 of int. All uses adjusted.
149 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
150 (svg_load_image): Remove casts.
151
152 2011-01-31 Chong Yidong <cyd@stupidchicken.com>
153
154 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
155 function definitions for compiling with libpng-1.5.
156 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
157 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
158 (Bug#7908).
159
160 2011-01-31 Eli Zaretskii <eliz@gnu.org>
161
162 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
163
164 * makefile.w32-in (OBJ2): Remove strftime.$(O).
165 ($(BLD)/strftime.$(O)): Remove prerequisites.
166
167 2011-01-31 Paul Eggert <eggert@cs.ucla.edu>
168
169 src/emacs.c now gets version number from configure.in
170 * emacs.c (emacs_version): Set to VERSION so that it
171 is determined automatically from ../configure.in.
172
173 2011-01-31 Jim Meyering <meyering@redhat.com>
174
175 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
176 Use xmalloc rather than malloc.
177
178 2011-01-30 Paul Eggert <eggert@cs.ucla.edu>
179
180 strftime: import from gnulib
181 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
182 * deps.mk (strftime.o): Remove.
183 * editfns.c: Include <strftime.h>, supplied by gnulib.
184 (emacs_strftimeu): Remove decl.
185 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
186 emacs_strftimeu.
187 * config.in: Regenerate.
188 * strftime.c: Remove; we now use strftime from gnulib.
189
190 Use SSDATA when the context wants char *.
191 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
192 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
193 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
194 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
195 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
196 Use SSDATA (not SDATA) when the context of the expression wants
197 char * (not unsigned char *).
198
199 2011-01-30 Jan Djärv <jan.h.d@swipnet.se>
200
201 * .gdbinit: Read global lisp variables as globals.f_V*.
202
203 2011-01-30 Andreas Schwab <schwab@linux-m68k.org>
204
205 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
206 All uses changed.
207 (PROP_SAVE): Likewise.
208
209 2011-01-29 Chong Yidong <cyd@stupidchicken.com>
210
211 * keyboard.c (make_lispy_position): Fix typo in last change
212 (Bug#7935).
213
214 2011-01-29 Eli Zaretskii <eliz@gnu.org>
215
216 * s/ms-w32.h (HAVE_MKTIME): Remove.
217
218 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
219 (GNULIB): New variable.
220 (LIBS): Add $(GNULIB).
221 $(TEMACS): Depend on $(GNULIB).
222 <top-level>: Fix font-lock disrupted by a lone `"'.
223
224 2011-01-29 Jan Djärv <jan.h.d@swipnet.se>
225
226 * nsselect.m (ns_string_from_pasteboard): Get length of string
227 and use make_string instead of build_string (Bug#7934).
228 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
229 instead of stringWithUTF8String (Bug#7934).
230
231 2011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
232
233 * nsfont.m (nsfont_open): Ensure that fonts with inexact
234 descenders would not become one pixel too tall (Bug#7887).
235
236 2011-01-28 Chong Yidong <cyd@stupidchicken.com>
237
238 * keyboard.c (make_lispy_position): For clicks on right fringe or
239 margin, compute text position using the X coordinate relative to
240 the left of the text area (Bug#7839).
241
242 2011-01-28 Kenichi Handa <handa@m17n.org>
243
244 * ftfont.c (ftfont_spec_pattern): Check each extra property
245 value.
246
247 2011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
248
249 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
250
251 2011-01-27 Chong Yidong <cyd@stupidchicken.com>
252
253 * font.c (font_parse_fcname): Undefine a temporary macro.
254
255 2011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
256
257 Let the debugger continue to the normal handler (bug#7825).
258 * eval.c (maybe_call_debugger): Declare before new use.
259 (find_handler_clause): Don't call debugger any more.
260 Ignore Vstack_trace_on_error.
261 Use XCAR/XCDR.
262 (syms_of_eval): Remove Vstack_trace_on_error.
263 (Fsignal): Only modify handlerlist when we know we need to do it.
264 Call the debugger when necessary.
265 * globals.h (Vstack_trace_on_error): Remove.
266
267 2011-01-26 Chong Yidong <cyd@stupidchicken.com>
268
269 * font.c (font_parse_fcname): Rewrite GTK font name parser.
270
271 2011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
272
273 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
274 the buffer's point-max (bug#7876).
275
276 2011-01-25 Chong Yidong <cyd@stupidchicken.com>
277
278 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
279 Remove unused case (Bug#6811).
280
281 2011-01-23 Jan Djärv <jan.h.d@swipnet.se>
282
283 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
284 setFrameTopLeftPoint is constrained.
285
286 2011-01-23 Paul Eggert <eggert@cs.ucla.edu>
287
288 Check return values of some library calls.
289 * emacs.c (main): Check dup result.
290 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
291 (frame_name_fnn_p): Check strtol result.
292
293 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
294 when calling XpmCreatePixmapFromData.
295
296 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
297 * lisp.h (SSDATA): New macro.
298 All uses of (char *) SDATA (x) replaced with SSDATA (x),
299 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
300 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
301 * xsmfns.c (SSDATA): Likewise.
302
303 2011-01-22 Martin Rudalics <rudalics@gmx.at>
304
305 * window.c (select_window): New function.
306 (Fselect_window): Call it.
307 (inhibit_point_swap): Variable deleted.
308 (Fset_window_configuration): Call select_window directly.
309
310 2011-01-22 Jan Djärv <jan.h.d@swipnet.se>
311
312 * nsterm.m (constrainFrameRect): Only constrain the first time called.
313
314 2011-01-21 Jan Djärv <jan.h.d@swipnet.se>
315
316 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
317 screen, not the window screen.
318 (x_set_window_size): Remove constraints.
319 Calculate origin.y only if zooming is 0 and without referring to a
320 screen.
321 (windowWillResize): Don't modify frameSize.
322 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
323 (initFrameFromEmacs): Initialize ns_userRect.
324 (windowShouldZoom): Set zooming to one. Remove all other code.
325 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
326 Zero it after restore.
327 (constrainFrameRect): New method for EmacsWindow.
328 (mouseDragged): Always post NSWindowDidResizeNotification after call to
329 windowWillResize.
330
331 * nsterm.h (ns_output): Add dont_constrain and zooming.
332 (EmacsView): Add ns_userRect.
333
334 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
335 if ns_alternate_modifier is none.
336
337 2011-01-20 Jan Djärv <jan.h.d@swipnet.se>
338
339 * unexmacosx.c: Add comment about include order.
340
341 2011-01-20 Glenn Morris <rgm@gnu.org>
342
343 * minibuf.c (syms_of_minibuf) <read-expression-history>:
344 Give it a doc string.
345 * globals.h: Add Vread_expression_history.
346
347 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
348 Give it a doc string.
349 * globals.h: Add Vkbd_macro_termination_hook.
350
351 2011-01-20 Chong Yidong <cyd@stupidchicken.com>
352
353 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
354
355 2011-01-19 Paul Eggert <eggert@cs.ucla.edu>
356
357 Fix X11 compilation failure.
358 * globals.h (struct emacs_globals): Document f_Vselection_alist.
359 * xselect.c (Vselection_alist): Remove declaration, moving its
360 documentation to globals.h. This fixes a compilation failure
361 induced by the earlier change to globals.h today.
362
363 2011-01-19 Jan Djärv <jan.h.d@swipnet.se>
364
365 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
366
367 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
368 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
369 (ns_input_spi_name, ns_input_spi_arg)
370 (ns_alternate_modifier, ns_right_alternate_modifier)
371 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
372 (ns_right_control_modifier, ns_function_modifier)
373 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
374 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
375 (x_underline_at_descent_line): Remove declaration.
376 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
377
378 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks
379 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
380 (syms_of_nsselect): Remove & from DEFVAR_LISP.
381
382 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
383 Remove declaration.
384
385 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
386 globals.h.
387 (syms_of_nsfont): Remove & from DEFVAR_LISP.
388
389 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
390 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
391 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
392
393 * globals.h (struct emacs_globals): Add f_ns_input_file,
394 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
395 f_ns_input_color, f_ns_input_text, f_ns_working_text,
396 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
397 f_ns_right_alternate_modifier, f_ns_command_modifier,
398 f_ns_right_command_modifier, f_ns_control_modifier,
399 f_ns_right_control_modifier, f_ns_function_modifier,
400 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
401 f_Vns_version_string, f_Vns_sent_selection_hooks,
402 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
403 and corresponding defines.
404
405
406 2011-01-19 Sam Steingold <sds@gnu.org>
407
408 * w32.c (check_windows_init_file): Remove declarations of
409 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
410 * w32fns.c: Fix an error introduced by the previous patch.
411
412 2011-01-19 Tom Tromey <tromey@redhat.com>
413
414 * window.c: Fix error introduced by previous patch.
415
416 2011-01-18 Tom Tromey <tromey@parfait>
417
418 * globals.h: New file.
419 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
420 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
421 (Vwindow_system_version): Remove declaration.
422 * w32term.h (Vw32_enable_palette)
423 (Vx_pixel_size_width_font_regexp): Remove declaration.
424 * w32menu.c (Voverriding_local_map)
425 (Voverriding_local_map_menu_flag): Remove declaration.
426 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
427 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
428 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
429 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
430 (Vw32_phantom_key_code, Vw32_recognize_altgr)
431 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
432 (w32_use_full_screen_buffer): Remove declaration.
433 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
434 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
435 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
436 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
437 (no_redraw_on_reenter, visible_bell): Remove declaration.
438 * sysdep.c (Vsystem_name): Remove declaration.
439 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
440 * menu.h (Vmenu_updating_frame): Remove declaration.
441 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
442 Remove declaration.
443 * lisp.h (Vafter_init_time, Vafter_load_alist)
444 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
445 (Vcompletion_regexp_list, Vcurrent_load_list)
446 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
447 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
448 (Vexec_directory, Vexec_path, Vexec_suffixes)
449 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
450 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
451 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
452 (Vinstallation_directory, Vinvocation_directory)
453 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
454 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
455 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
456 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
457 (Vscalable_fonts_allowed, Vselect_active_regions)
458 (Vshell_file_name, Vstandard_input, Vstandard_output)
459 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
460 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
461 (Vuser_login_name, Vwindow_scroll_functions)
462 (Vwindow_system_version, Vx_no_window_manager)
463 (Vx_resource_class, Vx_resource_name, baud_rate)
464 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
465 (history_delete_duplicates, inhibit_x_resources)
466 (last_nonmenu_event, load_in_progress, max_specpdl_size)
467 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
468 (use_dialog_box, use_file_dialog): Remove declaration. Include
469 globals.h.
470 * keymap.h (Voverriding_local_map)
471 (Voverriding_local_map_menu_flag, meta_prefix_char): Remove
472 declaration.
473 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
474 (Vinput_method_function, Vkey_translation_map)
475 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
476 (do_mouse_tracking, extra_keyboard_modifiers)
477 (num_nonmacro_input_events): Remove declaration.
478 * intervals.h (Vchar_property_alias_alist)
479 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
480 (Vtext_property_default_nonsticky): Remove declaration.
481 * gtkutil.h (x_gtk_file_dialog_help_text)
482 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
483 (x_gtk_whole_detached_tool_bar): Remove declaration.
484 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
485 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
486 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
487 (focus_follows_mouse): Remove declaration.
488 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
489 (Vignore_relative_composition, Votf_script_alist)
490 (Vuse_default_ascent, Vvertical_centering_font_regexp): Remove
491 declaration.
492 * font.h (Vfont_log): Remove declaration.
493 * dosfns.h (Vdos_display_scancodes, Vdos_version)
494 (Vdos_windows_version, dos_codepage, dos_country_code)
495 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
496 (dos_keypad_mode, dos_super_key, dos_timezone_offset): Remove
497 declaration.
498 * disptab.h (Vglyph_table, Vstandard_display_table): Remove
499 declaration.
500 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
501 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
502 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
503 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
504 (inverse_video, mode_line_in_non_selected_windows)
505 (tool_bar_button_relief, tool_bar_max_label_size)
506 (underline_minimum_offset)
507 (unibyte_display_via_language_environment, x_stretch_cursor_p):
508 Remove declaration.
509 * composite.h (Vauto_composition_function)
510 (Vcomposition_function_table): Remove declaration.
511 * commands.h (Vexecuting_kbd_macro)
512 (Vminibuffer_local_completion_map)
513 (Vminibuffer_local_filename_completion_map)
514 (Vminibuffer_local_filename_must_match_map)
515 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
516 (Vminibuffer_local_ns_map, Vthis_command)
517 (Vunread_command_events, cursor_in_echo_area)
518 (last_command_event, last_nonmenu_event, unread_command_char):
519 Remove declaration.
520 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
521 (Vdefault_file_name_coding_system)
522 (Vdefault_process_coding_system, Vfile_name_coding_system)
523 (Vlast_coding_system_used, Vlocale_coding_system)
524 (Vselect_safe_coding_system_function)
525 (Vtranslation_table_for_input, coding_system_require_warning)
526 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
527 (eol_mnemonic_unix, inherit_process_coding_system): Remove
528 declaration.
529 * charset.h (Vcharset_list, Vcurrent_iso639_language): Remove
530 declaration.
531 * character.h (Vauto_fill_chars, Vchar_direction_table)
532 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
533 (Vscript_representative_chars, Vtranslation_table_vector)
534 (Vunicode_category_table): Remove declaration.
535 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
536 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
537 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
538 (inhibit_modification_hooks): Remove declaration.
539 * xterm.c (syms_of_xterm): Update.
540 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
541 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
542 (x_mouse_click_focus_ignore_position)
543 (x_underline_at_descent_line)
544 (x_use_underline_position_properties): Remove.
545 * xsmfns.c (syms_of_xsmfns): Update.
546 (Vx_session_id, Vx_session_previous_id): Remove.
547 * xsettings.c (syms_of_xsettings): Update.
548 (Vxft_settings, use_system_font): Remove.
549 * xselect.c (syms_of_xselect): Update.
550 (Vselection_converter_alist, Vx_lost_selection_functions)
551 (Vx_sent_selection_functions, x_selection_timeout): Remove.
552 * xfns.c (syms_of_xfns): Update.
553 (Vgtk_version_string, Vmotif_version_string)
554 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
555 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
556 (Vx_no_window_manager, Vx_nontext_pointer_shape)
557 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
558 (Vx_sensitive_text_pointer_shape)
559 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
560 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
561 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
562 Remove.
563 * xfaces.c (syms_of_xfaces): Update.
564 (Vface_default_stipple, Vface_font_rescale_alist)
565 (Vface_ignored_fonts, Vface_new_frame_defaults)
566 (Vface_remapping_alist, Vfont_list_limit)
567 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
568 * xdisp.c (syms_of_xdisp): Update.
569 (Vauto_resize_tool_bars, Vblink_cursor_alist)
570 (Vdisplay_pixels_per_inch, Vfontification_functions)
571 (Vframe_title_format, Vglobal_mode_string)
572 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
573 (Vicon_title_format, Vinhibit_redisplay)
574 (Vline_number_display_limit, Vline_prefix)
575 (Vmax_mini_window_height, Vmenu_bar_update_hook)
576 (Vmenu_updating_frame, Vmessage_log_max)
577 (Vmouse_autoselect_window, Vnobreak_char_display)
578 (Voverlay_arrow_position, Voverlay_arrow_string)
579 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
580 (Vresize_mini_windows, Vshow_trailing_whitespace)
581 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
582 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
583 (Vwindow_scroll_functions, Vwindow_size_change_functions)
584 (Vwindow_text_change_functions, Vwrap_prefix)
585 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
586 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
587 (highlight_nonselected_windows, hscroll_margin)
588 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
589 (inhibit_menubar_update, inhibit_try_cursor_movement)
590 (inhibit_try_window_id, inhibit_try_window_reusing)
591 (line_number_display_limit_width)
592 (make_cursor_line_fully_visible_p, message_truncate_lines)
593 (mode_line_inverse_video, multiple_frames, overline_margin)
594 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
595 (tool_bar_max_label_size, underline_minimum_offset)
596 (unibyte_display_via_language_environment, x_stretch_cursor_p):
597 Remove.
598 * window.c (syms_of_window): Update.
599 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
600 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
601 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
602 (Vwindow_point_insertion_type, auto_window_vscroll_p)
603 (mode_line_in_non_selected_windows, next_screen_context_lines)
604 (window_min_height, window_min_width): Remove.
605 (scroll_margin): Remove declaration.
606 * w32term.c (syms_of_w32term): Update.
607 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
608 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
609 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
610 (w32_use_visible_system_caret, x_underline_at_descent_line)
611 (x_use_underline_position_properties): Remove.
612 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
613 Remove declaration.
614 * w32select.c (syms_of_w32select): Update.
615 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
616 * w32proc.c (syms_of_ntproc): Update.
617 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
618 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
619 (Vw32_start_process_inherit_error_mode)
620 (Vw32_start_process_share_console)
621 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
622 (Vsystem_name): Remove declaration.
623 * w32font.c (syms_of_w32font): Update.
624 (Vw32_charset_info_alist): Remove.
625 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
626 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
627 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
628 (Vw32_enable_palette, Vw32_lwindow_modifier)
629 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
630 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
631 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
632 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
633 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
634 (Vx_no_window_manager, Vx_nontext_pointer_shape)
635 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
636 (Vx_sensitive_text_pointer_shape)
637 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
638 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
639 (w32_mouse_move_interval)
640 (w32_pass_extra_mouse_buttons_to_system)
641 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
642 (w32_strict_fontnames, w32_strict_painting): Remove.
643 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
644 (Vw32_recognize_altgr, Vwindow_system_version)
645 (w32_num_mouse_buttons, w32_use_visible_system_caret): Remove
646 declaration.
647 * w32console.c (syms_of_ntterm): Update.
648 (w32_use_full_screen_buffer): Remove.
649 (Vtty_defined_color_alist): Remove declaration.
650 * w16select.c (syms_of_win16select): Update.
651 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
652 * undo.c (syms_of_undo): Update.
653 (Vundo_outer_limit, Vundo_outer_limit_function)
654 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
655 Remove.
656 * textprop.c (syms_of_textprop): Update.
657 (Vchar_property_alias_alist, Vdefault_text_properties)
658 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
659 Remove.
660 * terminal.c (syms_of_terminal): Update.
661 (Vdelete_terminal_functions, Vring_bell_function): Remove.
662 * term.c (syms_of_term): Update.
663 (Vresume_tty_functions, Vsuspend_tty_functions)
664 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
665 Remove.
666 * syntax.c (syms_of_syntax): Update.
667 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
668 (open_paren_in_column_0_is_defun_start)
669 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
670 (words_include_escapes): Remove.
671 * search.c (syms_of_search): Update.
672 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
673 * process.c (syms_of_process): Update.
674 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
675 (delete_exited_processes): Remove.
676 * print.c (syms_of_print): Update.
677 (Vfloat_output_format, Vprint_charset_text_property)
678 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
679 (Vprint_length, Vprint_level, Vprint_number_table)
680 (Vstandard_output, print_escape_multibyte)
681 (print_escape_newlines, print_escape_nonascii, print_quoted):
682 Remove.
683 * msdos.c (syms_of_msdos): Update.
684 (Vdos_unsupported_char_glyph): Remove.
685 (unibyte_display_via_language_environment): Remove declaration.
686 * minibuf.c (syms_of_minibuf): Update.
687 (Vcompletion_regexp_list, Vhistory_add_new_input)
688 (Vhistory_length, Vminibuffer_completing_file_name)
689 (Vminibuffer_completion_confirm)
690 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
691 (Vminibuffer_exit_hook, Vminibuffer_help_form)
692 (Vminibuffer_history_position, Vminibuffer_history_variable)
693 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
694 (Vread_buffer_function, Vread_expression_map)
695 (completion_ignore_case, enable_recursive_minibuffers)
696 (history_delete_duplicates, minibuffer_allow_text_properties)
697 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
698 Remove.
699 * marker.c (syms_of_marker): Update.
700 (byte_debug_flag): Remove.
701 * macros.c (syms_of_macros): Update.
702 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
703 * lread.c (syms_of_lread): Update.
704 (Vafter_load_alist, Vbyte_boolean_vars)
705 (Vbytecomp_version_regexp, Vcurrent_load_list)
706 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
707 (Vload_history, Vload_path, Vload_read_function)
708 (Vload_source_file_function, Vload_suffixes, Vobarray)
709 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
710 (Vread_symbol_positions_list, Vread_with_symbol_positions)
711 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
712 (force_load_messages, load_convert_to_unibyte)
713 (load_dangerous_libraries, load_force_doc_strings)
714 (load_in_progress): Remove.
715 * keymap.c (syms_of_keymap): Update.
716 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
717 (Vminibuffer_local_completion_map)
718 (Vminibuffer_local_filename_completion_map)
719 (Vminibuffer_local_filename_must_match_map)
720 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
721 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
722 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
723 Remove.
724 * keyboard.c (syms_of_keyboard): Update.
725 (Vauto_save_timeout, Vcommand_error_function)
726 (Vcommand_hook_internal, Vdeactivate_mark)
727 (Vdeferred_action_function, Vdeferred_action_list)
728 (Vdisable_point_adjustment, Vdouble_click_time)
729 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
730 (Vfunction_key_map, Vglobal_disable_point_adjustment)
731 (Vhelp_char, Vhelp_event_list, Vhelp_form)
732 (Vinput_method_function, Vinput_method_previous_message)
733 (Vkey_translation_map, Vlast_event_frame)
734 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
735 (Vminibuffer_message_timeout, Voverriding_local_map)
736 (Voverriding_local_map_menu_flag, Vpost_command_hook)
737 (Vpre_command_hook, Vprefix_help_command)
738 (Vsaved_region_selection, Vselect_active_regions)
739 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
740 (Vthis_command, Vthis_command_keys_shift_translated)
741 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
742 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
743 (Vtty_erase_char, Vunread_command_events)
744 (Vunread_input_method_events, Vunread_post_input_method_events)
745 (auto_save_interval, cannot_suspend, do_mouse_tracking)
746 (double_click_fuzz, extra_keyboard_modifiers)
747 (inhibit_local_menu_bar_menus, last_command_event)
748 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
749 (menu_prompting, meta_prefix_char, num_input_keys)
750 (num_nonmacro_input_events, polling_period, unread_command_char):
751 Remove.
752 * insdel.c (syms_of_insdel): Update.
753 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
754 * indent.c (syms_of_indent): Update.
755 (indent_tabs_mode): Remove.
756 * image.c (syms_of_image): Update.
757 (Vimage_cache_eviction_delay, Vimage_types)
758 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
759 (cross_disabled_images): Remove.
760 * fringe.c (syms_of_fringe): Update.
761 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
762 * frame.c (syms_of_frame): Update.
763 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
764 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
765 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
766 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
767 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
768 Remove.
769 * fontset.c (syms_of_fontset): Update.
770 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
771 (Vfontset_alias_alist, Vignore_relative_composition)
772 (Votf_script_alist, Vuse_default_ascent)
773 (Vvertical_centering_font_regexp): Remove.
774 * font.c (syms_of_font): Update.
775 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
776 (Vfont_weight_table, Vfont_width_table): Remove.
777 * fns.c (syms_of_fns): Update.
778 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
779 * filelock.c (syms_of_filelock): Update.
780 (Vtemporary_file_directory): Remove.
781 * fileio.c (syms_of_fileio): Update.
782 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
783 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
784 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
785 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
786 (Vinhibit_file_name_operation, Vset_auto_coding_function)
787 (Vwrite_region_annotate_functions)
788 (Vwrite_region_annotations_so_far)
789 (Vwrite_region_post_annotation_function)
790 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
791 (Vw32_get_true_file_attributes): Remove declaration.
792 * eval.c (syms_of_eval): Update.
793 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
794 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
795 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
796 (debug_on_next_call, debug_on_quit, debugger_may_continue)
797 (max_lisp_eval_depth, max_specpdl_size): Remove.
798 * emacs.c (syms_of_emacs): Update.
799 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
800 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
801 (Vinstallation_directory, Vinvocation_directory)
802 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
803 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
804 (Vsystem_configuration, Vsystem_configuration_options)
805 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
806 (inhibit_x_resources, noninteractive1): Remove.
807 * editfns.c (syms_of_editfns): Update.
808 (Vbuffer_access_fontified_property)
809 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
810 (Voperating_system_release, Vsystem_name, Vuser_full_name)
811 (Vuser_login_name, Vuser_real_login_name): Remove.
812 * dosfns.c (syms_of_dosfns): Update.
813 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
814 (dos_codepage, dos_country_code, dos_decimal_point)
815 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
816 (dos_super_key, dos_timezone_offset): Remove.
817 * doc.c (syms_of_doc): Update.
818 (Vbuild_files, Vdoc_file_name): Remove.
819 * dispnew.c (syms_of_display): Update.
820 (Vglyph_table, Vinitial_window_system)
821 (Vredisplay_preemption_period, Vstandard_display_table)
822 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
823 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
824 * dired.c (syms_of_dired): Update.
825 (Vcompletion_ignored_extensions): Remove.
826 (Vw32_get_true_file_attributes): Remove declaration.
827 * dbusbind.c (syms_of_dbusbind): Update.
828 (Vdbus_debug, Vdbus_registered_buses)
829 (Vdbus_registered_objects_table): Remove.
830 * data.c (syms_of_data): Update.
831 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
832 * composite.c (syms_of_composite): Update.
833 (Vauto_composition_function, Vauto_composition_mode)
834 (Vcompose_chars_after_function, Vcomposition_function_table):
835 Remove.
836 * coding.c (syms_of_coding): Update.
837 (Vcharset_revision_table, Vcoding_category_list)
838 (Vcoding_system_alist, Vcoding_system_for_read)
839 (Vcoding_system_for_write, Vcoding_system_list)
840 (Vdefault_process_coding_system, Venable_character_translation)
841 (Vfile_coding_system_alist, Vlast_code_conversion_error)
842 (Vlast_coding_system_used, Vlatin_extra_code_table)
843 (Vlocale_coding_system, Vnetwork_coding_system_alist)
844 (Vprocess_coding_system_alist)
845 (Vselect_safe_coding_system_function)
846 (Vstandard_translation_table_for_decode)
847 (Vstandard_translation_table_for_encode)
848 (Vtranslation_table_for_input, coding_system_require_warning)
849 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
850 (eol_mnemonic_unix, inherit_process_coding_system)
851 (inhibit_eol_conversion, inhibit_iso_escape_detection)
852 (inhibit_null_byte_detection): Remove.
853 * cmds.c (syms_of_cmds): Update.
854 (Vpost_self_insert_hook): Remove.
855 * charset.c (syms_of_charset): Update.
856 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
857 (inhibit_load_charset_map): Remove.
858 * character.c (syms_of_character): Update.
859 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
860 (Vchar_width_table, Vprintable_chars)
861 (Vscript_representative_chars, Vtranslation_table_vector)
862 (Vunicode_category_table): Remove.
863 * ccl.c (syms_of_ccl): Update.
864 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
865 (Vtranslation_hash_table_vector): Remove.
866 * category.c (syms_of_category): Update.
867 (Vword_combining_categories, Vword_separating_categories): Remove.
868 * callproc.c (syms_of_callproc): Update.
869 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
870 (Vexec_directory, Vexec_path, Vexec_suffixes)
871 (Vinitial_environment, Vprocess_environment)
872 (Vshared_game_score_directory, Vshell_file_name): Remove.
873 * callint.c (syms_of_callint): Update.
874 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
875 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
876 * bytecode.c (syms_of_bytecode): Update.
877 (Vbyte_code_meter, byte_metering_on): Remove.
878 * buffer.c (syms_of_buffer): Update.
879 (Vafter_change_functions, Vbefore_change_functions)
880 (Vchange_major_mode_hook, Vfirst_change_hook)
881 (Vinhibit_read_only, Vkill_buffer_query_functions)
882 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
883 * alloc.c (syms_of_alloc): Update.
884 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
885 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
886 (cons_cells_consed, floats_consed, garbage_collection_messages)
887 (gc_cons_threshold, gcs_done, intervals_consed)
888 (misc_objects_consed, pure_bytes_used, string_chars_consed)
889 (strings_consed, symbols_consed, vector_cells_consed): Remove.
890
891 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
892 (DEFVAR_INT): Assume global is in `globals'.
893 * alloc.c (globals): Define.
894
895 2011-01-18 Tom Tromey <tromey@redhat.com>
896
897 * image.c (Vimagemagick_render_type): Remove redundant
898 definition.
899
900 2011-01-18 Tom Tromey <tromey@redhat.com>
901
902 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
903 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
904 (redisplay_window): Update.
905 (syms_of_xdisp): Update.
906
907 2011-01-18 Tom Tromey <tromey@redhat.com>
908
909 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
910 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
911 Declare.
912 * gtkutil.c (xg_uses_old_file_dialog):
913 (xg_get_file_with_chooser):
914 (xg_tool_bar_detach_callback): Don't redeclare globals.
915
916 2011-01-18 Tom Tromey <tromey@redhat.com>
917
918 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
919 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
920
921 2011-01-18 Paul Eggert <eggert@cs.ucla.edu>
922
923 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
924 defined __GNUC__. ../configure now checks for this GCC feature,
925 which is now also supported by IBM and Oracle compilers.
926 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
927 since Solaris malloc returns mult-of-8.
928
929 2011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
930
931 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
932
933 2011-01-17 Paul Eggert <eggert@cs.ucla.edu>
934
935 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
936 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
937 * data.c (Fnumber_to_string): Use it.
938 * print.c (float_to_string, print_object): Likewise.
939
940 Include <unistd.h> unilaterally.
941 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
942 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
943 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
944 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
945 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
946 * xterm.c:
947 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
948 unistd.h is always present now, possibly supplied by gnulib.
949
950 * mktime.c: Remove; moving to ../lib.
951
952 Use gnulib's mktime module.
953 * deps.mk (mktime.o): Remove rule.
954
955 Use gnulib's ftoastr module.
956 * print.c: Include ftoastr.h.
957 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
958 Remove; no longer needed.
959 (float_to_string): Use dtoastr rather than rolling our own code,
960 which had an off-by-one bug on non-IEEE hosts.
961
962 Automate syncing from gnulib.
963 * Makefile.in (lib): New macro.
964 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
965 ($(lib)/libgnu.a): New rule.
966 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
967
968 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
969 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
970 so change the type of 'ign' to unsigned int from int.
971
972 * regex.c (analyse_first): Remove unreachable 'continue' statement.
973
974 * xterm.h (struct x_display_info): Remove stray semicolon.
975 The extra semicolon didn't conform to the C standard.
976 Problem reported by Sun cc.
977
978 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
979 These changes make compilation easier to follow with Sun cc.
980 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
981 EMACS_INT values without provoking overflow diagnostics.
982 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
983 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
984 diagnostic with signed left shift.
985
986 * fileio.c (make_temp_name): Remove unreachable code.
987
988 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
989 Previously it was marked by preceding it with "return;", but
990 Sun cc complains about this.
991
992 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
993 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
994 which fixed Bug#2370. Caught by Sun cc.
995
996 2011-01-15 Martin Rudalics <rudalics@gmx.at>
997
998 * window.c (inhibit_point_swap): New variable.
999 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
1000 point this time.
1001 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
1002 of setting selected_window to nil (Bug#7728).
1003
1004 2011-01-11 Tassilo Horn <tassilo@member.fsf.org>
1005
1006 * image.c (imagemagick_load_image, Finit_image_library):
1007 Free intermediate image after creating a MagickWand from it.
1008 Terminate MagickWand environment after image loading.
1009
1010 2011-01-10 Michael Albinus <michael.albinus@gmx.de>
1011
1012 * dbusbind.c (Fdbus_register_service): Raise an error in case of
1013 unexpected return values.
1014 (Fdbus_register_method): Remove connection initialization.
1015
1016 2011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
1017
1018 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
1019 used by Fdbus_register_service.
1020 (QCdbus_request_name_replace_existing): Likewise.
1021 (QCdbus_request_name_do_not_queue): Likewise.
1022 (QCdbus_request_name_reply_primary_owner): Likewise.
1023 (QCdbus_request_name_reply_in_queue): Likewise.
1024 (QCdbus_request_name_reply_exists): Likewise.
1025 (QCdbus_request_name_reply_already_owner): Likewise.
1026 (Fdbus_register_service): New function.
1027 (Fdbus_register_method): Use Fdbus_register_service to do the name
1028 registration.
1029 (syms_of_dbusbind): Add symbols dbus-register-service,
1030 :allow-replacement, :replace-existing, :do-not-queue,
1031 :primary-owner, :existing, :in-queue and :already-owner.
1032
1033 2011-01-09 Chong Yidong <cyd@stupidchicken.com>
1034
1035 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
1036 when removing extra buttons.
1037
1038 2011-01-08 Chong Yidong <cyd@stupidchicken.com>
1039
1040 * fns.c (Fyes_or_no_p): Doc fix.
1041
1042 2011-01-08 Andreas Schwab <schwab@linux-m68k.org>
1043
1044 * fns.c (Fyes_or_no_p): Add usage.
1045
1046 2011-01-08 Glenn Morris <rgm@gnu.org>
1047
1048 * makefile.w32-in ($(EMACS)):
1049 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
1050
1051 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
1052 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
1053
1054 2011-01-07 Andreas Schwab <schwab@linux-m68k.org>
1055
1056 * image.c (imagemagick_load_image): Fix some resource leaks and
1057 error handling.
1058
1059 2011-01-07 Chong Yidong <cyd@stupidchicken.com>
1060
1061 * fns.c (Fyes_or_no_p): Accept format string args.
1062
1063 2011-01-07 Glenn Morris <rgm@gnu.org>
1064
1065 * emacs.c (no_site_lisp): New int.
1066 (USAGE1): Add --no-site-lisp, mention -Q uses it.
1067 (main): Set no_site_lisp.
1068 (standard_args): Add --no-site-lisp.
1069 * lisp.h (no_site_lisp): New int.
1070 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
1071 directories to Vload_path.
1072
1073 2011-01-05 Andreas Schwab <schwab@linux-m68k.org>
1074
1075 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
1076
1077 2011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
1078
1079 * dbusbind.c (Fdbus_register_method): Add optional parameter
1080 dont_register_service. Updated docstring accordingly.
1081
1082 2011-01-04 Glenn Morris <rgm@gnu.org>
1083
1084 * emacs.c (emacs_copyright): Update short copyright year to 2011.
1085
1086 2011-01-03 Eli Zaretskii <eliz@gnu.org>
1087
1088 * image.c (png_jmpbuf): Remove definition.
1089 (my_png_error, png_load): Don't use png_jmpbuf.
1090
1091 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1092
1093 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
1094
1095 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1096
1097 * image.c <Qlibpng_version>: New variable.
1098 (syms_of_image): Intern and staticpro it. Set its value to the
1099 version of PNG library we were compiled with.
1100 (my_png_error, png_load): Avoid GCC warnings about direct access
1101 to png_ptr->jmpbuf. (Bug#7716)
1102 (png_jmpbuf): New macro.
1103 (my_png_error, png_load): Use it instead of #ifdef'ing according
1104 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
1105
1106 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
1107
1108 * .gdbinit (xgetptr): Fix the union+lsb case.
1109 (xbacktrace): Fix the union case.
1110
1111 2011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
1112
1113 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
1114 different from selected-window's.
1115
1116 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1117
1118 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
1119 equivalent of a menu item when the key sequence is given by the
1120 `:keys' attribute. (Bug#7662)
1121
1122 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
1123 the basic faces are supported.
1124
1125 2011-01-02 Jan Djärv <jan.h.d@swipnet.se>
1126
1127 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
1128
1129 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1130
1131 * xdisp.c (Fformat_mode_line): Fix last change.
1132
1133 2011-01-02 Chong Yidong <cyd@stupidchicken.com>
1134
1135 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
1136 faces (Bug#7587).
1137
1138 2011-01-02 Eli Zaretskii <eliz@gnu.org>
1139
1140 * fileio.c (Fexpand_file_name): One more doc fix.
1141
1142 2011-01-01 Chong Yidong <cyd@stupidchicken.com>
1143
1144 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
1145 image or label in the container.
1146 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
1147 (xg_show_toolbar_item): Function deleted.
1148 (xg_tool_item_stale_p): New function.
1149 (update_frame_tool_bar): Calculate tool-bar style once per call.
1150 Instead of hiding text labels, omit them. Don't use
1151 xg_show_toolbar_item; create new GtkToolItems from scratch if
1152 necessary, instead of trying to re-use them. This avoids an
1153 annoying animation when changing tool-bars.
1154
1155 2010-12-31 Jan Djärv <jan.h.d@swipnet.se>
1156
1157 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
1158 title and buffer filename only for RepresentedFilename.
1159 Handle bad UTF-8 in buffer name (Bug#7517).
1160
1161 2010-12-30 Jan Djärv <jan.h.d@swipnet.se>
1162
1163 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
1164
1165 * nsfns.m (ns_set_name_iconic): Remove.
1166 (ns_set_name_internal): New function (Bug#7517).
1167 (Vicon_title_format): Extern declare.
1168 (ns_set_name): Call ns_set_name_internal.
1169 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
1170 (x_implicitly_set_name): Ditto.
1171 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
1172 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
1173
1174 2010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
1175
1176 * window.c (syms_of_window): Add missing defsubr for
1177 window-use-time.
1178
1179 2010-12-28 Andreas Schwab <schwab@linux-m68k.org>
1180
1181 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
1182 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
1183
1184 2010-12-27 Andreas Schwab <schwab@linux-m68k.org>
1185
1186 * buffer.c: Remove unused declarations.
1187 * buffer.h: Likewise.
1188 * charset.h: Likewise.
1189 * composite.h: Likewise.
1190 * dispextern.h: Likewise.
1191 * dispnew.c: Likewise.
1192 * font.h: Likewise.
1193 * fontset.c: Likewise.
1194 * fontset.h: Likewise.
1195 * intervals.h: Likewise.
1196 * keymap.h: Likewise.
1197 * lisp.h: Likewise.
1198 * syntax.c: Likewise.
1199 * syntax.h: Likewise.
1200 * termhooks.h: Likewise.
1201 * window.h: Likewise.
1202 * xsettings.h: Likewise.
1203 * xterm.c: Likewise.
1204 * xterm.h: Likewise.
1205
1206 * chartab.c (sub_char_table_ref): Make static.
1207 * dispnew.c (line_hash_code, required_matrix_height)
1208 (required_matrix_width): Likewise.
1209 * eval.c (interactive_p, apply_lambda): Likewise.
1210 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
1211 Likewise.
1212 * font.c (QCadstyle, QCregistry, font_make_spec)
1213 (font_parse_fcname, font_encode_char, font_at): Likewise.
1214 * frame.c (x_frame_get_arg): Likewise.
1215 * keymap.c (get_keyelt): Likewise.
1216 * lread.c (read_filtered_event): Likewise.
1217 * print.c (write_string_1): Likewise.
1218 * window.c (delete_window, window_height, window_width)
1219 (foreach_window): Likewise.
1220 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
1221 * xterm.c (x_scroll_bar_clear, xembed_set_info)
1222 (xembed_send_message): Likewise.
1223
1224 * eval.c (run_hook_list_with_args): Delete.
1225 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
1226 * terminal.c (get_terminal_param): Likewise.
1227 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
1228
1229 * scroll.c: Fix comment.
1230
1231 * dispnew.c (add_window_display_history)
1232 (add_frame_display_history, glyph_row_slice_p)
1233 (find_glyph_row_slice, flush_stdout)
1234 (check_matrix_pointer_lossage, matrix_row)
1235 (check_matrix_invariants, check_window_matrix_pointers)
1236 (check_matrix_pointers, window_to_frame_vpos)
1237 (window_to_frame_hpos): Prototize.
1238 * textprop.c (erase_properties): Likewise.
1239
1240 2010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
1241
1242 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
1243 (print_preprocess): Fix handling of uninterned symbols in last change.
1244
1245 * print.c (print, print_preprocess, print_object): Use a hash table
1246 rather than a linear table for Vprint_number_table.
1247
1248 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
1249
1250 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
1251
1252 2010-12-20 Chong Yidong <cyd@stupidchicken.com>
1253
1254 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
1255 (parse_tool_bar_item): Use it to obtain image separators for
1256 displays not using native tool-bar separators.
1257
1258 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
1259 specially, since this is now done in parse_tool_bar_item.
1260
1261 2010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
1262
1263 Minor clean up to silence some gcc warnings.
1264 * window.c (Fset_window_buffer):
1265 * xterm.c (x_set_frame_alpha): Restructure code to silence
1266 compiler warning.
1267 (handle_one_xevent): Remove unused var `p'.
1268 (do_ewmh_fullscreen): Remove unused var `lval'.
1269 (xembed_set_info): Remove unused var `atom'.
1270 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
1271 compiler warning.
1272 * fontset.c (fontset_id_valid_p, dump_fontset):
1273 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
1274 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
1275 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
1276 label only when it's used.
1277 * image.c (x_create_bitmap_from_xpm_data):
1278 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
1279 its callers.
1280 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
1281 `consumed_chars'.
1282 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
1283 (decode_coding_emacs_mule): Remove unused label `retry'.
1284 (detect_eol): Add parens to silence compiler warning.
1285 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
1286 it's used to silence the compiler.
1287 (make_number): Modernize k&r declaration.
1288 (mark_char_table): Add parens to silence compiler warning.
1289
1290 2010-12-17 Chong Yidong <cyd@stupidchicken.com>
1291
1292 * keyboard.c (parse_tool_bar_item): Allow menu separators in
1293 tool-bar maps.
1294 (menu_separator_name_p): New function, from gtkutil.c.
1295 (separator_names): Move from gtkutil.c.
1296
1297 * keyboard.h (menu_separator_name_p): Add prototype.
1298
1299 * gtkutil.c (XG_BIN_CHILD): New macro.
1300 (xg_get_menu_item_label, xg_update_menubar)
1301 (xg_update_menu_item, xg_tool_bar_menu_proxy)
1302 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
1303 (separator_names, xg_separator_p): Move to keyboard.c.
1304 (create_menus, xg_update_submenu, update_frame_tool_bar):
1305 Use menu_separator_name_p.
1306
1307 * nsmenu.m (name_is_separator): Function deleted.
1308 (addItemWithWidgetValue): Use menu_separator_name_p.
1309
1310 * w32menu.c (name_is_separator): Function deleted.
1311 (add_menu_item): Use menu_separator_name_p.
1312
1313 2010-12-16 Jan Djärv <jan.h.d@swipnet.se>
1314
1315 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
1316 same as the background, use the face forground as cursor.
1317
1318 2010-12-13 Eli Zaretskii <eliz@gnu.org>
1319
1320 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
1321
1322 2010-12-13 Eli Zaretskii <eliz@gnu.org>
1323
1324 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
1325 (face_before_or_after_it_pos, next_element_from_string)
1326 (next_element_from_c_string, produce_stretch_glyph): Remove unused
1327 calculations of maximum string length before calling
1328 string_char_and_length and STRING_CHAR_AND_LENGTH.
1329 (string_char_and_length): Update commentary: MAXLEN is no longer
1330 needed.
1331
1332 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
1333
1334 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
1335 as (Qsave_session arg).
1336
1337 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
1338 (smc_die_CB): Make an event with arg Qt.
1339 (Fhandle_save_session): If event has Qt as argument,
1340 call Fkill_emacs (Bug#7552).
1341
1342 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1343
1344 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
1345
1346 2010-12-13 Jan Djärv <jan.h.d@swipnet.se>
1347
1348 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
1349
1350 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1351
1352 * dispextern.h (struct it): New member overlay_strings_charpos.
1353
1354 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
1355 charpos where we computed n_overlay_strings.
1356 (next_overlay_string): Load overlay strings at recorded position,
1357 which may not be the same as the iterator's charpos (Bug#7016).
1358
1359 2010-12-13 Chong Yidong <cyd@stupidchicken.com>
1360
1361 * xdisp.c (try_scrolling): Avoid infloop if the first line is
1362 obscured due to a vscroll (Bug#7537).
1363
1364 2010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
1365
1366 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
1367
1368 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
1369 Use FRAME_TOOLBAR_HEIGHT.
1370 (x_set_offset): Handle XNegative and YNegative in
1371 f->size_hint_flags (Bug#7510).
1372
1373 2010-12-11 Eli Zaretskii <eliz@gnu.org>
1374
1375 * w32fns.c (Fx_show_tip): Call try_window with last argument
1376 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
1377 solved. Round up the tip height to an integral multiple of the
1378 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
1379 (Bug#7398)
1380
1381 2010-12-08 Glenn Morris <rgm@gnu.org>
1382
1383 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
1384
1385 2010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1386
1387 * xml.c (parse_region): Ignore blank HTML nodes.
1388 (make_dom): Return CDATA sections (like <style>foo</style>) as
1389 text nodes.
1390
1391 2010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1392
1393 * lread.c (read1): Allow newstyle unquote outside of backquote.
1394 Disallow old-style backquotes inside new-style backquotes.
1395 Don't count unquotes to figure out when we're "syntactically inside
1396 but semantically outside of a backquote" any more.
1397 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
1398 to all contexts.
1399
1400 2010-12-05 Chong Yidong <cyd@stupidchicken.com>
1401
1402 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
1403
1404 2010-12-04 Andreas Schwab <schwab@linux-m68k.org>
1405
1406 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
1407 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
1408 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
1409
1410 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
1411
1412 * lisp.h (union Lisp_Object): Explicitly declare signedness of
1413 bit-field.
1414 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
1415 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
1416 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
1417 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
1418 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
1419 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
1420 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
1421 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
1422 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
1423 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
1424 * m/hp800.h: Remove file.
1425 * m/mips.h: Remove file.
1426
1427 2010-12-03 Jan Djärv <jan.h.d@swipnet.se>
1428
1429 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
1430 with cursor color and draw a rectangle around the image (Bug#7412).
1431
1432 2010-12-03 Andreas Schwab <schwab@linux-m68k.org>
1433
1434 * frame.c (x_set_font): Remove unused variable.
1435
1436 2010-12-02 Jan Djärv <jan.h.d@swipnet.se>
1437
1438 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
1439
1440 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
1441 drawing text under filled box cursor (Bug#7479).
1442
1443 2010-11-27 Kenichi Handa <handa@m17n.org>
1444
1445 * charset.c (emacs_mule_charset): Make it an array of charset ID;
1446 i.e. integer.
1447 (Fdefine_charset_internal): Adjust for the above change.
1448 (init_charset_once): Likewise.
1449
1450 * charset.h (emacs_mule_charset): Adjust the prototype.
1451 Delete duplicated extern.
1452
1453 * coding.c (emacs_mule_char): Adjust for the change of
1454 emacs_mule_charset.
1455
1456 * lread.c (read_emacs_mule_char): Adjust for the change of
1457 emacs_mule_charset.
1458
1459 2010-11-27 Eli Zaretskii <eliz@gnu.org>
1460
1461 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
1462 of w32api >= 3.15. (Bug#6989) (Bug#7452)
1463
1464 2010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1465
1466 * alloc.c (mark_terminals): Ensure that the image cache is marked
1467 even if the terminal object was marked earlier (Bug#6301).
1468
1469 2010-11-21 Chong Yidong <cyd@stupidchicken.com>
1470
1471 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
1472
1473 2010-11-27 Jan Djärv <jan.h.d@swipnet.se>
1474
1475 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
1476 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
1477 Use 23 as menubar height if 0. (Bug#7425).
1478
1479 2010-11-26 Eli Zaretskii <eliz@gnu.org>
1480
1481 * xdisp.c (set_message_1): Force paragraph direction in echo area
1482 be left-to-right.
1483
1484 * keyboard.c (make_lispy_position): Put a meaningful value in yret
1485 when the click is on the header or mode line.
1486
1487 2010-11-25 Eli Zaretskii <eliz@gnu.org>
1488
1489 * xdisp.c (set_cursor_from_row): Don't forget to consider the
1490 `cursor' property of the first character in overlay strings.
1491 (Bug#7474) (Bug#7481)
1492
1493 2010-11-24 Jan Djärv <jan.h.d@swipnet.se>
1494
1495 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
1496 (NSLeftAlternateKeyMask): New defines.
1497 (keyDown): Parse left and right keys separately (Bug#7458).
1498 Compare Left key masks exactly (Bug#7458).
1499
1500 2010-11-23 Eli Zaretskii <eliz@gnu.org>
1501
1502 * intervals.c (temp_set_point_both): Define before calling, to
1503 avoid GCC warnings.
1504
1505 2010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
1506
1507 * nsmenu.m: Use #include <config.h> instead of "config.h".
1508
1509 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
1510 (last_glyphless_glyph_face_id. last_glyphless_glyph_merged_face_id):
1511 Move declarations ...
1512 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
1513 (last_glyphless_glyph_face_id. last_glyphless_glyph_merged_face_id):
1514 ... here.
1515
1516 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
1517 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
1518 (gdb_pvec_type):
1519 * print.c (print_output_debug_flag):
1520 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
1521 (safe_debug_print): New declaration.
1522
1523 * xterm.c:
1524 * systty.h:
1525 * sound.c: Include <sys/ioctl.h> unconditionally.
1526
1527 2010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1528
1529 * alloc.c (mark_maybe_object): Return early if given a Lisp
1530 integer (Bug#6301).
1531
1532 2010-11-21 Ken Brown <kbrown@cornell.edu>
1533
1534 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
1535
1536 2010-11-21 Jan Djärv <jan.h.d@swipnet.se>
1537
1538 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
1539 Define (Bug#7458).
1540 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
1541 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
1542 NSRightControlKeyMask also (Bug#7458).
1543 (keyDown): Ditto (Bug#7458).
1544 (syms_of_nsterm): Defvar ns-right-command-modifier and
1545 ns-right-control-modifier (Bug#7458).
1546
1547 2010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
1548
1549 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
1550 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
1551
1552 * intervals.h (temp_set_point, temp_set_point_both):
1553 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
1554
1555 2010-11-20 Ken Brown <kbrown@cornell.edu>
1556
1557 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
1558
1559 2010-11-20 Eli Zaretskii <eliz@gnu.org>
1560
1561 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
1562 \xNNNNNN for hex-code display of glyphless characters.
1563
1564 2010-11-20 Jan Djärv <jan.h.d@swipnet.se>
1565
1566 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
1567 Set important to ! vert_only.
1568 (xg_show_toolbar_item): Don't show label horizontally if
1569 tool item isn't important.
1570 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
1571 xg_make_tool_item, or update important on existing tool item.
1572
1573 * keyboard.c (QCvert_only): New variable.
1574 (parse_tool_bar_item): Check for QCvert_only.
1575 (syms_of_keyboard): Initialize QCvert_only.
1576
1577 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
1578
1579 2010-11-20 Eli Zaretskii <eliz@gnu.org>
1580
1581 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
1582 same in-line.
1583
1584 2010-11-20 Andreas Schwab <schwab@linux-m68k.org>
1585
1586 * xfaces.c (lookup_face): Make static.
1587 * dispnew.c (copy_row_except_pointers): Likewise.
1588 * syntax.c (dec_bytepos): Likewise.
1589 (inc_bytepos): Remove.
1590 * dispextern.h (lookup_face): Remove declaration.
1591
1592 2010-11-19 Eli Zaretskii <eliz@gnu.org>
1593
1594 * xdisp.c (set_cursor_from_row): Display cursor after all the
1595 glyphs that come from an overlay. Don't overstep the last glyph
1596 when skipping glyphs from an overlay. (Bug#6687)
1597
1598 2010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
1599
1600 * alloc.c (refill_memory_reserve): Move declaration ...
1601 * lisp.h (refill_memory_reserve): ... here.
1602
1603 * strftime.c (_strftime_copytm): Add declaration.
1604
1605 * callproc.c (syms_of_callproc): Use intern_c_string.
1606
1607 Move declarations from .c files to .h files.
1608 * process.c (timers_run):
1609 * minibuf.c (quit_char):
1610 * lread.c (read_emacs_mule_char):
1611 * keyboard.c (minibuf_level, message_enable_multibyte)
1612 (pending_malloc_warning):
1613 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
1614 (Qonly): Remove declarations.
1615 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
1616 (Vselect_active_regions):
1617 * keyboard.h (timers_run): Add declarations.
1618
1619 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
1620 (tm_diff): Convert definitions to standard C.
1621 (extra_args_spec_iso): Remove, unused.
1622
1623 2010-11-18 Jan Djärv <jan.h.d@swipnet.se>
1624
1625 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
1626
1627 * config.in (HAVE_G_TYPE_INIT): New symbol.
1628
1629 2010-11-18 Eli Zaretskii <eliz@gnu.org>
1630
1631 * lread.c (Fload): Mention `load-in-progress' and
1632 `load-file-name'. (Bug#7346)
1633
1634 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
1635 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
1636 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
1637 subprocesses. Use buffer_free only ifdef subprocesses.
1638
1639 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
1640 the subprocesses version, not in the non-subprocesses one.
1641
1642 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
1643
1644 2010-11-17 Eli Zaretskii <eliz@gnu.org>
1645
1646 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
1647 lines on text-mode terminals. (bug#7417)
1648
1649 2010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1650
1651 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
1652 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
1653
1654 2010-11-17 Kenichi Handa <handa@m17n.org>
1655
1656 * coding.c (Fset_terminal_coding_system_internal): Fix previous
1657 change (set charset-ID list instead of charset-symbol list).
1658
1659 2010-11-16 Chong Yidong <cyd@stupidchicken.com>
1660
1661 * keyboard.c (make_lispy_position): For text area clicks, record Y
1662 pixel position relative to the text area, excluding header line.
1663 Also change X and Y to Lisp_Objects, not pointers; don't return
1664 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
1665 buffer_posn_from_coords counting from the start of the text area.
1666 (Fposn_at_x_y, make_lispy_event): Callers changed.
1667
1668 * window.c (coordinates_in_window): Change X and Y to ints rather
1669 than pointers; don't return coordinates via pointers.
1670 (struct check_window_data): Change X and Y from pointers to ints.
1671 (window_from_coordinates): Remove args WX and WY; don't return
1672 coordinates via pointers.
1673 (Fcoordinates_in_window_p, window_from_coordinates):
1674 (check_window_containing, Fwindow_at): Callers changed.
1675 (window_relative_x_coord): New function.
1676
1677 * window.h (window_from_coordinates, window_relative_x_coord):
1678 Update prototypes.
1679
1680 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
1681 the start of the text area.
1682
1683 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
1684 call. Use window_relative_x_coord.
1685 (note_mouse_highlight): Change window_from_coordinates call.
1686
1687 * w32term.c (w32_read_socket):
1688 * msdos.c (dos_rawgetc):
1689 * xterm.c (handle_one_xevent): Likewise.
1690
1691 2010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
1692
1693 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
1694 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
1695 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
1696 Convert definitions to standard C.
1697 * regex.c: Do not include <stdlib.h>, config.h does it.
1698 Include unistd.h.
1699 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
1700 (regerror, regfree): Convert definitions to standard C.
1701 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
1702 (__mktime_internal): Convert definitions to standard C.
1703
1704 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
1705
1706 * w32proc.c:
1707 * w32inevt.c:
1708 * w32heap.c:
1709 * w32.c: Remove config.h include guards.
1710
1711 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
1712 No code changes.
1713
1714 * process.c: Include <sys/ioctl.h> unconditionally,
1715 keyboard.c already does it.
1716
1717 * keyboard.c (pending_malloc_warning): Add const to match
1718 definition in alloc.c.
1719 (Fset_input_interrupt_mode): Simplify #ifdefs.
1720
1721 2010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
1722
1723 Clean up systty.h macros.
1724 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
1725 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
1726 definition in all uses.
1727 (EMACS_TTY_TABS_OK): Remove, it has a single user.
1728 * sysdep.c (discard_tty_input, child_setup_tty)
1729 (init_sys_modes, tabs_safe_p, reset_sys_modes):
1730 * emacs.c (shut_down_emacs):
1731 * callproc.c (child_setup):
1732 * term.c (dissociate_if_controlling_tty): Inline removed macros.
1733
1734 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
1735
1736 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
1737
1738 * w32fns.c (Fx_create_frame):
1739 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
1740 resource here; it's now done at startup.
1741
1742 2010-11-14 Jan Djärv <jan.h.d@swipnet.se>
1743
1744 * xterm.c (set_wm_state): Add Qnil to final cons.
1745
1746 * xselect.c (x_send_client_event): Remove unused variables cons and
1747 size.
1748
1749 2010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1750
1751 * keyboard.c (modify_event_symbol) : Add const to array elements of
1752 arg NAME_TABLE.
1753 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
1754 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
1755 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
1756 Add const to array elements.
1757 (scroll_bar_parts): Make static. Fix position of const.
1758
1759 * w32fns.c (lispy_function_keys): Add const to extern.
1760
1761 * w32inevt.c (lispy_function_keys): Likewise.
1762
1763 2010-11-14 Chong Yidong <cyd@stupidchicken.com>
1764
1765 * xfns.c (Fx_create_frame): Don't check for the cursorColor
1766 resource here; it's now done at startup.
1767
1768 2010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
1769
1770 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
1771
1772 Fix compilation on Solaris.
1773 * sysdep.c: Do not #include <term.h>.
1774 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
1775
1776 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
1777
1778 2010-11-13 Jan Djärv <jan.h.d@swipnet.se>
1779
1780 * xterm.c (set_wm_state): Don't put Atom in cons, call
1781 make_fixnum_or_float on them first.
1782 (x_term_init): Initialize Xatom_net_supporting_wm_check and
1783 Xatom_net_supported correctly.
1784
1785 * xselect.c (x_send_client_event): Move CHECK_STRING ...
1786 (Fx_send_client_event): to here.
1787
1788 2010-11-13 Martin Rudalics <rudalics@gmx.at>
1789
1790 * window.c (Fwindow_use_time): New function.
1791
1792 2010-11-13 Eli Zaretskii <eliz@gnu.org>
1793
1794 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
1795 zero-width characters.
1796
1797 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
1798
1799 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
1800 box before drawing the glyphs inside it.
1801
1802 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
1803
1804 * dispextern.h (enum glyphless_display_method):
1805 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
1806 All users changed.
1807
1808 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
1809 Fix comments.
1810 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
1811 whitespace in "[]", to simulate a box. Don't use uninitialized
1812 variable `width'.
1813
1814 2010-11-11 Julien Danjou <julien@danjou.info>
1815
1816 * xsettings.c (init_xsettings): Use already fetch atoms.
1817
1818 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
1819 from dpyinfo.
1820
1821 * xselect.c (Fx_send_client_event): Split and create
1822 x_send_client_event.
1823
1824 * lisp.h: Do not EXFUN Fx_send_client_event.
1825
1826 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
1827 from dpyinfo.
1828 (wm_supports): Use atoms from dpyinfo.
1829 (do_ewmh_fullscreen): Use atoms from dpyinfo.
1830 (x_ewmh_activate_frame): Use atoms from dpyinfo.
1831 (xembed_set_info): Use atoms from dpyinfo.
1832 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
1833 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
1834 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
1835 Get all atoms in one round-trip.
1836 (set_wm_state): Use x_send_client_event rather than
1837 Fx_send_client_event, using Atom directly.
1838 (x_ewmh_activate_frame): Ditto.
1839 (x_set_sticky): Pass atoms to set_wm_state.
1840 (do_ewmh_fullscreen): Ditto.
1841
1842
1843 * xterm.h (x_display_info): Add Xatom_net_supported,
1844 Xatom_net_supporting_wm_check, Xatom_net_active_window,
1845 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
1846
1847 * xfns.c (Fx_show_tip): Fix typo in docstring.
1848
1849 2010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1850
1851 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
1852 it's not negative.
1853
1854 2010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1855
1856 * font.c (font_filter_properties): Add const to array elements of
1857 properties args.
1858
1859 * font.h (font_filter_properties): Likewise.
1860
1861 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
1862 elements.
1863
1864 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
1865
1866 2010-11-10 Michael Albinus <michael.albinus@gmx.de>
1867
1868 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
1869 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
1870 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
1871 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
1872 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
1873
1874 2010-11-10 Glenn Morris <rgm@gnu.org>
1875
1876 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
1877
1878 2010-11-09 Eli Zaretskii <eliz@gnu.org>
1879
1880 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
1881
1882 2010-11-09 Chong Yidong <cyd@stupidchicken.com>
1883
1884 * image.c (free_image): Don't garbage the frame here, since this
1885 function can be called while redisplaying (Bug#7210).
1886 (uncache_image): Garbage the frame here (Bug#6426).
1887
1888 2010-11-09 Jan Djärv <jan.h.d@swipnet.se>
1889
1890 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
1891 parent is the root window. Check this after traversing window tree.
1892
1893 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
1894
1895 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
1896
1897 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
1898 before traversing window tree (Bug#5721).
1899
1900 2010-11-07 Jan Djärv <jan.h.d@swipnet.se>
1901
1902 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
1903
1904 * xdisp.c (note_mode_line_or_margin_highlight):
1905 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
1906
1907 2010-11-06 Eli Zaretskii <eliz@gnu.org>
1908
1909 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
1910 adjust width of tool-tip frame to the width of text, excluding the
1911 stretch glyph at the beginning of R2L glyph rows.
1912
1913 * w32fns.c (Fx_show_tip): Likewise.
1914
1915 2010-11-06 Jan Djärv <jan.h.d@swipnet.se>
1916
1917 * nsfont.m: Include termchar for new mouse-highlight.
1918 (nsfont_draw): Use MOUSE_HL_INFO.
1919
1920 2010-11-05 Eli Zaretskii <eliz@gnu.org>
1921
1922 Unify mouse-highlight code for all GUI and TTY sessions.
1923
1924 * term.c: Remove static mouse_face_* variables. All users
1925 changed.
1926 (term_show_mouse_face, term_clear_mouse_face)
1927 (fast_find_position, term_mouse_highlight): Functions deleted.
1928 (tty_draw_row_with_mouse_face): New function.
1929 (term_mouse_movement): Call note_mouse_highlight instead of
1930 term_mouse_highlight.
1931
1932 * nsterm.m (ns_update_window_begin, ns_update_window_end)
1933 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
1934 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
1935 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
1936 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
1937 Replace Display_Info with Mouse_HLInfo everywhere where
1938 mouse_face_* members were accessed for mouse highlight purposes.
1939
1940 * xterm.c (x_update_window_begin, x_update_window_end)
1941 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
1942 (handle_one_xevent, x_free_frame_resources, x_term_init):
1943 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
1944 members were accessed for mouse highlight purposes.
1945
1946 * w32term.c (x_update_window_begin, x_update_window_end)
1947 (x_update_end, w32_read_socket, x_free_frame_resources)
1948 (w32_initialize_display_info): Replace Display_Info with
1949 Mouse_HLInfo everywhere where mouse_face_* members were accessed
1950 for mouse highlight purposes.
1951
1952 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
1953 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
1954 unless the frame is on a window-system.
1955 (get_tool_bar_item, handle_tool_bar_click)
1956 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
1957 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
1958 (note_mode_line_or_margin_highlight, note_mouse_highlight)
1959 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
1960 Replace Display_Info with Mouse_HLInfo everywhere where
1961 mouse_face_* members were accessed for mouse highlight purposes.
1962 (coords_in_mouse_face_p): Move prototype out of the
1963 HAVE_WINDOW_SYSTEM conditional.
1964 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
1965 HAVE_WINDOW_SYSTEM block.
1966 (try_window_id) [HAVE_GPM || MSDOS]:
1967 Call x_clear_window_mouse_face.
1968 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
1969 systems. Call tty_draw_row_with_mouse_face for TTY systems.
1970 (show_mouse_face): Call draw_row_with_mouse_face, instead of
1971 calling draw_glyphs directly.
1972 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
1973 (cursor_in_mouse_face_p, rows_from_pos_range)
1974 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
1975 (note_mode_line_or_margin_highlight, note_mouse_highlight)
1976 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
1977 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
1978 fragments.
1979 (note_mouse_highlight): Call popup_activated for MSDOS as well.
1980 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
1981 integer.
1982 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
1983 (x_consider_frame_title, tool_bar_lines_needed):
1984 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
1985 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
1986 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
1987 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
1988 part.
1989
1990 * dispnew.c (mirror_make_current): Set Y coordinate of the
1991 mode-line and header-line rows.
1992 (init_display): Setup initial frame's output_data for text
1993 terminal frames.
1994
1995 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
1996 its own definition on msdos.c.
1997
1998 * msdos.c (show_mouse_face, clear_mouse_face)
1999 (fast_find_position, IT_note_mode_line_highlight)
2000 (IT_note_mouse_highlight): Functions deleted.
2001 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
2002 instead of IT_note_mouse_highlight.
2003 (draw_row_with_mouse_face, popup_activated): New functions.
2004 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
2005 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
2006 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
2007 where mouse_face_* members were accessed for mouse highlight
2008 purposes.
2009
2010 * msdos.h (initialize_msdos_display): Add prototype.
2011
2012 * frame.h (MOUSE_HL_INFO): New macro.
2013
2014 * lisp.h (Mouse_HLInfo): New data type.
2015
2016 * xterm.h (struct x_display_info):
2017 * w32term.h (struct w32_display_info):
2018 * nsterm.h (struct ns_display_info):
2019 * termchar.h (struct tty_display_info): Use it instead of
2020 mouse_face_* members.
2021
2022 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
2023 1st argument.
2024 (frame_to_window_pixel_xy, note_mouse_highlight)
2025 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
2026 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
2027 HAVE_WINDOW_SYSTEM conditional.
2028 (draw_row_with_mouse_face): Declare prototype.
2029 (tty_draw_row_with_mouse_face): Declare prototype.
2030
2031 2010-11-05 Eli Zaretskii <eliz@gnu.org>
2032
2033 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
2034 Remove unused variables.
2035
2036 2010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
2037
2038 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
2039 logic pointed out by Eli Zaretskii.
2040
2041 2010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2042
2043 * coding.c (coding-category-list): Refer to set-coding-system-priority
2044 instead of the obsolete set-coding-priority in the doc string.
2045
2046
2047 2010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
2048
2049 * nsfont.m (nsfont_draw): Correct previous patch to return
2050 correct value.
2051 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
2052 don't change the method signature, change the return.
2053
2054 2010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
2055
2056 * nsfont.m (nsfont_draw)
2057 * nsimage.m (EmacsImage-setXBMColor:)
2058 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
2059
2060 2010-11-03 Julien Danjou <julien@danjou.info>
2061
2062 * image.c (gif_load): Add support for transparency and specified
2063 :background.
2064
2065 2010-11-01 Kenichi Handa <handa@m17n.org>
2066
2067 * dispextern.h (lookup_glyphless_char_display): Extern it.
2068
2069 * termhooks.h (struct terminal): New member charset_list.
2070
2071 * coding.c (Fset_terminal_coding_system_internal): Set the
2072 `charset_list' member of struct terminal.
2073
2074 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
2075 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
2076
2077 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
2078 (lookup_glyphless_char_display): Set it->what at the end.
2079 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
2080 (last_glyphless_glyph_merged_face_id): Make them non-static.
2081
2082 * w32term.c (x_draw_glyphless_glyph_string_foreground):
2083 Fix the arg with_background for font->driver->draw.
2084
2085 2010-11-01 Kenichi Handa <handa@m17n.org>
2086
2087 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
2088 Surround chp by parentheses.
2089
2090 2010-11-01 Kenichi Handa <handa@m17n.org>
2091
2092 Implement various display methods for glyphless characters.
2093
2094 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
2095 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
2096 (Qzero_width): New variables.
2097 (THIN_SPACE_WIDTH): New macro.
2098 (lookup_glyphless_char_display): New funciton.
2099 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
2100 (last_glyphless_glyph_merged_face_id): New variables.
2101 (get_next_display_element): Check glyphless characters.
2102 (redisplay_internal): Initialize last_glyphless_glyph_frame and
2103 last_glyphless_glyph_face_id.
2104 (fill_glyphless_glyph_string): New function.
2105 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
2106 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
2107 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
2108 (x_produce_glyphs): If a suitable font is not found, produce a
2109 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
2110 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
2111 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
2112 Qzero_width.
2113 (Vglyphless_char_display): Declare it as a Lisp variable.
2114
2115 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
2116 (struct glyph): Change the size of the member "type" to 3.
2117 Add glyphless to the union slice and u.
2118 (enum display_element_type): Add IT_GLYPHLESS.
2119 (enum glyphless_display_method): New enum.
2120 (struct it): New member glyphless_method.
2121 (Vglyphless_char_display): Extern it.
2122
2123 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
2124 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
2125
2126 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
2127 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
2128
2129 * nsterm.m (ns_draw_glyph_string): Handle the case
2130 GLYPHLESS_GLYPH (the detail is not yet implemented).
2131
2132 2010-10-31 Glenn Morris <rgm@gnu.org>
2133
2134 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
2135
2136 * frame.c (syms_of_frame) <tool-bar-mode>:
2137 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
2138
2139 2010-10-31 Chong Yidong <cyd@stupidchicken.com>
2140
2141 * xterm.c (x_connection_closed): Print informative error message
2142 when aborting on GTK. This requires using shut_down_emacs
2143 directly instead of Fkill_emacs.
2144
2145 2010-10-29 Eli Zaretskii <eliz@gnu.org>
2146
2147 * emacs.c (main): Call syms_of_filelock unconditionally.
2148
2149 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
2150 clause, but keep part of it conditioned on CLASH_DETECTION.
2151
2152 2010-10-29 Glenn Morris <rgm@gnu.org>
2153
2154 * nsfns.m (Fx-display-save-under, Fx-open-connection)
2155 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
2156 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
2157 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
2158 Sync docs between X, W32, NS.
2159
2160 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
2161 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
2162
2163 2010-10-26 Juanma Barranquero <lekktu@gmail.com>
2164
2165 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
2166 otherwise, bootstrapping on Windows fails to compile macroexp.el.
2167
2168 2010-10-26 Eli Zaretskii <eliz@gnu.org>
2169
2170 * cmds.c (internal_self_insert): Don't insert if argument N is
2171 zero or negative. (Bug#7281)
2172
2173 2010-10-26 Jan Djärv <jan.h.d@swipnet.se>
2174
2175 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
2176
2177 2010-10-25 Glenn Morris <rgm@gnu.org>
2178
2179 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
2180
2181 2010-10-24 Glenn Morris <rgm@gnu.org>
2182
2183 * w32fns.c (Fx_synchronize, Fx_change_window_property)
2184 (Fx_window_property, Fx_file_dialog):
2185 * xfns.c (Fx_synchronize, Fx_change_window_property)
2186 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
2187
2188 2010-10-24 Chong Yidong <cyd@stupidchicken.com>
2189
2190 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
2191
2192 2010-10-24 Eli Zaretskii <eliz@gnu.org>
2193
2194 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
2195
2196 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
2197 Deprecate use as a boolean flag.
2198
2199 2010-10-24 Jim Meyering <jim@meyering.net>
2200
2201 * emacs.c (argmatch): Don't treat "--" as "--chdir".
2202
2203 2010-10-24 Glenn Morris <rgm@gnu.org>
2204
2205 * w16select.c (syms_of_win16select) <selection-coding-system>:
2206 <next-selection-coding-system>:
2207 * w32select.c (syms_of_w32select) <selection-coding-system>:
2208 <next-selection-coding-system>:
2209 Sync docs with select.el.
2210
2211 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
2212 Lisp version.
2213
2214 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
2215 Sync doc with the xterm.c version.
2216
2217 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
2218 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
2219
2220 2010-10-23 Glenn Morris <rgm@gnu.org>
2221
2222 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
2223 * frame.c (syms_of_frame) <menu-bar-mode>:
2224 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
2225 <hourglass-delay>: Sync docs with Lisp.
2226
2227 2010-10-23 Eli Zaretskii <eliz@gnu.org>
2228
2229 Implement mouse highlight for bidi-reordered lines.
2230
2231 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
2232 (mouse_face_from_string_pos): New function, replaces
2233 fast_find_string_pos.
2234 (note_mouse_highlight): Call it instead of fast_find_string_pos.
2235 (note_mode_line_or_margin_highlight): Support bidi-reordered
2236 strings and R2L glyph rows. Fix comments.
2237 (note_mouse_highlight): When bidi reordering is turned on in a
2238 buffer, call next-single-property-change and
2239 previous-single-property-change with last argument nil.
2240 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
2241 glyph that stands for no text beyond the line end.
2242 (row_containing_pos): Don't return too early when CHARPOS is in a
2243 bidi-reordered continued line. Return immediately when the first
2244 hit is found in a line that is not continued, or when an exact
2245 match for CHARPOS is found.
2246 (rows_from_pos_range): New function.
2247 (mouse_face_from_buffer_pos): Use it instead of calling
2248 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
2249 function to support mouse highlight in bidi-reordered lines and
2250 not to assume that START_CHARPOS is always in mouse_face_beg_row.
2251 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
2252 that the former is always above the latter or identical to it.
2253 (show_mouse_face): Support drawing highlighted R2L lines.
2254 (coords_in_mouse_face_p): New function, bidi-aware.
2255 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
2256 Call it instead of comparing with mouse-face members of dpyinfo.
2257 (note_mode_line_or_margin_highlight): Fix confusingly swapped
2258 usage of hpos and vpos.
2259
2260 2010-10-22 Jan Djärv <jan.h.d@swipnet.se>
2261
2262 * xrdb.c: Include keyboard.h for MOTIF.
2263
2264 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
2265 MOTIF (Bug#7263).
2266
2267 * xfns.c: Include Xm/TextF and Xm/List.
2268 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
2269 Make ANSI prototypes.
2270
2271 2010-10-22 Glenn Morris <rgm@gnu.org>
2272
2273 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
2274 Remove ccl and duplicate mouse.
2275
2276 2010-10-21 Chong Yidong <cyd@stupidchicken.com>
2277
2278 * insdel.c (prepare_to_modify_buffer): Don't set
2279 saved-region-selection if modification hooks are disabled.
2280
2281 2010-10-19 Chong Yidong <cyd@stupidchicken.com>
2282
2283 * cmds.c (Fdelete_char): Doc fix.
2284
2285 2010-10-19 Ken Brown <kbrown@cornell.edu>
2286
2287 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
2288
2289 2010-10-19 Kenichi Handa <handa@m17n.org>
2290
2291 Fix incorrect font metrics when the same font is opened with
2292 different pixelsizes.
2293
2294 * xftfont.c: Include composite.h.
2295 (xftfont_shape): New function.
2296 (syms_of_xftfont): Set xftfont_driver.shape.
2297
2298 2010-10-18 Julien Danjou <julien@danjou.info>
2299
2300 * frame.c (Fframe_pointer_visible_p):
2301 Add `frame-pointer-visible-p' to get the pointer visibility.
2302
2303 2010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2304
2305 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
2306 non-"EAGAIN"-like error to signal to Emacs that the socket should
2307 be closed.
2308
2309 2010-10-15 Eli Zaretskii <eliz@gnu.org>
2310
2311 * unexcoff.c (make_hdr): Fix prototype according to changes in
2312 2010-10-03T13:59:56Z!dann@ics.uci.edu.
2313
2314 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
2315
2316 2010-10-15 Tassilo Horn <tassilo@member.fsf.org>
2317
2318 * Makefile.in (really-oldXMenu): Fix typo in variable name that
2319 made building the X menu fail.
2320 (really-oldXMenu): Fix my previous fix.
2321
2322 2010-10-14 Damyan Pepper <damyanp@gmail.com>
2323
2324 Fix handling of font properties on Windows (bug#6303).
2325 * font.c (font_filter_properties): New function, refactored from
2326 ftfont_filter_properties.
2327 * font.h (font_filter_properties): Declare.
2328 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
2329 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
2330 (w32font_filter_properties): New function.
2331 (w32font_driver): Add w32font_filter_properties.
2332
2333 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
2334
2335 * font.c (Ffont_variation_glyphs):
2336 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
2337
2338 2010-10-14 Juanma Barranquero <lekktu@gmail.com>
2339
2340 * w32fns.c (w32_wnd_proc, file_dialog_callback):
2341 * w32font.c (w32_generic_family):
2342 * w32inevt.c (key_event):
2343 * w32menu.c (fill_in_menu):
2344 * w32proc.c (reader_thread, w32_executable_type, compare_env)
2345 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
2346 * w32term.c (w32_read_socket): Make static.
2347
2348 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
2349
2350 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
2351 prototypes; all callers changed.
2352
2353 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
2354
2355 * makefile.w32-in (TLIB2): Rename from TLIBW32.
2356 (OBJ2): New macro.
2357 (WIN32OBJ, FONTOBJ): Remove.
2358 (OBJ1): Redistribute object files with OBJ2.
2359 (LIBS, $(TEMACS)): Use TLIB2.
2360 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
2361 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
2362
2363 2010-10-13 Juanma Barranquero <lekktu@gmail.com>
2364
2365 * emacs.c (Vdynamic_library_alist)
2366 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
2367 Doc fix.
2368
2369 * lisp.h (Vdynamic_library_alist): Declare extern.
2370
2371 * image.c (Vimage_library_alist)
2372 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
2373 (lookup_image_type): Use Vdynamic_library_alist.
2374 (Finit_image_library): Doc fix.
2375
2376 2010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
2377
2378 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
2379 (lispdir): Remove trailing /, update all uses.
2380
2381 2010-10-12 Jan Djärv <jan.h.d@swipnet.se>
2382
2383 * nsterm.m (Qleft): Declare.
2384 (ns_right_alternate_modifier): New variable
2385 (NSRightAlternateKeyMask): New define.
2386 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
2387 ns_right_alternate_modifier isn't Qleft.
2388 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
2389 as emacs modifier for NSRightAlternateKeyMask.
2390 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
2391
2392 2010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2393
2394 * gnutls.c (emacs_gnutls_write): If we're trying to write before
2395 gnutls is ready, return EAGAIN as the errno.
2396
2397 2010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
2398
2399 * vm-limit.c:
2400 * unexhp9k800.c:
2401 * unexelf.c:
2402 * unexaix.c:
2403 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
2404
2405 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
2406 (PROFILING_LDFLAGS): Remove, not needed anymore.
2407
2408 * Makefile.in: Use $(...) everywhere instead of ${...}
2409 (CRT_DIR): Move near potential user.
2410 (START_FILE): Move near CRT_DIR, it might use it.
2411
2412 * sysdep.c (LPASS8): Remove, unused.
2413 (emacs_ospeed): Change from being a global to a local in the only
2414 user: init_baud_rate.
2415
2416 2010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
2417
2418 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
2419 (emacs_gnutls_write): Remove the debuggin fsync call.
2420 (emacs_gnutls_read): Return -1 if we got an error from
2421 gnutls_read. This allows us to actually read lots of data from
2422 the GnuTLS stream.
2423 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
2424 According to the documentation, this is correct, and it seems to
2425 make things work.
2426
2427 2010-10-09 Chong Yidong <cyd@stupidchicken.com>
2428
2429 * xterm.c (x_draw_relief_rect): Clear corner pixels.
2430
2431 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
2432
2433 * keyboard.c: Revert last change; it was not intended to be
2434 synchronized with the trunk.
2435
2436 2010-10-08 Kenichi Handa <handa@m17n.org>
2437
2438 * coding.c (complement_process_encoding_system): Fix previous change.
2439
2440 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
2441
2442 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
2443 (Fdbus_init_bus): ... here. (Bug#7113)
2444
2445 2010-10-08 Glenn Morris <rgm@gnu.org>
2446
2447 * buffer.c (before-change-functions, after-change-functions):
2448 Three-year overdue doc fix following 2007-08-13 change.
2449
2450 2010-10-08 Kenichi Handa <handa@m17n.org>
2451
2452 * coding.c (coding_inherit_eol_type): If parent doesn't specify
2453 eol-format, inherit from the system's default.
2454 (complement_process_encoding_system): Make a new coding system
2455 inherit the original eol-format.
2456
2457 2010-10-08 Kenichi Handa <handa@m17n.org>
2458
2459 * coding.c (complement_process_encoding_system): New function.
2460
2461 * coding.h (complement_process_encoding_system): Extern it.
2462
2463 * callproc.c (Fcall_process): Complement the coding system for
2464 encoding arguments.
2465 (Fcall_process_region): Complement the coding system for encoding
2466 the input to the process.
2467
2468 * process.c (Fstart_process): Complement the coding system for
2469 encoding arguments.
2470 (send_process): Complement the coding system for encoding what
2471 sent to the process.
2472
2473 2010-10-08 Kenichi Handa <handa@m17n.org>
2474
2475 * xfont.c (xfont_open): Fix setting of font->average_width from
2476 :avgwidth property (Bug#7123).
2477
2478 2010-10-08 Michael Albinus <michael.albinus@gmx.de>
2479
2480 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
2481 is more portable.
2482
2483 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
2484 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
2485 has not defined SIGIO.
2486
2487 2010-10-08 Chong Yidong <cyd@stupidchicken.com>
2488
2489 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
2490 draw the outermost line using the black relief, for legibility.
2491 Omit drawing the four corner pixels.
2492
2493 2010-10-04 Chong Yidong <cyd@stupidchicken.com>
2494
2495 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
2496 (read_key_sequence): Inline echo_prompt.
2497 (echo_dash): Add a dash only if key is continued (Bug#7137).
2498
2499 2010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
2500
2501 Remove O_RDONLY, O_WRONLY definitions, not needed.
2502 * unexcoff.c:
2503 * lread.c:
2504 * fileio.c:
2505 * doc.c:
2506 * callproc.c:
2507 * alloc.c:
2508 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
2509
2510 2010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
2511
2512 * gnutls.h (GNUTLS_LOG2): Convenience macro.
2513
2514 * gnutls.c: Add property list symbol holders.
2515 (emacs_gnutls_handshake): Clarify how sockets are passed to
2516 GnuTLS.
2517 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
2518 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
2519 and keyfiles to be a list of file names. Default to "NORMAL" for
2520 the priority string. Improve logging.
2521
2522 2010-10-03 Glenn Morris <rgm@gnu.org>
2523
2524 * fileio.c (Vdirectory_sep_char): Remove.
2525
2526 2010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2527
2528 * termhooks.h: Remove #ifdef CONSP.
2529
2530 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
2531
2532 Include <fcntl.h> unconditionally.
2533 * termcap.c:
2534 * sysdep.c:
2535 * lread.c:
2536 * keyboard.c:
2537 * filelock.c:
2538 * fileio.c:
2539 * doc.c:
2540 * callproc.c:
2541 * alloc.c: Remove include guards for <fcntl.h>, process.c already
2542 does it.
2543
2544 * process.c: Do not include <sys/wait.h>, syswait.h does it.
2545
2546 * sysdep.c (flush_pending_output): Remove code, does not do
2547 anything on any platform.
2548
2549 Remove unused code.
2550 * sysdep.c (select_alarm, sys_select, read_input_waiting):
2551 Remove select emulation, all systems support select.
2552 (set_exclusive_use): Remove, the only user is in an #if 0 block.
2553 * process.c (create_process): Remove #if 0 code.
2554
2555 Remove unused arguments for unexec.
2556 The third one is never used, and the last two are always passed as zero.
2557 * emacs.c (unexec): Add declaration.
2558 (Fdump_emacs): Only pass the first two arguments to unexec.
2559 Simplify #ifdef.
2560 * unexw32.c (unexec):
2561 * unexsol.c (unexec):
2562 * unexhp9k800.c (unexec):
2563 * unexcw.c (unexec): Remove the last 3 arguments, unused.
2564 * unexelf.c (unexec): Remove the last 3 arguments, unused.
2565 (find_section): Use const.
2566 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
2567 (unexec_error): Declare it NO_RETURN.
2568 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
2569 it as an argument, remove data_start and entry_address arguments, unused.
2570 (unexec): Remove bss_start, data_start and
2571 entry_address arguments.
2572 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
2573 it as an argument, remove data_start and entry_address arguments, unused.
2574 (unexec): Remove bss_start, data_start and
2575 entry_address arguments.
2576
2577 2010-10-03 Juanma Barranquero <lekktu@gmail.com>
2578
2579 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
2580
2581 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
2582 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
2583 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
2584 Fix typos in docstrings.
2585 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
2586 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
2587
2588 2010-10-03 Chong Yidong <cyd@stupidchicken.com>
2589
2590 * keyboard.c (command_loop_1): Make sure the mark is really alive
2591 before using it (Bug#7044).
2592
2593 2010-10-02 Juanma Barranquero <lekktu@gmail.com>
2594
2595 * makefile.w32-in (tags): Rename target to full-tags.
2596
2597 2010-10-02 Eli Zaretskii <eliz@gnu.org>
2598
2599 * emacs.c (main): Remove !WINDOWSNT conditional.
2600 (Fkill_emacs): Don't mention exemption on MS-Windows.
2601
2602 2010-10-02 Glenn Morris <rgm@gnu.org>
2603
2604 * character.c (Fchar_bytes): Remove obsolete function.
2605 (syms_of_character): Remove Schar_bytes.
2606
2607 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
2608 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
2609 in batch-mode.
2610 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
2611 (kill-emacs-hook): Doc fix.
2612
2613 2010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2614
2615 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
2616 (parse_region): Rework to take regions instead of strings, and
2617 renamed to reflect that these are the libxml functions.
2618
2619 2010-10-01 Eli Zaretskii <eliz@gnu.org>
2620
2621 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
2622 screen dimensions in tty->Wcm.
2623
2624 * xdisp.c (set_cursor_from_row): When the row is truncated and
2625 point is outside the range of displayed characters, position the
2626 cursor inside the scroll margin. (Bug#6349)
2627
2628 2010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
2629
2630 Do not include stdlib.h and string.h, config.h does it.
2631 * xfont.c:
2632 * w32term.c:
2633 * w32reg.c:
2634 * w32inevt.c:
2635 * w32heap.c:
2636 * w32console.c:
2637 * w16select.c:
2638 * unexsol.c:
2639 * term.c:
2640 * sound.c:
2641 * scroll.c (m):
2642 * gtkutil.c:
2643 * font.c:
2644 * filelock.c:
2645 * fileio.c:
2646 * dosfns.c:
2647 * dbusbind.c:
2648 * bidi.c:
2649 * callproc.c:
2650 * process.c:
2651 * msdos.c:
2652 * charset.c: Do not include stdlib.h and string.h, config.h does it.
2653
2654 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
2655 defines it.
2656
2657 * process.c: Move #include <pty.h> earlier.
2658 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
2659 (pty_name): Move definition later.
2660
2661 * nsselect.m (syms_of_nsselect):
2662 * nsmenu.m (syms_of_nsmenu):
2663 * nsfns.m (syms_of_nsfns):
2664 * msdos.c (syms_of_msdos):
2665
2666 * image.c (syms_of_image):
2667 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
2668
2669 * point.h: Remove, unused.
2670
2671 2010-10-01 Eli Zaretskii <eliz@gnu.org>
2672
2673 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
2674 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
2675 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
2676
2677 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
2678
2679 * xml.c (parse_string): Use const.
2680
2681 2010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2682
2683 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
2684 Also only override Vprint_level if it isn't already bound, and increase
2685 the level to 8 to produce more useful backtraces for bug reports.
2686
2687 2010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
2688
2689 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
2690
2691 2010-09-30 Juanma Barranquero <lekktu@gmail.com>
2692
2693 * w32console.c (vga_stdcolor_name): Remove unused function;
2694 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
2695
2696 2010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
2697
2698 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
2699 (Fgnutls_boot): Start the handshake.
2700 (emacs_gnutls_read): Perform the handshake from the reader loop.
2701 (Fgnutls_boot): Remove some debugging messages.
2702 Change indentation throughout to use the Emacs style.
2703 (emacs_gnutls_handshake): Cast the fds to something that's
2704 possibly the expected length.
2705 (emacs_gnutls_write): Return -1 if we try to write before handshake.
2706
2707 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
2708
2709 * process.c (make_process): Set the gnutls_p field to zero by
2710 default.
2711 (read_process_output): Always call the gnutls_read function if the
2712 stream is a gnutls stream.
2713 (send_process): Ditto for writes.
2714
2715 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
2716 or write anything until the state is GNUTLS_STAGE_READY.
2717 (Fgnutls_boot): Mark the stream as being a gnutls stream.
2718
2719 2010-09-29 Eli Zaretskii <eliz@gnu.org>
2720
2721 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
2722 NEUTRAL_DIR.
2723 (handle_invisible_prop, iterate_out_of_display_property)
2724 (next_element_from_buffer): If bidi_it.first_elt is set, call
2725 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
2726 (Bug#7128)
2727
2728 * print.c (print_object): Fix format string and argument types for
2729 printing a Lisp_Misc_Marker.
2730
2731 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
2732 (load_overlay_strings, get_overlay_strings_1)
2733 (get_overlay_strings, forward_to_next_line_start)
2734 (back_to_previous_visible_line_start, reseat, reseat_to_string)
2735 (get_next_display_element, next_element_from_string)
2736 (next_element_from_c_string, next_element_from_buffer)
2737 (move_it_vertically_backward, move_it_by_lines, add_to_log)
2738 (message_dolog, message_log_check_duplicate, message2_nolog)
2739 (message3, message3_nolog, vmessage, set_message, set_message_1)
2740 (hscroll_window_tree, text_outside_line_unchanged_p)
2741 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
2742 (find_last_unchanged_at_beg_row)
2743 (find_first_unchanged_at_end_row, row_containing_pos)
2744 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
2745 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
2746 Use EMACS_INT for buffer and string positions.
2747
2748 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
2749 (row_containing_pos): Adjust prototype.
2750
2751 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
2752 (message2_nolog, set_message): Adjust prototypes.
2753
2754 2010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2755
2756 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
2757 (Fgnutls_boot): Use SDATA.
2758 (Fgnutls_handshake): Remove unused var `max_log_level'.
2759
2760 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
2761
2762 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
2763 (Bug#7113)
2764
2765 2010-09-27 Jan Djärv <jan.h.d@swipnet.se>
2766
2767 * xgselect.c (xg_select): Clear file descriptors not set from
2768 rfds and wfds.
2769
2770 * process.c (wait_reading_process_output): Add missing FD_CLR
2771 for write_mask (must mirror connect_wait_mask).
2772
2773 2010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
2774
2775 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
2776 prefix.
2777 (Fgnutls_boot): Use changed process members. Use log level with a
2778 function parameter to set it. Bring back Emacs-level debugging
2779 messages at log level 1 and 2.
2780
2781 * process.c (make_process): Initialize gnutls_log_level.
2782
2783 * process.h: Add gnutls_log_level and rename x509_cred and
2784 anon_cred to have the gnutls_ prefix for consistency.
2785
2786 * gnutls.h (GNUTLS_LOG): Add convenience macro.
2787
2788 2010-09-27 Juanma Barranquero <lekktu@gmail.com>
2789
2790 * w32.c (g_b_init_get_sid_identifier_authority)
2791 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
2792 Remove, not used.
2793 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
2794 (init_winsock): Remove useless assignment.
2795 (open_process_token, get_token_information, lookup_account_sid)
2796 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
2797 (get_security_descriptor_owner, get_security_descriptor_group)
2798 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
2799 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
2800 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
2801 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
2802 (unc_volume_file_attributes, convert_from_time_t)
2803 (create_toolhelp32_snapshot, process32_first, process32_next)
2804 (open_thread_token, impersonate_self, revert_to_self)
2805 (get_process_memory_info, get_process_working_set_size)
2806 (global_memory_status, global_memory_status_ex, socket_to_fd)
2807 (shutdown_handler): Make static.
2808
2809 2010-09-27 Michael Albinus <michael.albinus@gmx.de>
2810
2811 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
2812 (xd_pending_messages): Functions removed.
2813 (xd_read_queued_messages): Add parameters fd, *data, for_read in
2814 order to be compatible with add_read_fd. Determine bus from data,
2815 and call xd_read_message just for this bus.
2816 (xd_add_watch): Use xd_read_queued_messages as callback function.
2817 Add data.
2818
2819 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
2820
2821 2010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2822
2823 * gnutls.c (gnutls_log_function): Add more debugging.
2824 (emacs_gnutls_read): Don't infloop while reading.
2825
2826 2010-09-27 Kenichi Handa <handa@m17n.org>
2827
2828 These changes are to remove restriction on the number of glyphs in
2829 one composition.
2830
2831 * dispextern.h (struct glyph): Change the member "slice" to union.
2832 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
2833 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
2834
2835 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
2836 instead of glyph->slice.
2837 (marginal_area_string): Likewise.
2838
2839 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
2840 glyph->u.cmp.
2841 (append_composite_glyph): Likewise.
2842
2843 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
2844 glyph->u.cmp.
2845 (fill_gstring_glyph_string, x_get_glyph_overhangs)
2846 (append_composite_glyph): Likewise.
2847 (fill_image_glyph_string): Use glyph->slice.img instead of
2848 glyph->slice.
2849 (append_glyph, produce_image_glyph, append_stretch_glyph)
2850 (note_mouse_highlight): Likewise.
2851
2852 2010-09-26 Jan Djärv <jan.h.d@swipnet.se>
2853
2854 * process.c (add_keyboard_wait_descriptor)
2855 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
2856 (wait_reading_process_output): Don't pass write_mask to select
2857 if SELECT_CANT_DO_WRITE_MASK is defined.
2858 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
2859
2860 * process.h (add_read_fd, delete_read_fd, add_write_fd)
2861 (delete_write_fd): Declare.
2862
2863 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
2864 (write_mask): New variable.
2865 (max_input_desc): Rename from max_keyboard_desc.
2866 (fd_callback_info): New variable.
2867 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
2868 New functions.
2869 (Fmake_network_process): FD_SET write_mask.
2870 (deactivate_process): FD_CLR write_mask.
2871 (wait_reading_process_output): Connecting renamed to Writeok.
2872 check_connect removed. check_write is new. Remove references to gpm.
2873 Use Writeok/check_write unconditionally (i.e. no #ifdef
2874 NON_BLOCKING_CONNECT) instead of Connecting.
2875 Loop over file descriptors and call callbacks in fd_callback_info
2876 if file descriptor is ready for I/O.
2877 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
2878 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
2879 (keyboard_bit_set): Use max_input_desc.
2880 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
2881 Remove #ifdef subprocesses. Use max_input_desc.
2882 (init_process): Initialize write_mask and fd_callback_info.
2883
2884 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
2885
2886 * dbusbind.c: Include process.h.
2887 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
2888 (xd_read_message_1): New functions.
2889 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
2890 Handle watch for both read and write.
2891 (Fdbus_init_bus): Also register xd_toggle_watch.
2892 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
2893 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
2894 to dbus_connection_flush.
2895 (xd_read_message): Move most of the code to xd_read_message_1.
2896 Call xd_read_message_1 until status is COMPLETE.
2897
2898 2010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
2899
2900 * term.c: Do not include sys/ioctl.h, not needed.
2901 (init_tty): Reorder code to reduce the number of #ifdefs.
2902 No code changes.
2903
2904 2010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
2905
2906 * process.h: Set up GnuTLS support.
2907
2908 * process.c (make_process, Fstart_process)
2909 (read_process_output, send_process): Set up GnuTLS support for
2910 process input/output file descriptors.
2911
2912 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
2913
2914 * gnutls.c: The source code for GnuTLS support in Emacs.
2915
2916 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
2917
2918 * config.in: Set up GnuTLS support.
2919
2920 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
2921 (obj, LIBES): Set up GnuTLS support.
2922
2923 2010-09-26 Juanma Barranquero <lekktu@gmail.com>
2924
2925 * w32.c (get_emacs_configuration_options): Fix previous change.
2926
2927 2010-09-25 Chong Yidong <cyd@stupidchicken.com>
2928
2929 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
2930 alive before using it (Bug#6977).
2931
2932 2010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
2933
2934 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
2935
2936 * dispextern.h: EMACS_INT/int fixup.
2937
2938 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
2939 fixup.
2940
2941 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
2942
2943 2010-09-25 Eli Zaretskii <eliz@gnu.org>
2944
2945 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
2946 (Fselect_window, window_scroll_pixel_based)
2947 (window_scroll_line_based, Frecenter, Fset_window_configuration):
2948 Use EMACS_INT for buffer positions.
2949
2950 * textprop.c (validate_interval_range, interval_of)
2951 (property_change_between_p, Fadd_text_properties)
2952 (set_text_properties_1, Fremove_text_properties)
2953 (Fremove_list_of_text_properties, Ftext_property_any)
2954 (Ftext_property_not_all, copy_text_properties)
2955 (text_property_list, extend_property_ranges)
2956 (verify_interval_modification): Use EMACS_INT for buffer
2957 positions.
2958
2959 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
2960 for buffer positions.
2961
2962 * process.c (read_process_output, send_process)
2963 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
2964 and string positions and size.
2965
2966 * print.c (print_object, print_string, strout): Use EMACS_INT for
2967 string indices.
2968
2969 * minibuf.c (string_to_object): Use EMACS_INT for string position
2970 and size.
2971
2972 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
2973
2974 * lread.c <read_from_string_index, read_from_string_index_byte>
2975 <read_from_string_limit, readchar_count>: Define EMACS_INT.
2976 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
2977 buffer positions and string length.
2978
2979 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
2980 EMACS_INT.
2981 (echo_truncate, adjust_point_for_property, read_char)
2982 (gen_help_event, make_lispy_event, modify_event_symbol)
2983 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
2984 for buffer positions and string length.
2985
2986 * keyboard.h (gen_help_event): Adjust prototype.
2987
2988 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
2989
2990 * commands.h <last_point_position>: Declare EMACS_INT.
2991
2992 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
2993 (truncate_echo_area): Accept EMACS_INT argument.
2994
2995 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
2996
2997 * lisp.h (truncate_echo_area): Adjust prototype.
2998
2999 * composite.c (composition_adjust_point): Return EMACS_INT.
3000
3001 * composite.h (composition_adjust_point): Adjust prototype.
3002
3003 2010-09-25 Juanma Barranquero <lekktu@gmail.com>
3004
3005 * process.c (Fmake_network_process): When arg :host is 'local,
3006 use address 127.0.0.1, not name "localhost". (Bug#6781)
3007
3008 2010-09-24 Eli Zaretskii <eliz@gnu.org>
3009
3010 * indent.c (Fcurrent_indentation, indented_beyond_p)
3011 (compute_motion): Use EMACS_INT for buffer position variables.
3012
3013 * lisp.h (indented_beyond_p): Adjust prototype.
3014
3015 * buffer.c (overlay_strings): Return EMACS_INT.
3016
3017 * buffer.h (overlay_strings): Adjust prototype.
3018
3019 * region-cache.c (pp_cache): Adjust format to arguments.
3020
3021 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
3022 (call_debugger): Use EMACS_INT for specpdl_size related variables.
3023 (verror): Use EMACS_INT for size of allocated buffer.
3024
3025 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
3026 positions.
3027
3028 * xdisp.c (redisplay_internal, try_window_id)
3029 (set_cursor_from_row, find_first_unchanged_at_end_row):
3030 Use EMACS_INT for buffer positions.
3031
3032 * dispextern.h (set_cursor_from_row): Adjust prototype.
3033
3034 * dispnew.c (increment_matrix_positions)
3035 (increment_row_positions, copy_glyph_row_contents)
3036 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
3037 positions.
3038
3039 * dispextern.h (mode_line_string, marginal_area_string)
3040 (increment_matrix_positions, increment_row_positions):
3041 Adjust prototypes.
3042
3043 * data.c (Faref, Faset): Use EMACS_INT for string length and
3044 positions.
3045
3046 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
3047 characters to insert.
3048
3049 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
3050 position and size.
3051
3052 * syntax.c (scan_words, update_syntax_table)
3053 (prev_char_comend_first, back_comment, skip_chars)
3054 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
3055 Use EMACS_INT for buffer and string positions.
3056
3057 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
3058
3059 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
3060 positions.
3061
3062 2010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3063
3064 * scroll.c (calculate_scrolling, line_ins_del)
3065 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
3066 conversion.
3067
3068 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
3069 (region_cache_backward, region_cache_forward)
3070 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
3071 conversion.
3072
3073 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
3074
3075 * eval.c (verror): Fix EMACS_INT/int conversion.
3076
3077 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
3078 (print_preprocess, print_check_string_charset_prop)
3079 (print_object): Fix EMACS_INT/int conversion.
3080
3081 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
3082
3083 2010-09-24 Eli Zaretskii <eliz@gnu.org>
3084
3085 * callproc.c (Fcall_process): Use EMACS_INT for count of
3086 characters read from the subprocess.
3087
3088 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
3089 positions.
3090 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
3091 positions.
3092
3093 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
3094 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
3095 length.
3096 (advance_to_char_boundary, Fset_buffer_multibyte)
3097 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
3098 (overlay_touches_p, record_overlay_string, overlay_strings)
3099 (recenter_overlay_lists, fix_start_end_in_overlays)
3100 (modify_overlay, Fmove_overlay, report_overlay_modification)
3101 (evaporate_overlays): Use EMACS_INT for buffer positions.
3102
3103 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
3104 Adjust prototypes.
3105
3106 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
3107 positions.
3108
3109 * fns.c (Fcompare_strings, Fstring_lessp, concat)
3110 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
3111 (Fsubstring_no_properties, substring_both, Ffillarray)
3112 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
3113 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
3114 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
3115 (Fmd5): Use EMACS_INT for buffer and string positions and length
3116 variables and arguments.
3117
3118 * lisp.h (substring_both): Adjust prototype.
3119
3120 2010-09-24 Juanma Barranquero <lekktu@gmail.com>
3121
3122 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
3123 * w32fns.c (clipboard_sequence_fn): Don't declare.
3124 (globals_of_w32fns): Don't initialize it.
3125
3126 2010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
3127
3128 * syntax.c (back_comment): Detect the case where a 1-char comment
3129 starter is also the 2nd char of a 2-char comment ender.
3130
3131 2010-09-23 Jan Djärv <jan.h.d@swipnet.se>
3132
3133 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
3134
3135 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3136
3137 * eval.c (verror): EMACS_INT/int cleanup.
3138
3139 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
3140 unwind_protect more than 2GB worth of functions.
3141
3142 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
3143
3144 * lisp.h: Have oblookup take EMACS_INT to allow interning big
3145 string and avoid compiler warnings.
3146 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
3147 all users.
3148
3149 * lread.c (oblookup): EMACS_INT/int cleanup.
3150
3151 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
3152
3153 2010-09-23 Eli Zaretskii <eliz@gnu.org>
3154
3155 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
3156
3157 * lisp.h (clip_to_bounds): Adjust prototype.
3158
3159 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
3160
3161 2010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3162
3163 * lisp.h: doprnt.c EMACS_INT/int cleanup.
3164
3165 * doprnt.c (doprnt): EMACS_INT/int cleanup.
3166
3167 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
3168 cleanup.
3169
3170 * lisp.h: Change the definition of all marker.c functions that
3171 take and return buffer stuff to be EMACS_INT instead of int.
3172
3173 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
3174 (buf_charpos_to_bytepos, bytepos_to_charpos)
3175 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
3176 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
3177 for all buffer positions.
3178
3179 2010-09-23 Chong Yidong <cyd@stupidchicken.com>
3180
3181 * intervals.c (traverse_intervals, rotate_right, rotate_left)
3182 (split_interval_right, find_interval, next_interval)
3183 (delete_node, delete_interval, interval_deletion_adjustment)
3184 (adjust_intervals_for_deletion, merge_interval_right)
3185 (merge_interval_left, graft_intervals_into_buffer)
3186 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
3187
3188 * intervals.h (traverse_intervals): Update prototype.
3189
3190 2010-09-23 Eli Zaretskii <eliz@gnu.org>
3191
3192 * indent.c (compute_motion): Use EMACS_INT for arguments to
3193 region_cache_forward.
3194
3195 * region-cache.c (struct boundary, struct region_cache):
3196 Use EMACS_INT for positions.
3197 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
3198 (delete_cache_boundaries, set_cache_region)
3199 (invalidate_region_cache, know_region_cache)
3200 (region_cache_forward, region_cache_backward, pp_cache):
3201 Use EMACS_INT for buffer positions.
3202
3203 * region-cache.h (know_region_cache, invalidate_region_cache)
3204 (region_cache_forward, region_cache_backward): Adjust prototypes.
3205
3206 * search.c (string_match_1, fast_c_string_match_ignore_case)
3207 (looking_at_1, scan_buffer, scan_newline)
3208 (find_next_newline_no_quit, find_before_next_newline)
3209 (search_command, trivial_regexp_p, search_buffer, simple_search)
3210 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
3211 and string positions and length.
3212
3213 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
3214 (find_before_next_newline): Adjust prototypes.
3215
3216 * editfns.c (transpose_markers, update_buffer_properties)
3217 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
3218 (get_pos_property, Fconstrain_to_field)
3219 (Fline_beginning_position, Fline_end_position, Fprevious_char)
3220 (Fchar_after, Fchar_before, Finsert_char)
3221 (Finsert_buffer_substring, Fcompare_buffer_substrings)
3222 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
3223 Use EMACS_INT for buffer and string position variables.
3224 (Finsert_char): Protect against too large insertions.
3225
3226 * lisp.h (clip_to_bounds): Adjust prototype.
3227
3228 * intervals.c (traverse_intervals, rotate_right, rotate_left)
3229 (balance_an_interval, split_interval_right, split_interval_left)
3230 (find_interval, next_interval, update_interval)
3231 (adjust_intervals_for_insertion, delete_node, delete_interval)
3232 (interval_deletion_adjustment, adjust_intervals_for_deletion)
3233 (offset_intervals, merge_interval_right, merge_interval_left)
3234 (graft_intervals_into_buffer, adjust_for_invis_intang)
3235 (move_if_not_intangible, get_local_map, copy_intervals)
3236 (copy_intervals_to_string, compare_string_intervals)
3237 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
3238 and for interval tree size.
3239
3240 * intervals.h (traverse_intervals, split_interval_right)
3241 (split_interval_left, find_interval, offset_intervals)
3242 (graft_intervals_into_buffer, copy_intervals)
3243 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
3244 (update_interval): Adjust prototypes.
3245
3246 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
3247 Use EMACS_INT for buffer position variables and arguments.
3248
3249 * composite.c (get_composition_id, find_composition)
3250 (run_composition_function, compose_text)
3251 (composition_gstring_width, autocmp_chars)
3252 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
3253 for buffer positions and string length variables and arguments.
3254
3255 * composite.h (get_composition_id, find_composition, compose_text)
3256 (composition_gstring_width): Adjust prototypes.
3257
3258 * editfns.c (Fformat): Use EMACS_INT for string size variables.
3259
3260 * xdisp.c (store_mode_line_noprop, display_mode_element):
3261 Use EMACS_INT for string positions.
3262
3263 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
3264 position arguments.
3265
3266 * intervals.h (get_property_and_range): Adjust prototype.
3267
3268 * character.c (parse_str_as_multibyte, str_as_multibyte)
3269 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
3270 (string_count_byte8, string_escape_byte8, c_string_width)
3271 (strwidth, lisp_string_width, multibyte_chars_in_text):
3272 Use EMACS_INT for string length variables and arguments.
3273
3274 * character.h (parse_str_as_multibyte, str_as_multibyte)
3275 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
3276 (c_string_width, strwidth, lisp_string_width):
3277 Adjust prototypes.
3278
3279 * font.c (font_intern_prop): Use EMACS_INT for string length
3280 variables.
3281
3282 * font.c (font_intern_prop): Use EMACS_INT for string length
3283 variables.
3284
3285 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
3286 variables.
3287
3288 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
3289 (Fmake_string): Protect against too large strings.
3290 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
3291 (live_misc_p): Use ptrdiff_t instead of int for pointer
3292 differences.
3293 (string_bytes, check_sblock, check_string_free_list)
3294 (allocate_string_data, compact_small_strings, Fmake_string)
3295 (Fmake_bool_vector, make_string, make_unibyte_string)
3296 (make_multibyte_string, make_string_from_bytes)
3297 (make_specified_string_string, Fmake_list, Fmake_vector):
3298 Use EMACS_INT for string length variables and arguments.
3299 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
3300 (Fpurecopy): Use EMACS_INT for string size.
3301 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
3302 for vector size.
3303
3304 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
3305 (make_string_from_bytes, make_specified_string_string)
3306 (make_pure_string, string_bytes, check_point_in_composition):
3307 Adjust prototypes.
3308
3309 2010-09-22 Eli Zaretskii <eliz@gnu.org>
3310
3311 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
3312 (check_translation): Use EMACS_INT for buffer positions and
3313 length.
3314
3315 * undo.c (record_marker_adjustment, record_delete)
3316 (record_change, record_point, record_insert)
3317 (record_property_change, Fprimitive_undo): Use EMACS_INT for
3318 buffer positions.
3319
3320 * lisp.h (record_marker_adjustment, record_delete)
3321 (record_change, record_point, record_insert)
3322 (record_property_change, Fprimitive_undo): Adjust prototypes.
3323
3324 2010-09-22 Juanma Barranquero <lekktu@gmail.com>
3325 Eli Zaretskii <eliz@gnu.org>
3326
3327 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
3328
3329 2010-09-22 Eli Zaretskii <eliz@gnu.org>
3330
3331 * minibuf.c (Fminibuffer_contents)
3332 (Fminibuffer_contents_no_properties)
3333 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
3334 positions.
3335
3336 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
3337 mark.
3338
3339 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
3340 (allocate_string_data): Accept EMACS_INT for string length.
3341
3342 * editfns.c (Ffield_string, Ffield_string_no_properties)
3343 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
3344 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
3345 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
3346 (Ffield_end): Use EMACS_INT for buffer positions.
3347
3348 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
3349 point with mark.
3350
3351 * lisp.h (allocate_string_data, make_uninit_string)
3352 (make_uninit_multibyte_string, make_buffer_string)
3353 (make_buffer_string_both): Adjust prototypes.
3354
3355 2010-09-22 Chong Yidong <cyd@stupidchicken.com>
3356
3357 * xml.c: Switch to GNU indentation.
3358 (make_dom): Change parse tree format to match xml.el.
3359 (Fxml_parse_html_string_internal): Rename from html-parse-string.
3360 (Fxml_parse_string_internal): Rename from xml-parse-string.
3361
3362 2010-09-22 Kenichi Handa <handa@m17n.org>
3363
3364 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
3365 only if we are not at a composition.
3366 (set_iterator_to_next): Give it->end_charpos to
3367 composition_compute_stop_pos.
3368 (set_iterator_to_next, next_element_from_buffer): Likewise.
3369
3370 * dispnew.c (buffer_posn_from_coords): Fix position when the
3371 current display element is a grapheme cluster in bidi-reordered
3372 region.
3373
3374 2010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
3375
3376 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
3377 the regions may overlap.
3378
3379 2010-09-21 Juanma Barranquero <lekktu@gmail.com>
3380
3381 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
3382
3383 2010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
3384
3385 * emacs.c: Do not include sys/ioctl.h, not needed.
3386
3387 * doprnt.c: Do not include stdlib.h, config.h does it.
3388 Move #include before macro definition.
3389
3390 2010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
3391
3392 * Makefile.in (temacs): Link using $(CC) not $(LD).
3393 (LD_FIRSTFLAG): Define using autoconf.
3394 (LD): Remove.
3395
3396 Remove HAVE_TERMIOS definitions.
3397 * s/usg5-4-common.h (HAVE_TERMIOS):
3398 * s/template.h (HAVE_TERMIOS):
3399 * s/gnu-linux.h (HAVE_TERMIOS):
3400 * s/darwin.h (HAVE_TERMIOS):
3401 * s/cygwin.h (HAVE_TERMIOS):
3402 * s/bsd-common.h (HAVE_TERMIOS):
3403 * s/aix4-2.h (HAVE_TERMIOS):
3404 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
3405 defined on all non-MS platforms.
3406 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
3407
3408 * xterm.c (xt_action_hook): Use const.
3409
3410 2010-09-20 Juanma Barranquero <lekktu@gmail.com>
3411
3412 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
3413 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
3414 (gethostname) [!HAVE_SOCKETS]: Remove.
3415 (SOCK_REPLACE_HANDLE): Remove macro.
3416 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
3417 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
3418 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
3419 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
3420
3421 2010-09-18 Eli Zaretskii <eliz@gnu.org>
3422
3423 * deps.mk (xml.o): Add dependencies.
3424
3425 * xdisp.c (Fcurrent_bidi_paragraph_direction):
3426 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
3427
3428 * bidi.c (bidi_paragraph_init): Accept an additional argument
3429 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
3430 search back until a paragraph with a strong directional character
3431 is found, and use that to determine paragraph's base direction.
3432
3433 * dispextern.h (bidi_paragraph_init): Update prototype.
3434
3435 2010-09-17 Eli Zaretskii <eliz@gnu.org>
3436
3437 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
3438 of w32api >= 3.15. (Bug#6989)
3439
3440 2010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3441
3442 * process.c (wait_reading_process_output): Don't message about
3443 accept-process-output unless the time limit really is zero.
3444
3445 2010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
3446
3447 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
3448 int/Lisp_Object mixup).
3449
3450 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
3451
3452 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
3453 not HELP.
3454
3455 2010-09-17 Stephen Berman <stephen.berman@gmx.net>
3456
3457 * frame.c (Ftool_bar_pixel_width): New function to expose tool
3458 bar's pixel width to Lisp (Bug#7048).
3459
3460 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
3461
3462 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
3463
3464 2010-09-17 Jan Djärv <jan.h.d@swipnet.se>
3465
3466 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
3467 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
3468
3469 2010-09-17 Kenichi Handa <handa@m17n.org>
3470
3471 * ftfont.c (ftfont_check_otf): Fix previous change.
3472
3473 2010-09-14 Kenichi Handa <handa@m17n.org>
3474
3475 * ftfont.c (ftfont_check_otf): Fix the case of checking just
3476 existence of GSUB or GPOS.
3477
3478 2010-09-14 Juanma Barranquero <lekktu@gmail.com>
3479
3480 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
3481
3482 2010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3483
3484 * xml.c (parse_buffer): Rename to parse_string(), since that's
3485 what it does.
3486 (parse_string): Return nil when the document can't be parsed.
3487
3488 2010-09-14 Jan Djärv <jan.h.d@swipnet.se>
3489
3490 * xterm.c (get_current_vm_state): New function.
3491 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
3492 want_fullscreen so set_wm_state calls are few (Bug#7013).
3493 (x_handle_net_wm_state): Move code to get_current_vm_state and
3494 call that function.
3495
3496 2010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
3497
3498 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
3499
3500 2010-09-14 Kenichi Handa <handa@m17n.org>
3501
3502 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
3503 we may use designation or locking-shift.
3504
3505 2010-09-14 Kenichi Handa <handa@m17n.org>
3506
3507 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
3508 sequence when the source is multibyte.
3509
3510 2010-09-14 Andreas Schwab <schwab@linux-m68k.org>
3511
3512 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
3513 Don't make first argument optional. Doc fix.
3514
3515 2010-09-14 Leo <sdl.web@gmail.com> (tiny change)
3516
3517 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
3518 parameters for the doc string.
3519
3520 2010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3521
3522 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
3523
3524 2010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3525
3526 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
3527 (syms_of_fns): Don't defsubr Sy_or_n_p.
3528 * lisp.h: Don't declare Fy_or_n_p.
3529 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
3530
3531 2010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3532
3533 * xml.c (Fxml_parse_buffer): New function to parse XML files.
3534
3535 2010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3536
3537 * xml.c: New file.
3538 (Fhtml_parse_buffer): New function to interface to the libxml2
3539 html parsing function.
3540
3541 2010-09-05 Juanma Barranquero <lekktu@gmail.com>
3542
3543 * biditype.h: Regenerate.
3544
3545 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
3546
3547 * nsimage.m (ns_load_image): Check argument types.
3548
3549 * image.c: Remove all uses of gcpro.
3550 (xpm_load): Check all lisp types.
3551 (pbm_load): Likewise.
3552 (png_load): Likewise.
3553 (jpeg_load): Likewise.
3554 (tiff_load): Likewise.
3555 (gif_load): Likewise.
3556 (imagemagick_load_image): Likewise.
3557 (imagemagick_load): Likewise.
3558 (svg_load): Likewise.
3559 (gs_load): Likewise.
3560
3561 2010-09-04 Eli Zaretskii <eliz@gnu.org>
3562
3563 * w32uniscribe.c (uniscribe_shape): Update commentary.
3564 Don't try to reorder grapheme clusters, since LGSTRING should always
3565 hold them in the logical order.
3566 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
3567 return glyph codes in the logical order.
3568
3569 2010-09-04 Andreas Schwab <schwab@linux-m68k.org>
3570
3571 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
3572 (imagemagick_load_image): Fix type mismatch.
3573 (Fimagemagick_types): Likewise. Doc fix.
3574
3575 2010-09-02 Jan Djärv <jan.h.d@swipnet.se>
3576
3577 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
3578
3579 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
3580
3581 * xselect.c: Remove declaration of cut-buffer objects and functions.
3582 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
3583 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
3584 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
3585 (Fx_rotate_cut_buffers_internal): Remove.
3586 (syms_of_xselect): Remove defsubr of above.
3587 Remove intern of QCUT_BUFFERn.
3588
3589 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3590
3591 * cmds.c (Vblink_paren_function): Remove.
3592 (internal_self_insert): Make it insert N chars at a time.
3593 Don't call blink-paren-function.
3594 (Fself_insert_command): Adjust accordingly.
3595 (syms_of_cmds): Don't declare blink-paren-function.
3596
3597 2010-08-31 Kenichi Handa <handa@m17n.org>
3598
3599 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
3600 characters.
3601
3602 * term.c (encode_terminal_code): Fix the previous change.
3603 (produce_glyphs): Don't set it->char_to_display here.
3604 Don't handle unibyte-display-via-language-environment here.
3605 (produce_special_glyphs): Set temp_it.char_to_display before
3606 calling produce_glyphs.
3607
3608 * xdisp.c (get_next_display_element): Set it->char_to_display
3609 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
3610 characters.
3611 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
3612 calling PRODUCE_GLYPHS.
3613 (append_space_for_newline): Save and store it->char_to_display.
3614 Set it->char_to_display before calling PRODUCE_GLYPHS.
3615 (extend_face_to_end_of_line): Set it->char_to_display before
3616 calling PRODUCE_GLYPHS.
3617 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
3618 character to its byte value.
3619 (get_char_glyph_code): New function.
3620 (produce_stretch_glyph): Set it2.char_to_display too before
3621 calling x_produce_glyphs.
3622 (x_produce_glyphs): Simplify by using the same code for ASCII and
3623 non-ASCII characters. Don't set it->char_to_display here.
3624 Don't handle unibyte-display-via-language-environment here. For a
3625 character of no glyph, use font->space_width instead of FONT_WIDTH.
3626
3627 2010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
3628
3629 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
3630
3631 2010-08-31 Chong Yidong <cyd@stupidchicken.com>
3632
3633 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
3634
3635 2010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
3636
3637 * marker.c (Fcopy_marker): Make the first arg optional.
3638
3639 2010-08-30 Kenichi Handa <handa@m17n.org>
3640
3641 * composite.c (composition_update_it): Fix computing of
3642 cmp_it->width.
3643
3644 2010-08-29 Kenichi Handa <handa@m17n.org>
3645
3646 * term.c (encode_terminal_code): Encode byte chars to the
3647 corresponding bytes.
3648
3649 2010-08-29 Jan Djärv <jan.h.d@swipnet.se>
3650
3651 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
3652
3653 2010-08-26 Kenichi Handa <handa@m17n.org>
3654
3655 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
3656 on calling composition_compute_stop_pos.
3657
3658 2010-08-25 Kenichi Handa <handa@m17n.org>
3659
3660 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
3661 :otf.
3662
3663 * composite.c (composition_compute_stop_pos): Don't break
3664 composition at PT.
3665 (composition_reseat_it): Likewise. Fix calculation of character
3666 position starting a composition.
3667 (Fcomposition_get_gstring): Don't limit the number of components
3668 for automatic composition.
3669
3670 2010-08-25 Kenichi Handa <handa@m17n.org>
3671
3672 * composite.c (composition_compute_stop_pos): In forward search,
3673 pay attention to the possibility that some character after ENDPOS
3674 will be composed with charactrs before ENDPOS.
3675
3676 2010-08-24 Chong Yidong <cyd@stupidchicken.com>
3677
3678 * keyboard.c (command_loop_1): Don't clobber primary selection
3679 during handle-switch-frame (Bug#6872).
3680
3681 2010-08-23 Michael Albinus <michael.albinus@gmx.de>
3682
3683 * dbusbind.c: Accept UNIX domain sockets as bus address.
3684 (Fdbus_close_bus): New function.
3685 (Vdbus_registered_buses): New variable.
3686 (xd_initialize): Implement string as bus address.
3687 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
3688 (Fdbus_get_unique_name, Fdbus_call_method)
3689 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
3690 (Fdbus_method_error_internal, Fdbus_send_signal)
3691 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
3692 check. This is done in xd_initialize_bus. Adapt doc string, if
3693 necessary.
3694 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
3695 Vdbus_registered_buses.
3696 (Vdbus_registered_objects_table): Create hash.
3697
3698 2010-08-22 Juri Linkov <juri@jurta.org>
3699
3700 * keyboard.c (Fexecute_extended_command): Move reading a command name
3701 with `completing-read' to a new Elisp function `read-extended-command'.
3702 Call it to read a command to `function' (bug#5364, bug#5214).
3703
3704 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3705
3706 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
3707
3708 2010-08-22 Andreas Schwab <schwab@linux-m68k.org>
3709
3710 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
3711 instead of SAFE_ALLOCA.
3712
3713 2010-08-22 Chong Yidong <cyd@stupidchicken.com>
3714
3715 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
3716 (Bug#6214).
3717
3718 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
3719
3720 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
3721
3722 2010-08-22 Jan Djärv <jan.h.d@swipnet.se>
3723
3724 * doc.c (Fsnarf_documentation): Initialize skip_file before
3725 build-files test.
3726
3727 2010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
3728
3729 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
3730 New definitions.
3731 (HAVE_TERMIO): Remove.
3732
3733 2010-08-22 Eli Zaretskii <eliz@gnu.org>
3734
3735 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
3736
3737 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
3738 for w32.
3739
3740 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
3741 it's done in nt/config.nt.
3742
3743 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
3744
3745 * unexcoff.c (report_error, make_hdr, write_segment)
3746 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
3747 Convert argument lists and prototypes to ANSI C.
3748 (make_hdr, write_segment): Remove unused variables.
3749 (unexec): Remove commented-out line. Initialize `new' to shut up
3750 compiler warnings.
3751
3752 2010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
3753
3754 Simplify termio code.
3755 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
3756 HAVE_TERMIO code is obsolete.
3757 Replace HAVE_TERMIOS conditionals with !DOS_NT.
3758 * systty.h: Do not define HAVE_TCATTR.
3759 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
3760 Do not define EMACS_HAVE_TTY_PGRP. Only define
3761 EMACS_GET_TTY_PGRP for !DOS_NT.
3762 * sysdep.c: Include sysselect.h unconditionally. Do not include
3763 sys/ioctl.h and termios.h, systty.h does it.
3764 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
3765 (init_baud_rate): Remove HAVE_TERMIO code.
3766 (child_setup_tty): Remove HAVE_TERMIO code.
3767 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
3768 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
3769 (new_ltchars, new_tchars): Remove, unused.
3770 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
3771 code. Remove special casing for __mips__, it was a no-op.
3772 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
3773 (init_sys_modes): Remove HPUX special case.
3774 * process.c: Include stdlib.h unconditionally. Do not include
3775 fcntl.h, systty.h does it. Remove conditional code for
3776 HAVE_SERIAL, it is always true.
3777 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
3778 always true when SIGNALS_VIA_CHARACTERS is true.
3779 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
3780 !WINDOWSNT means HAVE_TERMIOS.
3781 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
3782 conditional, which is true for all HAVE_TERMIOS systems.
3783 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
3784 instead of HAVE_TERMIOS.
3785 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
3786 EMACS_HAVE_TTY_PGRP.
3787 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
3788 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
3789 anyway.
3790
3791 2010-08-21 Eli Zaretskii <eliz@gnu.org>
3792
3793 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
3794 mirroring pixel positions.
3795
3796 2010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
3797
3798 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
3799 write only.
3800 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
3801 malloc_sbrk_used, nothing uses them.
3802
3803 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
3804 defined, unconditionally defined in lisp.h.
3805
3806 * term.c: Do not include <termios.h>, systty.h does it.
3807
3808 * s/unixware.h (HAVE_TCATTR):
3809 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
3810 systty.h defines it when HAVE_TERMIOS is defined.
3811
3812 2010-08-20 Eli Zaretskii <eliz@gnu.org>
3813
3814 * dispnew.c (buffer_posn_from_coords): Fix last change for text
3815 terminals: add one-character offset for R2L lines.
3816
3817 * emacs.c <emacs_version>: Add a comment regarding
3818 msdos/mainmake.v2's dependency on the syntax of this declaration.
3819
3820 2010-08-20 Eli Zaretskii <eliz@gnu.org>
3821
3822 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
3823 position for R2L lines by mirroring the pixel position wrt the
3824 text are box. Improve commentary.
3825
3826 2010-08-20 Andreas Schwab <schwab@linux-m68k.org>
3827
3828 * image.c (imagemagick_clear_image): Remove debugging output.
3829
3830 2010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3831
3832 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
3833 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
3834 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
3835 self-insert-face.
3836 (syms_of_cmds): Initialize the new vars.
3837
3838 2010-08-19 Jason Rumney <jasonr@gnu.org>
3839
3840 * w32menu.c (set_frame_menubar): Remove call to undefined function.
3841
3842 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
3843
3844 2010-08-19 Jan Djärv <jan.h.d@swipnet.se>
3845
3846 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
3847
3848 2010-08-18 Eli Zaretskii <eliz@gnu.org>
3849
3850 * xterm.c (x_draw_bar_cursor):
3851 * w32term.c (x_draw_bar_cursor): If the character under cursor is
3852 R2L, draw the bar cursor on its right rather than on its left.
3853
3854 2010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
3855
3856 * eval.c (Fdefmacro): Only obey one declaration.
3857
3858 * casefiddle.c (casify_region): Setup gl_state.
3859
3860 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3861
3862 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
3863
3864 2010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3865
3866 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
3867
3868 2010-08-18 David De La Harpe Golden <david@harpegolden.net>
3869
3870 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
3871 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
3872 QPRIMARY => NXPrimaryPboard.
3873 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
3874 NXPrimaryPboard => QPRIMARY.
3875 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
3876 NXSecondaryPboard = SecondarySelection.
3877 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
3878
3879 2010-08-18 Joakim Verona <joakim@verona.se>
3880
3881 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
3882 defined:
3883 (imagemagick_image_p): New function to test for ImageMagic image.
3884 (imagemagick_load): New function to load ImageMagick image.
3885 (imagemagick_load_image): New function, helper for imagemagick_load.
3886 (imagemagick-types): New function.
3887 (Qimagemagick): New Lisp_object.
3888 (imagemagick-render-type): New variable, decides which renderer to use.
3889
3890 2010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
3891
3892 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
3893 is a string.
3894
3895 2010-08-17 Jan Djärv <jan.h.d@swipnet.se>
3896
3897 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
3898 x_set_tool_bar_position handler.
3899
3900 2010-08-17 Eli Zaretskii <eliz@gnu.org>
3901
3902 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
3903 x_set_tool_bar_position handler, needed to support changes from
3904 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
3905
3906 2010-08-16 Jan Djärv <jan.h.d@swipnet.se>
3907
3908 * nsselect.m: include keyboard.h for QPRIMARY, remove its
3909 declaration (Bug#6863).
3910 (syms_of_nsselect): Don't intern QPRIMARY.
3911
3912 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
3913
3914 * keyboard.h (QPRIMARY): Declare (Bug#6864).
3915
3916 2010-08-16 Chong Yidong <cyd@stupidchicken.com>
3917
3918 * keyboard.c (command_loop_1): Avoid setting selection twice,
3919 since it's done in deactivate-mark as well.
3920 (Vselect_active_regions): Change default to t. Replace `lazy'
3921 with non-default value `only', meaning only set PRIMARY for
3922 temporarily active regions.
3923
3924 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
3925 select-active-regions.
3926
3927 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
3928
3929 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
3930 isn't a string.
3931
3932 2010-08-15 Andreas Schwab <schwab@linux-m68k.org>
3933
3934 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
3935
3936 2010-08-15 Jan Djärv <jan.h.d@swipnet.se>
3937
3938 * keyboard.c (parse_tool_bar_item): malloc buf.
3939 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
3940 new_lbl (Bug#6855).
3941
3942 2010-08-14 Eli Zaretskii <eliz@gnu.org>
3943
3944 * xterm.c (x_draw_stretch_glyph_string):
3945 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
3946 the cursor on the right edge of the stretch glyph.
3947
3948 * xdisp.c (window_box_right_offset, window_box_right):
3949 Fix commentary.
3950
3951 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
3952 direction when point is inside a run of whitespace characters.
3953
3954 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
3955
3956 2010-08-14 Jason Rumney <jasonr@gnu.org>
3957
3958 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
3959
3960 2010-08-14 Chong Yidong <cyd@stupidchicken.com>
3961
3962 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
3963
3964 2010-08-13 Jason Rumney <jasonr@gnu.org>
3965
3966 * w32menu.c (simple_dialog_show): Use unicode message box if available.
3967 (MessageBoxW_Proc): New function typedef.
3968 (unicode-message-box): New function pointer.
3969 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
3970
3971 2010-08-13 Jan Djärv <jan.h.d@swipnet.se>
3972
3973 * frame.h (Qtool_bar_position): Declare.
3974
3975 * xfns.c (Fx_create_frame): Call x_default_parameter for
3976 Qtool_bar_position.
3977
3978 2010-08-13 Eli Zaretskii <eliz@gnu.org>
3979
3980 * unexcoff.c: Remove the parts used when "emacs" is not defined.
3981 (report_error, report_error_1): Ditto.
3982 (write_segment): Remove "#if 0" unused code.
3983 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
3984 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
3985 (start_of_text): Remove unused function (was used only if NO_REMAP
3986 was NOT defined).
3987
3988 * msdos.c (IT_set_face): Fix format string to match argument
3989 types.
3990 (IT_write_glyphs, IT_note_mode_line_highlight)
3991 (IT_set_frame_parameters): Remove unused variables.
3992 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
3993 (IT_set_terminal_modes): Disambiguate expression in if clause.
3994 (Fmsdos_remember_default_colors): Return Qnil.
3995 (IT_set_frame_parameters): Add parens to disambiguate boolean
3996 expression for logging the cursor type to termscript.
3997 (keyboard_layout_list, keypad_translate_map)
3998 (grey_key_translate_map): Add braces in inner initializers.
3999 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
4000 (dos_rawgetc): Remove unused label.
4001 (XMenuActivate): Add braces to remove ambiguous `else'.
4002 (dos_ttraw): Always return a value.
4003 (spawnve): Declare.
4004 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
4005
4006 * dosfns.h (x_set_title): Declare.
4007
4008 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
4009 Remove unused variables.
4010
4011 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
4012 variables.
4013 (init_dosfns): Declare get_lim_data.
4014 (system_process_attributes): Declare Fget_internal_run_time.
4015
4016 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
4017 list to be consistent with menu.h.
4018
4019 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
4020 warnings due to mixing of "char *" and "const char *".
4021
4022 2010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4023
4024 Introduce a new comment style "c" flag.
4025 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
4026 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
4027 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
4028 (syntax_prefix_flag_p): New function.
4029 (Fstring_to_syntax): Understand new "c" flag.
4030 (Finternal_describe_syntax_value): Recognize new flag; use the
4031 SYNTAX_FLAGS_* macros.
4032 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
4033 comment style to accomodate the new styles.
4034 (back_comment, forw_comment, Fforward_comment, scan_lists)
4035 (scan_sexps_forward): Update code to obey the new comment style flag.
4036
4037 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
4038
4039 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
4040
4041 2010-08-11 Jan Djärv <jan.h.d@swipnet.se>
4042
4043 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
4044 first.
4045 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
4046
4047 * gtkutil.h (xg_check_special_colors): Declare.
4048
4049 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
4050 (xg_create_frame_widgets): Connect theme name changes to
4051 style_changed_cb.
4052
4053 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
4054 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
4055 (x_term_init): Use char[] display_opt and name_opt instead of
4056 string literal. file is const char*.
4057
4058 * xsmfns.c (NOSPLASH_OPT): Change to char[].
4059 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
4060 props. Free them at the end.
4061
4062 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
4063
4064 * xrdb.c (get_system_app): Make path const and use char *p for
4065 non-const char.
4066
4067 * xmenu.c (Fx_popup_dialog): error_name is const char*.
4068 (xmenu_show): error parameter is const char **. pane_string is const
4069 char *.
4070 (button_names): Is const char *.
4071 (xdialog_show): error_name and pane_string is const.
4072
4073 * process.h (synch_process_death): Is const char*.
4074
4075 * w32menu.c (w32_menu_show):
4076 * nsmenu.m (ns_menu_show): error parameter is const char **.
4077
4078 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
4079 is const char **.
4080
4081 * menu.c (Fx_popup_menu): error_name is const.
4082
4083 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
4084 with unsigned char and XtPointer with void *.
4085
4086 * gtkutil.h: Replace widget_value with struct _widget_value.
4087 (enum button_type, struct _widget_value): Remove and use the one from
4088 keyboard.h.
4089
4090 * gtkutil.c (get_utf8_string): Always return an allocated string.
4091 Parameter is const.
4092 (create_dialog, xg_create_one_menuitem, create_menus)
4093 (xg_item_label_same_p, xg_update_menu_item): Free result from
4094 get_utf8_string.
4095 (xg_separator_p, xg_item_label_same_p): label is const.
4096
4097 * font.h (font_open_by_name): Make name const.
4098
4099 * font.c (font_open_by_name): Make name const.
4100
4101 * floatfns.c (matherr): Use a const char* variable for x->name.
4102
4103 * emacs.c (main): Pass char[] to putenv instead of literal.
4104
4105 * callproc.c (synch_process_death): Make const.
4106 (Fcall_process): Make signame const.
4107
4108 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
4109 (addDisplayItemWithImage): Use const char*.
4110
4111 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
4112 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
4113
4114 * nsfont.m (ns_descriptor_to_entity): Use const char*.
4115
4116 * keyboard.h (_widget_value): name, value and key are const char*.
4117
4118 * unexmacosx.c (unexec_error): Use const char *.
4119
4120 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4121
4122 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
4123 (font_parse_name, font_open_by_name):
4124 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
4125 (font_parse_name, font_open_by_name): Remove const.
4126
4127 2010-08-09 Andreas Schwab <schwab@linux-m68k.org>
4128
4129 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
4130 definition.
4131
4132 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
4133 * m/amdx86-64.h: Likewise.
4134 * m/arm.h: Likewise.
4135 * m/hp800.h: Likewise.
4136 * m/ia64.h: Likewise.
4137 * m/ibmrs6000.h: Likewise.
4138 * m/ibms390.h: Likewise.
4139 * m/intel386.h: Likewise.
4140 * m/iris4d.h: Likewise.
4141 * m/m68k.h: Likewise.
4142 * m/macppc.h: Likewise.
4143 * m/mips.h: Likewise.
4144 * m/sh3.h: Likewise.
4145 * m/sparc.h: Likewise.
4146 * m/template.h: Likewise.
4147 * m/vax.h: Likewise.
4148 * m/xtensa.h: Likewise.
4149 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
4150 WORDS_BIG_ENDIAN.
4151 * lisp.h: Likewise.
4152 * md5.c: Likewise.
4153 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
4154
4155 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4156
4157 Use const char* instead of char*.
4158 Reduce the number of warnings with -Wwrite-strings.
4159 * xrdb.c (get_environ_db, get_system_name):
4160 * unexelf.c (find_section):
4161 * term.c (string_cost, string_cost_one_line, per_line_cost)
4162 (get_named_tty, init_tty):
4163 * sysdep.c (sys_subshell):
4164 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
4165 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
4166 * search.c (Freplace_match):
4167 * process.c (Fmake_network_process, send_process, init_process):
4168 * lread.c (Fload, init_lread):
4169 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
4170 * keyboard.c (parse_tool_bar_item, struct event_head):
4171 * gtkutil.h (xg_get_font_name):
4172 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
4173 (make_widget_for_menu_item, make_menu_item, create_menus)
4174 (xg_make_tool_item):
4175 * font.c (parse_matrix, font_parse_name):
4176 * floatfns.c (rounding_driver, float_error_fn_name):
4177 * filelock.c (get_boot_time_1, lock_file_1):
4178 * fileio.c (barf_or_query_if_file_exists, check_writable):
4179 * editfns.c (get_system_name, get_operating_system_release)
4180 (Fencode_time, Fset_time_zone_rule):
4181 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
4182 * buffer.c (defvar_per_buffer): Use const.
4183
4184 2010-08-08 Kenichi Handa <handa@m17n.org>
4185
4186 * charset.c: Include <stdlib.h>.
4187 (struct charset_sort_data): New struct.
4188 (charset_compare): New function.
4189 (Fsort_charsets): New function.
4190 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
4191
4192 * coding.c (decode_coding_iso_2022): Fix checking of dimension
4193 number in CTEXT extended segment.
4194
4195 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4196
4197 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
4198 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
4199
4200 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4201
4202 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
4203 (Fhash_table_size): Fix typos in docstrings.
4204 (Fmake_hash_table): Doc fix.
4205
4206 2010-08-08 Juanma Barranquero <lekktu@gmail.com>
4207
4208 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
4209 Doc fix (bug#5625).
4210
4211 2010-08-08 Ken Brown <kbrown@cornell.edu>
4212
4213 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
4214 the MSDOS definition.
4215
4216 2010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
4217
4218 Use const char* instead of char*.
4219 * xterm.c (x_create_toolkit_scroll_bar):
4220 * xfont.c (xfont_list_pattern):
4221 * xfns.c (x_default_scroll_bar_color_parameter)
4222 (xic_create_fontsetname, x_default_font_parameter)
4223 (x_screen_planes):
4224 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
4225 (store_mode_line_string, decode_mode_spec, display_string):
4226 * menu.c (digest_single_submenu):
4227 * keymap.h (initial_define_key, initial_define_lispy_key):
4228 * keymap.c (initial_define_key, initial_define_lispy_key):
4229 * image.c (image_error, image_keyword):
4230 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
4231 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
4232 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
4233 (ftfont_list, ftfont_match):
4234 * frame.c (frame_parm_table):
4235 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
4236 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
4237 (font_add_log, font_deferred_log):
4238 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
4239 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
4240 (font_add_log, font_deferred_log):
4241 * emacs.c (argmatch):
4242 * dispextern.h (struct it):
4243 * coding.c (ENCODE_DESIGNATION):
4244 * charset.c (define_charset_internal): Use const.
4245
4246 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
4247
4248 * xrdb.c: Remove include guard.
4249 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
4250 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
4251 realloc->xrealloc instead of using #defines.
4252
4253 2010-08-08 Eli Zaretskii <eliz@gnu.org>
4254
4255 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
4256 * editfns.c (Fline_beginning_position, Fline_end_position):
4257 State in the doc strings that start and end of line are in the
4258 logical order.
4259
4260 * xdisp.c (display_line): Move the handling of overlay arrow after
4261 the call to find_row_edges. (Bug#6699)
4262
4263 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
4264
4265 * keyboard.c (command_loop_1):
4266 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
4267
4268 2010-08-07 Chong Yidong <cyd@stupidchicken.com>
4269
4270 * insdel.c (prepare_to_modify_buffer): Save active region text to
4271 Vsaved_region_selection.
4272
4273 * xselect.c (QPRIMARY): Move to keyboard.c.
4274
4275 * keyboard.c (Vselect_active_regions): Move from simple.el.
4276 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
4277 (command_loop_1): Set window selection prior to deactivating the mark.
4278
4279 2010-08-07 Juanma Barranquero <lekktu@gmail.com>
4280
4281 * alloc.c (lisp_malloc):
4282 * buffer.c (set_buffer_internal, set_buffer_internal_1):
4283 * charset.h (emacs_mule_charset):
4284 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
4285 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
4286 (bitch_at_user):
4287 * lisp.h (Fcheck_coding_system, Fget_text_property)
4288 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
4289 Remove duplicate declarations.
4290
4291 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
4292
4293 * process.c: Simplify include logic.
4294
4295 * keyboard.h (quit_char): Add declaration.
4296 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
4297 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
4298 Add declarations.
4299 * sysdep.c:
4300 * w32.c: Remove the above declarations.
4301
4302 Remove extern declarations in .c files, .h files have them.
4303 * xterm.c:
4304 * xdisp.c:
4305 * msdos.c:
4306 * image.c:
4307 * gtkutil.c:
4308 * fileio.c:
4309 * eval.c: Remove declarations.
4310
4311 * frame.c (frame_params): Make const.
4312
4313 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
4314
4315 * emacs.c (emacs_copyright, emacs_version): Make static.
4316 (Vinitial_window_system, Vauto_save_list_file_name)
4317 (Vinhibit_redisplay): Remove declarations.
4318 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
4319 for AIX.
4320
4321 Use const for some arrays and functions.
4322 * xterm.h (xg_set_icon_from_xpm_data):
4323 * xfns.c (xg_set_icon_from_xpm_data):
4324 * term.c (fkeys):
4325 * keyboard.c (lispy_accent_keys, lispy_function_keys)
4326 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
4327 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
4328 (frame.c frame_parms):
4329 * emacs-icon.h (gnu_xpm_bits):
4330 * callint.c (callint_argfuns): Use const.
4331
4332 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
4333
4334 * sysdep.c: Move include term.h last of includes (Bug#6812).
4335
4336 2010-08-06 Eli Zaretskii <eliz@gnu.org>
4337
4338 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
4339
4340 * msdos.c (IT_display_cursor): Log cursor position on termscript.
4341
4342 * .gdbinit (pgx): Display the avoid_cursor_p flag.
4343
4344 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
4345
4346 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
4347
4348 2010-08-06 Jan Djärv <jan.h.d@swipnet.se>
4349
4350 * xterm.h (x_get_focus_frame): Declare.
4351
4352 * keyboard.h (poll_for_input_1): Unconditionally declare.
4353
4354 * nsterm.h (x_set_menu_bar_lines): Declare.
4355
4356 * window.c: Don't include menu.h, it depends on lots of other .h-files.
4357
4358 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
4359
4360 * window.c: Include menu.h.
4361
4362 * unexmacosx.c (print_region_list, print_regions)
4363 (build_region_list, find_emacs_zone_regions)
4364 (unexec_regions_merge, read_load_commands, dump_it)
4365 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
4366
4367 * term.c: Check HAVE_SYS_IOCTL_H.
4368
4369 * sysdep.c: Check HAVE_TERM_H.
4370
4371 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
4372
4373 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
4374 (ns_ring_bell, ns_defined_color, hide_hourglass)
4375 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
4376 Convert to ANSI C prototypes.
4377 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
4378 before code.
4379
4380 * nsterm.h : Include sysselect.h.
4381 (x_sync, x_get_focus_frame, x_set_mouse_position)
4382 (x_set_mouse_pixel_position, x_make_frame_visible)
4383 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
4384 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
4385 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
4386 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
4387 Declare.
4388
4389 * nsmenu.m (popup_activated, name_is_separator)
4390 (syms_of_nsmenu): Convert to ANSI C prototypes.
4391 (runMenuAt): Prototypes and move declarations before code.
4392
4393 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
4394
4395 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
4396 prototypes.
4397
4398 * nsfns.m (have_menus_p, ns_display_info_for_name)
4399 (x_set_cursor_type, ns_appkit_version_str)
4400 (ns_appkit_version_int, ns_do_applescript)
4401 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
4402 (syms_of_nsfns): Convert to ANSI C prototypes.
4403
4404 * menu.h (x_set_menu_bar_line): Declare.
4405 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
4406
4407 * lisp.h (fmod_float): Declare.
4408
4409 * image.c (xpm_scan, xpm_make_color_table_v)
4410 (xpm_put_color_table_v, xpm_get_color_table_v)
4411 (xpm_make_color_table_h, xpm_put_color_table_h)
4412 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
4413 (xpm_load): Convert to ANSI C prototypes.
4414
4415 * emacs.c: Include nsterm.h if HAVE_NS.
4416
4417 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
4418
4419 2010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
4420
4421 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
4422 subprocesses, only MSDOS does not define HAVE_SOCKETS.
4423 (socket_options): Use const char* for name.
4424
4425 2010-08-06 Juanma Barranquero <lekktu@gmail.com>
4426
4427 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
4428
4429 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
4430 Don't declare xmalloc_widget_value and digest_single_submenu.
4431
4432 * w32font.c (Qlatin): Remove declaration.
4433
4434 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
4435
4436 * dired.c (compile_pattern): Restore declaration.
4437
4438 2010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
4439
4440 Remove extern declarations in .c files, .h files have them.
4441 * data.c:
4442 * dired.c:
4443 * editfns.c:
4444 * filelock.c:
4445 * fns.c:
4446 * font.c:
4447 * fontset.c:
4448 * frame.c:
4449 * fringe.c:
4450 * ftfont.c:
4451 * gtkutil.c:
4452 * indent.c:
4453 * keyboard.c:
4454 * keymap.c:
4455 * lread.c:
4456 * menu.c:
4457 * print.c:
4458 * search.c:
4459 * sound.c:
4460 * window.c:
4461 * xdisp.c:
4462 * xfaces.c:
4463 * xfns.c:
4464 * xfont.c:
4465 * xftfont.c:
4466 * xmenu.c:
4467 * xterm.c: Remove declarations.
4468
4469 Cleanup syssignal.h.
4470 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
4471 (main_thread): Move down to remove #ifdef.
4472 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
4473 Remove conditional definition following unconditional ones.
4474
4475 * lisp.h: Remove HAVE_SHM code, unused.
4476 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
4477 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
4478 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
4479 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
4480 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
4481 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
4482 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
4483 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
4484 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
4485 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
4486 (Qwindow_scroll_functions, Vafter_load_alist)
4487 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
4488 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
4489 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
4490 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
4491 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
4492 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
4493 (initial_argv, last_nonmenu_event, load_in_progress)
4494 (noninteractive_need_newline, scroll_margin): Add declarations.
4495
4496 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
4497 Remove declarations, menu.h has them.
4498 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
4499 (Vinput_method_function, Qinput_method_function)
4500 (Qevent_symbol_element_mask, last_event_timestamp):
4501 * dispextern.h (Voverflow_newline_into_fringe):
4502 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
4503 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
4504 (syms_of_w32font, syms_of_nsfont):
4505 * fontset.h (find_font_encoding, Qlatin):
4506 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
4507 (Vtool_bar_mode, set_frame_menubar):
4508 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
4509 * xterm.h (Qx_gtk_map_stock):
4510 * keymap.h (meta_prefix_char): Add declarations.
4511
4512 * term.c: Remove dead code.
4513
4514 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
4515 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
4516 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
4517 which is what was there before BSD_PGRPS was removed.
4518
4519 2010-08-05 Eli Zaretskii <eliz@gnu.org>
4520
4521 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
4522
4523 * unexcoff.c: Renamed from unexec.c.
4524
4525 2010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4526
4527 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
4528
4529 2010-08-03 Johan Bockgård <bojohan@gnu.org>
4530
4531 * data.c (Flocal_variable_p): Handle variable aliases correctly.
4532 (Bug#6744)
4533
4534 2010-08-02 Jan Djärv <jan.h.d@swipnet.se>
4535
4536 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
4537 to TRUE if depth of screen is < 16.
4538
4539 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
4540 USE_GTK_TOOLTIP.
4541 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
4542 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
4543 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
4544 USE_GTK_TOOLTIP.
4545 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
4546
4547 * xterm.h (USE_GTK_TOOLTIP): New define.
4548 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
4549
4550 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
4551 to Control-D (Bug#6771).
4552
4553 2010-08-02 Juanma Barranquero <lekktu@gmail.com>
4554
4555 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
4556 Wording by Drew Adams <drew.adams@oracle.com>.
4557
4558 2010-08-01 Jan Djärv <jan.h.d@swipnet.se>
4559
4560 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
4561 ttip_lbl.
4562
4563 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
4564 calling gtk_widget_queue_draw.
4565 (x_free_frame_resources): Call xg_free_frame_widgets.
4566
4567 * xfns.c (x_gtk_use_system_tooltips): New variable.
4568 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
4569 new gtkutil tooltip functions to show the tooltip.
4570 (Fx_hide_tip): Call xg_hide_tooltip.
4571 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
4572
4573 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
4574 (xg_show_tooltip, xg_hide_tooltip): Declare.
4575
4576 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
4577 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
4578 New functions.
4579 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
4580 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
4581 Remove code that is commented out.
4582
4583 2010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
4584
4585 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
4586
4587 2010-07-31 Chong Yidong <cyd@stupidchicken.com>
4588
4589 * xselect.c (x_own_selection): Use list4.
4590
4591 2010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
4592
4593 * buffer.c (Qwindow): Do not define, already defined in data.c.
4594 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
4595
4596 2010-07-29 Chad Brown <yandros@mit.edu>
4597
4598 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
4599 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
4600 * config.in: Undef HAVE_DIRENT_H.
4601 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
4602 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
4603
4604 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4605
4606 Rename s/usg5-4.h -> s/usg5-4-common.h.
4607 * s/usg5-4.h: Rename file to ...
4608 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
4609 * s/unixware.h:
4610 * s/sol2-6.h:
4611 * s/irix6-5.h: Update includes accordingly.
4612
4613 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
4614
4615 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
4616
4617 * xterm.h (struct x_output): Add toolbar_top_height,
4618 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
4619 Remove toolbar_height.
4620 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
4621 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
4622 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
4623 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
4624
4625 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
4626
4627 * xfns.c (x_set_tool_bar_position): New function.
4628 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
4629 (x_frame_parm_handlers): Add x_set_tool_bar_position.
4630 (syms_of_xfns): If USE_GTK, provide move-toolbar.
4631
4632 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
4633 and FRAME_TOOLBAR_LEFT_WIDTH.
4634
4635 * gtkutil.h (xg_change_toolbar_position): Declare.
4636
4637 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
4638 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
4639 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
4640 (xg_create_frame_widgets): Create a hobox for placing widgets
4641 vertically. Use gtk_box_pack_start.
4642 (xg_height_or_width_changed): Rename from xg_height_changed.
4643 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
4644 (xg_update_frame_menubar, free_frame_menubar): Change to
4645 xg_height_or_width_changed.
4646 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
4647 size correctly. Remove hardcoded 4, instead use handlebox size -
4648 toolbar size.
4649 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
4650 size correctly. Use handlebox size + toolbar size as additional size.
4651 (xg_pack_tool_bar): POS is a new parameter.
4652 Set orientation of tool bar based on pos.
4653 Only make handlebox_widget if NULL.
4654 Check if tool bar goes to vbox or hbox depending on pos.
4655 (xg_update_tool_bar_sizes): New function.
4656 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
4657 height, call xg_update_tool_bar_sizes instead.
4658 (free_frame_tool_bar): Remove from hbox or vbox depending on
4659 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
4660 (xg_change_toolbar_position): New function.
4661
4662 * frame.h (struct frame): Add tool_bar_position.
4663 (Qbottom): Declare.
4664
4665 * frame.c (Qtool_bar_position): New variable.
4666 (make_frame): Set tool_bar_position to Qtop.
4667 (frame_parms): Add tool-bar-position.
4668 (x_report_frame_params): Store tool_bar_position.
4669 (x_set_fringe_width): Reset wm size hint after fringe changes.
4670
4671 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4672
4673 Make lisp_time_argument declaration work on all systems.
4674 * lisp.h (lisp_time_argument): Move declaration ...
4675 * systime.h (lisp_time_argument): ... here
4676 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
4677
4678 2010-07-29 Jan Djärv <jan.h.d@swipnet.se>
4679
4680 * vm-limit.c (POINTER): Add typedef for it.
4681 (start_of_data): Change return type from POINTER to char *.
4682
4683 * frame.h (Qtty_color_mode): Move declaration out of ifdef
4684 HAVE_WINDOW_SYSTEM.
4685
4686 2010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4687
4688 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
4689 Remove reference to __osf__, unused.
4690
4691 * mem-limits.h: Remove duplicated includes.
4692 (NULL): Remove definition, unused.
4693 (POINTER): Remove definition.
4694 (start_of_data): Use char* in prototype, as the function
4695 definition does.
4696
4697 Remove extern declarations from .c files, and them to .h files.
4698 * keyboard.h (Qhelp_echo, waiting_for_input)
4699 (input_available_clear_time, ignore_mouse_drag_p)
4700 (Vdouble_click_time, real_this_command, Vthis_original_command):
4701 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
4702 (Voverriding_local_map_menu_flag):
4703 * lisp.h (Qinteractive_form, use_file_dialog)
4704 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
4705 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
4706 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
4707 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
4708 (Qfunction, debug_on_next_call, Qfield)
4709 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
4710 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
4711 (Qfile_directory_p, Qinsert_file_contents)
4712 (Qcompletion_ignore_case, Qcompletion_ignore_case)
4713 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
4714 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
4715 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
4716 (Qminibuffer_prompt)
4717 (Vtemporary_file_directory,char_ins_del_vector, Qface):
4718 * xterm.h (gray_bitmap_width, gray_bitmap_height)
4719 (gray_bitmap_bits, xic_create_fontsetname):
4720 * coding.h (Vtranslation_table_for_input): Add extern declarations.
4721
4722 * xsmfns.c (Vuser_login_name):
4723 * xrdb.c (Vdouble_click_time):
4724 * xfaces.c (xic_create_fontsetname):
4725 * w32select.c (waiting_for_input):
4726 * print.c (minibuffer_auto_raise):
4727 * msdos.c (Qhelp_echo):
4728 * macros.c (real_this_command):
4729 * keymap.c (Voverriding_local_map):
4730 * xterm.c (poll_for_input_1, gray_bitmap_width)
4731 (gray_bitmap_height, gray_bitmap_bits;
4732 * xmenu.c ( Voverriding_local_map)
4733 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
4734 (use_file_dialog, Xt_app_con):
4735 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
4736 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
4737 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
4738 (Qtool_bar_lines, ignore_mouse_drag_p):
4739 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
4740 (Qrear_nonsticky, nconc2):
4741 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
4742 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
4743 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
4744 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
4745 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
4746 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
4747 (gc_in_progress):
4748 * doc.c (Voverriding_local_map, Qremap):
4749 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
4750 (Vcompletion_regexp_list):
4751 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
4752 (Qcompletion_ignore_case):
4753 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
4754 (Vhistory_length, Vthis_original_command, real_this_command)
4755 (Qface, Qminibuffer_prompt, history_delete_duplicates):
4756 * image.c (Qrisky_local_variable):
4757 * fontset.c (QCname):
4758 * fns.c (minibuffer_auto_raise, QCname):
4759 * dispnew.c (char_ins_del_cost):
4760 * composite.c (font_fill_lglyph_metrics):
4761 * cmds.c (Qface, Vtranslation_table_for_input):
4762 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
4763 * ccl.c (charset_unicode):
4764 * callproc.c (Vtemporary_file_directory):
4765 * buffer.c (emacs_strerror): Remove extern declarations.
4766
4767 * data.c (Qwindow): Make non-static, used from other files too.
4768 * frame.c (validate_x_resource_name): Remove shadow definition for i.
4769
4770 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
4771 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
4772 * s/usg5-4.h (COFF):
4773 * s/template.h:
4774 * s/msdos.h (COFF, NO_REMAP):
4775 * s/ms-w32.h (NO_REMAP):
4776 * s/hpux10-20.h (NO_REMAP):
4777 * m/sparc.h (SEGMENT_MASK):
4778 * m/m68k.h (NO_REMAP):
4779 * m/intel386.h (SEGMENT_MASK):
4780 * m/arm.h (NO_REMAP):
4781 * m/alpha.h (COFF):
4782 * m/template.h: Remove references to unused defines.
4783
4784 2010-07-28 Jan Djärv <jan.h.d@swipnet.se>
4785
4786 * xsettings.c (Ftool_bar_get_system_style): Also check for
4787 Qtext_image_horiz.
4788
4789 * xdisp.c (Qtext_image_horiz): Define.
4790 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
4791 to documentation of tool-bar-style.
4792
4793 * lisp.h (Qtext_image_horiz): Declare.
4794
4795 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
4796 style text_image_horiz.
4797
4798 2010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4799
4800 * emacs.c (Fkill_emacs): Remove return statement.
4801
4802 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
4803 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
4804 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
4805 Remove local extern declarations.
4806
4807 * xmenu.c: Do not included lwlib.h, not needed.
4808
4809 * m/iris4d.h (XUINT, XSET): Remove, not needed.
4810
4811 * process.c: Move definitions earlier to minimize #ifdefs.
4812
4813 * xterm.h (x_get_customization_string, x_load_resources)
4814 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
4815 (x_check_errors, x_property_data_to_lisp, defined_color)
4816 (xic_set_xfontset, x_defined_color): Use const.
4817
4818 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
4819 (x_text_icon, x_check_errors, x_connection_closed): Use const.
4820
4821 * xselect.c (selection_data_to_lisp_data)
4822 (x_property_data_to_lisp):
4823 * xrdb.c (x_get_string_resource, file_p)
4824 (x_get_customization_string, magic_file_p, search_magic_path)
4825 (get_system_app, get_user_app, x_load_resources, x_get_resource)
4826 (x_get_string_resource): Use const.
4827
4828 * xfns.c: Include xlwmenu.h when USE_LUCID.
4829 (x_defined_color, xic_set_xfontset): Use const.
4830 (Fx_hide_tip): Remove local extern declaration.
4831
4832 * xfaces.c (Qmouse_face): Remove declaration.
4833 (face_color_gray_p, tty_defined_color, defined_color)
4834 (face_color_gray_p, face_color_supported_p): Add const.
4835
4836 * xdisp.c (do_mouse_tracking): Remove declaration.
4837 (add_to_log): Use const.
4838
4839 * minibuf.c (Qmouse_face): Remove declaration.
4840
4841 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
4842
4843 * keyboard.h (do_mouse_tracking): Add declaration.
4844
4845 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
4846 (QCdata, QCtype, Qcenter): Remove declarations.
4847
4848 * frame.c (x_get_resource_string, x_get_string_resource)
4849 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
4850 (x_default_parameter): Use const.
4851
4852 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
4853 (QCheight, QCsize, QCname): Remove declarations.
4854
4855 * emacs.c (main): Remove local extern declaration.
4856
4857 * editfns.c (region_limit, syms_of_editfns): Remove local extern
4858 declarations.
4859
4860 * dispnew.c: Remove duplicate #include <unistd.h>.
4861 (update_window, update_frame_1, init_display): Remove local extern
4862 declarations.
4863
4864 * dispextern.h (add_to_log): Remove declaration.
4865 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
4866 (x_frame_get_and_record_arg, x_default_parameter): Add const.
4867
4868 * dired.c (scmp): Add const.
4869 (directory_files_internal): Remove local extern declaration.
4870
4871 * data.c (Finteractive_form): Use const.
4872
4873 * composite.c (syms_of_composite): Remove local extern declarations.
4874
4875 * charset.c (add_to_log): Remove declaration.
4876
4877 * character.c (strwidth, parse_str_to_multibyte): Add const.
4878
4879 * character.h (strwidth, parse_str_to_multibyte): Likewise.
4880
4881 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
4882
4883 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
4884 (Lisp_Subr): Make doc and intspec constant.
4885 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
4886 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
4887 (QCheight, QCsize, QCname, QCwidth, QCforeground)
4888 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
4889 (display_arg): Add declarations.
4890
4891 2010-07-27 Christoph Scholtes <cschol2112@gmail.com>
4892
4893 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
4894
4895 * window.c (Fwindow_height): Doc fix (bug#6518).
4896
4897 2010-07-27 Juanma Barranquero <lekktu@gmail.com>
4898
4899 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
4900
4901 2010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
4902
4903 * keyboard.c (Ftop_level, Fexit_recursive_edit)
4904 (Fabort_recursive_edit): Remove return statements in NO_RETURN
4905 functions.
4906
4907 * frame.h (Qtty_color_mode): Add declaration.
4908
4909 * lisp.h (Ftop_level, Fexit_recursive_edit)
4910 (Fabort_recursive_edit): Mark as NO_RETURN.
4911
4912 2010-07-26 Kenichi Handa <handa@m17n.org>
4913
4914 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
4915 number of glyphs gets smaller than the original length. (Bug#6621)
4916
4917 2010-07-26 Juanma Barranquero <lekktu@gmail.com>
4918
4919 * lread.c (unreadpure, mapatoms_1): Make static.
4920
4921 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
4922
4923 * terminfo.c (tparam): Fix prototype of tparm.
4924
4925 2010-07-25 Andreas Schwab <schwab@linux-m68k.org>
4926
4927 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
4928 find start of text segment.
4929 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
4930 is defined.
4931
4932 * callproc.c (set_initial_environment): Avoid unbalanced braces.
4933
4934 2010-07-25 Ken Brown <kbrown@cornell.edu>
4935
4936 * vm-limit.c (check_memory_limits): Fix previous change;
4937 accidentally reverted an earlier change.
4938
4939 2010-07-25 Ken Brown <kbrown@cornell.edu>
4940
4941 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
4942 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
4943
4944 2010-07-25 Juanma Barranquero <lekktu@gmail.com>
4945
4946 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
4947 * dired.c (opendir, readdir): Fix prototypes.
4948 * editfns.c (w32_get_internal_run_time): Fix prototypes.
4949 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
4950 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
4951 (telldir): Remove declaration.
4952 * ralloc.c (real_morecore, __morecore): Fix prototypes.
4953 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
4954 * syssignal.h (strsignal): Fix prototype.
4955 * term.c (tparam): Fix prototype.
4956 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
4957 (term_get_fkeys): Set inside "#ifndef DOS_NT".
4958 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
4959 and __morecore.
4960 * w32gui.h (XParseGeometry): Fix prototype.
4961 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
4962 * w32term.c (my_set_focus): Declare inside #if 0.
4963 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
4964 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
4965 (drain_message_queue, get_next_msg, post_msg, parse_button)
4966 (ClipboardSequence_Proc): Fix prototypes.
4967 (wait_for_sync): Remove declaration.
4968
4969 2010-07-24 Juanma Barranquero <lekktu@gmail.com>
4970
4971 * w32fns.c (w32_to_x_color): Remove, unused.
4972
4973 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
4974
4975 * lisp.h: Remove leftover P_.
4976
4977 2010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
4978
4979 * ecrt0.c, unexalpha.c: Remove files, unused.
4980
4981 2010-07-24 Andreas Schwab <schwab@linux-m68k.org>
4982
4983 * cmds.c (internal_self_insert): Make static.
4984 * lisp.h (internal_self_insert): Remove declaration.
4985
4986 2010-07-23 Juanma Barranquero <lekktu@gmail.com>
4987
4988 * alloc.c (free_float):
4989 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
4990 * frame.c (delete_frame_handler):
4991 * ralloc.c (reorder_bloc):
4992 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
4993 Remove unused static functions.
4994
4995 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
4996 it is called only from NS code.
4997
4998 * w32term.c (my_set_focus): #ifdef away; it is called only from
4999 "#ifdef 0" code.
5000
5001 * w32fns.c (x_edge_detection):
5002 * xfaces.c (may_use_scalable_font_p):
5003 Remove obsolete static declarations.
5004
5005 2010-07-20 Juanma Barranquero <lekktu@gmail.com>
5006
5007 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
5008 (emacs_blocked_realloc, uninterrupt_malloc):
5009 * fringe.c (w32_reset_fringes):
5010 * image.c (convert_mono_to_color_image, lookup_rgb_color)
5011 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
5012 * sound.c (be2hs, do_play_sound):
5013 * vm-limit.c (get_lim_data, ret_lim_data):
5014 * w32term.c (x_free_frame_resources):
5015 * xfaces.c (x_create_gc, x_free_gc):
5016 Convert definitions to standard C.
5017
5018 2010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5019
5020 * eval.c (Feval, Ffuncall): Use the new names.
5021
5022 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
5023 (DEFUN): Add braces around the union initialisation and use ## to
5024 specify the right union alternative and avoid a cast.
5025
5026 2010-07-18 Juanma Barranquero <lekktu@gmail.com>
5027
5028 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
5029
5030 2010-07-17 Chong Yidong <cyd@stupidchicken.com>
5031
5032 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
5033
5034 2010-07-17 Jan Djärv <jan.h.d@swipnet.se>
5035
5036 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
5037 is related to the menu bar (Bug#6499).
5038 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
5039
5040 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
5041
5042 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
5043
5044 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
5045
5046 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
5047 i.e. don't put back ButtonRelease (Bug#6608).
5048
5049 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
5050 instead of Window. Call xg_event_is_for_menubar when
5051 USE_GTK (Bug#6499).
5052
5053 * gtkutil.h (xg_event_is_for_menubar): Declare.
5054
5055 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
5056
5057 2010-07-16 Eli Zaretskii <eliz@gnu.org>
5058
5059 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
5060 when it's the same as the old foreground. (Bug#6609)
5061
5062 2010-07-16 Jan Djärv <jan.h.d@swipnet.se>
5063
5064 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
5065 widget is non-null (Bug#6645).
5066
5067 2010-07-15 Andreas Schwab <schwab@linux-m68k.org>
5068
5069 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
5070 Convert old-style definition.
5071
5072 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
5073 timestamp argument.
5074
5075 2010-07-15 Eli Zaretskii <eliz@gnu.org>
5076
5077 * fringe.c (update_window_fringes): Restore mistakenly reverted
5078 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
5079
5080 2010-07-14 Jan Djärv <jan.h.d@swipnet.se>
5081
5082 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
5083 (SET_SAVED_KEY_EVENT): Remove (not used).
5084 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
5085 remove size parameter.
5086 (handle_one_xevent): Check popup_activated () for menu for Xt also.
5087 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
5088 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
5089 ButtonRelease.
5090 (x_set_window_size_1): scroll_bar_actual_width is always
5091 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
5092
5093 * xdisp.c (pending_menu_activation): Remove extern declaration.
5094 (prepare_menu_bars): Remove setting of pending_menu_activation.
5095
5096 * xmenu.c (pending_menu_activation): Remove.
5097 (x_activate_menubar): Set popup_activated_flag for Xt also.
5098 Remove setting of pending_menu_activation.
5099 (set_frame_menubar): Remove check of pending_menu_activation.
5100 Declare menubar_size before code. Correct spelling in comment.
5101
5102 2010-07-14 Kenichi Handa <handa@m17n.org>
5103
5104 * font.c (font_open_entity): Cancel previous change.
5105 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
5106
5107 2010-07-13 Eli Zaretskii <eliz@gnu.org>
5108
5109 Remove subprocesses #ifdefs.
5110 * process.c <inhibit_sentinels>: Move to the common part.
5111 (Fwaiting_for_user_input_p): Move to the common part; return nil
5112 if async subprocesses aren't supported.
5113 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
5114 MS-DOS. Remove "#ifdef subprocesses".
5115 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
5116 (gettimeofday): Remove "#ifdef subprocesses".
5117 (wait_without_blocking): Remove function.
5118 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
5119 Remove "#ifdef subprocesses".
5120 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
5121 compiled on MS-DOS.
5122 * callproc.c (Fcall_process) [!MSDOS]: Don't call
5123 wait_for_termination on MS-DOS.
5124 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
5125 initialization of inhibit_sentinels.
5126 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
5127 subprocesses" conditional.
5128 * callproc.c (Fcall_process) [!subprocesses]: Don't call
5129 wait_for_termination, since `buffer' cannot be an integer when
5130 async subprocesses are not supported
5131 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
5132 for ifdefing away the call to Fprocess_status.
5133
5134 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
5135 away the entire body of the function.
5136
5137 2010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
5138
5139 Remove subprocesses #ifdefs from term.c.
5140 * process.c (add_keyboard_wait_descriptor)
5141 (delete_keyboard_wait_descriptor): Move to common section, do
5142 nothing when subprocesses is not defined.
5143 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
5144 Remove subprocesses #ifdefs.
5145
5146 Convert maybe_fatal to standard C.
5147 * lisp.h (verror): Declare.
5148 * eval.c (verror): New function containing the code from ...
5149 (error): ... this. Call verror.
5150 * term.c (vfatal): New function containing the code from ...
5151 (fatal): ... this. Call vfatal.
5152 (maybe_fatal): Convert to standard C, use variable number of
5153 arguments. Declare as non-return.
5154 (init_tty): Fix maybe_fatal call.
5155
5156 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5157
5158 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
5159 (_scroll_bar_note_movement): Convert definitions to standard C.
5160 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
5161 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
5162
5163 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5164
5165 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
5166 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
5167 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
5168 (xaw_jump_callback, xaw_scroll_callback)
5169 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
5170 (x_wm_set_size_hint, x_activate_timeout_atimer):
5171 Convert definitions to standard C.
5172 * xmenu.c (menubar_id_to_frame, popup_get_selection)
5173 (popup_activate_callback, popup_deactivate_callback)
5174 (menu_highlight_callback, menubar_selection_callback)
5175 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
5176 (free_frame_menubar, popup_selection_callback, as)
5177 (create_and_show_popup_menu, dialog_selection_callback)
5178 (create_and_show_dialog):
5179 * xfns.c (hack_wm_protocols, x_window):
5180 * xfaces.c (x_update_menu_appearance):
5181 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
5182 (char_to_pixel_size, round_size_to_char, get_wm_shell)
5183 (set_frame_size, update_wm_hints, setup_frame_gcs)
5184 (update_various_frame_slots, update_from_various_frame_slots)
5185 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
5186 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
5187 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
5188
5189 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5190
5191 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
5192
5193 2010-07-12 Eli Zaretskii <eliz@gnu.org>
5194
5195 * process.c (setup_process_coding_systems): Move to the part
5196 shared by non-subprocesses systems, and make its body empty when
5197 subprocesses is not defined.
5198 (close_process_descs): Move to the part shared by non-subprocesses
5199 systems.
5200 (wait_reading_process_output) [!subprocesses]: Convert arg list to
5201 ANSI C.
5202
5203 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5204
5205 * editfns.c (transpose_markers): Convert old-style definition.
5206 * emacs.c (abort, shut_down_emacs, fixup_locale)
5207 (synchronize_system_time_locale)
5208 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
5209 * floatfns.c (extract_float, matherr, init_floatfns)
5210 (syms_of_floatfns): Likewise.
5211 * fns.c (make_hash_table): Likewise.
5212 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
5213 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
5214 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
5215 (ftfont_variation_glyphs): Likewise.
5216 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
5217 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
5218 * lread.c (read_filtered_event): Likewise.
5219 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
5220 * process.c (wait_reading_process_output): Likewise.
5221 * scroll.c (do_line_insertion_deletion_costs): Likewise.
5222 * search.c (search_buffer, boyer_moore): Likewise.
5223 * syntax.c (scan_sexps_forward): Likewise.
5224 * xdisp.c (try_scrolling): Likewise.
5225 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
5226 (face_at_string_position): Likewise.
5227 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
5228 * xselect.c (x_get_window_property, receive_incremental_selection)
5229 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
5230 Likewise.
5231 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
5232
5233 2010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5234
5235 * callproc.c (child_setup): Remove subprocesses conditional.
5236 Remove code dealing with SET_EMACS_PRIORITY, unused.
5237
5238 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
5239 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
5240
5241 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
5242 (__do_global_dtors, __main): Use void in definition.
5243 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
5244 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
5245 the only users from ...
5246 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
5247 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
5248 (HAVE_VOLATILE): Remove, unused.
5249
5250 Convert more function definitions to standard C.
5251 * xdisp.c (window_box_edges, handle_single_display_spec)
5252 (display_string): Convert definition to standard C.
5253 * scroll.c (do_direct_scrolling, scrolling_1):
5254 * dispnew.c (allocate_matrices_for_frame_redisplay)
5255 (mirrored_line_dance):
5256 * coding.c (code_convert_string):
5257 * charset.c (map_charset_chars):
5258 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
5259 (Fregister_ccl_program, Fregister_code_conversion_map):
5260 * keyboard.c (kbd_buffer_nr_stored): Likewise.
5261 (head_table): Make static and const.
5262
5263 2010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5264
5265 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
5266 (PROFILING_LDFLAGS): Set from substitution.
5267 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
5268 CFLAGS last.
5269
5270 2010-07-12 Kenichi Handa <handa@m17n.org>
5271
5272 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
5273 (shortlisp): Likewise.
5274
5275 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
5276
5277 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
5278 of FONT_ENTITY_INDEX.
5279 (Ffont_get): If KEY is :otf and the font-object doesn't have the
5280 property, get the property value dynamically.
5281 (Ffont_put): Accept font-entity and font-object too.
5282 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
5283 return value changed.
5284 (syms_of_font): Adjust for the above change.
5285
5286 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
5287
5288 * blockinput.h: Remove obsolete comment.
5289
5290 * lisp.h: Include <stddef.h>.
5291 (OFFSETOF): Don't define.
5292 (VECSIZE): Use offsetof instead of OFFSETOF.
5293 (PSEUDOVECSIZE): Likewise.
5294 * process.c (conv_sockaddr_to_lisp): Likewise.
5295 * alloc.c: Don't include <stddef.h>.
5296 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
5297
5298 * process.c: Remove obsolete comment.
5299
5300 2010-07-11 Chong Yidong <cyd@stupidchicken.com>
5301
5302 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
5303
5304 2010-07-11 Andreas Schwab <schwab@linux-m68k.org>
5305
5306 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
5307 index, rindex.
5308 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
5309 * editfns.c (Fuser_full_name, Fformat): Likewise.
5310 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
5311 * fileio.c (Ffile_symlink_p): Likewise.
5312 * filelock.c (current_lock_owner): Likewise.
5313 * font.c (font_parse_name, font_parse_family_registry): Likewise.
5314 * fontset.c (fontset_pattern_regexp): Likewise.
5315 * lread.c (read1): Likewise.
5316 * sysdep.c (init_system_name): Likewise.
5317 * xfns.c (select_visual): Likewise.
5318 * s/hpux10-20.h (index, rindex): Don't define.
5319 * s/ms-w32.h (index): Likewise.
5320 * s/usg5-4.h: Likewise.
5321
5322 * callproc.c (relocate_fd): Use F_DUPFD if defined.
5323
5324 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
5325 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
5326 (egetenv): Likewise.
5327 * doprnt.c (doprnt): Likewise.
5328 * editfns.c (set_time_zone_rule, format2): Likewise.
5329 * emacs.c (decode_env_path): Likewise.
5330 * eval.c (signal_error, error): Likewise.
5331 * insdel.c (replace_range_2): Likewise.
5332 * keyboard.c (cmd_error_internal): Likewise.
5333 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
5334 * print.c (write_string, write_string_1, print_error_message):
5335 Likewise.
5336 * vm-limit.c (warn_function, memory_warnings): Likewise.
5337 * xdisp.c (message1, message1_nolog, message_with_string)
5338 (vmessage, message, message_nolog): Likewise.
5339 * emacs.c: Remove duplicate declaration.
5340 * keyboard.h: Likewise.
5341 * lisp.h: Update prototypes.
5342
5343 * eval.c: Fix indentation problem.
5344
5345 * keyboard.c: Include "process.h"
5346
5347 * eval.c: Remove obsolete noinline declaration.
5348 * fns.c: Likewise.
5349
5350 2010-07-11 Ken Raeburn <raeburn@raeburn.org>
5351
5352 * doprnt.c (doprnt): Take a va_list argument instead of count and
5353 pointer.
5354 * eval.c (error): Change to a standard-C variadic function.
5355 * xdisp.c (vmessage): Rename from message, made static, and
5356 changed to take a va_list argument.
5357 (message): New variadic wrapper.
5358 (message_nolog): Now a variadic function, calling vmessage.
5359 * lisp.h: Include stdarg.h for va_list.
5360 (doprnt, error, message, message_nolog): Decls updated.
5361
5362 2010-07-11 Eli Zaretskii <eliz@gnu.org>
5363
5364 * process.c (syms_of_process) <delete-exited-processes>: Define
5365 even if !subprocesses.
5366 (delete_exited_processes): Ditto.
5367
5368 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
5369 (delete_exited_processes): Don't define.
5370
5371 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
5372
5373 * frame.c (make_frame): Initialize menu_bar_lines and
5374 tool_bar_lines members.
5375 (make_initial_frame, make_terminal_frame):
5376 Initialize menu_bar_lines using value of menu-bar-mode.
5377
5378 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
5379
5380 2010-07-10 Eli Zaretskii <eliz@gnu.org>
5381
5382 * process.c: Reshuffle #include's. Condition some of the global
5383 and static variables on `subprocesses'.
5384 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
5385 Leave only one implementation.
5386 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
5387 (kill_buffer_processes, Flist_system_processes)
5388 (Fprocess_attributes, init_process, syms_of_process): Unify the
5389 implementations for with subprocesses and without them.
5390
5391 2010-07-09 Jan Djärv <jan.h.d@swipnet.se>
5392
5393 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
5394 correct size for Motif.
5395 (free_frame_menubar): Call x_set_window_size to update frame size.
5396
5397 * xfns.c (x_window): Set borderWidth to 0 for pane and
5398 EmacsFrame. Frame size calculation is wrong otherwise.
5399
5400 2010-07-09 Michael Albinus <michael.albinus@gmx.de>
5401
5402 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
5403 allows to suppress errors when polling in Emacs' main loop.
5404 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
5405 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
5406 (Fdbus_method_error_internal, Fdbus_send_signal)
5407 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
5408 (Fdbus_register_method): Use it. (Bug#6579)
5409
5410 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
5411
5412 * alloc.c: Convert DEFUNs to standard C.
5413 * buffer.c:
5414 * bytecode.c:
5415 * callint.c:
5416 * callproc.c:
5417 * casefiddle.c:
5418 * casetab.c:
5419 * category.c:
5420 * character.c:
5421 * charset.c:
5422 * chartab.c:
5423 * cmds.c:
5424 * coding.c:
5425 * composite.c:
5426 * data.c:
5427 * dbusbind.c:
5428 * dired.c:
5429 * dispnew.c:
5430 * doc.c:
5431 * dosfns.c:
5432 * editfns.c:
5433 * emacs.c:
5434 * eval.c:
5435 * fileio.c:
5436 * filelock.c:
5437 * floatfns.c:
5438 * fns.c:
5439 * font.c:
5440 * fontset.c:
5441 * frame.c:
5442 * fringe.c:
5443 * image.c:
5444 * indent.c:
5445 * insdel.c:
5446 * keyboard.c:
5447 * keymap.c:
5448 * lread.c:
5449 * macros.c:
5450 * marker.c:
5451 * menu.c:
5452 * minibuf.c:
5453 * msdos.c:
5454 * nsfns.m:
5455 * nsmenu.m:
5456 * nsselect.m:
5457 * print.c:
5458 * process.c:
5459 * search.c:
5460 * sound.c:
5461 * syntax.c:
5462 * term.c:
5463 * terminal.c:
5464 * textprop.c:
5465 * undo.c:
5466 * w16select.c:
5467 * w32console.c:
5468 * w32fns.c:
5469 * w32font.c:
5470 * w32menu.c:
5471 * w32proc.c:
5472 * w32select.c:
5473 * window.c:
5474 * xdisp.c:
5475 * xfaces.c:
5476 * xfns.c:
5477 * xmenu.c:
5478 * xselect.c:
5479 * xsettings.c:
5480 * xsmfns.c: Likewise.
5481
5482 2010-07-08 Eli Zaretskii <eliz@gnu.org>
5483
5484 * process.c (kbd_is_on_hold, hold_keyboard_input)
5485 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
5486
5487 2010-07-08 Jan Djärv <jan.h.d@swipnet.se>
5488
5489 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
5490 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
5491 unless USE_LUCID.
5492
5493 2010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
5494
5495 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
5496 declaration.
5497
5498 Clean up include guards.
5499 * tparam.c: Remove include guards for config.h, string.h and code
5500 that assumes #ifndef emacs.
5501 * termcap.c:
5502 * unexalpha.c:
5503 * sysdep.c:
5504 * filemode.c:
5505 * filelock.c:
5506 * bidi.c: Likewise.
5507
5508 Remove prefix-args.c
5509 * prefix-args.c: Remove file.
5510 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
5511 * Makefile.in (temacs${EXEEXT}): Remove references to
5512 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
5513 (mostlyclean): Remove reference to prefix-args.
5514 (prefix-args): Remove.
5515
5516 Simplify cstart_of_data, start_of_code and related code.
5517 * mem-limits.h: Remove !emacs and _LIBC conditional code.
5518 (start_of_data): Merge into start_of_data function.
5519 * sysdep.c (start_of_text): Remove. Move simplified versions of
5520 it in the only users: unexaix.c and unexec.c.
5521 (read_input_waiting): Remove local declaration of quit_char.
5522 (start, etext): Remove declarations.
5523 (start_of_data): Merge with the version in mem-limits.h and move
5524 to vm-limits.c.
5525 * vm-limit.c (start_of_data): Merged and simplified version of the
5526 code formerly in mem-limits.h and sysdep.c.
5527 * unexec.c (start): New declaration, moved from sysdep.c.
5528 (start_of_text): Simplified version of the code formerly in sysdep.c.
5529 * unexaix.c (start_of_text): Simplified version of the code
5530 formerly in sysdep.c.
5531 * m/alpha.h (HAVE_TEXT_START): Remove.
5532 (TEXT_START): Move ...
5533 * unexalpha.c (TEXT_START): ... here.
5534 * s/hpux10-20.h (TEXT_START): Remove.
5535 * s/darwin.h (TEXT_START):
5536 * m/mips.h (TEXT_START):
5537 * m/macppc.h (HAVE_TEXT_START):
5538 * m/m68k.h (TEXT_START):
5539 * m/iris4d.h (TEXT_START):
5540 * m/intel386.h (TEXT_START):
5541 * m/ibmrs6000.h (TEXT_START):
5542 * m/ia64.h (HAVE_TEXT_START):
5543 * s/msdos.h (TEXT_START): Likewise.
5544
5545 2010-07-07 Andreas Schwab <schwab@linux-m68k.org>
5546
5547 * alloc.c (overrun_check_malloc, overrun_check_realloc)
5548 (overrun_check_free, xstrdup, allocate_string)
5549 (allocate_string_data, compact_small_strings, Fmake_string)
5550 (make_unibyte_string, make_multibyte_string)
5551 (make_string_from_bytes, make_specified_string, make_float)
5552 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
5553 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
5554 memcpy, memmove, memset, memcmp.
5555 * atimer.c (start_atimer, set_alarm): Likewise.
5556 * buffer.c (clone_per_buffer_values, report_overlay_modification)
5557 (mmap_realloc, init_buffer_once): Likewise.
5558 * callint.c (Fcall_interactively): Likewise.
5559 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
5560 (getenv_internal_1): Likewise.
5561 * casefiddle.c (casify_object): Likewise.
5562 * ccl.c (ccl_driver): Likewise.
5563 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
5564 * charset.c (load_charset_map_from_file)
5565 (load_charset_map_from_file, load_charset_map_from_vector)
5566 (Fdefine_charset_internal): Likewise.
5567 * cm.c (Wcm_clear): Likewise.
5568 * coding.c (decode_eol, decode_coding_object)
5569 (Fset_coding_system_priority, make_subsidiaries): Likewise.
5570 * data.c (Faset): Likewise.
5571 * dired.c (directory_files_internal, file_name_completion_stat):
5572 Likewise.
5573 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
5574 (clear_glyph_row, copy_row_except_pointers)
5575 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
5576 (save_current_matrix, restore_current_matrix)
5577 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
5578 (mirror_line_dance, scrolling_window): Likewise.
5579 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
5580 Likewise.
5581 * doprnt.c (doprnt): Likewise.
5582 * editfns.c (Fuser_full_name, make_buffer_string_both)
5583 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
5584 * emacs.c (sort_args): Likewise.
5585 * eval.c (Fapply, Ffuncall): Likewise.
5586 * fileio.c (Ffile_name_directory, make_temp_name)
5587 (Fexpand_file_name, search_embedded_absfilename)
5588 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
5589 (auto_save_error): Likewise.
5590 * fns.c (Fstring_equal, Fcopy_sequence, concat)
5591 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
5592 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
5593 (Fmake_hash_table): Likewise.
5594 * fringe.c (Fdefine_fringe_bitmap): Likewise.
5595 * ftfont.c (ftfont_text_extents): Likewise.
5596 * getloadavg.c (getloadavg): Likewise.
5597 * image.c (define_image_type, make_image, make_image_cache)
5598 (x_create_x_image_and_pixmap, xbm_image_p)
5599 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
5600 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
5601 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
5602 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
5603 (tiff_image_p, tiff_read_from_memory, gif_image_p)
5604 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
5605 Likewise.
5606 * indent.c (scan_for_column, compute_motion): Likewise.
5607 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
5608 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
5609 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
5610 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
5611 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
5612 (store_user_signal_events, menu_bar_items, tool_bar_items)
5613 (process_tool_bar_item, append_tool_bar_item)
5614 (read_char_minibuf_menu_prompt, read_key_sequence)
5615 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
5616 Likewise.
5617 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
5618 Likewise.
5619 * lisp.h (STRING_COPYIN): Likewise.
5620 * lread.c (Fload, read1, oblookup): Likewise.
5621 * msdos.c (Frecent_doskeys): Likewise.
5622 * nsfns.m (Fx_create_frame): Likewise.
5623 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
5624 Likewise.
5625 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
5626 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
5627 Likewise.
5628 * nsmenu.m (ns_update_menubar): Likewise.
5629 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
5630 * print.c (print_unwind, printchar, strout, print_string)
5631 (print_error_message): Likewise.
5632 * process.c (conv_lisp_to_sockaddr, set_socket_option)
5633 (Fmake_network_process, Fnetwork_interface_list)
5634 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
5635 (init_process): Likewise.
5636 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
5637 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
5638 Likewise.
5639 * scroll.c (do_scrolling, do_direct_scrolling)
5640 (scrolling_max_lines_saved): Likewise.
5641 * search.c (search_buffer, wordify, Freplace_match): Likewise.
5642 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
5643 * syntax.c (skip_chars, skip_syntaxes): Likewise.
5644 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
5645 (emacs_set_tty): Likewise.
5646 * term.c (encode_terminal_code, calculate_costs)
5647 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
5648 Likewise.
5649 * termcap.c (tgetst1, gobble_line): Likewise.
5650 * termhooks.h (EVENT_INIT): Likewise.
5651 * tparam.c (tparam1): Likewise.
5652 * unexalpha.c (unexec): Likewise.
5653 * unexec.c (write_segment): Likewise.
5654 * unexmacosx.c (unexec_write_zero): Likewise.
5655 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
5656 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
5657 * w32font.c (w32font_list_family, w32font_text_extents)
5658 (w32font_list_internal, w32font_match_internal)
5659 (w32font_open_internal, compute_metrics, Fx_select_font):
5660 Likewise.
5661 * w32menu.c (set_frame_menubar, add_menu_item)
5662 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
5663 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
5664 * w32uniscribe.c (uniscribe_list_family): Likewise.
5665 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
5666 * window.c (make_window, replace_window, set_window_buffer)
5667 (Fsplit_window): Likewise.
5668 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
5669 (add_to_log, message3, x_consider_frame_title)
5670 (append_space_for_newline, extend_face_to_end_of_line)
5671 (decode_mode_spec_coding, init_glyph_string): Likewise.
5672 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
5673 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
5674 (face_attr_equal_p, make_realized_face, make_face_cache)
5675 (free_realized_faces, lookup_named_face, smaller_face)
5676 (face_with_height, lookup_derived_face)
5677 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
5678 (Finternal_set_font_selection_order, realize_default_face)
5679 (compute_char_face, face_at_buffer_position)
5680 (face_for_overlay_string, face_at_string_position, merge_faces):
5681 Likewise.
5682 * xfns.c (xic_create_fontsetname, Fx_create_frame)
5683 (Fx_window_property, x_create_tip_frame)
5684 (Fx_backspace_delete_keys_p): Likewise.
5685 * xfont.c (xfont_list, xfont_match, xfont_list_family)
5686 (xfont_text_extents): Likewise.
5687 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
5688 * xrdb.c (magic_file_p, x_get_resource): Likewise.
5689 * xselect.c (x_queue_event, x_get_window_property)
5690 (receive_incremental_selection): Likewise.
5691 * xsmfns.c (x_session_check_input): Likewise.
5692 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
5693 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
5694 Likewise.
5695 * character.h (BCOPY_SHORT): Removed.
5696 * config.in: Regenerate.
5697 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
5698 * emacs.c (main) [PROFILING]: Don't declare
5699 dump_opcode_frequencies.
5700 * lisp.h (safe_bcopy): Remove declaration.
5701 (memset) [!HAVE_MEMSET]: Declare.
5702 (memcpy) [!HAVE_MEMCPY]: Likewise.
5703 (memmove) [!HAVE_MEMMOVE]: Likewise.
5704 (memcmp) [!HAVE_MEMCMP]: Likewise.
5705 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
5706 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
5707 Don't define.
5708 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
5709 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
5710 (BCOPY_DOWNWARD_SAFE): Don't define.
5711 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
5712 (memcpy) [!HAVE_MEMCPY]: Define.
5713 (memmove) [!HAVE_MEMMOVE]: Define.
5714 (memcmp) [!HAVE_MEMCMP]: Define.
5715
5716 2010-07-07 Jan Djärv <jan.h.d@swipnet.se>
5717
5718 * process.c (kbd_is_on_hold): New variable.
5719 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
5720 New functions.
5721 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
5722 select on empty input mask.
5723 (init_process): Initialize kbd_is_on_hold to 0.
5724
5725 * process.h (hold_keyboard_input, unhold_keyboard_input)
5726 (kbd_on_hold_p): Declare.
5727
5728 * keyboard.c (input_available_signal): Declare.
5729 (kbd_buffer_nr_stored): New function.
5730 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
5731 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
5732 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
5733 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
5734 (tty_read_avail_input): If input is on hold, return.
5735 Don't read more that free slots in kbd_buffer (Bug#6571).
5736
5737 2010-07-07 Eli Zaretskii <eliz@gnu.org>
5738
5739 * msdos.h:
5740 * msdos.c:
5741 * dosfns.c:
5742 * w16select.c: Convert function definitions to ANSI C.
5743
5744 * msdos.h (ctrl_break_func, install_ctrl_break_check):
5745 Remove unused prototypes.
5746
5747 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
5748
5749 * coding.c, sysdep.c: Convert some more functions to standard C.
5750
5751 2010-07-07 Juanma Barranquero <lekktu@gmail.com>
5752
5753 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
5754 (encode_coding_object): Use SPECPDL_INDEX.
5755 (syms_of_coding): Use DOS_NT.
5756
5757 2010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
5758
5759 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
5760
5761 Make the function member of Lisp_Subr use standard C prototypes.
5762 * lisp.h (struct Lisp_Subr): Use a union for the function member.
5763 (DECL_ALIGN): Add a cast for the function.
5764 * eval.c (Feval, Ffuncall): Use the proper type for each type
5765 function call.
5766
5767 2010-07-06 Chong Yidong <cyd@stupidchicken.com>
5768
5769 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
5770 fringe face id, so face-remapping-alist works (Bug#6091).
5771
5772 2010-07-06 Juanma Barranquero <lekktu@gmail.com>
5773
5774 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
5775 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
5776 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
5777
5778 2010-07-06 Andreas Schwab <schwab@linux-m68k.org>
5779
5780 * xterm.c (x_get_keysym_name): Change type of parameter to int.
5781 * lisp.h: Declare x_get_keysym_name.
5782 * keyboard.c (modify_event_symbol): Don't declare
5783 x_get_keysym_name here.
5784
5785 2010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
5786
5787 * ecrt0.c: Revert conversion to standard C.
5788
5789 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
5790
5791 * vm-limit.c (memory_warnings):
5792 * keyboard.c (modify_event_symbol):
5793 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
5794 (round2, emacs_rint):
5795 * process.c (send_process, old_sigpipe): Convert function
5796 definitions and declarations to standard C.
5797
5798 2010-07-05 Juanma Barranquero <lekktu@gmail.com>
5799
5800 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
5801 * xdisp.c: Convert function definitions to standard C.
5802
5803 * cm.c (cmputc): Arg C is now int, not char.
5804 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
5805
5806 2010-07-05 James Cloos <cloos@jhcloos.com>
5807
5808 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
5809
5810 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
5811 _NET_WM_ICON_NAME atoms.
5812
5813 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
5814 and _NET_WM_ICON_NAME properties, too, matching what is
5815 done in the Gtk+ case.
5816
5817 2010-07-05 Jan Djärv <jan.h.d@swipnet.se>
5818
5819 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
5820
5821 * xsmfns.c (SSDATA): New macro.
5822 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
5823 passed to strlen/strcpy/strcat.
5824 (create_client_leader_window): Surround with #ifndef USE_GTK.
5825 Cast 7:th arg to XChangeProperty to (unsigned char *).
5826
5827 * xsettings.c (something_changedCB, parse_settings)
5828 (apply_xft_settings): Reformat prototype.
5829 (something_changedCB, init_gconf): Remove unused variable i.
5830 (read_settings): Remove unused variable long_len.
5831
5832 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
5833 (xg_get_image_for_pixmap, create_dialog)
5834 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
5835 (menuitem_highlight_callback, make_menu_item)
5836 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
5837 (xg_create_scroll_bar, xg_update_scrollbar_pos)
5838 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
5839 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
5840 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
5841 (xg_tool_bar_item_expose_callback): Reformat prototype.
5842 (xg_update_menubar): GList *group => GSList *group.
5843 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
5844 before use.
5845 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
5846 to GTK_IMAGE (wimage).
5847
5848 2010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
5849
5850 * atimer.c: Use "" instead of <> for local includes for
5851 consistency with the rest of the code.
5852
5853 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
5854 * xrdb.c (get_system_name):
5855 * window.c (shrink_windows):
5856 * syntax.c (forw_comment):
5857 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
5858 (ins_del_costs):
5859 * mem-limits.h (start_of_data):
5860 * lread.c (readevalloop):
5861 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
5862 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
5863 * frame.c (x_get_focus_frame):
5864 * floatfns.c (fmod_float):
5865 * fileio.c (choose_write_coding_system):
5866 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
5867 (malloc_initialize_hook, sort_args, synchronize_locale):
5868 * doprnt.c (doprnt):
5869 * dired.c (compile_pattern):
5870 * data.c (fmod_float):
5871 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
5872 (map_char_table_for_charset):
5873 * charset.c (define_charset_internal):
5874 * alloc.c (Fgarbage_collect): Convert declarations or definitions
5875 to standard C.
5876
5877 2010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
5878 Stefan Monnier <monnier@iro.umontreal.ca>
5879
5880 * lread.c (read1): Fix up last change to not mess up `c'.
5881
5882 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
5883
5884 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
5885
5886 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
5887
5888 Fix prototypes.
5889
5890 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
5891 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
5892 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
5893 arg, as required by internal_condition_case_1.
5894 * print.c (strout): Use const char* for arg PTR.
5895 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
5896 (analyse_first): Fix "const const".
5897 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
5898 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
5899 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
5900
5901 2010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
5902
5903 * alloc.c: Convert function definitions to standard C.
5904 * atimer.c:
5905 * bidi.c:
5906 * bytecode.c:
5907 * callint.c:
5908 * callproc.c:
5909 * casefiddle.c:
5910 * casetab.c:
5911 * category.c:
5912 * ccl.c:
5913 * character.c:
5914 * charset.c:
5915 * chartab.c:
5916 * cmds.c:
5917 * coding.c:
5918 * composite.c:
5919 * data.c:
5920 * dbusbind.c:
5921 * dired.c:
5922 * dispnew.c:
5923 * doc.c:
5924 * doprnt.c:
5925 * ecrt0.c:
5926 * editfns.c:
5927 * fileio.c:
5928 * filelock.c:
5929 * filemode.c:
5930 * fns.c:
5931 * font.c:
5932 * fontset.c:
5933 * frame.c:
5934 * fringe.c:
5935 * ftfont.c:
5936 * ftxfont.c:
5937 * gtkutil.c:
5938 * indent.c:
5939 * insdel.c:
5940 * intervals.c:
5941 * keymap.c:
5942 * lread.c:
5943 * macros.c:
5944 * marker.c:
5945 * md5.c:
5946 * menu.c:
5947 * minibuf.c:
5948 * prefix-args.c:
5949 * print.c:
5950 * ralloc.c:
5951 * regex.c:
5952 * region-cache.c:
5953 * scroll.c:
5954 * search.c:
5955 * sound.c:
5956 * strftime.c:
5957 * syntax.c:
5958 * sysdep.c:
5959 * termcap.c:
5960 * terminal.c:
5961 * terminfo.c:
5962 * textprop.c:
5963 * tparam.c:
5964 * undo.c:
5965 * unexelf.c:
5966 * window.c:
5967 * xfaces.c:
5968 * xfns.c:
5969 * xfont.c:
5970 * xftfont.c:
5971 * xgselect.c:
5972 * xmenu.c:
5973 * xrdb.c:
5974 * xselect.c:
5975 * xsettings.c:
5976 * xsmfns.c:
5977 * xterm.c: Likewise.
5978
5979 2010-07-03 Eli Zaretskii <eliz@gnu.org>
5980
5981 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
5982 frames other than the initial one. Fix reversal of colors when
5983 `reverse' is specified in the frame parameters.
5984 Call update_face_from_frame_parameter instead of
5985 internal-set-lisp-face-attribute. Initialize screen colors from
5986 initial_screen_colors[] when f->default_face_done_p is zero,
5987 instead of depending on being called with default-frame-alist as
5988 the alist argument.
5989
5990 * xfaces.c (update_face_from_frame_parameter): Move out of
5991 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
5992 with HAVE_WINDOW_SYSTEM.
5993
5994 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
5995 to menu-bar-mode, if not set in the frame parameters or in
5996 default-frame-alist.
5997
5998 * w32console.c (sys_tputs): Adjust argument list to prototype in
5999 term.c.
6000
6001 2010-07-03 Juanma Barranquero <lekktu@gmail.com>
6002
6003 * lisp.h (memory_warnings): Fix prototype.
6004
6005 * cm.h (evalcost): Fix prototype.
6006
6007 * cm.c (evalcost): Fix arg type.
6008
6009 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
6010
6011 * term.c (term_clear_mouse_face, Fidentity):
6012 * syssignal.h (signal_handler_t):
6013 * lisp.h (memory_warnings):
6014 * coding.h (preferred_coding_system):
6015 * cm.h (evalcost):
6016 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
6017
6018 2010-07-02 Eli Zaretskii <eliz@gnu.org>
6019
6020 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
6021 from prototypes.
6022
6023 * msdos.h (load_pixmap): Don't define away.
6024
6025 2010-07-02 Jan Djärv <jan.h.d@swipnet.se>
6026
6027 * lisp.h:
6028 * atimer.h: Remove define for P_.
6029
6030 * alloc.c: Remove __P and P_ from .c and .m files.
6031 * atimer.c:
6032 * buffer.c:
6033 * callint.c:
6034 * category.c:
6035 * charset.c:
6036 * chartab.c:
6037 * cm.c:
6038 * coding.c:
6039 * composite.c:
6040 * data.c:
6041 * dired.c:
6042 * dispnew.c:
6043 * doc.c:
6044 * editfns.c:
6045 * emacs.c:
6046 * eval.c:
6047 * fileio.c:
6048 * filelock.c:
6049 * fns.c:
6050 * font.c:
6051 * fontset.c:
6052 * frame.c:
6053 * ftfont.c:
6054 * ftxfont.c:
6055 * gmalloc.c:
6056 * gtkutil.c:
6057 * image.c:
6058 * indent.c:
6059 * intervals.c:
6060 * keyboard.c:
6061 * keymap.c:
6062 * lread.c:
6063 * marker.c:
6064 * menu.c:
6065 * minibuf.c:
6066 * print.c:
6067 * process.c:
6068 * scroll.c:
6069 * search.c:
6070 * sound.c:
6071 * strftime.c:
6072 * syntax.c:
6073 * sysdep.c:
6074 * term.c:
6075 * terminal.c:
6076 * textprop.c:
6077 * unexalpha.c:
6078 * w32console.c:
6079 * w32fns.c:
6080 * w32font.c:
6081 * w32menu.c:
6082 * w32term.c:
6083 * w32uniscribe.c:
6084 * window.c:
6085 * xdisp.c:
6086 * xfaces.c:
6087 * xfns.c:
6088 * xfont.c:
6089 * xftfont.c:
6090 * xmenu.c:
6091 * xselect.c:
6092 * xterm.c: Likewise.
6093
6094 Remove P_ and __P macros.
6095 * atimer.h: Remove P_ and __P macros.
6096 * buffer.h:
6097 * category.h:
6098 * ccl.h:
6099 * character.h:
6100 * charset.h:
6101 * cm.h:
6102 * coding.h:
6103 * composite.h:
6104 * dispextern.h:
6105 * disptab.h:
6106 * dosfns.h:
6107 * font.h:
6108 * fontset.h:
6109 * frame.h:
6110 * gtkutil.h:
6111 * indent.h:
6112 * intervals.h:
6113 * keyboard.h:
6114 * keymap.h:
6115 * lisp.h:
6116 * macros.h:
6117 * md5.h:
6118 * menu.h:
6119 * msdos.h:
6120 * nsterm.h:
6121 * puresize.h:
6122 * region-cache.h:
6123 * syntax.h:
6124 * syssignal.h:
6125 * systime.h:
6126 * termhooks.h:
6127 * w32font.h:
6128 * w32term.h:
6129 * widget.h:
6130 * window.h:
6131 * xgselect.h:
6132 * xsettings.h:
6133 * xterm.h: Likewise.
6134
6135 2010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
6136
6137 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
6138
6139 Cleanup old code.
6140 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
6141 * syssignal.h: Remove code for Lynx, not supported anymore.
6142 * vm-limit.c: Remove unused code the depends on emacs not being
6143 defined and NO_LIM_DATA being defined.
6144 * mem-limits.h: Remove dead code.
6145
6146 2010-07-01 Jan Djärv <jan.h.d@swipnet.se>
6147
6148 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
6149
6150 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
6151 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
6152
6153 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
6154 parameters, they are already absolute.
6155
6156 * nsterm.m (x_set_window_size, initFrameFromEmacs):
6157 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
6158
6159 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
6160
6161 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
6162 Update FRAME_TOOLBAR_HEIGHT.
6163
6164 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
6165 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
6166
6167 2010-06-30 Chong Yidong <cyd@stupidchicken.com>
6168
6169 * frame.c (get_future_frame_param, Fmake_terminal_frame):
6170 Don't check default-frame-alist.
6171
6172 2010-06-30 Andreas Schwab <schwab@linux-m68k.org>
6173
6174 * process.c (create_process): Avoid using invalid file descriptors.
6175
6176 * callproc.c (child_setup): Avoid closing a file descriptor twice.
6177
6178 2010-06-30 Jan Djärv <jan.h.d@swipnet.se>
6179
6180 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
6181 Improve documentation. Return font regardless of use_system_font.
6182 (syms_of_xsettings): Improve documentation for font-use-system-font.
6183
6184 2010-07-10 Chong Yidong <cyd@stupidchicken.com>
6185
6186 * xfaces.c (realize_face): Garbage the frame if a face is removed
6187 (Bug#6593).
6188
6189 2010-07-05 Andreas Schwab <schwab@linux-m68k.org>
6190
6191 * keyboard.c: Remove duplicate <setjmp.h>.
6192 (read_key_sequence): Remove volatile qualifiers.
6193
6194 2010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6195
6196 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
6197 (struct glyph_row): New members left_fringe_offset and
6198 right_fringe_offset.
6199
6200 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
6201 specially.
6202 * w32term.c (w32_draw_fringe_bitmap): Likewise.
6203 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
6204
6205 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
6206 Take account of bitmap offset.
6207 (draw_window_fringes): Take account of window vscroll.
6208 (update_window_fringes): Likewise. Extend top-aligned top indicator
6209 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
6210 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
6211 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
6212
6213 2010-07-04 Juanma Barranquero <lekktu@gmail.com>
6214
6215 * w32fns.c (Qtooltip): Declare.
6216 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
6217
6218 2010-07-03 Jan Djärv <jan.h.d@swipnet.se>
6219
6220 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
6221 grab on just Press (Bug#6499).
6222
6223 2010-07-02 Chong Yidong <cyd@stupidchicken.com>
6224
6225 * frame.c (Qtooltip): New var.
6226 (delete_frame): Use it. Fix faulty if statement. Don't update
6227 mode line for tooltip frames. Suggested by Martin Rudalics.
6228
6229 * xfns.c (x_create_tip_frame):
6230 * w32fns.c (x_create_tip_frame): Use it.
6231
6232 2010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
6233
6234 * xftfont.c (xftfont_open): Check font width one by one also when
6235 spacing is dual.
6236
6237 * ftfont.c (ftfont_open): Ditto.
6238
6239 2010-06-30 Glenn Morris <rgm@gnu.org>
6240
6241 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
6242
6243 * Makefile.in (CANNOT_DUMP): Update for configure name change.
6244
6245 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
6246 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
6247 * s/darwin.h (SYSTEM_MALLOC):
6248 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
6249
6250 2010-06-29 Jan Djärv <jan.h.d@swipnet.se>
6251
6252 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
6253 (ns_get_screen): Don't assign integer to f.
6254 (Fx_display_color_cells): Declarations before statements.
6255
6256 2010-06-28 Jan Djärv <jan.h.d@swipnet.se>
6257
6258 * xfns.c (x_default_font_parameter): Remove got_from_system
6259 (Bug#6526).
6260
6261 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
6262 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
6263 New defines based on what configure finds.
6264
6265 * xterm.c (XTflash): Use gtk_widget_get_window.
6266 (xg_scroll_callback): Use gtk_adjustment_get_upper and
6267 gtk_adjustment_get_page_size.
6268 (handle_one_xevent): Use gtk_widget_get_mapped.
6269 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
6270 messages.
6271
6272 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
6273
6274 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
6275 HAVE_GTK_FILE_SELECTION_NEW.
6276
6277 * gtkutil.c (xg_display_open, xg_display_close):
6278 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
6279 (xg_display_open): Return type is void.
6280 (gtk_widget_set_has_window)
6281 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
6282 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
6283 (gtk_adjustment_set_page_increment)
6284 (gtk_adjustment_get_step_increment): #define these if not found
6285 by configure.
6286 (remove_submenu): New define based on Gtk+ version.
6287 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
6288 Use gtk_widget_get_window.
6289 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
6290 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
6291 (create_dialog): Use gtk_dialog_get_action_area and
6292 gtk_dialog_get_content_area.
6293 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
6294 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
6295 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
6296 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
6297 Use g_object_ref and g_object_unref.
6298 (xg_update_menu_item, xg_tool_bar_menu_proxy):
6299 Use gtk_widget_get_sensitive.
6300 (xg_update_submenu): Use remove_submenu.
6301 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
6302 properties instead to get old x and y position.
6303 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
6304 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
6305 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
6306 (xg_get_tool_bar_widgets): New function.
6307 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
6308 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
6309 (toolbar_set_orientation): New #define based on if configure
6310 finds gtk_orientable_set_orientation.
6311 (xg_create_tool_bar): Call toolbar_set_orientation.
6312 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
6313 instead of gtk_box_pack_start_defaults.
6314
6315 2010-06-28 Chong Yidong <cyd@stupidchicken.com>
6316
6317 * cmds.c (Fdelete_backward_char): Move into Lisp.
6318
6319 2010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
6320
6321 * s/freebsd.h (BSD4_2): Remove redundant definition.
6322 bsd-common.h defines it already.
6323
6324 2010-06-27 Chong Yidong <cyd@stupidchicken.com>
6325
6326 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
6327 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
6328 tool-bar-mode, which are now set using these X resources at
6329 startup, to determine the defaults (Bug#2249).
6330
6331 * w32fns.c (Fx_create_frame):
6332 * nsfns.m (Fx_create_frame): Likewise.
6333
6334 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
6335
6336 2010-06-24 Juanma Barranquero <lekktu@gmail.com>
6337
6338 * gtkutil.c (xg_update_scrollbar_pos):
6339 Avoid C99 mid-block variable declaration.
6340
6341 2010-06-22 Jan Djärv <jan.h.d@swipnet.se>
6342
6343 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
6344
6345 * gtkutil.h (xg_show_scroll_bar): Remove.
6346
6347 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
6348 if height is less than scroll bar min size.
6349 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
6350
6351 * xfns.c (x_default_font_parameter): Try to open font from system
6352 before using it (bug#6478). Rename got_from_gconf to got_from_system.
6353
6354 2010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
6355
6356 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
6357
6358 2010-06-20 Eli Zaretskii <eliz@gnu.org>
6359
6360 * xdisp.c (try_scrolling): When scroll-conservatively is set to
6361 most-positive-fixnum, be extra accurate when scrolling window
6362 start, to avoid missing the cursor line.
6363
6364 2010-06-19 Eli Zaretskii <eliz@gnu.org>
6365
6366 * xdisp.c (try_scrolling): Compute the limit for searching point
6367 in forward scroll from scroll_max, instead of an arbitrary limit
6368 of 10 screen lines.
6369 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
6370 and
6371 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
6372 for details.
6373
6374 2010-06-16 Glenn Morris <rgm@gnu.org>
6375
6376 * editfns.c (Fbyte_to_string): Pacify compiler.
6377
6378 2010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
6379
6380 * lread.c (read1): Phase out old-style backquotes a bit more.
6381
6382 2010-06-12 Eli Zaretskii <eliz@gnu.org>
6383
6384 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
6385 bidimirror.h.
6386
6387 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
6388
6389 * bidi.c (bidi_initialize): Remove explicit initialization of
6390 bidi_type_table; include biditype.h instead. Don't support
6391 entries whose second codepoint is zero. Initialize bidi_mirror_table.
6392 (bidi_mirror_char): Use bidi_mirror_table.
6393
6394 * biditype.h: New file.
6395
6396 * bidimirror.h: New file.
6397
6398 * window.c (syms_of_window): Doc fix (bug#6409).
6399
6400 2010-06-12 Romain Francoise <romain@orebokech.com>
6401
6402 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
6403 ediff-hook.
6404
6405 2010-06-10 Glenn Morris <rgm@gnu.org>
6406
6407 * editfns.c (Fbyte_to_string): Pacify compiler.
6408
6409 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
6410
6411 2010-06-26 Andreas Schwab <schwab@linux-m68k.org>
6412
6413 * alloc.c (Fmake_byte_code): Don't access undefined argument
6414 (Bug#6517).
6415
6416 2010-06-25 Chong Yidong <cyd@stupidchicken.com>
6417
6418 * xdisp.c (next_element_from_image): Ensure that after-strings are
6419 read the next time we hit handle_stop (Bug#1336).
6420
6421 2010-06-23 Andreas Schwab <schwab@linux-m68k.org>
6422
6423 * lread.c (read1): Signal error if #s is not followed by paren.
6424
6425 2010-06-19 Chong Yidong <cyd@stupidchicken.com>
6426
6427 * image.c (free_image): Mark frame as garbaged (Bug#6426).
6428
6429 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
6430
6431 2010-06-15 Glenn Morris <rgm@gnu.org>
6432
6433 * editfns.c (Fbyte_to_string): Pacify compiler.
6434
6435 2010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6436
6437 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
6438 Check `object's type before accessing its guts.
6439
6440 2010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
6441
6442 * s/usg5-4.h: Fix previous change.
6443 Suggested by Lawrence Mitchell <wence@gmx.li>
6444
6445 2010-06-08 Andreas Schwab <schwab@linux-m68k.org>
6446
6447 * minibuf.c (Fall_completions): Add more checks.
6448
6449 2010-06-08 Juanma Barranquero <lekktu@gmail.com>
6450
6451 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
6452
6453 2010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
6454
6455 * lread.c (X_OK): Remove, unused.
6456
6457 * dispnew.c: Remove obsolete comment.
6458
6459 Remove INCLUDED_FCNTL.
6460 * xterm.c (INCLUDED_FCNTL):
6461 * callproc.c (INCLUDED_FCNTL):
6462 * alloc.c (INCLUDED_FCNTL):
6463 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
6464 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
6465
6466 2010-06-07 Martin Rudalics <rudalics@gmx.at>
6467
6468 * window.c (Fselect_window): Move `record_buffer' up to the
6469 beginning of this function, so the buffer gets recorded
6470 even if the selected window does not change.
6471 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
6472
6473 2010-06-07 Juanma Barranquero <lekktu@gmail.com>
6474
6475 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
6476 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
6477
6478 2010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
6479
6480 Remove BSTRING related code, all platforms define it.
6481 * s/usg5-4.h (BSTRING): Remove definition.
6482 * s/template.h (BSTRING):
6483 * s/msdos.h (BSTRING):
6484 * s/ms-w32.h (BSTRING):
6485 * s/hpux10-20.h (BSTRING):
6486 * s/gnu-linux.h (BSTRING):
6487 * s/darwin.h (BSTRING):
6488 * s/cygwin.h (BSTRING):
6489 * s/bsd-common.h (BSTRING):
6490 * s/aix4-2.h (BSTRING): Likewise.
6491 * sysdep.c: Remove code depending on BSTRING not being defined.
6492
6493 2010-06-05 Juanma Barranquero <lekktu@gmail.com>
6494
6495 Remove obsolete macro BASE_LEADING_CODE_P.
6496 * character.h (BASE_LEADING_CODE_P): Remove.
6497 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
6498 * buffer.c (Fset_buffer_multibyte):
6499 * indent.c (scan_for_column, compute_motion):
6500 * insdel.c (count_combining_before, count_combining_after):
6501 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
6502
6503 2010-06-04 Juanma Barranquero <lekktu@gmail.com>
6504
6505 Turn `directory-sep-char' into a noop.
6506
6507 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
6508 (DIRECTORY_SEP): Define unconditionally.
6509
6510 * s/ms-w32.h (DIRECTORY_SEP): Remove.
6511
6512 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
6513 call dostounix_filename directly.
6514
6515 * fileio.c (CORRECT_DIR_SEPS): Remove.
6516 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
6517 (Fsubstitute_in_file_name): Use dostounix_filename instead.
6518 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
6519 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
6520
6521 * w32proc.c (CORRECT_DIR_SEPS): Remove.
6522 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
6523
6524 2010-06-03 Andreas Schwab <schwab@linux-m68k.org>
6525
6526 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
6527 (Bug#6346)
6528
6529 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
6530
6531 * ccl.c (Fccl_program_p): Fix typo in docstring.
6532
6533 2010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
6534
6535 Move UNEXEC definition to autoconf.
6536 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
6537 * s/sol2-10.h (UNEXEC):
6538 * s/irix6-5.h (UNEXEC):
6539 * s/hpux10-20.h (UNEXEC):
6540 * s/gnu-linux.h (UNEXEC):
6541 * s/darwin.h (UNEXEC):
6542 * s/cygwin.h (UNEXEC):
6543 * s/bsd-common.h (UNEXEC):
6544 * s/aix4-2.h (UNEXEC):
6545 * m/alpha.h (UNEXEC): Likewise.
6546 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
6547
6548 2010-06-03 Juanma Barranquero <lekktu@gmail.com>
6549
6550 Remove obsolete pre-unicode2 macros.
6551 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
6552 * composite.c (composition_reseat_it):
6553 * data.c (Faset):
6554 * fns.c (Ffillarray):
6555 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
6556 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
6557
6558 2010-06-03 Juri Linkov <juri@jurta.org>
6559
6560 * buffer.c (Fother_buffer): Add CHECK_FRAME.
6561 (Fswitch_to_buffer): Remove unused variable `err'.
6562
6563 2010-06-03 Glenn Morris <rgm@gnu.org>
6564
6565 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
6566
6567 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
6568 now that AH_BOTTOM does it.
6569
6570 * m/hp800.h (HAVE_ALLOCA):
6571 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
6572
6573 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
6574 Remove NOT_C_CODE tests, it is always true now.
6575
6576 2010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
6577
6578 Fix config.h includes.
6579 * xsettings.c:
6580 * xgselect.c:
6581 * nsterm.m:
6582 * nsselect.m:
6583 * nsimage.m:
6584 * nsfont.m:
6585 * nsfns.m:
6586 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
6587 other files do.
6588
6589 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
6590
6591 * s/sol2-6.h: Remove obsolete comments.
6592
6593 Remove unnecessary alloca.h includes.
6594 * keymap.c: Do not include alloca.h, config.h does that.
6595 * sysdep.c: Likewise. Do not define fwrite, not used.
6596
6597 2010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6598
6599 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
6600 the HAVE_TERMIO where it belongs (bug#6149).
6601
6602 2010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6603
6604 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
6605 of bug#6305).
6606
6607 2010-05-30 Eli Zaretskii <eliz@gnu.org>
6608
6609 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
6610 state is always cached (bug#6306).
6611
6612 2010-05-29 Eli Zaretskii <eliz@gnu.org>
6613
6614 Fix cursor motion in bidi-reordered continued lines.
6615 * xdisp.c (try_cursor_movement): Backup to non-continuation line
6616 only after finding point's row. Fix the logic. Rewrite the loop
6617 over continuation lines in bidi-reordered buffers.
6618 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
6619 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
6620
6621 2010-05-28 Michael Albinus <michael.albinus@gmx.de>
6622
6623 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
6624
6625 2010-05-28 Kenichi Handa <handa@m17n.org>
6626
6627 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
6628 Don't sheck SPEC if it is nil.
6629 (font_list_entities): Call font_delete_unmatched if
6630 Vface_ignored_fonts is non-nil. (Bug#6287)
6631
6632 2010-05-28 Glenn Morris <rgm@gnu.org>
6633
6634 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
6635
6636 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
6637
6638 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
6639 whether to trash.
6640 (internal_delete_file, Frename_file): Callers changed.
6641 (delete_by_moving_to_trash): Doc fix.
6642 (Fdelete_directory_internal): Don't move to trash.
6643
6644 * callproc.c (delete_temp_file):
6645 * buffer.c (Fkill_buffer): Callers changed.
6646
6647 * lisp.h: Update prototype.
6648
6649 2010-05-27 Chong Yidong <cyd@stupidchicken.com>
6650
6651 * xdisp.c (redisplay_window): After redisplay, check if point is
6652 still valid before setting it (Bug#6177).
6653
6654 2010-05-27 Glenn Morris <rgm@gnu.org>
6655
6656 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
6657 Convert comments to Makefile format.
6658
6659 * Makefile.in (bootstrap-clean): No more Makefile.c.
6660
6661 2010-05-26 Glenn Morris <rgm@gnu.org>
6662
6663 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
6664 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
6665
6666 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
6667 Remove.
6668 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6669
6670 2010-05-26 Kenichi Handa <handa@m17n.org>
6671
6672 * composite.c (composition_compute_stop_pos): Fix condition for
6673 backward scanning.
6674
6675 2010-05-25 Glenn Morris <rgm@gnu.org>
6676
6677 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
6678 Move before TEMACS_LDFLAGS.
6679 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6680 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6681
6682 * Makefile.in (NOT_C_CODE): No longer define.
6683 (config.h): No longer include.
6684
6685 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
6686 variables it may reference.
6687
6688 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
6689 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
6690
6691 2010-05-25 Kenichi Handa <handa@m17n.org>
6692
6693 * dispextern.h (struct composition_it): New members rule_idx and
6694 charpos.
6695
6696 * xdisp.c (set_iterator_to_next): While scanning backward, assume
6697 that the character positions of IT point the last character of the
6698 current grapheme cluster.
6699 (next_element_from_composition): Don't change character positions
6700 of IT.
6701 (append_composite_glyph): Set glyph->charpos to
6702 it->cmp_it.charpos.
6703
6704 * composite.c (autocmp_chars): Change the first argument to RULE,
6705 and try composition with RULE only.
6706 (composition_compute_stop_pos): Record the index number of the
6707 composition rule in CMP_IT->rule_idx.
6708 (composition_reseat_it): Call autocmp_chars repeatedly until the
6709 correct rule of the composition is found.
6710 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
6711 is at the last character of the current grapheme cluster when
6712 CMP_IT->reversed_p is nonzero.
6713
6714 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6715
6716 * editfns.c (Fbyte_to_string): New function.
6717
6718 2010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6719
6720 * process.c (Fmake_network_process): Set :host to nil if it's not used.
6721 Suggested by Masatake YAMATO <yamato@redhat.com>.
6722
6723 2010-05-23 Eli Zaretskii <eliz@gnu.org>
6724
6725 * dispextern.h (init_iterator): Sync prototype with changed definition.
6726
6727 2010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
6728
6729 * s/netbsd.h: If terminfo is found, use it in preference to
6730 termcap. (Bug#6190) [Backport from trunk]
6731
6732 2010-05-19 Eli Zaretskii <eliz@gnu.org>
6733
6734 Redesign and reimplement bidi-aware edge positions of glyph rows.
6735
6736 * dispextern.h (struct glyph_row): New members minpos and maxpos.
6737 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
6738 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
6739 and maxpos members instead of start.pos and end.pos, respectively.
6740
6741 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
6742 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
6743 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
6744 (try_window_reusing_current_matrix, try_window_id):
6745 Use ROW->minpos rather than ROW->start.pos.
6746 (init_from_display_pos, init_iterator): Use EMACS_INT for
6747 character and byte positions.
6748 (find_row_edges): Rename from find_row_end. Accept additional
6749 arguments for minimum and maximum buffer positions seen by
6750 display_line for this row. Don't use iterator to find the
6751 position following the maximum one; instead, increment the
6752 position found by display_line directly. Fix logic; eol_pos
6753 should be tested before the rest. Handle the case of characters
6754 delivered from display vector (bug#6036). Fix tests related to
6755 it->method. Handle the truncated_on_right_p rows.
6756 (RECORD_MAX_MIN_POS): New macro.
6757 (display_line): Use it to record the minimum and maximum buffer
6758 positions for glyphs in the row being assembled. Record the
6759 position of the newline that terminates the line. If word wrap is
6760 in effect, restore minimum and maximum positions seen up to the
6761 wrap point, when iterator returns to it.
6762 (try_window_reusing_current_matrix): Give up if in bidi-reordered
6763 row and cursor not already at point. Restore original pre-bidi
6764 code for unidirectional buffers.
6765
6766 * dispnew.c (increment_row_positions, check_matrix_invariants):
6767 Increment and check row->start.pos and row->end.pos, in addition
6768 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
6769
6770 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
6771 Display truncated_on_left_p and truncated_on_right_p flags.
6772 Formatting fixes.
6773 (pmtxrows): Display the ordinal number of each row. Don't display
6774 rows beyond the last one.
6775
6776 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
6777 it is not copied by bidi_copy_it.
6778
6779 2010-05-22 Eli Zaretskii <eliz@gnu.org>
6780
6781 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
6782 (Bug#6237)
6783
6784 2010-05-22 Chong Yidong <cyd@stupidchicken.com>
6785
6786 * image.c (Fimage_flush): Rename from image-refresh.
6787
6788 2010-05-21 Chong Yidong <cyd@stupidchicken.com>
6789
6790 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
6791 just one window.
6792
6793 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
6794 (clear_image_cache): If the number of cached images is unusually
6795 large, decrease the cache eviction delay (Bug#6230).
6796
6797 2010-05-21 Glenn Morris <rgm@gnu.org>
6798
6799 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
6800 Move these rules to ns.mk.
6801 * ns.mk: New file.
6802
6803 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
6804
6805 * Makefile.in (CANNOT_DUMP): New, set by configure.
6806 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
6807
6808 2010-05-20 Juri Linkov <juri@jurta.org>
6809
6810 * fileio.c (Fdelete_file): Change interative spec to use
6811 `read-file-name' like in `find-file-read-args' where the default
6812 value is `default-directory' instead of `buffer-file-name'.
6813 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
6814
6815 2010-05-20 Kevin Ryde <user42@zip.com.au>
6816
6817 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
6818 (Voverriding_terminal_local_map, Vsystem_key_alist)
6819 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
6820
6821 2010-05-20 Glenn Morris <rgm@gnu.org>
6822
6823 * Makefile.in (DEPDIR): New constant.
6824 (DEPFLAGS): Set with configure, not cpp.
6825 (MKDEPDIR): New, set by configure.
6826 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
6827 (clean): Use $DEPDIR.
6828 (deps_frag): Include from configure.
6829 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
6830 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
6831
6832 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
6833 Fix reallocation of the cache. (Bug#6210)
6834
6835 2010-05-19 Glenn Morris <rgm@gnu.org>
6836
6837 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
6838
6839 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
6840 (GNULIB_VAR): Remove.
6841 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
6842
6843 * m/ibms390x.h (LINKER):
6844 * m/macppc.h (LINKER) [GNU_LINUX]:
6845 * s/aix4-2.h (ORDINARY_LINK):
6846 * s/cygwin.h (LINKER):
6847 * s/darwin.h (ORDINARY_LINK):
6848 * s/gnu.h (ORDINARY_LINK):
6849 * s/netbsd.h (LINKER):
6850 * s/usg5-4.h (ORDINARY_LINK):
6851 Move to configure.
6852
6853 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
6854
6855 2010-05-18 Chong Yidong <cyd@stupidchicken.com>
6856
6857 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
6858 prevent stack overflow if number of arguments is too large
6859 (Bug#6214).
6860
6861 2010-05-18 Juanma Barranquero <lekktu@gmail.com>
6862
6863 * charset.c (load_charset_map_from_file): Don't call close after fclose.
6864
6865 2010-05-18 Glenn Morris <rgm@gnu.org>
6866
6867 * s/gnu-linux.h: Combine two conditionals.
6868
6869 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
6870 $(POST_ALLOC_OBJ).
6871
6872 * Makefile.in (RALLOC_OBJ): New, set by configure.
6873 (rallocobj): Replace with the previous variable.
6874 (otherobj): Use $RALLOC_OBJ.
6875
6876 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
6877 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
6878
6879 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
6880 (gmallocobj, vmlimitobj): Replace with previous two variables.
6881 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
6882
6883 2010-05-17 Glenn Morris <rgm@gnu.org>
6884
6885 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
6886 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
6887
6888 2010-05-16 Glenn Morris <rgm@gnu.org>
6889
6890 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
6891
6892 * Makefile.in (clean): Get rid of HAVE_NS conditional.
6893
6894 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
6895 trailing "/".
6896
6897 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
6898 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
6899
6900 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
6901 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
6902 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
6903 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
6904 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
6905
6906 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
6907 Remove ${STARTFLAGS}, nothing ever sets it.
6908
6909 2010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
6910
6911 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
6912
6913 2010-05-16 Glenn Morris <rgm@gnu.org>
6914
6915 * Makefile.in (LIBX_BASE): Always define.
6916
6917 * Makefile.in (LIBX_OTHER): Move out of cpp section.
6918
6919 * Makefile.in (LIBXT): Always define.
6920
6921 2010-05-15 Glenn Morris <rgm@gnu.org>
6922
6923 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
6924
6925 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
6926 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
6927
6928 2010-05-15 Ken Raeburn <raeburn@raeburn.org>
6929
6930 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
6931 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
6932
6933 * emacs.c (main): Initialize initial-environment and
6934 process-environment before generating from env, not after.
6935
6936 Handle --version reasonably in CANNOT_DUMP configuration.
6937 * emacs.c (emacs_version, emacs_copyright): New string variables.
6938 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
6939 (syms_of_emacs): Defvar them, and initialize them from the C
6940 string variables.
6941 (main): If initialization hasn't been done, print initial version
6942 info from the C strings, instead of starting an interactive session.
6943
6944 2010-05-15 Eli Zaretskii <eliz@gnu.org>
6945
6946 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
6947 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
6948 (bidi_paragraph_init): Remove redundant assertion that we are at
6949 the beginning of a line after call to bidi_find_paragraph_start.
6950
6951 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
6952 (syms_of_xdisp): Defsubr it.
6953
6954 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
6955
6956 * Makefile.in: Fix MSDOS-related comments.
6957
6958 2010-05-15 Glenn Morris <rgm@gnu.org>
6959
6960 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
6961 (really-lwlib, really-oldXMenu): Always define.
6962 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
6963
6964 * Makefile.in: Simplify cpp conditional.
6965
6966 * Makefile.in (${ns_appdir}): Simplify using umask.
6967
6968 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
6969
6970 2010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
6971
6972 * eval.c (specbind): Remove left-over duplicate test.
6973 Disallow let-binding frame-local vars. Add comment.
6974
6975 2010-05-14 Eli Zaretskii <eliz@gnu.org>
6976
6977 Make the cache of bidi iterator states dynamically allocated.
6978 * bidi.c (bidi_cache_shrink): New function.
6979 (bidi_init_it): Call it.
6980 (bidi_cache_iterator_state): Enlarge the cache if needed.
6981
6982 * bidi.c (bidi_move_to_visually_next): Rename from
6983 bidi_get_next_char_visually. All callers changed.
6984
6985 2010-05-14 Kenichi Handa <handa@m17n.org>
6986
6987 * dispextern.h (struct composition_it): New member reversed_p.
6988
6989 * composite.c (composition_compute_stop_pos): Search backward if
6990 ENDPOS < CHARPOS.
6991 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
6992 Set CMP_IT->reversed_p.
6993 (composition_update_it): Pay attention to CMP_IT->reversed_p.
6994
6995 * xdisp.c (set_iterator_to_next):
6996 Call composition_compute_stop_pos with negative ENDPOS if we are
6997 scanning backward. Call composition_compute_stop_pos if scan
6998 direction is changed.
6999 (next_element_from_buffer): Call composition_compute_stop_pos with
7000 negative ENDPOS if we are scanning backward.
7001 (next_element_from_composition): Pay attention to
7002 IT->cmp_it.reversed_p.
7003
7004 2010-05-14 Kenichi Handa <handa@m17n.org>
7005
7006 * font.c (font_range): Return the range for the font found at first.
7007
7008 2010-05-14 Glenn Morris <rgm@gnu.org>
7009
7010 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
7011
7012 * Makefile.in (mktime, X11, register): Move undefs to configure.
7013
7014 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
7015 (MSDOS_X_OBJ): New variable.
7016 (MSDOS_SUPPORT_REAL): New constant.
7017 (MSDOS_SUPPORT): Set as a variable, not with cpp.
7018 (obj): Use MSDOS_X_OBJ.
7019 (lisp): Use MSDOS_SUPPORT as a variable.
7020
7021 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
7022 (GPM_MOUSE_SUPPORT): Now it's a constant.
7023 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
7024 not cpp.
7025
7026 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
7027 (ns_appresdir): Remove, unused.
7028
7029 * Makefile.in (SHELL): Move outside cpp section.
7030
7031 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
7032
7033 2010-05-13 Glenn Morris <rgm@gnu.org>
7034
7035 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
7036 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
7037
7038 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
7039 HAVE_WINDOW_SYSTEM must be too.
7040
7041 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
7042 (lisp): Remove WINNT_SUPPORT.
7043
7044 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
7045 Let configure set these variables (to empty) in this case as well.
7046
7047 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
7048 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
7049
7050 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
7051 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
7052 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
7053 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
7054 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
7055 the values output by configure.
7056 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
7057
7058 2010-05-12 Glenn Morris <rgm@gnu.org>
7059
7060 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
7061 (LINKER_WAS_SPECIFIED): Remove.
7062
7063 * Makefile.in (LIB_GCC): Set using configure, not cpp.
7064 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
7065 * m/arm.h (LIB_GCC) [GNU_LINUX]:
7066 * s/cygwin.h (LIB_GCC):
7067 * s/freebsd.h (LIB_GCC):
7068 * s/gnu-linux.h (LIB_GCC):
7069 * s/msdos.h (LIB_GCC):
7070 * s/netbsd.h (LIB_GCC):
7071 Move to configure.
7072
7073 2010-05-11 Karel Klíč <kklic@redhat.com>
7074
7075 * ftfont.c: Fix incorrect parentheses of #if condition for
7076 definining M17N_FLT_USE_NEW_FEATURE.
7077
7078 2010-05-11 Glenn Morris <rgm@gnu.org>
7079
7080 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
7081 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
7082
7083 2010-05-10 Eli Zaretskii <eliz@gnu.org>
7084
7085 * xdisp.c (init_iterator): Don't turn on bidi reordering in
7086 unibyte buffers. See
7087 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
7088
7089 2010-05-10 Glenn Morris <rgm@gnu.org>
7090
7091 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
7092 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
7093 (LIBES): Use LIBS_SYSTEM as a variable.
7094 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
7095 * s/aix4-2.h (LIBS_SYSTEM):
7096 * s/freebsd.h (LIBS_SYSTEM):
7097 * s/hpux10-20.h (LIBS_SYSTEM):
7098 * s/sol2-6.h (LIBS_SYSTEM):
7099 * s/unixware.h (LIBS_SYSTEM):
7100 Move to configure.
7101
7102 * s/aix4-2.h (MAIL_USE_LOCKF):
7103 * s/bsd-common.h (MAIL_USE_FLOCK):
7104 * s/darwin.h (MAIL_USE_FLOCK):
7105 * s/gnu-linux.h (MAIL_USE_FLOCK):
7106 * s/irix6-5.h (MAIL_USE_FLOCK):
7107 * s/template.h (MAIL_USE_FLOCK):
7108 Move to configure.
7109
7110 2010-05-08 Chong Yidong <cyd@stupidchicken.com>
7111
7112 * Version 23.2 released.
7113
7114 2010-05-08 Andreas Schwab <schwab@linux-m68k.org>
7115
7116 * composite.c (autocmp_chars): Save point as marker before calling
7117 auto-composition-function (Bug#5984).
7118
7119 * lisp.h (restore_point_unwind): Add prototype.
7120
7121 * fileio.c (restore_point_unwind): Remove static attribute.
7122
7123 2010-05-08 Kenichi Handa <handa@m17n.org>
7124
7125 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
7126 new feature of libotf and m17n-flt.
7127 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
7128 Call OTF_check_features even if no specific feature is given.
7129 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
7130 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
7131 that OUT is NULL. Use OTF_drive_gsub_with_log and
7132 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
7133 OTF_drive_gpos.
7134 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
7135 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
7136 Setup mflt_enable_new_feature and mflt_try_otf.
7137
7138 2010-05-08 Jan Djärv <jan.h.d@swipnet.se>
7139
7140 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
7141
7142 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
7143 box and toolbar (Bug #6139).
7144 (xg_create_tool_bar): Remove comment (Bug #6139).
7145 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
7146 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
7147
7148 2010-05-08 Juanma Barranquero <lekktu@gmail.com>
7149
7150 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
7151 Update dependencies.
7152
7153 2010-05-08 Eli Zaretskii <eliz@gnu.org>
7154
7155 * fringe.c (update_window_fringes): Set up truncation bitmaps for
7156 R2L lines.
7157
7158 2010-05-08 Glenn Morris <rgm@gnu.org>
7159
7160 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
7161
7162 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
7163 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
7164 (termcapobj): Replace with TERMCAP_OBJ.
7165 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
7166 (LIBES): Use LIBS_TERMCAP as a variable.
7167
7168 * s/freebsd.h (osreldate.h): No longer include, since this file
7169 does not use __FreeBSD_version any more.
7170
7171 * s/aix4-2.h (TERMINFO):
7172 * s/cygwin.h (TERMINFO):
7173 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
7174 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
7175 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
7176 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
7177 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
7178 * s/irix6-5.h (TERMINFO):
7179 * s/netbsd.h (LIBS_TERMCAP):
7180 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
7181 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
7182 * s/usg5-4.h (TERMINFO):
7183 Move to configure.
7184
7185 2010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7186
7187 * eval.c (unbind_to): Don't unbind a local binding into the global
7188 binding when the local binding disappeared. Inversely, don't unbind
7189 a global binding into a newly created local binding.
7190 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
7191 can specify the frame to use, when applicable. Adjust callers.
7192
7193 2010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
7194 Stefan Monnier <monnier@iro.umontreal.ca>
7195
7196 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
7197
7198 2010-05-07 Eli Zaretskii <eliz@gnu.org>
7199
7200 * w32fns.c: Include w32.h.
7201 (Fw32_shell_execute): Decode the error message before passing it
7202 to `error'. (Bug#6126)
7203
7204 * msdos.c (dos_set_window_size):
7205 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
7206 instead of `XSYMBOL (foo)->value'.
7207
7208 2010-05-07 Eli Zaretskii <eliz@gnu.org>
7209
7210 Fix the MS-DOS build, broken by autoconfiscation.
7211
7212 * Makefile.in: Don't use Make-style comments past the "start of
7213 cpp stuff" line.
7214 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
7215
7216 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
7217 edited directly by msdos/sed1v2.inp).
7218
7219 2010-05-07 Glenn Morris <rgm@gnu.org>
7220
7221 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
7222 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
7223 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
7224 move out of cpp section.
7225 * s/freebsd.h (LD_SWITCH_SYSTEM):
7226 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
7227 * s/netbsd.h (LD_SWITCH_SYSTEM):
7228 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
7229
7230 2010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
7231
7232 Define LIB_STANDARD and START_FILES using autoconf.
7233 * s/usg5-4.h (LIB_STANDARD):
7234 * s/netbsd.h (START_FILES):
7235 * s/irix6-5.h (LIB_STANDARD):
7236 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
7237 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
7238 * s/freebsd.h (START_FILES):
7239 * s/darwin.h (START_FILES):
7240 * s/cygwin.h (START_FILES):
7241 * s/aix4-2.h (LIB_STANDARD):
7242 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
7243 * Makefile.in (STARTFILES): Rename to START_FILES, define using
7244 autoconf, not cpp.
7245
7246 2010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
7247
7248 Remove NEED_BSDTTY and NEED_UNISTD_H.
7249 * s/hpux10-20.h (NEED_BSDTTY): Remove.
7250 * s/aix4-2.h (NEED_UNISTD_H): Remove.
7251 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
7252 <sys/ptyio.h> and <unistd.h>.
7253
7254 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
7255
7256 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
7257 * s/gnu.h (START_FILES): Remove empty definition.
7258
7259 2010-05-06 Jan Djärv <jan.h.d@swipnet.se>
7260
7261 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
7262
7263 2010-05-06 Glenn Morris <rgm@gnu.org>
7264
7265 * Makefile.in (CPP, LN_S): Remove unused variables.
7266
7267 2010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7268
7269 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
7270
7271 2010-05-05 Lawrence Mitchell <wence@gmx.li>
7272
7273 * m/sparc.h: Fix typo in earlier change.
7274
7275 2010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7276
7277 Misc tweaks.
7278 * eval.c (Fdefvaralias): Remove unintended nested if.
7279 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
7280
7281 2010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
7282
7283 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
7284
7285 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
7286
7287 Remove BSD_PGRPS.
7288 * s/bsd-common.h (BSD_PGRPS): Remove undef.
7289 * s/gnu-linux.h (BSD_PGRPS): Remove.
7290 * term.c (dissociate_if_controlling_tty):
7291 * sysdep.c (narrow_foreground_group, widen_foreground_group)
7292 (init_sys_modes, reset_sys_modes):
7293 * emacs.c (main):
7294 * callproc.c (Fcall_process, child_setup): Remove code depending
7295 on BSD_PGRPS.
7296
7297 Remove POSIX_SIGNALS.
7298 * s/usg5-4.h (POSIX_SIGNALS):
7299 * s/netbsd.h (POSIX_SIGNALS):
7300 * s/msdos.h (POSIX_SIGNALS):
7301 * s/ms-w32.h (POSIX_SIGNALS):
7302 * s/hpux11.h (POSIX_SIGNALS):
7303 * s/gnu.h (POSIX_SIGNALS):
7304 * s/gnu-linux.h (POSIX_SIGNALS):
7305 * s/freebsd.h (POSIX_SIGNALS):
7306 * s/darwin.h (POSIX_SIGNALS):
7307 * s/cygwin.h (POSIX_SIGNALS):
7308 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
7309 * s/unixware.h:
7310 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
7311 * process.c (create_process):
7312 * syssignal.h:
7313 * sysdep.c (wait_for_termination, init_signals):
7314 * process.c (create_process):
7315 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
7316 remove all code that assumes the contrary.
7317
7318 2010-05-04 Glenn Morris <rgm@gnu.org>
7319
7320 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
7321 variable.
7322 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
7323 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
7324 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
7325 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
7326 LD_SWITCH_SYSTEM_tmp.
7327 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
7328 New variables, set by configure.
7329
7330 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
7331 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
7332 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
7333 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
7334 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
7335
7336 * s/aix4-2.h (C_SWITCH_SYSTEM):
7337 * m/alpha.h (C_SWITCH_MACHINE):
7338 Move to configure.in.
7339 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
7340 New variables, set by configure.
7341 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
7342 $c_switch_machine and $c_switch_system.
7343
7344 2010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
7345
7346 * s/hpux10-20.h (LIB_STANDARD): New definition.
7347 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
7348 on it, not used anymore.
7349
7350 2010-05-03 Chong Yidong <cyd@stupidchicken.com>
7351
7352 * eval.c (internal_condition_case_n): Rename from
7353 internal_condition_case_2.
7354 (internal_condition_case_2): New function.
7355
7356 * xdisp.c (safe_call): Use internal_condition_case_n.
7357
7358 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
7359 (internal_delete_file, Frename_file): Callers changed.
7360
7361 * buffer.c (Fkill_buffer):
7362 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
7363
7364 * lisp.h: Update prototypes.
7365
7366 2010-05-03 Glenn Morris <rgm@gnu.org>
7367
7368 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
7369 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
7370 (LIBXT): Set with configure, not cpp.
7371 (LIBX): Remove.
7372 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
7373
7374 2010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
7375
7376 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
7377 The FreeBSD is not needed, the default works, Solaris version is
7378 not needed, and the remaining case is not supported by configure.
7379
7380 2010-05-02 Jan Djärv <jan.h.d@swipnet.se>
7381
7382 * xsmfns.c (CHDIR_OPT): New define.
7383 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
7384 restarting emacs.
7385
7386 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
7387 shut_down_emacs.
7388
7389 * emacs.c (USAGE1): Mention --chdir.
7390 (main): Handle --chdir.
7391 (standard_args): Add --chdir.
7392 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
7393 #5552).
7394
7395 2010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
7396
7397 Remove LD_SWITCH_MACHINE.
7398 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
7399 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
7400
7401 Clean up IRIX code.
7402 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
7403 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
7404
7405 Clean up AIX code.
7406 * m/ibmrs6000.inp: Remove file, unused.
7407 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
7408 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
7409 definition ...
7410 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
7411
7412 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
7413 unused.
7414
7415 2010-05-01 Eli Zaretskii <eliz@gnu.org>
7416
7417 Emulate POSIX_SIGNALS on MS-Windows.
7418
7419 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
7420 (SIG_SETMASK, SIG_UNBLOCK): Define.
7421
7422 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
7423 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
7424 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
7425
7426 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
7427 New stubs.
7428
7429 Miscellaneous fixes of bidi display.
7430
7431 * xdisp.c (find_row_end): New function, refactored from display_line.
7432 (display_line): Use it.
7433 (extend_face_to_end_of_line): In almost-filled rows, extend only
7434 if the row is R2L and not continued.
7435 (display_line): Fix prepending of truncation glyphs to R2L rows.
7436 Preserve overlay and string info in row->end.
7437 (insert_left_trunc_glyphs): Support addition of left truncation
7438 glyphs to R2L rows.
7439 (set_cursor_from_row): Don't place cursor on the vertical border
7440 glyph between adjacent windows. Fix a crash when a display string
7441 is continued to the next line. Don't return zero if cursor was
7442 found by `cursor' property of a display string.
7443 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
7444 test for that explicitly.
7445
7446 2010-05-01 Glenn Morris <rgm@gnu.org>
7447
7448 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
7449 for clarity.
7450 (OTHER_OBJ): Remove.
7451 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
7452 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
7453
7454 2010-05-01 Karel Klíč <kklic@redhat.com>
7455
7456 * fileio.c (Ffile_selinux_context): Context functions may return null.
7457
7458 2010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
7459
7460 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
7461
7462 2010-04-30 Glenn Morris <rgm@gnu.org>
7463
7464 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
7465 (OTHER_OBJ): Define as a separate variable, for clarity.
7466
7467 2010-04-30 Jan Djärv <jan.h.d@swipnet.se>
7468
7469 * xsettings.c: include limits.h and update file comment.
7470
7471 2010-04-30 Glenn Morris <rgm@gnu.org>
7472
7473 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
7474 Set with configure, not cpp.
7475 (LIBW): Remove, replace with $TOOLKIT_LIBW.
7476
7477 * Makefile.in (mallocobj): Remove.
7478 (otherobj): Simplify using @OTHER_OBJ@.
7479
7480 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
7481 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
7482 Don't bother making nsgui.h dependency platform-specific.
7483
7484 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
7485
7486 2010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7487
7488 * process.c (read_process_output, exec_sentinel): Don't burp if the
7489 sentinel/filter kills the current buffer (bug#6060).
7490
7491 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
7492 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
7493 Remove unused var `args'.
7494 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
7495 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
7496 * doc.c (store_function_docstring): Use XSETCAR.
7497
7498 2010-04-28 Glenn Morris <rgm@gnu.org>
7499
7500 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
7501 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
7502
7503 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
7504
7505 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
7506 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
7507
7508 * Makefile.in (FONT_OBJ): New, set by configure.
7509 (FONT_DRIVERS): Use $FONT_OBJ.
7510
7511 * Makefile.in (LIBXMU): Set with configure, not cpp.
7512 * s/aix4-2.h (LIBXMU):
7513 * s/hpux10-20.h (LIBXMU):
7514 Remove definition, now set in configure.
7515
7516 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
7517
7518 * m/amdx86-64.h [i386]: Move this test to configure.in.
7519
7520 2010-04-27 Glenn Morris <rgm@gnu.org>
7521
7522 * Makefile.in (LIBXTR6): Set with configure, not cpp.
7523 * s/unixware.h (NEED_LIBW): Remove definition.
7524
7525 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
7526 (TOOLKIT_LIBW): New, set by configure.
7527 (@X_TOOLKIT_TYPE@): No longer define it.
7528
7529 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
7530 (MOTIF_LIBW): Set with configure, not cpp.
7531 * s/aix4-2.h (LIB_MOTIF):
7532 * s/gnu-linux.h (LIB_MOTIF):
7533 * s/unixware.h (LIB_MOTIF): Move to configure.in.
7534
7535 2010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
7536
7537 Reduce CPP usage.
7538 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
7539 (obj): Use autoconf for unexec instead of cpp.
7540 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
7541 Remove definitions and undefs. Inline definitions in the only user.
7542 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
7543
7544 2010-04-27 Glenn Morris <rgm@gnu.org>
7545
7546 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
7547 since the defaults (set by the system file) are fine in most cases.
7548 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
7549 * m/ibms390x.h (START_FILES, LIB_STANDARD):
7550 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
7551 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
7552 Remove definitions, since they are set correctly in s/gnu-linux.h.
7553 * s/freebsd.h (START_FILES, LIB_STANDARD):
7554 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
7555 * s/hpux10-20.h (START_FILES):
7556 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
7557 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
7558
7559 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
7560 (MOTIF_LIBW): Use $LIBXP.
7561 (otherobj): Use $WIDGET_OBJ.
7562
7563 2010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
7564
7565 * Makefile.in (LIBS_MACHINE): Remove, unused.
7566
7567 Use autoconf instead of cpp for LIB_MATH.
7568 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
7569 * s/cygwin.h (LIB_MATH): Likewise.
7570 * Makefile.in (LIB_MATH): Do not define with cpp.
7571 (LIBES): Use autoconf for LIB_MATH.
7572
7573 2010-04-26 Kenichi Handa <handa@m17n.org>
7574
7575 * composite.c (Ffind_composition_internal): Fix the return value
7576 for an automatic composition.
7577
7578 2010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
7579
7580 Remove all NO_ARG_ARRAY uses.
7581 * fns.c (concat2, concat3, nconc2):
7582 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
7583 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
7584 * m/xtensa.h (NO_ARG_ARRAY):
7585 * m/template.h (NO_ARG_ARRAY):
7586 * m/sparc.h (NO_ARG_ARRAY):
7587 * m/sh3.h (NO_ARG_ARRAY):
7588 * m/mips.h (NO_ARG_ARRAY):
7589 * m/macppc.h (NO_ARG_ARRAY):
7590 * m/iris4d.h (NO_ARG_ARRAY):
7591 * m/intel386.h (NO_ARG_ARRAY):
7592 * m/ibms390x.h (NO_ARG_ARRAY):
7593 * m/ibms390.h (NO_ARG_ARRAY):
7594 * m/ibmrs6000.h (NO_ARG_ARRAY):
7595 * m/ia64.h (NO_ARG_ARRAY):
7596 * m/hp800.h (NO_ARG_ARRAY):
7597 * m/arm.h (NO_ARG_ARRAY):
7598 * m/amdx86-64.h (NO_ARG_ARRAY):
7599 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
7600
7601 2010-04-25 Eli Zaretskii <eliz@gnu.org>
7602
7603 * xdisp.c (display_line): Don't assume 2nd call to
7604 get_next_display_element cannot return zero. (Bug#6030)
7605 (iterate_out_of_display_property): New function, body from pop_it.
7606 (pop_it): Use it.
7607
7608 2010-04-24 Glenn Morris <rgm@gnu.org>
7609
7610 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
7611 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
7612 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
7613 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
7614
7615 2010-04-24 Eli Zaretskii <eliz@gnu.org>
7616
7617 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
7618 use `get_next_display_element' and `set_iterator_to_next' to
7619 advance to the next character, when looking for the character that
7620 begins the next row.
7621
7622 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
7623 definition of "struct Lisp_Symbol".
7624
7625 2010-04-24 Glenn Morris <rgm@gnu.org>
7626
7627 * Makefile.in (CRT_DIR): New variable, set by configure.
7628 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
7629 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
7630
7631 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
7632
7633 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
7634
7635 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
7636
7637 Remove redundant flags.
7638 * s/freebsd.h (C_SWITCH_SYSTEM):
7639 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
7640 * s/netbsd.h (C_SWITCH_SYSTEM):
7641 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
7642 of these.
7643
7644 Simplify m/intel386.h.
7645 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
7646 user: ecrt0.c.
7647 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
7648 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
7649 the only user: s/unixware.h.
7650 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
7651 from m/intel386.h.
7652 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
7653 Definitions moved here from m/intel386.h.
7654
7655 * m/mips.h: Remove #if 0 code.
7656
7657 2010-04-23 Eli Zaretskii <eliz@gnu.org>
7658
7659 Fix display of composed characters from L2R scripts in bidi buffers.
7660 * xdisp.c (set_iterator_to_next, next_element_from_composition):
7661 After advancing IT past the composition, resync the bidi iterator
7662 with IT's position. (Bug#5977)
7663
7664 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
7665
7666 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
7667 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
7668
7669 2010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7670
7671 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
7672
7673 2010-04-23 Eli Zaretskii <eliz@gnu.org>
7674
7675 Support `display' text properties and overlay strings in bidi buffers.
7676 * xdisp.c (pop_it): When the stack is popped after displaying
7677 from a string, bidi-iterate to exit from the text portion covered
7678 by the `display' property or overlay. (Bug#5988, bug#5920)
7679
7680 2010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
7681
7682 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
7683 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
7684
7685 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
7686 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
7687
7688 Simplify STARTFILES definition.
7689 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
7690 relying on Makefile.in to define it.
7691 * s/cygwin.h (START_FILES): Likewise.
7692 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
7693
7694 Clean up Solaris code.
7695 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
7696 (LIB_MOTIF): Remove, configure takes care of this.
7697 (NOT_USING_MOTIF): Remove, unused.
7698 * xrdb.c: Remove #if 0-ed #include.
7699 (SYSV): Remove conditional for old SysV.
7700 * sysdep.c (closedir): Remove conditional code for Solaris,
7701 Solaris has closedir.
7702
7703 2010-04-22 Jan Djärv <jan.h.d@swipnet.se>
7704
7705 * xsettings.c (read_and_apply_settings): Check if current_font is
7706 NULL before strcmp (Bug#6001).
7707
7708 2010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
7709
7710 Clean up HP-UX files.
7711 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
7712 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
7713 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
7714 * s/hpux10-20.h: ... to the only user, here.
7715
7716 2010-04-21 Eli Zaretskii <eliz@gnu.org>
7717
7718 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
7719 use buffer-local values of paragraph-start and paragraph-separate.
7720 <paragraph_start_re, paragraph_separate_re>: Rename from
7721 fallback_paragraph_start_re and fallback_paragraph_separate_re.
7722 (Bug#5992)
7723
7724 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
7725
7726 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
7727 current_tool_bar_style are new.
7728 (store_config_changed_event): Rename from store_font_changed_event.
7729 (XSETTINGS_TOOL_BAR_STYLE): New define.
7730 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
7731 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
7732 HAVE_XFT.
7733 (something_changedCB): store_font_changed_event is now
7734 store_config_changed_event.
7735 (parse_settings): Rename from parse_xft_settings.
7736 Read non-xft xsettings outside #ifdef HAVE_XFT.
7737 (read_settings): Rename from read_xft_settings.
7738 (apply_xft_settings): Take current settings as parameter. Do not
7739 call read_(xft)_settings.
7740 (read_and_apply_settings): New function.
7741 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
7742 Call read_and_apply_settings if there are settings to be read.
7743 (init_xsettings): Rename from init_xfd_settings.
7744 Call read_and_apply_settings unconditionally.
7745 (xsettings_initialize): Call init_xsettings.
7746 (Ftool_bar_get_system_style): New function.
7747 (syms_of_xsettings): Define Qmonospace_font_name and
7748 Qtool_bar_style. Initialize current_tool_bar_style to nil.
7749 defsubr Stool_bar_get_system_style. Fprovide on
7750 dynamic-setting.
7751 Move misplaced HAVE_GCONF
7752
7753 * xsettings.h (Ftool_bar_get_system_style): Declare.
7754
7755 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
7756 Qtext, Qboth, Qboth_horiz are new.
7757 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
7758 Vtool_bar_style, tool_bar_max_label_size.
7759
7760 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
7761
7762 * keyboard.c: QClabel is new.
7763 (parse_tool_bar_item): Take out QClabel from tool bar items.
7764 Try to construct a label if ther is no QClabel.
7765 (syms_of_keyboard): Intern :label as QClabel.
7766
7767 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
7768 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
7769 New.
7770
7771 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
7772 dynamic-setting.el.
7773
7774 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
7775 (xg_make_tool_item, xg_show_toolbar_item): New function.
7776 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
7777 Call xg_make_tool_item to make a tool bar item.
7778 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
7779
7780 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
7781 into account for toolbars.
7782
7783 2010-04-21 Jan Djärv <jan.h.d@swipnet.se>
7784
7785 * data.c (make_blv): Declarations before code (Bug#5993).
7786
7787 2010-04-21 Glenn Morris <rgm@gnu.org>
7788
7789 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
7790 Define using autoconf, not cpp.
7791 (LIBXSM): New variable, set by autoconf.
7792 (LIBXT): Use $LIBXSM.
7793
7794 2010-04-21 Dan Nicolaescu <local_user@dannlt>
7795
7796 Remove NOMULTIPLEJOBS, unused.
7797 * s/template.h (NOMULTIPLEJOBS):
7798 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
7799
7800 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
7801 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
7802 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
7803 detects -znocombreloc and passes it to the linker
7804 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
7805
7806 2010-04-21 Glenn Morris <rgm@gnu.org>
7807
7808 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
7809
7810 2010-04-21 Karel Klíč <kklic@redhat.com>
7811
7812 * Makefile.in (LIBSELINUX_LIBS): New.
7813 (LIBES): Add $LIBSELINUX_LIBS.
7814 * eval.c, lisp.h (call7): New function.
7815 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
7816 (Ffile_selinux_context, Fset_file_selinux_context):
7817 New functions.
7818 (Fcopy_file): New parameter preserve-selinux-context.
7819 (Frename_file): Preserve selinux context when renaming by copy-file.
7820
7821 2010-04-21 Juanma Barranquero <lekktu@gmail.com>
7822 Eli Zaretskii <eliz@gnu.org>
7823
7824 Don't depend on cm.c or termcap.c on Windows, use stubs.
7825 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
7826 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
7827 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
7828 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
7829 (sys_tputs, sys_tgetstr): New stubs.
7830 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
7831 (tputs, tgetstr): New; define to sys_*.
7832
7833 2010-04-20 Juanma Barranquero <lekktu@gmail.com>
7834
7835 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
7836
7837 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7838
7839 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
7840 Just signal a warning rather than an error when inside a let.
7841 (Fmake_variable_frame_local): Add the same test.
7842
7843 * font.c (syms_of_font): Make the style table vars read-only.
7844
7845 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
7846 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
7847
7848 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
7849
7850 2010-04-20 Eli Zaretskii <eliz@gnu.org>
7851
7852 Fix R2L paragraph display on TTY.
7853
7854 * xdisp.c (unproduce_glyphs): New function.
7855 (display_line): Use it when produced glyphs are discarded from R2L
7856 glyph rows.
7857 (append_composite_glyph): In R2L rows, prepend the glyph rather
7858 than appending it.
7859
7860 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
7861 rather than append it. Set up the resolved_level and bidi_type
7862 attributes of the appended glyph.
7863 (produce_special_glyphs): Mirror the backslash continuation
7864 character in R2L lines.
7865
7866 Implement display of R2L paragraphs in GUI sessions.
7867
7868 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
7869 append_stretch_glyph.
7870 (set_cursor_from_row) <cursor_x>: Remove unused variable.
7871 Fix off-by-one error in computing x at end of text in the row.
7872 (append_stretch_glyph): In reversed row, prepend the glyph rather
7873 than append it. Set resolved_level and bidi_type of the glyph.
7874 (extend_face_to_end_of_line): If the row is reversed, prepend a
7875 stretch glyph whose width is such that the rightmost glyph will be
7876 drawn at the right margin of the window. Fix off-by-one error on
7877 TTY frames in testing whether a line needs face extension.
7878 Fix face extension at ZV. If this is the last glyph row, use
7879 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
7880 region face.
7881 (set_cursor_from_row, display_line):
7882 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
7883 row->continuation_lines_width.
7884 (next_element_from_buffer): Don't call bidi_paragraph_init if we
7885 are at ZV. Fixes a crash when reseated to ZV by
7886 try_window_reusing_current_matrix.
7887 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
7888 which happens with R2L glyph rows. Fixes a crash when inserting a
7889 character at end of an R2L line.
7890 (set_cursor_from_row): Don't be fooled by truncated rows: don't
7891 treat them as having zero-width characters. Improve comments.
7892 Don't reverse pos_before and pos_after for reversed glyph rows.
7893 Set cursor.x to negative value when the cursor might be on the
7894 left fringe.
7895 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
7896 left fringe, not the right one.
7897 (notice_overwritten_cursor, draw_phys_cursor_glyph)
7898 (erase_phys_cursor): For reversed cursor_row, support cursor on
7899 the left fringe.
7900
7901 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
7902 of continuation indicators on the fringes.
7903 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
7904 left fringe.
7905
7906 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
7907 draw cursor on the left fringe.
7908
7909 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
7910 cursor on the left fringe.
7911
7912 * dispnew.c (update_text_area): Handle reversed desired rows when
7913 the cursor is on the left fringe.
7914 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
7915 below, not by 0, for when the cursor is on the left fringe.
7916
7917 2010-04-20 Jan Djärv <jan.h.d@swipnet.se>
7918
7919 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
7920 widget is a scrollbar.
7921
7922 2010-04-20 Kenichi Handa <handa@m17n.org>
7923
7924 * charset.c (char_charset): Consider Vcharset_non_preferred_head
7925 only when the arg CHARSET_LIST is nil.
7926
7927 2010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7928
7929 Make variable forwarding explicit rather the using special values.
7930 Basically, this makes the structure of buffer-local values and object
7931 forwarding explicit in the type of Lisp_Symbols rather than use
7932 special Lisp_Objects for that. This tends to lead to slightly more
7933 verbose code, but is more C-like, simpler, and makes it easier to make
7934 sure we handled all cases, among other things by letting the compiler
7935 help us check it.
7936 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
7937 Removing forwarding objects.
7938 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
7939 (struct Lisp_Symbol): Make the various forms of variable-forwarding
7940 explicit rather than hiding them inside Lisp_Object "values".
7941 (XFWDTYPE): New macro.
7942 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
7943 (XBUFFER_LOCAL_VALUE): Remove.
7944 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
7945 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
7946 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
7947 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
7948 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
7949 Remove the Lisp_Misc_* header.
7950 (struct Lisp_Buffer_Local_Value): Redefine.
7951 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
7952 (struct Lisp_Misc_Any): Add filler to get the right size.
7953 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
7954 Lisp_Intfwd.
7955 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
7956 (DEFVAR_KBOARD): Allocate a forwarding object.
7957 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
7958 (let_shadows_global_binding_p): New function.
7959 (union Lisp_Val_Fwd): New type.
7960 (make_blv): New function.
7961 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
7962 (store_symval_forwarding, swap_in_global_binding, Fboundp)
7963 (swap_in_symval_forwarding, find_symbol_value, Fset)
7964 (let_shadows_buffer_binding_p, set_internal, default_value)
7965 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
7966 (Fkill_local_variable, Fmake_variable_frame_local)
7967 (Flocal_variable_p, Flocal_variable_if_set_p)
7968 (Fvariable_binding_locus):
7969 * xdisp.c (select_frame_for_redisplay):
7970 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
7971 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
7972 * frame.c (store_frame_param):
7973 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
7974 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
7975 value structure.
7976 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
7977 (clone_per_buffer_values): Only adjust markers into the current buffer.
7978 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
7979 (Fbuffer_local_value, set_buffer_internal_1)
7980 (swap_out_buffer_local_variables):
7981 Adapt to the new symbol value structure.
7982 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
7983 (defvar_per_buffer): Take a new arg for the fwd object.
7984 (buffer_lisp_local_variables): Return a proper alist (different fix
7985 for bug#4138).
7986 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
7987 (Fgarbage_collect): Don't handle buffer_defaults specially.
7988 (mark_object): Handle new symbol value structure rather than the old
7989 special Lisp_Misc_* objects.
7990 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
7991 * term.c (set_tty_color_mode):
7992 * bidi.c (bidi_initialize): Don't access the ->value field directly.
7993 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
7994 a buffer_local_flags.
7995 * print.c (print_object): Get rid of impossible forwarding objects.
7996
7997 2010-04-19 Eli Zaretskii <eliz@gnu.org>
7998
7999 * bidi.c (bidi_get_type, bidi_get_category)
8000 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
8001 (bidi_type_of_next_char, bidi_level_of_next_char):
8002 Declare static. Use `INLINE' rather than `inline'.
8003
8004 2010-04-19 Juanma Barranquero <lekktu@gmail.com>
8005
8006 * dired.c (Ffile_attributes): Fix typo in docstring.
8007
8008 2010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8009
8010 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
8011 NSInteger (Bug#5811).
8012
8013 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8014
8015 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
8016 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
8017
8018 2010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8019
8020 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
8021
8022 2010-04-19 Chong Yidong <cyd@stupidchicken.com>
8023
8024 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
8025 terminal frames (Bug#5837).
8026
8027 2010-04-19 Eli Zaretskii <eliz@gnu.org>
8028
8029 * .gdbinit (xsubchartable): New command.
8030
8031 2010-04-19 Eli Zaretskii <eliz@gnu.org>
8032
8033 * xdisp.c (display_line): Don't write beyond the last glyph row in
8034 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
8035 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
8036 and
8037 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
8038
8039 2010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8040
8041 * alloc.c (Fpurecopy): Hash-cons if requested.
8042 (syms_of_alloc): Update purify-flag docstring.
8043
8044 2010-04-18 Jan Djärv <jan.h.d@swipnet.se>
8045
8046 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
8047 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
8048
8049 2010-04-17 Eli Zaretskii <eliz@gnu.org>
8050
8051 Fix a crash when an NSM character is inserted at BEGV.
8052
8053 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
8054 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
8055 NEUTRAL_B or UNKNOWN_BT.
8056
8057 2010-04-16 Eli Zaretskii <eliz@gnu.org>
8058
8059 * xdisp.c (set_cursor_from_row): Don't consider possibility of
8060 other rows with cursor unless they are different from this row and
8061 this row is part of a continued line. (Bug#5943)
8062
8063 2010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
8064
8065 * s/freebsd.h: Restore osreldate.h include.
8066 Suggested by Naohiro Aota.
8067
8068 2010-04-16 Jan Djärv <jan.h.d@swipnet.se>
8069
8070 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
8071
8072 2010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
8073
8074 * s/cygwin.h: Avoid linking against static libgcc.
8075
8076 2010-04-15 Juri Linkov <juri@jurta.org>
8077
8078 * window.c: Add Qscroll_command.
8079 Remove Vscroll_preserve_screen_position_commands.
8080 (window_scroll_pixel_based, window_scroll_line_based): Check the
8081 `scroll-command' property on the last command instead of searching
8082 the last command in Vscroll_preserve_screen_position_commands.
8083 (syms_of_window): Initialize and staticpro `Qscroll_command'.
8084 Put Qscroll_command property on Qscroll_up and Qscroll_down.
8085 (scroll-preserve-screen-position): Doc fix.
8086 (Vscroll_preserve_screen_position_commands): Remove variable.
8087
8088 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
8089
8090 * xdisp.c (message): Do not use NO_ARG_ARRAY.
8091
8092 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
8093
8094 Reduce cpp use in Makefile.in.
8095 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
8096 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
8097 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
8098 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
8099 (CRT0_COMPILE): Remove, inline it in the only user.
8100
8101 2010-04-14 Juri Linkov <juri@jurta.org>
8102
8103 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
8104 `scroll-up-command' and `M-v' from `scroll-down' to
8105 `scroll-down-command'.
8106
8107 2010-04-14 Juri Linkov <juri@jurta.org>
8108
8109 * window.c (Vscroll_preserve_screen_position_commands): New variable
8110 with the default value as the list of Qscroll_down and Qscroll_up.
8111 (window_scroll_pixel_based, window_scroll_line_based): Search the
8112 last command in the list Vscroll_preserve_screen_position_commands
8113 instead of comparing with Qscroll_up and Qscroll_down.
8114
8115 2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
8116
8117 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
8118 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
8119 does that.
8120
8121 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
8122 to zero.
8123
8124 2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
8125
8126 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
8127
8128 Try to solve the problem of spurious EOF chars in long lines of text
8129 sent to interactive subprocesses.
8130 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
8131 (system_process_attributes): Remove unused var `ttotal'.
8132 * process.c (send_process): Don't bother breaking long line with EOF
8133 chars when talking to ttys any more.
8134 (wait_reading_process_output): Output a warning when called in such
8135 a way that it could block without being interruptible.
8136
8137 Try to detect file modification within the same second.
8138 * buffer.h (struct buffer): New field modtime_size.
8139 * buffer.c (reset_buffer): Initialize it.
8140 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
8141 (Fverify_visited_file_modtime): Check it.
8142 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
8143 (Fset_visited_file_modtime): Set (or clear) it.
8144
8145 2010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8146
8147 * process.c (status_notify): Remove unused var `ro'.
8148
8149 2010-04-12 Jan Djärv <jan.h.d@swipnet.se>
8150
8151 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
8152 more than one visual (Bug#5938).
8153
8154 2010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
8155
8156 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
8157 Undefine.
8158
8159 2010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
8160
8161 Remove C_SWITCH_SYSTEM_TEMACS.
8162 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
8163 (malloc, realloc, free): Use emacs, not temacs for conditional
8164 definition.
8165
8166 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
8167 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
8168
8169 Use autoconf, not cpp for some variables.
8170 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
8171 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
8172 (ALL_CFLAGS): Use them as make variables.
8173 (really-lwlib, really-oldXMenu): Do not pass them.
8174
8175 2010-04-11 Jan Djärv <jan.h.d@swipnet.se>
8176
8177 * xmenu.c (apply_systemfont_to_dialog): New.
8178 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
8179
8180 2010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8181
8182 * process.c (exec_sentinel): Preserve current-buffer.
8183
8184 * process.c (read_process_output): Move the save-current-buffer to
8185 apply to both the filter and the non-filter branches.
8186
8187 2010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
8188
8189 * s/msdos.h (UNEXEC): New definition.
8190
8191 2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8192
8193 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
8194 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
8195
8196 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
8197 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
8198 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
8199 TRY_WINDOW_CHECK_MARGINS.
8200
8201 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
8202 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
8203 width only when it is for padding.
8204
8205 2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
8206
8207 * xfns.c (Fx_show_tip): Call try_window in a loop until
8208 fonts_changed_p is zero (Bug#2423).
8209
8210 2010-04-08 Eli Zaretskii <eliz@gnu.org>
8211
8212 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
8213 the end of TEXT_AREA. (Bug#5856)
8214
8215 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
8216
8217 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
8218 HAVE_GCONF.
8219
8220 2010-04-08 Eli Zaretskii <eliz@gnu.org>
8221
8222 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
8223 prev.orig_type, for resolving type of NSM. (Bug#5858)
8224
8225 2010-04-08 Jan Djärv <jan.h.d@swipnet.se>
8226
8227 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
8228 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
8229 in current_font.
8230 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
8231 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
8232 New functions.
8233 (syms_of_xsettings): Initialize current_font.
8234 defsubr Sfont_get_system_normal_font.
8235
8236 * xsettings.h (Ffont_get_system_normal_font)
8237 (xsettings_get_system_normal_font): Declare.
8238
8239 * xfns.c (extern xlwmenu_default_font): Remove.
8240 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
8241 to xlwmenu.c.
8242
8243 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
8244 menu items in UTF-8.
8245
8246 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
8247 (apply_systemfont_to_menu): New function.
8248 (set_frame_menubar, create_and_show_popup_menu):
8249 Call apply_systemfont_to_menu.
8250
8251 2010-04-07 Jan Djärv <jan.h.d@swipnet.se>
8252
8253 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
8254 FRAME_LINE_TO_PIXEL_Y.
8255
8256 * xterm.c (x_set_window_size_1): Don't add border_width/height to
8257 pixelwidth/height.
8258
8259 2010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
8260
8261 Simplify code for HP machines.
8262 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
8263 for GNU_LINUX, not needed.
8264 (UNEXEC, NEED_BSDTTY): Move definitions...
8265 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
8266
8267 * m/iris4d.h (UNEXEC): Move definition ...
8268 * s/irix6-5.h (UNEXEC): ... here.
8269
8270 2010-04-04 Jan Djärv <jan.h.d@swipnet.se>
8271
8272 * xfns.c (set_machine_and_pid_properties): New function.
8273 (Fx_create_frame): Call set_machine_and_pid_properties.
8274
8275 2010-04-03 Eli Zaretskii <eliz@gnu.org>
8276
8277 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
8278 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
8279 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
8280
8281 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
8282 in this function. (Bug#5703)
8283
8284 2010-04-03 Chong Yidong <cyd@stupidchicken.com>
8285
8286 * nsterm.h: Fix last change.
8287
8288 2010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
8289
8290 * m/intel386.h (NO_REMAP): Move definition ...
8291 * s/msdos.h (NO_REMAP): ... here.
8292
8293 * m/vax.h (CRT0_DUMMIES): Remove, unused.
8294
8295 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
8296 used on those platforms.
8297
8298 2010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
8299
8300 Remove extern errno declarations.
8301 * xterm.c:
8302 * xrdb.c:
8303 * w32term.c:
8304 * unexec.c:
8305 * unexaix.c:
8306 * sysdep.c:
8307 * process.c:
8308 * lread.c:
8309 * keyboard.c:
8310 * floatfns.c:
8311 * filelock.c:
8312 * fileio.c:
8313 * emacs.c (main):
8314 * ecrt0.c:
8315 * dispnew.c:
8316 * callproc.c:
8317 * buffer.c: Remove errno extern declarations.
8318 * s/netbsd.h (NEED_ERRNO): Remove.
8319
8320 2010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
8321
8322 Remove all uses of LIBX11_SYSTEM.
8323 * Makefile.in (LIBX11_SYSTEM): Remove.
8324 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
8325 instead.
8326
8327 2010-04-01 Eli Zaretskii <eliz@gnu.org>
8328
8329 Remove support for DJGPP v1.x (bug#5813).
8330
8331 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
8332 * s/msdos.h:
8333 * unexec.c (make_hdr, copy_text_and_data):
8334 * sysdep.c (wait_for_termination, sys_subshell):
8335 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
8336 (IT_set_terminal_modes, __write, _rename, gethostname)
8337 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
8338 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
8339 the value of __DJGPP__.
8340 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
8341 compatibility code.
8342 * lread.c:
8343 * gmalloc.c (memalign):
8344 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
8345 * emacs.c (main):
8346 * dosfns.c (init_dosfns):
8347 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
8348
8349 2010-04-01 Eli Zaretskii <eliz@gnu.org>
8350
8351 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
8352 string with `cursor' property comes from an `after-string'
8353 overlay. (Bug#5816)
8354
8355 2010-04-01 Glenn Morris <rgm@gnu.org>
8356
8357 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
8358 Define as Makefile variables.
8359 (LIBX): Use above variables rather than directly using autoconf.
8360
8361 2010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
8362
8363 Clean up BSD_SYSTEM use.
8364 * xterm.c:
8365 * process.c:
8366 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
8367 for including <sys/ioctl.h>.
8368 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
8369 code is only used for MSDOS.
8370
8371 2010-03-31 Juri Linkov <juri@jurta.org>
8372
8373 * image.c: Add `Qextension_data'.
8374 (syms_of_image): Initialize and staticpro `Qextension_data'.
8375 (Fimage_metadata): Rename from `Fimage_extension_data'.
8376 (gif_load): Put GIF extension data to the property
8377 `Qextension_data'.
8378
8379 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8380
8381 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
8382 * nsterm.h: Fix prototype.
8383
8384 2010-03-31 Eli Zaretskii <eliz@gnu.org>
8385
8386 * xdisp.c (highlight_trailing_whitespace): Support highlight of
8387 trailing whitespace in right-to-left rows.
8388
8389 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8390
8391 Get rid of the direct_output optimizations.
8392 * keyboard.c (nonundocount): Remove extern declaration.
8393 (command_loop_1): Remove brittle optimisation for cheap and
8394 common operations.
8395 * xdisp.c (redisplay_internal): Don't bother checking
8396 redisplay_performed_directly_p any more.
8397 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
8398 any more.
8399 * dispnew.c (redisplay_performed_directly_p)
8400 (direct_output_for_insert, direct_output_forward_char):
8401 * dispextern.h (redisplay_performed_directly_p)
8402 (direct_output_for_insert, direct_output_forward_char): Remove.
8403 * cmds.c (nonundocount): Make it static.
8404
8405 2010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
8406
8407 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
8408
8409 2010-03-31 Jan Djärv <jan.h.d@swipnet.se>
8410
8411 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
8412 invisible (Bug#5766).
8413
8414 2010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
8415
8416 * xdisp.c (x_consider_frame_title, update_window_cursor):
8417 Remove HAVE_NS conditionals.
8418 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
8419
8420 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
8421 filename for the title.
8422 (ns_set_doc_edited): Do nothing if the selected window is a
8423 minibuffer window.
8424
8425 * nsterm.h: Add prototypes for ns_set_name_as_filename and
8426 ns_set_doc_edited.
8427
8428 * nsterm.m: Remove unneeded prototype.
8429
8430 2010-03-31 Glenn Morris <rgm@gnu.org>
8431
8432 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
8433 in the DOC file. (Bug#5336)
8434
8435 2010-03-31 Chong Yidong <cyd@stupidchicken.com>
8436
8437 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
8438
8439 2010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * window.c (keys_of_window): Remove redundant/overridden bindings.
8442
8443 2010-03-30 Eli Zaretskii <eliz@gnu.org>
8444
8445 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
8446 Restore original behavior when the iterator is not bidi_p.
8447
8448 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
8449
8450 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
8451
8452 2010-03-30 Eli Zaretskii <eliz@gnu.org>
8453
8454 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
8455 are outside the range of cached character positions.
8456
8457 2010-03-30 Juanma Barranquero <lekktu@gmail.com>
8458
8459 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
8460
8461 2010-03-30 Eli Zaretskii <eliz@gnu.org>
8462
8463 Initial support for bidirectional editing.
8464
8465 * Makefile.in (obj): Include bidi.o.
8466 (bidi.o): New target.
8467
8468 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
8469 ($(BLD)/bidi.$(O)): New target.
8470
8471 * bidi.c: New file.
8472
8473 * buffer.h (struct buffer): New members bidi_display_reordering
8474 and bidi_paragraph_direction.
8475
8476 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
8477 and bidi_paragraph_direction.
8478 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
8479 and bidi-paragraph-direction.
8480 (Fbuffer_swap_text): Swap the values of
8481 bidi_display_reordering and bidi_paragraph_direction.
8482
8483 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
8484 (bidi_type_t, bidi_dir_t): New types.
8485 (bidi_saved_info, bidi_stack, bidi_it): New structures.
8486 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
8487 prev_stop, base_level_stop, and eol_pos.
8488 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
8489 (IT_STACK_SIZE): Enlarge to 5.
8490 (struct glyph_row): New member reversed_p.
8491 <string_buffer_position>: Update prototype.
8492 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
8493 glyph_row if bidi_it.paragraph_dir == R2L.
8494 (struct glyph): New members resolved_level and bidi_type.
8495
8496 * dispnew.c (direct_output_forward_char): Give up if we need bidi
8497 processing or buffer's direction is right-to-left.
8498 (prepare_desired_row): Preserve the reversed_p flag.
8499 (row_equal_p): Compare the reversed_p attributes as well.
8500
8501 * xdisp.c (init_iterator): Initialize it->bidi_p.
8502 Call bidi_init_it and set it->paragraph_embedding from the current
8503 buffer's value of bidi_paragraph_direction.
8504 (reseat_1): Initialize bidi_it.first_elt.
8505 (set_iterator_to_next, next_element_from_buffer): Use the value of
8506 paragraph_embedding to determine the paragraph direction.
8507 (set_iterator_to_next): Under bidi reordering, call
8508 bidi_get_next_char_visually. Call bidi_paragraph_init if the
8509 new_paragraph flag is set in the bidi iterator.
8510 (next_element_from_buffer): If bidi_it.first_elt is set,
8511 initialize paragraph direction and find the first character to
8512 display in the visual order. If reseated to a middle of a line,
8513 prime the bidi iterator starting at the line's beginning.
8514 Handle the situation where we overstepped stop_charpos due to
8515 non-linearity of the bidi iteration. Likewise for when we back up
8516 beyond the previous stop_charpos. When moving across stop_charpos,
8517 record it in prev_stop.
8518 (display_line): Set row->end and it->start for the next row to the
8519 next character in logical order. Always extend reversed_p rows to
8520 the end of line, even if they end at ZV. Copy the reversed_p flag
8521 to the next glyph row. Keep calling set_cursor_from_row for
8522 bidi-reordered rows even if we already have a possible candidate
8523 for cursor position. Set row_end after all the row's glyphs have
8524 been produced, by looping over the glyphs. Record the position
8525 after EOL in it->eol_pos, and use it to set end_pos of the last
8526 row produced for a continued line.
8527 <Qright_to_left, Qleft_to_right>: New variables.
8528 (syms_of_xdisp): Initialize and staticpro them.
8529 (string_buffer_position_lim): New function.
8530 (string_buffer_position): Most of code moved to
8531 string_buffer_position_lim. Last argument and return value are
8532 now EMACS_INT; all callers changed.
8533 (set_cursor_from_row): Rewritten to support bidirectional text and
8534 reversed glyph rows.
8535 (text_outside_line_unchanged_p, try_window_id):
8536 Disable optimizations if we are reordering bidirectional text and the
8537 paragraph direction can be affected by the change.
8538 (append_glyph, append_composite_glyph)
8539 (produce_image_glyph, append_stretch_glyph): Set the
8540 resolved_level and bidi_type members of each glyph.
8541 (append_glyph): If the glyph row is reversed, prepend the glyph
8542 rather than appending it.
8543 (handle_stop_backwards): New function.
8544 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
8545 (reseat): call handle_stop_backwards to recompute prev_stop and
8546 base_level_stop for the new position.
8547 (handle_invisible_prop): Under bidi iteration, skip invisible text
8548 using bidi_get_next_char_visually. If we are `reseat'ed, init the
8549 paragraph direction. Update IT->prev_stop after skipping
8550 invisible text.
8551 (move_it_in_display_line_to): New variables prev_method
8552 and prev_pos. Compare for strict equality in
8553 BUFFER_POS_REACHED_P.
8554 (try_cursor_movement): Examine all the candidate rows that occlude
8555 point, to return the best match. If rows are bidi-reordered
8556 and point moved backwards, back up to the row that is not a
8557 continuation line, and start looking for a suitable row from
8558 there.
8559
8560 * term.c (append_glyph): Reverse glyphs by pre-pending them,
8561 rather than appending, if the glyph_row's reversed_p flag is set.
8562 Set the resolved_level and bidi_type members of each glyph.
8563
8564 * .gdbinit (pbiditype): New command.
8565 (pgx): Use it to display bidi level and type of the glyph.
8566 (pitx): Display some bidi information about the iterator.
8567 (prowlims, pmtxrows): New commands.
8568
8569 2010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
8570
8571 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
8572 * s/usg5-4.h (LIBS_DEBUG):
8573 * s/irix6-5.h (C_DEBUG_SWITCH):
8574 * s/gnu-linux.h (LIBS_DEBUG):
8575 * s/darwin.h (LIBS_DEBUG):
8576 * s/bsd-common.h (LIBS_DEBUG):
8577 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
8578 * m/iris4d.h (LIBS_DEBUG):
8579 * m/hp800.h (LIBS_DEBUG): Remove definitions.
8580
8581 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
8582 (LIBS_DEBUG): Remove definition.
8583
8584 2010-03-27 Chong Yidong <cyd@stupidchicken.com>
8585
8586 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
8587 Windows.
8588
8589 2010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8590
8591 * process.c (Fmake_network_process): Don't call turn_on_atimers around
8592 `connect' (Bug#5723).
8593
8594 2010-03-25 Helmut Eller <eller.helmut@gmail.com>
8595
8596 * process.c (Fmake_network_process): Call `select' for interrupted
8597 `connect' rather than creating new socket (Bug#5173).
8598
8599 2010-03-24 Jan Djärv <jan.h.d@swipnet.se>
8600
8601 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
8602
8603 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
8604
8605 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
8606
8607 2010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8608
8609 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
8610 XLoadQueryFont.
8611
8612 2010-03-24 Kenichi Handa <handa@m17n.org>
8613
8614 * coding.c (decode_coding_ccl): Fix previous change for the
8615 multibyte case.
8616 (encode_coding_ccl): Don't setup ccl program here. Fix for the
8617 case that the output buffer is fullfilled.
8618 (encode_coding): Setup ccl program here.
8619
8620 2010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
8621
8622 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
8623
8624 Simplify LIBS_MACHINE definitions.
8625 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
8626 * m/iris4d.h (LIBS_MACHINE): Likewise.
8627 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
8628 * s/aix4-2.h (LIBS_SYSTEM): ... here.
8629 * s/netbsd.h: Remove commented out code.
8630
8631 2010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
8632
8633 Remove dead code dealing with POSIX_SIGNALS.
8634 * atimer.c (set_alarm): Remove dead code, all USG systems define
8635 POSIX_SIGNALS.
8636 * data.c (arith_error): Likewise.
8637 * keyboard.c (input_available_signal, handle_user_signal)
8638 (interrupt_signal): Likewise.
8639 * process.c (sigchld_handler): Likewise.
8640 (create_process): Remove if 0 code. Remove HPUX conditional when
8641 !defined (POSIX_SIGNALS), it cannot be true.
8642 * syssignal.h: Remove USG5_4 and USG conditionals when
8643 !POSIX_SIGNALS, they cannot be true.
8644
8645 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
8646 NO_SOCK_SIGIO, not used anymore.
8647
8648 2010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
8649
8650 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
8651 support vax on BSDs.
8652
8653 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
8654 * s/aix4-2.h (ORDINARY_LINK): ... here.
8655
8656 2010-03-21 Andreas Schwab <schwab@linux-m68k.org>
8657
8658 * Makefile.in (abs_builddir): Define.
8659 (bootstrap_exe): Use it.
8660 (VPATH): Use $(srcdir) instead of @srcdir@.
8661
8662 2010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8663
8664 * Makefile.in (bootstrap_exe): Use an absolute name.
8665
8666 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
8667
8668 Remove support for old GNU/Linux using libc version 5.
8669 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
8670 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
8671
8672 Consolidate redundant definitions in s/bsd-common.h.
8673 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8674 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8675 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
8676 doing it in all files that include this one.
8677 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8678 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8679 (LDAV_SYMBOL, KERNEL_FILE): Remove.
8680 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8681 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8682 (LDAV_SYMBOL, KERNEL_FILE): Remove.
8683 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8684 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8685 (LDAV_SYMBOL, KERNEL_FILE): Remove.
8686
8687 Consolidate redundant definitions.
8688 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
8689 it's undefined in all files that include this one.
8690 (POSIX_SIGNALS): Define here instead of doing it in all files that
8691 include this one.
8692 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
8693 (POSIX_SIGNALS): Do not define.
8694 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
8695 (POSIX_SIGNALS): Do not define.
8696 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
8697 (POSIX_SIGNALS): Do not define.
8698
8699 Remove support for old UNIX System V systems.
8700 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
8701 * s/usg-5-4-2.h: Remove.
8702
8703 Remove support for Solaris on PPC and for old versions.
8704 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
8705 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
8706 that cancel each other.
8707 * s/sol2-3.h:
8708 * s/sol2-4.h:
8709 * s/sol2-5.h: Remove.
8710 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
8711 (NO_REMAP): Remove, unused.
8712 (UNEXEC): Move definition ...
8713 * s/aix4-2.h (UNEXEC): ... here.
8714
8715 * s/openbsd.h: Remove support for non-ELF and for systems that do
8716 not support shared libraries.
8717 * s/netbsd.h:
8718 * s/freebsd.h: Likewise.
8719
8720 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
8721
8722 Remove non-working support for lynxos 3.0.
8723 * s/lynxos.h: Remove file.
8724
8725 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
8726 COFF_BSD_SYMBOLS, nothing defines it anymore.
8727
8728 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
8729
8730 Remove obsolete uses of HAVE_SHM.
8731 * emacs.c (standard_args):
8732 (Fdump_emacs):
8733 (syms_of_emacs): Remove code depending on HAVE_SHM.
8734
8735 * alloc.c: Remove HAVE_SHM dependent definition.
8736
8737 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
8738
8739 2010-03-18 Glenn Morris <rgm@gnu.org>
8740
8741 * emacs.c (USAGE4): Hard-code bug address.
8742 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
8743 (bug_reporting_address): Remove.
8744 (main): Don't call bug_reporting_address.
8745
8746 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
8747 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
8748
8749 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
8750
8751 * xfns.c (Fx_create_frame):
8752 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
8753 on left.
8754
8755 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
8756
8757 * editfns.c (Fformat): Account for string precision when computing
8758 field width (Bug#5710).
8759
8760 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
8761
8762 * xfns.c (Fx_create_frame): Set default to Qright.
8763
8764 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
8765 all window systems.
8766
8767 2010-03-12 Eli Zaretskii <eliz@gnu.org>
8768
8769 These changes remove termcap.c from the build on Posix platforms.
8770 * Makefile.in (termcapobj): Move termcap.o from here...
8771 (MSDOS_OBJ): ...to here.
8772 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
8773 now identical to when LIBS_TERMCAP is defined.
8774
8775 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
8776
8777 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
8778
8779 * config.in: Regenerated. (See top-level ChangeLog.)
8780
8781 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
8782
8783 * Branch for 23.2.
8784
8785 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
8786
8787 Cleanup setup of gl_state in various parts of the code.
8788 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
8789 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
8790 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
8791 (skip_chars):
8792 * regex.c (regex_compile): Use it.
8793 (re_compile_pattern): Don't set gl_state.current_syntax_table since
8794 it's now set in regex_compile when/if we need it.
8795
8796 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
8797
8798 Make it possible to C-g in a tight bytecode loop again (bug#5680).
8799 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
8800 (QUIT): Use it to consolidate code and remove redundancy.
8801 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
8802
8803 * regex.c (regex_compile): Setup gl_state as well.
8804
8805 * syntax.c (skip_chars): Setup gl_state (bug#3823).
8806 (in_classes): Use CONSP before XCAR/XCDR.
8807
8808 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
8809
8810 * keymap.c (Fwhere_is_internal): Use Fequal to compare
8811 definitions, so that keyboard macros are correctly handled
8812 (Bug#5481).
8813
8814 2010-03-02 Eli Zaretskii <eliz@gnu.org>
8815
8816 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
8817 text that could be relocated inside the call to emacs_mule_char.
8818 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
8819 (CODING_DECODE_CHAR): Add a comment describing its purpose.
8820
8821 2010-03-02 Kenichi Handa <handa@m17n.org>
8822
8823 * character.c (parse_str_as_multibyte): Fix handling of the
8824 multibyte form of raw-bytes.
8825 (str_as_multibyte): Likewise.
8826
8827 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
8828 form of raw-bytes.
8829
8830 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
8831
8832 * charset.c (load_charset_map_from_file)
8833 (load_charset_map_from_vector): Zero out allocated
8834 charset_map_entries before using them.
8835
8836 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
8837
8838 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
8839
8840 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
8841
8842 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
8843 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
8844
8845 2010-02-26 Kenichi Handa <handa@m17n.org>
8846
8847 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
8848
8849 * xdisp.c (reseat_to_string): Fix previous change.
8850
8851 2010-02-26 David Reitter <david.reitter@gmail.com>
8852
8853 * nsfont.m (nsfont_draw): ns_antialias_text should be a
8854 Lisp_Object (Bug#4736).
8855
8856 2010-02-25 Kenichi Handa <handa@m17n.org>
8857
8858 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
8859
8860 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
8861
8862 * xterm.c (XTflash): Move declarations before statements.
8863
8864 * gtkutil.c (xg_get_gdk_display): Remove (unused).
8865 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
8866 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
8867 (xg_create_tool_bar): Remove unused variables.
8868 (x_wm_set_size_hint): Move declarations before statements.
8869 (xg_create_frame_widgets): Remove variable grav.
8870
8871 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
8872
8873 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
8874
8875 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
8876
8877 * term.c (fatal): Add a final \n if needed (bug#5596).
8878
8879 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
8880
8881 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
8882
8883 2010-02-18 Glenn Morris <rgm@gnu.org>
8884
8885 * callint.c (Finteractive): Doc fix.
8886
8887 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
8888
8889 * coding.c (record_conversion_result):
8890 Handle CODING_RESULT_INSUFFICIENT_DST.
8891 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
8892 memory allocation error.
8893
8894 2010-02-17 Kenichi Handa <handa@m17n.org>
8895
8896 * coding.c (decode_coding_ccl): Don't setup ccl program here.
8897 Fix for the case that the output buffer is fullfilled.
8898 (decode_coding): Setup ccl program here. Keep looping when the
8899 decoder stopped because the output buffer is
8900 fullfilled (bug#5534).
8901
8902 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
8903
8904 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
8905
8906 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
8907 bug #5571.
8908 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
8909 overdrawn.
8910
8911 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
8912
8913 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
8914 doing_interact here.
8915 (ice_connection_closed): New function.
8916 (x_session_check_input, smc_die_CB, ice_io_error_handler)
8917 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
8918 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
8919 returns I/O error.
8920 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
8921 bug #5512.
8922
8923 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
8924
8925 * nsfont.m (nsfont_open): The system's value for the font descent
8926 is negative, so round it down to avoid clipping.
8927
8928 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
8929
8930 * charset.c (load_charset_map_from_file)
8931 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
8932 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
8933
8934 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
8935
8936 * charset.c (load_charset_map_from_file): Allocate large
8937 charset_map_entries structure on the heap rather than the stack.
8938 (Bug#5526).
8939
8940 2010-01-31 Kenichi Handa <handa@m17n.org>
8941
8942 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
8943 size in NAME is invalid, return -1 (Bug#5396).
8944
8945 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
8946
8947 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
8948 <deactivated@gmail.com> (Bug#3605).
8949
8950 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
8951
8952 * fileio.c (Frename_file): Correctly rename symlinks to
8953 directories (Bug#5496).
8954
8955 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
8956
8957 * nsterm.m (ns_ring_bell): Handle visible bell like X.
8958
8959 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
8960
8961 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
8962
8963 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
8964
8965 * frame.c (DEFAULT_ROWS): Change default to 35.
8966
8967 * xfns.c (x_default_font_parameter): Change default XFT font to
8968 monospace-10 (Bug#3643).
8969
8970 2010-01-29 Eli Zaretskii <eliz@gnu.org>
8971
8972 * w32inevt.c (key_event): Remove unnecessary comparison of
8973 event->uChar.AsciiChar with 128.
8974
8975 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
8976
8977 * fileio.c (Frename_file): Fix last change (Bug#5487).
8978
8979 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
8980
8981 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
8982
8983 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
8984
8985 * xfns.c (Fx_create_frame): Remove window size matching code from
8986 2010-01-15.
8987 (x_get_current_desktop, x_get_desktop_workarea): Remove.
8988
8989 2010-01-27 Jason Rumney <jasonr@gnu.org>
8990
8991 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
8992 (key_event): Use unicode for characters 128 and higher (Bug#4567).
8993
8994 2010-01-27 Kenichi Handa <handa@m17n.org>
8995
8996 * regex.c (analyse_first): Fix setting of fastmap for unibyte
8997 pattern string (Bug#4209).
8998
8999 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
9000
9001 * fileio.c (Frename_file): Call copy-directory and
9002 delete-directory for directories, in order to handle cross-device
9003 renaming (Bug#3353).
9004
9005 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
9006
9007 * xfns.c (Fx_create_frame): If frame height is too big, try
9008 sizes 24 and 10. Bug #3643.
9009
9010 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
9011
9012 Try and fix bug#788, hopefully for real this time.
9013 * keymap.c (shadow_lookup): Add `remap' arg.
9014 (describe_map, describe_vector): Update calls to shadow_lookup.
9015 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
9016 `remapped' so this flag is applicable to `sequence'. Be careful to
9017 perform remapping during shadow_lookup check of remapped_sequences.
9018
9019 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
9020
9021 * image.c (png_load): Use png_sig_cmp instead of the obsolete
9022 png_check_sig, which has been removed in libpng 1.4.
9023
9024 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
9025
9026 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
9027 lacks this header file).
9028
9029 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9030
9031 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
9032 as in Emacs 22.
9033
9034 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9035
9036 * lisp.h (make_pure_string): String pointer arg now points to const.
9037
9038 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
9039 args now point to const.
9040
9041 2010-01-22 Eli Zaretskii <eliz@gnu.org>
9042
9043 * lread.c (Fload): Don't treat files without .elc extension as
9044 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
9045 them. (bug#5303)
9046
9047 2010-01-20 Kenichi Handa <handa@m17n.org>
9048
9049 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
9050 treat the source as actual byte sequence.
9051
9052 2010-01-19 Alan Mackenzie <acm@muc.de>
9053
9054 Fix spurious before-change-functions invocation from (insert ?\n).
9055 * textprop.c (set_text_properties): Rename parameter
9056 `signal_after_change_p' to `coherent_change_p', and make the
9057 invocation of `modify_region' conditional on it.
9058
9059 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
9060
9061 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
9062 for debug purpose.
9063 (syms_of_xsettings): Declare xft-settings.
9064
9065 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
9066
9067 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
9068
9069 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
9070
9071 * xterm.c (event_handler_gdk): Block input (Bug#5037).
9072
9073 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
9074
9075 * emacs.c (standard_args): Adjust arg priorities to reflect how
9076 they are processed in startup.el.
9077
9078 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
9079
9080 * Makefile.in (lisp, shortlisp): Update.
9081
9082 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
9083
9084 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
9085 code, link the new kboard into all_kboard before running Lisp code,
9086 and protect the new terminal with GCPRO (Bug#5365).
9087 (x_term_init): Remove unused var `atom'.
9088 (x_delete_display, x_delete_terminal): Remove unused var `i'.
9089
9090 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
9091
9092 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
9093 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
9094 to find out usable size of the desktop. Don't make frames larger than
9095 this. Bug #3643.
9096
9097 2010-01-15 Kenichi Handa <handa@m17n.org>
9098
9099 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
9100
9101 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
9102
9103 * nsterm.m (Qnone): Define.
9104
9105 * nsfns.m (Qnone): Move definition to nsterm.m.
9106
9107 2010-01-14 Kenichi Handa <handa@m17n.org>
9108
9109 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
9110 systems.
9111
9112 2010-01-14 Kenichi Handa <handa@m17n.org>
9113
9114 Make auto-composition work on all buffers even if they are
9115 fundamental mode.
9116
9117 * composite.c (Vauto_composition_mode): New variable.
9118 (composition_compute_stop_pos): Check Vauto_composition_mode
9119 instead of Vauto_composition_function.
9120 (composition_adjust_point, Ffind_composition_internal): Likewise.
9121 (syms_of_composite): Declare Lisp variable
9122 "auto-composition-mode" here.
9123
9124 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
9125
9126 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
9127 during call to vendor-specific-keysyms (Bug#5365).
9128
9129 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9130
9131 * keyboard.c (input_available_signal) [SYNC_INPUT]:
9132 Call SIGNAL_THREAD_CHECK (Bug#5333).
9133
9134 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
9135 Call SIGNAL_THREAD_CHECK.
9136
9137 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
9138
9139 Try to fix bug#5314. This is probably not the final word, tho.
9140 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
9141 recent-auto-save-p as a side-effect.
9142 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
9143 * buffer.c (Fkill_buffer, reset_buffer):
9144 * editfns.c (Fsubst_char_in_region):
9145 * fileio.c (Finsert_file_contents, Fdo_auto_save)
9146 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
9147
9148 2010-01-13 Kenichi Handa <handa@m17n.org>
9149
9150 Display buffer name, etc. in mode line by composing correctly.
9151
9152 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
9153 STRING is not nil.
9154 (display_mode_element): Adjust for the change of
9155 decode_mode_spec and display_line.
9156 (decode_mode_spec): Change arg MULTIBYTE to STRING.
9157 (display_string): Handle the case that STRING is non-null and
9158 LISP_STRING is not nil.
9159
9160 * xterm.c (x_draw_composite_glyph_string_foreground):
9161 Pay attention to s->face->overstrike.
9162
9163 * composite.c (composition_reseat_it): Don't check PT if STRING is
9164 non nil.
9165
9166 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9167
9168 * keyboard.c (read_char): Don't apply previous change when current
9169 buffer is unchanged by command execution.
9170
9171 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
9172
9173 * keyboard.c (read_char): Return after executing from special map.
9174
9175 2010-01-12 Glenn Morris <rgm@gnu.org>
9176
9177 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
9178 bug-gnu-emacs rather than emacs-pretest-bug.
9179
9180 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
9181
9182 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
9183 initializing the Lisp variables that depend on them.
9184
9185 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9186
9187 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
9188 Clear areas that will not be updated after change of menu bar lines.
9189 Clear the menu bar window's current matrix when the window gets empty.
9190
9191 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
9192
9193 * intervals.h, textprop.c (extend_property_ranges): Return value
9194 and args changed. Discard properties that begin at or after the
9195 new end (Bug#5306).
9196
9197 * editfns.c (Fformat): Caller changed.
9198
9199 * nsterm.m (ns_set_default_prefs): Delete function.
9200 (syms_of_nsterm): Initialize ns_command_modifier,
9201 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
9202 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
9203
9204 * xdisp.c (pos_visible_p): Check for invisible text at the correct
9205 position (Bug#4040).
9206
9207 2010-01-09 Eli Zaretskii <eliz@gnu.org>
9208
9209 * editfns.c (Ffloat_time): Doc fix.
9210
9211 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
9212
9213 * xfns.c (Fx_create_frame): Don't create frame larger than display
9214 by default bug#3643.
9215
9216 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9217
9218 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
9219 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
9220 windows above internal border.
9221
9222 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
9223 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
9224 windows above internal border.
9225
9226 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
9227 tool bar windows specially.
9228
9229 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
9230
9231 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
9232 specially.
9233 (XTflash): Take account of menu bar height.
9234
9235 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
9236 specially.
9237
9238 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
9239
9240 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
9241 also be true before we can return early (bug #5339).
9242
9243 2010-01-06 David Reitter <david.reitter@gmail.com>
9244
9245 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
9246 (Fns_display_usable_bounds): Rewrite, computing bounds properly
9247 (Bug#3233).
9248
9249 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
9250
9251 * font.c (font_open_entity): Enable chache and call cached_font_ok
9252 for the driver if defined.
9253 (QCuser_spec): New symbol.
9254 (font_spec_from_name): Save name as user-spec.
9255 (font_load_for_lface): Keep user-spec instead of name.
9256 (font_open_by_name): Save name as user-spec.
9257 (syms_of_font): Initialize QCuser_spec.
9258 (font_clear_prop): Clear name if it exists in font (bug#5157).
9259
9260 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
9261 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
9262 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
9263
9264 * font.h (struct font_driver): Add cached_font_ok.
9265
9266 * xterm.c (x_clear_frame): Queue draw for scroll bars.
9267
9268 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
9269
9270 * xterm.c (x_new_font): Move code for setting rows/cols before
9271 resizing ...
9272 (x_set_window_size): ... to here. Bug #2568.
9273
9274 * gtkutil.c (xg_clear_under_internal_border): New function.
9275 (xg_frame_resized, xg_frame_set_char_size):
9276 Call xg_clear_under_internal_border.
9277 (xg_update_scrollbar_pos): Clear under old scroll bar position.
9278
9279 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
9280
9281 * keyboard.c (read_key_sequence): Catch keyboard switch after
9282 making a new tty frame (Bug#5095).
9283
9284 2010-01-05 Kenichi Handa <handa@m17n.org>
9285
9286 * fontset.c (fontset_find_font): Fix getting the frame pointer.
9287
9288 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
9289
9290 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
9291 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
9292 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
9293
9294 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
9295
9296 * dbusbind.c (xd_add_watch): Improve debug message.
9297 (xd_remove_watch): Improve debug message. If DATA is the session
9298 bus, unset D-Bus session environment.
9299 (Fdbus_init_bus): Pass the bus as argument to
9300 dbus_connection_set_watch_functions. (Bug#5283)
9301
9302 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
9303
9304 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
9305
9306 * lread.c (syms_of_lread): Make it clearer that these are the
9307 names of loaded files (Bug#5068).
9308
9309 * eval.c (run_hook_with_args): Handle the case where the global
9310 value has the obsolete single-function form (Bug#5026).
9311
9312 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
9313
9314 * minibuf.c (Fall_completions): Minor optimization.
9315
9316 2009-12-26 Eli Zaretskii <eliz@gnu.org>
9317
9318 * .gdbinit (pgx): Fix display of composite glyphs.
9319 Display cmp.from and cmp.to as well.
9320 (pitx): Fix last change.
9321
9322 2009-12-25 Kenichi Handa <handa@m17n.org>
9323
9324 * composite.h (composition_adjust_point): Update prototype.
9325
9326 * composite.c (composition_reseat_it): Don't make a composition
9327 spanning over point.
9328 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
9329 composable characters.
9330 (composition_adjust_point): New arg NEW_PT. Callers changed.
9331
9332 * keyboard.c (command_loop_1): Force redisplay if the last point
9333 was within a composition.
9334 (adjust_point_for_property): Don't adjust point for automatic
9335 composition when called after buffer modification.
9336
9337 2009-12-19 Eli Zaretskii <eliz@gnu.org>
9338
9339 * .gdbinit (pitx): Don't use enum names, use their values.
9340 Remove reference to non-existing value GET_FROM_COMPOSITION.
9341 (pgx): Don't use enum names, use their values.
9342 (pitmethod): New helper command.
9343 (pitx): Use it to display iteration method.
9344 (pgrowit): New command.
9345
9346 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
9347
9348 Update dependencies in Makefile.in.
9349
9350 * Makefile.in (alloc.o): Depend on termhooks.h.
9351 (atimer.o): Depend on blockinput.h.
9352 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
9353 and frame.h.
9354 (callint.o): Depend on systime.h, coding.h, and composite.h.
9355 (callproc.o): Depend on buffer.h.
9356 (casefiddle.o): Don't depend on charset.h.
9357 (casetab.o): Depend on character.h.
9358 (ccl.o): Depend on composite.h.
9359 (chartab.o): Depend on ccl.h.
9360 (cm.o): Depend on dispextern.h.
9361 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
9362 (coding.o): Don't depend on $(INTERVALS_H).
9363 (composite.o): Don't depend on dispextern.h explicitly (it's in
9364 $(INTERVALS_H)). Depend on ccl.h.
9365 (data.o): Depend on systime.h, coding.h, composite.h,
9366 dispextern.h, font.h, and ccl.h.
9367 (dired.o): Depend on composite.h.
9368 (dispnew.o): Depend on coding.h. Don't depend explicitly on
9369 composite.h (it's in $(INTERVALS_H)).
9370 (doc.o): Depend on systime.h, coding.h, and composite.h.
9371 (editfns.o): Don't depend explicitly on dispextern.h.
9372 (emacs.o): Depend on frame.h and coding.h.
9373 (eval.o): Depend on coding.h, composite.h, and xterm.h.
9374 (fileio.o): Depend on frame.h and commands.h. Don't depend
9375 explicitly on dispextern.h.
9376 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
9377 composite.h.
9378 (fns.o): Don't depend on termhooks.h.
9379 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
9380 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
9381 coding.h, $(INTERVALS_H), window.h, xterm.h.
9382 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
9383 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
9384 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
9385 fontset.h, ccl.h, and ftfont.h.
9386 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
9387 (gtkutil.o): Depend on dispextern.h and composite.h.
9388 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
9389 termhooks.h, and ccl.h.
9390 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
9391 (intervals.o): Depend on systime.h and coding.h.
9392 (keyboard.o): Depend on composite.h and coding.h.
9393 (keymap.o): Depend on coding.h and frame.h.
9394 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
9395 (macros.o): Depend on systime.h, coding.h, and composite.h.
9396 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
9397 and atimer.h.
9398 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
9399 dispextern.h explicitly.
9400 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
9401 Don't depend explicitly on dispextern.h and composite.h.
9402 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
9403 (regex.o): Don't depend on charset.h.
9404 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
9405 (search.o): Don't depend explicitly on composite.h.
9406 (sound.o): Depend on atimer.h and systime.h.
9407 (syntax.o): Don't depend explicitly on composite.h.
9408 (sysdep.o): Depend on coding.h and composite.h.
9409 (term.o): Depend on xterm.h and buffer.h.
9410 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
9411 (textprop.o): Don't depend on dispextern.h explicitly.
9412 (undo.o): Depend on dispextern.h.
9413 (window.o): Depend on coding.h and termhooks.h. Don't depend on
9414 dispextern.h and composite.h explicitly.
9415 (xdisp.o): Depend on ccl.h.
9416 (xfaces.o): Depend on coding.h and ccl.h.
9417 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
9418 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
9419 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
9420 ftfont.h.
9421 (xgselect.o): New dependency.
9422 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
9423 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
9424 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
9425 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
9426 (xsmfns.o): Depend on frame.h and dispextern.h.
9427 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
9428 sysselect.h.
9429
9430 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
9431
9432 * font.c (Fclear_font_cache): Pass correct cache argument to
9433 font_clear_cache.
9434
9435 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
9436
9437 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
9438 twice.
9439
9440 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
9441
9442 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
9443 calling file-remote-p. Reported by Jim Meyering.
9444
9445 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
9446
9447 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
9448 avoid compiler warnings. (Bug #5217)
9449
9450 2009-12-14 Kenichi Handa <handa@m17n.org>
9451
9452 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
9453 in 8-bit encoding.
9454
9455 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
9456
9457 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
9458 tooltip windows.
9459
9460 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
9461
9462 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
9463 Xatom_net_window_type.
9464
9465 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
9466 Xatom_net_window_type.
9467
9468 * xterm.c (my_log_handler): New function.
9469 (x_term_init): Set my_log_handler as log handler during gtk_init
9470 so we can filter out buggy messages. (Bug #5120).
9471
9472 * xterm.c (xg_scroll_callback): Parameter list changed,
9473 use parameter GtkScrollType to determine scroll/line/page.
9474 Only allow dragging if a button < 4 is grabbed (bug #5177).
9475 (xg_end_scroll_callback): New function.
9476 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
9477 xg_create_scroll_bar.
9478
9479 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
9480 (scroll_end_callback): Remove.
9481 (xg_create_scroll_bar): Add parameter end_callback, bind it to
9482 button-release-event. Replace value-changed event with change-value,
9483 bug #5177.
9484 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
9485 bug #5177.
9486
9487 * gtkutil.h (XG_LAST_SB_DATA): Remove.
9488 (xg_create_scroll_bar): Add GCallback end_callback.
9489
9490 * xftfont.c (QClcdfilter): New variable.
9491 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
9492 (syms_of_xftfont): Initialize QClcdfilter.
9493
9494 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
9495
9496 * xsettings.c (struct xsettings): Add member seen.
9497 (parse_xft_settings): Update member seen with what we have read.
9498 Return non-zero if Xft-settings have been parsed, 0 otherwise.
9499 (apply_xft_settings): Only update Xft settings with what member seen
9500 indicates as new.
9501
9502 2009-12-12 Eli Zaretskii <eliz@gnu.org>
9503
9504 * dispextern.h (struct text_pos): Use EMACS_INT.
9505 (struct glyph): Use EMACS_INT for charpos.
9506 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
9507 region_beg_charpos, region_end_charpos,
9508 redisplay_end_trigger_charpos, and also for
9509 iterator_stack_entry.end_charpos and
9510 iterator_stack_entry.stop_charpos.
9511
9512 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
9513
9514 * gtkutil.c (scroll_end_callback): New function (bug #5177).
9515 (xg_create_scroll_bar): Call scroll_end_callback on button release
9516 event (bug #5177).
9517 (xg_event_is_for_scrollbar): != replaced with ==.
9518
9519 2009-12-12 Kenichi Handa <handa@m17n.org>
9520
9521 * ftfont.c (struct ftfont_info): New member matrix.
9522 (ftfont_open): Setup xftfont_info->matrix.
9523 (MFLTFontFT): New member matrix.
9524 (FLOOR, CEIL, ROUND): New macros.
9525 (ftfont_get_metrics): Handle matrix transformation.
9526 (ftfont_shape_by_flt): New arg matrix. Callers changed.
9527
9528 * xftfont.c (struct xftfont_info): New member matrix.
9529 (xftfont_open): Setup xftfont_info->matrix.
9530
9531 2009-12-10 Kenichi Handa <handa@m17n.org>
9532
9533 * xdisp.c (append_space_for_newline): Consider face-remapping.
9534
9535 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
9536
9537 * xsettings.c: Include "keyboard.h".
9538
9539 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
9540
9541 Fix implicit function declarations.
9542 * cmds.c: Include "frame.h".
9543 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
9544 * frame.h: Move declaration of delete_frame outside of
9545 HAVE_WINDOW_SYSTEM.
9546
9547 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
9548
9549 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
9550
9551 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
9552 GTK builds.
9553
9554 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
9555
9556 * unexelf.c (unexec): Don't search for .data twice.
9557
9558 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
9559
9560 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
9561 if push failed.
9562 (handle_line_prefix): Set avoid_cursor_p here. Check return value
9563 of push_display_prop (Bug#5000).
9564
9565 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
9566 value of font_list_entities (Bug#5085).
9567
9568 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
9569
9570 Fix `string-to-number' to deal consistently with integers and floats.
9571 * lread.c (isfloat_string): New argument ignore_trailing to accept all
9572 trailing characters, not just whitespace.
9573 (read1): Pass new arg 0 to keep old behavior.
9574 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
9575 trailing chars, as it is already done for integers. Doc fixes.
9576 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
9577
9578 2009-12-04 Eli Zaretskii <eliz@gnu.org>
9579
9580 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
9581 Delete unused enumeration value.
9582
9583 2009-12-03 Eli Zaretskii <eliz@gnu.org>
9584
9585 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
9586
9587 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
9588
9589 * process.c (Fmake_network_process): Fix up the tests for
9590 "connectionless socket", so they DTRT for seqpacket sockets as well.
9591
9592 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
9593
9594 * process.c (Qseqpacket): New symbol.
9595 (HAVE_SEQPACKET): New macro.
9596 (Fmake_network_process): Accept new :type `seqpacket'.
9597 (init_process): Add `seqpacket' feature when applicable.
9598 (syms_of_process): Initialize Qseqpacket.
9599
9600 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9601
9602 * font.c (font_load_for_lface, font_open_by_name): Don't store name
9603 if entity is Qnil.
9604
9605 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
9606
9607 * print.c (print_preprocess): Preprocess the key_and_value table of
9608 hashtables, even tho they're "hidden" (bug#5082).
9609
9610 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
9611
9612 * frame.c (frame_make_pointer_invisible)
9613 (frame_make_pointer_visible): Declare f before statements.
9614
9615 2009-11-28 Eli Zaretskii <eliz@gnu.org>
9616
9617 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
9618 omitted dependencies on lisp.h.
9619
9620 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
9621
9622 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
9623 is NULL.
9624
9625 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
9626
9627 * frame.c (frame_make_pointer_invisible)
9628 (frame_make_pointer_visible): Just return if there isn't any selected
9629 frame.
9630
9631 * search.c (simple_search): Remove warning by making *p const.
9632
9633 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
9634
9635 * xdisp.c (power_letter): Remove duplicate const.
9636
9637 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
9638
9639 * term.c (delete_tty): Remove check for last terminal (bug#4970).
9640
9641 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
9642 defaults (bug #5025).
9643
9644 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
9645
9646 * insdel.c (adjust_markers_for_delete): Move it in the
9647 right direction! (bug#4803)
9648
9649 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9650
9651 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
9652
9653 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
9654
9655 2009-11-24 Glenn Morris <rgm@gnu.org>
9656
9657 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
9658
9659 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
9660
9661 * Makefile.in: Must create deps for ecrt0.o in its rule.
9662
9663 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
9664 because that is what Gtk+ font dialog understands.
9665
9666 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
9667 of Fcopy_sequence.
9668 (font_open_by_name): Put name given into QCname for font-object returned.
9669
9670 * frame.c (x_set_font): Save original font name as frame parameter
9671 font-parameter.
9672
9673 * xsettings.c (set_default_xft_settings): New function.
9674 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
9675 is found.
9676
9677 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
9678
9679 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
9680 searching backwards through multibyte buffer.
9681
9682 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
9683
9684 * xterm.c: #include xgselect.h.
9685 (x_initialize): Call xgselect_initialize.
9686
9687 * xsettings.c (something_changedCB): C++ comments => C comments.
9688 (init_gconf): Do not deal with any GLib file descriptors, xg_select
9689 does that now.
9690
9691 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
9692 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
9693 (scroll_bar_button_cb): Remove.
9694 (create_menus): C++ comments => C comments. Don't bind grab-notify
9695 event.
9696 (xg_create_scroll_bar): Don't bind button-press-event and
9697 button-release-event.
9698
9699 * process.c: Include xgselect.h if defined (USE_GTK) ||
9700 defined (HAVE_GCONF).
9701 (wait_reading_process_output): Call xg_select for the same condition.
9702
9703 * xgselect.c (xg_select): New function to better integrate with
9704 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
9705
9706 * xgselect.h: New file, declare xg_select, xgselect_initialize.
9707
9708 * Makefile.in (XOBJ): Add xgselect.o.
9709
9710 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
9711
9712 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
9713 Remove ignored second argument. All callers changed.
9714 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
9715 (RE_STRING_CHAR_AND_LENGTH): Likewise.
9716 * xdisp.c (string_char_and_length): Likewise.
9717
9718 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
9719
9720 * xterm.c (x_new_font):
9721 * print.c (print_object):
9722 * cmds.c (Fself_insert_command): Move declarations before statements.
9723
9724 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
9725
9726 * s/cygwin.h: Remove unneeded linker flags.
9727
9728 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
9729
9730 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
9731
9732 * xsettings.h: Declare xsettings_get_system_font.
9733
9734 * xsettings.c (xsettings_get_system_font): New function.
9735 (init_gconf): No use initiating gconf unless we have Xft also.
9736 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
9737 HAVE_GCONF.
9738
9739 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
9740 add a blank entry so it doesn't collapse into nothing.
9741
9742 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9743
9744 * lread.c (Funintern): Comment out last change.
9745
9746 2009-11-19 Richard Stallman <rms@gnu.org>
9747
9748 * lread.c (Funintern): Error if symbol is t or nil.
9749
9750 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9751
9752 * insdel.c (make_gap_larger): Don't make as many assumptions about the
9753 representation of Lisp integers.
9754 Reported by MJ Chan <mjchan.inbox@gmail.com>.
9755
9756 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
9757
9758 * lisp.h: Remove declaration of Ffont_get_system_font.
9759 * xfns.c: Move include of "xsettings.h".
9760 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
9761
9762 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9763
9764 * xsettings.c (something_changedCB, Ffont_get_system_font):
9765 Check use_system_font.
9766 (syms_of_xsettings): DEFVAR font-use-system-font.
9767
9768 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
9769
9770 * xfns.c (x_default_font_parameter): Remove dead assignment.
9771
9772 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
9773
9774 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9775
9776 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
9777 not have FC_LCD_*. #define them if not there.
9778
9779 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
9780
9781 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
9782
9783 * xterm.c (handle_one_xevent): Call xft_settings_event for
9784 ClientMessage, PropertyNotify and DestroyNotify.
9785 (x_term_init): If we have XFT, get DPI from Xft.dpi.
9786 Call xsettings_initialize.
9787
9788 * xftfont.c (xftfont_fix_match): New function.
9789 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
9790 Call xftfont_fix_match after XftFontMatch.
9791
9792 * xfont.c (xfont_driver): Initialize all members.
9793
9794 * xfns.c (x_default_font_parameter):
9795 Try font from Ffont_get_system_font.
9796 Do not get font from x_default_parameter if we got one from
9797 Ffont_get_system_font.
9798 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
9799
9800 * w32font.c (w32font_driver): Initialize all members.
9801
9802 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
9803
9804 * lisp.h: Declare syms_of_xsettings.
9805
9806 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
9807 Handle CONFIG_CHANGED_EVENT.
9808
9809 * ftfont.c (ftfont_filter_properties): New function.
9810
9811 * frame.c (x_set_font): Remove unused variable lval.
9812
9813 * font.h (struct font_driver): Add filter_properties.
9814
9815 * font.c (font_put_extra): Don't return if val is nil, it means
9816 boolean option is off.
9817 (font_parse_fcname): Collect all extra properties in extra_props
9818 and call filter_properties for all drivers with extra_props and
9819 font as parameter.
9820 (font_open_entity): Do not use cache, it does not pick up new
9821 fontconfig settings like hinting.
9822 (font_load_for_lface): If spec had a name in it, store it in entity.
9823
9824 * emacs.c (main): Call syms_of_xsettings.
9825
9826 * config.in: HAVE_GCONF is new.
9827
9828 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
9829 xsettings.o is new.
9830
9831 2009-11-17 Kenichi Handa <handa@m17n.org>
9832
9833 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
9834 back to the default font in case that no suitable font is found.
9835
9836 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
9837
9838 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
9839 Suggested by Chad Brown <yandros@mit.edu>.
9840 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
9841
9842 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
9843
9844 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
9845
9846 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
9847
9848 * Makefile.in: Ignore errors from mkdir when creating deps directory.
9849
9850 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
9851
9852 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
9853 has a parent.
9854
9855 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
9856 dependency files in deps/. Include those files into Makefile.
9857
9858 * config.in: Generated (AUTO_DEPEND).
9859
9860 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
9861
9862 * dbusbind.c (Vdbus_registered_objects_table): Rename from
9863 Vdbus_registered_functions_table, because it contains also
9864 properties. Fix docstring.
9865 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
9866
9867 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
9868
9869 * alloc.c (mark_object): Don't reprocess marked strings.
9870 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
9871 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
9872
9873 2009-11-13 Kenichi Handa <handa@m17n.org>
9874
9875 * category.c (word_boundary_p): Adjust for the change of the
9876 semantics of Vword_combining_categories.
9877 (Vword_combining_categories): Describe the slight change of the
9878 semantics.
9879
9880 2009-11-13 Eli Zaretskii <eliz@gnu.org>
9881
9882 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
9883
9884 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
9885
9886 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
9887
9888 * xdisp.c (syms_of_xdisp): Fix typo in last change.
9889
9890 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
9891
9892 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
9893
9894 2009-11-11 David Reitter <david.reitter@gmail.com>
9895
9896 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
9897 variables to fix 2009-11-09 change.
9898
9899 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
9900
9901 * process.c (ifflag_def): Make flag_sym constant.
9902 (Fnetwork_interface_info): Use a constant pointer.
9903 (ifflag_table):
9904 * xfns.c (cursor_bits):
9905 * xdisp.c (power_letter):
9906 * termcap.c (speeds, esctab):
9907 * sysdep.c (baud_convert):
9908 * keyboard.c (lispy_accent_codes, modifier_names):
9909 * image.c (xbm_format, xpm_format, pbm_format, png_format)
9910 (jpeg_format, tiff_format, gif_format, svg_format)
9911 (interlace_start, interlace_increment, gs_format):
9912 * gtkutil.c (separator_names):
9913 * fringe.c (swap_nibble):
9914 * fns.c (base64_value_to_char, base64_char_to_value):
9915 * fileio.c (make_temp_name_tbl):
9916 * coding.c (suffixes): Make constant.
9917
9918 * frame.c (make_initial_frame):
9919 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
9920 build_string.
9921 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
9922
9923 * s/freebsd.h:
9924 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
9925
9926 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
9927 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
9928
9929 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
9930 * xterm.c (syms_of_xterm):
9931 * xfaces.c (syms_of_xfaces):
9932 * xdisp.c (syms_of_xdisp):
9933 * lread.c (syms_of_lread):
9934 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
9935 build_string.
9936
9937 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
9938
9939 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9940
9941 * fns.c (Fplist_get): Merge the active and the commented out code.
9942
9943 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
9944
9945 * keyboard.h: Declare timer_check.
9946
9947 * keyboard.c (timer_check_2): New function that does what the old
9948 timer_check did.
9949 (timer_check): Call timer_check_2 until -1 or a non-zero time is
9950 returned, i.e. don't return -1 with timers pending.
9951
9952 * process.c: Remove extern declaration of timer_check.
9953
9954 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
9955 even if timer_check returned -1.
9956
9957 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
9958 xg_dialog_data.
9959 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
9960 the event loop.
9961 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
9962 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
9963 Destroy the dialog after xg_dialog_run.
9964
9965 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9966
9967 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
9968
9969 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
9970
9971 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
9972
9973 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
9974
9975 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
9976
9977 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
9978
9979 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
9980 w32menu.c, and nsmenu.m.
9981 Simplify the obsolete case where position is nil.
9982 (cleanup_popup_menu): New function, moved from nsmenu.m.
9983 (struct skp): Remove slot `notreal'.
9984 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
9985 adjust callers.
9986 (single_menu_item): Adjust call to parse_menu_item.
9987 (syms_of_menu): Defsubr x-popup-menu.
9988 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
9989 (keymap_panes): Don't export any more.
9990 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
9991 (xmenu_show): Declare.
9992 * keyboard.c (parse_menu_item): Remove arg `notreal'.
9993 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
9994 * keyboard.h (parse_menu_item): Update declaration.
9995 * xmenu.c (Fx_popup_menu): Remove.
9996 (syms_of_xmenu): Don't defsubr x-popup-menu.
9997 * w32menu.c (Fx_popup_menu): Remove.
9998 (syms_of_w32menu): Don't defsubr x-popup-menu.
9999 * nsmenu.m (cleanup_popup_menu): Remove.
10000 (ns_menu_show): Rename from ns_popup_menu and remove all the code
10001 moved to menu.c's Fx_popup_menu.
10002 (Fx_popup_menu): Remove.
10003 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
10004 menu_items (it's done in menu.c already).
10005
10006 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
10007
10008 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
10009 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
10010
10011 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
10012
10013 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
10014 xmenu_show. Hide any tooltip before opening a menu.
10015 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
10016 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
10017
10018 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
10019
10020 Let integers use up 2 tags to give them one extra bit and thus double
10021 their range.
10022 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
10023 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
10024 New macros.
10025 (enum Lisp_Type): Use them. Give explicit values.
10026 (Lisp_Type_Limit): Remove.
10027 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
10028 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
10029 Pay attention to USE_2_TAGS_FOR_INTS.
10030 (INTEGERP): Use LISP_INT_TAG_P.
10031 * fns.c (internal_equal): Simplify the default case.
10032 (sxhash): Use case_Lisp_Int.
10033 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
10034 any more.
10035 (Ftype_of): Use case_Lisp_Int.
10036 (store_symval_forwarding): Take into account the fact that Ints can
10037 now have more than one tag.
10038 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
10039 (buffer_slot_type_mismatch):
10040 * xfaces.c (face_attr_equal_p):
10041 * print.c (print_object):
10042 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
10043 Use case_Lisp_Int.
10044
10045 2009-11-06 Eli Zaretskii <eliz@gnu.org>
10046
10047 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
10048
10049 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
10050 warning.
10051
10052 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
10053
10054 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
10055
10056 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
10057
10058 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
10059 ButtonPressRelease and MotionNotify (bug#4870).
10060
10061 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
10062
10063 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
10064
10065 * xterm.c (syms_of_xterm):
10066 * xselect.c (syms_of_xselect):
10067 * xmenu.c (syms_of_xmenu):
10068 * xfns.c (syms_of_xfns):
10069 * xfaces.c (syms_of_xfaces):
10070 * xdisp.c (syms_of_xdisp):
10071 * window.c (syms_of_window):
10072 * w32fns.c (syms_of_w32fns):
10073 * undo.c (syms_of_undo):
10074 * textprop.c (syms_of_textprop):
10075 * terminal.c (syms_of_terminal):
10076 * syntax.c (syms_of_syntax):
10077 * sound.c (syms_of_sound):
10078 * search.c (syms_of_search):
10079 * print.c (syms_of_print):
10080 * minibuf.c (syms_of_minibuf):
10081 * macros.c (syms_of_macros):
10082 * keymap.c (syms_of_keymap, initial_define_key)
10083 (initial_define_lispy_key):
10084 * keyboard.c (syms_of_keyboard):
10085 * insdel.c (syms_of_insdel):
10086 * image.c (syms_of_image):
10087 * fringe.c (syms_of_fringe):
10088 * frame.c (syms_of_frame):
10089 * fontset.c (syms_of_fontset):
10090 * fns.c (syms_of_fns):
10091 * fns.c (syms_of_fns):
10092 * fileio.c (syms_of_fileio):
10093 * fileio.c (syms_of_fileio):
10094 * eval.c (syms_of_eval):
10095 * doc.c (syms_of_doc):
10096 * dispnew.c (syms_of_display):
10097 * dired.c (syms_of_dired):
10098 * dbusbind.c (syms_of_dbusbind):
10099 * data.c (syms_of_data):
10100 * composite.c (syms_of_composite):
10101 * coding.c (syms_of_coding):
10102 * cmds.c (syms_of_cmds):
10103 * charset.c (define_charset_internal, syms_of_character):
10104 * ccl.c (syms_of_ccl):
10105 * category.c (syms_of_category, init_category_once):
10106 * casetab.c (syms_of_casetab):
10107 * casefiddle.c (syms_of_casefiddle):
10108 * callint.c (syms_of_callint):
10109 * bytecode.c (syms_of_bytecode):
10110 * buffer.c (keys_of_buffer, syms_of_buffer):
10111 * alloc.c (syms_of_alloc):
10112 * process.c (syms_of_process, init_process):
10113 * lread.c (syms_of_lread, init_obarray):
10114 * font.c (build_style_table):
10115 * emacs.c (syms_of_emacs, main): Replace calls to intern with
10116 intern_c_string, calls to make_pure_string with
10117 make_pure_c_string. Use pure_cons instead of Fcons.
10118
10119 * process.c (socket_options): Make it const.
10120 (set_socket_option, init_process): Use a const pointer.
10121
10122 * lread.c (intern_c_string): New function.
10123 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
10124 (defvar_int): Uset it. Make the name const char*.
10125
10126 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
10127 (defvar_int): Update prototypes.
10128 (DEFUN, EXFUN): Support for prototypes is now required.
10129 (intern_c_string): New prototype.
10130 (struct Lisp_Subr): Make symbol_name constant.
10131
10132 * font.c (struct table_entry): Remove unused member. Make NAMES
10133 constant.
10134 (weight_table, slant_table, width_table): Make constant.
10135
10136 * emacs.c (struct standard_args): Make name and longname constant.
10137
10138 * character.h (DEFSYM): Use intern_c_string.
10139
10140 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
10141
10142 * alloc.c (make_pure_c_string): New function.
10143
10144 * eval.c (Fautoload): Purecopy all arguments.
10145
10146 2009-11-05 Kenichi Handa <handa@m17n.org>
10147
10148 * fileio.c (Finsert_file_contents): Be sure set coding-system of
10149 the buffer in case of replace.
10150
10151 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
10152
10153 * puresize.h (BASE_PURESIZE): Increase to 1620000.
10154
10155 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10156
10157 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
10158 when applicable (bug#4851).
10159
10160 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
10161 (P_): Support for prototypes is now required.
10162
10163 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
10164
10165 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
10166 (Bug#4827).
10167
10168 2009-10-30 Eli Zaretskii <eliz@gnu.org>
10169
10170 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
10171
10172 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
10173
10174 * puresize.h (BASE_PURESIZE): Increase to 1470000.
10175
10176 * lread.c (Fload): Purecopy the file name when building
10177 Vpreloaded_file_list.
10178
10179 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
10180
10181 * w32fns.c (syms_of_w32fns): Change default value of
10182 w32-scroll-lock-modifier to nil. (Bug#2827)
10183
10184 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
10185
10186 * minibuf.c (Fall_completions): Fix typos in docstring.
10187
10188 2009-10-26 Andreas Schwab <schwab@redhat.com>
10189
10190 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
10191
10192 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
10193
10194 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
10195 For delta < 0, skip check that only makes sense when the mini-window
10196 is going to be enlarged. (Bug#4534)
10197
10198 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
10199
10200 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
10201 string in menu maps (Bug#4471).
10202
10203 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
10204
10205 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
10206 FRAME_NS_VIEW on terminal frames (Bug#4765).
10207
10208 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
10209
10210 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
10211 DBUS_TYPE_UINTnn separately to get proper sign extension.
10212
10213 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
10214 can properly handle unsigned types.
10215 (make_uid, make_gid): Remove.
10216
10217 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
10218 types again.
10219
10220 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
10221 (system_process_attributes): Likewise.
10222
10223 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
10224
10225 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
10226
10227 * eval.c (Fautoload): Purecopy the filename. Simplify.
10228
10229 * category.c (Fdefine_category): Purecopy docstring.
10230
10231 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
10232
10233 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
10234
10235 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
10236
10237 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
10238
10239 * window.c (Fwindow_edges, Fwindow_pixel_edges)
10240 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
10241 (Bug#4775).
10242
10243 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
10244
10245 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
10246 (init_fileio_once):
10247 * lisp.h (init_fileio_once): Remove.
10248 * emacs.c (main): Don't call init_fileio_once.
10249
10250 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
10251
10252 * puresize.h (BASE_PURESIZE): Increase to 1430000.
10253
10254 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
10255
10256 * doprnt.c (doprnt): Fix overflow check.
10257
10258 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
10259
10260 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
10261
10262 * xterm.h (x_wait_for_event): Declare it.
10263
10264 * xterm.c (pending_event_wait): New variable.
10265 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
10266 see pending_event_wait.eventtype.
10267 (handle_one_xevent): Don't change gravity when parent changes.
10268 (x_new_font): Call change_frame_size with new rows/columns before we
10269 try to resize the frame.
10270 (x_wait_for_event): New function.
10271 (x_set_window_size_1): Don't change gravity unless change_gravity
10272 is set.
10273 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
10274 don't change frame size, instead wait for the ConfigureNotify.
10275 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
10276 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
10277 (x_initialize): Initialize pending_event_wait.
10278
10279 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
10280 size.
10281
10282 * widget.c (EmacsFrameSetValues): Add comment.
10283 (EmacsFrameSetCharSize): Just call x_set_window_size.
10284
10285 * gtkutil.c (xg_frame_set_char_size): Flush events and call
10286 x_wait_for_event.
10287 (flush_and_sync): Remove again.
10288 (xg_get_font_name): Suggest monospace if no previous font is known.
10289
10290 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
10291
10292 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
10293 8th bit, since that only made sense in the ASCII world (bug#4751).
10294
10295 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10296
10297 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
10298 processing pending events when event is filtered for input method.
10299 (Bug#3681)
10300
10301 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
10302
10303 * fns.c: Add #endif accidentally removed in previous change.
10304
10305 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
10306
10307 * fns.c: Remove code for unsupported system: MAC_OS.
10308 * image.c: Likewise. Include setjmp.h.
10309
10310 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
10311
10312 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
10313 pixel -1 (bug #4742).
10314
10315 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
10316
10317 * process.c (create_pty): Remove conditionals for no longer
10318 supported systems: UNIPLUS and RTU.
10319
10320 * xterm.c:
10321 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
10322
10323 * alloc.c: Do not define struct catchtag.
10324 * eval.c: Move struct catchtag definition ...
10325 * lisp.h: ... here.
10326
10327 * image.c: Move png.h #include earlier to avoid warnings.
10328
10329 * xterm.c:
10330 * xsmfns.c:
10331 * xselect.c:
10332 * xrdb.c:
10333 * xmenu.c:
10334 * xftfont.c:
10335 * xfont.c:
10336 * xfns.c:
10337 * xfaces.c:
10338 * xdisp.c:
10339 * window.c:
10340 * widget.c:
10341 * w32xfns.c:
10342 * w32uniscribe.c:
10343 * w32term.c:
10344 * w32select.c:
10345 * w32reg.c:
10346 * w32proc.c:
10347 * w32menu.c:
10348 * w32inevt.c:
10349 * w32heap.c:
10350 * w32font.c:
10351 * w32fns.c:
10352 * w32console.c:
10353 * w32.c:
10354 * w16select.c:
10355 * vm-limit.c:
10356 * unexsol.c:
10357 * unexec.c:
10358 * unexcw.c:
10359 * unexaix.c:
10360 * undo.c:
10361 * tparam.c:
10362 * textprop.c:
10363 * terminfo.c:
10364 * terminal.c:
10365 * termcap.c:
10366 * term.c:
10367 * syntax.c:
10368 * sound.c:
10369 * sheap.c:
10370 * search.c:
10371 * scroll.c:
10372 * region-cache.c:
10373 * regex.c:
10374 * ralloc.c:
10375 * process.c:
10376 * print.c:
10377 * nsterm.m:
10378 * nsselect.m:
10379 * nsmenu.m:
10380 * nsimage.m:
10381 * nsfont.m:
10382 * nsfns.m:
10383 * msdos.c:
10384 * minibuf.c:
10385 * menu.c:
10386 * marker.c:
10387 * macros.c:
10388 * keymap.c:
10389 * keyboard.c:
10390 * intervals.c:
10391 * insdel.c:
10392 * indent.c:
10393 * gtkutil.c:
10394 * ftxfont.c:
10395 * ftfont.c:
10396 * fringe.c:
10397 * frame.c:
10398 * fontset.c:
10399 * font.c:
10400 * fns.c:
10401 * floatfns.c:
10402 * filelock.c:
10403 * fileio.c:
10404 * emacs.c:
10405 * editfns.c:
10406 * dosfns.c:
10407 * doprnt.c:
10408 * doc.c:
10409 * dispnew.c:
10410 * dired.c:
10411 * dbusbind.c:
10412 * data.c:
10413 * composite.c:
10414 * coding.c:
10415 * cmds.c:
10416 * cm.c:
10417 * chartab.c:
10418 * charset.c:
10419 * character.c:
10420 * ccl.c:
10421 * category.c:
10422 * casetab.c:
10423 * casefiddle.c:
10424 * callproc.c:
10425 * callint.c:
10426 * bytecode.c:
10427 * buffer.c:
10428 * atimer.c: Include setjmp.h. (Bug#4643)
10429
10430 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
10431
10432 Remove leftover table unibyte_to_multibyte_table.
10433 * character.c (unibyte_to_multibyte_table): Remove.
10434 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
10435 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
10436 * character.h (UNIBYTE_TO_CHAR): New macro.
10437 (MAKE_CHAR_MULTIBYTE): Use it.
10438 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
10439 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
10440 (message_dolog, set_message_1):
10441 * search.c (Freplace_match):
10442 * editfns.c (Fcompare_buffer_substrings):
10443 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
10444 (concat):
10445 * insdel.c (copy_text, count_size_as_multibyte):
10446 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
10447 * term.c (produce_glyphs):
10448 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
10449 * regex.c (RE_CHAR_TO_MULTIBYTE):
10450 * cmds.c (internal_self_insert):
10451 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
10452
10453 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
10454
10455 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
10456
10457 * puresize.h (BASE_PURESIZE): Increase to 1310000.
10458
10459 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
10460
10461 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
10462
10463 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10464
10465 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
10466 still needed under Tiger.
10467
10468 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
10469
10470 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
10471 __Apple__.
10472
10473 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
10474
10475 2009-10-15 Kenichi Handa <handa@m17n.org>
10476
10477 * print.c (print_object): Escape a symbol like "2E10" too.
10478
10479 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
10480
10481 Cleanups and changes for 64-bit compile under Snow Leopard.
10482 Based on suggestions by Erik Charlebois.
10483
10484 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
10485
10486 * nsfont.m (ns_char_width): Replace deprecated call.
10487 (ns_findfonts, nsfont_list_family): Use long format in printf, and
10488 cast argument.
10489 (nsfont_open): Use ns_char_width() everywhere.
10490 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
10491
10492 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
10493
10494 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
10495 where appropriate.
10496
10497 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
10498 where appropriate.
10499 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
10500 Use stringWithUTF8String.
10501 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
10502
10503 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
10504 Add formal protocol mention to inheritance.
10505 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
10506
10507 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
10508 Fix printf format.
10509 (ns_query_color): Use CGFloat where appropriate.
10510 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
10511 (EmacsScroller-mouseDown:): Use long format in printf, and cast
10512 argument.
10513
10514 * config.in (NS_HAVE_NSINTEGER): Drop.
10515
10516 * dbusbind.c (dbus-method-return-internal)
10517 (dbus-method-error-internal): Use long format in printf, and cast
10518 argument.
10519
10520 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
10521 in printf, and cast argument.
10522
10523 * process.c (list_processes_1): Use long format in printf, and
10524 cast argument.
10525
10526 2009-10-11 Glenn Morris <rgm@gnu.org>
10527
10528 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
10529
10530 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
10531
10532 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
10533 menu bar with a small width so it doesn't enlarge the frame.
10534
10535 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
10536
10537 * fontset.c (Fset_fontset_font): Fix typos in error messages.
10538
10539 2009-10-06 Glenn Morris <rgm@gnu.org>
10540
10541 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
10542 SOME_MACHINE_LISP (this enters indirectly via DOC).
10543
10544 2009-10-05 Eli Zaretskii <eliz@gnu.org>
10545
10546 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
10547
10548 2009-10-04 Eli Zaretskii <eliz@gnu.org>
10549
10550 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
10551 Doc fix.
10552
10553 2009-10-03 Martin Rudalics <rudalics@gmx.at>
10554
10555 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
10556
10557 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
10558
10559 * lisp.h (Qdelete_directory_internal): Remove, because it is not
10560 used anymore outside fileio.c.
10561
10562 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
10563
10564 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
10565
10566 * lisp.h (Qdelete_directory_internal):
10567 Declare, instead of Qdelete_directory.
10568
10569 * w32fns.c (Fsystem_move_file_to_trash): Use it.
10570
10571 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
10572
10573 * eval.c (Fcalled_interactively_p): Add `kind' argument.
10574
10575 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
10576
10577 * fileio.c (Fdelete_directory_internal): Rename from
10578 Fdelete_directory. It is not a command anymore. It has no file
10579 name handler.
10580
10581 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
10582
10583 * xdisp.c (get_next_display_element): Use an enum in last change.
10584
10585 2009-09-28 Kenichi Handa <handa@m17n.org>
10586
10587 * xdisp.c (get_next_display_element): Pay attention to
10588 unibyte_display_via_language_environment in handling
10589 Vnobreak_char_display.
10590
10591 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
10592
10593 * nsterm.h (ns_app_name): New extern variable.
10594
10595 * nsterm.m (ns_app_name): New variable.
10596 (ns_term_init): Set and use it.
10597 (ns_term_shutdown): Use it.
10598
10599 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
10600 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
10601
10602 * nsfns.m (ns_set_name_iconic, ns_set_name)
10603 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
10604 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
10605
10606 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
10607 Remove double-casting in client_data comparison.
10608
10609 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10610
10611 * keyboard.c (make_lispy_event): Remember last wheel direction.
10612 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
10613
10614 2009-09-26 Glenn Morris <rgm@gnu.org>
10615
10616 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
10617 internal.elc. Add term/pc-win.elc.
10618 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
10619 term/x-win.elc.
10620 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
10621 term/w32-win.elc.
10622 (NS_SUPPORT): New.
10623 (lisp): Add NS_SUPPORT.
10624 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
10625
10626 2009-09-25 David Reitter <david.reitter@gmail.com>
10627
10628 * nsmenu.m (EmacsMenu-clear): Recognize application menu
10629 on Mac OS X 10.6+ (bug#4513).
10630
10631 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
10632
10633 * frame.c (xrdb_get_resource): Return nil for empty string resources;
10634 some parts of Emacs code (like font selection) don't grok them.
10635 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
10636
10637 2009-09-24 Andreas Schwab <schwab@redhat.com>
10638
10639 * coding.c (decode_coding_iso_2022): Fix operator precedence.
10640
10641 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
10642
10643 * dired.c (Fdirectory_files): Fix typo in docstring.
10644
10645 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
10646
10647 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
10648 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
10649 (EmacsScroller-setPosition:portion:whole:): Remove -display call
10650 under GNUstep.
10651 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
10652
10653 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
10654 glyph advancement.
10655
10656 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10657
10658 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
10659 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
10660
10661 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
10662 deleted (bug #4492).
10663
10664 * nsfont.m (Vns_reg_to_script): New lisp variable.
10665 (syms_of_nsfont): Declare it.
10666 (ns_registry_to_script): New function.
10667 (ns_get_req_script): Call it.
10668 (ns_findfonts): Don't give up on non-unicode registry.
10669
10670 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
10671
10672 2009-09-20 Tom Tromey <tromey@redhat.com>
10673
10674 * eval.c (find_handler_clause): Make stack-trace-on-error work in
10675 batch mode (bug#4228).
10676
10677 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
10678
10679 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
10680 carefully. (Bug #4339)
10681
10682 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
10683
10684 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
10685
10686 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
10687
10688 * emacs.c (inhibit_x_resources): Update doc string for NS.
10689 (main) [HAVE_NS]: Don't process --no-init-file option.
10690 Remove legacy code for -NXHost. Fix error printf in daemon case.
10691
10692 * nsterm.h (ns_no_defaults): Remove.
10693
10694 * nsterm.m (ns_no_defaults): Remove.
10695 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
10696 (ns_use_qd_smoothing): Remove legacy variable.
10697 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
10698 don't update the NSWindow itself.
10699 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
10700 Improve state detection and store user rect ourselves. (Bug #3581)
10701
10702 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
10703 ns_use_qd_smoothing.
10704
10705 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
10706 platform versions. Drop support for emacs-20-style face specs.
10707 (x-close-connection): Drop PSFlush() under OS X.
10708 (x-focus-frame): Activate the app first. (Bug #4180)
10709
10710 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
10711
10712 * emacs.c (inhibit_x_resources): New variable.
10713 (main) [HAVE_NS]: Don't process --quick command line option.
10714 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
10715
10716 * lisp.h (inhibit_x_resources): Declare it extern.
10717
10718 * w32reg.c (x_get_string_resource):
10719 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
10720
10721 2009-09-17 Eli Zaretskii <eliz@gnu.org>
10722
10723 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
10724 Add lisp/term/internal.elc.
10725
10726 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
10727
10728 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
10729 (bug#4461).
10730
10731 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
10732
10733 * puresize.h (BASE_PURESIZE): Increase to 1290000.
10734
10735 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
10736 (OBJECTS_MACHINE): Remove, unused.
10737
10738 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10739
10740 * frame.c (x_get_resource_string): Remove unused.
10741
10742 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
10743
10744 * xterm.c (x_new_font): Call change_frame_size before calling
10745 x_set_window_size, in case frame size won't change.
10746
10747 * frame.c (x_set_font): Remove dead code.
10748
10749 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
10750
10751 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
10752
10753 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10754
10755 * lread.c (Fload): Don't output a message after loading an obsolete
10756 package any more (done in Lisp now).
10757
10758 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
10759
10760 * fns.c (syms_of_fns): Doc fix (Bug#4227).
10761
10762 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10763
10764 * keymap.c (Fwhere_is_internal): Use nconc2.
10765
10766 2009-09-11 Alan Mackenzie <acm@muc.de>
10767
10768 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
10769 batch mode.
10770
10771 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
10772
10773 * xdisp.c (display_mode_element): Detect cycles.
10774
10775 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
10776
10777 * keymap.c (where_is_internal): Don't erroneously return nil right after
10778 filling the cache.
10779 (where_is_internal_1): Fix up typo.
10780
10781 2009-09-11 Glenn Morris <rgm@gnu.org>
10782
10783 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
10784 share a common doc-string.
10785
10786 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
10787
10788 * keymap.c (get_keymap): Return the actual keymap symbol rather than
10789 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
10790
10791 * keymap.c (QCadvertised_binding): New constant.
10792 (syms_of_keymap): Initialize it.
10793 (Fwhere_is_internal): Try and use bindings from :advertised-binding
10794 if applicable.
10795
10796 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
10797
10798 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
10799 (parse_menu_item): Streamline since bindings are recomputed all the
10800 time anyway. Don't bother checking Vdefine_key_rebound_commands any
10801 more and don't support lmenu's menu-alias any more either.
10802
10803 * keymap.c (where_is_internal_data): Make noindirect a boolean.
10804 (where_is_internal): Strip it down to only traverse the keymaps.
10805 Move the cache handling from Fwhere_is_internal to here.
10806 (Fwhere_is_internal): Move the handling of remapping and the choice of
10807 the best binding from where_is_internal to here.
10808 Unify the cached/noncached paths, so remapping is also handled
10809 correctly when the cache is used, and so the cache can be used to
10810 speed up remap-handling when applicable.
10811 Give preference to non-remapped bindings.
10812 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
10813 non-remapped bindings.
10814 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
10815 command remapping.
10816
10817 * xdisp.c (display_mode_element): Move list length limit from 50 to
10818 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
10819
10820 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
10821
10822 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
10823
10824 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
10825
10826 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
10827 (Bug#4334)
10828
10829 * keymap.c (where_is_internal): Filter out shadowed remappings.
10830 Assume that where_is_internal returns unshadowed bindings to simplify
10831 the code and get rid of the gotos. Use ASIZE.
10832
10833 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
10834
10835 * xterm.c (x_focus_changed): If we get a focusout and pointer
10836 is invisible, make it visible.
10837
10838 * xterm.h: Remove condition for declaration of
10839 x_*_window_to_frame.
10840
10841 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
10842
10843 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
10844 initial terminal as well.
10845
10846 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
10847
10848 * xterm.h: Rename x_non_menubar_window_to_frame to
10849 x_menubar_window_to_frame.
10850
10851 * xterm.c: Remove declarations also in xterm.h.
10852 (XTmouse_position): Do not return valid positions
10853 for clicks in the menubar and the toolbar for Gtk+.
10854
10855 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
10856 if the widget for the event has the same top level as a frame,
10857 return the frame.
10858 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
10859 internal windows, bug #4122.
10860 (x_non_menubar_window_to_frame): Remove.
10861
10862 2009-09-02 Glenn Morris <rgm@gnu.org>
10863
10864 * buffer.c (default-major-mode): Move most of the doc from here...
10865 (major-mode): ... to here.
10866
10867 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
10868
10869 * process.c (wait_reading_process_output): Keep the descriptor
10870 when pty is used by a non-child process, e.g., in I/O buffer of
10871 GDB this allows inferior to be restarted.
10872
10873 2009-08-29 Eli Zaretskii <eliz@gnu.org>
10874
10875 * xdisp.c (redisplay_internal): Remove redundant test and collapse
10876 both branches into one.
10877
10878 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10879
10880 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
10881 (main): Use enable-multibyte-characters rather than
10882 default-enable-multibyte-characters. Output a warning message when
10883 running a unibyte session.
10884
10885 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10886
10887 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
10888 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
10889 (copy_data_segment): Also copy __program_vars section.
10890 (copy_dyld_info) [LC_DYLD_INFO]: New function.
10891 (dump_it) [LC_DYLD_INFO]: Use it.
10892
10893 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
10894
10895 2009-08-28 Eli Zaretskii <eliz@gnu.org>
10896
10897 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
10898 $(SRC)/buildobj.h.
10899 (buildobj.h): Rename from $(SRC)/buildobj.h.
10900 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
10901 $(SRC)/buildobj.h.
10902 (clean): Add buildobj.h.
10903
10904 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
10905
10906 * print.c (print_object): Set escapeflag to 1 when printing
10907 hashtable keys and values.
10908
10909 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10910
10911 * lread.c (read_integer): Use doubles (and potentially return a float
10912 number) as we do in string-to-number.
10913 (read1): Use strtol to read integers, signal errors on strtol's
10914 overflow and use floats if strtol's output is too large for
10915 Elisp integers.
10916
10917 2009-08-27 Eli Zaretskii <eliz@gnu.org>
10918
10919 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
10920 (make-buildobj-SH): Fix last change.
10921 (SRC): Move to before where it's first used.
10922
10923 2009-08-27 Kenichi Handa <handa@m17n.org>
10924
10925 * process.c (send_process): Use encode_coding_object instead of
10926 encode_coding_string to perform eol-conversion even if the string
10927 is unibyte.
10928
10929 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
10930 character.
10931
10932 * cmds.c (Fself_insert_command): Avoid unnecessay
10933 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
10934
10935 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10936
10937 * callproc.c (Fcall_process): Remove always true #if.
10938
10939 * lisp.h: Replace #if 0 code for checking with text pointing to
10940 the --enable-checking configure flag.
10941
10942 * emacs.c (main): Mention the --enable-profiling configure flag
10943 instead of using CFLAGS.
10944
10945 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
10946
10947 * Makefile.in (buildobj.h): New target.
10948 (doc.o): Depend on it.
10949 (temacs${EXEEXT}): Don't generate buildobj.lst.
10950 (mostlyclean): Delete buildobj.h, not buildobj.lst.
10951 * makefile.w32-in ($(SRC)/buildobj.h): New target.
10952 ($(BLD)/doc.$(O)): Depend on it.
10953 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
10954 provided by Eli Zaretskii.)
10955 ($(TEMACS)): Don't generate buildobj.lst.
10956 * doc.c: Include buildobj.h.
10957 (buildobj): New static variable.
10958 (Fsnarf_documentation): Use it, instead of opening and reading
10959 buildobj.lst.
10960
10961 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
10962
10963 * dbusbind.c (Fdbus_call_method)
10964 (Fdbus_call_method_asynchronously): Use English numeric format for
10965 timeout values in doc string.
10966
10967 2009-08-25 Kenichi Handa <handa@m17n.org>
10968
10969 * alloc.c (mark_char_table): New function.
10970 (mark_object): Use mark_char_table for a char-table.
10971
10972 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
10973 (CHAR_TABLE_REF): Use it.
10974
10975 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
10976
10977 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
10978 before invoking the newly build emacs to check for load-path
10979 shadowing.
10980
10981 2009-08-22 Glenn Morris <rgm@gnu.org>
10982
10983 * Makefile.in (bootstrap_exe): New variable.
10984 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
10985 Use ${bootstrap_exe}.
10986
10987 2009-08-22 Eli Zaretskii <eliz@gnu.org>
10988
10989 * coding.h (encode_coding_string): Don't encode unibyte strings.
10990 (Bug#4047)
10991
10992 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
10993
10994 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
10995
10996 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
10997 intended as hotfix only.
10998 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
10999
11000 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
11001
11002 * nsterm.m (ns_get_color): Update documentation properly for last
11003 change, and clean up loose ends in the code left by it.
11004 Fix longstanding bug with 16-bit hex parsing, and add support for
11005 yet another X11 format (rgb:r/g/b) for compatibility.
11006 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
11007 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
11008
11009 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
11010
11011 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
11012
11013 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
11014
11015 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
11016 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
11017 (xd_initialize, xd_pending_messages): Check, whether
11018 $DBUS_SESSION_BUS_ADDRESS is set.
11019
11020 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11021
11022 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
11023
11024 * nsterm.m (ns_get_color): Remove incompatible color formats again.
11025
11026 2009-08-20 Glenn Morris <rgm@gnu.org>
11027
11028 * emacs.c (system-type): Doc fix.
11029
11030 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
11031
11032 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
11033 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
11034
11035 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
11036
11037 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
11038 New functions.
11039 (xd_initialize): Revert change from 2009-08-16.
11040
11041 2009-08-18 Kenichi Handa <handa@m17n.org>
11042
11043 * fontset.c (Ffontset_font): If a nil element is found in a
11044 font-group vector, return nil.
11045
11046 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
11047
11048 * process.c (status_notify): Don't perform redisplay.
11049 (Fdelete_process, list_processes_1, process_send_signal):
11050 Expliticly perform redisplay.
11051 (wait_reading_process_output): Always check process status, but
11052 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
11053
11054 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
11055
11056 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
11057 (XFLOAT_INIT): New macro for storing a float value.
11058 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
11059 * fns.c (sxhash): Copy out the value of a float in order to
11060 examine its bytes.
11061 * dbusbind.c (xd_append_arg): Likewise.
11062
11063 * emacs.c (main): Don't call syms_of_data twice.
11064
11065 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
11066
11067 * dbusbind.c (xd_initialize): Add connection file descriptor to
11068 input_wait_mask, in order to let select() detect, whether a new
11069 message has been arrived.
11070 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
11071
11072 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
11073
11074 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
11075 New functions.
11076
11077 * lisp.h (xd_pending_messages): Declare.
11078
11079 * keyboard.c (readable_events): Call xd_pending_messages.
11080
11081 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
11082
11083 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
11084
11085 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
11086
11087 * buffer.c (set_buffer_internal_1)
11088 (swap_out_buffer_local_variables): Check for unbound local
11089 variables (Bug#4138).
11090
11091 2009-08-14 Eli Zaretskii <eliz@gnu.org>
11092
11093 * process.c (create_pty): Fix last change.
11094
11095 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
11096
11097 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
11098 (xbm_load_image): Caller changed.
11099 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
11100
11101 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
11102
11103 * process.c (create_pty): New function.
11104 (Fstart_process): Use it to allow Emacs to just associate a pty
11105 with the buffer. See associated change in gdb-mi.el.
11106 (list_processes_1): Deal with no program name.
11107 (start_process_unwind): Use pid == -2 to mean no process.
11108
11109 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11110
11111 * cmds.c (nonundocount): New global variable.
11112 (keys_of_cmds): Initialize it.
11113 (Fself_insert_command): Use it to combine upto 20 sequential chars
11114 into a single undo entry, just like the Qself_insert_command code in
11115 keyboard.c does.
11116 Call frame_make_pointer_invisible, also like the Qself_insert_command
11117 code in keyboard.c does.
11118 * keyboard.c (command_loop_1): Use the new global nonundocount rather
11119 than its own local replacement for it.
11120
11121 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
11122
11123 * fns.c (concat): Don't re-set string length to its current value.
11124
11125 * coding.h (decode_coding_string, encode_coding_string):
11126 Use SBYTES macro.
11127
11128 * doprnt.c (doprnt_lisp): Delete unused function.
11129 (doprnt): Merge with doprnt1, discarding lispstrings code.
11130 * lisp.h (doprnt_lisp): Don't declare.
11131
11132 2009-08-07 Juri Linkov <juri@jurta.org>
11133
11134 * puresize.h (BASE_PURESIZE): Increase to 1270000.
11135
11136 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
11137
11138 * print.c (syms_of_print): Undo previous change.
11139
11140 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
11141
11142 * lread.c (read1, syms_of_lread): Read hashtables back from the
11143 readable format.
11144
11145 * print.c (print_preprocess, print_object): Print hashtables fully
11146 and readably.
11147 (syms_of_print): Provide 'hashtable-print-readable.
11148
11149 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
11150
11151 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
11152 no family set.
11153 (nsfont_open): Handle case when entity has no family.
11154
11155 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
11156
11157 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
11158 element, not a list, for match case.
11159
11160 2009-07-28 Kenichi Handa <handa@m17n.org>
11161
11162 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
11163 rigidly.
11164
11165 * xfont.c (xfont_list_pattern): Don't ignore the return value of
11166 font_parse_xlfd. Check font properties more rigidly.
11167
11168 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
11169
11170 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
11171 bsd-common.h.
11172
11173 2009-07-27 Kenichi Handa <handa@m17n.org>
11174
11175 * xfaces.c (face_with_height): Call font_clear_prop.
11176
11177 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
11178
11179 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
11180
11181 * xterm.c (x_term_init): Use Qx.
11182
11183 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
11184
11185 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
11186 (ns_get_color): Revert 2009-07-16 change.
11187
11188 2009-07-25 Eli Zaretskii <eliz@gnu.org>
11189
11190 * lread.c (syms_of_lread) <force_load_messages>: New variable.
11191 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
11192
11193 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
11194
11195 * coding.h (decode_coding_string, encode_coding_string):
11196 Use SCHARS macro.
11197
11198 * lread.c: Rewrite 2009-07-21 changes.
11199 (load_depth): Delete.
11200 (Qload_in_progress): New variable.
11201 (load_unwind): Don't reference load_depth or load_in_progress.
11202 (Fload): Likewise; specbind Qload_in_progress instead.
11203 (init_lread): Don't initialize load_depth.
11204 (syms_of_lread): Initialize and protect Qload_in_progress.
11205
11206 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
11207
11208 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
11209
11210 2009-07-23 Yavor Doganov <yavor@gnu.org>
11211
11212 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
11213
11214 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
11215
11216 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
11217 Bugs 3792, 3720, 2402.
11218 (ns_lookup_indexed_color): Check for bad index.
11219 (ns_index_color): Init unused slot to 0.
11220 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
11221 Bug 3714, possibly 3082.
11222
11223 2009-07-22 Jason Rumney <jasonr@gnu.org>
11224
11225 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
11226 Position IME window at cursor (Bug#2570).
11227 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
11228 (globals_of_w32fns): Dynamically load functions required above.
11229
11230 * w32term.c (w32_draw_window_cursor): Send message to reposition
11231 any IME window.
11232
11233 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
11234
11235 * fileio.c: Revert 2009-07-16 changes.
11236 (Vauto_save_include_big_deletions): New variable.
11237 (Fdo_auto_save): Disable auto-save only if
11238 auto-save-include-big-deletions is nil.
11239
11240 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
11241
11242 * xdisp.c (move_it_to): For continued lines ending in a tab, take
11243 the overflowed pixels into account (Bug#3879).
11244
11245 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
11246
11247 * lread.c (load_depth): New variable.
11248 (Fload, load_unwind, init_lread): Set it to the load recursion
11249 depth; set load_in_progress as a simple boolean based on the
11250 current load_depth. (Bug#3892)
11251
11252 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
11253
11254 * nsfont.m (ns_has_attribute): Remove.
11255 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
11256
11257 2009-07-18 Juri Linkov <juri@jurta.org>
11258
11259 * process.c (Fset_process_query_on_exit_flag): Mention killing
11260 a buffer in docstring.
11261
11262 2009-07-17 Kenichi Handa <handa@m17n.org>
11263
11264 * casetab.c (shuffle): Fix the logic of setting up the cycle.
11265
11266 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11267
11268 * nsfns.m (Fns_set_alpha): Remove function.
11269 (syms_of_nsfns): Don't defsubr it.
11270
11271 * nsterm.m (ns_get_color): Remove incompatible color formats.
11272 (ns_color_to_lisp): Generate #rrggbb color format string.
11273
11274 2009-07-16 Richard Stallman <rms@gnu.org>
11275
11276 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
11277 (Fset_buffer_auto_saved): Handle save_length = -2.
11278
11279 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
11280
11281 * xterm.c (Qx_gtk_map_stock): New var.
11282
11283 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
11284 of calling intern each time.
11285
11286 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11287
11288 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
11289 does tiling.
11290
11291 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
11292
11293 2009-07-14 Kenichi Handa <handa@m17n.org>
11294
11295 * font.c (font_vconcat_entity_vectors): New function.
11296 (struct font_sort_data): New member font_driver_preference.
11297 (font_compare): Check font_driver_preference.
11298 (font_sort_entities): The format of the first argument changed.
11299 (font_delete_unmatched): Likewise.
11300 (font_list_entities): The return type changed.
11301 (font_select_entity): The format of the second argument changed.
11302 (font_find_for_lface): Adjuste for the above changes.
11303 Don't suppress the checking of C even if the repertory supports it.
11304 (Flist_fonts): Adjust for the above changes.
11305
11306 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
11307 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
11308 Reject a font who has adstyle property that is different from a
11309 langname derived from registry property.
11310 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
11311
11312 2009-07-13 Eli Zaretskii <eliz@gnu.org>
11313
11314 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
11315 local copy of dirfilename.
11316
11317 2009-07-13 Kenichi Handa <handa@m17n.org>
11318
11319 * chartab.c (sub_char_table_ref_and_range): Fix the range check
11320 against max_char.
11321
11322 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
11323 calling XSYMBOL (sym).
11324
11325 2009-07-11 Eli Zaretskii <eliz@gnu.org>
11326
11327 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
11328 New function.
11329 (directory_files_internal) [WINDOWSNT]:
11330 Bind w32-get-true-file-attributes to either t or nil, depending whether
11331 the filesystem of the directory is fast or slow.
11332
11333 * w32.c (logon_network_drive): Don't assume PATH is an absolute
11334 file name.
11335 (is_slow_fs): New function.
11336 (stat): Use it to determine whether to issue more system calls to
11337 get accurate file attributes, when w32-get-true-file-attributes is
11338 `local'.
11339
11340 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
11341
11342 * xfns.c (Fx_select_font): Remember last font selected in
11343 x_last_font_name and use that the next time. Also try the frame
11344 parameter font-parameter as default to the font dialog.
11345
11346 2009-07-10 Kenichi Handa <handa@m17n.org>
11347
11348 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
11349
11350 2009-07-09 Eli Zaretskii <eliz@gnu.org>
11351
11352 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
11353
11354 * w32.c (stat): Treat UNC file names as residing on remote
11355 drives. (Bug#3542)
11356
11357 2009-07-09 Kenichi Handa <handa@m17n.org>
11358
11359 * fontset.c (fontset_find_font): Fix previous change.
11360
11361 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
11362
11363 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
11364 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
11365 error flag.
11366
11367 2009-07-08 Kenichi Handa <handa@m17n.org>
11368
11369 * fontset.c (fontset_find_font): Fix the logic of handling
11370 charset_matched.
11371 (font_for_char): Delete unused var.
11372 (generate_ascii_font_name): Delete it.
11373
11374 * coding.h (JIS_TO_SJIS2): Fix the code range check.
11375
11376 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
11377 (encode_coding_sjis): Fix the code range check.
11378
11379 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
11380
11381 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
11382 (Fexpand_file_name): Copy string data properly (Bug#3772).
11383
11384 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
11385
11386 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
11387 first MapNotify.
11388
11389 2009-07-07 Kenichi Handa <handa@m17n.org>
11390
11391 * character.h (unibyte_has_multibyte_table): Delete extern.
11392 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
11393
11394 * charset.c (Fset_charset_priority): Update charset_unibyte.
11395 (syms_of_charset): Initialize charset_unibyte.
11396
11397 * character.c (unibyte_has_multibyte_table): Delete it.
11398 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
11399 charset_unibyte.
11400 (multibyte_char_to_unibyte_safe): Likewise.
11401 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
11402
11403 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
11404 (x_produce_glyphs): Likewise.
11405
11406 * .gdbinit (xcharset): Fix the treating $arg0.
11407
11408 2009-07-04 Eli Zaretskii <eliz@gnu.org>
11409
11410 Emulation of `getloadavg' on MS-Windows.
11411 * w32.c: Include float.h.
11412 (g_b_init_get_native_system_info, g_b_init_get_system_times)
11413 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
11414 (get_native_system_info, get_system_times): New functions.
11415 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
11416 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
11417 (globals_of_w32): Initialize g_b_init_get_native_system_info,
11418 g_b_init_get_system_times, and num_of_processors.
11419
11420 2009-07-03 Jason Rumney <jasonr@gnu.org>
11421
11422 * w32term.c (w32_initialize): Use standard types.
11423
11424 2009-07-03 Eli Zaretskii <eliz@gnu.org>
11425
11426 * dired.c (Ffile_attributes): Decode user and group names by the
11427 locale's encoding. (Bug#3443)
11428
11429 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
11430
11431 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
11432 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
11433
11434 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
11435
11436 * term.c (init_tty): Remove spurious #ifdef.
11437
11438 * m/mips.h: Mention this file is also used for netbsd.
11439 * m/pmax.h: Remove file.
11440
11441 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
11442
11443 * xterm.h (struct x_display_info): Add invisible_cursor.
11444 (struct x_output): Add current_cursor.
11445
11446 * xterm.c (XTtoggle_invisible_pointer): New function.
11447 (x_define_frame_cursor): Don't define cursor if invisible or the
11448 same as before. Set current_cursor.
11449 (x_create_terminal): Set toggle_invisible_pointer_hook.
11450
11451 * xfns.c (make_invisible_cursor): New function.
11452 (x_set_mouse_color): Call make_invisible_cursor.
11453 Set current_cursor.
11454 (x_window): Set current_cursor.
11455
11456 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
11457
11458 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
11459 inserting a character.
11460 (read_avail_input): Call frame_make_pointer_visible.
11461
11462 * frame.c (Vmake_pointer_invisible): New variable.
11463 (frame_make_pointer_invisible, frame_make_pointer_visible):
11464 New functions.
11465 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
11466
11467 * frame.h: Declare frame_make_pointer_invisible and
11468 frame_make_pointer_visible.
11469 (struct frame): Add pointer_invisible.
11470
11471 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
11472
11473 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
11474 frame isn't visible.
11475 (xg_frame_resized): If width/height is -1, get size of window
11476 from X server.
11477
11478 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
11479 for MapNotify.
11480
11481 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
11482 here or call change_frame_size. Just call flush_and_sync.
11483 (flush_and_sync): Reintroduce.
11484
11485 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
11486
11487 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
11488
11489 * xterm.c (x_handle_net_wm_state): Also look for sticky.
11490 (x_term_init): Initialize Xatom_net_wm_state_sticky.
11491
11492 * frame.h: Declare Qsticky.
11493
11494 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
11495
11496 * nsfns.m (ns_frame_parm_handlers): Ditto.
11497
11498 * frame.c: Declare Qsticky.
11499 (frame_parms): Add sticky.
11500
11501 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
11502
11503 * xterm.h: Declare x_set_sticky.
11504
11505 * xterm.c (x_set_sticky): New function.
11506
11507 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
11508 (xg_tool_bar_menu_proxy): Attach enter/leave events to
11509 xg_tool_bar_proxy_help_callback.
11510
11511 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
11512
11513 * frame.c: Qmaximized is new.
11514 (x_set_frame_parameters): Do not handle fullscreen specially.
11515 Only set width and height if explicitly set.
11516 (x_set_fullscreen): Handle Qmaximized.
11517 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
11518 (syms_of_frame): Initialize Qmaximized.
11519
11520 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
11521 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
11522
11523 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
11524 for Expose event. Add call to x_check_fullscreen for MapNotify event.
11525 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
11526 set gravity to NorthWestGravity when USE_GTK.
11527 (set_wm_state): New function.
11528 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
11529 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
11530 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
11531 or the case when no window manager is running. That means remove calls
11532 to x_real_positions and x_fullscreen_adjust.
11533
11534 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
11535 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
11536 flush_and_sync.
11537 (xg_height_changed): New function.
11538 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
11539 and gtk_window_set_policy. Set frame gravity after parsing the
11540 geometry string.
11541 (xg_update_frame_menubar, free_frame_menubar)
11542 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
11543 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
11544 Remove calls to xg_frame_set_char_size.
11545
11546 2009-07-01 Kenichi Handa <handa@m17n.org>
11547
11548 * keyboard.c (decode_keyboard_code): New function.
11549 (tty_read_avail_input): Decode the input bytes if necessary.
11550
11551 * coding.c (setup_coding_system):
11552 Initialize coding->carryover_bytes to 0.
11553 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
11554 use Qno_conversion.
11555
11556 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11557
11558 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
11559
11560 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
11561
11562 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
11563
11564 2009-06-30 Jason Rumney <jasonr@gnu.org>
11565
11566 * w32term.c (w32_initialize): Use GetModuleHandle for library that
11567 is already loaded.
11568 Set user model ID if supported (bug#1849).
11569
11570 2009-06-29 Jim Meyering <meyering@redhat.com>
11571
11572 Remove useless if-before-xfree test.
11573 * nsfont.m (nsfont_close): Remove useless test.
11574 * term.c (delete_tty): Likewise.
11575 * w32.c (system_process_attributes): Likewise.
11576 * w32font.c (w32font_close): Likewise.
11577 * xfaces.c (x_free_gc): Likewise.
11578 * xselect.c (buffer): Likewise.
11579
11580 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
11581
11582 * process.c (send_process): Keep decoded string in a local
11583 variable and protect it from GC. (Bug#3521)
11584
11585 2009-06-28 Eli Zaretskii <eliz@gnu.org>
11586
11587 * term.c (create_tty_output) [MSDOS]: #ifdef away.
11588 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
11589
11590 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
11591
11592 * xdisp.c (start_display, handle_face_prop)
11593 (move_it_vertically_backward, cursor_row_fully_visible_p)
11594 (redisplay_window, try_window_id, produce_image_glyph):
11595 Delete some #ifdef-ed out code chunks that are now obsolete.
11596
11597 * xterm.c (x_update_window_begin, x_new_focus_frame)
11598 (x_scroll_bar_handle_click, handle_one_xevent)
11599 (handle_one_xevent, XTread_socket, x_focus_on_frame)
11600 (x_make_frame_visible, x_make_frame_invisible)
11601 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
11602 code chunks that are now obsolete.
11603
11604 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
11605
11606 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
11607 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
11608 for hours, when optimzation is enabled.
11609 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
11610 (xd_read_message): Make them static.
11611
11612 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
11613
11614 * term.c (turn_on_face): Allow simultaneously bold and dim
11615 terminal faces (Bug#3530).
11616
11617 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
11618
11619 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
11620
11621 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
11622 truncation glyphs (Bug#3686).
11623
11624 2009-06-27 Glenn Morris <rgm@gnu.org>
11625
11626 * m/pmax.h: Restore file, with only netbsd portions.
11627
11628 2009-06-26 David Reitter <david.reitter@gmail.com>
11629
11630 * nsterm.m (keydown): Avoid infinite loop.
11631
11632 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
11633
11634 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
11635 the arg FORCE_SYMBOL.
11636
11637 2009-06-25 Kenichi Handa <handa@m17n.org>
11638
11639 * fontset.c (fontset_find_font): When a usable rfont_def is found
11640 in a fallback font-group, make it the first element of the group.
11641
11642 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
11643
11644 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
11645
11646 2009-06-24 Kenichi Handa <handa@m17n.org>
11647
11648 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
11649 set for C.
11650 (fontset_font): Record the availability of a font for C both in
11651 the realized fontsets of the current one and the default one.
11652
11653 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11654
11655 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
11656 conditional, it is always defined on AIX.
11657
11658 2009-06-23 Miles Bader <miles@gnu.org>
11659
11660 * window.c (Vrecenter_redisplay): New variable.
11661 (syms_of_window): Initialize it.
11662 (Qtty): New extern declaration.
11663 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
11664
11665 2009-06-23 Jim Meyering <meyering@redhat.com>
11666
11667 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
11668 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
11669 pointer dereferences are guaranteed to be valid.
11670
11671 2009-06-23 Kenichi Handa <handa@m17n.org>
11672
11673 * emacs.c (main): Call init_font ().
11674
11675 * font.h (Vfont_log): Extern it.
11676 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
11677
11678 * font.c (font_sort_entities, font_list_entities)
11679 (font_matching_entity, font_open_entity)
11680 (font_close_object): Change font_add_log to FONT_ADD_LOG.
11681 (Vfont_log): Delete static.
11682 (font_log_env_checked): Delete this variable.
11683 (font_add_log): Don't check font_log_env_checked.
11684 (font_deferred_log): Check Vfont_log.
11685 (init_font): New function.
11686
11687 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
11688
11689 * w32font.c: Change font_add_log to FONT_ADD_LOG.
11690
11691 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
11692
11693 * xfont.c: Change font_add_log to FONT_ADD_LOG.
11694
11695 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
11696 (face_for_char): Don't call font_deferred_log here.
11697 (font_for_char): Likewise.
11698
11699 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
11700
11701 * w32term.c (x_draw_glyph_string): Use the glyph string's width
11702 rather than its background_width for drawing the overline and
11703 underline (Bug#489).
11704
11705 * xterm.c (x_draw_glyph_string): Use the glyph string's width
11706 rather than its background_width for drawing the overline and
11707 underline (Bug#489).
11708 (xg_default_icon_file): New variable.
11709 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
11710 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
11711
11712 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
11713 (load_overlay_strings): Remove externs.
11714 (fast_find_position): Function deleted.
11715 (mouse_face_from_buffer_pos): New function, based on
11716 fast_find_position. Correctly handle before-strings,
11717 display-strings, and after-strings (Bug#1220).
11718 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
11719
11720 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
11721
11722 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
11723 (move_it_in_display_line_to, move_it_in_display_line_to)
11724 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
11725
11726 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
11727
11728 * Branch for 23.1.
11729
11730 2009-06-21 Jason Rumney <jasonr@gnu.org>
11731
11732 * w32term.c (keyboard_codepage): New static variable.
11733 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
11734 (w32_read_socket) [WM_CHAR]: Use it to decode character
11735 input (bug#3237).
11736 (w32_initialize): Initialize it.
11737 (codepage_for_locale): New function.
11738
11739 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
11740
11741 * process.c (status_message): Pass Faset index argument as a lisp
11742 object, so as to work with USE_LISP_UNION_TYPE.
11743
11744 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11745
11746 * coding.c (Ffind_coding_systems_region_internal):
11747 Cache checked characters.
11748
11749 2009-06-18 Kenichi Handa <handa@m17n.org>
11750
11751 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
11752
11753 2009-06-18 Andreas Schwab <aschwab@redhat.com>
11754
11755 * xdisp.c (redisplay_internal): Check that the frame is still
11756 live after redisplay of its windows.
11757 (redisplay_windows): Check that the window is still live.
11758
11759 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
11760
11761 * coding.c (detect_coding_utf_16): Fix previous change.
11762
11763 2009-06-16 Kenichi Handa <handa@m17n.org>
11764
11765 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
11766 UTF-16 by checking the dispersion of Eth and Oth bytes.
11767
11768 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
11769
11770 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
11771
11772 2009-06-15 Kenichi Handa <handa@m17n.org>
11773
11774 * process.c (status_message): Fix previous change. Be sure to
11775 decode a localized string.
11776
11777 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11778
11779 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
11780 add comment explaining why.
11781
11782 2009-06-14 Sidney Markowitz <sidney@sidney.com>
11783
11784 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
11785
11786 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
11787
11788 * nsfont.m (ns_attribute_value): Remove.
11789 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
11790 (ns_has_attribute): Shrink the normal range.
11791 (ns_findfonts): Don't worry about requested spec in determining
11792 need for synthItal.
11793 (ns_get_covering_families): Retain scriptToFamilies.
11794
11795 2009-06-14 Seiji Zenitani <zenitani@mac.com>
11796
11797 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
11798
11799 2009-06-11 Kenichi Handa <handa@m17n.org>
11800
11801 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
11802 overhang for the static composition case.
11803
11804 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11805
11806 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
11807 overhang for the automatic composition case.
11808
11809 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
11810 composition case.
11811
11812 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
11813
11814 * xdisp.c (get_next_display_element): When handling wrap-prefix
11815 and line-prefix, treat \n as a control character (bug#3502).
11816
11817 2009-06-10 Kenichi Handa <handa@m17n.org>
11818
11819 * font.c (font_parse_family_registry): Fix for one-char foundry.
11820 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
11821
11822 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
11823
11824 * process.c (status_message): Fix handling of multibyte signal
11825 string (Bug#3499).
11826
11827 2009-06-09 Jim Meyering <meyering@redhat.com>
11828
11829 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
11830 color name is missing.
11831
11832 2009-06-09 Kenichi Handa <handa@m17n.org>
11833
11834 * charset.c (Fmap_charset_chars): In docstring, state clearly that
11835 FROM-CODE and TO-CODE are codepoints of CHARSET.
11836
11837 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
11838
11839 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
11840
11841 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
11842
11843 Changes to support :script/:lang/:otf in NS font driver.
11844 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
11845 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
11846 indicate not part of font driver interface, and change callers.
11847 (ns_get_family): Remove pointless null check.
11848 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
11849 ns_spec_to_descriptor, ns_descriptor_to_entity.
11850 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
11851 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
11852 (ns_spec_to_descriptor, ns_descriptor_to_entity)
11853 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
11854 (ns_get_req_script, ns_accumulate_script_ranges)
11855 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
11856 New functions.
11857 (nsfont_list, nsfont_match): Use ns_findfonts.
11858 (nsfont_open): Use font descriptor instead of traits.
11859 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
11860 (dump_glyphstring): Rename to ns_dump_glyphstring.
11861
11862 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
11863
11864 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
11865
11866 * fontset.c (fontset_from_font): Remove NS-specific code.
11867
11868 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
11869
11870 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
11871 nonactive windows.
11872
11873 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
11874
11875 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
11876
11877 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
11878
11879 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
11880
11881 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
11882
11883 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
11884 account for the overflowing of newlines into the last glyph on the
11885 display line (Bug#3482).
11886
11887 2009-06-05 David Reitter <david.reitter@gmail.com>
11888
11889 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
11890 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
11891 Fns_selection_exists_p, Fns_selection_owner_p.
11892
11893 2009-06-03 Jason Rumney <jasonr@gnu.org>
11894
11895 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
11896 available. (Bug#3379)
11897
11898 2009-05-29 Kenichi Handa <handa@m17n.org>
11899
11900 * coding.c (get_translation_table):
11901 Check Venable_character_translation.
11902
11903 2009-05-26 David Reitter <david.reitter@gmail.com>
11904
11905 * nsterm.m (ns_raise_frame): Only raise frame if visible.
11906 (x_make_frame_visible): Move frame to front rather than calling
11907 ns_raise_frame().
11908 (keyDown:): Do not swallow events that aren't re-sent if frame
11909 isn't key window.
11910 (drawRect:): Do not set visibility/iconified flags because
11911 drawRect may be called by NSView even if the frame is hidden.
11912
11913 * nsfns.m (Fx_create_frame): Follow other ports in
11914 determining visibility; default to t. Ensure async_visible is set.
11915
11916 2009-05-23 Eli Zaretskii <eliz@gnu.org>
11917
11918 * dired.c (Ffile_attributes): Doc fix.
11919
11920 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
11921
11922 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
11923
11924 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11925
11926 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
11927 and xfont_scratch_props.
11928 (syms_of_xfont): Do it here instead.
11929 (xfont_find_ccl_program): Delete, unused.
11930 (xfont_open): Delete unused var `i'.
11931
11932 2009-05-21 Kenichi Handa <handa@m17n.org>
11933
11934 * fontset.c (Qlatin): Don't make it static.
11935
11936 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
11937 New functions.
11938 (xfont_scripts_cache, xfont_scratch_props): New variables.
11939 (Qlatin, Vscalable_fonts_allowed): Extern it.
11940 (xfont_list_pattern): Argument changed. Callers changed.
11941 Check Vscalable_fonts_allowed. Check the support of a script.
11942 (xfont_list): Don't reject a font spec with :script property.
11943 (xfont_has_char): Fix setting of encoding.
11944 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
11945 xfont_scratch_props.
11946
11947 2009-05-19 Kenichi Handa <handa@m17n.org>
11948
11949 * font.c (font_sort_entities): Rename from font_sort_entites.
11950 Callers changed.
11951
11952 2009-05-18 Kenichi Handa <handa@m17n.org>
11953
11954 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
11955
11956 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11957
11958 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
11959 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
11960
11961 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11962
11963 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
11964 (x_delete_terminal): Dissociate resource database from display and
11965 then call XrmDestroyDatabase before closing display.
11966
11967 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
11968
11969 * nsterm.m (ns_read_socket): Remove unused variable.
11970 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
11971 whether selected frame is viable before raising it (based on patch
11972 by David Reitter), and improve commentary.
11973 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
11974
11975 2009-05-15 Kenichi Handa <handa@m17n.org>
11976
11977 * font.c (Ffont_spec): Check arguments.
11978
11979 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
11980
11981 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
11982 weight when testing attributes (Bug#3282).
11983
11984 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11985
11986 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
11987 what we expect to get in the next ConfigureNotify event.
11988
11989 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
11990 before Xft one (Bug#1696).
11991
11992 2009-05-07 David Reitter <david.reitter@gmail.com>
11993
11994 * nsfns.m (Fx_display_planes): Compute bitplanes using
11995 NSBitsPerPixelFromDepth (Bug#3207).
11996
11997 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
11998
11999 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
12000
12001 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
12002
12003 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
12004
12005 2009-05-07 David Reitter <david.reitter@gmail.com>
12006
12007 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
12008 Respect mouse face background.
12009
12010 2009-05-07 David Reitter <david.reitter@gmail.com>
12011
12012 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
12013 Mouse movement/highlight: bracket drawing operations
12014 in ns_update_begin and ns_update_end.
12015
12016 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12017
12018 * nsfns.m (ns_get_screen): Rewrite.
12019 Don't presume selected-frame is of type `ns'.
12020
12021 * font.c (font_update_drivers): Sanity fallback to avoid disabling
12022 all drivers.
12023
12024 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
12025
12026 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12027
12028 * keyboard.h (add_user_signal): Fix typo in extern.
12029
12030 * lisp.h (add_user_signal): Remove extern.
12031
12032 * unexelf.c (unexec): Consider a section to precede the .bss section
12033 if its addresses overlap that of .bss.
12034 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
12035 instead of dumping process.
12036
12037 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12038
12039 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
12040
12041 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12042
12043 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
12044
12045 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
12046
12047 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
12048 any statements.
12049
12050 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
12051
12052 * process.c (read_process_output): Make sure the current buffer is
12053 always restored.
12054
12055 * coding.c (record_conversion_result): Don't modify
12056 Vlast_code_conversion_error for successful result.
12057 (alloc_destination): Don't clobber conversion result. (Bug#1650)
12058
12059 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
12060
12061 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
12062 (load_charset_map): Remove unnecessary code.
12063
12064 2009-04-30 David Reitter <david.reitter@gmail.com>
12065
12066 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
12067 through f24.
12068
12069 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
12070
12071 * xfaces.c (face_at_buffer_position): New arg base_face_id.
12072
12073 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
12074 face_at_buffer_position.
12075 (face_before_or_after_it_pos, get_next_display_element)
12076 (note_mouse_highlight): Update face_at_buffer_position call.
12077
12078 * term.c (term_mouse_highlight):
12079 * msdos.c (IT_note_mouse_highlight):
12080 * fontset.c (Finternal_char_font):
12081 * font.c (font_at, font_range): Update face_at_buffer_position call.
12082
12083 * dispextern.h (face_at_buffer_position): Update prototype.
12084
12085 2009-04-30 Kenichi Handa <handa@m17n.org>
12086
12087 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
12088
12089 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
12090
12091 * callproc.c (Fcall_process): Fix GC protection. Make sure
12092 current buffer is always restored.
12093
12094 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12095
12096 * atimer.c (init_atimer): Also clear stopped_atimers.
12097
12098 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
12099
12100 * process.c (create_process): Clean up merger residues of
12101 2008-07-17 change.
12102
12103 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
12104
12105 * lread.c (Vread_circle): New variable.
12106 (read1): Disable recursive read if Vread_circle is nil.
12107
12108 2009-04-29 Kenichi Handa <handa@m17n.org>
12109
12110 * fontset.h (set_default_ascii_font): Delete extern.
12111
12112 * fontset.c (set_default_ascii_font): Delete this unused function.
12113
12114 * frame.c (x_set_font): When ARG is a font-object, check if the
12115 font-object matches with the ASCII font-spec of the frame's
12116 fontset. If not, create a new fontset for the frame. (Bug #3075)
12117
12118 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
12119
12120 * fns.c (Flocale_info): Protect vector from GC during decoding.
12121
12122 * process.c (Fstart_process): Protect argv strings from GC during
12123 encoding.
12124
12125 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
12126
12127 * sysdep.c: Include <ctype.h>.
12128
12129 2009-04-27 David Reitter <david.reitter@gmail.com>
12130
12131 * nsfont.m (nsfont_open): Remove unused variable shrink.
12132 Remove commented-out code.
12133
12134 2009-04-26 Johan Bockgård <bojohan@gnu.org>
12135
12136 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
12137
12138 2009-04-25 Jason Rumney <jasonr@gnu.org>
12139
12140 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
12141
12142 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12143
12144 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
12145 Swap bytes in short integer if fringe bitmap width > 8.
12146
12147 2009-04-23 Kenichi Handa <handa@m17n.org>
12148
12149 * xfaces.c (Fx_list_fonts): If a font size is specified in
12150 PATTERN, set it in returned scalable fonts.
12151
12152 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
12153
12154 * keyboard.c (Fset_input_meta_mode): Doc fix.
12155
12156 * dispnew.c (Fsend_string_to_terminal): Doc fix.
12157
12158 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
12159
12160 * coding.c (Fterminal_coding_system): Doc fix.
12161
12162 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
12163 (Fx_display_pixel_height, Fx_display_planes)
12164 (Fx_display_color_cells, Fx_server_max_request_size)
12165 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
12166 (Fx_display_mm_height, Fx_display_mm_width)
12167 (Fx_display_backing_store, Fx_display_visual_class)
12168 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
12169 Doc fixes, replacing "terminal id" with "terminal object".
12170 (check_x_display_info): Handle terminal objects instead of
12171 terminal ids.
12172
12173 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
12174 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
12175 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
12176 Doc fixes, replacing "terminal id" with "terminal object".
12177
12178 2009-04-21 Kenichi Handa <handa@m17n.org>
12179
12180 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
12181 (font_score): Check AVGWIDTH too.
12182
12183 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
12184 worst case.
12185 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
12186 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
12187
12188 2009-04-19 Jason Rumney <jasonr@gnu.org>
12189
12190 The following changes fix Bug#3005 for wide glyphs on each platform,
12191 without reintroducing Bug#1258 for stretch glyphs.
12192
12193 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
12194 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
12195 get_phys_cursor_geometry.
12196
12197 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
12198 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
12199 using get_phys_cursor_geometry.
12200
12201 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
12202 correctly calculated.
12203
12204 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
12205
12206 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
12207 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
12208 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
12209 is deprecated.
12210
12211 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
12212
12213 * font.c (font_put_frame_data): Use xfree instead of free.
12214
12215 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
12216
12217 * w32font.c (Qja, Qko): Remove declarations.
12218 (syms_of_w32font): Don't DEFSYM them.
12219
12220 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
12221
12222 * font.c (Qja, Qko): Move definitions here from ftfont.c.
12223
12224 * font.h (Qja, Qko): Extern them.
12225
12226 * ftfont.c (Qja, Qko): Remove declarations.
12227
12228 * xfont.c (Qja, Qko): Remove declarations.
12229
12230 2009-04-17 Kenichi Handa <handa@m17n.org>
12231
12232 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
12233 string from a vector to handle Latin-1 characters correctly.
12234
12235 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
12236 entity even if the cache hits.
12237
12238 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
12239
12240 * search.c (boyer_moore): Use zero as marker value for a possible
12241 match instead of depending on overflow behavior. (Bug#2844)
12242
12243 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
12244 * lisp.h: Adjust prototypes.
12245
12246 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
12247
12248 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
12249 change (Bug#3003).
12250
12251 2009-04-16 Kenichi Handa <handa@m17n.org>
12252
12253 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
12254
12255 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
12256 adstyle.
12257
12258 * ftfont.c (Qja, Qko): Don't make them static.
12259 (enum ftfont_cache_for): New enum.
12260 (fc_charset_table): Undo the previous change.
12261 (ftfont_get_latin1_charset): Delete it.
12262 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
12263 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
12264 non-scarable font, try to get AVERAGE_WIDTH.
12265 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
12266 Change ft_face_cache from a list of a hash-table. Don't check
12267 `ja' and `ko' adstyle here.
12268 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
12269 FTFONT_CACHE_FOR_CHARET.
12270 (ftfont_get_charset): Undo the previous change.
12271 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
12272 (ftfont_close): Likewise.
12273 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
12274
12275 * font.c (font_sort_entites): Change the meaning of the arg
12276 BEST-ONLY. Don't optimize for VEC of lenght 1.
12277 (font_select_entity): Just return the value of font_sort_entites.
12278
12279 * xfaces.c (merge_face_vectors): Reflect font properties in
12280 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
12281 font_clear_prop if a face attribute doesn't change.
12282
12283 * charset.h (charset_ksc5601): Extern it.
12284
12285 * charset.c (charset_ksc5601): New variable.
12286 (Fdefine_charset_internal): Set charset_ksc5601.
12287 (init_charset_once): Initialize charset_ksc5601 to -1.
12288
12289 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
12290
12291 * fileio.c (history_delete_duplicates): Remove unused declaration.
12292
12293 * callint.c (history_delete_duplicates): New declaration.
12294 (Fcall_interactively): Remove command history duplicates when
12295 history_delete_duplicates is true.
12296
12297 2009-04-14 Eli Zaretskii <eliz@gnu.org>
12298
12299 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
12300
12301 2009-04-14 Kenichi Handa <handa@m17n.org>
12302
12303 * font.c (Ffont_info): Fix docstring. Fix the second element of
12304 the returned value (bug#2949).
12305
12306 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
12307
12308 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
12309
12310 2009-04-14 Kenichi Handa <handa@m17n.org>
12311
12312 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
12313 encoding charset is ascii_compatible.
12314
12315 * charset.c (Fdefine_charset_internal): Make charset
12316 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
12317 code_offset is 0, and covers all ASCII characters.
12318
12319 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12320
12321 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
12322 (ns_string_to_pasteboard_internal):
12323 * nsmenu.m (process_dialog):
12324 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
12325 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
12326 * lisp.h (Fx_load_color_file): Declare.
12327
12328 2009-04-13 Kenichi Handa <handa@m17n.org>
12329
12330 * font.c (font_delete_unmatched): Preserve the order of list elements.
12331 (font_select_entity): Suppress the code to optimize for the same
12332 kind of fonts.
12333 (font_load_for_lface): Get a font that supports at least ASCII
12334 characters.
12335
12336 * ftfont.c (Qja, Qko): New variables.
12337 (fc_charset_table): Delete uniquifier data for iso8859-1.
12338 (ftfont_get_latin1_charset): New function.
12339 (get_adstyle_property): New function.
12340 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
12341 bitmap fonts.
12342 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
12343 Delete iso-8859-1 range from the charset of fonts whose adstyle is
12344 `ko' or `ja'.
12345 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
12346 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
12347 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
12348 property.
12349 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
12350 (syms_of_ftfont): DEFSYM Qja and Qko.
12351
12352 2009-04-09 Kenichi Handa <handa@m17n.org>
12353
12354 * charset.c (map_charset_chars): For a charset of `superset'
12355 method, fix calculation of code range.
12356
12357 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
12358 from the list of extra properties.
12359 (font_clear_prop): Be sure to delete `:name' font property.
12360
12361 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12362
12363 * dispnew.c (redraw_overlapping_rows): Fix detection of
12364 overlapping for topmost and bottommost rows.
12365
12366 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
12367
12368 2009-04-06 Jason Rumney <jasonr@gnu.org>
12369
12370 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
12371
12372 2009-04-06 Kenichi Handa <handa@m17n.org>
12373
12374 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
12375
12376 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
12377
12378 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12379
12380 * ftfont.c (ftfont_open): Fix checking of the return value of
12381 FT_Load_Char. Fix setting font->underline_thickness.
12382
12383 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
12384
12385 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
12386 (Fterminal_parameters, Fterminal_parameter)
12387 (Fset_terminal_parameter): In doc string, refer to terminal
12388 objects rather than terminal ids.
12389
12390 2009-04-04 Eli Zaretskii <eliz@gnu.org>
12391
12392 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
12393 ret_lim_data. (Bug#2867)
12394
12395 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
12396
12397 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
12398 so they don't get wider than the window, matching 2006-01-23
12399 change to the partner function in xdisp.c (Bug#2800).
12400
12401 2009-04-03 Kenichi Handa <handa@m17n.org>
12402
12403 * print.c (print_object): Make each lowest sub_char_table start a
12404 new line (Bug#2866).
12405
12406 2009-04-02 Kenichi Handa <handa@m17n.org>
12407
12408 * fontset.c (fontset_font): Record no-font when a fontset
12409 explicitly tells not to try another font-specs.
12410
12411 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
12412
12413 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
12414
12415 2009-03-30 Kenichi Handa <handa@m17n.org>
12416
12417 * fontset.c (fontset_from_font): Specify only registry in a
12418 font-spec for all characters supported by that registry.
12419
12420 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
12421 even if HAVE_M17N_FLT is not defined.
12422
12423 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
12424
12425 * ftfont.c: Conditionalize prototyping and use of
12426 ftfont_variation_glyphs.
12427
12428 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
12429
12430 * frame.c (delete_frame): Work around compiler bug.
12431
12432 * editfns.c (general_insert_function): Adjust to insdel.c changes.
12433 * insdel.c (prepare_to_modify_buffer, signal_before_change):
12434 Some more EMACS_INT.
12435 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
12436
12437 * xdisp.c (dump_glyph): Fix typo.
12438
12439 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
12440 (adjust_markers_gap_motion, adjust_markers_for_delete)
12441 (adjust_markers_for_insert, adjust_point)
12442 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
12443 (make_gap, copy_text, count_size_as_multibyte, insert)
12444 (insert_and_inherit, insert_before_markers)
12445 (insert_before_markers_and_inherit, insert_1)
12446 (count_combining_before, count_combining_after, insert_1_both)
12447 (insert_from_string, insert_from_string_before_markers)
12448 (insert_from_string_1, insert_from_gap, insert_from_buffer)
12449 (insert_from_buffer_1, adjust_after_replace)
12450 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
12451 (replace_range_2, del_range, del_range_1, del_range_byte)
12452 (del_range_both, del_range_2, modify_region)
12453 (prepare_to_modify_buffer, signal_before_change)
12454 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
12455 for buffer positions and sizes.
12456 * lisp.h: Adjust prototypes accordingly.
12457
12458 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
12459 (non_regular_inserted, non_regular_nbytes, read_non_regular)
12460 (Finsert_file_contents): Use EMACS_INT for buffer positions.
12461
12462 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
12463
12464 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
12465
12466 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
12467 lines and columns so we keep the same pixel height and width.
12468
12469 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
12470 the property _NET_WM_STATE has changed.
12471 (x_handle_net_wm_state): New function to update frame parameter
12472 fullscreen.
12473 (x_term_init): Initialize atoms for _NET_WM_STATE.
12474
12475 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
12476
12477 2009-03-27 Kevin Ryde <user42@zip.com.au>
12478
12479 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
12480 Gpm_GetEvent as an error that justifies closing the filedescriptor.
12481 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
12482 (Fgpm_mouse_stop): Pass that new parameter.
12483 * termhooks.h (close_gpm): Adjust prototype.
12484
12485 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12486
12487 * lisp.h (Fx_focus_frame): Declare.
12488
12489 * callint.c (Fcall_interactively): For '^' just delegate the work to
12490 handle-shift-selection.
12491 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
12492
12493 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
12494
12495 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
12496
12497 * data.c (Qinteractive_form): New variable.
12498 (Finteractive_form): Use it.
12499
12500 * eval.c (Fcommandp): Use Qinteractive_form.
12501
12502 2009-03-24 Jason Rumney <jasonr@gnu.org>
12503
12504 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
12505 Calculate total size precisely. Decode environment variables
12506 before substituting. (Bug#38)
12507
12508 2009-03-24 Kenichi Handa <handa@m17n.org>
12509
12510 * font.c (find_font_encoding): Return Qnil for unsupported
12511 encoding (Bug#2722).
12512
12513 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
12514
12515 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
12516 that gdpy is set.
12517
12518 2009-03-22 Alan Mackenzie <acm@muc.de>
12519
12520 * callint.c (Finteractive): Clarify the doc string - even
12521 promptless elements need \n separators.
12522
12523 2009-03-22 Jason Rumney <jasonr@gnu.org>
12524
12525 * w32term.c (syms_of_w32term): Doc fix for
12526 x-use-underline-position-properties.
12527
12528 2009-03-21 Eli Zaretskii <eliz@gnu.org>
12529
12530 * w32.c (getpwuid): Change argument type to unsigned.
12531 (struct w32_id): Change type of `rid' member to unsigned.
12532 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
12533 argument ID to unsigned. All callers changed.
12534 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
12535
12536 2009-03-20 Eli Zaretskii <eliz@gnu.org>
12537
12538 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
12539 negative, produce a float value.
12540
12541 * dired.c (make_uid, make_gid): New functions.
12542 (Ffile_attributes): Use them to avoid negative UID and GID.
12543
12544 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
12545
12546 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
12547 (syms_of_keyboard) <command-hook-internal, input-method-function>:
12548 Fix typos in docstrings.
12549
12550 2009-03-19 Kenichi Handa <handa@m17n.org>
12551
12552 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
12553 changed, use font_load_for_lface to get a new font object.
12554 Call free_realized_fontset after handling ASCII font change.
12555
12556 * frame.c (x_set_font): Handle the case that ARG is a cons.
12557
12558 2009-03-19 Glenn Morris <rgm@gnu.org>
12559
12560 * fileio.c (Fsubstitute_in_file_name): Doc fix.
12561
12562 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
12563
12564 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
12565
12566 2009-03-19 Kenichi Handa <handa@m17n.org>
12567
12568 * charset.c (load_charset_map_from_file): When a mapfile can't be
12569 loaded, signal an error.
12570
12571 2009-03-18 Eli Zaretskii <eliz@gnu.org>
12572
12573 * dired.c (Ffile_attributes): Make sure UID and GID are always
12574 positive, even if the value is too large for a positive EMACS_INT.
12575 Doc fix.
12576
12577 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
12578
12579 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12580
12581 * xmenu.c (xdialog_show): Move Fredisplay call ...
12582 (Fx_popup_dialog): ... here.
12583
12584 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
12585
12586 * dired.c (file_name_completion): Disable the first optimization just
12587 installed, since it is not implemented correctly.
12588
12589 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12590
12591 * dired.c (file_name_completion): Check completion-ignored-extensions
12592 only if the entry can affect bestmatch.
12593 Stop the search early, as Ftry_completion already does.
12594
12595 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
12596
12597 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
12598
12599 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
12600
12601 * keyboard.c (parse_menu_item): Don't display remappings as menu
12602 equivalent bindings (Bug#788).
12603
12604 2009-03-15 Jason Rumney <jasonr@gnu.org>
12605
12606 * w32term.h (WM_EMACS_PAINT): New message.
12607 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
12608 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
12609 before passing to lisp thread. (Bug#950)
12610
12611 2009-03-14 David Reitter <david.reitter@gmail.com>
12612
12613 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
12614 variable as it was never reset.
12615 (ns_term_init): Remove initialization of Lisp-settable defaults
12616 and ns_expand_space.
12617 (-setPanelFromDefaultValues): Remove ns_expand_space.
12618 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
12619 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
12620 i.e. no additional spacing, similar to Carbon port.
12621
12622 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
12623 * nsfns.m (ns-popup-prefs-panel): Remove.
12624
12625 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
12626
12627 * sound.c (alsa_configure): Remove call to deprecated
12628 snd_pcm_sw_params_set_xfer_align.
12629
12630 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
12631
12632 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
12633 after clicking in a detached tool bar.
12634 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
12635
12636 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
12637
12638 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
12639 int/Lisp_Object mixup).
12640
12641 2009-03-13 Kenichi Handa <handa@m17n.org>
12642
12643 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
12644 Handle NAME nil and t correctly. Callers changed.
12645 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
12646 (set_fontset_font): Change ARG to a vector. Handle range_list in
12647 ARG correctly.
12648 (Fset_fontset_font): Fix the case that TARGET is both a script
12649 name and charset name. Adjust the arg to set_fontset_font for
12650 the above change.
12651 (fontset_from_font): Fix previous change.
12652 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
12653 entry. If FONTSET is the default fontset, don't set the extra
12654 slot of the returning char-table.
12655
12656 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
12657
12658 * nsfns.m (Fx_close_connection): Doc fix.
12659 (Fns_do_applescript): Reflow docstring.
12660 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
12661 (Fx_display_pixel_width, Fx_display_pixel_height)
12662 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
12663 Fix typos in docstrings.
12664 (Fns_set_alpha): Fix typos in error messages.
12665
12666 2009-03-12 David Reitter <david.reitter@gmail.com>
12667
12668 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
12669 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
12670 were used for such events.
12671
12672 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
12673 (toggleToolbar, performDragOperation, runHelp): Use it.
12674
12675 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
12676 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
12677
12678 2009-03-11 Kenichi Handa <handa@m17n.org>
12679
12680 * font.h (font_open_by_spec): Extern it.
12681
12682 * font.c (font_open_by_spec): New function.
12683 (font_open_by_name): Use font_open_by_spec.
12684
12685 * frame.c (x_set_font): When ARG is a font-object, don't alter the
12686 fontset of the frame.
12687
12688 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
12689 modify the default font of frames that use this fontset.
12690 (num_auto_fontsets): New variable.
12691 (fontset_from_font): Use num_auto_fontsets to decide a fontset
12692 name. Be sure to set FONTSET_ASCII to the correct font name.
12693 (update_auto_fontset_alist): New function.
12694
12695 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
12696
12697 * makefile.w32-in: Update dependencies.
12698
12699 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
12700
12701 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
12702
12703 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
12704
12705 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
12706
12707 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
12708
12709 * lread.c (Feval_buffer): Doc fix.
12710
12711 2009-03-09 Kenichi Handa <handa@m17n.org>
12712
12713 * charset.c (Qfile_name_handler_alist): Extern it.
12714 (load_charset_map_from_file): Temporarily bind
12715 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
12716
12717 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
12718
12719 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
12720 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
12721
12722 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
12723
12724 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
12725 (x_set_window_size): Change back to calculated method of setting
12726 toolbar height under Cocoa. (Bug#2546)
12727 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
12728 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
12729
12730 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
12731
12732 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
12733 accelerator in parens under GNUstep.
12734
12735 2009-03-06 Kenichi Handa <handa@m17n.org>
12736
12737 These changes are to detect incorrect composition sequence without
12738 looking ahead the source. (Bug#2370)
12739
12740 * coding.h: Include "composite.h".
12741 (enum compisition_state): New enum.
12742 (struct compisition_status): New struct.
12743 (struct iso_2022_spec): New member cmp_status.
12744 (struct emacs_mule_spec): New struct.
12745 (struct coding_system): New members ctext_extended_segment_len and
12746 embedded_utf_8. Change the union member
12747 spec.emacs_mule_full_support to spec.emacs_mule.
12748
12749 * coding.c (CODING_ISO_CMP_STATUS): New macro.
12750 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
12751 (MAX_ANNOTATION_LENGTH): Define to 5.
12752 (ADD_COMPOSITION_DATA): New arg nbytes.
12753 (emacs_mule_char): New arg cmp_status.
12754 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
12755 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
12756 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
12757 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
12758 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
12759 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
12760 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
12761 (EMACS_MULE_COMPOSITION_END): New macro.
12762 (emacs_mule_finish_composition): New function.
12763 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
12764 (decode_coding_emacs_mule): Avoid long looking ahead while
12765 handling composition.
12766 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
12767 (ENCODE_COMPOSITION_RULE): New macro.
12768 (finish_composition): New function.
12769 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
12770 (DECODE_COMPOSITION_START): New implementation.
12771 (DECODE_COMPOSITION_END): Likewise.
12772 (STORE_COMPOSITION_RULE): New macro.
12773 (decode_coding_iso_2022): Avoid long looking ahead while handling
12774 composition, CTEXT extended segment, and embedded UTF-8.
12775 (setup_coding_system): For a coding of type iso-2022, reset
12776 CODING_ISO_EXTSEGMENT_LEN (coding) and
12777 CODING_ISO_EMBEDDED_UTF_8 (coding).
12778 (get_translation): Delete arguments last_block, from_nchars,
12779 to_nchars. Callers changed.
12780 (produce_chars): Don't modify charbuf. Adjusted for the change of
12781 get_translation.
12782 (produce_composition): Adjust for the new annotation sequence.
12783 (handle_composition_annotation): Likewise.
12784 (consume_chars): Adjust for the change of get_translation.
12785
12786 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
12787
12788 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
12789
12790 2009-03-05 Kenichi Handa <handa@m17n.org>
12791
12792 * font.c (font_select_entity): New function.
12793 (font_find_for_lface): Use font_select_entity to select a font.
12794
12795 * fontset.c (fontset_find_font): If a font found without
12796 restricting to the characters C doesn't support C, try to find a
12797 font with C restriction.
12798
12799 2009-03-04 Nikolaj Schumacher <me@nschum.de>
12800
12801 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
12802
12803 2009-03-04 Jason Rumney <jasonr@gnu.org>
12804
12805 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
12806 characters that have already been read. (Bug#2569)
12807
12808 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
12809 Log an error message if check_image_size failed.
12810 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
12811 (gs_load): Mention max-image-size in size error message. (Bug#2560)
12812
12813 2009-03-02 Eli Zaretskii <eliz@gnu.org>
12814
12815 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
12816 when decoding process output.
12817
12818 2009-03-01 Richard M Stallman <rms@gnu.org>
12819
12820 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
12821
12822 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
12823
12824 2009-02-28 Eli Zaretskii <eliz@gnu.org>
12825
12826 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
12827 (decode_coding_emacs_mule, decode_coding_iso_2022)
12828 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
12829 (decode_coding_raw_text, decode_coding_charset)
12830 (setup_coding_system, decode_eol, decode_coding, consume_chars):
12831 Honor inhibit-eol-conversion. (Bug #2186)
12832
12833 2009-02-28 Jason Rumney <jasonr@gnu.org>
12834
12835 * coding.c (detect_coding_charset): If not checking latin extra,
12836 fail on characters between 0x80 and 0xA0. (Bug#2354)
12837
12838 2009-02-28 Eli Zaretskii <eliz@gnu.org>
12839
12840 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
12841 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
12842
12843 2009-02-27 Glenn Morris <rgm@gnu.org>
12844
12845 * callint.c (Finteractive): Doc fix.
12846
12847 2009-02-27 Kenichi Handa <handa@m17n.org>
12848
12849 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
12850
12851 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
12852
12853 * font.c (font_style_to_value): Set value for unknown symbols to
12854 100 instead of 255.
12855 (weight_table, slant_table, width_table): Treat "unspecified" as
12856 the default value.
12857
12858 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
12859
12860 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
12861
12862 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
12863
12864 * lread.c (Fload): Stop checking Vloads_in_progress and signal
12865 error as soon as a recursive load is detected.
12866
12867 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
12868
12869 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
12870 before caching.
12871
12872 2009-02-24 Kenichi Handa <handa@m17n.org>
12873
12874 * fontset.c (fontset_find_font): Fix the condition for checking
12875 unavailable font.
12876
12877 2009-02-24 Glenn Morris <rgm@gnu.org>
12878
12879 * xfaces.c (Finternal_set_font_selection_order): Remove leading
12880 whitespace that confuses documentation.
12881
12882 2009-02-23 Miles Bader <miles@gnu.org>
12883
12884 * process.c (Flist_system_processes, Fprocess_attributes)
12885 (syms_of_process): Rename `system-process-attributes' to
12886 `process-attributes'.
12887
12888 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
12889
12890 * coding.h (struct coding_system): Make safe_charsets a pointer to
12891 unsigned char.
12892 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
12893 being 255.
12894 (SAFE_CHARSET_P): Likewise.
12895 (setup_iso_safe_charsets): Properly setup safe_charsets.
12896 (Fdefine_coding_system_internal): Likewise.
12897 (setup_coding_system): Likewise. Remove unneeded casts.
12898 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
12899 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
12900 Remove unneeded casts.
12901
12902 * insdel.c (del_range_2): Don't modify gap contents when called
12903 from decode_coding_object. (Bug#1809)
12904
12905 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
12906
12907 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
12908 Qfont_object.
12909 (Ftype_of): Recognize font objects.
12910
12911 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
12912
12913 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
12914 Definitions moved to data.c.
12915
12916 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12917
12918 * nsterm.m (x_make_frame_invisible): Unset async_visible,
12919 async_iconified. Based on a patch by Christian Lynbech
12920 <christian.lynbech@tieto.com>.
12921 (EmacsView-windowDidMiniaturize:): Unset async_visible.
12922
12923 2009-02-20 Glenn Morris <rgm@gnu.org>
12924
12925 * syntax.c (Fskip_chars_forward): Fix doc typo.
12926
12927 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
12928
12929 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
12930
12931 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
12932
12933 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
12934
12935 2009-02-19 Kenichi Handa <handa@m17n.org>
12936
12937 * coding.c (detect_coding): Preserve coding->mode.
12938 Don't overflow coding->carryover. (Bug#2370)
12939
12940 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
12941
12942 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
12943
12944 2009-02-18 Kenichi Handa <handa@m17n.org>
12945
12946 * font.c (font_check_otf_features): Fix handling of `nil' element.
12947 (Ffont_spec): Describe :lang and :otf in the docstring.
12948
12949 2009-02-16 Andreas Schwab <schwab@suse.de>
12950
12951 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
12952 string.
12953
12954 2009-02-16 Kenichi Handa <handa@m17n.org>
12955
12956 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
12957 (Bug#1723)
12958
12959 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
12960
12961 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
12962
12963 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
12964 (handle_line_prefix): Suppress wrapping of wrap prefixes.
12965
12966 2009-02-14 Eli Zaretskii <eliz@gnu.org>
12967
12968 * msdos.c (MAX_SCREEN_BUF): New macro.
12969 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
12970 Encode the entire run of glyphs sharing the same face, instead of
12971 doing that one glyph at a time (fixes a bug with displaying
12972 double-size characters).
12973
12974 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
12975
12976 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
12977
12978 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
12979 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
12980 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
12981
12982 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
12983 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
12984
12985 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
12986
12987 * keyboard.c (adjust_point_for_property): Allow stopping between two
12988 invisible areas.
12989
12990 2009-02-12 Jason Rumney <jasonr@gnu.org>
12991
12992 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
12993 (add_font_entity_to_list): Call check_face_name even when family
12994 is unspecified.
12995
12996 * w32term.c (x_display_pixel_height, x_display_pixel_width):
12997 Release DC when finished. Use NULL window to refer to desktop.
12998 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
12999
13000 * w32font.c (add_font_entity_to_list): Fix check for substituted
13001 raster fonts. (Bug#2219)
13002
13003 2009-02-12 Kenichi Handa <handa@m17n.org>
13004
13005 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
13006 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
13007 (autocmp_chars): Use fast_looking_at. Don't compose more
13008 characters than MAX_COMPOSITION_COMPONENTS.
13009 (find_automatic_composition): While looking forward and backward,
13010 check static composition. Fix where to stop looking forward.
13011 (composition_adjust_point): Fix checking of static composition.
13012 (Fcomposition_get_gstring): Pay attention to
13013 MAX_COMPOSITION_COMPONENTS.
13014
13015 * lisp.h (fast_looking_at): Extern it.
13016
13017 * search.c (fast_looking_at): New function.
13018
13019 * term.c (encode_terminal_code): Adjust for the change of
13020 <struct glyph>.u.cmp.to.
13021 (append_composite_glyph): Likewise.
13022
13023 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
13024 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
13025 composition.
13026 (append_composite_glyph): Adjust for the change of
13027 <strcut glyph>.u.cmp.to.
13028
13029 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
13030
13031 * casetab.c (init_casetab_once):
13032 * coding.c (ALLOC_CONVERSION_WORK_AREA):
13033 * font.c (font_update_lface):
13034 * fontset.c (Fnew_fontset):
13035 * ftfont.c (ftfont_drive_otf):
13036 * xfont.c (xfont_open):
13037 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
13038
13039 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13040
13041 * fileio.c (Fwrite_region): !NILP -> CONSP.
13042
13043 2009-02-10 Andreas Schwab <schwab@suse.de>
13044
13045 * process.c (send_process): Properly relocate pointer into data
13046 when using encoded data. (Bug#2272)
13047
13048 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
13049
13050 * coding.c (detect_coding_charset): Fix previous change.
13051
13052 2009-02-08 Jason Rumney <jasonr@gnu.org>
13053
13054 * w32fns.c (w32_hide_hourglass): Handle case where frame
13055 disappeared while hourglass was displayed. (Bug #2193)
13056
13057 2009-02-07 Andreas Schwab <schwab@suse.de>
13058
13059 * unexelf.c (unexec): Fix error message.
13060
13061 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
13062
13063 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
13064 when modal window is active. (Bug #2152)
13065 (applicationShouldTerminate:): Remove now-unneeded while loop
13066 around NSRunAlertPanel.
13067
13068 * nsmenu.m (popupSession): New file-global variable.
13069 (pop_down_menu): End the popupSession before closing dialog.
13070 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
13071 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
13072 don't query NSApp for events (just sleep instead).
13073
13074 2009-02-07 Eli Zaretskii <eliz@gnu.org>
13075
13076 * coding.c (syms_of_coding) <translation-table-for-input>:
13077 Modify doc string to discourage use for character code unification.
13078
13079 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13080
13081 * atimer.c (run_timers): Update pending_atimers.
13082
13083 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
13084
13085 * image.c (svg_load_image): Fix last change.
13086
13087 * xfns.c (Fx_create_frame): Signal an error if no font is
13088 found (Bug#2147).
13089
13090 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
13091
13092 * character.c (syms_of_character) <script-representative-chars>:
13093 Fix typo in docstring.
13094
13095 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
13096
13097 * nsmenu.m (pop_down_menu): New function.
13098 (ns_popup_dialog): Call it on unwind.
13099 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
13100 call timer_check() (Bug#2154).
13101 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
13102 handling_signal is set.
13103 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
13104
13105 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
13106
13107 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
13108
13109 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
13110
13111 * keyboard.c (poll_for_input_1, handle_async_input):
13112 Set handling_signal under HAVE_NS.
13113
13114 2009-02-04 Glenn Morris <rgm@gnu.org>
13115
13116 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
13117
13118 2009-02-04 Kenichi Handa <handa@m17n.org>
13119
13120 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
13121
13122 * charset.c (Fchar_charset): New optional arg restriction.
13123
13124 * coding.h (coding_system_charset_list): Extern it.
13125
13126 * coding.c (coding_system_charset_list): New function.
13127
13128 * composite.c: Include coding.h and termhooks.h.
13129 (composition_gstring_p): Fix for the terminal case.
13130 (composition_gstring_width): Likewise.
13131 (fill_gstring_body): Likewise.
13132 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
13133 the frame.
13134 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
13135 is within a composition.
13136 (Fcomposition_get_gstring): Fix the terminal case.
13137
13138 * term.c (encode_terminal_code): Fix handling of composition.
13139 (produce_composite_glyph): For static composition, get pixel_width
13140 from struct composition.
13141
13142 2009-02-02 Andreas Schwab <schwab@suse.de>
13143
13144 * unexelf.c (unexec): Handle unaligned bss offset.
13145
13146 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13147
13148 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
13149 XT,w32read_socket changes to ns_read_socket.
13150
13151 * keyboard.c (handle_interrupt): Don't call
13152 quit_throw_to_read_char() under NS.
13153
13154 * blockinput.h: Remove NS-specific code.
13155
13156 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
13157
13158 * dispnew.c (window_change_signal): Don't try to get the size of a
13159 suspended tty frame.
13160 * term.c (Fresume_tty): Resize if the size has changed while the
13161 tty was suspended.
13162
13163 * alloc.c (mark_stack): Properly conditionalize previous change.
13164
13165 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
13166
13167 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
13168 * w32term.c (w32_read_socket) [SYNC_INPUT]:
13169 Remove; this code is not used on Windows.
13170
13171 2009-01-30 Eli Zaretskii <eliz@gnu.org>
13172
13173 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
13174 EOLs that also has stray ^M characters.
13175
13176 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
13177
13178 * atimer.c (run_timers, alarm_signal_handler):
13179 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
13180 * w32inevt.c (w32_console_read_socket):
13181 * w32term.c (w32_read_socket):
13182 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
13183
13184 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
13185
13186 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
13187 Initialize it as a relative filename pattern.
13188 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
13189 (Fcall_process_region): Simplify temp file creation using
13190 temporary-file-directory.
13191
13192 2009-01-29 Eli Zaretskii <eliz@gnu.org>
13193
13194 * msdos.c: Rename pending_signals to msdos_pending_signals.
13195 (sig_suspender, sigprocmask): Adjust.
13196
13197 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
13198
13199 * keyboard.c (pending_signals): New var.
13200 (poll_for_input, input_available_signal, init_keyboard): Set it.
13201 (process_pending_signals): New function.
13202
13203 * lisp.h (QUIT): Check pending_signals instead of
13204 interrupt_input_pending. Use process_pending_signals.
13205
13206 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
13207
13208 * process.c (wait_reading_process_output): Use process_pending_signals.
13209
13210 * sysdep.c (emacs_write): Use process_pending_signals.
13211
13212 * xterm.c (XTread_socket): Update pending_signals.
13213
13214 * w32term.c (w32_read_socket): Update pending_signals.
13215
13216 * w32inevt.c (w32_console_read_socket): Update pending_signals.
13217
13218 2009-01-29 Kenichi Handa <handa@m17n.org>
13219
13220 * xftfont.c (xftfont_has_char): New function.
13221 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
13222
13223 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
13224
13225 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
13226 under GNUstep.
13227 (ns_query_color): New declaration.
13228
13229 * nsterm.m (ns_confirm_quit): New variable.
13230 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
13231 (EmacsApp-applicationShouldTerminate:): Use it.
13232 (EmacsPrefsController): Let user set it.
13233 (ns_query_color): New function.
13234 (ns_defined_color): Use it.
13235 (ns_initialize): Drop.
13236 (ns_term_init): Add two lines from ns_initialize(), and set
13237 input_interrupt_mode to nil.
13238
13239 * image.c (svg_load_image): Don't right-shift background RGB when
13240 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
13241
13242 2009-01-28 Kenichi Handa <handa@m17n.org>
13243
13244 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
13245 (fontset_get_font_group): Remember that no font-group is specified
13246 for C.
13247
13248 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
13249
13250 * fns.c (concat): Check for string overflow (bug#1787).
13251
13252 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
13253 Quadruple undo limits (bug#1501).
13254
13255 2009-01-27 Kenichi Handa <handa@m17n.org>
13256
13257 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
13258 directly use GT_Get_Char_index.
13259
13260 * xftfont.c (struct xftfont_info): New member `index'.
13261
13262 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
13263 (Ffontset_font): Adjust for the change of fontset entry.
13264
13265 2009-01-26 Kenichi Handa <handa@m17n.org>
13266
13267 * fontset.c (fontset_find_font): Fix handling of non-cons return
13268 value of fontset_get_font_group.
13269 (fontset_font): Revert last change.
13270
13271 2009-01-26 Jason Rumney <jasonr@gnu.org>
13272
13273 * w32font.c (w32font_list_internal): Return quickly if registry is
13274 unknown. Simplify final return.
13275 (add_font_entity_to_list): Break complex logic down into more
13276 manageable chunks. Move unknown registry check to
13277 w32font_list_internal.
13278
13279 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
13280
13281 Changes to remove Feval calls from GUI under NS.
13282
13283 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
13284 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
13285 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
13286
13287 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
13288 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
13289 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
13290 instead of NON_ASCII_KEYSTROKE_EVENT.
13291 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
13292 (EmacsApp-applicationShouldTerminate:): Query user.
13293 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
13294 instead of Feval.
13295
13296 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
13297
13298 * keyboard.c (kbd_buffer_get_event): Check for it.
13299 (keys_of_keyboard): Define lispy keys for
13300 ns-put/unput-working-text.
13301
13302 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
13303 versions.
13304 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
13305
13306 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
13307
13308 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
13309 setting current_buffer directly. (Bug#2044)
13310
13311 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
13312
13313 * fontset.c (fontset_font): If we know there is no font, don't do
13314 any work. (Bug#1952, bug#1990).
13315
13316 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
13317
13318 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
13319
13320 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
13321 (ns_no_defaults): New declaration.
13322 (main): Use it.
13323
13324 * nsterm.h (ns_no_defaults): New declaration.
13325
13326 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
13327
13328 * nsterm.m (ns_no_defaults): New variable.
13329 (ns_initialize): Don't read defaults when ns_no_defaults.
13330 (EmacsView-readSelectionFromPasteboard:)
13331 (writeSelectionToPasteboard:types:): New stubbed-out methods for
13332 NSServicesRequests protocol. (Bug#1435)
13333 (ns_dumpglyphs_stretch): New function.
13334 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
13335 of 2008-11-15 to other terms. (Bug#615)
13336
13337 * nsimage.m (setPixmapData:): Set to ignore image DPI.
13338
13339 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
13340
13341 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
13342 call for Sparc64.
13343
13344 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
13345
13346 * nsfns.m:
13347 * nsgui.h:
13348 * nsmenu.m:
13349 * nsselect.m:
13350 * nsterm.h:
13351 * nsterm.m: Remove '23' comments that indicated code added during
13352 update from emacs-20 -> emacs-23.
13353
13354 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
13355
13356 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
13357 ns_alternate_modifier. (Bug#1217)
13358
13359 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
13360 Display all shortcuts, including those w/o super modifier.
13361
13362 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
13363
13364 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
13365
13366 * fileio.c (Vwrite_region_post_annotation_function)
13367 (Vwrite_region_annotation_buffers): New vars.
13368 (build_annotations_unwind): Just reset
13369 Vwrite_region_annotation_buffers.
13370 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
13371 Call write-region-post-annotation-function.
13372 (build_annotations): Add to Vwrite_region_annotation_buffers if
13373 buffer changes.
13374
13375 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
13376
13377 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
13378 Tiger.
13379 * nsfns.m (ns_do_applescript):
13380 Conditionalize typeUTF16ExternalRepresentation on Tiger.
13381
13382 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13383
13384 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
13385
13386 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
13387
13388 * nsmenu.m (NSMENUPROFILE): Change #if style.
13389
13390 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
13391
13392 * nsterm.m (x_set_frame_alpha): Add prototype.
13393 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
13394 handle Ctrl-tab. (Bug#1841)
13395 (ns_get_color): Use unsigned long long for scanned hex string value.
13396 (ns_term_shutdown): Abort on non SIGTERM signals.
13397 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
13398 (EmacsPrefsController-setPanelFromDefaultValues): New function.
13399 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
13400 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
13401 (ns_defined_color): Fix settings of the XColor variable fields:
13402 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
13403
13404 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
13405 DPI. (Bug#1316)
13406 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
13407 values in onTiger section.
13408
13409 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
13410
13411 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
13412 Check return value of font_spec_from_name.
13413 (Fx_list_fonts): Doc fix. (Bug#1951)
13414
13415 * font.c (font_spec_from_name): Return Qnil if font name could not
13416 be parsed.
13417 (font_parse_name): Treat a `?' character as part of an XLFD.
13418
13419 * fns.c (Fsubstring): Doc fix.
13420
13421 2009-01-19 Kenichi Handa <handa@m17n.org>
13422
13423 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
13424 (ftfont_list): Likewise.
13425
13426 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
13427
13428 * dbusbind.c (Fdbus_register_signal):
13429 * process.c (conv_sockaddr_to_lisp):
13430 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
13431
13432 * callproc.c (Fgetenv_internal): Doc fix.
13433
13434 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
13435
13436 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
13437 it is not even used.
13438
13439 2009-01-16 Glenn Morris <rgm@gnu.org>
13440
13441 * font.c (Ffont_variation_glyphs): Silence compiler.
13442
13443 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
13444
13445 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
13446 Reported by David Robinow <drobinow@gmail.com>.
13447
13448 2009-01-15 Kenichi Handa <handa@m17n.org>
13449
13450 * coding.c (detect_coding_system): Fix handling of null_byte_found.
13451
13452 2009-01-14 Jason Rumney <jasonr@gnu.org>
13453
13454 * frame.c (x_set_font): Always store a font to the font parameter,
13455 never a fontset. (Bug#1562)
13456
13457 2009-01-14 Kenichi Handa <handa@m17n.org>
13458
13459 * coding.c (TWO_MORE_BYTES): New macro.
13460 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
13461
13462 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
13463
13464 * font.c (font_clear_prop): If clearing the family, clear the font
13465 width index too.
13466
13467 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
13468
13469 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
13470
13471 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
13472 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
13473 functions, use sizeof.
13474
13475 2009-01-12 Martin Rudalics <rudalics@gmx.at>
13476
13477 * keyboard.c (read_char): Fix case where last_nonmenu_event
13478 returned a bad value with submenus. (Bug#447)
13479
13480 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
13481
13482 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
13483 family, clear the font width index too.
13484
13485 2009-01-11 Jason Rumney <jasonr@gnu.org>
13486
13487 * keyboard.c (cmd_error_internal): Exit when errors occur before
13488 frame creation and not in daemon mode. (Bug#1836)
13489
13490 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
13491
13492 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
13493 of a display vector, backtrack.
13494 (try_window_reusing_current_matrix): Check glyph type before
13495 referencing charpos member.
13496
13497 2009-01-10 Eli Zaretskii <eliz@gnu.org>
13498
13499 Fix Bug #876:
13500
13501 * coding.c (inhibit_null_byte_detection): New variable.
13502 (detect_coding, detect_coding_system): Don't pay attention to null
13503 bytes if inhibit_null_byte_detection is non-zero.
13504 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
13505 <inhibit-iso-escape-detection>: Doc fix.
13506
13507 2009-01-09 Jason Rumney <jasonr@gnu.org>
13508
13509 * w32font.c (add_font_entity_to_list): Don't report unknown
13510 Windows charset as any unrecognized registry. (Bug#1548)
13511 Only report Unicode Plane 2 fonts as unicode-sip.
13512
13513 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
13514
13515 * xfaces.c (Fx_font_family_list): Delete function.
13516 Move compatibility version to faces.el.
13517
13518 * font.c (Ffont_family_list): Return a list of strings, not symbols.
13519
13520 2009-01-09 Martin Rudalics <rudalics@gmx.at>
13521
13522 * frame.c (x_set_frame_parameters): Remember requested value for
13523 fullscreen before it's reset by the parameter handler.
13524
13525 2009-01-09 Glenn Morris <rgm@gnu.org>
13526
13527 * keyboard.c (last_command_char): For clarity, rename to...
13528 (last_command_event): ... and update all users.
13529 (last_input_char): For clarity, rename to...
13530 (last_input_event): ... and update all users.
13531 (last-command-char, last-input-char): Move to subr.el as aliases.
13532 * cmds.c, commands.h: Update for last_command_char rename.
13533
13534 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
13535
13536 * font.c (font_open_for_lface): Handle unspecified height attribute.
13537
13538 2009-01-08 Jason Rumney <jasonr@gnu.org>
13539
13540 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
13541 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
13542 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
13543 Don't declare.
13544 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
13545 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
13546
13547 2009-01-07 Kenichi Handa <handa@m17n.org>
13548
13549 * fileio.c (Finsert_file_contents): In the case of replace,
13550 remember the coding system used for decoding in
13551 coding_system (Bug#1039).
13552
13553 * coding.c (decode_coding_utf_8): Check byte_after_cr before
13554 breaking the loop. (Bug#870)
13555 (decode_coding_utf_16, decode_coding_emacs_mule)
13556 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
13557 (decode_coding_charset): Likewise.
13558
13559 2009-01-05 Martin Rudalics <rudalics@gmx.at>
13560
13561 * frame.c (x_set_frame_parameters): Make sure height (width) get
13562 applied when fullwidth (fullheight) is set. (Bug#1522)
13563
13564 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
13565
13566 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
13567 (utc_base): Declare as ULONGLONG, not long double.
13568 (convert_time_raw): Delete.
13569 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
13570 (initialize_utc_base): New function.
13571 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
13572 (convert_from_time_t): Use initialize_utc_base; compute result with
13573 64-bit arithmetic.
13574 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
13575
13576 2009-01-03 Eli Zaretskii <eliz@gnu.org>
13577
13578 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
13579 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
13580 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
13581 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
13582 [!subprocesses]: Define.
13583 (syms_of_process) [!subprocesses]: Intern and staticpro them.
13584 (Flist_system_processes, Fsystem_process_attributes)
13585 [!subprocesses]: Call list_system_processes and
13586 system_process_attributes instead of returning Qnil.
13587
13588 * dosfns.c (system_process_attributes, list_system_processes):
13589 New functions.
13590
13591 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
13592
13593 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
13594 Don't use the default (no-op) implementation.
13595
13596 2009-01-03 Jason Rumney <jasonr@gnu.org>
13597
13598 * keyboard.c (parse_modifiers_uncached): Wheel events are
13599 clicks (bug#687).
13600
13601 * w32term.c (x_query_colors, x_query_color): New functions.
13602
13603 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
13604 (svg_load_image): Cast returned pointers from dynamically loaded
13605 functions. Eliminate W32 specific code.
13606
13607 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
13608
13609 * nsfns.m (x_set_foreground_color, x_set_background_color)
13610 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
13611 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
13612 x_ prefix instead of ns_. Update references.
13613 (syms_of_nsfns): Add a FIXME comment.
13614
13615 * nsterm.m (x_set_cursor_type): New prototype.
13616 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
13617
13618 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
13619 for Solaris instead of incorrectly providing Qutime and Qcutime.
13620
13621 2009-01-02 Eli Zaretskii <eliz@gnu.org>
13622
13623 * w32.c (process_times): Compute sum of utime and stime.
13624 (system_process_attributes): Add Qtime to the alist.
13625
13626 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
13627 and add them to the alist.
13628
13629 * process.c (top level) <Qtime, Qctime>: New variables.
13630 (syms_of_process): staticpro them.
13631 (Fsystem_process_attributes): Add their documentation to the doc
13632 string.
13633
13634 * process.h: Declare Qtime and Qctime.
13635
13636 2009-01-02 Jason Rumney <jasonr@gnu.org>
13637
13638 * image.c (Qgobject): New symbol.
13639 (syms_of_image): Initialize it.
13640 (init_svg_functions): Load some functions from gobject library.
13641
13642 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
13643
13644 * frame.c (make_terminal_frame): Remove redundant code and useless
13645 block.
13646
13647 2009-01-01 Andreas Schwab <schwab@suse.de>
13648
13649 * process.c (conv_sockaddr_to_lisp): Add workaround for
13650 getsockname bug on BSD.
13651
13652 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
13653
13654 * xfns.c (x_create_tip_frame): Set border width of the X window.
13655
13656 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
13657
13658 2009-01-01 Jason Rumney <jasonr@gnu.org>
13659
13660 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
13661 Don't block input, as per earlier xterm.c changes.
13662
13663 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
13664
13665 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
13666 (ns_appkit_version_int): New function.
13667 (x-server-version): Use ns_appkit_version_int and follow 21+
13668 convention of returning 3 integers.
13669
13670 2008-12-30 Kenichi Handa <handa@m17n.org>
13671
13672 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
13673 (CHAR_SURROGATE_PAIR_P): New macro.
13674
13675 * font.h (struct font_driver): New member get_variation_glyphs.
13676
13677 * font.c (font_range): Don't require a font for a variation selector.
13678 (Ffont_variation_glyphs): New function.
13679 (syms_of_font): Defsubr it.
13680
13681 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
13682 ftfont_variation_glyphs.
13683 (setup_otf_gstring): New function.
13684 (ftfont_drive_otf): Use it.
13685 (ftfont_shape_by_flt): Handle variation selector.
13686 (ftfont_variation_glyphs): New function.
13687
13688 2008-12-30 Martin Rudalics <rudalics@gmx.at>
13689
13690 * frame.c (Vemacs_iconified): Remove.
13691
13692 2008-12-30 Jason Rumney <jasonr@gnu.org>
13693
13694 * frame.c (store_frame_param, x_get_arg): Enable newer code on
13695 WINDOWSNT too, as related changes have already been synced. (Bug#117)
13696
13697 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
13698
13699 * indent.c (Fvertical_motion): Don't advance iterator if we have
13700 reseated to the desired position.
13701
13702 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
13703 checking for pos match.
13704
13705 2008-12-30 Kenichi Handa <handa@m17n.org>
13706
13707 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
13708 just get the low 8-bit of the code.
13709
13710 * font.c (font_intern_prop): Validate str as multibyte.
13711
13712 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
13713
13714 * dispextern.h (struct face): Move lface and hash from the middle
13715 of bitfields.
13716
13717 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
13718
13719 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
13720
13721 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
13722 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
13723 instead of intervals.h.
13724
13725 2008-12-26 Andreas Schwab <schwab@suse.de>
13726
13727 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
13728 cons.
13729
13730 2008-12-26 Martin Rudalics <rudalics@gmx.at>
13731
13732 * textprop.c (Qminibuffer_prompt): New variable.
13733 (syms_of_textprop): Initialize it.
13734 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
13735 in minibuffer-prompt face. (Bug#1662)
13736
13737 2008-12-25 Jason Rumney <jasonr@gnu.org>
13738
13739 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
13740
13741 2008-12-24 Jason Rumney <jasonr@gnu.org>
13742
13743 * ralloc.c (r_alloc_reset_variable): New function.
13744
13745 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
13746 record of what points where. (Bug#716)
13747
13748 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
13749
13750 * minibuf.c (read_minibuf): Follow the non-interactive case when
13751 running as a daemon, before detaching.
13752
13753 2008-12-22 Andreas Schwab <schwab@suse.de>
13754
13755 * buffer.c (init_buffer): Use realloc instead of xrealloc.
13756 * gtkutil.c (free_widget_value): Use xfree instead of free.
13757
13758 2008-12-22 Martin Rudalics <rudalics@gmx.at>
13759
13760 * frame.c (delete_frame): New function derived from
13761 Fdelete_frame to handle Qnoelisp value for FORCE argument.
13762 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
13763 (Fdelete_frame): Call delete_frame. Remove line from doc-string
13764 saying that FORCE non-nil doesn't run `delete-frame-functions'.
13765 * frame.h: Extern delete_frame.
13766 * window.c (window_loop):
13767 * terminal.c (delete_terminal):
13768 * xterm.c (x_connection_closed):
13769 * xfns.c (Fx_hide_tip):
13770 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
13771
13772 2008-12-21 Jason Rumney <jasonr@gnu.org>
13773
13774 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
13775 when character maps to .notdef character.
13776
13777 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
13778
13779 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
13780
13781 2008-12-20 Jason Rumney <jasonr@gnu.org>
13782
13783 * frame.c (Fmake_terminal_frame): Raise an error when called from
13784 a graphical frame on Windows. (Bug#1325)
13785
13786 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
13787
13788 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
13789
13790 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
13791
13792 * minibuf.c (Fread_buffer): Doc fix.
13793
13794 2008-12-20 Jason Rumney <jasonr@gnu.org>
13795
13796 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
13797 server name in UNC paths. (Bug#719)
13798
13799 * coding.c (decode_coding): Clear chars_at_source flag when using
13800 charbuf. (Bug#1035)
13801
13802 2008-12-19 Daniel Engeler <engeler@gmail.com>
13803
13804 * sysdep.c (serial_configure): Fix typo.
13805
13806 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
13807
13808 * sysdep.c: Include alloca.h.
13809 (system_process_attributes): Add implementation for Solaris.
13810
13811 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
13812
13813 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
13814
13815 Reorganize implementation of Flist_system_processes and
13816 Fsystem_process_attributes. No functional changes.
13817 * process.c: Don't #include pwd.h, grp.h and limits.h.
13818 (Flist_system_processes): Just call list_system_processes.
13819 (Fsystem_process_attributes): Just call system_process_attributes.
13820 (procfs_list_system_processes, time_from_jiffies)
13821 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
13822 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
13823
13824 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
13825 (list_system_processes): Rename from
13826 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
13827 Provide a do nothing implementation.
13828 (system_process_attributes): Rename from
13829 procfs_list_system_processes.
13830 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
13831 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
13832
13833 * w32.c (list_system_processes): Rename from
13834 w32_list_system_processes.
13835 (system_process_attributes): Rename from
13836 w32_system_process_attributes.
13837
13838 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
13839
13840 * process.h (w32_list_system_processes)
13841 (w32_system_process_attributes): Remove.
13842 (list_system_processes, system_process_attributes):
13843 New prototypes.
13844
13845 2008-12-19 Kenichi Handa <handa@m17n.org>
13846
13847 * xfont.c (xfont_decode_coding_xlfd): New function.
13848 (xfont_encode_coding_xlfd): New function.
13849 (xfont_list_pattern): Decode XLFD by iso-8859-1.
13850 (xfont_list): Decode and encode XLFD by iso-8859-1.
13851 (xfont_match): Likewise.
13852 (xfont_list_family): Likewise.
13853 (xfont_open): Likewise.
13854
13855 * ftfont.c (ftfont_open): Generate a multibyte string if given
13856 names are utf-8.
13857
13858 * xftfont.c (xftfont_open): Generate a multibyte string if given
13859 names are utf-8.
13860
13861 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
13862
13863 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
13864 changed.
13865 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
13866 clicked on a detached tool bar button.
13867
13868 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
13869
13870 * emacs.c (main): Print and error and exit when no data is read
13871 from the pipe.
13872
13873 2008-12-17 Jason Rumney <jasonr@gnu.org>
13874
13875 * w32font.c (w32font_has_char): Always return -1.
13876
13877 2008-12-16 Kenichi Handa <handa@m17n.org>
13878
13879 * font.c (font_open_entity): Fix previous change.
13880
13881 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
13882
13883 * process.c: Include <limits.h>.
13884
13885 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
13886
13887 * font.c (font_update_drivers): Fix mistake in reconstructing the
13888 driver list.
13889
13890 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
13891
13892 * font.c (font_clear_cache): Fix format of font cache data.
13893
13894 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
13895
13896 * xftfont.c (xftfont_open): Free Xft font pattern if
13897 XftFontOpenPattern fails.
13898
13899 * xterm.c (x_free_frame_resources): Remove extraneous call to
13900 free_frame_faces.
13901
13902 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
13903
13904 * xterm.c (x_delete_display): Move xim_close_dpy call to
13905 x_delete_terminal.
13906 (x_delete_terminal): Call xim_close_dpy.
13907
13908 2008-12-13 Jason Rumney <jasonr@gnu.org>
13909
13910 * w32font.c (intern_font_name): New function.
13911 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
13912 (w32font_open_internal, Fx_select_font): Decode font name.
13913 (fill_in_logfont, list_all_matching_fonts): Encode font name.
13914
13915 * w32font.h (intern_font_name): Declare new function.
13916
13917 * w32uniscribe.c (add_opentype_font_name_to_list):
13918 Use intern_font_name.
13919
13920 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
13921
13922 * frame.c (Fdelete_frame): Call free_font_driver_list.
13923
13924 * font.c (free_font_driver_list): Implement missing function.
13925
13926 * w32term.c (w32_term_init): Don't initialize the image cache
13927 here; it will be done in init_frame_faces.
13928
13929 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
13930 (struct x_display_info): Remove unused member null_pixel.
13931 New member xim_callback_data.
13932
13933 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
13934 (xim_initialize): Save pointer to callback function data.
13935 (xim_close_dpy): Free callback function data. Call XCloseIM,
13936 reverting 2008-11-04 change by David Smith.
13937 (x_term_init): Don't initialize the image cache here; it will be
13938 done in init_frame_faces. Remove ancient "null_pixel" cruft.
13939 (x_delete_display): Free x_dnd_atoms member.
13940
13941 2008-12-13 Kenichi Handa <handa@m17n.org>
13942
13943 * font.c (font_rescale_ratio): Move from xfaces.c.
13944 Argument type changed. Handle a font-spec too.
13945 (font_score): Check Vface_font_rescale_alist.
13946 (font_open_entity): Likewise. (Bug#1547)
13947
13948 * xfaces.c (font_rescale_ratio): Move to font.c.
13949
13950 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
13951
13952 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
13953
13954 2008-12-12 Jason Rumney <jasonr@gnu.org>
13955
13956 * w32fns.c (x_display_info_for_name, Fx_open_connection):
13957 Set Vwindow_system_version to the real w32 major version.
13958
13959 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
13960
13961 * term.c (init_tty): Move setting the terminal name before the
13962 potential user: maybe_fatal.
13963
13964 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
13965
13966 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
13967 all callers changed. Call free_frame_faces to free the face cache.
13968
13969 2008-12-11 Jason Rumney <jasonr@gnu.org>
13970
13971 * w32font.c (fill_in_logfont): Don't assume symbol script means
13972 SYMBOL_CHARSET. (Bug#547)
13973
13974 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
13975 size for surrogates. (Bug#1096, bug#872)
13976
13977 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
13978
13979 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
13980
13981 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
13982
13983 * process.c (Fsystem_process_attributes, syms_of_process):
13984 Fix typo in name of Ssystem_process_attributes.
13985 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
13986
13987 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
13988
13989 * syntax.c (Fmodify_syntax_entry): Doc fix.
13990
13991 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
13992
13993 * font.c (Ffont_spec): Move usage to end of docstring.
13994
13995 2008-12-10 Jason Rumney <jasonr@gnu.org>
13996
13997 * w32font.c (Qcham): New symbol.
13998 (font_supported_scripts): Add cham, and comments for other new
13999 scripts in bitfield from OpenType spec.
14000 (add_font_entity_to_list): Limit unicode-sip fonts to those that
14001 contain characters beyond the bmp.
14002
14003 2008-12-10 Kenichi Handa <handa@m17n.org>
14004
14005 * ftfont.c (fc_charset_table): Add "unicode-sip".
14006 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
14007 Qunicode_sip.
14008
14009 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
14010
14011 * coding.c (QCdefault_char): Rename from QCdefalut_char.
14012 (Fcoding_system_put): Use QCdefault_char.
14013 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
14014
14015 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
14016
14017 * xftfont.c (syms_of_xftfont): Fix typo.
14018
14019 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
14020
14021 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
14022
14023 * emacs.c (main): Close daemon_pipe on exec.
14024
14025 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
14026
14027 * termchar.h (struct tty): New members termcap_term_buffer and
14028 termcap_strings_buffer.
14029
14030 * term.c (encode_terminal_code): Free any previous memory blocks
14031 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
14032 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
14033 All callers changed.
14034 (init_tty): Store termcap data and string buffers in new struct
14035 tty members termcap_term_buffer and termcap_strings_buffer.
14036 (delete_tty): Free them.
14037 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
14038
14039 2008-12-07 Seiji Zenitani <zenitani@mac.com>
14040
14041 * nsfns.m (ns_set_background_color): Remove code duplication.
14042 It was a substitute for face-transparency on OS X 10.3.
14043
14044 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
14045
14046 * coding.c (make_conversion_work_buffer): Disable buffer
14047 modification hooks in the work buffer.
14048
14049 2008-12-05 Eli Zaretskii <eliz@gnu.org>
14050
14051 * process.c (procfs_system_process_attributes): If `nread' has a
14052 negative value, assign zero to it.
14053
14054 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
14055
14056 * eval.c (Vdebug_on_error): Doc fix.
14057
14058 2008-12-05 Kenichi Handa <handa@m17n.org>
14059
14060 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
14061 second character is a combining character.
14062
14063 2008-12-05 Eli Zaretskii <eliz@gnu.org>
14064
14065 * process.c (procfs_system_process_attributes): Don't use cmd,
14066 cmdsize, and q without initializing them first.
14067
14068 2008-12-04 Jason Rumney <jasonr@gnu.org>
14069
14070 * w32font.c (w32font_draw): Initialize orig_clip before getting
14071 it, and delete it when finished.
14072
14073 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
14074
14075 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
14076 case when running as a daemon before detaching.
14077
14078 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
14079
14080 * w32.c (init_environment): Don't unload library shell32.dll.
14081
14082 2008-12-03 Kenichi Handa <handa@m17n.org>
14083
14084 * font.c (font_at): Set `multibyte' at first.
14085
14086 * coding.c (decode_coding_charset): Check type of an element of
14087 vector VALIDS.
14088 (encode_coding_emacs_mule): Be sure to set `code'.
14089
14090 * fontset.c (face_for_char): Handle invalid charset property correctly.
14091 (font_for_char): Likewise.
14092
14093 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
14094
14095 * font.c (Fopen_font): Compute pixel size correctly.
14096 (font_update_lface): Handle fonts with corrupted size specs,
14097 i.e. non-int and non-float.
14098
14099 * ftfont.c (ftfont_match): Initialize entity variable.
14100 (ftfont_resolve_generic_family): Avoid using uninitialized var.
14101 (ftfont_list_family): Initialize list var earlier.
14102
14103 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
14104
14105 * xterm.c (x_draw_glyph_string): Fall back on
14106 underline_minimum_offset for underline position.
14107
14108 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
14109
14110 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
14111
14112 * character.c (c_string_width): Specify the type for LEN.
14113
14114 2008-12-03 Kenichi Handa <handa@m17n.org>
14115
14116 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
14117 (decode_coding_utf_8): Likewise.
14118 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
14119 (produce_chars): Initialize consumed_chars to 0.
14120
14121 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
14122
14123 * keyboard.c (make_lispy_position): Only use PT if the selected
14124 window is current.
14125
14126 2008-12-02 Andreas Schwab <schwab@suse.de>
14127
14128 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
14129
14130 * doprnt.c (doprnt1): Fix size of charbuf.
14131
14132 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
14133
14134 * keyboard.c (timer_check): Revert last change.
14135
14136 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
14137
14138 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
14139
14140 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
14141
14142 * makefile.w32-in: Update dependencies.
14143 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
14144
14145 2008-12-01 Andreas Schwab <schwab@suse.de>
14146
14147 * font.c (register_font_driver): Use xmalloc.
14148 (font_put_frame_data): Likewise.
14149
14150 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
14151
14152 * xfaces.c (realize_x_face): Make abort condition clearer.
14153
14154 * gtkutil.c (update_frame_tool_bar): Initialize variable.
14155
14156 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
14157
14158 * keyboard.c (timer_check): After a timer runs, ensure that the
14159 selected window's buffer is current.
14160
14161 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
14162
14163 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
14164 It was accidentally restored by the Unicode merge.
14165
14166 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
14167
14168 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
14169
14170 * w32proc.c: Include "coding.h".
14171 (Fw32_short_file_name): Encode filename passed to Windows API.
14172 (Fw32_long_file_name): Encode filename passed to Windows API and
14173 decode back the result. (Bug#1433)
14174
14175 2008-11-29 Kenichi Handa <handa@m17n.org>
14176
14177 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
14178 not before accessing it.
14179
14180 * charset.c (Fdefine_charset_internal): After calculating
14181 min_char, max_char, and fastmap, copy the charset structure again.
14182 (encode_char): Fix the previous change.
14183
14184 2008-11-28 Seiji Zenitani <zenitani@mac.com>
14185
14186 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
14187
14188 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
14189
14190 * nsterm.m (x_set_frame_alpha): New function.
14191
14192 2008-11-27 Eli Zaretskii <eliz@gnu.org>
14193
14194 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
14195
14196 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
14197
14198 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
14199 pointer to check_face_name.
14200
14201 2008-11-27 Kenichi Handa <handa@m17n.org>
14202
14203 * category.h (SET_CATEGORY_SET): Call set_category_set.
14204 (set_category_set): Extern it.
14205
14206 * category.c (hash_get_category_set): New function.
14207 (Fmodify_category_entry): Adjust for the change of
14208 char_table_ref_and_range. Call hash_get_category_set to get a
14209 category set to store in the table.
14210
14211 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
14212 Funify_charset.
14213
14214 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
14215 (DECODE_CHAR): Check if the decoder vector is ready.
14216 (ENCODE_CHAR): Check if the encoder char-table is ready.
14217 (maybe_unify_char): Extern it.
14218
14219 * charset.c (Vchar_unified_charset_table): Delete it.
14220 (inhibit_load_charset_map): New variable.
14221 (temp_charset_work): New variable.
14222 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
14223 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
14224 New macros.
14225 (load_charset_map): Meaning of control_flag changed.
14226 If inhibit_load_charset_map is nonzero, setup a table in
14227 temp_charset_work.
14228 (load_charset): New argument control_flag.
14229 (map_charset_for_dump): New function.
14230 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
14231 map_charset_for_dump.
14232 (Fdefine_charset_internal): If the charset method is MAP, load
14233 mapping tables by calling load_charset.
14234 (Funify_charset): Don't load a mapping table but directly set
14235 Vchar_unify_table.
14236 (maybe_unify_char): New function.
14237 (decode_char): Don't handle the deleted method MAP_DEFERRED.
14238 Handle the case of inhibit_load_charset_map being nonzero.
14239 (encode_char): Don't handle the deleted method MAP_DEFERRED.
14240 Handle the case of inhibit_load_charset_map being nonzero.
14241 (Fclear_charset_maps): Just free temp_charset_work.
14242 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
14243 variable.
14244
14245 * chartab.c (sub_char_table_ref_and_range): Adjust for the
14246 change of char_table_ref_and_range.
14247 (char_table_ref_and_range): Change the meaning of argument FROM
14248 and TO. Now the caller must provide initial values for *FROM
14249 and *TO.
14250
14251 * fontset.c (fontset_add): Adjust for the change of
14252 char_table_ref_and_range.
14253 (fontset_get_font_group): Likewise.
14254 (Ffontset_info): Likewise.
14255
14256 * keymap.c (describe_vector): Adjust for the change of
14257 char_table_ref_and_range. For char-table, put boundary between
14258 non-ASCII and 8-bit characters.
14259
14260 * print.c (print_object): For bool-vector, delete unnecessary
14261 check of ASCII_BYTE_P.
14262
14263 2008-11-26 Jason Rumney <jasonr@gnu.org>
14264
14265 * w32font.c (w32font_open_internal): Don't include external
14266 leading in font height. (Bug#879)
14267
14268 2008-11-26 Glenn Morris <rgm@gnu.org>
14269
14270 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
14271 redefinition with ifdef. (Bug#1383)
14272
14273 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14274
14275 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
14276
14277 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
14278
14279 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
14280 New EmacsView methods.
14281 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
14282 Fixes bug #1048,1357,1414.
14283
14284 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14285
14286 Fix bug #1362.
14287 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
14288 is not an indexed color.
14289 * nsterm.m (free_indexed_color): Add argument checking.
14290 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
14291
14292 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
14293
14294 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
14295 Document confirm-after-completion value for
14296 minibuffer-completion-confirm.
14297
14298 2008-11-24 Jason Rumney <jasonr@gnu.org>
14299
14300 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
14301 warning.
14302
14303 2008-11-23 Jason Rumney <jasonr@gnu.org>
14304
14305 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
14306 restored before returning.
14307
14308 * w32font.c (check_face_name): New function.
14309 (add_font_entity_to_list): Use it to filter out common substituted
14310 fonts. (Bug#642)
14311
14312 2008-11-22 Martin Rudalics <rudalics@gmx.at>
14313
14314 * buffer.c (Fswitch_to_buffer): Reword and mention new option
14315 confirm-nonexistent-file-or-buffer in doc-string.
14316
14317 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14318
14319 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
14320 Fix copy/paste typo. Add checks.
14321
14322 2008-11-21 Kenichi Handa <handa@m17n.org>
14323
14324 * coding.c (detect_coding_iso_2022): Reject invalid composition
14325 sequence.
14326 (DECODE_COMPOSITION_START): If the current source is the last
14327 block, and the current composition doesn't end, regard this
14328 sequence as invalid.
14329 (decode_coding_iso_2022): Handle invalid composition sequence.
14330
14331 2008-11-20 Martin Rudalics <rudalics@gmx.at>
14332
14333 * window.c (coordinates_in_window): Don't return
14334 ON_VERTICAL_BORDER for the rightmost position of a mode/header
14335 line when the window is not the rightmost one. (Bug#1372)
14336
14337 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
14338
14339 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
14340
14341 2008-11-15 Eli Zaretskii <eliz@gnu.org>
14342
14343 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
14344 and bright_bg if noninteractive is non-zero.
14345
14346 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14347
14348 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
14349 x_draw_glyph_string_background.
14350
14351 * w32term.c (x_draw_glyph_string): Likewise.
14352
14353 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
14354
14355 * xterm.c (x_draw_glyph_string): Stop drawing the background of
14356 the next glyph string once past the overhang width.
14357
14358 * nsterm.m (ns_draw_glyph_string): Likewise.
14359
14360 * w32term.c (x_draw_glyph_string): Likewise.
14361
14362 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14363
14364 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
14365 double file close.
14366
14367 2008-11-14 Martin Rudalics <rudalics@gmx.at>
14368
14369 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
14370 dedicated status of window before attempting to display another
14371 buffer in it.
14372
14373 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
14374
14375 * msdos.c (Fmsdos_long_file_names):
14376 (syms_of_msdos) <dos-unsupported-char-glyph>:
14377 * dosfns.c (Fint86): Fix typos in docstrings.
14378
14379 2008-11-14 Eli Zaretskii <eliz@gnu.org>
14380
14381 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
14382
14383 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
14384
14385 * puresize.h (BASE_PURESIZE): Increase to 1260000.
14386
14387 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
14388
14389 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
14390
14391 * frame.h: Negative alpha means "don't touch".
14392
14393 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
14394
14395 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
14396
14397 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14398
14399 * hftctl.c:
14400 * chpdef.h:
14401 * acldef.h: Remove files used only for systems no longer supported.
14402
14403 * Makefile.in: Fix .o alphabetical ordering.
14404 (hftctl.o): Remove dependency, file removed.
14405 (keymap.o, print.o): Depend on charset.h.
14406
14407 2008-11-10 Kenichi Handa <handa@m17n.org>
14408
14409 * character.c (Fget_byte): Fix and make it faster for unibyte target.
14410
14411 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
14412
14413 * dired.c (file_name_completion): If completion_ignore_case is
14414 enabled, ignore case when checking completion-regexp-list.
14415
14416 2008-11-08 Eli Zaretskii <eliz@gnu.org>
14417
14418 * vm-limit.c (get_lim_data): Fix last change.
14419
14420 2008-11-08 Kenichi Handa <handa@m17n.org>
14421
14422 * character.c (Fget_byte): New function.
14423 (syms_of_character): Defsubr Fget_byte.
14424
14425 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
14426
14427 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
14428 cursor position is valid after scrolling.
14429
14430 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
14431
14432 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
14433
14434 2008-11-06 Glenn Morris <rgm@gnu.org>
14435
14436 * xterm.c (handle_one_xevent): Don't let popup menus cause
14437 mouse-autoselect-window related window switching. (Bug#1261)
14438
14439 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
14440
14441 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
14442
14443 2008-11-04 Andreas Schwab <schwab@suse.de>
14444
14445 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
14446
14447 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
14448
14449 * xfns.c (Fx_wm_set_size_hint): New function.
14450
14451 2008-11-03 Martin Rudalics <rudalics@gmx.at>
14452
14453 * textprop.c (Fprevious_single_char_property_change): Return 0
14454 when there's no change in a string. (Bug#1301)
14455
14456 2008-11-02 Martin Rudalics <rudalics@gmx.at>
14457
14458 * frame.c (do_switch_frame): New argument NORECORD passed to
14459 Fselect_window.
14460 (Fselect_frame): New argument NORECORD passed to
14461 do_switch_frame.
14462 (Fset_frame_selected_window): New argument NORECORD passed to
14463 Fselect_frame.
14464 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
14465 in call of do_switch_frame.
14466 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
14467 Handle NORECORD argument in call of Fselect_frame.
14468 * lisp.h (do_switch_frame, Fselect_frame)
14469 (Fset_frame_selected_window): Adjust declarations.
14470 * window.c (select_frame_norecord): New function.
14471 (run_window_configuration_change_hook): Use it and call
14472 Fselect_frame with NORECORD set.
14473 (Fselect_window): Pass NORECORD to Fselect_frame.
14474 (Fset_window_configuration): Handle NORECORD argument in call of
14475 do_switch_frame.
14476 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
14477 Fset_frame_selected_window.
14478 * keyboard.c (command_loop_1): Handle NORECORD in call of
14479 Fselect_frame (currently ifdefd).
14480
14481 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
14482
14483 * emacs.c (USAGE2): Untabify.
14484
14485 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
14486
14487 * composite.c (fill_gstring_header): Fix copy/paste typo.
14488
14489 2008-10-31 Martin Rudalics <rudalics@gmx.at>
14490
14491 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
14492 (Fother_window): Rename argument and rewrite doc-string.
14493 (select_window_norecord): Fix return value. (Bug#1276)
14494
14495 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
14496
14497 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
14498 new frames overriding foreground for tooltips. Based on similar patch
14499 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
14500
14501 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
14502
14503 * emacs.c (Fdaemon_initialized): Initialize nfd.
14504
14505 2008-10-29 Martin Rudalics <rudalics@gmx.at>
14506
14507 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
14508 (Fwindow_text_height): Clarify doc-strings.
14509 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
14510 doc-string of window-scroll-functions.
14511
14512 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
14513
14514 * category.c (syms_of_category): Fix typo in docstring.
14515
14516 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
14517
14518 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
14519 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
14520 Fix typos in docstrings.
14521
14522 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14523
14524 * emacs.c (daemon_pipe): Make non-static.
14525 (IS_DAEMON): Move definition ...
14526 * lisp.h (IS_DAEMON): ... here.
14527 (daemon_pipe): Declare.
14528 (is_daemon): Remove.
14529 * dispnew.c (init_display): Use IS_DAEMON.
14530
14531 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14532
14533 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
14534 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
14535
14536 * emacs.c (is_daemon): Remove.
14537 (main): Don't set is_daemon.
14538 (IS_DAEMON): New macro.
14539 (Fdaemonp, Fdaemon_initialized): Use it.
14540 (Fdaemon_initialized): Write a char into the pipe to make sure the
14541 parent exits.
14542 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
14543
14544 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
14545
14546 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
14547 over-sized glyph, draw it with the default glyph width.
14548
14549 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
14550 glyph, draw it with the default glyph width.
14551
14552 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
14553 glyph, draw it with the default glyph width.
14554
14555 * xdisp.c (try_scrolling): When computing the distance from the
14556 scroll margin to PT, try moving some distance past the window
14557 bottom before giving up.
14558
14559 2008-10-27 Martin Rudalics <rudalics@gmx.at>
14560
14561 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
14562 (Fset_window_buffer): Explain in doc-string that a window can be
14563 "strongly" dedicated to its buffer.
14564
14565 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
14566
14567 * emacs.c (daemon_name): New variable.
14568 (main): Deal with --daemon=SERVER_NAME.
14569 (Fdaemonp): Return a name if one was passed to --daemon.
14570
14571 2008-10-26 Romain Francoise <romain@orebokech.com>
14572
14573 * emacs.c (daemon_pipe): New variable.
14574 (main): Create a pipe before forking, make the parent exit only after
14575 the child has closed its end of the pipe. Move closing the
14576 descriptors ...
14577 (Fdaemon_initialized): ... here. New function.
14578
14579 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
14580
14581 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
14582 the previous unoptimized table.
14583
14584 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
14585 the distinction between non-nil and non-t value of `dedicated'.
14586
14587 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
14588
14589 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
14590 read_char_minibuf_menu_text is large enough to hold the menu string.
14591
14592 2008-10-25 Martin Rudalics <rudalics@gmx.at>
14593
14594 * window.c (Fget_buffer_window, Fdelete_windows_on)
14595 (Freplace_buffer_in_windows): Make buffer argument optional and
14596 rename to buffer_or_name.
14597
14598 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
14599
14600 * xdisp.c (handle_single_display_spec, handle_display_prop):
14601 Undo 2005-05-16 change.
14602 (handle_stop): Pop iterator if it's loaded with an empty string.
14603 (get_overlay_strings_1): Don't save iterator if it's loaded with
14604 an empty string (bug#1201).
14605
14606 2008-10-24 Kenichi Handa <handa@m17n.org>
14607
14608 * ftfont.c (ftfont_otf_features): Fix previous change.
14609 (ftfont_otf_capability): Check FeatureList.FeatureCount before
14610 calling ftfont_otf_features.
14611
14612 2008-10-24 Kenichi Handa <handa@m17n.org>
14613
14614 * font.c (font_match_p): Fix for the case that a vector of
14615 characters is in script-representative-chars.
14616
14617 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
14618
14619 * dbusbind.c (xd_in_read_queued_messages): New variable.
14620 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
14621 (xd_read_queued_messages): Catch Qdbus_error from the macros.
14622 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
14623 macro. (Bug#1186)
14624
14625 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
14626
14627 * s/sol2-10.h: New file.
14628
14629 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
14630
14631 * xdisp.c (fill_glyph_string): Fix typo in source (though the
14632 poor beast has survived 9+ years and the jump from xterm.c!).
14633
14634 2008-10-23 Martin Rudalics <rudalics@gmx.at>
14635
14636 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
14637 Reword doc-string.
14638 (Fbury_buffer): In doc-string say what happens to the buffer's window.
14639
14640 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
14641
14642 * character.c (syms_of_character) <script-representative-chars>:
14643 <unicode-category-table>: Doc fixes.
14644
14645 2008-10-23 Noah Friedman <friedman@splode.com>
14646
14647 * coding.c (make_conversion_work_buffer): Check that
14648 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
14649 Fget_buffer_create.
14650
14651 2008-10-23 Kenichi Handa <handa@m17n.org>
14652
14653 * font.c (font_add_log): Check the values of extra properties.
14654
14655 2008-10-22 Martin Rudalics <rudalics@gmx.at>
14656
14657 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
14658 Reword doc-string.
14659 (Fset_window_parameter): Use NILP.
14660 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
14661 (Frecenter): Use "selected" instead of "current" window in doc-strings.
14662
14663 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
14664
14665 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
14666
14667 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
14668
14669 * nsfns.m (ns_appkit_version): New function.
14670 (x-server-version): Use it.
14671 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
14672 (x-server-vendor): Don't check_ns().
14673
14674 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
14675
14676 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
14677
14678 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
14679 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
14680
14681 2008-10-22 Kenichi Handa <handa@m17n.org>
14682
14683 * syntax.c (scan_words): Call word_boundary_p instead of comparing
14684 scripts.
14685
14686 * category.c (word_boundary_p): Check scripts instead of charset.
14687 Handle nil value in word-separating-categories and
14688 word-combining-categories.
14689 (syms_of_category): Fix docstrings of word-separating-categories
14690 and word-combining-categories.
14691
14692 2008-10-21 Eli Zaretskii <eliz@gnu.org>
14693
14694 * coding.c (Fencode_coding_region, Fdecode_coding_region)
14695 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
14696
14697 2008-10-21 Martin Rudalics <rudalics@gmx.at>
14698
14699 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
14700 Rename arg "buffer" to "buffer_or_name".
14701 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
14702 it optional.
14703 (no_switch_window): Remove since the return value is not used.
14704 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
14705 Consider window as dedicated when Fwindow_dedicated_p returns a
14706 non-nil value.
14707 * lisp.h: Remove prototype for no_switch_window.
14708
14709 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
14710
14711 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
14712 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
14713
14714 2008-10-21 Kenichi Handa <handa@m17n.org>
14715
14716 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
14717 check Vlatin_extra_code_table.
14718
14719 2008-10-20 Eli Zaretskii <eliz@gnu.org>
14720
14721 * fileio.c (Fset_file_modes): Doc fix.
14722
14723 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
14724
14725 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
14726 in arrays.
14727
14728 2008-10-19 Martin Rudalics <rudalics@gmx.at>
14729
14730 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
14731 Mention kill-buffer in doc-string.
14732 (Fset_window_buffer): Reinsert tem check removed in last commit.
14733 (Fenlarge_window, Fshrink_window): Have argument names and
14734 doc-string follow Elisp manual more closely.
14735
14736 2008-10-18 Eli Zaretskii <eliz@gnu.org>
14737
14738 * fileio.c (Fset_file_modes): Doc fix.
14739
14740 2008-10-18 Martin Rudalics <rudalics@gmx.at>
14741
14742 * window.c (Fwindow_width, Fset_window_start)
14743 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
14744 (Fdelete_windows_on, Freplace_buffer_in_windows):
14745 Make doc-strings follow code and Elisp manual more closely.
14746 (Fwindow_dedicated_p): Make window argument optional.
14747 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
14748 (Fset_window_buffer): Respect any non-nil dedicated value for
14749 window. Rename "buffer" argument to "buffer_or_name".
14750
14751 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
14752
14753 * m/sh3.h: New file, machine description for SuperH.
14754
14755 2008-10-17 Martin Rudalics <rudalics@gmx.at>
14756
14757 * window.c (Fsplit_window): Rename arg horflag to horizontal.
14758
14759 2008-10-17 Kenichi Handa <handa@m17n.org>
14760
14761 * ftfont.c (ftfont_otf_features): Fix indexing
14762 gsub_gpos->FeatureList.Feature. Check the validity of indices.
14763
14764 2008-10-16 Magnus Henoch <mange@freemail.hu>
14765
14766 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
14767 (Fdbus_call_method_asynchronously): Ditto.
14768 This change makes C-h f display the argument list.
14769
14770 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
14771
14772 * fileio.c (Fexpand_file_name): Doc fix.
14773
14774 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
14775 of :foreground and :background equivalent to unspecified (20.x
14776 compatibility).
14777
14778 2008-10-15 Eli Zaretskii <eliz@gnu.org>
14779
14780 * buffer.c (syms_of_buffer): Doc fix.
14781
14782 2008-10-14 Kenichi Handa <handa@m17n.org>
14783
14784 * font.c (font_clear_prop): When clearing font width, clear the
14785 average width field too.
14786
14787 2008-10-12 Andreas Schwab <schwab@suse.de>
14788
14789 * ftfont.c (ftfont_shape_by_flt): Make static.
14790 * ftfont.h (ftfont_shape_by_flt): Don't declare.
14791
14792 * font.c: Don't include <m17n-flt.h>.
14793
14794 2008-10-10 Eli Zaretskii <eliz@gnu.org>
14795
14796 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
14797
14798 2008-10-09 Eli Zaretskii <eliz@gnu.org>
14799
14800 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
14801 away code.
14802
14803 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
14804
14805 * dispnew.c (update_text_area): Avoid looping due to large glyph
14806 overhangs (bug#1070).
14807
14808 2008-10-09 Kenichi Handa <handa@m17n.org>
14809
14810 * fontset.c (face_for_char): If face->fontset is negative, just
14811 return ascii_face.
14812
14813 * font.c (font_delete_unmatched): Fix previous change.
14814 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
14815
14816 2008-10-09 Martin Rudalics <rudalics@gmx.at>
14817
14818 * frame.c (Fraise_frame): On text-only terminals select frame in
14819 order to make it visible. (Bug#1061)
14820
14821 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
14822
14823 * fontset.c (fontset_find_font): Check frame validity.
14824
14825 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
14826
14827 * gtkutil.c (xg_display_open): Reset default display if none exists.
14828 (xg_display_close): Allow Emacs to close all displays (bug#985).
14829
14830 2008-10-06 Andreas Schwab <schwab@suse.de>
14831
14832 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
14833
14834 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
14835
14836 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
14837
14838 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
14839
14840 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
14841 during initialization.
14842
14843 2008-10-04 Eli Zaretskii <eliz@gnu.org>
14844
14845 * xdisp.c (redisplay_internal): If frame switched, redisplay the
14846 whole thing on MSDOS frames as well as on a TTY.
14847
14848 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
14849 well as for TTY.
14850 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
14851 well as on a TTY.
14852
14853 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
14854 as well as for TTY.
14855
14856 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
14857
14858 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
14859 MSDOS frames as well.
14860
14861 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
14862
14863 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
14864 correct arguments.
14865 * menu.c (find_and_return_menu_selection): Add cast.
14866
14867 2008-10-03 Glenn Morris <rgm@gnu.org>
14868
14869 * emacs.c (USAGE1): Add --daemon.
14870
14871 2008-10-02 Eli Zaretskii <eliz@gnu.org>
14872
14873 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
14874 100, so it's in percents as advertised.
14875
14876 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
14877
14878 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
14879 (ns_output.current_cursor, ns_output.desired_cursor)
14880 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
14881 (FRAME_NEW_CURSOR_COLOR): Remove.
14882
14883 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
14884 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
14885 enumeration (HOLLOW_BOX_CURSOR, etc.).
14886
14887 * nsterm.m (ns_frame_rehighlight): Remove commented code.
14888 (draw_window_cursor): Simplify code.
14889 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
14890 Don't change cursor type. In latter, call rehighlight instead of doing
14891 updates manually.
14892 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
14893 Use core Emacs cursor types.
14894
14895 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
14896
14897 2008-10-02 Martin Rudalics <rudalics@gmx.at>
14898
14899 * process.c (Faccept_process_output): Fix doc-string.
14900
14901 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
14902
14903 * gmalloc.c (__sbrk): Also define for uClibc.
14904
14905 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
14906 for uClibc.
14907
14908 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14909
14910 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
14911 styles.
14912 (nsfont_open): Reenable the cache.
14913
14914 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14915
14916 * font.c (font_matching_entity): Reflect ATTRS in font selection.
14917 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
14918
14919 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
14920
14921 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
14922 a suspended terminal.
14923
14924 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
14925
14926 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
14927
14928 2008-09-30 Eli Zaretskii <eliz@gnu.org>
14929
14930 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
14931
14932 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
14933
14934 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
14935 in a continued line coincides with a line beginning.
14936
14937 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14938
14939 * nsfont.m (nsfont_trait_distance): Fix bug.
14940 (nsfont_list): Return a list rather than a vector (syncs with Handa
14941 changes of 2008-05-14).
14942 (nsfont_open): Improve logging.
14943
14944 2008-09-29 Andreas Schwab <schwab@suse.de>
14945
14946 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
14947
14948 2008-09-28 Martin Rudalics <rudalics@gmx.at>
14949
14950 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
14951 name as char-resolve-modifiers.
14952 Reported by: Markus Triska <markus.triska@gmx.at>
14953
14954 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
14955
14956 * dispnew.c (init_display): Return earlier when running as a daemon.
14957
14958 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
14959
14960 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
14961
14962 2008-09-27 Eli Zaretskii <eliz@gnu.org>
14963
14964 * composite.c (Fcomposition_get_gstring)
14965 (Fcompose_region_internal, Fcompose_string_internal)
14966 (Ffind_composition_internal): Doc fix.
14967 (syms_of_composite) <compose-chars-after-function>: Doc fix.
14968 (syms_of_composite) <auto-composition-function>: Doc fix.
14969 (syms_of_composite) <composition-function-table>: Doc fix.
14970
14971 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
14972
14973 * search.c (wordify): New argument for lax word-ends.
14974 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
14975
14976 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
14977
14978 * lisp.h (is_daemon): Declare.
14979 * dispnew.c (init_display): Do not try to initialize the terminal
14980 when running as a daemon.
14981
14982 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
14983
14984 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
14985 x_display_pixel_height.
14986
14987 2008-09-22 Martin Rudalics <rudalics@gmx.at>
14988
14989 * undo.c (record_point): Don't call Fundo_boundary for first
14990 change. (Bug#731)
14991
14992 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
14993
14994 * emacs.c (Fdaemonp): Doc fix.
14995
14996 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
14997
14998 * emacs.c (main): Place #ifdef in the proper place.
14999
15000 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15001
15002 * emacs.c (standard_args): Add --daemon.
15003 (main): Disconnect from the terminal when --daemon is passed.
15004 (is_daemon): New variable.
15005 (Fdaemonp): New function.
15006 (syms_of_emacs): Defsubr it.
15007
15008 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
15009
15010 * xdisp.c (get_next_display_element): Handle string display
15011 correctly when checking for the end of a box run.
15012
15013 2008-09-20 Glenn Morris <rgm@gnu.org>
15014
15015 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
15016 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
15017 (Frename_file): Avoid copying to trash if a rename involves
15018 a delete. (Bug#964).
15019
15020 2008-09-20 Eli Zaretskii <eliz@gnu.org>
15021
15022 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
15023 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
15024 frames as well as termcap frames.
15025 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
15026 get_named_tty.
15027
15028 2008-09-19 Eli Zaretskii <eliz@gnu.org>
15029
15030 * process.c (procfs_system_process_attributes): Fix cmdline in
15031 case /proc/PID/cmdline is empty.
15032
15033 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
15034 x_display_pixel_height.
15035
15036 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
15037
15038 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
15039
15040 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
15041 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
15042
15043 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
15044
15045 * dispextern.h (struct it): Move line_wrap away from the middle of
15046 bitfields. Move voffset in struct iterator_stack_entry after the
15047 bitfields. Move tab_width near after another short.
15048
15049 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
15050
15051 * frame.h (struct frame): Move alpha from the middle of bitfields.
15052
15053 * window.h (struct window): Move frozen_window_start_p after the
15054 rest of the bitfields to reduce padding.
15055
15056 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
15057
15058 * xterm.h (x_display_info): Remove `height' and `width' members.
15059
15060 * nsterm.h (ns_display_info): Remove `height' and `width' members.
15061
15062 * w32term.h (w32_display_info): Remove `height', `width',
15063 `height_in', and `width_in' members.
15064
15065 * xterm.c (x_display_pixel_height, x_display_pixel_width):
15066 New functions.
15067 (x_calc_absolute_position): Use them.
15068 (x_term_init): Omit removed `height' and `width' members.
15069
15070 * w32term.c (x_display_pixel_height, x_display_pixel_width):
15071 New functions.
15072 (w32_read_socket, x_calc_absolute_position): Use them.
15073 (w32_initialize_display_info, w32_term_init): Omit removed members
15074 of w32_display_info.
15075
15076 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
15077 New functions.
15078 (ns_initialize_display_info): Omit removed members of ns_display_info.
15079
15080 * xterm.c (x_display_pixel_height, x_display_pixel_width):
15081 New functions.
15082 (x_calc_absolute_position): Use them.
15083 (x_term_init): Omit removed `height' and `width' members.
15084
15085 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
15086 (compute_tip_xy):
15087 * frame.c (x_fullscreen_adjust):
15088 * xmenu.c (menu_position_func): Use x_display_pixel_height and
15089 x_display_pixel_width.
15090
15091 2008-09-18 Kenichi Handa <handa@m17n.org>
15092
15093 * composite.c (fill_gstring_header): Don't check FROM and TO here.
15094 (composition_compute_stop_pos): Fix handling of static composition.
15095 (Fcomposition_get_gstring): Check FROM and TO at first.
15096
15097 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
15098
15099 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
15100 mixup (YAILOM).
15101
15102 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
15103
15104 * indent.c (Fvertical_motion): Use position reported by iterator
15105 instead of PT for determining screen motion (bug#943).
15106
15107 2008-09-17 Romain Francoise <romain@orebokech.com>
15108
15109 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
15110
15111 2008-09-17 Kenichi Handa <handa@m17n.org>
15112
15113 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
15114
15115 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
15116 if necessary.
15117
15118 2008-09-16 Kenichi Handa <handa@m17n.org>
15119
15120 * coding.c (make_conversion_work_buffer): Avoid calling
15121 Fget_buffer_create if it is not necessary.
15122
15123 2008-09-15 Martin Rudalics <rudalics@gmx.at>
15124
15125 * window.c (Fselect_window): Don't update window_select_count and
15126 use_time when norecord is not nil.
15127
15128 2008-09-14 Kenichi Handa <handa@m17n.org>
15129
15130 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
15131 specpdl_ptr.
15132
15133 2008-09-12 Kenichi Handa <handa@m17n.org>
15134
15135 * indent.c (scan_for_column): Don't handle automatic composition
15136 if the current buffer is not associated with a window.
15137
15138 * composite.c (composition_reseat_it): If the current buffer is
15139 not associated with a window, ignore the automatic composition.
15140 (find_automatic_composition): Likewise.
15141
15142 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15143
15144 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
15145 (Fgpm_mouse_stop): Use it.
15146 * termhooks.h (close_gpm): Declare.
15147 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
15148 connection if Gpm_GetEvent fails.
15149
15150 * window.c (set_window_buffer): Always preserve current-buffer.
15151
15152 2008-09-12 Glenn Morris <rgm@gnu.org>
15153
15154 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
15155
15156 2008-09-11 Glenn Morris <rgm@gnu.org>
15157
15158 * charset.c (charset-map-path): Doc fix.
15159
15160 2008-09-10 Kenichi Handa <handa@m17n.org>
15161
15162 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
15163
15164 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
15165 compose a grapheme cluster with the preceding base glyph.
15166
15167 * composite.c (composition_compute_stop_pos): Fix previous change.
15168 Reset cmp_it->id to -1 at first.
15169
15170 2008-09-10 Glenn Morris <rgm@gnu.org>
15171
15172 * Makefile.in (character.o, chartab.o): Fix config.h typo.
15173
15174 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
15175
15176 * keyboard.c (read_key_sequence): Reapply translation maps when
15177 switching keyboards.
15178
15179 2008-09-09 Kenichi Handa <handa@m17n.org>
15180
15181 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
15182 characters.
15183
15184 * composite.c (FORWARD_CHAR): Fix calculation
15185 of (POSITION).pos_byte.
15186 (composition_compute_stop_pos): Limit the search of composition to
15187 at most 500 characters ahead. If we reach the limit or find a
15188 newline, set cmp_it->ch to -2 and return 0.
15189 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
15190
15191 2008-09-08 Kenichi Handa <handa@m17n.org>
15192
15193 * indent.c (Fvertical_motion): Be sure to set
15194 it_overshoot_expected if it.cmp_it.id is non-negative.
15195
15196 2008-09-07 Andreas Schwab <schwab@suse.de>
15197
15198 * callproc.c (Fcall_process): Don't hold references to string data
15199 across garbage collection. Move initialisation of new_argv down
15200 to avoid compiler bug.
15201
15202 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15203
15204 * process.c (Fsystem_process_attributes): Doc fix.
15205
15206 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
15207
15208 * callproc.c (Fcall_process): Canonicalize current directory name.
15209
15210 * xdisp.c (move_it_to): When moving by vpos, ensure that the
15211 iterator advances to the next line if the current line ends in a
15212 continued tab.
15213
15214 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
15215
15216 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
15217 member to point to cmp_from.
15218
15219 * xdisp.c: Doc fix for references to gidx data member.
15220
15221 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15222
15223 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
15224
15225 2008-09-07 Kenichi Handa <handa@m17n.org>
15226
15227 * composite.c (FORWARD_CHAR): Check STOP after
15228 incrementing (POSITION).pos.
15229
15230 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15231
15232 * process.c (Fsystem_process_attributes): Doc fix.
15233
15234 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
15235
15236 * keyboard.c (Ftop_level): Doc fix.
15237
15238 2008-09-06 Eli Zaretskii <eliz@gnu.org>
15239
15240 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
15241 minibuffer, don't let lower part of menu invade the echo area.
15242
15243 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
15244 "char *q" to access menu text and advance through it. Revert the
15245 change that displayed ">" instead of ASCII character 0x10.
15246
15247 2008-09-05 Eli Zaretskii <eliz@gnu.org>
15248
15249 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
15250 toggle boxes and radio buttons on MS-DOS as well.
15251
15252 2008-09-05 Kenichi Handa <handa@m17n.org>
15253
15254 * composite.c (autocmp_chars): Check lookback count.
15255 (composition_compute_stop_pos): Set cmp_it->lookback.
15256 (composition_reseat_it): Check lookback count.
15257 (struct position_record): New struct.
15258 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
15259 (find_automatic_composition): New function.
15260 (composition_adjust_point): Use find_automatic_composition.
15261
15262 * dispextern.h (struct composition_it): New member lookback.
15263
15264 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
15265
15266 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
15267 if moving by a single line.
15268
15269 2008-09-02 Andreas Schwab <schwab@suse.de>
15270
15271 * xterm.c (x_delete_display): Fix merge error.
15272
15273 * fileio.c (Fexpand_file_name): Remove unused variables.
15274
15275 2008-09-02 Eli Zaretskii <eliz@gnu.org>
15276
15277 * fileio.c (Fexpand_file_name): Copy argument `name' into local
15278 storage on all platforms, not just on DOS_NT.
15279
15280 2008-09-02 Jason Rumney <jasonr@gnu.org>
15281
15282 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
15283 Ensure mouse is not grabbed after menu is finished.
15284
15285 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
15286
15287 * xfaces.c (Finternal_set_alternative_font_family_alist)
15288 (Finternal_set_alternative_font_registry_alist): Properly copy
15289 entire alist structure.
15290
15291 2008-09-01 Kenichi Handa <handa@m17n.org>
15292
15293 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
15294 representative chars of the script is a vector.
15295 (ftfont_list): Handle the case where the representative chars of
15296 the script is a vector.
15297
15298 * character.c (syms_of_character): Docstring of
15299 script-representative-chars fixed.
15300
15301 2008-08-31 Eli Zaretskii <eliz@gnu.org>
15302
15303 * msdos.c (BUILD_CHAR_GLYPH): New macro.
15304 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
15305 the menu. Allocate larger buffer for `text', to account for
15306 possible ^C characters.
15307
15308 2008-08-31 Martin Rudalics <rudalics@gmx.at>
15309
15310 * xdisp.c (prepare_menu_bars): Don't call
15311 Vwindow_size_change_functions with arg Qt.
15312
15313 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
15314
15315 * font.h (font_range):
15316 * fileio.c (report_file_error):
15317 * composite.c (composition_update_it): Yet another int/Lisp_Object
15318 mixup (YAILOM).
15319
15320 2008-08-30 Glenn Morris <rgm@gnu.org>
15321
15322 * data.c (Fmake_variable_frame_local): Doc fix.
15323
15324 * frame.c (Fmodify_frame_parameters): Doc fix.
15325
15326 2008-08-30 Eli Zaretskii <eliz@gnu.org>
15327
15328 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
15329 needed by GetTokenInformation.
15330 (w32_system_process_attributes): Check return values of all system
15331 APIs.
15332
15333 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
15334 only when the state changes.
15335 (IT_update_begin, IT_update_end): Add termscript trace.
15336
15337 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
15338 clipboard is unavailable. Set dst to NULL if it doesn't point to
15339 malloc'ed data.
15340 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
15341 passing random values to xfree.
15342
15343 * dispnew.c (init_display): Set `tty's association in frame's
15344 parameters alist to the name of the terminal device, if that is known.
15345
15346 2008-08-29 Jason Rumney <jasonr@gnu.org>
15347
15348 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
15349
15350 2008-08-29 Eli Zaretskii <eliz@gnu.org>
15351
15352 * composite.c (fill_gstring_body): Avoid compiler warnings.
15353
15354 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
15355 LGLYPH_SET_CODE to avoid compiler warnings.
15356
15357 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
15358
15359 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
15360
15361 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
15362 LGLYPH_SET_CODE.
15363
15364 2008-08-29 Kenichi Handa <handa@m17n.org>
15365
15366 * fileio.c (report_file_error): Don't downcase the first character
15367 of errstring if it is still unibyte.
15368
15369 2008-08-29 Kenichi Handa <handa@m17n.org>
15370
15371 These changes are to re-implement the automatic composition so
15372 that it doesn't use text properties.
15373
15374 * Makefile.in (ftfont.o): Depend on composite.h.
15375 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
15376
15377 * character.h (Vunicode_category_table): Extern it.
15378
15379 * character.c (Vunicode_category_table): New variable.
15380 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
15381
15382 * chartab.c (optimize_sub_char_table): Perform more greedy
15383 optimization.
15384
15385 * composite.h (enum composition_method):
15386 Delete COMPOSITION_WITH_GLYPH_STRING.
15387 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
15388 (Vcomposition_function_table): Extern it.
15389 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
15390 (composition_gstring_put_cache, composition_gstring_from_id)
15391 (composition_gstring_p, composition_gstring_width)
15392 (composition_compute_stop_pos, composition_reseat_it)
15393 (composition_update_it, composition_adjust_point): Extern them.
15394 (Fcomposition_get_gstring): EXFUN it.
15395
15396 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
15397 (Vcomposition_function_table)
15398 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
15399 (gstring_hash_table, gstring_work, gstring_work_headers):
15400 New variables.
15401 (gstring_lookup_cache, composition_gstring_put_cache)
15402 (composition_gstring_from_id, composition_gstring_p)
15403 (composition_gstring_width, fill_gstring_header)
15404 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
15405 (composition_reseat_it, composition_update_it)
15406 (composition_adjust_point, Fcomposition_get_gstring): New functions.
15407 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
15408 and gstring_work_headers. DEFVAR_LISP composition-function-table.
15409 Defsubr composition_get_gstring.
15410
15411 * dispextern.h (struct glyph): New union u.cmp. Delete the member
15412 cmp_id.
15413 (struct glyph_string): Delete the member gidx. New members
15414 cmp_id, cmp_from, and cmp_to.
15415 (enum it_method): Delete GET_FROM_COMPOSITION.
15416 (struct composition_it): New struct.
15417 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
15418 Delete c, len, cmp_id, cmp_len in u.comp.
15419
15420 * font.h (enum lgstring_indices): Delete it.
15421 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
15422 (enum lglyph_indices): Likewise.
15423 (font_range): Adjust extern.
15424 (font_fill_lglyph_metrics): Extern it.
15425
15426 * font.c (QCf): New variable.
15427 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
15428 (font_prepare_composition): Delete this function.
15429 (font_range): Type and arguments changed.
15430 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
15431 (font_fill_lglyph_metrics): New function.
15432 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
15433 (syms_of_font): DEFSYM QCf. Delete defsubr for
15434 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
15435 Defsubr Sfont_shape_gstring.
15436
15437 * fontset.h (font_for_char): Extern it.
15438
15439 * fontset.c (font_for_char): New function.
15440
15441 * ftfont.c: Include composite.h.
15442 (ftfont_resolve_generic_family): Add langset "en" to pattern.
15443 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
15444
15445 * indent.c: Include composite.h and dispextern.h.
15446 (check_composition): Delete this function.
15447 (scan_for_column): Handle composition by
15448 composition_compute_stop_pos, composition_reseat_it, and
15449 composition_update_it.
15450 (compute_motion): Likewise.
15451 (Fvertical_motion): Fix checking of composition.
15452
15453 * keyboard.c (adjust_point_for_property): Check composition by
15454 composition_adjust_point.
15455
15456 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
15457 struct glyph_string.
15458
15459 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
15460 (append_composite_glyph): Adjust for the change of struct it and
15461 struct glyph.
15462 (produce_composite_glyph): Likewise.
15463
15464 * w32term.c (x_draw_composite_glyph_string_foreground):
15465 Adjust for the change of struct glyph_string.
15466 (x_draw_glyph_string): Likewise.
15467
15468 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
15469 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
15470
15471 * xdisp.c: Include font.h.
15472 (it_props): Delete the entry for Qauto_composed.
15473 (init_iterator): Initialize it->cmp_it.id to -1.
15474 (compute_stop_pos): Call composition_compute_stop_pos.
15475 (face_before_or_after_it_pos): Adjust for the change of struct it.
15476 (handle_auto_composed_prop): Delete it.
15477 (handle_composition_prop): Handle only static composition.
15478 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
15479 from xassert. Initialize it->cmp_it.stop_pos.
15480 (push_it): Adjust for the change of struct it.
15481 (pop_it): Likewise.
15482 (get_next_element): Delete next_element_from_composition.
15483 (CHAR_COMPOSED_P): New macro.
15484 (get_next_display_element): For automatic composition, get a face
15485 from the font in the glyph-string.
15486 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
15487 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
15488 (next_element_from_string): Check if the character at the current
15489 position is composed by CHAR_COMPOSED_P.
15490 (next_element_from_buffer): Likewise.
15491 (next_element_from_composition): Adjust for the change of struct it.
15492 Update it->cmp_it.
15493 (dump_glyph): Adjust for the change of struct glyph.
15494 (fill_composite_glyph_string): Adjust for the change of struct
15495 it and struct glyph. Don't handle automatic composition here.
15496 (fill_gstring_glyph_string): New function.
15497 (x_get_glyph_overhangs): Handle automatic composition.
15498 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
15499 (BUILD_GSTRING_GLYPH_STRING): New macro.
15500 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
15501 automatic composition.
15502 (append_composite_glyph): Adjust for the change of struct it and
15503 struct glyph.
15504 (x_produce_glyphs): Adjust for the change of struct it.
15505
15506 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
15507 the change of struct glyph_string.
15508 (x_draw_glyph_string): Likewise.
15509
15510 2008-08-29 Glenn Morris <rgm@gnu.org>
15511
15512 * buffer.c (word-wrap): Doc fix.
15513 * xdisp.c (truncate-partial-width-windows): Doc fix.
15514 Increase default to 50.
15515
15516 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
15517
15518 * xdisp.c (update_tool_bar_unwind): New function.
15519 (update_tool_bar): Temporarily set selected frame before building
15520 tool-bar items.
15521
15522 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
15523
15524 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
15525 snprintf, respectively.
15526 (xd_append_arg): Convert strings with Fstring_make_unibyte.
15527
15528 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
15529
15530 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
15531 LDFLAGS to GNUstep CC invocation.
15532
15533 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
15534
15535 * indent.c (Fvertical_motion): Revert last change. Handle the
15536 general case where we are moving forward, and PT spans multiple
15537 screen lines.
15538
15539 * eval.c (find_handler_clause): Temporarily increase
15540 max-lisp-eval-depth while printing the backtrace buffer, to
15541 guarantee that help-mode code can run.
15542
15543 2008-08-27 Eli Zaretskii <eliz@gnu.org>
15544
15545 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
15546 colors under -rv.
15547 (IT_set_frame_parameters): Don't swap foreground and background
15548 colors if `(reverse . t)' is present in the frame properties.
15549 (internal_terminal_init): Call init_frame_faces only for the
15550 initial frame.
15551
15552 2008-08-27 Andreas Schwab <schwab@suse.de>
15553
15554 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
15555
15556 2008-08-27 Andreas Schwab <schwab@suse.de>
15557
15558 * search.c (search_buffer): Set char_base to zero only at the end.
15559
15560 2008-08-27 Kenichi Handa <handa@m17n.org>
15561
15562 * fileio.c (report_file_error): Fix handling of multibyte error string.
15563
15564 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
15565
15566 * xterm.c (x_term_init): Temporarily hide the partially
15567 initialized terminal while calling vendor-specific-keysyms.
15568
15569 2008-08-26 Eli Zaretskii <eliz@gnu.org>
15570
15571 * msdos.c (internal_terminal_init): Most initializations done only
15572 once, especially initial_screen_colors[] and termscript open.
15573
15574 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
15575
15576 * eval.c (Fcondition_case): Doc fix.
15577
15578 * widgetprv.h (EmacsFramePart): Change font member to the new font
15579 struct.
15580
15581 * widget.c: Include character.h and font.h for XSETFONT.
15582 (setup_frame_gcs): Compute X font id from font struct, just once.
15583
15584 2008-08-26 Eli Zaretskii <eliz@gnu.org>
15585
15586 * term.c (get_named_tty): Fix last change.
15587
15588 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
15589
15590 * indent.c (Fvertical_motion): If moving forward starting from a
15591 multi-line string, move the iterator to the last line of that string.
15592
15593 2008-08-25 Eli Zaretskii <eliz@gnu.org>
15594
15595 * frame.c (do_switch_frame): Mark previously displayed frame as
15596 obscured for FRAME_MSDOS_P frames as well.
15597
15598 2008-08-24 Eli Zaretskii <eliz@gnu.org>
15599
15600 * frame.c (make_terminal_frame): Initialize f->terminal,
15601 f->terminal->reference_count, and scroll bars on MS-DOS as well.
15602 Set the top frame to newly created frame.
15603 (Fmake_terminal_frame): Reuse the_only_display_info.
15604
15605 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
15606 estimating available memory.
15607
15608 2008-08-23 David Reitter <david.reitter@gmail.com>
15609
15610 * nsterm.m (ns_draw_window_cursor): Don't call
15611 NSDisableScreenUpdates and NSEnableScreenUpdates on
15612 non-NS_IMPL_COCOA systems.
15613
15614 2008-08-23 Andreas Schwab <schwab@suse.de>
15615
15616 * process.c (procfs_system_process_attributes): Fix use of
15617 uninitialized variables.
15618
15619 2008-08-23 Eli Zaretskii <eliz@gnu.org>
15620
15621 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
15622
15623 * dispnew.c (init_display): Remove MS-DOS specific conditions for
15624 calling tty-set-up-initial-frame-faces.
15625
15626 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
15627 Allow MSDOS frames along with X frames.
15628
15629 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
15630 addition to output_termcap.
15631
15632 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
15633
15634 * termchar.h (FRAME_TTY): Support output_msdos_raw.
15635 (struct tty_display_info) [MSDOS]: Add fields related to mouse
15636 highlight.
15637
15638 * process.c [!subprocesses]: Define QCname.
15639 (syms_of_process): Intern and staticpro it.
15640
15641 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
15642 Adjust for changes in encoding/decoding routines.
15643 Use encode_coding_object and decode_coding_object instead of
15644 encode_coding and decode_coding.
15645
15646 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
15647
15648 * dosfns.c: Include frame.h before termhooks.h.
15649 (dos_cleanup): Use CURTTY ()->termscript instead of a global
15650 variable termscript.
15651
15652 * s/msdos.h (USER_FULL_NAME): Define.
15653 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
15654
15655 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
15656 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
15657 pw->pw_gecos.
15658
15659 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
15660 SELECTED_FRAME as additional (1st) argument.
15661 (tty_read_avail_input): Handle output_msdos_raw in
15662 addition to output_termcap.
15663
15664 * msdos.c: Include frame.h before termhooks.h.
15665 (mouse_on, mouse_off, mouse_moveto, mouse_init)
15666 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
15667 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
15668 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
15669 (IT_set_terminal_modes, IT_reset_terminal_modes)
15670 (IT_set_frame_parameters): Use tty->termscript instead of a global
15671 variable termscript.
15672 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
15673 global variable terminal_coding. Don't refer to
15674 Vnonascii_translation_table.
15675 (internal_terminal_init): Set Vwindow_system in current_kboard.
15676 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
15677 Announce date and time of session start, if termscript is open.
15678 Don't zero out the_only_display_info (it is done in
15679 term.c:init_tty). Open termscript only of not already open.
15680 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
15681 here instead of dos_ttraw. Don't initialize display if this is an
15682 initial tty. Don't set FRAME_FONT.
15683 (Vwindow_system_version): Bump to 23.
15684 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
15685 is available, set up mouse_position_hook.
15686 (dos_ttraw, IT_set_terminal_modes): If called with initial
15687 terminal, do nothing.
15688 (IT_set_frame_parameters): Handle the Qtty_type frame
15689 parameter by calling internal_terminal_init.
15690 (dos_set_window_size, show_mouse_face)
15691 (clear_mouse_face, IT_note_mode_line_highlight)
15692 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
15693 (dos_rawgetc): Use tty_display_info instead of x_display_info.
15694 (initialize_msdos_display): New function.
15695 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
15696 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
15697 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
15698 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
15699 Accept additional argument: a pointer to a frame. Update all callers.
15700 (request_sigio, unrequest_sigio): Don't define, now defined on
15701 sysdep.c.
15702 (IT_write_glyphs): Rewrite to use encode_terminal_code.
15703
15704 * term.c [MSDOS]: Include msdos.h.
15705 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
15706 conditional to DOS_NT. Allow only one call to this function in a
15707 session. Don't allocate a new struct tty_display_info; instead,
15708 reuse the_only_display_info. Call get_tty_size to get screen
15709 dimensions. Call init_baud_rate to set bad_rate.
15710 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
15711 (Fsuspend_tty) [MSDOS]: Don't close input and output.
15712 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
15713 (get_tty_terminal, get_named_tty, Ftty_type)
15714 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
15715 output_termcap.
15716 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
15717 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
15718 only when subprocesses are supported.
15719
15720 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
15721 f->output_data.x.
15722 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
15723 terminal devices.
15724
15725 * msdos.h: Remove definition of struct x_display_info and struct
15726 x_output.
15727 (FRAME_FONT): Use output_data.tty.
15728 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
15729 (struct x_display_info): Rename from display_info. Update all users in
15730 msdos.c.
15731 (struct x_output): Remove background_pixel and foreground_pixel.
15732 (the_only_display_info): Rename from the_only_x_display.
15733 (dos_ttraw): Update prototype.
15734
15735 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
15736 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
15737
15738 2008-08-23 Jason Rumney <jasonr@gnu.org>
15739
15740 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
15741 (fn_TIFFSetDirectory): New library function used.
15742 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
15743 (tiff_load): Use :index to select among multiple images. Set count
15744 property when multiple images exist.
15745 (gif_format): Use :index, not :image.
15746
15747 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
15748
15749 * xdisp.c (try_scrolling): Check INT_MAX instead of
15750 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
15751 to obtain INT_MAX.
15752
15753 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
15754
15755 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
15756
15757 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
15758
15759 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
15760 GNUstep library location.
15761
15762 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
15763
15764 * xfaces.c (x_update_menu_appearance): Check validity of menu font
15765 before using it.
15766
15767 * puresize.h (BASE_PURESIZE): Increase to 1250000.
15768
15769 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
15770
15771 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
15772 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
15773 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
15774 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
15775 (EmacsApp-cursor_blink_handler): Remove declaration.
15776 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
15777 match 01 Feb 2008 changes in xterm.c.
15778 (ns_read_socket): Add cast to avoid warning.
15779 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
15780 GNUstep.
15781
15782 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
15783
15784 * xselect.c (x_get_foreign_selection): Return nil if desired
15785 selection could not be obtained, instead of signalling an error.
15786
15787 2008-08-20 David Reitter <david.reitter@gmail.com>
15788
15789 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
15790 * nsterm.m: Remove ns-specific code for cursor blinking.
15791 (ns_draw_window_cursor): Clear cursor properly rather than
15792 redrawing the area. Respect width of bar cursors.
15793 These changes enable the use of generic blink-cursor-mode and
15794 generic cursor types in NS and support smooth cursor movements (do
15795 not blink off after command).
15796 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
15797 Nextstep, too.
15798
15799 2008-08-19 Kenichi Handa <handa@m17n.org>
15800
15801 * font.c (Vfont_log_deferred): New variable.
15802 (font_add_log): Check Vfont_log_deferred.
15803 (font_deferred_log): New function.
15804
15805 * font.h (font_deferred_log): Extern it.
15806
15807 * fontset.c (reorder_font_vector): Use encoding charset of fonts
15808 for sorting.
15809 (face_for_char): Use deferred log.
15810
15811 2008-08-18 Kenichi Handa <handa@m17n.org>
15812
15813 * fontset.c (face_for_char): Add font log.
15814
15815 * font.c (font_add_log): Add the font properties :script, :lang,
15816 and :otf in the log.
15817
15818 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
15819
15820 * xdisp.c: Remove dead code.
15821 (handle_invisible_prop, next_overlay_string): Defer call to
15822 setup_for_ellipsis.
15823 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
15824
15825 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
15826
15827 * xfaces.c (lookup_derived_face): Properly handle possible zero
15828 return value of get_lface_attributes.
15829 (merge_faces): Don't tell lookup_derived_face to signal an error
15830 if face is not found.
15831
15832 * dired.c (Fdirectory_files): Doc fix.
15833
15834 * process.c (make_process): Initialize kill_without_query struct
15835 member.
15836
15837 2008-08-15 Eli Zaretskii <eliz@gnu.org>
15838
15839 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
15840 Alternative calculation of totphys for Visual Studio 6.
15841
15842 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
15843
15844 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
15845 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
15846 All users changed.
15847 (stat): Only root directory passed to GetDriveType. Allow RAM
15848 disk as well as local fixed disk when w32-get-true-file-attributes
15849 is set to `local'.
15850 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
15851 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
15852 (w32_cached_id, w32_add_to_cache): New functions.
15853 (get_name_and_id): Look account names in the cache before calling
15854 lookup_account_sid.
15855 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
15856 New initialization flags.
15857 (globals_of_w32): Initialize them to zero.
15858 (w32_system_process_attributes): Use w32_cached_id and
15859 w32_add_to_cache.
15860
15861 2008-08-14 Lawrence Mitchell <wence@gmx.li>
15862
15863 * lread.c (Fread_char, Fread_char_exclusive): If no character
15864 event is read before timeout is reached, return nil, rather than
15865 converting to a number.
15866
15867 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
15868
15869 * fns.c (use_dialog_box): Doc fix.
15870
15871 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
15872 on OS X.
15873
15874 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
15875
15876 * frame.c (Qns_parse_geometry): New var.
15877 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
15878
15879 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
15880
15881 * xdisp.c (x_produce_glyphs): Handle the case when font has no
15882 space character in calculating tabs.
15883
15884 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
15885
15886 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
15887
15888 2008-08-10 Glenn Morris <rgm@gnu.org>
15889
15890 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
15891 silence gcc "limited range of data type" warnings in some
15892 make_fixnum_or_float calls.
15893
15894 2008-08-09 Eli Zaretskii <eliz@gnu.org>
15895
15896 * w32.c (w32_system_process_attributes): If the process does not
15897 exist, return nil.
15898
15899 * w32.c: Include thelp32.h, psapi.h and coding.h.
15900 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
15901 declarations.
15902 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
15903 (Process32Next_Proc): New typedefs.
15904 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
15905 (g_b_init_process32_next, g_b_init_open_thread_token)
15906 (g_b_init_impersonate_self, g_b_init_revert_to_self)
15907 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
15908 (g_b_init_get_process_working_set_size)
15909 (g_b_init_global_memory_status_ex): New static variables.
15910 (globals_of_w32): Initialize them.
15911 (create_toolhelp32_snapshot, process32_first, process32_next)
15912 (open_thread_token, impersonate_self, revert_to_self)
15913 (get_process_memory_info, get_process_working_set_size)
15914 (global_memory_status, global_memory_status_ex): New wrapper
15915 functions.
15916 (w32_list_system_processes, w32_system_process_attributes)
15917 (enable_privilege, restore_privilege, ltime, process_times):
15918 New functions.
15919 (convert_time_raw): New function.
15920 (convert_time): Remove conversion of FILETIME into time in 100
15921 nsec units, call convert_time_raw instead.
15922
15923 * process.h (w32_list_system_processes, w32_system_process_attributes):
15924 Add prototypes.
15925 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
15926 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
15927 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
15928 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
15929
15930 * process.c (Fsystem_process_attributes): Doc fix.
15931
15932 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
15933
15934 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
15935 a continued multi-char glyph; if so, advance to the actual glyph.
15936
15937 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
15938
15939 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
15940
15941 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
15942 (.m.o): Use it.
15943 * config.in: Regenerate.
15944
15945 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
15946
15947 * xdisp.c (redisplay_window): Revert last change.
15948 (try_window): Check bottom scroll margin too.
15949
15950 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
15951
15952 * config.in: Regenerate.
15953
15954 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
15955 -list-load-path-shadows'.
15956 (nsgui.h): Reduce number of things depending on it.
15957
15958 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
15959
15960 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
15961 instead of window-end which does the wrong thing at eob.
15962 (try_cursor_movement): Minor optimization.
15963 (redisplay_window): If scroll margin is defined, don't assume
15964 window doesn't need scrolling.
15965
15966 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
15967
15968 * config.in: Regenerate.
15969
15970 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
15971 (mostlyclean): Don't delete *.d under NS.
15972
15973 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
15974
15975 2008-08-06 Kenichi Handa <handa@m17n.org>
15976
15977 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
15978
15979 2008-08-06 Andreas Schwab <schwab@suse.de>
15980
15981 * config.in: Regenerate.
15982
15983 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
15984
15985 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
15986 forcing a window start.
15987
15988 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
15989 (auto_save_1): Update modtime when auto-save-list-file-name is on.
15990
15991 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
15992
15993 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
15994 argument.
15995
15996 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
15997
15998 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
15999 <scroll-down-aggressively, before-change-functions>:
16000 <after-change-functions>: Reflow docstrings.
16001
16002 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
16003 Ken Raeburn <raeburn@gnu.org>
16004
16005 Dock menu customization, based on a patch by Ken Raeburn, plus some
16006 other fixes.
16007 * nsmenu.m (dockMenu): New variable.
16008 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
16009
16010 * nsterm.h (dockMenu): Declare.
16011
16012 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
16013 (ns_term_init): Initialize dockMenu.
16014 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
16015 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
16016 left.
16017
16018 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
16019
16020 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
16021
16022 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
16023
16024 * config.in: Regenerate.
16025
16026 2008-08-04 Seiji Zenitani <zenitani@mac.com>
16027
16028 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
16029
16030 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
16031
16032 * nsterm.h (find_and_call_menu_selection): Fix prototype.
16033
16034 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
16035
16036 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
16037
16038 * keyboard.h: Comment an #endif.
16039
16040 * lisp.h (have_menus_p): Adjust comment.
16041
16042 * menu.c (find_and_return_menu_selection): Fix comparison with
16043 client_data.
16044
16045 * nsmenu.m (popup_activated_flag): New variable.
16046 (popup_activated): New function.
16047 (menu-or-popup-active-p): New exported lisp definition.
16048 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
16049 when popup done.
16050 (ns_popup_dialog): Set popup_activated_flag.
16051
16052 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
16053 version for GNUstep (handled by conditional typedef in nsterm.m).
16054 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
16055 in rgb.txt).
16056
16057 * process.c (init_process): Use DARWIN_OS, not DARWIN.
16058
16059 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
16060
16061 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
16062
16063 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
16064 shortcircuit if popup_activated like GTK and X toolkit.
16065
16066 * m/inter386.h: Change DARWIN to DARWIN_OS.
16067
16068 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
16069 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
16070 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
16071 Expand comment on NO_SOCK_SIGIO.
16072
16073 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
16074
16075 * nsterm.m (windowDidResize): Remove stopModal call.
16076
16077 2008-08-03 Andreas Schwab <schwab@suse.de>
16078
16079 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
16080 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
16081
16082 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
16083
16084 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
16085 Don't use uninitialized pointer variable when using getrlimit.
16086
16087 2008-08-02 Jason Rumney <jasonr@gnu.org>
16088
16089 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
16090
16091 2008-08-02 Eli Zaretskii <eliz@gnu.org>
16092
16093 * alloc.c (NSTATICS): Bump to 0x640.
16094
16095 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
16096
16097 * lisp.h: Add prototype for directory_files_internal.
16098
16099 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
16100 New functions.
16101 (syms_of_process): Defsubr them. Add initializations for various
16102 Q* symbols used in procfs_system_process_attributes.
16103 (procfs_list_system_processes, procfs_system_process_attributes)
16104 [HAVE_PROCFS]: New functions.
16105 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
16106 (procfs_get_total_memory): New functions.
16107
16108 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
16109
16110 * xfaces.c (Fx_load_color_file): Fix previous change;
16111 it is #ifdef WINDOWSNT, not WINDOWS_NT.
16112
16113 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
16114
16115 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
16116
16117 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16118
16119 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
16120
16121 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
16122
16123 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
16124
16125 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
16126 define NSApplicationDelegateReplySuccess.
16127 (EmacsView -converstationIdentifier): Use long instead of
16128 NSInteger for GNUstep, since it doesn't have NSInteger.
16129
16130 * xmenu.c: Revert last change.
16131
16132 * keyboard.h: Fix last change.
16133
16134 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
16135
16136 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
16137 on Windows.
16138
16139 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16140
16141 Warning clearing and clean-up in NS port.
16142 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
16143 Add prototypes.
16144 * nsgui.h (FACE_DEFAULT): Remove, unused.
16145 (XGCValues): Change colors to unsigned long.
16146 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
16147 nsterm.m.
16148 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
16149 (ns_list_fonts): Remove, unused.
16150 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
16151 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
16152 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
16153 (nsfont_draw): Compare face colors to 0, not nil.
16154 * nsmenu.m (struct widget_value): Drop unneeded declaration.
16155 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
16156 (-addSubmenuWithTitle:): Use NSMenuItem class.
16157 (ns_popup_menu): Use NO, not NULL, for enabled setting.
16158 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
16159 (ns_clip_to_row): Make gc arg a BOOL.
16160 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
16161 ns_clip_to_row() call.
16162 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
16163 used). Cast FRAME_FONT assignments.
16164 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
16165 (ns_string_to_lispmod): Change arg to const char.
16166 (ns_term_init): Use NSMenuItem class.
16167 (EmacsApp -openFile:): Move to different section of file.
16168 (EmacsApp -application:openFiles:): Don't return a value, call
16169 -replyToOpenOrPrint:.
16170 (EmacsView -keyDown:): Fix up cast.
16171 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
16172 (EmacsView -menuDown:): Cast tag in call to
16173 find_and_call_menu_selection().
16174 (ns_list_fonts): Remove, unused.
16175 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
16176 (ns_fontname_to_xlfd): Make static.
16177 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
16178 Remove prototypes (now in keyboard.h).
16179 (next_menubar_widget_id): Remove, unused.
16180 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
16181 Remove prototypes (now in keyboard.h).
16182 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
16183
16184 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
16185
16186 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
16187 (floatfns.o): Depend on syssignal.h.
16188 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
16189
16190 * systty.h: Fix previous change that removed BSD_TERMIOS.
16191 Add comments to #ifdefs.
16192
16193 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16194
16195 * w32fns.c (w32-load-color-file): Remove.
16196 (x-open-connection): Use renamed Fx_load_color_file.
16197 * xfaces.c (x-load-color-file): Add.
16198 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
16199 Emacs.clr.
16200 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
16201
16202 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
16203
16204 * dbusbind.c (Fdbus_call_method_asynchronously)
16205 (Fdbus_method_error_internal): New defuns.
16206 (xd_read_message): Handle also reply messages.
16207 (Vdbus_registered_functions_table): Extend docstring.
16208
16209 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
16210
16211 * keyboard.c (gobble_input): Fix previous change.
16212
16213 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
16214
16215 * bitmaps/README:
16216 * xfns.c:
16217 * termcap.c:
16218 * term.c:
16219 * syswait.h:
16220 * systty.h:
16221 * systime.h:
16222 * syssignal.h:
16223 * sysdep.c:
16224 * process.h:
16225 * process.c:
16226 * print.c:
16227 * ndir.h:
16228 * lread.c:
16229 * keyboard.c:
16230 * getpagesize.h:
16231 * floatfns.c:
16232 * fileio.c:
16233 * emacs.c:
16234 * doc.c:
16235 * dispnew.c:
16236 * dired.c:
16237 * data.c:
16238 * callproc.c:
16239 * buffer.c:
16240 * README:
16241 * Makefile.in:
16242 * s/template.h:
16243 * s/msdos.h:
16244 * m/vax.h: Remove VMS support.
16245 * s/vms.h:
16246 * vlimit.h:
16247 * uaf.h:
16248 * temacs.opt:
16249 * param.h:
16250 * ioctl.h: Remove file.
16251
16252 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
16253
16254 * s/ms-w32.h (MULTI_KBOARD): Remove.
16255 * xterm.c:
16256 * xselect.c:
16257 * xfns.c:
16258 * window.c:
16259 * w32term.c:
16260 * w32fns.c:
16261 * terminal.c:
16262 * termhooks.h:
16263 * term.c:
16264 * sysdep.c:
16265 * keyboard.h:
16266 * keyboard.c:
16267 * frame.h:
16268 * frame.c:
16269 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
16270 * config.in: Regenerate.
16271
16272 2008-07-30 Jason Rumney <jasonr@gnu.org>
16273
16274 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
16275
16276 * w32font.c (w32font_encode_char): Leave as unicode if in range.
16277 (w32font_open_internal): Get unicode version of textmetrics.
16278 Don't enable or disable glyph indices here.
16279 (w32font_open): Disable use of glyph indices.
16280
16281 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
16282
16283 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
16284
16285 * minibuf.c (Vread_buffer_function): Doc fix.
16286
16287 2008-07-30 John Paul Wallington <jpw@pobox.com>
16288
16289 * minibuf.c (read_buffer_completion_ignore_case): New var.
16290 (Fread_buffer): Use it.
16291
16292 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
16293
16294 * systty.h (sensemode): Remove empty #if. Remove reference to
16295 BSD_TERMIOS, unused.
16296
16297 * sysdep.c: Remove reference to DGUX.
16298 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
16299
16300 * config.in: Regenerate.
16301
16302 2008-07-30 Jason Rumney <jasonr@gnu.org>
16303
16304 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
16305
16306 2008-07-29 Jason Rumney <jasonr@gnu.org>
16307
16308 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
16309 is populated.
16310 (uniscribe_encode_char): Always use uniscribe.
16311 Avoid using context if cache is populated.
16312
16313 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
16314
16315 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
16316 open menu.
16317
16318 * gtkutil.c (menu_nav_ended): Remove.
16319 (create_menus): Remove signal connect for menu_nav_ended.
16320
16321 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
16322
16323 * xdisp.c (redisplay_window): Check return value of
16324 compute_window_start_on_continuation_line before forcing a window
16325 start.
16326
16327 2008-07-28 Jason Rumney <jasonr@gnu.org>
16328
16329 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
16330
16331 * w32term.c (w32_enable_unicode_output, cleartype_active):
16332 Remove obsolete display options.
16333 (x_draw_glyph_string_background): Don't use old cleartype_active
16334 workaround.
16335 (w32_initialize): Remove cleartype_active initialization.
16336 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
16337
16338 2008-07-28 Andreas Schwab <schwab@suse.de>
16339
16340 * lisp.h (init_weak_hash_tables, syms_of_font)
16341 (xd_read_queued_messages, syms_of_dbusbind): Declare.
16342 (remove_hash_entry): Don't declare.
16343 * eval.c (maybe_call_debugger): Make static and move before use.
16344 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
16345 * xdisp.c: Include "gtkutil.h" if USE_GTK.
16346 * xterm.h (x_set_frame_alpha): Declare.
16347
16348 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
16349
16350 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
16351 (create_menus): Connect selection-done to menu_nav_ended.
16352
16353 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16354
16355 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
16356 Set Vx_resource_name to a fallback. Replace read of 'buffered'
16357 parameter with read of 'alpha' one.
16358 (Qns_frame_parameter): Remove.
16359 * nsselect.m (selection-coding-system)
16360 (next-selection-coding-system, Vselection_coding_system)
16361 (Vnext_selection_coding_system): Drop.
16362
16363 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16364
16365 * nsfns.m (do-applescript, do_applescript): Rename to
16366 ns-do-applescript, ns_do_applescript, and move within file.
16367
16368 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
16369
16370 Remove support for Mac Carbon.
16371 * mactoolbox.c:
16372 * macterm.h:
16373 * macterm.c:
16374 * macselect.c:
16375 * macmenu.c:
16376 * macgui.h:
16377 * macfns.c:
16378 * mac.c: Remove file.
16379 * s/darwin.h:
16380 * m/intel386.h:
16381 * xfaces.c:
16382 * xdisp.c:
16383 * window.c:
16384 * tparam.c:
16385 * termhooks.h:
16386 * termcap.c:
16387 * term.c:
16388 * syssignal.h:
16389 * sysselect.h:
16390 * sysdep.c:
16391 * process.c:
16392 * lread.c:
16393 * lisp.h:
16394 * keyboard.c:
16395 * image.c:
16396 * fringe.c:
16397 * frame.h:
16398 * frame.c:
16399 * fontset.c:
16400 * font.h:
16401 * font.c:
16402 * fns.c:
16403 * fileio.c:
16404 * emacs.c:
16405 * dispnew.c:
16406 * dispextern.h:
16407 * config.in:
16408 * atimer.c:
16409 * Makefile.in: Remove code for Carbon.
16410
16411 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16412
16413 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
16414
16415 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16416
16417 * macterm.h (kCGBitmapByteOrder32Host): New define for
16418 non-universal SDKs.
16419
16420 * image.c (mac_create_cg_image_from_image, image_load_image_io)
16421 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
16422
16423 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
16424 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
16425
16426 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
16427
16428 * w32inevt.c: Include dispextern.h.
16429
16430 2008-07-26 Andreas Schwab <schwab@suse.de>
16431
16432 * print.c (print_object): Fix off-by-one in last change.
16433
16434 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
16435
16436 * term.c (syms_of_term): Don't initialize default_orig_pair,
16437 default_set_foreground and default_set_background on Windows.
16438
16439 2008-07-25 Jason Rumney <jasonr@gnu.org>
16440
16441 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
16442 ScriptItemize. Clean up return value checking. Remove unused
16443 variables.
16444 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
16445 shaping engine.
16446
16447 * w32font.c (w32font_has_char): Handle the case where we can't
16448 determine the script for a character.
16449
16450 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
16451
16452 * term.c (syms_of_term): Initialize default_orig_pair,
16453 default_set_foreground, and default_set_background.
16454
16455 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
16456 clash (bug#86).
16457 (getloadavg): Callers changed.
16458
16459 * image.c (svg_load_image): Fix last change.
16460 (svg_load_image): Use rsvg_handle_get_dimensions to check that
16461 image size is valid. Use g_object_unref instead of deprecated
16462 rsvg_handle_free to free rsvg handle.
16463 (x_from_xcolors): Don't initialize pixmap (silence compiler).
16464
16465 2008-07-25 Jason Rumney <jasonr@gnu.org>
16466
16467 * w32font.c (w32font_encode_char): Encode characters outside BMP as
16468 surrogates before looking up glyph index.
16469 (w32font_text_extents): Encode as surrogates if falling back to
16470 functions that need UTF-16 wide chars.
16471
16472 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
16473 BMP as surrogates before looking up glyph index.
16474
16475 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
16476
16477 * image.c (svg_load_image): Check for failure in return value of
16478 rsvg_handle_get_pixbuf. Free rsvg handle when done.
16479
16480 2008-07-25 Jason Rumney <jasonr@gnu.org>
16481
16482 * w32font.c (Fx_select_font): Reverse sense of second arg.
16483
16484 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
16485
16486 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
16487 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
16488
16489 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
16490 (PURESIZE): Use it.
16491
16492 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
16493
16494 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
16495 * m/alpha.h (TEXT_END):
16496 * m/ibmrs6000.h (TEXT_END):
16497 * m/macppc.h (TEXT_END):
16498 * s/darwin.h (TEXT_END):
16499 * s/msdos.h (TEXT_END): Remove, unused.
16500 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
16501 * s/cygwin.h: Remove comment.
16502
16503 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
16504 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
16505 * m/intel386.h (DOT_GLOBAL_START):
16506 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
16507 (USG): Remove, file not used on USG platforms.
16508
16509 * Makefile.in (HAVE_X11): Remove empty #else.
16510
16511 2008-07-24 Andreas Schwab <schwab@suse.de>
16512
16513 * fileio.c (Finsert_file_contents): Properly adjust undo list
16514 after format conversion.
16515
16516 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
16517
16518 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
16519 (menu_nav_ended): Remove.
16520 (create_menus): Remove signal connect for menu_nav_ended.
16521 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
16522 create_menus.
16523 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
16524
16525 2008-07-23 Jason Rumney <jasonr@gnu.org>
16526
16527 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
16528 with opened font.
16529 (w32font_open): Set font type to gdi.
16530
16531 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
16532
16533 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
16534
16535 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
16536 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
16537 defines it.
16538 * unexec.c (ADDR_CORRECT): Define unconditionally.
16539
16540 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
16541
16542 * unexec.c: Remove code depending on !COFF and USG, the file is
16543 not used for such systems.
16544
16545 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
16546 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
16547 (LD_SWITCH_SYSTEM_1): Remove, update users.
16548
16549 * s/darwin.h (DATA_END):
16550 * m/intel386.h (DATA_END):
16551 * m/ibmrs6000.h (DATA_END):
16552 * m/alpha.h (DATA_END): Remove, unused.
16553
16554 * config.in: Regenerate.
16555 * s/ms-w32.h (subprocesses): Define unconditionally.
16556 * s/template.h (subprocesses): Update comment.
16557 * s/vms.h (subprocesses):
16558 * s/usg5-4.h (subprocesses):
16559 * s/hpux10-20.h (subprocesses):
16560 * s/gnu-linux.h (subprocesses):
16561 * s/cygwin.h (subprocesses):
16562 * s/bsd-common.h (subprocesses):
16563 * s/aix4-2.h (subprocesses):
16564 * s/darwin.h (subprocesses): Do not define, defined by default now.
16565
16566 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
16567 Remove all references.
16568 (temacs): Add GNUstep specific ld flags.
16569
16570 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
16571 similarly to what X does.
16572
16573 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16574
16575 * nsfns.m (x-list-fonts): Remove.
16576 (syms_of_nsfns): Drop the x-list-fonts declaration.
16577 * nsterm.m: Get rid of remaining "//" comments.
16578
16579 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
16580
16581 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
16582
16583 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
16584 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
16585 (Fns_own_selection_internal, Fx_disown_selection_internal)
16586 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
16587
16588 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
16589 ... */' style of docstrings. Doc fixes.
16590
16591 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16592
16593 * terminfo.c (UP, BC, PC): Undo previous change.
16594
16595 * nsfns.m: Rename ns prefixed functions/variables to the
16596 corresponding x versions. Update references.
16597
16598 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
16599
16600 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
16601
16602 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16603
16604 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
16605 Remove forwarding functions.
16606 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
16607 non-static.
16608 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
16609 non-static.
16610 (ns_frame_parm_handlers): Use the new names.
16611 (syms_of_nsfns): Move to the end of file.
16612
16613 * nsterm.m (syms_of_nsterm): Move to the end of file.
16614
16615 * dispnew.c (init_display): Remove code for X10.
16616
16617 2008-07-22 Jason Rumney <jasonr@gnu.org>
16618
16619 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
16620 bare drive.
16621
16622 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16623
16624 * nsterm.m (syms_of_nsterm): Remove debugging println.
16625
16626 2008-07-22 David Reitter <david.reitter@gmail.com>
16627
16628 * nsfns.m (do_applescript, F_do_applescript): NS version of the
16629 Carbon implementation of the same functionality: execute arbitrary
16630 AppleScript code.
16631
16632 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
16633
16634 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
16635 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
16636 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
16637 (Fx_display_mm_height, Fx_display_mm_width)
16638 (Fx_display_backing_store, Fx_display_visual_class)
16639 (Fx_display_save_under, Fx_open_connection)
16640 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
16641 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
16642 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
16643 (Fx_display_pixel_width, Fx_display_pixel_height)
16644 (Fx_display_usable_bounds, Fx_display_planes)
16645 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
16646 ... */' style of docstrings.
16647
16648 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
16649
16650 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
16651 on this platform.
16652 (mips):
16653 * m/iris4d.h (mips): Do not define.
16654 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
16655
16656 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
16657
16658 * image.c:
16659 * nsfns.m:
16660 * nsselect.m:
16661 * nsterm.h:
16662 * nsterm.m: Rename ns prefixed functions/variables to the
16663 corresponding x versions. Update references.
16664
16665 * m/ibms390x.h (NO_REMAP): Do not undefine.
16666
16667 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
16668
16669 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
16670
16671 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
16672 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
16673 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
16674 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
16675 (Fns_display_mm_height, Fns_display_mm_width)
16676 (Fns_display_backing_store, Fns_display_visual_class)
16677 (Fns_display_save_under, Fns_open_connection)
16678 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
16679 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
16680 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
16681 (Fns_display_pixel_width, Fns_display_pixel_height)
16682 (Fns_display_usable_bounds, Fx_display_planes)
16683 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
16684
16685 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
16686
16687 * print.c (print_object): Check print_depth before searching for
16688 circularities.
16689
16690 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
16691
16692 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
16693 only sprintf.
16694
16695 2008-07-21 Kenichi Handa <handa@m17n.org>
16696
16697 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
16698
16699 2008-07-20 Andreas Schwab <schwab@suse.de>
16700
16701 * syntax.c (find_start_pos, find_start_value)
16702 (find_start_value_byte, find_start_begv, find_defun_start)
16703 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
16704
16705 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16706
16707 * s/sol2-3.h: Insert contents of s/sol2.h.
16708 (LD_SWITCH_SYSTEM): Remove redundant definition.
16709 * s/sol2.h: Remove, unused.
16710
16711 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
16712
16713 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
16714
16715 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
16716
16717 * Makefile.in (ns_appdir): Fix typo in find command.
16718
16719 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16720
16721 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
16722
16723 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
16724 added not supported anymore.
16725
16726 * s/usg5-4-2.h (LIBS_SYSTEM):
16727 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
16728
16729 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
16730 * s/lynxos.h (GETPGRP_NO_ARG):
16731 * s/hpux10-20.h (NO_SIOCTL_H):
16732 * s/gnu.h (GETPGRP_NO_ARG):
16733 * s/gnu-linux.h (NO_SIOCTL_H):
16734 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
16735 * s/cygwin.h (GETPGRP_NO_ARG):
16736 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
16737 (C_DEBUG_SWITCH): Remove duplicate definition.
16738
16739 * m/ibms390.h: Remove boilerplate comments.
16740
16741 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
16742
16743 * process.c (HAVE_SERIAL): Consolidate ifdefs.
16744 (wait_reading_process_output): Remove code for SunOS, platform not
16745 supported anymore. Use SOLARIS2 instead of sun.
16746
16747 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16748
16749 * font.c (font_open_by_name): Under NS, default lface height to zero.
16750 (font_open_for_lface): Under NS, set size based on frame fontsize.
16751 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
16752 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
16753
16754 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16755
16756 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
16757 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
16758 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
16759 YES/NO.
16760 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
16761 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
16762 * Makefile.in (clean): Clear out build destination dir.
16763
16764 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16765
16766 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
16767 xterm, xselect.
16768 * lisp.h: Remove declaration of hash_remove.
16769 * nsgui.h: Remove redefinitions of hash_remove.
16770 * fns.c (hash_remove): Rename to hash_remove_from_table.
16771
16772 2008-07-19 Seiji Zenitani <zenitani@mac.com>
16773
16774 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
16775 strdup() the family UTF8String before modifying it.
16776
16777 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16778
16779 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
16780 NS_FACE_BACKGROUND with 0 instead of nil.
16781 * nsfont.m (nsfont_draw): Same.
16782
16783 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
16784
16785 * nsfns.m (ns_set_background_color): Fix crash.
16786
16787 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
16788
16789 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
16790
16791 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
16792
16793 * puresize.h (BASE_PURESIZE): Increase to 1240000.
16794
16795 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16796
16797 * gtkutil.c: Include <config.h> instead of "config.h".
16798
16799 * lisp.h (Foverlay_buffer): Add EXFUN.
16800
16801 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
16802 child process to complete child_setup. Undo 2005-09-21 change.
16803
16804 * s/darwin.h: Mention setsid after vfork.
16805
16806 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16807
16808 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
16809 Depend on macgui.h.
16810
16811 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
16812 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
16813
16814 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
16815 and f19.
16816 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
16817
16818 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
16819 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
16820 Remove enumerators.
16821
16822 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
16823 Check if FACE_FROM_ID returns NULL.
16824
16825 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
16826
16827 * w32inevt.c (change_frame_size): Remove extern declaration.
16828 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
16829 change_frame_size.
16830
16831 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
16832
16833 * getloadavg.c: Revert last change (2008-07-15).
16834
16835 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
16836
16837 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
16838 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
16839 from configure.
16840
16841 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
16842
16843 * s/sol2.h:
16844 * s/sol2-4.h: Reorganize conditionals.
16845
16846 * ecrt0.c: Remove code depending on m68000, not used anymore.
16847
16848 * fns.c (hash_remove): Make static.
16849 * lisp.h (hash_remove): Don't prototype.
16850
16851 * m/ibmrs6000.h:
16852 * m/ibms390x.h:
16853 * m/macppc.h: Remove boilerplate comments.
16854
16855 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
16856 Solaris, which does not need them.
16857
16858 * m/vax.h: Remove comments about unsupported systems.
16859
16860 * s/darwin.h: Reorganize ifdefs.
16861
16862 2008-07-17 Andreas Schwab <schwab@suse.de>
16863
16864 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
16865
16866 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
16867
16868 Use SDATA. Follow coding convention of placing operators at
16869 beginning of next line rather than end of previous line, and placing
16870 spaces around infix operators.
16871
16872 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
16873 in case it was defined already.
16874 USE @GNUSTEP_MAKEFILES@ rather than envvars.
16875 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
16876 ns_default.
16877 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
16878 Lisp_Objects.
16879 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
16880 (ns_defined_color, ns_color_to_lisp): Declare.
16881 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
16882 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
16883 it's accepted even with USE_LISP_UNION_TYPE.
16884 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
16885 (update_frame_tool_bar): Remove apparently obsolete tests for
16886 non-integerness of f->tool_bar_lines.
16887 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
16888 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
16889 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
16890 (nsfont_open): Don't confuse NULL for Qnil.
16891 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
16892 * menu.h (find_and_call_menu_selection):
16893 * menu.c (find_and_call_menu_selection): Use just int for vector size.
16894 (find_and_return_menu_selection): Always return something.
16895 * frame.h: Include dispextern.h for Display_Info.
16896 (display_x_get_resource): Declare.
16897
16898 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
16899
16900 * syntax.c: Remove stdio.h include accidentally introduced in
16901 Emacs.app commit.
16902 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
16903 NS_IMPL_COCOA.
16904 * keyboard.c (handle_async_input, input_available_signal): Remove
16905 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
16906
16907 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
16908
16909 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
16910 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
16911 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
16912 Use SDATA.
16913
16914 * keymap.c: Remove all NS-specific code.
16915 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
16916 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
16917 where_is_preferred_modifier, return a different value depending on how
16918 preferred is the binding.
16919 (where_is_internal): Adjust accordingly.
16920 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
16921 Adjust to new preferred_sequence_p.
16922 (syms_of_keymap): Declare `where-is-preferred-modifier'.
16923 * keyboard.c (parse_solitary_modifier): Not static any more.
16924 * keyboard.h (parse_solitary_modifier): Declare.
16925
16926 2008-07-16 Andreas Schwab <schwab@suse.de>
16927
16928 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
16929 of easymenu.
16930
16931 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
16932
16933 * xdisp.c (move_it_in_display_line): Account for word wrap, so
16934 that we don't move off the line.
16935
16936 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
16937
16938 * keyboard.c (Qsuper): Remove.
16939 (parse_menu_item): Don't call where_is_internal specially for NS.
16940
16941 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16942
16943 * s/gnu-linux.h: Remove boilerplate comments.
16944
16945 * m/alpha.h (__ELF__): Consolidate conditions.
16946
16947 * m/m68k.h (linux): Use GNU_LINUX instead.
16948 Remove boilerplate comments.
16949
16950 * m/intel386.h: Undo refactoring from previous change.
16951 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
16952 too, remove dead code.
16953 (linux): Use GNU_LINUX instead.
16954
16955 2008-07-16 Jason Rumney <jasonr@gnu.org>
16956
16957 * w32gui.h: Repeat 26 June changes lost by last change.
16958
16959 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16960
16961 * systty.h: Remove code for Aix on 386, unsupported platform.
16962
16963 * s/ms-w32.h: Remove boilerplate comments.
16964 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
16965
16966 * s/gnu-linux.h (TERM): Remove support.
16967 (HAVE_SYSVIPC): Remove, unused.
16968 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
16969 for this system.
16970
16971 * process.c: Remove support for IRIS, unused.
16972 Remove support for TERM, not relevant anymore.
16973
16974 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
16975 used with the definition.
16976
16977 * s/aix4-2.h (static): Do not undef.
16978
16979 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
16980 only used on Aix.
16981 (HAVE_SYSVIPC): Remove, unused.
16982
16983 * m/hp800.h (CANNOT_DUMP): Do not undef.
16984
16985 * m/alpha.h: Fix comment.
16986
16987 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
16988 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
16989 used by this configuration.
16990 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
16991 * unexec.c: Remove code depending on HPUX and
16992 USG_SHARED_LIBRARIES, not used with this file. Remove code
16993 depending on IRIS, unused. Remove if 0-ed code.
16994
16995 * s/template.h: Remove comments about static.
16996
16997 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
16998 Remove if 0-ed code.
16999 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
17000 were the same as the default.
17001 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
17002 Remove boilerplate comments.
17003 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
17004 (HAVE_SYSVIPC): Remove, unused.
17005 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
17006
17007 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
17008 Remove boilerplate comments.
17009 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
17010 Remove boilerplate comments.
17011 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
17012 Remove boilerplate comments.
17013 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
17014
17015 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
17016 USG systems which do not use DATA_SEG_BITS.
17017 Refactor code. Remove boilerplate comments.
17018
17019 * m/ibms390.h:
17020 * m/m68k.h:
17021 * s/bsd-common.h:
17022 * s/cygwin.h:
17023 * s/darwin.h:
17024 * s/freebsd.h:
17025 * s/gnu.h:
17026 * s/msdos.h: Remove boilerplate comments.
17027
17028 * m/iris4d.h: Remove boilerplate comments and code for systems that
17029 do not use this file.
17030 (IRIS_4D): Remove, unused.
17031
17032 * m/mips.h: Remove boilerplate comments and code for systems that
17033 do not use this file.
17034 (SIGN_EXTEND_CHAR):
17035 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
17036 * unexmips.c: Remove file, unused.
17037
17038 * editfns.c (Fuser_full_name): Replace the only use of
17039 USER_FULL_NAME with its value.
17040 * config.in: Regenerate.
17041
17042 2008-07-16 David Reitter <david.reitter@gmail.com>
17043
17044 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
17045 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
17046
17047 2008-07-16 Glenn Morris <rgm@gnu.org>
17048
17049 * emacs.c (system-type): Doc fix.
17050
17051 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
17052
17053 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
17054 If the cache doesn't work, let's fix it, rather than work around it.
17055
17056 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
17057
17058 * Makefile.in: Correct additions for nsfont.o in last commit.
17059 * nsfont.m: New file (forgot last commit).
17060
17061 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
17062
17063 * callproc.c (set_initial_environment):
17064 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
17065 batch-compiling for bootstrap).
17066
17067 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
17068 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17069
17070 * frame.c (make_initial_frame): Call init_frame_faces(f) in
17071 CANNOT_DUMP case -- fix crash due to different init order.
17072
17073 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
17074
17075 Changes and additions for NeXTstep windowing system (Cocoa and
17076 GNUstep) support.
17077
17078 * Makefile.in:
17079 * config.in: Support defines and build commands for NS port.
17080 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
17081 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
17082 * dispextern.h: Include nsgui.h and add needed typedefs under NS
17083 windowing.
17084 (struct face): Add synth_ital field.
17085 * dispnew.c: Include nsterm.h when compiling under NS windowing.
17086 (init_display): Initialize Vinitial_window_system to "ns" when so
17087 compiled.
17088 * emacs.c: Include GSConfig.h when compiling under GNUstep.
17089 (display_arg): Use under NS.
17090 (main): Under NS, allocate autorelease pool and handle command line
17091 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
17092 (standard_args): Add NS-specific args.
17093 (shut_down_emacs): Shut down NS terminal if compiled under NS.
17094 * font.c (DEFAULT_ENCODING): New variable.
17095 (font_find_for_lface): Use it.
17096 (syms_of_font): Load syms_of_nsfont under NS.
17097 * font.h: Declare nsfont_driver when compiled under NS.
17098 * fontset.c: When compiling under NS, include nsterm.h.
17099 (fontset_from_font): Autoconstruct fontset under NS.
17100 * frame.c (various): Under NS, include nsterm.h, add Qns window system
17101 symbol, document and use it.
17102 (do_switch_frame): When for_deletion under Cocoa, add
17103 Fraise_frame(Qnil).
17104 (x_set_frame_parameters): Ensure font attribute changes are picked up.
17105 (x_get_arg): Allow "yes" and "no" as boolean values.
17106 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
17107 Qright under Cocoa.
17108 (focus-follows-mouse): Default to 0 under NS.
17109 * frame.h (enum output_method): Add output_ns.
17110 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
17111 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
17112 (FRAME_WINDOW_P): NS-specific definition.
17113 * fringe.c (max_used_fringe_bitmap): Make public.
17114 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
17115 (getloadavg): Use NeXT code under descendant OS's.
17116 * image.c (includes and header section, x_create_bitmap_from_data)
17117 (x_create_bitmap_from_file, free_bitmap_record, image_background)
17118 (image_background_transparent, x_clear_image_1)
17119 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
17120 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
17121 (x_to_xcolors, x_from_xcolors, x_disable_image)
17122 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
17123 other GUIs, including XPM support using code originally written for
17124 Carbon GUI.
17125 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
17126 using NS API.
17127 (image_ascent): Use font metrics macros instead of direct struct field
17128 access.
17129 * keyboard.c (includes): Add nsterm.h when compiling under NS.
17130 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
17131 Also, handle NS as GTK for menu bar purposes.
17132 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
17133 toolkit where they differ.
17134 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
17135 use cachelist, still needed under NS.
17136 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
17137 (struct widget_value): Define it here for menu.c.
17138 * keymap.c (includes): Include modifier internals.
17139 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
17140 NS.
17141 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
17142 support for preferring sequences using certain modifiers, specified by
17143 the FIRSTONLY argument.
17144 * lisp.h (hash_remove): Rename to avoid name clash when compiling
17145 under NS GNUstep implementation.
17146 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
17147 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
17148 * menu.c: Include nsterm.h under NS.
17149 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
17150 (free_menubar_widget_tree_value, update_submenu_strings)
17151 (find_and_call_menu_selection): Treat NS as X and NT.
17152 (find_and_return_menu_selection): New function, used for popup menus.
17153 * nsgui.h:
17154 * nsterm.h:
17155 * nsfns.m:
17156 * nsimage.m:
17157 * nsmenu.m:
17158 * nsselect.m:
17159 * nsterm.m: New files.
17160 * process.c (wait_reading_process_output): Under NS, call ns_select()
17161 instead of plain select().
17162 * syntax.c (char_quoted): Under NS, avoid a crash when called near
17163 beginning of buffer.
17164 * sysselect.h (init_process): Rename when compiling under Cocoa to
17165 avoid name conflict.
17166 * termhooks.h (display_info): Add ns_display_info to union.
17167 * terminal.c (Fterminal_live_p): Add ns to terminal types.
17168 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
17169 COCOA environment.
17170 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
17171 unexec() signature. (Note, this will dump, but the resulting file
17172 crashes; unexosx is used instead; keeping around for reference and
17173 possible aid in getting dump working under GNUstep.)
17174 * w32gui.h (button_type, widget_value): Remove definitions (now in
17175 keyboard.h).
17176 * window.c: Include nsterm.h when compiling under NS.
17177 * xdisp.c (includes): Include nsterm.h when compiling under NS.
17178 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
17179 other GUI windowing systems.
17180 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
17181 GTK.
17182 (x_consider_frame_title): Under NS, set icon type and frame
17183 modified-state indicator; use ns_set_name_as_filename() when using
17184 formatted title.
17185 (update_window_cursor): Make public when compiling under NS.
17186 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
17187 (hourglass_atimer, Vhourglass_delay
17188 * xfaces.c (header section, init_frame_faces, clear_font_table)
17189 (defined_color, unload_color, x_face_list_fonts)
17190 (prepare_face_for_display): Add NS support parallel to other GUIs.
17191 Emulate GCs like other non-X GUIs.
17192 (split_font_name): Don't lowercase font name under NS.
17193 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
17194 under NS.
17195 * s/darwin.h: Add support for compilation under NS.
17196
17197 2008-07-15 Jason Rumney <jasonr@gnu.org>
17198
17199 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
17200 (w32_show_hourglass): Rename from show_hourglass.
17201 (w32_hide_hourglass): Rename from hide_hourglass.
17202 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
17203 (Vhourglass_delay): Declare extern.
17204 (hourglass_started): Remove.
17205
17206 * xdisp.c (Vhourglass_delay): Remove static.
17207 (hourglass_started, start_hourglass, cancel_hourglass):
17208 Don't include these versions on WINDOWSNT.
17209
17210 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
17211
17212 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
17213 variables (formerly in xfns.c).
17214 (show_hourglass, hide_hourglass): New prototypes (same).
17215 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
17216 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
17217 in xfns.c).
17218 (syms_of_xdisp): Declare/initialize display-hourglass,
17219 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
17220 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
17221 formerly in xfns.c.
17222 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
17223 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
17224 (start_hourglass, cancel_hourglass): Remove.
17225 (show_hourglass, hide_hourglass): Remove prototypes and static
17226 modifiers.
17227 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
17228 hourglass_atimer, hourglass_shown_p declaration/initialization.
17229 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
17230 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
17231 (start_hourglass, cancel_hourglass): Remove.
17232 (show_hourglass, hide_hourglass): Remove prototypes and static
17233 modifiers.
17234 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
17235 hourglass_atimer, hourglass_shown_p declaration/initialization.
17236 * w32fns.c (display_hourglass_p, Vhourglass_delay)
17237 (DEFAULT_HOURGLASS_DELAY): Remove.
17238 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
17239 hourglass_shown_p declaration/initialization.
17240
17241 2008-07-14 Jason Rumney <jasonr@gnu.org>
17242
17243 * w32fns.c (w32_get_arg): Remove wrapper function.
17244 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
17245 directly.
17246 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
17247
17248 2008-07-14 Kenichi Handa <handa@m17n.org>
17249
17250 * xfont.c (xfont_open): Add workaround for X's bug.
17251
17252 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
17253
17254 * fontset.c: Include <stdio.h> unconditionally.
17255
17256 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
17257
17258 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
17259 for filtering.
17260
17261 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
17262
17263 * s/vms.h: Use __GNUC__ instead of _GNUC_.
17264
17265 * m/macppc.h:
17266 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
17267
17268 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
17269 (SPECIAL_EMACS_INT):
17270 * m/ia64.h (SPECIAL_EMACS_INT):
17271 * m/amdx86-64.h (SPECIAL_EMACS_INT):
17272 * s/gnu.h (NLIST_STRUCT):
17273 * s/aix4-2.h (X11R5_INHIBIT_I18N):
17274 * s/gnu-linux.h (LINUX):
17275 * s/msdos.h (HAVE_FACES):
17276 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
17277
17278 * systty.h:
17279 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
17280 anymore.
17281
17282 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
17283
17284 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
17285 always defined as int.
17286
17287 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
17288 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
17289 * s/gnu-linux.h (HAVE_WAIT_HEADER):
17290 * s/freebsd.h (HAVE_WAIT_HEADER):
17291 * s/bsd-common.h (HAVE_UNION_WAIT):
17292 * s/aix4-2.h (HAVE_WAIT_HEADER):
17293 * m/mips.h (HAVE_UNION_WAIT):
17294 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
17295 (COFF, static): Do not define, they are undefined later in the file.
17296
17297 * process.c (update_status): Don't use a union.
17298 (status_convert):
17299 (sigchld_handler): Use int instead of WAITTYPE.
17300
17301 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
17302
17303 * indent.c (Fvertical_motion): Restore hscroll before moving to
17304 goal column.
17305
17306 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
17307
17308 * lisp.h: Remove left over code.
17309
17310 2008-07-11 Andreas Schwab <schwab@suse.de>
17311
17312 * lisp.h: Fix logic in last change.
17313
17314 * menu.h: New file.
17315 * menu.c: Include it.
17316 * xmenu.c: Likewise.
17317 * Makefile.in: Update dependencies.
17318
17319 2008-07-11 Kenichi Handa <handa@m17n.org>
17320
17321 * fontset.c (fontset_from_font): Cancel the previous change.
17322
17323 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
17324
17325 * lisp.h:
17326 * w32heap.c:
17327 * emacs.c:
17328 * alloc.c: Replace all references of NO_UNION_TYPE with
17329 USE_LISP_UNION_TYPE.
17330
17331 * m/xtensa.h (NO_UNION_TYPE):
17332 * m/vax.h (NO_UNION_TYPE):
17333 * m/template.h (NO_UNION_TYPE):
17334 * m/sparc.h (NO_UNION_TYPE):
17335 * m/mips.h (NO_UNION_TYPE):
17336 * m/macppc.h (NO_UNION_TYPE):
17337 * m/m68k.h (NO_UNION_TYPE):
17338 * m/iris4d.h (NO_UNION_TYPE):
17339 * m/intel386.h (NO_UNION_TYPE):
17340 * m/ibms390x.h (NO_UNION_TYPE):
17341 * m/ibms390.h (NO_UNION_TYPE):
17342 * m/ibmrs6000.h (NO_UNION_TYPE):
17343 * m/ia64.h (NO_UNION_TYPE):
17344 * m/hp800.h (NO_UNION_TYPE):
17345 * m/arm.h (NO_UNION_TYPE):
17346 * m/amdx86-64.h (NO_UNION_TYPE):
17347 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
17348 defining it the same.
17349
17350 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
17351
17352 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
17353
17354 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
17355
17356 * fileio.c:
17357 * sysdep.c:
17358 * systty.h:
17359 * m/ibmrs6000.h:
17360 * m/iris4d.h:
17361 * s/aix4-2.h:
17362 * s/freebsd.h:
17363 * s/gnu-linux.h:
17364 * s/hpux10-20.h:
17365 * s/hpux11.h:
17366 * s/netbsd.h:
17367 * s/sol2-3.h:
17368 * s/sol2-4.h:
17369 * s/sol2.h:
17370 * s/usg5-4.h:
17371 * s/vms.h: Remove references to unused variables.
17372
17373 2008-07-10 Andreas Schwab <schwab@suse.de>
17374
17375 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
17376 pattern before matching the generic family.
17377
17378 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
17379
17380 * unexec.c:
17381 * s/vms.h:
17382 * s/usg5-4-2.h:
17383 * s/sol2-5.h:
17384 * s/freebsd.h:
17385 * s/darwin.h: Remove dead code.
17386
17387 * m/template.h:
17388 * m/sparc.h:
17389 * m/mips.h:
17390 * m/m68k.h:
17391 * m/iris4d.h:
17392 * m/intel386.h:
17393 * m/ibms390x.h:
17394 * m/ibms390.h:
17395 * m/ia64.h:
17396 * m/hp800.h:
17397 * m/arm.h:
17398 * m/amdx86-64.h: Remove dead code and references to unused
17399 and compiler defined symbols.
17400
17401 * unexmips.c:
17402 * unexelf.c: Remove references to desupported systems.
17403
17404 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
17405
17406 * m/powermac.h: Remove boilerplate comments.
17407 (NO_REMAP): Remove unused definition.
17408
17409 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
17410 define them.
17411
17412 2008-07-10 Kenichi Handa <handa@m17n.org>
17413
17414 * xfont.c (xfont_open): Log the reason of failure.
17415
17416 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
17417
17418 * fontset.c (fontset_get_font_group):
17419 * font.c (font_check_otf): Specify argument types.
17420
17421 2008-07-09 Kenichi Handa <handa@m17n.org>
17422
17423 * coding.c (detect_coding_utf_8): Set detect_info->found only when
17424 non-ASCII char is found.
17425
17426 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
17427 (reorder_font_vector): Change the arg preferred_family to font.
17428 Prefer the spec matching with font.
17429 (fontset_get_font_group): New function.
17430 (fontset_find_font): Change the format of an element of a realized
17431 fontset. Use fontset_get_font_group.
17432 (fontset_font): Try the current fontset, the default fontset, the
17433 fallbacks of the current fontset, and the fallbacks of the default
17434 fontset in this order.
17435 (face_for_char): Delete the shortcut to use the current font.
17436 (fontset_from_font): Don't set fonts for Latin in the fontset.
17437
17438 * font.h (font_make_object, font_match_p): Adjust prototypes.
17439
17440 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
17441
17442 * font.c (font_make_object): New arg entity and pixelsize.
17443 (font_check_otf_features, font_check_otf): New functions.
17444 (font_match_p): Check :lang, :script, and :otf properties.
17445
17446 * xfont.c (xfont_open): Adjust it for the change of
17447 font_make_object.
17448 (xfont_text_extents): Fix initial setting of metrics.
17449
17450 * ftfont.c (struct ftfont_info): New member index, delete member
17451 fc_charset_idx. Make the member order compatible with struct
17452 xftfont_info.
17453 (fc_charset_table): Change charset names to registry names.
17454 (ftfont_pattern_entity): Delete the args registry and
17455 fc_charset_idx. Change the value of :font-entity property
17456 to (FONTNAME . INDEX). Always set :registry property to
17457 `iso10646-1'.
17458 (struct ftfont_cache_data): New struct.
17459 (ftfont_lookup_cache): New arg for_face.
17460 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
17461 (ftfont_driver): Set the member otf_capability.
17462 (ftfont_get_charset): Adjust it for the change of
17463 fc_charset_table.
17464 (OTF_TAG_SYM): New macro.
17465 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
17466 for the change of fc_charset_table.
17467 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
17468 ftfont_pattern_entity. Add FC_INDEX to objset.
17469 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
17470 and ftfont_pattern_entity.
17471 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
17472 font_make_object, struct ftfont_info.
17473 (ftfont_has_char): Use ftfont_get_fc_charset.
17474 (ftfont_otf_features, ftfont_otf_capability): New functions.
17475 (ftfont_shape): Use ftfont_get_otf.
17476 (ftfont_text_extents): Fix initial setting of metrics.
17477
17478 * xftfont.c (struct xftfont_info): New member ft_size. Make the
17479 member order compatible with struct ftfont_info.
17480 (xftfont_open): Add FC_CHARSET to the pattern.
17481 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
17482 properties if appropriate.
17483 (xftfont_close): Unlock the face.
17484 (xftfont_anchor_point, xftfont_shape): Deleted.
17485 (syms_of_xftfont): Don't set members anchor_point and shape of
17486 xftfont_driver.
17487
17488 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
17489 font_make_object.
17490
17491 * w32font.c (w32font_open): Adjust it for the change of
17492 font_make_object.
17493 (w32font_open_internal): Don't set properties of font_object here.
17494
17495 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
17496
17497 * macfns.c (x_create_tip_frame):
17498 * w32fns.c (x_create_tip_frame):
17499 * xfns.c (x_create_tip_frame): Pass parameter argument to
17500 face-set-after-frame-default.
17501
17502 * xfaces.c (Finternal_merge_in_global_face): Save merged
17503 attributes for the default face back into the face vector.
17504
17505 2008-07-08 Andreas Schwab <schwab@suse.de>
17506
17507 * fontset.h: Declare fontset_from_font. Don't declare
17508 new_fontset_from_font and fontset_from_font_name.
17509 * xterm.c: Include "fontset.h".
17510 * Makefile.in (xterm.o): Update dependencies.
17511
17512 2008-07-08 Glenn Morris <rgm@gnu.org>
17513
17514 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
17515 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
17516
17517 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
17518
17519 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
17520 (x_set_frame_parameters): Don't bind it.
17521
17522 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
17523
17524 * w32fns.c (map_w32_filename): Declare extern.
17525
17526 2008-07-07 Jason Rumney <jasonr@gnu.org>
17527
17528 * w32term.c (WS_EX_LAYERED): Define if not already.
17529
17530 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
17531
17532 * xfaces.c (set_font_frame_param): Don't try to set the font
17533 parameter if it is still unspecified in the lface.
17534
17535 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
17536
17537 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
17538 face if it didn't already exist.
17539
17540 * xdisp.c (try_window_id): Give up if word-wrapping is on.
17541
17542 2008-07-05 Andreas Schwab <schwab@suse.de>
17543
17544 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
17545
17546 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
17547
17548 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
17549 word-wrapping.
17550 (IT_DISPLAYING_WHITESPACE): New macro.
17551 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
17552 when word-wrapping. Simplify word-wrapping logic. Use correct
17553 pixel positions when saving copies of the iterator.
17554 (display_line): Use proper wrap point if the last character on a
17555 line was preceded by whitespace.
17556
17557 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17558
17559 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
17560
17561 2008-07-04 Kenichi Handa <handa@m17n.org>
17562
17563 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
17564
17565 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
17566
17567 2008-07-02 Jason Rumney <jasonr@gnu.org>
17568
17569 * xfns.c (syms_of_xfns): Only define x-select-font when both
17570 HAVE_FREETYPE and USE_GTK.
17571
17572 * xdisp.c (next_element_from_display_vector): Move assignment out
17573 of if statement.
17574
17575 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
17576
17577 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
17578
17579 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
17580 (syms_of_fileio): Initialize and export them.
17581 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
17582
17583 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
17584 (Fsystem_move_file_to_trash): New function.
17585 (syms_of_w32fns): Export it to lisp.
17586
17587 2008-07-01 Jason Rumney <jasonr@gnu.org>
17588
17589 * w32font.c (w32font_text_extents): Don't count overhang as part
17590 of width.
17591
17592 2008-06-30 Miles Bader <miles@gnu.org>
17593
17594 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
17595 Add `avoid_cursor_p' field.
17596
17597 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
17598 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
17599 (append_glyph, append_composite_glyph, produce_image_glyph)
17600 (append_stretch_glyph): Initialize avoid_cursor_p.
17601 (get_it_property): Rename from `get_line_height_property'.
17602 (x_produce_glyphs): Use get_it_property.
17603 (handle_line_prefix, push_display_prop): New functions.
17604 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
17605 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
17606 New variables.
17607 (syms_of_xdisp): Initialize them.
17608
17609 2008-06-30 Kenichi Handa <handa@m17n.org>
17610
17611 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
17612 XftDefaultSubstitute (they are called in XftFontMatch).
17613 (xftfont_open): Fix args to ftfont_font_format.
17614
17615 * ftfont.c (fc_charset_table): New member lang.
17616 (ftfont_resolve_generic_family): New arg pattern.
17617 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
17618 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
17619 (ftfont_open): Fix args to ftfont_font_format.
17620 (ftfont_font_format): New arg filename.
17621
17622 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
17623
17624 * xfaces.c (Finternal_merge_in_global_face): If default face was
17625 modified, realize it again. Update the font face attribute.
17626
17627 2008-06-29 Jason Rumney <jasonr@gnu.org>
17628
17629 * w32term.c (x_set_frame_alpha): Fix logic.
17630
17631 2008-06-29 Kenichi Handa <handa@m17n.org>
17632
17633 * fontset.c (Finternal_char_font): Return font-object instead of
17634 font-name.
17635
17636 * composite.c (get_composition_id): Fix the width calculation for TAB.
17637
17638 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
17639
17640 * indent.c (Fvertical_motion): Properly handle float column arg.
17641
17642 2008-06-28 Jason Rumney <jasonr@gnu.org>
17643
17644 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
17645 (pfnSetLayeredWindowAttributes): New function pointer.
17646 (w32_initialize): Initialize it when supported.
17647 (x_set_frame_alpha): New function.
17648
17649 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
17650 (w32_frame_parm_handlers): Set alpha handler.
17651
17652 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
17653
17654 2008-06-27 Jason Rumney <jasonr@gnu.org>
17655
17656 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
17657 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
17658 (w32_to_x_charset, x_to_w32_charset)
17659 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
17660 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
17661 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
17662 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
17663 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
17664 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
17665 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
17666 (Qw32_charset_unicode): Remove.
17667 (syms_of_w32fns): Update for above changes.
17668
17669 * w32font.c (w32_to_x_charset, x_to_w32_charset)
17670 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
17671 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
17672 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
17673 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
17674 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
17675 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
17676 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
17677 (syms_of_w32font): Update for above changes.
17678
17679 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
17680
17681 * s/usg5-4.h: Fix previous change: keep the correct branch of a
17682 removed #if.
17683 (USG_SHARED_LIBRARIES): Remove duplicate definition.
17684
17685 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
17686 Eli Zaretskii <eliz@gnu.org>
17687
17688 * makefile.w32-in (LOCAL_FLAGS):
17689 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
17690
17691 * sysdep.c (_spawnlp, _getpid):
17692 Declare with explicit _cdecl instead of _CRTAPI1.
17693
17694 * editfns.c (Fget_internal_run_time):
17695 Check for WINDOWSNT with #ifdef, not #if.
17696
17697 2008-06-26 Jason Rumney <jasonr@gnu.org>
17698
17699 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
17700
17701 * w32term.c (x_draw_glyph_string_foreground)
17702 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
17703 Use FONT_HANDLE macro.
17704 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
17705
17706 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
17707 (uniscribe_encode_char): Use FONT_HANDLE macro.
17708
17709 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
17710 (w32font_text_extents): Use precast w32_font.
17711 (w32font_close): Free cached metrics.
17712 (w32font_open_internal): Allocate space for name on stack.
17713
17714 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
17715
17716 * xdisp.c (extend_face_to_end_of_line): Fix last change.
17717
17718 2008-06-26 Jason Rumney <jasonr@gnu.org>
17719
17720 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
17721 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
17722
17723 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
17724
17725 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
17726
17727 2008-06-26 Jason Rumney <jasonr@gnu.org>
17728
17729 * w32bdf.c, w32bdf.h: Remove obsolete files.
17730
17731 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
17732
17733 * w32gui.h: Don't include w32bdf.h.
17734 (XCharStruct, enum w32_char_font_type, W32FontStruct):
17735 Remove obsolete font support.
17736
17737 * w32font.h (struct w32font_info): Remove compat_w32_font.
17738 Add hfont member.
17739 (FONT_COMPAT): Remove obsolete macro.
17740
17741 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
17742 (w32font_encode_char, w32font_text_extents): Use new hfont member.
17743 (w32font_open_internal): Remove compat code. Set new hfont member.
17744 (Fx_select_font): Use new hfont member.
17745
17746 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
17747 (uniscribe_encode_char): Use new hfont member.
17748
17749 * w32term.c (x_draw_glyph_string_foreground)
17750 (x_draw_composite_glyph_string_foreground): Use new hfont member.
17751 (x_draw_glyph_string): Use metrics in w32font_info.
17752
17753 2008-06-26 Kenichi Handa <handa@m17n.org>
17754
17755 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
17756
17757 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
17758
17759 * unexnext.c:
17760 * m/ews4800.h:
17761 * m/hp9000s300.h:
17762 * m/ibm370aix.h:
17763 * m/mips-siemens.h:
17764 * m/ncr386.h:
17765 * m/next.h:
17766 * m/pmax.h:
17767 * m/powerpcle.h:
17768 * m/tandem-s2.h:
17769 * s/386bsd.h:
17770 * s/bsd386.h:
17771 * s/bsd4-1.h:
17772 * s/bsd4-2.h:
17773 * s/bsdos2-1.h:
17774 * s/bsdos2.h:
17775 * s/bsdos3.h:
17776 * s/bsdos4.h:
17777 * s/nextstep.h:
17778 * s/ultrix4-3.h:
17779 * s/usg5-0.h:
17780 * s/usg5-2-2.h:
17781 * s/usg5-2.h:
17782 * s/usg5-4-3.h:
17783 * s/ux4800.h:
17784 * s/uxpds.h:
17785 * s/uxpv.h: Remove support for obsolete systems.
17786 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
17787 Remove, insert contents in s/hpux10-20.h.
17788 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
17789 Remove, insert contents in s/aix4-2.h.
17790 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
17791 * s/bsd4-3.h: Rename to ...
17792 * s/bsd-common.h: ... this.
17793 * data.c:
17794 * doc.c:
17795 * ecrt0.c:
17796 * emacs.c:
17797 * fileio.c:
17798 * floatfns.c:
17799 * keyboard.c:
17800 * mem-limits.h:
17801 * print.c:
17802 * process.c:
17803 * sysdep.c:
17804 * syssignal.h:
17805 * systty.h:
17806 * syswait.h:
17807 * term.c:
17808 * unexec.c:
17809 * unexelf.c:
17810 * unexhp9k800.c:
17811 * m/hp800.h:
17812 * m/ibmrs6000.h:
17813 * m/mips.h:
17814 * m/vax.h:
17815 * s/darwin.h:
17816 * s/freebsd.h:
17817 * s/gnu.h:
17818 * s/ms-w32.h:
17819 * s/msdos.h:
17820 * s/netbsd.h:
17821 * s/template.h: Remove references to obsolete variables.
17822
17823 * Makefile.in: Add dependencies for all unexec files.
17824 (admindir): Remove unused variable.
17825 (UNEXEC_SRC): Remove references.
17826
17827 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
17828
17829 * xfns.c (x_default_font_parameter): If Xft is available, first
17830 try Monospace-12 for the default font.
17831
17832 2008-06-25 Jason Rumney <jasonr@gnu.org>
17833
17834 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
17835
17836 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17837
17838 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
17839
17840 * buffer.c (syms_of_buffer): Remove default-word-wrap.
17841
17842 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
17843
17844 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
17845 <scroll-conservatively>: Fix typo in docstring.
17846
17847 * xselect.c (Fx_send_client_event): Doc fix.
17848
17849 2008-06-25 Kenichi Handa <handa@m17n.org>
17850
17851 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
17852
17853 * font.c (font_parse_fcname): Remove unused variables.
17854 (font_sort_entites): Delete the arg SPEC. Caller changed.
17855 Fix for the case of ! best_only.
17856 (font_delete_unmatched): Check DPI and AVGWIDTH too.
17857
17858 * lisp.h (Fstring_to_unibyte): EXFUN it.
17859
17860 * character.h (str_to_unibyte): Extern it.
17861
17862 * character.c (str_to_unibyte): New function.
17863
17864 * fns.c (Fstring_to_unibyte): New function.
17865 (syms_of_fns): Defsubr it.
17866
17867 2008-06-24 Kenichi Handa <handa@m17n.org>
17868
17869 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
17870 DPI too.
17871 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
17872
17873 2008-06-24 Andreas Schwab <schwab@suse.de>
17874
17875 * Makefile.in (${lispsource}loaddefs.el): Rename from
17876 ../lisp/loaddefs.el.
17877 (bootstrap-clean): Do what distclean does but don't remove
17878 Makefile.
17879 (distclean): Depend on bootstrap-clean and remove Makefile.
17880
17881 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
17882
17883 * buffer.h (struct buffer): New member word_wrap.
17884
17885 * buffer.c (syms_of_buffer): New variables default-word-wrap and
17886 word-wrap.
17887 (init_buffer_once): Initialize them.
17888
17889 * dispextern.h (struct it): Replace bool truncate_lines_p with a
17890 line_wrap enum possessing three possible values.
17891
17892 * termopts.h: Replace truncate_partial_width_windows with
17893 Vtruncate_partial_width_windows.
17894
17895 * dispnew.c (direct_output_for_insert): Avoid direct output when
17896 inserting a space with word wrap on.
17897
17898 * indent.c (compute_motion): Obey integer values of
17899 truncate-partial-width-windows.
17900
17901 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
17902 replacing truncate_partial_width_windows.
17903 (init_iterator): If Vtruncate_partial_width_windows is an integer,
17904 truncate only if the window width is below that integer.
17905 (start_display, resize_mini_window, produce_stretch_glyph)
17906 (display_string, move_it_in_display_line_to): Use line_wrap.
17907 (back_to_previous_visible_line_start, reseat_1):
17908 Reset string_from_display_prop_p.
17909 (display_line): Extend default face to end of line when wrapping.
17910
17911 2008-06-24 Kim F. Storm <storm@cua.dk>
17912
17913 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
17914 to wrap continued lines at word boundaries.
17915
17916 2008-06-24 Jason Rumney <jasonr@gnu.org>
17917
17918 * font.c (Ffont_face_attributes): Multiply pixel size before point
17919 conversion to avoid multiplying rounding error.
17920
17921 2008-06-23 Jason Rumney <jasonr@gnu.org>
17922
17923 * w32term.c (x_draw_glyph_string_background)
17924 (x_draw_glyph_string): Remove old bdf font code.
17925
17926 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
17927
17928 2008-06-22 Kenichi Handa <handa@m17n.org>
17929
17930 * font.c (font_find_for_lface): Try the adstyle specified in
17931 the property of LFACE_FONT of LFACE (if any).
17932
17933 2008-06-21 Seiji Zenitani <zenitani@mac.com>
17934 Ryo Yoshitake <ryo@shiftmode.net>
17935
17936 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
17937
17938 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
17939
17940 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
17941 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
17942 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
17943 (witness-emacs): Remove.
17944 (lisp, shortlisp): Move loaddefs.el earlier.
17945 (mostlyclean): Forget about witness-emacs.
17946
17947 2008-06-22 Glenn Morris <rgm@gnu.org>
17948
17949 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
17950 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
17951
17952 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17953
17954 * Makefile.in (PRECOMP): Remove.
17955 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
17956 (witness-emacs): Run `compile-first'.
17957 (.el.elc): Use the new compile-onefile target.
17958
17959 2008-06-21 Kenichi Handa <handa@m17n.org>
17960
17961 * xftfont.c (xftfont_open): Handle QCembolden only when
17962 FC_EMBOLDEN is defined.
17963
17964 2008-06-21 Andreas Schwab <schwab@suse.de>
17965
17966 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
17967 (.el.elc): Likewise.
17968
17969 2008-06-21 Miles Bader <miles@gnu.org>
17970
17971 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
17972 build dir, not the lisp source dir.
17973
17974 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17975
17976 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
17977 (bootstrapclean): Remove.
17978 (.el.elc): New rule.
17979 (PRECOMP): New var.
17980 (../lisp/subdirs.el): Remove.
17981 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
17982 (witness-emacs): New target.
17983 (mostlyclean): Remove witness-emacs as well.
17984 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
17985 Add witness-emacs dependency.
17986
17987 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
17988
17989 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
17990 defined by the font.
17991
17992 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
17993
17994 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
17995 (bootstrap-clean): New target that keeps TAGS around.
17996 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
17997 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
17998
17999 2008-06-20 Jason Rumney <jasonr@gnu.org>
18000
18001 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
18002 Remove obsolete font code.
18003
18004 * w32font.c (font_matches_spec): Use csb bitfield from font signature
18005 to determine language support.
18006
18007 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
18008
18009 * sysdep.c (cfsetspeed): New fun extracted from the code.
18010 (cfmakeraw): Move before first use.
18011
18012 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
18013
18014 * sysdep.c (cfmakeraw): Provide fallback implementation.
18015 (serial_configure): Provide fallback implementation of cfsetspeed.
18016
18017 2008-06-20 Kenichi Handa <handa@m17n.org>
18018
18019 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
18020 the pattern.
18021
18022 * fontset.c (fontset_from_font): Copy font_spec before changing
18023 the elements.
18024
18025 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
18026
18027 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
18028
18029 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
18030 for explicit `font' parameters.
18031
18032 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
18033
18034 2008-06-19 Kenichi Handa <handa@m17n.org>
18035
18036 * frame.c: Include <ctype.h>.
18037 (x_set_font_backend): Allow spacing characters in the X resource
18038 for FontBackend.
18039
18040 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
18041
18042 * w32fns.c, xfns.c (Qfont_param): New var.
18043 (syms_of_w32fns): Initialize it.
18044 (x_default_font_parameter): Record explicit `font' into
18045 `font-parameter'.
18046
18047 2008-06-18 Kenichi Handa <handa@m17n.org>
18048
18049 * font.c (font_parse_xlfd): Fix previous change.
18050 (font_parse_fcname): Don't use :fc-unknown-spec.
18051 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
18052 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
18053 (font_add_log): Prepend the driver name to the resulting fonts.
18054
18055 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
18056 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
18057 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
18058
18059 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
18060 (QCembolden): New variables.
18061 (syms_of_xftfont): DEFSYM them.
18062 (xftfont_open): Call XftFontMatch. Don't trust the result of
18063 XftTextExtents8 if the pixel_size is less than 5.
18064
18065 2008-06-18 Andreas Schwab <schwab@suse.de>
18066
18067 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
18068 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
18069
18070 2008-06-18 Jason Rumney <jasonr@gnu.org>
18071
18072 * w32font.c (w32font_list, w32font_match): Add logging.
18073
18074 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
18075
18076 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
18077
18078 * font.c (font_parse_fcname): Store divider characters for
18079 unknown-spec list. For known key symbols, intern using correct
18080 symbol name.
18081
18082 2008-06-17 Kenichi Handa <handa@m17n.org>
18083
18084 * xfaces.c (realize_default_face): If the frame is not on window
18085 system, set the fontset of face to nil.
18086
18087 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
18088
18089 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
18090
18091 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
18092
18093 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
18094 (build_font_name_from_vector): Delete externs.
18095
18096 * xfaces.c (struct font_name): Don't declare.
18097
18098 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
18099
18100 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
18101
18102 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
18103
18104 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
18105
18106 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
18107
18108 * font.c (Ffont_spec): Fix usage in docstring.
18109 (Ffont_face_attributes): Doc fix.
18110
18111 2008-06-16 Andreas Schwab <schwab@suse.de>
18112
18113 * font.c (Ffont_face_attributes): Fix definition.
18114
18115 2008-06-16 Jason Rumney <jasonr@gnu.org>
18116
18117 * font.h (font_style_symbolic_from_value): Remove.
18118
18119 * font.c (font_style_symbolic_from_value): Remove.
18120 (font_style_symbolic): Revert to pre 2008-06-13 version.
18121
18122 * w32font.c (w32_to_fc_weight): New function.
18123 (w32font_full_name, logfont_to_fcname): Use it.
18124
18125 2008-06-16 Kenichi Handa <handa@m17n.org>
18126
18127 * font.c (font_check_object): Delete it.
18128 (font_clear_cache): Check if a font-object is alive.
18129 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
18130 font-object to nil.
18131 (font_close_object): Don't check FONT_CLOSE_OBJECT.
18132 (font_at): Don't call font_check_object.
18133 (Ffont_get): Return a symbol for :weight, :slant, and :width.
18134
18135 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
18136
18137 * puresize.h (BASE_PURESIZE): Increase to 1230000.
18138
18139 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
18140
18141 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
18142
18143 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
18144
18145 * font.c (font_parse_fcname): Only one decimal point.
18146 (font_unparse_fcname): Handle data in family and foundry indices
18147 as symbols, not strings.
18148 (font_unparse_gtkname, Ffont_face_attributes): New functions.
18149
18150 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
18151
18152 * font.h (font_unparse_gtkname): Add prototype.
18153
18154 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
18155
18156 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
18157
18158 2008-06-15 Andreas Schwab <schwab@suse.de>
18159
18160 * font.c (font_update_drivers): Fix crash when no drivers match.
18161
18162 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18163
18164 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
18165 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
18166
18167 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
18168
18169 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
18170
18171 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
18172
18173 * process.c (Fserial_process_configure, Fprocess_send_eof):
18174 Use EQ to compare Lisp_Objects.
18175
18176 2008-06-13 Jason Rumney <jasonr@gnu.org>
18177
18178 * w32fns.c (Fw32_select_font): Remove old font API function.
18179
18180 * w32font.c (logfont_to_fcname): New function.
18181 (Fx_select_font): New font dialog function compatible with
18182 GTK/fontconfig version.
18183
18184 * font.c (font_style_symbolic_from_value): New function.
18185 (font_style_symbolic): Use it.
18186
18187 * font.h (font_style_symbolic_from_value): Declare new function.
18188
18189 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
18190
18191 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
18192 <font-width-table>: Fix typos in docstrings.
18193
18194 2008-06-13 Daniel Engeler <engeler@gmail.com>
18195
18196 These changes add serial port access.
18197 * process.c: Add HAVE_SERIAL.
18198 (Fdelete_process, Fprocess_status, Fset_process_buffer)
18199 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
18200 (list_processes_1, select_wrapper, Fstop_process)
18201 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
18202 (status_notify): Modify to handle serial processes.
18203 [HAVE_SERIAL] (Fserial_process_configure)
18204 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
18205 New functions.
18206 * process.h (struct Lisp_Process): Add `type'.
18207 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
18208 New functions.
18209 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
18210 serial ports.
18211 (serial_open, serial_configure): New functions.
18212 * w32.h: Add FILE_SERIAL.
18213 (struct _child_process): Add ovl_read, ovl_write.
18214
18215 2008-06-13 Kenichi Handa <handa@m17n.org>
18216
18217 * dispextern.h (enum lface_attribute_index): New member
18218 LFACE_FOUNDRY_INDEX.
18219
18220 * font.c (font_score): Delete arg alternate_families. Check only
18221 weight, slant, width, and size. Ignore the difference of alias
18222 style symbols.
18223 (font_sort_entites): Adjust for the above change. Reflect the
18224 order of font-driver to scores.
18225 (font_list_entities): Don't check alternate_familes here.
18226 (font_clear_prop): Handle foundry.
18227 (font_update_lface): Don't parse "foundry-family" form here.
18228 Handle FONT_FOUNDRY_INDEX.
18229 (font_find_for_lface): Likewise. Handle alternate families here.
18230 If registry is nil, try iso8859-1 and ascii-0.
18231 (font_open_for_lface): Pay attention to size in ENTITY.
18232 (font_open_by_name): Simplify by calling font_load_for_lface.
18233 (free_font_driver_list): Delete it.
18234 (font_update_drivers): Preserve the order of backends.
18235 (syms_of_font): Setting of sort_shift_bits adjusted for the change
18236 of font_score and font_sort_entites.
18237 (font_update_sort_order): Likewise.
18238
18239 * xfaces.c (LFACE_FOUNDRY): New macro.
18240 (check_lface_attrs): Check foundry.
18241 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
18242 (merge_face_vectors): Check foundry.
18243 (merge_face_ref): Likewise.
18244 (Finternal_set_lisp_face_attribute): Likewise.
18245 (x_update_menu_appearance): Likewise.
18246 (Finternal_get_lisp_face_attribute): Likewise.
18247 (lface_hash): Likewise.
18248 (lface_same_font_attributes_p): Likewise.
18249 (x_supports_face_attributes_p): Likewise.
18250 (tty_supports_face_attributes_p): Likewise.
18251 (Finternal_set_alternative_font_family_alist): Intern strings.
18252 (Finternal_set_alternative_font_registry_alist): Downcase strings.
18253 (realize_default_face): Set LFACE_FOUNDRY (lface).
18254
18255 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
18256 font-driver at first.
18257
18258 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
18259
18260 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
18261
18262 * lread.c (Fload): Use xfree, not free on saved_doc_string.
18263
18264 2008-06-12 Jim Meyering <meyering@redhat.com>
18265
18266 Make unexec_free handle NULL the same way free does.
18267 * unexmacosx.c (unexec_free): Ignore a NULL argument.
18268
18269 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
18270
18271 * character.h (CHAR_TO_BYTE_SAFE): New macro.
18272 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
18273 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
18274 (WEAK_ALIAS): Simplify.
18275 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
18276 when searching a unibyte buffer.
18277
18278 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
18279
18280 * xfns.c (Fx_select_font): Rename from x-font-dialog.
18281
18282 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
18283
18284 * w32font.c: Include ctype.h.
18285
18286 2008-06-11 Jason Rumney <jasonr@gnu.org>
18287
18288 * w32font.c (w32font_encode_char): Detect missing glyphs that are
18289 misreported as space.
18290 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
18291 as aliases for registry iso10646-1.
18292
18293 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
18294
18295 * buffer.c (clone_per_buffer_values): Skip `name'.
18296
18297 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
18298
18299 * font.c (font_parse_fcname): Fix last change; accept decimal
18300 points in font size.
18301
18302 2008-06-10 Jason Rumney <jasonr@gnu.org>
18303
18304 * w32uniscribe.c (add_opentype_font_name_to_list):
18305 Skip non unicode fonts.
18306
18307 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
18308
18309 * xfns.c (Fx_font_dialog): New function.
18310
18311 * gtkutil.c (xg_dialog_response_cb): Rename from
18312 xg_file_response_callback.
18313 (pop_down_dialog): Rename from pop_down_file_dialog.
18314 (xg_get_file_name): Callers changed.
18315 (xg_get_font_name): New function.
18316
18317 * gtkutil.h (xg_get_font_name): Insert prototype.
18318
18319 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
18320
18321 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
18322 x_underline_minimum_display_offset.
18323 (syms_of_xdisp): Declare it here rather than in xterm.c.
18324 * dispextern.h (underline_minimum_offset): Declare it.
18325 * w32term.c (x_draw_glyph_string): Use it.
18326 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
18327 (syms_of_xterm): Don't declare it any more.
18328 (x_draw_glyph_string): Adjust to the new name.
18329
18330 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
18331
18332 * xterm.c (x_underline_minimum_display_offset): New var.
18333 (x_draw_glyph_string): Use it.
18334 (syms_of_xterm): Declare it.
18335
18336 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
18337
18338 * font.c (font_parse_fcname): Accept GTK-style font names too.
18339
18340 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
18341
18342 * dired.c (file_name_completion): Don't return t if the match is exact
18343 but with different capitalization.
18344 * minibuf.c (Ftry_completion): Simplify.
18345
18346 * window.c (Vwindow_point_insertion_type): New var.
18347 (set_window_buffer): Use it.
18348 (syms_of_window): Init and export it to Lisp.
18349
18350 2008-06-10 Kenichi Handa <handa@m17n.org>
18351
18352 * font.h (font_intern_prop): Prototype adjusted.
18353
18354 * font.c (font_intern_prop): New arg force_symbol.
18355 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
18356 Adjust for the change of font_intern_prop.
18357
18358 * ftfont.c (ftfont_pattern_entity):
18359 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
18360 (w32_registry):
18361 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
18362 the change of font_intern_prop.
18363
18364 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
18365
18366 * w32menu.c (digest_single_submenu): Declare extern.
18367
18368 2008-06-09 Jason Rumney <jasonr@gnu.org>
18369
18370 * w32term.c (x_make_frame_visible): Use alternate restore flags.
18371
18372 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
18373 (parse_single_submenu): Remove.
18374 (digest_single_submenu): Remove.
18375 (syms_of_w32menu): Don't initialise variables that have moved
18376 to menu.c.
18377 (set_frame_menubar): Sync with version in xmenu.c.
18378 (w32_menu_show): Sync with xmenu_show in xmenu.c.
18379
18380 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
18381 Make static again.
18382
18383 2008-06-09 Jason Rumney <jasonr@gnu.org>
18384
18385 Changes to w32 files related to the move of common menu code
18386 to menu.c on 2008-06-08 by Chong Yidong.
18387
18388 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
18389 defs to w32gui.h.
18390 (single_keymap_panes, push_menu_item, push_menu_pane):
18391 Make globally visible.
18392
18393 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
18394 (local_free, malloc_widget_value, free_widget_value)
18395 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
18396 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
18397 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
18398 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
18399 (menu_items, menu_items_allocated, menu_items_used)
18400 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
18401 (init_menu_items, finish_menu_items, discard_menu_items)
18402 (grow_menu_items, push_submenu_start, push_submenu_end)
18403 (push_left_right_boundary, push_menu_pane, push_menu_item)
18404 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
18405 (free_menubar_widget_tree_value, parse_single_submenu)
18406 (update_submenu_strings): Remove functions.
18407 (xmalloc_widget_value): Remove and declare extern.
18408
18409 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
18410 (OBJ1): Build it.
18411
18412 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
18413 (local_heap, local_alloc, local_free, malloc_widget_value)
18414 (free_widget_value): Define here.
18415
18416 2008-06-09 Kenichi Handa <handa@m17n.org>
18417
18418 * font.h (Qascii_0): Extern it.
18419
18420 * font.c (Qascii_0): New variable.
18421 (syms_of_font): DEFSYM it.
18422 (font_open_by_name): If the registry "iso8859-1" fails, try also
18423 "ascii-0".
18424
18425 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
18426
18427 2008-06-08 Kenichi Handa <handa@m17n.org>
18428
18429 * .gdbinit (xfont): New command.
18430
18431 2008-06-08 Andreas Schwab <schwab@suse.de>
18432
18433 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
18434 * Makefile.in (menu.o): Update dependencies.
18435
18436 * Makefile.in (obj): Always add menu.o.
18437 * emacs.c (main): Always call syms_of_menu.
18438 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
18439
18440 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
18441
18442 * Makefile.in: Compile menu.c.
18443
18444 * lisp.h: Declare syms_of_menu.
18445
18446 * emacs.c (main): Call syms_of_menu.
18447
18448 * keyboard.h: Relocate platform-independent menu definitions from
18449 xmenu.c.
18450
18451 * menu.c: New file. Relocate platform-independent menu
18452 definitions from xmenu.c. Suggested by Adrian Robert.
18453
18454 * xmenu.c: Remove platform-independent menu definitions.
18455 (menu_items, menu_items_inuse, menu_items_allocated)
18456 (menu_items_used, menu_items_n_panes)
18457 (menu_items_submenu_depth): Move to keyboard.h.
18458 (init_menu_items, finish_menu_items, unuse_menu_items)
18459 (discard_menu_items, restore_menu_items, save_menu_items)
18460 (grow_menu_items, push_submenu_start, push_submenu_end)
18461 (push_left_right_boundary, push_menu_pane, push_menu_item)
18462 (keymap_panes, single_keymap_panes, single_menu_item)
18463 (list_of_panes, list_of_items, find_and_call_menu_selection)
18464 (xmalloc_widget_value, free_menubar_widget_value_tree)
18465 (parse_single_submenu, digest_single_submenu)
18466 (update_submenu_strings): Move to menu.c.
18467
18468 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
18469
18470 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
18471
18472 2008-06-06 Miles Bader <miles@gnu.org>
18473
18474 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
18475 face, not frame default.
18476
18477 2008-06-05 Martin Rudalics <rudalics@gmx.at>
18478
18479 * window.c (pop_up_windows, pop_up_frames)
18480 (display_buffer_reuse_frames, Vpop_up_frame_function)
18481 (Vdisplay_buffer_function, Veven_window_heights)
18482 (Vspecial_display_buffer_names, Vspecial_display_regexps)
18483 (Vspecial_display_function, Vsame_window_buffer_names)
18484 (Vsame_window_regexps, split_height_threshold)
18485 (Vsplit_window_preferred_function): Move those vars to window.el.
18486 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
18487 (Fdisplay_buffer): Move those functions to window.el.
18488 (syms_of_window): Remove corresponding declarations.
18489 (display_buffer): New function.
18490 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
18491 * dispnew.c (Flast_nonminibuf_frame): New function.
18492 * buffer.c (Fpop_to_buffer): Move to window.el.
18493
18494 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
18495
18496 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
18497
18498 2008-06-05 Kenichi Handa <handa@m17n.org>
18499
18500 * coding.c (detect_coding): Fix previous change.
18501 (detect_coding_system): Likewise.
18502
18503 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
18504
18505 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
18506
18507 * keymap.c (Vminibuffer_local_filename_must_match_map):
18508 Rename from Vminibuffer_local_must_match_filename_map.
18509 (syms_of_keymap):
18510 * minibuf.c (Fcompleting_read): Adjust accordingly.
18511 * commands.h: Rename declaration as well.
18512
18513 2008-06-05 Kenichi Handa <handa@m17n.org>
18514
18515 * font.c (Ffont_spec): Don't use font_parse_family_registry for
18516 family name.
18517 (Ffont_put): Likewise.
18518
18519 * fontset.c (fontset_find_font): Call font_open_for_lface with the
18520 current font-spec.
18521
18522 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
18523 is unspecified.
18524
18525 * xfaces.c (realize_x_face): If the font-related face attributes
18526 are the same as those of default face, realize a new fontset from
18527 default->fontset.
18528 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
18529
18530 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
18531
18532 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
18533 (move_it_in_display_line): New wrapper.
18534
18535 * window.c (window_scroll_pixel_based_preserve_x)
18536 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
18537 (window_scroll_pixel_based, window_scroll_line_based):
18538 Use them to preserve column positions.
18539 (syms_of_window): Initialize them.
18540
18541 * indent.c (Fvertical_motion): Extend first arg to allow passing an
18542 (HPOS . VPOS) pair.
18543
18544 * dispextern.h (move_it_in_display_line): Declare.
18545
18546 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
18547
18548 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
18549 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
18550 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
18551
18552 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
18553
18554 * window.c (Fset_window_parameter): Doc fix.
18555 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
18556
18557 2008-06-04 Joakim Verona <joakim@verona.se>
18558
18559 * window.h (struct window): Add new member window_parameters.
18560
18561 * window.c (Fwindow_parameters, Fwindow_parameter)
18562 (Fset_window_parameter): New defuns.
18563 (syms_of_window): Defsubr the new defuns.
18564 (make_window): Initialize window_parameters to nil.
18565
18566 2008-06-04 John Paul Wallington <jpw@pobox.com>
18567
18568 * eval.c (Fdefmacro): Doc fix.
18569
18570 2008-06-04 Kenichi Handa <handa@m17n.org>
18571
18572 * coding.c (detect_coding): Fix handling of coding->head_ascii.
18573 Be sure to call setup_coding_system when we find a proper coding system.
18574 (detect_coding_system): Fix handling of coding->head_ascii.
18575
18576 2008-06-03 Andreas Schwab <schwab@suse.de>
18577
18578 * font.c (font_prop_validate_spacing): Fix last change.
18579
18580 2008-06-03 Kenichi Handa <handa@m17n.org>
18581
18582 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
18583 (font_parse_fcname): Fix handling of unknown key.
18584
18585 * xfont.c (xfont_list): Try an alias.
18586
18587 * charset.c (char_charset): Return NULL if the arg charset_list is
18588 specified and C doesn't belong to any of them.
18589
18590 2008-06-02 Chip Coldwell <coldwell@redhat.com>
18591
18592 * font.c (font_pixel_size): Don't take cdr of an integer.
18593
18594 2008-06-02 Jim Meyering <meyering@redhat.com>
18595
18596 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
18597 * alloc.c (xfree): Return right away for a NULL arg.
18598 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
18599 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
18600 * mac.c (create_apple_event_from_event_ref): Likewise.
18601 (create_apple_event_from_drag_ref, cfstring_create_normalized):
18602 Likewise.
18603 * doprnt.c (doprnt1): Likewise.
18604 * frame.c (frame): Likewise.
18605 * keyboard.c (wipe_kboard): Likewise.
18606 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
18607 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
18608 * term.c (tty_default_color_capabilities, maybe_fatal)
18609 (delete_tty): Likewise.
18610 * w16select.c (string): Likewise.
18611 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
18612 * w32bdf.c (w32_free_bdf_font): Likewise.
18613 * w32fns.c (w32_unload_font): Likewise.
18614 * w32font.c (w32font_close): Likewise.
18615 * window.c (size_window): Likewise.
18616 * xselect.c (receive_incremental_selection): Likewise.
18617 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
18618 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
18619 * w32.c (stat): Likewise.
18620
18621 Remove useless if-before-free tests.
18622 * editfns.c (Fset_time_zone_rule): Likewise.
18623 * lread.c (nosuffix): Likewise.
18624 * ralloc.c (get_bloc): Likewise.
18625 * regex.c (reg_free): Likewise.
18626 * xftfont.c (xftfont_open, xftfont_close): Likewise.
18627 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
18628 * xsmfns.c (smc_save_yourself_CB): Likewise.
18629
18630 2008-06-02 Kenichi Handa <handa@m17n.org>
18631
18632 * font.c (font_find_for_lface): Handle float font size.
18633 (font_open_for_lface): Likewise.
18634
18635 * xfaces.c (x_supports_face_attributes_p): Check face->font before
18636 comparing the properties.
18637
18638 2008-06-01 Jason Rumney <jasonr@gnu.org>
18639
18640 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
18641 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
18642 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
18643 Don't add empty script list.
18644 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
18645
18646 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
18647
18648 * Makefile.in (dot, dotdot): Remove, update users.
18649 ".." has been used elsewhere in the file for a long time.
18650 (LIBXT_STATIC): Remove conditional based on unused variable.
18651
18652 2008-06-01 Miles Bader <miles@gnu.org>
18653
18654 * xfaces.c (Vface_remapping_alist): New variable.
18655 (syms_of_xfaces): Initialize it.
18656 (enum named_merge_point_kind): New type.
18657 (struct named_merge_point): Add `named_merge_point_kind' field.
18658 (push_named_merge_point): Make cycle detection respect different
18659 named-merge-point kinds.
18660 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
18661 Remove face-name alias resolution.
18662 (lface_from_face_name): New definition using
18663 `lface_from_face_name_no_resolve'.
18664 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
18665 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
18666 (get_lface_attributes): New definition that layers face-remapping on
18667 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
18668 (lookup_basic_face): New function.
18669 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
18670 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
18671 `get_lface_attributes'.
18672 (face_at_buffer_position): Use `lookup_basic_face' to lookup
18673 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
18674 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
18675
18676 * xdisp.c (init_iterator): Pass base_face_id through
18677 `lookup_basic_face' when we actually use it as a face-id.
18678 (handle_single_display_prop): Use `lookup_basic_face' to lookup
18679 DEFAULT_FACE_ID.
18680
18681 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
18682 lookup the initial face-id.
18683
18684 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
18685
18686 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
18687
18688 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
18689 (Fremove_text_properties): Fix typos in docstrings.
18690
18691 2008-05-31 Kenichi Handa <handa@m17n.org>
18692
18693 * font.c (font_list_entities): Fix the car part of data to be
18694 stored in the cache.
18695
18696 * ftfont.c (ftfont_font_format): Don't use strcasestr.
18697
18698 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18699
18700 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
18701 Add a `test' argument so another predicate than `equal' can be used.
18702 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
18703 (map_char_table): Remove unused vars `c' and `i'.
18704 * lisp.h (Foptimize_char_table): Adjust declaration.
18705 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
18706
18707 2008-05-30 Kenichi Handa <handa@m17n.org>
18708
18709 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
18710 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
18711 defined.
18712
18713 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18714
18715 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
18716 (Fmake_variable_frame_local): Disallow mixing buffer-local and
18717 frame-local settings for the same variable.
18718
18719 2008-05-30 Kenichi Handa <handa@m17n.org>
18720
18721 * fontset.c (Ffont_info): Move to font.c.
18722 (syms_of_fontset): Delete defsubr of Sfont_info.
18723
18724 * font.c (font_style_to_value, font_score): Delete casting of the
18725 args to xstcasecmp.
18726 (register_font_driver): Increment num_font_drivers only when
18727 registering the driver globally.
18728 (Ffont_info): Move from fontset.c. Handle a font object too.
18729 (syms_of_font): Defsubr Sfont_info.
18730
18731 2008-05-29 Kenichi Handa <handa@m17n.org>
18732
18733 * coding.h (enum define_coding_utf8_arg_index): New enum.
18734 (enum coding_attr_index): Change coding_attr_utf_16_bom to
18735 coding_attr_utf_bom.
18736 (enum utf_bom_type): Rename from utf_16_bom_type.
18737 (struct utf_16_spec): Adjust for the above change.
18738 (struct coding_system): Add utf_8_bom in `spec' union.
18739
18740 * coding.c (CODING_UTF_8_BOM): New macro.
18741 (enum coding_category): Delete coding_category_utf_8, add
18742 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
18743 coding_category_utf_8_sig.
18744 (CATEGORY_MASK_UTF_8): Delete it.
18745 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
18746 (CATEGORY_MASK_UTF_8_SIG): New macros.
18747 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
18748 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
18749 CATEGORY_MASK_UTF_8_SIG.
18750 (CATEGORY_MASK_UTF_8): New macro.
18751 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
18752 (detect_coding_utf_8): Check BOM.
18753 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
18754 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
18755 (encode_coding_utf_16): Likewise.
18756 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
18757 (detect_coding, detect_coding_system): Handle utf-8-auto.
18758 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
18759 (syms_of_coding): Fix setting up of Vcoding_category_table.
18760
18761 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
18762
18763 * process.c (Faccept_process_output): If `millisec' is non-nil,
18764 `seconds' default to 0.
18765 (wait_reading_process_output): Also return non-nil if we read output
18766 from a non-running process.
18767
18768 2008-05-29 Jason Rumney <jasonr@gnu.org>
18769
18770 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
18771 `raster' specified.
18772 (add_font_entity_to_list): Allow non-opentype truetype fonts back
18773 in the uniscribe backend, but disallow any font that has no
18774 unicode subrange support.
18775
18776 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
18777
18778 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
18779 Fix typos in docstrings.
18780
18781 2008-05-29 Kenichi Handa <handa@m17n.org>
18782
18783 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
18784 (Fx_family_fonts): Set frame correctly.
18785
18786 2008-05-28 Jason Rumney <jasonr@gnu.org>
18787
18788 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
18789
18790 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18791
18792 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
18793 calling build_annotations.
18794
18795 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
18796
18797 * coding.c (Fdecode_coding_region, Fencode_coding_region)
18798 (Fencode_coding_string):
18799 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
18800 <latin-extra-code-table>: Fix typos in docstrings.
18801 (syms_of_coding) <coding-system-alist>: Doc fix.
18802 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
18803
18804 2008-05-28 Kenichi Handa <handa@m17n.org>
18805
18806 * fontset.c (Ffont_info): Don't call font_close_object.
18807
18808 * font.c (font_parse_family_registry): Use Ffont_put to validate
18809 foundry and family.
18810 (font_delete_unmatched): Don't check spacing.
18811 (font_list_entities): Add spacing to the spec to list fonts.
18812
18813 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
18814 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
18815
18816 * coding.c (encode_coding_raw_text): Fix previous change.
18817 (encode_coding_object): When the dst_object is a buffer and is
18818 different from src_object, move gap to PT.
18819
18820 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
18821
18822 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
18823
18824 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
18825
18826 * coding.c (encode_coding_raw_text): Set coding->produced_char for
18827 all branches. Compute it differently.
18828
18829 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
18830
18831 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
18832
18833 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
18834 into "else if () ... else ...".
18835
18836 2008-05-27 Jason Rumney <jasonr@gnu.org>
18837
18838 * w32font.c (w32font_open_internal): Determine if glyph indices
18839 are likely to work here.
18840
18841 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
18842
18843 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
18844 draw overlap glyphs with appropriate highlighting.
18845
18846 2008-05-27 Kenichi Handa <handa@m17n.org>
18847
18848 * xfont.c (xfont_open): Fix calculation of font->average_width.
18849
18850 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
18851
18852 * casefiddle.c (casify_object): Try to guess better whether the
18853 argument is a byte or a char.
18854
18855 2008-05-26 Andreas Schwab <schwab@suse.de>
18856
18857 * xselect.c (x_reply_selection_request): Properly handle format == 32.
18858 Always send multiples of format size.
18859
18860 * xterm.c (x_set_frame_alpha): Fix type mismatch.
18861
18862 2008-05-26 Jason Rumney <jasonr@gnu.org>
18863
18864 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
18865 (compute_metrics): Don't set failure if we just cleared the cache.
18866 (w32_weight_table): Remove unused variable.
18867 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
18868 backwards compatibility.
18869
18870 2008-05-25 Kenichi Handa <handa@m17n.org>
18871
18872 * w32term.c (x_draw_glyph_string):
18873 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
18874
18875 * xfaces.c: Delete unused function prototypes.
18876 (xstrlwr, font_frame): Delete them.
18877 (clear_face_cache): Delete unused variable.
18878
18879 * xftfont.c (xftfont_open): Delete unused variable.
18880 If underline_thickness is not 1, adjust underline_position.
18881
18882 * ftxfont.c (ftxfont_open): Delete unused variable.
18883
18884 * fontset.c (face_for_char): Optimize for the case of no charset
18885 property.
18886
18887 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
18888 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
18889 (otf_open, font_otf_capability, generate_otf_features)
18890 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
18891 Comment out by surrounding "#if 0" and "#endif" for the moment.
18892 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
18893 (syms_of_font): Codes for accessing above commented out.
18894
18895 2008-05-24 Eli Zaretskii <eliz@gnu.org>
18896
18897 * w32proc.c: Include dispextern.h.
18898
18899 * w32.c: Include dispextern.h.
18900
18901 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
18902
18903 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
18904 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
18905 Fix typos in docstrings.
18906
18907 2008-05-23 Jason Rumney <jasonr@gnu.org>
18908
18909 * xsmfns.c: Remove includes that are already included by config.h.
18910
18911 2008-05-23 Kenichi Handa <handa@m17n.org>
18912
18913 * charset.c (Qemacs, charset_emacs): New variables.
18914 (char_charset): Fix for non-Unicode characters.
18915 (syms_of_charset): Define charset_emacs.
18916
18917 * w32term.c (x_draw_glyph_string): Be sure to update
18918 s->underline_thickness and s->underline_position. Be sure to draw
18919 underline within the current line area.
18920
18921 * xterm.c (x_draw_glyph_string): Be sure to update
18922 s->underline_thickness and s->underline_position. Be sure to draw
18923 underline within the current line area.
18924
18925 * fontset.c: Delete unused variables and add casting for char *
18926 throughout the file.
18927 (fontset_font): Try the fallback fonts of the current fontset
18928 before consulting the default fontset.
18929
18930 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
18931
18932 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
18933
18934 2008-05-22 Jason Rumney <jasonr@gnu.org>
18935
18936 * font.c: Don't include strings.h.
18937
18938 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
18939
18940 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
18941 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
18942 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
18943 to call xstrcasecmp.
18944
18945 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
18946
18947 * fontset.c (fs_query_fontset): Use xstrcasecmp.
18948
18949 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
18950
18951 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
18952
18953 2008-05-22 Kenichi Handa <handa@m17n.org>
18954
18955 * puresize.h (BASE_PURESIZE): Increase to 1220000.
18956
18957 * font.c (font_prop_validate_style): Adjust for the format
18958 change of font_style_table.
18959
18960 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
18961 two args.
18962
18963 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
18964 two args.
18965
18966 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18967
18968 * minibuf.c (keys_of_minibuf): Delete.
18969 * lisp.h (keys_of_minibuf): Delete.
18970 * emacs.c (main): Don't call keys_of_minibuf.
18971
18972 2008-05-22 Kenichi Handa <handa@m17n.org>
18973
18974 * ftfont.c (ftfont_resolve_generic_family): Rename from
18975 ftfont_list_generic_family. Return a single family for each
18976 generic family.
18977 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
18978 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
18979 Call font_add_log.
18980 (ftfont_match): Call font_add_log.
18981
18982 * font.h (Ffont_xlfd_name): EXFUN adjusted.
18983 (FONT_DEBUG): Define it.
18984 (font_add_log): Extern it.
18985 (font_assert): Rename from xassert.
18986
18987 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
18988 (xfont_list_family): Call font_add_log.
18989 (xfont_match): Likewise.
18990 (memq_no_quit): Delete.
18991
18992 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
18993 call of Ffont_xlfd_name.
18994
18995 * xfaces.c (struct table_entry, slant_table, weight_table)
18996 (swidth_table): Move to font.c.
18997
18998 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
18999 xassert are changed to font_assert. Delete many unused variables.
19000 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
19001 New variables.
19002 (struct table_entry): Move from xfaces.c and modified.
19003 (weight_table, slant_table, width_table): Move from xfaces.c and
19004 contents adjusted for the change of struct table_entry.
19005 (font_style_to_value, font_style_symbolic): Adjust for the
19006 format change of font_style_table.
19007 (font_parse_family_registry): Don't overwrite existing foundry and
19008 family of font_spec.
19009 (font_score): Fix calculation of diff for sizes.
19010 (font_sort_entites): Call font_add_log.
19011 (font_delete_unmatched): Return a newly created list.
19012 (font_list_entities): Fix previous change. Call font_add_log.
19013 (font_matching_entity, font_open_entity, font_close_entity):
19014 Call font_add_log.
19015 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
19016 (Finternal_set_font_style_table): Delete.
19017 (BUILD_STYLE_TABLE): New macro.
19018 (build_style_table): New function.
19019 (Vfont_log, font_log_env_checked): New variables.
19020 (font_add_log): New function.
19021 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
19022 Declare Lisp variables "font-weight-table", "font-slant-table",
19023 "font-width-table", and "font-log". Initialize font_style_table.
19024
19025 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
19026
19027 * xterm.c (x_set_frame_alpha): Move declarations before statements.
19028
19029 2008-05-21 Seiji Zenitani <zenitani@mac.com>
19030 Ryo Yoshitake <ryo@shiftmode.net>
19031
19032 * frame.c (Qalpha): Add a new frame parameter `alpha'.
19033 (Vframe_alpha_lower_limit): New variable.
19034 (x_set_alpha): New function.
19035
19036 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
19037
19038 * xfns.c (x-create-frame, Qalpha):
19039 Initialize the frame parameter `alpha'.
19040 * xterm.c (OPAQUE, OPACITY): New.
19041 (x_set_frame_alpha): New function.
19042 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
19043
19044 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
19045 * w32fns.c (w32_frame_parm_handlers): Likewise.
19046
19047 2008-05-20 Jason Rumney <jasonr@gnu.org>
19048
19049 * w32font.c (add_font_entity_to_list): Don't add non-opentype
19050 truetype fonts to opentype list.
19051
19052 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
19053
19054 * fontset.c (Ffontset_info): Doc fix.
19055 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
19056 <ignore-relative-composition>: Fix typos in docstrings.
19057
19058 * font.c (syms-of-font) <font-encoding-alist>:
19059 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
19060 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
19061 (Ffont_otf_alternates): Doc fixes.
19062
19063 2008-05-20 Kenichi Handa <handa@m17n.org>
19064
19065 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
19066 font.h through out the file.
19067 (FONT_DRIVERS): Rename from FONTOBJ.
19068 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
19069 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
19070
19071 * emacs.c (main): Call syms_of_font unconditionally.
19072
19073 * font.h (find_font_encoding): Extern it.
19074
19075 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
19076 fontset.c.
19077 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
19078 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
19079 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
19080 only when HAVE_WINDOW_SYSTEM is defined.
19081 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
19082 when HAVE_WINDOW_SYSTEM is defined.
19083
19084 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
19085 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
19086
19087 * xfaces.c: Include font.h unconditionally.
19088 (merge_face_ref, merge_face_vectors)
19089 (Finternal_set_lisp_face_attribute): Cancel the previous change.
19090
19091 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
19092
19093 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
19094 indirect_variable.
19095 * eval.c (lisp_indirect_variable): New fun.
19096 (Fuser_variable_p): Use it.
19097
19098 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
19099
19100 * lisp.h (indirect_variable):
19101 * data.c (indirect_variable, let_shadows_buffer_binding_p):
19102 Use Lisp_Symbol pointers rather than Lisp_Object.
19103 Adjust callers.
19104 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
19105 To this end, change calling-convention.
19106
19107 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
19108 if some non-hidden buffers are selected by string&pred.
19109
19110 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
19111
19112 * process.c (wait_reading_process_output): Always check status
19113 when in batch mode.
19114
19115 2008-05-19 Kenichi Handa <handa@m17n.org>
19116
19117 * font.c (font_list_entities): Fix handling of cache.
19118 (font_matching_entity): Likewise.
19119
19120 * ftfont.c (cs_iso8859_1): Delete.
19121 (ft_face_cache): New variable.
19122 (struct ftfont_info): New member fc_charset_idx.
19123 (ftfont_build_basic_charsets): Delete.
19124 (fc_charset_table): New variable.
19125 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
19126 . FC_CHARSET_IDX) as :font-entity property in the font entity.
19127 Callers changed.
19128 (ftfont_lookup_cache, ftfont_get_charset): New functions.
19129 (ftfont_spec_pattern): New argument fc_charset_idx.
19130 Check registry more rigidly. Change callers.
19131 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
19132 change of :font-entity property of the font.
19133
19134 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
19135 property of the font.
19136
19137 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
19138
19139 * coding.c (Fcoding_system_p): Rename argument to match docstring.
19140 (Funencodable_char_position, Fcheck_coding_systems_region)
19141 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
19142 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
19143 (Ffind_operation_coding_system, Fset_coding_system_priority)
19144 (Fcoding_system_eol_type): Doc fixes.
19145
19146 2008-05-17 Glenn Morris <rgm@gnu.org>
19147
19148 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
19149
19150 2008-05-16 Eli Zaretskii <eliz@gnu.org>
19151
19152 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
19153 and st_gid.
19154
19155 * frame.c (Fdelete_frame): Don't call font_update_drivers if
19156 HAVE_WINDOW_SYSTEM is not defined.
19157
19158 * xfaces.c (merge_face_ref, merge_face_vectors)
19159 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
19160 HAVE_WINDOW_SYSTEM is defined.
19161 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
19162
19163 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
19164
19165 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
19166
19167 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19168
19169 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
19170
19171 2008-05-15 Kenichi Handa <handa@m17n.org>
19172
19173 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
19174 preference.
19175
19176 2008-05-15 Glenn Morris <rgm@gnu.org>
19177
19178 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
19179
19180 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
19181
19182 * fns.c (init_fns): Don't initialize weak_hash_tables here.
19183 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
19184
19185 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
19186
19187 2008-05-15 Kenichi Handa <handa@m17n.org>
19188
19189 * ftfont.c (ftfont_list): Downcase family name to check generic
19190 families.
19191
19192 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
19193 font-spec for QCfont value.
19194
19195 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
19196 buffer. Check the return value of it.
19197
19198 2008-05-14 Jason Rumney <jasonr@gnu.org>
19199
19200 * w32term.c (w32_get_glyph_overhangs): Remove.
19201 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
19202
19203 2008-05-14 Kenichi Handa <handa@m17n.org>
19204
19205 * font.c (font_prop_validate): Make nil a valid value.
19206 (font_clear_cache): Check if the cached vector of entities is nil
19207 or not.
19208
19209 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19210
19211 * emacs.c (main_thread): Conditionalize on
19212 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
19213 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
19214
19215 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
19216 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
19217 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
19218
19219 2008-05-14 Kenichi Handa <handa@m17n.org>
19220
19221 * coding.c (detect_coding_iso_2022): Ignore a coding category that
19222 has no corresponding coding system.
19223
19224 2008-05-14 Jason Rumney <jasonr@gnu.org>
19225
19226 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
19227
19228 * w32font.h (w32font_open_internal): Update declaration.
19229
19230 * w32font.c (w32font_open_internal): Change last argument from
19231 w32font_info struct to font object. Fill in font object from
19232 font_entity. Get Outline metrics if possible. Use them to
19233 calculate underline position and thickness. Use xlfd name as name
19234 property. Don't set codepage.
19235 (w32font_open): Pass font_object to w32font_open_internal. Don't
19236 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
19237 (w32font_draw): Use s->font.
19238 (clear_cached_metrics): Don't clear non-existent blocks.
19239
19240 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
19241 font was not found.
19242 (x_draw_glyph_string): Use underline position and thickness from font.
19243
19244 * w32uniscribe.c (uniscribe_open): Pass font_object to
19245 w32font_open_internal.
19246
19247 2008-05-14 Kenichi Handa <handa@m17n.org>
19248
19249 These changes are to delete all legacy font-handling codes, and
19250 make Emacs use only font-backends.
19251
19252 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
19253 (frame.o, image.o, print.o): Depend on $(FONTSRC).
19254
19255 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
19256
19257 * charset.h (Vcharset_non_preferred_head)
19258 (Vcurrent_iso639_language): Extern them.
19259
19260 * charset.c (Vcharset_non_preferred_head): New variable.
19261 (Vcurrent_iso639_language): New variable.
19262 (syms_of_charset): Declare it as a Lisp variable.
19263 (char_charset): Don't check non preferred charsets. As a last
19264 resort, return charset_unicode.
19265 (Fset_charset_priority): Update Vcharset_non_preferred_head.
19266
19267 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
19268 conditionals. Don't check enable_font_backend. Delete all codes
19269 used only when USE_FONT_BACKEND is not defined.
19270
19271 * dispextern.h (struct glyph_string): Change type of `font' to
19272 `struct font *'.
19273 (struct glyph_string): New member underline_position and
19274 underline_thickness.
19275 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
19276 (struct face): Change type of `font' to `struct font *'.
19277 Remove members `font_name', `font_info_id'.
19278 (per_char_metric, encode_char): Delete externs.
19279 (calc_pixel_width_or_height): Adjust the prototype.
19280
19281 * emacs.c (enable_font_backend): Delete extern.
19282 (main): Don't set enable_font_backend. Don't check the command
19283 line argument "-disable-font-backend".
19284
19285 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
19286 (enum font_property_index): New members FONT_DPI_INDEX,
19287 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
19288 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
19289 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
19290 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
19291 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
19292 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
19293 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
19294 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
19295 (struct font_spec, struct font_entity): New structs.
19296 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
19297 (struct font): Many members from old "struct font_info" moved to
19298 here. Members font and entity deleted.
19299 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
19300 the new font-related objects.
19301 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
19302 (CHECK_FONT_GET_OBJECT): Likewise.
19303 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
19304 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
19305 (struct font_driver): New members case_sensitive anc check.
19306 Type of the member list and open changed.
19307 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
19308 (font_symbolic_width, font_find_object, font_get_spec)
19309 (font_set_lface_from_name): Delete extern.
19310 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
19311
19312 * font.c: Include <strings.h>.
19313 (enable_font_backend): Delete it.
19314 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
19315 (CHECK_VALIDATE_FONT_SPEC): Delete it.
19316 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
19317 (null_string): Delete it.
19318 (null_vector): Make it static.
19319 (font_family_alist): Delete it.
19320 (Qnormal): Extern it.
19321 (QCextra, QClanguage): Delete it.
19322 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
19323 (font_make_spec, font_make_entity, font_make_object)
19324 (font_intern_prop): Rename from intern_downcase. Don't downcase
19325 the string. Callers changed.
19326 (font_pixel_size): Adjust for the format change of font-related
19327 objects.
19328 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
19329 (font_style_to_value, font_style_symbolic): New function.
19330 (build_font_family_alist): Delete it.
19331 (font_registry_charsets): Use Fassoc_string instead of
19332 assq_no_quit.
19333 (font_prop_validate_symbol): Don't return null_string.
19334 (font_prop_validate_style): Adjust for the change of
19335 style-related values in a font vector.
19336 (font_property_table): Delete entries for QClanguage and
19337 QCantialias, add entries for QCavgwidth.
19338 (get_font_prop_index): Delete the 2nd argument FROM.
19339 (font_prop_validate): Arguments changed.
19340 (font_put_extra): Adjust for the change of font-related objects.
19341 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
19342 (font_parse_fcname, font_unparse_fcname)
19343 (font_prepare_composition): Likewise.
19344 (font_parse_family_registry): Rename from font_merge_old_spec.
19345 (otf_open): Delete the 1st arg entity.
19346 (font_otf_capability): Adjust for the above change.
19347 (font_score): New arg alternate_families. Adjusted for the change
19348 of font-related objects.
19349 (font_sort_entites): New arg best_only.
19350 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
19351 Delete them.
19352 (font_match_p): Check alternate families.
19353 (font_find_object): Delete it.
19354 (font_check_object): New function.
19355 (font_clear_cache): Adjust for the change of font-related objects.
19356 (font_delete_unmatched): New arg.
19357 (font_list_entities): Call font_driver->list with a spec that
19358 doesn't specify style-related properties.
19359 (font_matching_entity): Arguments changed. Caller changed.
19360 (font_open_entity): Adjust for the change of font-related objects.
19361 (font_close_object, font_has_char, font_encode_char)
19362 (font_get_name, font_get_spec): Likewise.
19363 (font_spec_from_name, font_clear_prop, font_update_lface):
19364 New functions.
19365 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
19366 (font_prepare_for_face, font_done_for_face, font_open_by_name)
19367 (font_at): Adjust for the change of font-related objects.
19368 (font_range): New function.
19369 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
19370 (Ffont_xlfd_name): Adjust for the change of font-related objects.
19371 (Fcopy_font_spec, Fmerge_font_spec): New function.
19372 (Ffont_family_list): Rename from list-families.
19373 (Finternal_set_font_style_table): Arguments changed.
19374 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
19375 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
19376 change of font-related objects.
19377 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
19378
19379 * fontset.h (struct font_info): Delete it. Most members go to
19380 struct font.
19381 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
19382 (enum FONT_SPEC_INDEX): Delete it.
19383 (font_info, list_fonts_func, load_font_func, query_font_func)
19384 (set_frame_fontset_func, find_ccl_program_func)
19385 (get_font_repertory_func, new_fontset_from_font_name):
19386 Delete externs.
19387 (fontset_from_font_name): Extern it.
19388 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
19389 (FONT_INFO_FROM_FACE): Deleted.
19390 (face_for_font): Adjust prototype.
19391
19392 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
19393 conditionals. Don't check enable_font_backend. Delete all codes
19394 used only when USE_FONT_BACKEND is not defined.
19395 (get_font_info_func, list_font_func, load_font_func)
19396 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
19397 (get_font_repertory_func): Delete them.
19398 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
19399 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
19400 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
19401 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
19402 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
19403 (fontset_compare_rfontdef): New function.
19404 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
19405 rfont-defs by qsort. Adjusted for the change of font-group vector.
19406 (load_font_get_repertory): Deleted.
19407 (fontset_find_font): Use new macros to ref/set elements of
19408 font-def and rfont-def.
19409 (fontset_font): Fix the timing of remembering that no font for C.
19410 (free_face_fontset): Do nothing if the face has no fontset.
19411 (face_suitable_for_char_p): Use new macros to ref/set elements of
19412 rfont-def.
19413 (face_for_char): Likewise. Call face_for_char with font_object.
19414 (fs_load_font): Delete. Delete #pragma surrounding it.
19415 (fs_query_fontset): Use strcasecmp instead of strcmp.
19416 (generate_ascii_font_name): Adjust for the format change of
19417 font-spec.
19418 (Fset_fontset_font): Likewise. Use new macros to set elements of
19419 font-def.
19420 (Fnew_fontset): Use font_unparse_xlfd to generate
19421 FONTSET_ASCII (fontset).
19422 (new_fontset_from_font_name): Deleted.
19423 (fontset_from_font): Rename from new_fontset_from_font. Check if
19424 a fontset is already created for the font. FIx updating of
19425 Vfontset_alias_alist.
19426 (fontset_ascii_font): Deleted.
19427 (Ffont_info): Adjust for the format change of font-spec.
19428 (Finternal_char_font): Likewise.
19429 (Ffontset_info): Likewise.
19430 (syms_of_fontset): Don't check load_font_func.
19431
19432 * fns.c (internal_equal): Handle PREV_FONT.
19433
19434 * frame.h: Delete USE_FONT_BACKEND conditional.
19435
19436 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
19437 conditionals. Don't check enable_font_backend. Delete all codes
19438 used only when USE_FONT_BACKEND is not defined.
19439 (x_set_font): Call x_new_font, not x_new_fontset2.
19440 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
19441 already set for the frame.
19442
19443 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
19444 Make a font-entity by font_make_entity. Use font_intern_prop instead
19445 of intern_downcase. Use FONT_SET_STYLE to set a style-related
19446 font property. If a font is scalable, set avgwidth property to 0.
19447 Set font-entity property by font_put_extra.
19448 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
19449 (ffont_driver): Adjust for the change of struct font_driver.
19450 (ftfont_spec_pattern): New function.
19451 (ftfont_list): Return a list, not vector.
19452 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
19453 (ftfont_list_family): Don't downcase names.
19454 (ftfont_free_entity): Deleted.
19455 (ftfont_open): Return a font-object. Adjusted for the change of
19456 struct font. Get underline_thickness and underline_position from
19457 font property. Don't update dpyinfo->smallest_font_height and
19458 dpyinfo->smallest_char_width.
19459 (ftfont_close): Don't free `struct font'.
19460 (ftfont_has_char): Adjust for the format change of font-entity.
19461 (ftfont_encode_char, ftfont_text_extents): Likewise.
19462
19463 * ftxfont.c (ftxfont_list): Return a list, not vector.
19464 (ftxfont_open): Return a font-object. Adjusted for the change of
19465 struct font. Get underline_thickness and underline_position from
19466 font property. Don't update dpyinfo->smallest_font_height and
19467 dpyinfo->smallest_char_width.
19468 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
19469 (ftxfont_draw): Adjust for the change of struct font.
19470
19471 * image.c (image_ascent): Don't include "charset.h".
19472 Include "character.h" and "font.h".
19473
19474 * lisp.h (enum pvec_type): New member PREV_FONT.
19475 (Fassoc_string): EXFUN it.
19476
19477 * print.c: Include font.h.
19478 (print_object): Handle font-related objects.
19479
19480 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
19481 conditionals. Don't check enable_font_backend. Delete all codes
19482 used only when USE_FONT_BACKEND is not defined.
19483 (handle_auto_composed_prop): Do nothing if it->f is not on a
19484 window system. Check how many following characters can be
19485 displayed by the same font.
19486 (calc_pixel_width_or_height): Type of the 4th arg is changed to
19487 'struct font *'.
19488 (get_char_face_and_encoding): Assign the whole encoding task to
19489 the `encode-char' method of a font driver.
19490 (fill_composite_glyph_string): Adjust for the change of `struct
19491 face' and `struct glyph_string'.
19492 (fill_glyph_string): Likewise.
19493 (get_per_char_metric): Arguments changed.
19494 (x_get_glyph_overhangs): Adjust for the change of `struct face'
19495 and `struct glyph_string'.
19496 (produce_stretch_glyph, calc_line_height_property)
19497 (x_produce_glyphs): Likewise.
19498
19499 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
19500 conditionals. Don't check enable_font_backend. Delete all codes
19501 used only when USE_FONT_BACKEND is not defined.
19502 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
19503 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
19504 (Qp): Extern them.
19505 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
19506 Deleted.
19507 (struct font_name): Deleted.
19508 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
19509 (compare_fonts_by_sort_order): New function.
19510 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
19511 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
19512 Deleted.
19513 (Fx_family_fonts): Use font_list_entities, and sort fonts by
19514 compare_fonts_by_sort_order.
19515 (Fx_font_family_list): Call Ffont_family_list.
19516 (face_numeric_value, face_numeric_weight, face_numeric_slant)
19517 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
19518 (face_symbolic_slant, face_symbolic_swidth)
19519 (split_font_name_into_vector, build_font_name_from_vector)
19520 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
19521 (font_rescale_ratio, split_font_name, build_font_name)
19522 (free_font_names, sort_fonts, x_face_list_fonts)
19523 (face_font_available_p, sorted_font_list, cmp_font_names)
19524 (font_list_1, concat_font_list, font_list, remove_duplicates):
19525 Deleted.
19526 (Fx_list_fonts): Use Ffont_list.
19527 (LFACE_AVGWIDTH): Deleted.
19528 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
19529 by FONTP.
19530 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
19531 (set_lface_from_font_name): Delete it.
19532 (set_lface_from_font): Rename from
19533 set_lface_from_font_and_fontset. Caller changed. Don't set
19534 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
19535 for face.
19536 (merge_face_vectors): Copy font-spec if necessary.
19537 Clear properties of the font-spec if necessary.
19538 (merge_face_ref): Clear properties of the font-spec if necessary.
19539 (Finternal_set_lisp_face_attribute): Likewise.
19540 (set_font_frame_param): Use font_load_for_lface to load a
19541 font-object, and call Fmodify_frame_parameters with it.
19542 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
19543 font name by Ffont_xlfd_name.
19544 (Finternal_lisp_face_attribute_values): Don't check QCweight,
19545 QCslant, and QCwidth.
19546 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
19547 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
19548 Compare fonts by EQ.
19549 (lookup_non_ascii_face): Deleted.
19550 (face_for_font): The 2nd argument changed.
19551 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
19552 Check atomic font properties by case insensitive.
19553 (realize_non_ascii_face): Set face->overstrike correctly.
19554 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
19555 (dump_realized_face): Get font name from
19556 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
19557
19558 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
19559 conditionals. Don't check enable_font_backend. Delete all codes
19560 used only when USE_FONT_BACKEND is not defined.
19561 (xic_create_xfontset): Original code deleted and renamed from
19562 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
19563 (x_make_gc): Don't set GCFont in GCs.
19564 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
19565 opened by "fixed".
19566 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
19567 find_ccl_program_func, query_font_func, set_frame_fontset_func,
19568 get_font_repertory_func.
19569
19570 * xfont.c: Include <stdlib.h> and "ccl.h".
19571 (struct xfont_info): New structure.
19572 (xfont_query_font): Deleted.
19573 (xfont_find_ccl_program): Rename from x_find_ccl_program and
19574 moved from xterm.c.
19575 (xfont_driver): Adjust for the change of struct font_driver.
19576 (compare_font_names): New function.
19577 (xfont_list_pattern): Sort font names case insensitively.
19578 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
19579 (xfont_list): Return a list, not vector.
19580 (xfont_match): If the font doesn't have QCname property, generate
19581 a name from the other font properties.
19582 (xfont_open): Return a font-object. Adjusted for the change of
19583 struct font. Get underline_thickness and underline_position from
19584 font property. Don't update dpyinfo->smallest_font_height and
19585 dpyinfo->smallest_char_width.
19586 (xfont_close): Don't free struct font.
19587 (xfont_prepare_face): Adjust for the change of struct font.
19588 (xfont_done_face): Deleted.
19589 (xfont_has_char): Adjust for the change of struct font.
19590 (xfont_encode_char, xfont_draw): Likewise.
19591 (xfont_check): New function.
19592
19593 * xftfont.c (xftfont_list): Adjust for the change of `list'
19594 callback function.
19595 (xftfont_match): Adjust for the format change of font-entity.
19596 (xftfont_open): Adjust for the format change of font-entity and
19597 font-object. Adjusted for the change of struct font. Return a
19598 font-object. Don't update dpyinfo->smallest_font_height and
19599 dpyinfo->smallest_char_width.
19600 (xftfont_close): Block input while calling XftFontClose.
19601 (xftfont_prepare_face): Don't block input while calling
19602 xftfont_get_colors. Adjusted for the change of struct font.
19603 (xftfont_shape): Return value of error case fixed.
19604
19605 * xrdb.c (x_load_resources): Don't setup a fontset resource.
19606
19607 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
19608 conditionals.
19609 (FONT_WIDTH): Return (f)->max_width.
19610 (struct x_display_info): Delete member `font'.
19611 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
19612 (x_find_ccl_program, x_get_font_repertory): Delete externs.
19613 (struct x_output): Change type of `font' to `struct font *'.
19614
19615 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
19616 conditionals. Don't check enable_font_backend. Delete all codes
19617 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
19618 (x_per_char_metric, x_encode_char): Deleted.
19619 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
19620 (x_compute_glyph_string_overhangs): Adjust for the change of
19621 `struct face'.
19622 (x_draw_glyph_string_foreground)
19623 (x_draw_composite_glyph_string_foreground): Likewise.
19624 (x_draw_glyph_string): Likewise. Use font->underline_position and
19625 font->underline_thickness.
19626 (x_new_font): Rename from x_new_fontset2.
19627 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
19628 (x_check_font): Call `check' method of a font driver.
19629 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
19630 (x_query_font, x_get_font_repertory): Deleted.
19631 (x_find_ccl_program): Rename and moved to xfont.c.
19632 (x_redisplay_interface): Adjust for the change of `struct
19633 redisplay_interface'.
19634
19635 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
19636 conditionals. Don't check enable_font_backend. Delete all codes
19637 used only when USE_FONT_BACKEND is not defined. Surround non-used
19638 code by "#ifdef OLD_FONT" and "endif".
19639 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
19640
19641 * w32font.h (struct w32font_info): New member.
19642 (FONT_COMPAT): New macro.
19643 (w32font_open_internal): Prototype adjusted.
19644
19645 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
19646 OLD_FONT" and "endif".
19647
19648 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
19649 conditionals. Don't check enable_font_backend. Delete all codes
19650 used only when USE_FONT_BACKEND is not defined.
19651 (w32font_open): Return a font-object. Make a font-object by
19652 font_make_object. Adjusted for the change of struct w32font_info.
19653 (w32font_close): Don't free struct font. Adjusted for the change
19654 of struct w32font_info.
19655 (w32font_encode_char, w32font_text_extents, w32font_draw):
19656 Adjust for the change of struct w32font_info.
19657 (w32font_draw): Likewise.
19658 (w32font_list_internal): Return a list, not vector.
19659 (w32font_open_internal): Change the 4th arg to font-object.
19660 Adjusted for the change of struct w32font_info and font-object format.
19661 (add_font_name_to_list): Don't downcase names.
19662 (w32_enumfont_pattern_entity): Make a font-entity by
19663 font_make_entity. Adjusted for the format change of font-entity.
19664 Use FONT_SET_STYLE to set a style-related font property. If a
19665 font is scalable, set avgwidth property to 0. Set font-entity
19666 property by font_put_extra.
19667 (font_matches_spec): Adjust for the format change of font-entity.
19668 (w32_weight_table, w32_decode_weight): New variables.
19669 (w32_encode_weight): New function.
19670 (fill_in_logfont): Adjust for the format change of font-spec.
19671 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
19672 weight value.
19673 (w32font_driver): Adjust for the change of struct font_driver.
19674
19675 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
19676 conditionals. Don't check enable_font_backend. Surround non-used
19677 code by "#ifdef OLD_FONT" and "endif".
19678 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
19679 (FONT_AVG_WIDTH): Adjust for the change of struct font.
19680
19681 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
19682 conditionals. Don't check enable_font_backend. Delete all codes
19683 used only when USE_FONT_BACKEND is not defined. Surround non-used
19684 code by "#ifdef OLD_FONT" and "endif".
19685
19686 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
19687 (uniscribe_open): Return value changed to font-object.
19688 Adjusted for the format change of font-object.
19689 (uniscribe_otf_capability): Adjust for the change of struct font.
19690 (add_opentype_font_name_to_list): Don't downcase names.
19691 (uniscribe_font_driver): Adjust for the change of struct
19692 font_driver.
19693
19694 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
19695
19696 * dispnew.c (update_frame_1): Check if tty output is still valid
19697 before flushing it.
19698
19699 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
19700
19701 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
19702 to Gtk+ menus.
19703
19704 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19705
19706 * dired.c (file_name_completion): Tweak the code so as to always do it
19707 in a single pass. Tighten the scope of some variables.
19708
19709 * dired.c (Qdefault_directory): New var.
19710 (file_name_completion): Use it instead of Fexpand_file_name.
19711 (syms_of_dired): Initialize it.
19712
19713 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19714
19715 * fileio.c (double_dollars): Remove dead code.
19716
19717 2008-05-10 Eli Zaretskii <eliz@gnu.org>
19718
19719 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
19720 Mention w32-get-true-file-attributes in doc string.
19721
19722 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
19723
19724 2008-05-09 Glenn Morris <rgm@gnu.org>
19725
19726 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
19727 2008-04-23.
19728
19729 2008-05-09 Eli Zaretskii <eliz@gnu.org>
19730
19731 Support for reporting owner and group of each file on MS-Windows:
19732 * dired.c (stat_uname, stat_gname): New functions, with special
19733 implementation for w32.
19734 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
19735
19736 * w32.c: Rename the_passwd_* to dflt_passwd_*.
19737 (dflt_group_name): New static variable.
19738 (dflt_group): Rename from the_group.
19739 (init_user_info): Init dflt_group fields. Get user's group name
19740 from LookupAccountSid.
19741 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
19742 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
19743 New initialization states.
19744 (globals_of_w32): Initialize them to zero. Initialize the default
19745 group name to "None".
19746 (GetFileSecurity_Name): New global var, the name of the function
19747 to call for GetFileSecurity.
19748 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
19749 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
19750 (get_file_security, get_security_descriptor_owner)
19751 (get_security_descriptor_group, is_valid_sid)
19752 (get_file_security_desc, get_rid, get_name_and_id)
19753 (get_file_owner_and_group): New functions.
19754 (stat): Use get_file_security_desc and get_file_owner_and_group to
19755 report the owner and primary group of each file. Don't ignore the
19756 high 32 bits of file's size, now that st_size is 64-bit wide.
19757 Fix test when to get true file attributes.
19758 (init_user_info): Use get_rid instead of equivalent inline code.
19759 (fstat): Don't ignore the high 32 bits of file's size.
19760
19761 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
19762
19763 * image.c (png_load): Use correct bit-depth for setting background
19764 color.
19765
19766 2008-05-08 Eli Zaretskii <eliz@gnu.org>
19767
19768 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
19769 epa-hook.elc.
19770
19771 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
19772
19773 * font.c (Ffont_match_p): Don't use `iff' in docstring.
19774
19775 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
19776
19777 * macfns.c (Fx_create_frame): Make a copy of frame parameters
19778 because the original parameters are in pure storage now.
19779 (mac_window): Remove unused params. Update callers.
19780
19781 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19782
19783 * lread.c (substitute_object_recurse): Use lower-level primitives.
19784 Don't signal errors when traversing sub-char-tables.
19785 Don't loop over all the possible characters when traversing char-tables.
19786
19787 * print.c (print_preprocess): Add sub-char-tables to the print-table,
19788 just like we do in print.c.
19789
19790 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19791
19792 * minibuf.c (Ftry_completion): Remove code left over from when we used
19793 scmp instead of Fcompare_strings.
19794
19795 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
19796
19797 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
19798
19799 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19800
19801 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
19802 Create bitmap context in native byte order.
19803
19804 * macterm.c (XDrawLine)
19805 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
19806 context in native byte order.
19807
19808 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19809
19810 * config.in: Regenerate.
19811
19812 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
19813 New definitions for Image I/O support.
19814 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
19815 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
19816 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
19817 (mac_data_provider_release_data, image_load_image_io)
19818 [USE_MAC_IMAGE_IO]: New functions.
19819 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
19820 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
19821 (init_image_func_pointer) [MAC_OSX]: Remove function.
19822 (image_load_quartz2d) [MAC_OSX]: Check availability of
19823 CGImageCreateWithPNGDataProvider at compile time.
19824 Use lowercase `false' for boolean constant.
19825 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
19826 Use image_load_image_io.
19827 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
19828 Don't check MyCGImageCreateWithPNGDataProvider.
19829 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
19830 Don't call init_image_func_pointer.
19831
19832 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
19833
19834 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
19835 Make variable non-static.
19836 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
19837 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
19838
19839 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
19840 (RED_FROM_ULONG): Mask off higher bits.
19841 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
19842
19843 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
19844 Include AvailabilityMacros.h.
19845 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
19846 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
19847
19848 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19849
19850 * chartab.c (Fset_char_table_range): If range is t, really set all
19851 chars to that value.
19852
19853 2008-05-03 Eli Zaretskii <eliz@gnu.org>
19854
19855 * dired.c (Ffile_attributes): Don't allow the device number become
19856 negative.
19857
19858 2008-05-02 Daiki Ueno <ueno@unixuser.org>
19859
19860 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
19861
19862 2008-05-02 Juri Linkov <juri@jurta.org>
19863
19864 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
19865 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
19866 DEFAULT argument as a list of default values in docstrings.
19867
19868 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
19869
19870 * puresize.h (BASE_PURESIZE): Increase to 1210000.
19871
19872 2008-05-01 Martin Rudalics <rudalics@gmx.at>
19873
19874 * dispnew.c (change_frame_size_1): Preserve small windows when
19875 shrinking frames by calling set_window_height|width with third
19876 arg 2.
19877
19878 * window.h (struct window): Replace field too_small_ok by field
19879 resize_proportionally.
19880
19881 * window.c (make_window): Initialize resize_proportionally.
19882 (enlarge_window): Temporarily set resize_proportionally to make
19883 sure that shrink_windows does scale the window proportionally.
19884 (shrink_windows): When window has resize_proportionally set try
19885 to shrink it proportionally by stealing from other windows.
19886 (struct saved_window, Fset_window_configuration)
19887 (compare_window_configurations): Handle resize_proportionally.
19888 (WINDOW_TOTAL_SIZE): New macro.
19889 (window_min_size, shrink_windows, size_window): Use it.
19890 (check_min_window_sizes): Remove. Invalid values of
19891 window-min-height|width are handled by window_min_size_2 now.
19892 (size_window, Fsplit_window, enlarge_window)
19893 (adjust_window_trailing_edge, grow_mini_window): Don't call
19894 check_min_window_sizes.
19895 (window_min_size_2, window_min_size_1, window_min_size):
19896 New argument safe_p for retrieving "safe" minimum sizes.
19897 (Fdisplay_buffer, Fsplit_window, enlarge_window)
19898 (adjust_window_trailing_edge, grow_mini_window):
19899 Adjust arguments of window_min_size... functions.
19900 (shrink_windows): Argument min_size removed. New argument
19901 safe_p allows shrinking windows to their safe minimum sizes.
19902 Calculate minimum size and decide whether a window shall be
19903 deleted for each window individually.
19904 (size_window): When nodelete_p equals 2, tell shrink_windows to
19905 delete windows only if their new minimum size is no more safe.
19906 (shrink_window_lowest_first): Call window_min_size_1 to make
19907 sure to preserve modeline of bottom-most window when resizing
19908 the minibuffer.
19909 (Fset_window_configuration, Fcurrent_window_configuration)
19910 (compare_window_configurations): Do not handle
19911 window-min-height|width any more.
19912 (syms_of_window): Clarify window-min-height|width doc-strings.
19913
19914 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
19915
19916 * dired.c (file_name_completion): Fix up the encoding/decoding issue
19917 some more. Copy some of the code from Ftry_completions.
19918 Remove special case code that dates back to initial revision when the
19919 slash was only added when necessary and that can't trigger nowadays.
19920
19921 2008-04-27 Kenichi Handa <handa@m17n.org>
19922
19923 * font.c (font_prop_validate): Signal `error' instead of `font'.
19924
19925 2008-04-29 Jason Rumney <jasonr@gnu.org>
19926
19927 * w32fns.c (Fw32_battery_status): New defun.
19928 (syms_of_w32fns): Defsubr it.
19929
19930 2008-04-28 Andreas Schwab <schwab@suse.de>
19931
19932 * dired.c (file_name_completion): Fix another mixing of encoded
19933 and decoded names.
19934
19935 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
19936
19937 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
19938
19939 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
19940
19941 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
19942
19943 2008-04-27 Andreas Schwab <schwab@suse.de>
19944
19945 * dired.c (file_name_completion): Fix inappropriate mixing of
19946 encoded and decoded names.
19947
19948 * xterm.c (XTread_socket): Fix use of uninitialized variable.
19949
19950 * puresize.h (BASE_PURESIZE): Increase to 1200000.
19951
19952 2008-04-26 Eli Zaretskii <eliz@gnu.org>
19953
19954 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
19955 2008-03-31, it's not needed anymore with `struct stat' definition
19956 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
19957 for the same reasons.
19958
19959 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
19960
19961 * m/sparc.h: Additional redefinitions for GNU/Linux.
19962
19963 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19964
19965 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
19966 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
19967 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
19968 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
19969 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
19970 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
19971 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
19972 Likewise.
19973
19974 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
19975 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
19976 (mac_ax_number_of_characters): Add externs.
19977 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
19978 [USE_MAC_TSM]: Likewise.
19979 (mac_handle_text_input_event) [MAC_OSX]:
19980 Handle kEventTextInputOffsetToPos for no active input area case.
19981 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
19982 (mac_handle_document_access_event)
19983 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
19984 (install_application_handler) [MAC_OSX]: Register handlers for
19985 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
19986 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
19987 Register mac_handle_document_access_event.
19988
19989 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
19990 Make functions non-static.
19991
19992 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
19993
19994 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
19995 (read_file_name_completion_ignore_case, insert_default_directory)
19996 (Qdefault_directory): Move to minibuffer.el.
19997 (Fread_file_name): Call the new `read-file-name' instead.
19998
19999 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20000
20001 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
20002 Make function non-static.
20003 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
20004 Remove function.
20005 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
20006 Move to mactoolbox.c.
20007 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
20008
20009 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
20010 (mac_rect_make): New macro.
20011
20012 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
20013 instead of float.
20014 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
20015 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
20016 (XSetBackground) [USE_CG_DRAWING]: Likewise.
20017 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
20018 CGRectMake.
20019 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
20020 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
20021 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
20022 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
20023 instead of WindowRef in argument type.
20024 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
20025 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
20026 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
20027 instead of DISPLAY. All uses changed.
20028 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
20029 (x_calc_absolute_position): Simplify so as not to use
20030 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
20031
20032 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
20033 instead of WindowRef in argument type.
20034 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
20035 [TARGET_API_MAC_CARBON]: Remove externs.
20036 (create_apple_event, mac_event_parameters_to_lisp)
20037 [TARGET_API_MAC_CARBON]: Add externs.
20038
20039 * mactoolbox.c (Vmac_ts_script_language_on_focus)
20040 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
20041 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
20042 is clicked.
20043 (x_activate_menubar): Remove extern for saved_menu_event_location.
20044 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
20045 Move from mac.c.
20046
20047 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20048
20049 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
20050 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
20051
20052 2008-04-23 Jason Rumney <jasonr@gnu.org>
20053
20054 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
20055 attributes only for local files.
20056
20057 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
20058 default to Qlocal.
20059
20060 2008-04-22 Juri Linkov <juri@jurta.org>
20061
20062 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
20063 read-buffer-to-switch instead of using the letter "B".
20064
20065 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
20066
20067 * fileio.c (Qdefault_directory): New variable.
20068 (Fread_file_name): Use it to pass `dir' to the completion functions.
20069
20070 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
20071
20072 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
20073
20074 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20075
20076 * keyboard.c (Vpre_help_message): Remove.
20077 (show_help_echo): Remove default C code.
20078
20079 * dired.c (directory_files_internal, file_name_completion):
20080 Only call ENCODE_FILE if the string is indeed decoded.
20081
20082 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
20083
20084 * Makefile.in (TOOLKIT_DEFINES): Remove.
20085 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
20086
20087 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20088
20089 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
20090 (mactoolbox.o): New target.
20091
20092 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
20093 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
20094
20095 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
20096 Use mac_set_frame_window_background instead of XSetWindowBackground.
20097 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
20098 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
20099 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
20100 instead of SetWindowTitleWithCFString.
20101 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
20102 Move function to mactoolbox.c.
20103 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
20104 Use mac_set_window_modified instead of SetWindowModified.
20105 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
20106 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
20107 (Fx_focus_frame): Use mac_front_non_floating_window instead of
20108 FrontNonFloatingWindow. Use mac_activate_window instead of
20109 ActivateWindow. Use mac_active_non_floating_window instead of
20110 ActiveNonFloatingWindow.
20111 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
20112 Use mac_show_hourglass and mac_hide_hourglass.
20113 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
20114 instead of GetGlobalMouse.
20115 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
20116 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
20117 Use mac_bring_window_to_front instead of BringToFront.
20118 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
20119 mactoolbox.c.
20120 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
20121 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
20122 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
20123 mactoolbox.c.
20124
20125 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
20126 (XtPointer): Move typedef from macmenu.c.
20127 (enum button_type): Move enum from macmenu.c.
20128 (widget_value): Move typedef from macmenu.c.
20129 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
20130 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
20131 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
20132 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
20133 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
20134 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
20135 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
20136 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
20137 (Selection): Move typedef from macselect.c.
20138 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
20139 macterm.c.
20140 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
20141 (mac_is_window_collapsed, mac_bring_window_to_front)
20142 (mac_send_window_behind, mac_hide_window, mac_show_window)
20143 (mac_collapse_window, mac_front_non_floating_window)
20144 (mac_active_non_floating_window, mac_activate_window)
20145 (mac_move_window_structure, mac_move_window, mac_size_window)
20146 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
20147
20148 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
20149 (enum mac_menu_kind): Move enum to mactoolbox.c.
20150 (min_menu_id): Move variable to mactoolbox.c.
20151 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
20152 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
20153 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
20154 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
20155 [TARGET_API_MAC_CARBON]: Likewise.
20156 (XtPointer): Move typedef to macgui.h.
20157 (enum button_type): Move enum to macgui.h.
20158 (widget_value): Move typedef to macgui.h.
20159 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
20160 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
20161 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
20162 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
20163 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
20164 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
20165 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
20166 (popup_activated_flag): Make variable non-static.
20167 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
20168 (add_menu_item, fill_menu, dispose_menus):
20169 Move functions to mactoolbox.c.
20170 (restore_show_help_function, menu_target_item_handler)
20171 (install_menu_target_item_handler, mac_handle_dialog_event)
20172 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
20173 [TARGET_API_MAC_CARBON]: Likewise.
20174 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
20175 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
20176 (find_and_call_menu_selection, name_is_separator): Make function
20177 non-static.
20178 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
20179 to mactoolbox.c.
20180 (set_frame_menubar): Don't call install_menu_quit_handler.
20181 (menu_item_selection): New variable.
20182 (mac_menu_show): Use create_and_show_popup_menu.
20183 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
20184 selection but set variable menu_item_selection. All uses changed.
20185 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
20186 Call install_menu_quit_handler. Move to mactoolbox.c.
20187
20188 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
20189 (Selection): Move typedef to macgui.h.
20190 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
20191 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
20192 Make variables non-static.
20193 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
20194 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
20195 Make functions non-static.
20196 (Vmac_service_selection) [MAC_OSX]: Likewise.
20197 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
20198 (mac_valid_selection_target_p, mac_clear_selection)
20199 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
20200 (mac_put_selection_value, mac_selection_has_target_p)
20201 (mac_get_selection_value, mac_get_selection_target_list)
20202 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
20203 Move functions to mactoolbox.c.
20204 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
20205 Likewise.
20206 (copy_scrap_flavor_data, mac_handle_service_event)
20207 (install_service_handler) [MAC_OSX]: Likewise.
20208 (syms_of_macselect) <Vmac_dnd_known_types>:
20209 Use mac_dnd_default_known_types.
20210
20211 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
20212 Move to mactoolbox.c.
20213 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
20214 (Fx_selection_owner_p): Add EXFUN.
20215 (install_window_handler, remove_window_handler, XSetWindowBackground):
20216 Remove externs.
20217 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
20218 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
20219 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
20220 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
20221 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
20222 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
20223 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
20224 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
20225 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
20226 (create_and_show_popup_menu, mac_get_selection_from_symbol)
20227 (mac_valid_selection_target_p, mac_clear_selection)
20228 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
20229 (mac_put_selection_value, mac_selection_has_target_p)
20230 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
20231 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
20232 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
20233 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
20234 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
20235 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
20236 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
20237 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
20238 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
20239
20240 * mactoolbox.c: New file.
20241
20242 2008-04-18 Jason Rumney <jasonr@gnu.org>
20243
20244 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
20245
20246 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
20247
20248 * character.c (Fmultibyte_char_to_unibyte):
20249 Return latin1 chars unchanged.
20250
20251 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
20252 relocated if it points to `name'.
20253
20254 2008-04-17 Kenichi Handa <handa@m17n.org>
20255
20256 * data.c (Faset): Allow setting a multibyte character in an
20257 ASCII-only unibyte string.
20258
20259 * lisp.h (STRING_SET_MULTIBYTE): New macro.
20260
20261 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
20262
20263 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
20264 done in config.h.
20265
20266 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
20267
20268 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
20269 (Fchar_direction): Add usage in the docstring.
20270
20271 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
20272
20273 * keyboard.c (read_key_sequence): Remove always-true checks.
20274
20275 2008-04-14 Jason Rumney <jasonr@gnu.org>
20276
20277 * w32font.c (w32font_open_internal): Set max_bounds.descent in
20278 compatibility struct, for better underline positioning.
20279
20280 2008-04-13 David Hansen <david.hansen@gmx.net>
20281
20282 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
20283 string.
20284
20285 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
20286
20287 * m/hp800.h (XUINT, XSET): Remove.
20288
20289 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
20290
20291 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
20292 previous change.
20293
20294 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
20295
20296 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
20297 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
20298
20299 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
20300
20301 * keymap.h (map_keymap_canonical): Declare.
20302 * xmenu.c (single_keymap_panes): Use it.
20303
20304 2008-04-11 Glenn Morris <rgm@gnu.org>
20305
20306 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
20307 set the target's value to that of the alias.
20308
20309 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
20310
20311 * term.c (set_tty_color_mode): Left over typo.
20312
20313 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
20314
20315 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
20316 only after check for file name handler functions. Signal, when
20317 native functionality is not supported.
20318 (syms_of_fileio): Declare it unconditionally.
20319
20320 2008-04-10 Jason Rumney <jasonr@gnu.org>
20321
20322 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
20323 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
20324
20325 * w32.c (logon_network_drive): Also logon to remote drives that
20326 are mapped to drive letters.
20327
20328 2008-04-10 Glenn Morris <rgm@gnu.org>
20329
20330 * xdisp.c (truncate-partial-width-windows): Doc fix.
20331
20332 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
20333
20334 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
20335 Move functions to minibuffer.el.
20336 (syms_of_fileio): Don't declare them.
20337
20338 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
20339
20340 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
20341 (syms_of_minibuf): Remove its initialization.
20342
20343 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
20344
20345 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
20346
20347 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
20348
20349 2008-04-09 Jason Rumney <jasonr@gnu.org>
20350
20351 * makefile.w32-in (distclean): Delete makefile too.
20352 (maintainer-clean): New target.
20353
20354 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
20355
20356 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
20357 for new font backend and composite cases.
20358
20359 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
20360
20361 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
20362 Most of the code moved to run_timers.
20363 (do_pending_atimers): Call run_timers.
20364 (run_timers): New function.
20365
20366 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
20367 run atimers.
20368
20369 * process.c (wait_reading_process_output): The same as above.
20370
20371 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
20372
20373 * minibuf.c (last_exact_completion): Remove variable.
20374 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
20375 (complete_and_exit_1, complete_and_exit_2)
20376 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
20377 (Fdisplay_completion_list, display_completion_list_1)
20378 (Fminibuffer_completion_help, Fself_insert_and_exit)
20379 (Fexit_minibuffer, Fminibuffer_message): Move functions to
20380 minibuffer.el.
20381 (syms_of_minibuf): Remove corresponding initializations.
20382
20383 * keyboard.c (Qdeactivate_mark): New var.
20384 (command_loop_1): Use it to call `deactivate-mark'.
20385 (syms_of_keyboard): Initialize it.
20386
20387 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
20388 to another frame.
20389 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
20390 Don't call set_tty_color_mode.
20391 (store_frame_param): Reset previous_frame rather than call
20392 set_tty_color_mode.
20393 * term.c (set_tty_color_mode): Rewrite.
20394 * dispextern.h (set_tty_color_mode): New type.
20395 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
20396
20397 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
20398
20399 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
20400 for generic chars, which do not exist any more in emacs-unicode.
20401
20402 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
20403
20404 * coding.c (detect_coding_emacs_mule)
20405 (Ffind_operation_coding_system): Fix typo.
20406
20407 2008-04-08 Jason Rumney <jasonr@gnu.org>
20408
20409 * w32uniscribe.c (SNAME): Extract only symbol name.
20410
20411 * w32font.h (struct w32_metric_cache): New struct.
20412 (w32font_info): Use it.
20413 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
20414 (CACHE_BLOCKSIZE): New constants.
20415
20416 * w32font.c (Qja, Qko, Qzh): New symbols.
20417 (syms_of_w32font): Initialise them.
20418 (font_matches_spec): Use them to filter by language.
20419 (recompute_cached_metrics): Remove function.
20420 (compute_metrics, clear_cached_metrics): New functions.
20421 (w32font_encode_char): Use them to manage metric cache.
20422 (w32font_text_extents): Cache metrics for all glyphs on demand.
20423 Delay converting glyph indices to WORD until needed.
20424 (w32font_open_internal): Initialize metric cache to empty.
20425 (registry_to_w32_charset): Charset should always be a symbol.
20426 (fill_in_logfont, list_all_matching_fonts): Family should
20427 always be a symbol.
20428
20429 2008-04-06 Jason Rumney <jasonr@gnu.org>
20430
20431 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
20432 Give up if glyph indices not supported. Use uniscribe obtained
20433 ABC widths for individual metrics. Map glyph clusters back to
20434 characters using fClusterStart flag. Return number of glyphs
20435 produced, not chars processed.
20436 (uniscribe_shape): Map char at FROM to current glyph.
20437
20438 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20439
20440 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
20441 Use SetMenuItemHierarchicalMenu.
20442
20443 2008-04-05 Jason Rumney <jasonr@gnu.org>
20444
20445 * image.c (pbm_load): Allow color values up to 65535.
20446 Throw an error if max_color_idx is outside the supported range.
20447 Report an error when image size is invalid.
20448 Read two bytes at a time when raw images have max_color_idx above 255.
20449
20450 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
20451
20452 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
20453 append "CCL: Quitted" when the CCL program is quitted.
20454 (setup_ccl_program): Initialize ccl->quit_silently to zero.
20455
20456 * ccl.h (struct ccl_program): New member quit_silently.
20457
20458 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
20459
20460 * search.c (compile_pattern_1): Treat non-nil and non-string of
20461 search-spaces-regexp as nil.
20462
20463 * minibuf.c (Fassoc_string): Tweak docstring.
20464
20465 2008-04-05 Eli Zaretskii <eliz@gnu.org>
20466
20467 * dired.c (Ffile_attributes): Support inode numbers wider than 32
20468 bits. Remove ugly WINDOWSNT-specific kludge introduced on
20469 2008-03-14 to force inode be positive.
20470
20471 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
20472 _S_* ones, since we now use our own sys/stat.h.
20473 (stat, fstat): Don't mangle the inode number.
20474 (init_user_info): Don't restrict UID and GID to 0-60000 range.
20475
20476 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
20477
20478 * frame.h (struct frame): Give one more bit to `visible' since we use
20479 values larger than 1 to indicate obscured frames on ttys.
20480
20481 * keymap.c (Qkeymap_canonicalize): New var.
20482 (Fmap_keymap_internal): New fun.
20483 (describe_map): Use keymap-canonicalize.
20484
20485 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
20486 (Fundo_boundary): Set them.
20487 (syms_of_undo): Initialize them.
20488 (record_point): Use them instead of last_point_position*.
20489 (last_undo_buffer): Change type.
20490
20491 2008-04-04 Jason Rumney <jasonr@gnu.org>
20492
20493 * w32font.c (w32font_text_extents): Use font's ascent and descent.
20494 (recompute_cached_metrics): Don't set ascent and descent per char.
20495
20496 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
20497 (uniscribe_check_otf): Add GC protection before consing.
20498 Rearrange loop for counting features.
20499
20500 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
20501
20502 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
20503 buffer with byte-size of source buffer.
20504
20505 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
20506
20507 * callint.c (Fcall_interactively): Handle temporary region even
20508 when shift-select-mode is off.
20509
20510 2008-04-03 Jason Rumney <jasonr@gnu.org>
20511
20512 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
20513
20514 2008-04-03 Kenichi Handa <handa@m17n.org>
20515
20516 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
20517 (CATEGORY_MASK_UTF_16): Likewise.
20518 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
20519 binary file.
20520 (detect_coding): Add null-byte detection for a binary file.
20521 (detect_coding_system): Likewise.
20522
20523 2008-04-03 Jason Rumney <jasonr@gnu.org>
20524
20525 * w32uniscribe.c: New file.
20526
20527 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
20528
20529 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
20530
20531 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
20532 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
20533 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
20534 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
20535 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
20536 (Qphonetic): New symbols.
20537 (syms_of_w32font): Initialize them.
20538 (font_supported_scripts): Use them.
20539 (w32font_list_family): List all charsets.
20540 (w32font_text_extents, recompute_cached_metrics): Fix metric
20541 calculations.
20542 (w32_enumfont_pattern_entity): Make full_type a DWORD.
20543 Give opentype fonts their own format.
20544 (font_matches_spec): New arguments backend and logfont.
20545 Handle :otf spec for uniscribe backend.
20546 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
20547 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
20548
20549 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
20550 font backend.
20551 (globals_of_w32fns): Initialize uniscribe font backend.
20552
20553 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
20554 dependencies.
20555 (w32uniscribe.$(O)): New file to build.
20556 (FONT_OBJ): Include w32uniscribe.$(O).
20557 (LIBS): Add uniscribe libraries.
20558
20559 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
20560
20561 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
20562
20563 * callint.c (Vshift_select_mode): New var.
20564 (Finteractive): Document new ^ spec.
20565 (Fcall_interactively): Call handle-shift-selection if the ^ spec
20566 is present.
20567
20568 * keyboard.c (Vthis_command_keys_shift_translated): New var.
20569 (command_loop_1): Avoid running the direct display versions of
20570 forward-char and backward-char if shift-selection may occur.
20571 (read_key_sequence): Set Vthis_command_keys_shift_translated if
20572 shift-translation takes place.
20573
20574 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
20575 avoid clobbering by define-minor-mode.
20576
20577 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
20578 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
20579
20580 * syntax.c (Fforward_word): Add ^ interactive spec.
20581
20582 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
20583 (Fscroll_right): Add ^ interactive spec.
20584
20585 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20586
20587 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
20588
20589 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
20590
20591 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
20592
20593 2008-03-31 Juri Linkov <juri@jurta.org>
20594
20595 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
20596
20597 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
20598
20599 * gtkutil.c (xg_set_geometry): Fix indentation.
20600 (xg_resize_outer_widget): Remove.
20601 (x_wm_size_hint_off): Fix indentation.
20602 (xg_frame_set_char_size): Call flush_and_sync after
20603 gtk_window_resize.
20604 (x_wm_set_size_hint): Pass NULL as geometry window to
20605 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
20606 Add menu bar and tool bar height to base height.
20607 (xg_update_frame_menubar, free_frame_menubar)
20608 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
20609 (update_frame_tool_bar, free_frame_tool_bar):
20610 Change xg_resize_outer_widget to xg_frame_set_char_size.
20611
20612 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
20613
20614 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
20615 (Fdbus_call_method): New parameter TIMEOUT.
20616 (dbus-send-signal): Optimize UNGCPRO call.
20617
20618 2008-03-29 Juri Linkov <juri@jurta.org>
20619
20620 * window.c (Fdisplay_buffer): Move call to
20621 Vsplit_window_preferred_function out of conditions that check
20622 if window is eligible for vertical splitting.
20623 When Vsplit_window_preferred_function is non-nil, call it and use
20624 its non-nil return value as window. Otherwise, continue doing
20625 vertical splitting using Fsplit_window with arg horflag=nil.
20626 (syms_of_window) <Vsplit_window_preferred_function>: Change the
20627 default value from `split-window' to nil.
20628
20629 2008-03-29 Juri Linkov <juri@jurta.org>
20630
20631 * callint.c (Fcall_interactively): Revert 2008-03-16 change
20632 for interactive code letters 'b' and 'B'.
20633
20634 2008-03-29 Eli Zaretskii <eliz@gnu.org>
20635
20636 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
20637 multibyte string.
20638
20639 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
20640
20641 * keyboard.c (pending_funcalls): New var.
20642 (timer_check): Run it.
20643 (syms_of_keyboard): Initialize it.
20644 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
20645 (Vdelete_terminal_functions): New vars.
20646 (syms_of_terminal): Initialize them.
20647 (Fdelete_terminal): Run delete-terminal-functions.
20648 * xdisp.c (safe_eval): Rewrite.
20649 (safe_call2): New fun.
20650 * frame.c (Qdelete_frame_functions): New var.
20651 (syms_of_frame): Initialize it.
20652 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
20653 * lisp.h (safe_call2, pending_funcalls): Declare.
20654
20655 2008-03-28 Andreas Schwab <schwab@suse.de>
20656
20657 * indent.c (Fmove_to_column): Move declaration before statements.
20658
20659 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
20660
20661 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
20662 (struct frame): Use bit fields for boolean vars.
20663
20664 * process.c (server_accept_connection): Simplify naming.
20665 (emacs_get_tty_pgrp): Use SDATA.
20666
20667 * coding.c (decode_coding_object): Fix last change.
20668
20669 2008-03-27 Jason Rumney <jasonr@gnu.org>
20670
20671 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
20672
20673 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
20674
20675 * charset.c (Fdefine_charset_internal): Change the way of
20676 registering charsets in Vcharset_order_list.
20677 (syms_of_charset): Make the charset `eight-bit' supplementary.
20678
20679 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
20680
20681 * regex.c (EXTEND_BUFFER): Change order of pointer addition
20682 operations, to avoid having the difference between pointers
20683 overflow.
20684
20685 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
20686
20687 * indent.c (check_display_width): New fun.
20688 (scan_for_column): Use it.
20689
20690 * data.c (syms_of_data): Mark most-positive-fixnum and
20691 most-negative-fixnum as constants.
20692
20693 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
20694
20695 * indent.c (scan_for_column): Extract from current_column_1.
20696 Merge with the same code from Fmove_to_column.
20697 (current_column_1, Fmove_to_column): Use it.
20698
20699 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
20700
20701 * keymap.c (map_keymap_internal): New fun.
20702 (map_keymap): Use it.
20703 (Fmap_keymap_internal): New fun.
20704 (Fmap_keymap): Remove left-out test from before make_save_value.
20705
20706 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
20707
20708 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
20709 Use XCAR/XCDR.
20710
20711 * process.h (struct Lisp_Process): Remove filter_multibyte.
20712 * process.c (QCfilter_multibyte): Remove.
20713 (setup_process_coding_systems): Don't use filter_multibyte.
20714 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
20715 (read_process_output): Don't adjust multibyteness to filter_multibyte.
20716 (Fset_process_filter_multibyte): Change the coding-system to
20717 approximate the previous behavior.
20718 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
20719 coding-system.
20720
20721 * coding.c (decode_coding_object): When not decoding into a buffer,
20722 obey the coding system's preference of (uni|multi)byte.
20723
20724 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
20725
20726 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
20727 every char is changed and has a different byte-length.
20728 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
20729 Fix int -> EMACS_INT.
20730
20731 2008-03-23 David Hansen <david.hansen@gmx.net>
20732
20733 * dbusbind.c (xd_read_message): Remove extra copying of message
20734 strings. Check for NULL `interface' or `member'.
20735
20736 2008-03-22 Eli Zaretskii <eliz@gnu.org>
20737
20738 * w32.c (readdir): If FindFirstFile/FindNextFile return in
20739 cFileName a file name that includes `?' characters, use the 8+3
20740 alias in cAlternateFileName instead.
20741
20742 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
20743
20744 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
20745
20746 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
20747
20748 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
20749 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
20750 work on current_buffer only instead (that was already the case
20751 for some of the code anyway).
20752 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
20753 (temp_set_point, temp_set_point_both): Use EMACS_INT.
20754 (SET_PT, SET_PT_BOTH): Adjust.
20755 * intervals.h (set_point, temp_set_point, set_point_both)
20756 (temp_set_point_both): Remove redundant declarations.
20757
20758 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
20759
20760 * fileio.c (Finsert_file_contents):
20761 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
20762 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
20763 when buffer != current_buffer anyway.
20764
20765 2008-03-20 Andreas Schwab <schwab@suse.de>
20766
20767 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
20768 as default.
20769
20770 2008-03-19 Jason Rumney <jasonr@gnu.org>
20771
20772 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
20773 (syms_of_w32fns): Initialize them.
20774 (HOURGLASS_ID): New constant.
20775 (x_window_to_frame): Don't check hourglass_window.
20776 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
20777 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
20778 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
20779 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
20780 Only change the cursor if hourglass is not active.
20781 (Fx_create_frame): Initialize frame's current_cursor.
20782 (hourglass_atimer): Remove.
20783 (hourglass_started): New function.
20784 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
20785 (show_hourglass): Adapt to w32, changing argument to frame.
20786
20787 * w32term.h (struct w32_output): Remove hourglass_window.
20788 Add current_cursor.
20789
20790 * eval.c (call_debugger, Fsignal):
20791 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
20792 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
20793 (Fexecute_extended_command, cancel_hourglass_unwind):
20794 * minibuf.c (read_minibuf):
20795 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
20796
20797 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
20798
20799 * window.c (run_funs): New fun.
20800 (run_window_configuration_change_hook): Use it to run the buffer-local
20801 and the global part of the hook.
20802
20803 * xdisp.c (format_mode_line_unwind_data): Add window argument.
20804 (unwind_format_mode_line): Restore selected window.
20805 (x_consider_frame_title, Fformat_mode_line): Set selected window.
20806
20807 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
20808
20809 * editfns.c (Fchar_equal): Check they are valid characters.
20810
20811 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
20812
20813 2008-03-17 Andreas Schwab <schwab@suse.de>
20814
20815 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
20816 against a charset.
20817
20818 * lisp.h (Fbuffer_list): Declare.
20819
20820 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
20821
20822 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
20823 handlebox_widget is != 0.
20824
20825 2008-03-16 Juri Linkov <juri@jurta.org>
20826
20827 * callint.c (Fcall_interactively): For interactive code letters
20828 'b' and 'B' put the buffer list into the list of default "future"
20829 values of the minibuffer.
20830
20831 2008-03-16 Andreas Schwab <schwab@suse.de>
20832
20833 * keyboard.c (read_key_sequence): Fix downcasing of letters with
20834 modifiers.
20835
20836 * regex.c (re_match_2_internal): Correct matching of a charset
20837 against latin-1 characters.
20838
20839 2008-03-16 Kenichi Handa <handa@m17n.org>
20840
20841 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
20842 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
20843 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
20844 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
20845 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
20846 CHAR_STRING_ADVANCE.
20847 (produce_chars): Fix for the case that the source and the
20848 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
20849 instead of CHAR_STRING_ADVANCE.
20850 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
20851 STRING_CHAR_ADVANCE.
20852
20853 2008-03-15 Andreas Schwab <schwab@suse.de>
20854
20855 * regex.c (re_match_2_internal): Correct matching of eight bit
20856 characters in unibyte strings.
20857
20858 2008-03-15 Martin Rudalics <rudalics@gmx.at>
20859
20860 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
20861 at end of range when it coincides with the end of the buffer.
20862
20863 2008-03-14 Eli Zaretskii <eliz@gnu.org>
20864
20865 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
20866
20867 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
20868
20869 2008-03-14 Jason Rumney <jasonr@gnu.org>
20870
20871 * editfns.c (initial_tz): New variable.
20872 (syms_of_editfns): Initialize it.
20873 (Fset_time_zone_rule): Set it when first called.
20874 Use it when TZSTRING is nil.
20875
20876 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
20877 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
20878 (monitor_from_point_fn, get_monitor_info_fn): New globals.
20879 (globals_of_w32fns): Initialize them.
20880 (compute_tip_xy): Use them to position tooltips.
20881
20882 2008-03-14 Glenn Morris <rgm@gnu.org>
20883
20884 * emacs.c (main): Revert previous change.
20885 (standard_args): Revert -internal-script back to -scriptload,
20886 and remove the long-option form.
20887
20888 2008-03-13 Glenn Morris <rgm@gnu.org>
20889
20890 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
20891 Remove option -enable-font-backend.
20892
20893 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
20894
20895 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
20896
20897 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
20898
20899 * xterm.c (x_connection_closed): For GTK: If this is the last
20900 terminal just exit without closing the display.
20901
20902 2008-03-11 Jason Rumney <jasonr@gnu.org>
20903
20904 * w32font.c (w32font_full_name): Use floor to round.
20905
20906 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
20907
20908 * sound.c (alsa_configure): Declare vol at beginning of block.
20909
20910 * fontset.c (Ffontset_info): Remove extra semicolon.
20911
20912 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
20913
20914 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
20915 size of resulting string.
20916
20917 2008-03-10 Jason Rumney <jasonr@gnu.org>
20918
20919 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
20920
20921 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20922
20923 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
20924 Don't pretend as if characters with display property haven't been
20925 consumed for string-replacing-string case.
20926
20927 2008-03-08 Kim F. Storm <storm@cua.dk>
20928
20929 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
20930 (get_next_display_element, next_element_from_string)
20931 (next_element_from_ellipsis, next_element_from_buffer): Use it.
20932
20933 2008-03-08 Andreas Schwab <schwab@suse.de>
20934
20935 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
20936
20937 2008-03-06 Jason Rumney <jasonr@gnu.org>
20938
20939 * w32font.c (w32_registry): Take font_type argument. Use ANSI
20940 when charset not specified. Only translate ANSI to unicode when
20941 font_type is truetype.
20942 (w32font_coverage_ok): New function.
20943 (add_font_entity_to_list): Use it to filter unsuitable fonts.
20944
20945 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
20946
20947 * lread.c (Fread_char): Resolve modifiers.
20948 (Fread_char_exclusive): Likewise.
20949
20950 * character.c (char_resolve_modifier_mask): New function.
20951 (char_string): Use char_resolve_modifier_mask.
20952 (Fchar_resolve_modifiers): New function.
20953 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
20954 function.
20955
20956 2008-03-04 Jason Rumney <jasonr@gnu.org>
20957
20958 * makefile.w32-in: Always include w32font.c in the build.
20959 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
20960
20961 2008-03-04 Andreas Schwab <schwab@suse.de>
20962
20963 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
20964 (versionclean): Likewise.
20965
20966 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
20967
20968 * .cvsignore: Add oo.
20969
20970 2008-03-03 Andreas Schwab <schwab@suse.de>
20971
20972 * coding.c (decode_coding_object): Inhibit gap shrinking while
20973 decoding in place.
20974
20975 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
20976
20977 * w32term.c: Remove unused include "gnu.h".
20978 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
20979
20980 * gnu.h: Rename to ...
20981 * emacs-icon.h: ... this.
20982 * xterm.c: Use emacs-icon.h instead of gnu.h.
20983 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
20984
20985 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
20986
20987 * w32font.c: Include math.h.
20988
20989 2008-03-03 Jason Rumney <jasonr@gnu.org>
20990
20991 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
20992 Compute options separately.
20993 (w32font_open_internal): Set glyph_idx before caching metrics.
20994
20995 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
20996 Define if system headers don't.
20997 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
20998 (w32font_encode_char): Don't declare here.
20999
21000 * w32font.c (Quniscribe, QCformat): New symbols.
21001 (syms_of_w32font): Define them.
21002 (w32font_has_char): Indicate uncertainty.
21003 (w32font_encode_char): Encode as glyph point. Make static.
21004 (recompute_cached_metrics): New function.
21005 (w32font_open_internal): Use it. Set font to use glyph points
21006 initially. Set format based on type of font.
21007 (w32font_text_extents, w32font_draw): Optionally use glyph points.
21008 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
21009 on it. Set format based on information available here.
21010 (add_font_entity_to_list): Identify backend based on opentype_only.
21011
21012 2008-03-02 Andreas Schwab <schwab@suse.de>
21013
21014 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
21015
21016 * coding.c (decode_coding_big5, produce_chars):
21017 Fix typos in last change.
21018
21019 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
21020
21021 * gnu.h: New icon.
21022
21023 2008-03-02 Kenichi Handa <handa@m17n.org>
21024
21025 * coding.c (decode_coding_utf_8): When eol-type of CODING is
21026 `dos', don't decode '\r' if that is the last in the source.
21027 (decode_coding_utf_16, decode_coding_emacs_mule)
21028 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21029 (decode_coding_raw_text, decode_coding_charset): Likewise.
21030 (produce_chars): Don't decode EOL here. Use EMACS_INT.
21031
21032 2008-03-01 Jason Rumney <jasonr@gnu.org>
21033
21034 * w32font.c (w32font_full_name): Report point size for scalable fonts.
21035
21036 2008-03-01 Kim F. Storm <storm@cua.dk>
21037
21038 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
21039
21040 2008-03-01 Jason Rumney <jasonr@gnu.org>
21041
21042 * w32font.c (w32font_full_name): New function.
21043 (w32font_open_internal): Use it.
21044
21045 2008-03-01 Kim F. Storm <storm@cua.dk>
21046
21047 * dispnew.c (line_draw_cost): Fix invalid glyph check.
21048
21049 2008-03-01 Jason Rumney <jasonr@gnu.org>
21050
21051 * font.c (font_unparse_fcname): Increase len when style is a symbol.
21052
21053 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
21054
21055 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
21056 xg_frame_resized when the event is for the edit widget.
21057
21058 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
21059
21060 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
21061 set_char_size.
21062 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
21063 operations on widgets here. Just set frame size if needed.
21064 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
21065 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
21066 (x_wm_set_size_hint): Set size hints on the edit widget only, not
21067 the whole frame.
21068 (xg_create_tool_bar): Move attachment of the tool bar to
21069 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
21070 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
21071
21072 2008-03-01 Jason Rumney <jasonr@gnu.org>
21073
21074 * w32fns.c (w32_msg_pump): Disable debug code.
21075
21076 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21077
21078 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
21079
21080 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
21081
21082 * xdisp.c (next_overlay_string): Don't set
21083 overlay_strings_at_end_processed_p if we're currently reading from
21084 a display string.
21085
21086 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
21087
21088 * xdisp.c (get_overlay_strings_1): Fix typo.
21089
21090 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
21091
21092 * xdisp.c (get_overlay_strings_1): Add missing argument type.
21093
21094 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
21095
21096 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
21097
21098 * xdisp.c (display_mode_element): Cancel the previous change.
21099 (decode_mode_spec): Likewise.
21100 (handle_auto_composed_prop): Don't make composition if it->string
21101 is a string.
21102
21103 2008-02-27 Kim F. Storm <storm@cua.dk>
21104
21105 * lisp.h (GLYPH): Change type from int to struct with separate char
21106 and face_id members.
21107 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
21108 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
21109 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
21110 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
21111 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
21112 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
21113 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
21114 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
21115 handle new Lisp glyph code encoding, either an integer or a cons.
21116
21117 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
21118 (GLYPH_ALIAS): Delete.
21119 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
21120 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
21121 (GLYPH_FROM_CHAR): Replace macro by ...
21122 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
21123
21124 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
21125 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
21126 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
21127 (GLYPH_INVALID_P): New macro.
21128 (spec_glyph_lookup_face): Update prototype.
21129
21130 * dispnew.c (line_draw_cost): Adapt to new glyph type.
21131 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
21132 new glyph code encoding.
21133 (spec_glyph_lookup_face): No return value; update passed glyph instead.
21134 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
21135
21136 * xdisp.c (get_next_display_element, next_element_from_display_vector):
21137 Adapt to new glyph type and new glyph code encoding.
21138
21139 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
21140
21141 * indent.c (current_column, current_column_1, Fmove_to_column)
21142 (compute_motion): Adapt to new glyph code encoding.
21143
21144 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
21145
21146 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
21147
21148 * process.c (wait_reading_process_output): Check for window
21149 changes caused by timers.
21150 Suggested by Johan Bockgård.
21151
21152 2008-02-27 Glenn Morris <rgm@gnu.org>
21153
21154 * emacs.c (USAGE1): Add `--disable-font-backend'.
21155
21156 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
21157
21158 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
21159 is made to the buffer.
21160
21161 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
21162
21163 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
21164 (face_at_string_position):
21165 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
21166 (face_at_string_position):
21167 * xdisp.c (display_string, next_overlay_change):
21168 * buffer.h (overlays_at):
21169 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
21170 Update callers.
21171
21172 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
21173
21174 * editfns.c (Fformat): Doc fix.
21175
21176 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
21177
21178 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
21179 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
21180 (Ffont_otf_alternates, Fquery_font): Doc fixes.
21181
21182 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
21183
21184 * buffer.c (Fbuffer_swap_text): New function.
21185 (syms_of_buffer): Defsubr it.
21186
21187 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
21188
21189 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
21190
21191 2008-02-25 Jason Rumney <jasonr@gnu.org>
21192
21193 * w32font.c (w32font_draw): Draw one character at a time when padding.
21194
21195 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
21196
21197 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
21198 Handle a nil arg. Use run_window_configuration_change_hook.
21199 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
21200 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
21201 Use run_window_configuration_change_hook.
21202
21203 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
21204
21205 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
21206 1-pixel width.
21207
21208 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
21209
21210 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
21211 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
21212 if the glyph in the font is zero pixel with.
21213
21214 * dispextern.h (struct glyph_string): New member padding_p.
21215
21216 * w32font.c (w32font_draw): Pay attention to s->padding_p.
21217
21218 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
21219
21220 * xfont.c (xfont_draw): Pay attention to s->padding_p.
21221
21222 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
21223
21224 * font.c: If the font driver doesn't have `shape' function, return Qnil.
21225
21226 2008-02-25 Jason Rumney <jasonr@gnu.org>
21227
21228 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
21229
21230 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
21231
21232 Allow fine-grained image-cache flushing.
21233 * dispextern.h (struct image): Add `dependencies' field.
21234 (clear_image_caches): Change arg to Lisp_Object.
21235 * image.c (make_image): Initialize `dependencies' field.
21236 (clear_image_cache): Change arg to allow fine-grained flushing.
21237 Perform the flush even if image-cache-eviction-delay is nil.
21238 (clear_image_caches): Change arg to Lisp_Object.
21239 (Fclear_image_cache): Expand meaning of the argument.
21240 (mark_image): Mark `dependencies' field.
21241 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
21242 (lface_hash): Use XHASH rather than XFASTINT.
21243 (face_at_buffer_position): Fix int -> EMACS_INT position.
21244 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
21245 (select_frame_for_redisplay): Remove code duplication.
21246 (redisplay_internal): Adapt arg to call to clear_image_caches.
21247
21248 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
21249
21250 * s/vms4-0.h:
21251 * s/vms4-2.h:
21252 * s/vms4-4.h:
21253 * s/vms5-5.h: Remove, unused.
21254
21255 * s/irix5-2.h:
21256 * s/irix6-0.h:
21257 * s/riscos5.h:
21258 * s/mach-bsd4-3.h:
21259 * m/mips4.h: Remove files for obsolete systems.
21260
21261 * Makefile.in:
21262 * filelock.c:
21263 * unexmips.c:
21264 * m/hp9000s300.h:
21265 * m/iris4d.h:
21266 * s/aix3-1.h:
21267 * s/hpux.h:
21268 * s/msdos.h:
21269 * s/usg5-0.h:
21270 * s/usg5-2-2.h:
21271 * s/usg5-2.h:
21272 * s/usg5-3.h: Remove references to obsolete variables.
21273
21274 * s/irix5-0.h: Remove, move all the contents ...
21275 * s/irix6-5.h: ... here. Simplify.
21276 * config.in: Regenerate.
21277
21278 2008-02-24 Jason Rumney <jasonr@gnu.org>
21279
21280 * w32term.c (x_draw_glyph_string_background): Clear the background
21281 manually when cleartype is in use.
21282 (x_draw_glyph_string_foreground): Draw text transparently when
21283 cleartype is in use.
21284
21285 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
21286 a font into it unless we have to.
21287
21288 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
21289
21290 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
21291 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
21292
21293 2008-02-18 Jason Rumney <jasonr@gnu.org>
21294
21295 * w32fns.c (Fw32_shell_execute): Encode parameters.
21296
21297 2008-02-09 Eli Zaretskii <eliz@gnu.org>
21298
21299 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
21300
21301 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
21302
21303 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
21304
21305 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
21306
21307 * xterm.c (x_set_offset): Don't change the gravity if
21308 CHANGE_GRAVITY is -1.
21309
21310 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
21311
21312 * fileio.c (auto_save_error_occurred): New var.
21313 (auto_save_error): Set it.
21314 (Fdo_auto_save): Don't overwrite the error message if an auto-save
21315 error occurred.
21316
21317 2008-02-23 Eli Zaretskii <eliz@gnu.org>
21318
21319 * w32.c (globals_of_w32): Add initializations for
21320 g_b_init_get_sid_sub_authority and
21321 g_b_init_get_sid_sub_authority_count.
21322
21323 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
21324
21325 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
21326 (font_parse_xlfd): Use them for sanity check.
21327 (Finternal_set_font_style_table): Make sure the table is bijective.
21328
21329 Consolidate the image_cache to the terminal struct.
21330 * termhooks.h (P_): Remove redundant def.
21331 (struct terminal): New field `image_cache'.
21332 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
21333 of FRAME_X_IMAGE_CACHE.
21334 * xterm.h (struct x_display_info): Remove image_cache field.
21335 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
21336 * w32term.h (struct w32_display_info): Remove image_cache field.
21337 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
21338 * macterm.h (struct mac_display_info): Remove image_cache field.
21339 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
21340 * xterm.c (x_term_init):
21341 * w32term.c (w32_term_init):
21342 * macterm.c (mac_term_init): Set the image_cache in the terminal.
21343 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
21344 Remove declarations.
21345 (clear_image_caches, mark_image_cache): New declarations.
21346 * xfaces.c (clear_face_cache):
21347 * xdisp.c (redisplay_internal): Use clear_image_caches.
21348 * image.c (clear_image_cache): Don't check that a frame is on
21349 a window-system before checking if it shares the same cache.
21350 (clear_image_caches): New function.
21351 (Fclear_image_cache): Use it.
21352 (mark_image): Move from allo.c.
21353 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
21354 * alloc.c (mark_image, mark_image_cache): Move to image.c.
21355 (mark_object): Don't call mark_image_cache for frames.
21356 (mark_terminals): Call mark_image_cache.
21357
21358 * lisp.h (Fdelete_terminal): Declare.
21359
21360 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
21361 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
21362 wrong_type_argument.
21363
21364 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
21365
21366 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
21367 malayalam.el, and tamil.el. Add sinhala.el.
21368
21369 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
21370
21371 * xterm.c (x_connection_closed): Consolidate identical tests.
21372 (x_delete_terminal): Don't crash if called via x_connection_closed.
21373
21374 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
21375
21376 * xdisp.c (decode_mode_spec): New arg string.
21377 (display_mode_element): Adjust for the above change.
21378
21379 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
21380
21381 * callint.c (Fcall_interactively): Use AREF.
21382
21383 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
21384
21385 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
21386
21387 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
21388
21389 * xfns.c (Fx_show_tip): Set string to " " if empty.
21390
21391 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
21392
21393 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
21394 with Qt.
21395
21396 2008-02-17 Kenichi Handa <handa@m17n.org>
21397
21398 * ftfont.c (ftfont_shape): Return Lispy number.
21399
21400 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
21401 for GCs.
21402 (Finternal_set_font_selection_order): Call font_update_sort_order
21403 only when enable_font_backend is set.
21404 (realize_x_face): Set face->font_info to that of default face only
21405 when enable_font_backend is set.
21406
21407 * xdisp.c (handle_composition_prop): Set it->c to the fist
21408 character of the composed region.
21409 (fill_composite_glyph_string): Set base_face->font_info to
21410 s->font_info. Get a face for ascii from base_face->ascii_face.
21411 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
21412 with a face already decided.
21413 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
21414 non-negative.
21415 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
21416 call font_prepare_composition unconditionally.
21417
21418 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
21419
21420 * xterm.h (struct x_display_info): New member font.
21421
21422 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
21423 (x_set_mouse_face_gc, x_new_font): Likewise.
21424 (x_term_init): Setup display_info->font.
21425 (x_delete_terminal): Free display_info->font.
21426
21427 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
21428
21429 * ftxfont.c (ftxfont_default_fid): Delete it.
21430 (ftxfont_open): Set xfont->fid to 0.
21431 (ftxfont_end_for_frame): Clear data specific to the frame and the
21432 font-driver.
21433
21434 * xftfont.c (xftfont_default_fid): Delete it.
21435 (xftfont_open): Set xfont->fid to 0.
21436
21437 * fontset.c (FONTSET_OBJLIST): New macro.
21438 (fontset_find_font): Update font-object list of the fontset.
21439 (free_realized_fontset): New function.
21440 (free_face_fontset): Call free_realized_fontset.
21441 (Ffont_info): Call font_close_object only when enable_font_backend
21442 is set.
21443
21444 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
21445 [HAVE_NTGUI]: Include w32term.h.
21446 [MAC_OS]: Include macterm.ch.
21447 (font_otf_ValueRecord): Use make_number.
21448 (font_finish_cache): Fix handling of reference count.
21449 (font_clear_cache): Update num_fonts.
21450 (font_open_entity): Update smallest_char_width and
21451 smallest_font_height of the frame.
21452 (font_close_object): Update num_fonts.
21453 (Fclear_font_cache): Fix finding the target cache data.
21454
21455 2008-02-16 Glenn Morris <rgm@gnu.org>
21456
21457 * fontset.c (Finternal_char_font): Fix compilation warning.
21458
21459 2008-02-16 Eli Zaretskii <eliz@gnu.org>
21460
21461 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
21462 instead of char arrays. Enlarge the size of array passed to
21463 get_token_information.
21464
21465 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
21466 warnings.
21467
21468 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
21469
21470 * .gdbinit: Don't set `args', it breaks gdb --args.
21471
21472 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
21473
21474 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
21475 within a narrowed buffer.
21476
21477 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
21478
21479 * coding.c (decode_coding_object, encode_coding_object):
21480 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
21481
21482 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
21483
21484 * coding.c (coding_set_destination): Use BEG_BYTE rather than
21485 hardcoding 1.
21486 (detect_coding_system):
21487 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
21488 (string_char_to_byte, string_byte_to_char, insert_from_gap):
21489 * insdel.c (insert_from_gap):
21490 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
21491 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
21492 (string_to_multibyte):
21493 * character.c (chars_in_text, multibyte_chars_in_text):
21494 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
21495
21496 * character.h (FETCH_STRING_CHAR_ADVANCE)
21497 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
21498 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
21499 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
21500
21501 * casefiddle.c (casify_region): Only call after-change and composition
21502 functions on the part of the region that was changed.
21503
21504 * keyboard.c (read_avail_input):
21505 * frame.c (Fdelete_frame): Call Fdelete_terminal.
21506
21507 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
21508
21509 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
21510 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
21511
21512 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
21513
21514 * w32menu.c (push_submenu_start, push_submenu_end)
21515 (push_left_right_boundary, push_menu_pane, push_menu_item):
21516 * keyboard.c (read_key_sequence): Don't pass args with side effects
21517 to AREF, it fails when compiling with -DENABLE_CHECKING.
21518
21519 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
21520
21521 * Makefile.in (${lispsource}international/charprop.el):
21522 Delete this target.
21523
21524 * search.c (boyer_moore): Fix incorrect synching of the trunk and
21525 emacs-unicode-2.
21526
21527 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
21528
21529 * terminal.c (Fdelete_terminal): Clean up the `force' path.
21530
21531 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
21532
21533 * frame.c (Qnoelisp): New symbol.
21534 (syms_of_frame): Initialize it.
21535 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
21536 harmless Elisp code, from a strong `force' from x_connection_closed.
21537 * frame.h (Qnoelisp): Declare.
21538 * xterm.c (x_connection_closed): Pass `noelisp'.
21539
21540 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
21541 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
21542 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
21543 rather than `int' for the type of `type'.
21544
21545 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
21546
21547 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
21548
21549 * Makefile.in (GNUC): Remove support for gcc-1.x.
21550
21551 2008-02-10 Richard Stallman <rms@gnu.org>
21552
21553 * lisp.h (ASET): Use AREF, not ASLOT.
21554
21555 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
21556
21557 * lisp.h (ASET): Check bounds.
21558
21559 2008-02-10 Glenn Morris <rgm@gnu.org>
21560
21561 * buffer.c (mode-name): Doc fix.
21562
21563 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
21564
21565 * Makefile.in:
21566 * emacs.c:
21567 * gmalloc.c:
21568 * keyboard.c:
21569 * lisp.h:
21570 * m/ibm370aix.h:
21571 * process.c:
21572 * regex.c:
21573 * s/hpux.h:
21574 * sysdep.c:
21575 * sysselect.h:
21576 * systty.h:
21577 * unexec.c:
21578 * w32term.c:
21579 * xsmfns.c:
21580 * xterm.c: Remove code that deals with obsolete variables.
21581
21582 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
21583
21584 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
21585 nothing else needs it anymore.
21586
21587 2008-02-09 Eli Zaretskii <eliz@gnu.org>
21588
21589 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
21590 instead of unibyte_char_to_multibyte.
21591
21592 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
21593
21594 * s/gnu-linux.h: Remove commented out code.
21595
21596 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
21597
21598 * Makefile.in: Update what RMS says about using autoconf.
21599 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
21600 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
21601 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
21602 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
21603
21604 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
21605
21606 * keymap.c (Fkey_description): Move side effect outside of macro call.
21607
21608 * xfaces.c (Finternal_make_lisp_face):
21609 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
21610
21611 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
21612 (syms_of_fontset): Use ASET.
21613
21614 * fns.c (concat): Move side effect outside of macro call.
21615 (hash_clear): Use ASET.
21616
21617 2008-02-08 Richard Stallman <rms@gnu.org>
21618
21619 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
21620 If FORCE, and frame has a surrogate minibuffer for another frame,
21621 delete the other frame first.
21622
21623 2008-02-07 Timo Savola <timo.savola@iki.fi>
21624
21625 * xterm.c (x_detect_focus_change): Handle embed client message.
21626 (handle_one_xevent): Ditto.
21627 (handle_one_xevent): If embedded and we get a button press/release,
21628 request focus.
21629 (xembed_set_info, xembed_send_message): New functions.
21630 (x_make_frame_visible): Call xembed_set_info if embedded.
21631 (x_make_frame_invisible): Call xembed_set_info if embedded.
21632 (x_term_init): Initialize Xatom_XEMBED.
21633 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
21634 (x_iconify_frame): Ditto.
21635
21636 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
21637 (enum xembed_info, enum xembed_message, enum xembed_focus)
21638 (enum xembed_modifier, enum xembed_accelerator): New.
21639 (xembed_set_info, xembed_send_message): Declare.
21640 (FRAME_X_EMBEDDED_P): New.
21641
21642 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
21643 gtk_plug_new.
21644
21645 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
21646 window ID of a frame.
21647 (x_window): Reparent frame if embedded.
21648 (Fx_create_frame): Don't set border width if embedded.
21649
21650 * emacs.c (USAGE3): Add --parent-id.
21651 (standard_args): Ditto.
21652
21653 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
21654
21655 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
21656
21657 2008-02-07 Jim Meyering <meyering@redhat.com>
21658
21659 Use "do...while (0)", not "if (1)...else" in macro definitions.
21660 The latter provokes a warning from gcc about the empty else, when
21661 followed by ";". Also, without that trailing semicolon, it would
21662 silently swallow up any following statement.
21663 * syntax.h (SETUP_SYNTAX_TABLE)
21664 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
21665 * buffer.h (DECODE_POSITION): Likewise.
21666 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
21667 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
21668 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
21669 (FETCH_CHAR_ADVANCE): Likewise.
21670 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
21671
21672 2008-02-07 Jim Meyering <meyering@redhat.com>
21673
21674 * lread.c [lint]: Don't include <sys/inode.h>.
21675
21676 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
21677
21678 * xselect.c (x_handle_dnd_message):
21679 * xmenu.c (digest_single_submenu, xmenu_show):
21680 * xdisp.c (with_echo_area_buffer_unwind_data)
21681 (format_mode_line_unwind_data, unwind_format_mode_line)
21682 (display_menu_bar):
21683 * eval.c (Ffetch_bytecode):
21684 * doc.c (store_function_docstring):
21685 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
21686 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
21687 * buffer.c (add_overlay_mod_hooklist): Use ASET.
21688
21689 2008-02-07 Kenichi Handa <handa@m17n.org>
21690
21691 * ftxfont.c (ftxfont_open): Don't set
21692 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
21693
21694 * ftfont.c (ftfont_open): Fix previous change.
21695
21696 2008-02-06 Jason Rumney <jasonr@gnu.org>
21697
21698 * w32font.c (w32font_text_extents): Fill in lbearing metric.
21699 Use cached metrics for ASCII characters.
21700 (w32font_open_internal): Don't set font's owning_frame.
21701 Cache metrics for ASCII characters.
21702
21703 * w32font.h (struct w32font_info): Add ascii_metrics.
21704 Remove owning_frame.
21705
21706 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
21707
21708 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
21709 to negative value.
21710
21711 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
21712
21713 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
21714
21715 * charset.c (syms_of_charset): Set QCtest and Qeq.
21716
21717 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
21718
21719 * process.c (Fstart_process):
21720 * callproc.c (Fcall_process): Handle the case where
21721 Funhandled_file_name_directory returns nil.
21722
21723 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
21724 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
21725 * font.c (check_gstring): Use them and AREF to access the vector before
21726 we know it's really a gstring.
21727 (Ffont_shape_text): Fix typo.
21728 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
21729
21730 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
21731 Declare.
21732
21733 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
21734
21735 2008-02-05 Jason Rumney <jasonr@gnu.org>
21736
21737 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
21738 Set smallest_font_height and smallest_char_width in display info.
21739
21740 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
21741
21742 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
21743
21744 2008-02-05 Miles Bader <miles@gnu.org>
21745
21746 * xfaces.c (get_lface_attributes, merge_named_face)
21747 (lookup_named_face, lookup_derived_face, realize_named_face):
21748 Revert 2008-02-01 change by cyd@stupidchicken.com.
21749
21750 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
21751
21752 * fontset.c (Ffontset_info): Handle the case of inhibitting the
21753 fallback fonts.
21754 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
21755
21756 2008-02-04 Jason Rumney <jasonr@gnu.org>
21757
21758 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
21759 set full_name.
21760 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
21761
21762 2008-02-03 Jason Rumney <jasonr@gnu.org>
21763
21764 * makefile.w32-in (OBJ1): Include font.o here.
21765 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
21766
21767 2008-02-02 Jason Rumney <jasonr@gnu.org>
21768
21769 * makefile.w32-in (temacs): Bump EMHEAP to 21.
21770
21771 2008-02-01 Jason Rumney <jasonr@gnu.org>
21772
21773 * s/cygwin.h: Define VIRT_ADDR_VARIES.
21774
21775 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
21776
21777 2008-02-01 Andreas Schwab <schwab@suse.de>
21778
21779 * Makefile.in (shortlisp, lisp): Update for rename of
21780 ../lisp/language/myanmar.el.
21781
21782 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
21783
21784 * xfaces.c (get_lface_attributes): Delete function.
21785 (merge_named_face, lookup_named_face, lookup_derived_face)
21786 (realize_named_face): Call lface_from_face_name directly, and use
21787 the fact that merge_face_vectors does not alter its FROM argument.
21788
21789 2008-02-01 Jason Rumney <jasonr@gnu.org>
21790
21791 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
21792 input in the default locale. Handle non-Unicode multibyte input.
21793
21794 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21795
21796 * fontset.c (reorder_font_vector): Exclude nil elements from the
21797 font group. Don't try multiple fonts.
21798 (fontset_font): Adjust for the above change.
21799 (Finternal_char_font): Return nil if the found font doesn't
21800 contain the character ch.
21801
21802 * Makefile.in (lisp, shortlisp): Add cham.el.
21803
21804 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21805
21806 * font.h (FONTP): Make it return 1 also for a font-object.
21807
21808 * .gdbinit (xfontset): New function.
21809
21810 * font.c (font_find_for_lface): Check if the character C is
21811 supported or not only for the first font.
21812
21813 * fontset.c (reorder_font_vector): Fix typo.
21814 (fontset_find_font): Don't add a font-spec specifying a script.
21815 Use 0 (not Qt) for the indication of empty font-group. Change the
21816 format of RFONT-DEF. Return Qt if no font in the font-group
21817 support the character.
21818 (fontset_font): Adjust for the above change. If no font was
21819 found the character, remember that.
21820 (face_for_char): Adjust for the change of RFONT-DEF.
21821 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
21822 no font for the target.
21823 (Finternal_char_font): Adjust for the change of RFONT-DEF.
21824
21825 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21826
21827 * font.c (font_load_for_face): Handle the case that the font in
21828 face->lface is a string.
21829
21830 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21831
21832 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
21833
21834 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21835
21836 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
21837 Fix previous change. If the frame is not on a window system,
21838 signal an error.
21839
21840 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21841
21842 * coding.c (decode_coding_object, encode_coding_object):
21843 Adjust marker positions after conversion.
21844
21845 * lisp.h (struct Lisp_Marker): New member need_adjustment.
21846
21847 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21848
21849 * font.c (font_find_for_lface): Fix the handling of the return
21850 value of font_has_char.
21851 (Ffont_shape_text): Fix previous change.
21852
21853 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
21854 (fontset_ref_and_range): Delete it.
21855 (fontset_find_font): Call char_table_ref_and_range instead of
21856 FONTSET_REF_AND_RANGE.
21857 (make_fontset): Don't setup font groups of Latin here.
21858 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
21859 (new_fontset_from_font): Make the specified font the default for
21860 all Latin characters.
21861
21862 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21863
21864 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
21865 is on a window system before accessing the fontset of the frame.
21866
21867 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21868
21869 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
21870
21871 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
21872 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
21873
21874 * font.c (Ffont_shape_text): If the font driver doesn't have a
21875 shaper function, make zero-width glyphs to have at least one-pixel
21876 width. Fix setting of `to' field of glyphs.
21877
21878 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21879
21880 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
21881 glyphs.
21882
21883 * font.h (struct font_driver): Improve docstring of member `shape'.
21884
21885 2008-02-01 Kenichi Handa <handa@m17n.org>
21886
21887 * composite.c (syms_of_composite): Fix docstring of
21888 auto-composition-function.
21889
21890 * font.h (LGLYPH_SIZE): New macro.
21891
21892 * font.c (Ffont_fill_gstring): Stop filling when a character not
21893 supported by the font is found.
21894 (Ffont_shape_text): When a shape callback function returns nil,
21895 try at most two more times with larger gstring.
21896 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
21897
21898 * xdisp.c (handle_auto_composed_prop): Change the argument to
21899 auto-composition-function.
21900
21901 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
21902 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
21903 Lispy glyph and store it in the lgstring.
21904
21905 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
21906
21907 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
21908
21909 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21910
21911 * font.c (Ffont_shape_text): Avoid unnecessary composition.
21912
21913 * fontset.c (Vfont_encoding_charset_alist): New variable.
21914 (syms_of_fontset): DEFVAR it.
21915 (reorder_font_vector, fontset_find_font): Optimize for the case of
21916 no need of reordering.
21917 (face_for_char): Map the charset property by
21918 Vfont_encoding_charset_alist.
21919
21920 2008-02-01 Jason Rumney <jasonr@gnu.org>
21921
21922 * w32font.c (logfonts_match): Don't check adstyle here.
21923 (font_matches_spec): Check here against physical font instead.
21924 (add_font_entity_to_list): Avoid some substitutions.
21925
21926 * font.c (font_parse_fcname): Default weight and slant to normal.
21927 (font_score): Prefer normal fonts if weight or slant unspecified.
21928 (font_score) [WINDOWSNT]: Scale weight difference down to closer
21929 match freetype scores.
21930
21931 2008-02-01 Jason Rumney <jasonr@gnu.org>
21932
21933 * w32font.c (w32font_text_extents): Don't use the frame stored in the
21934 font, as it may have been deleted.
21935 (w32_enumfont_pattern_entity): Map generic family to adstyle using
21936 most common hyphenless variation.
21937 (logfonts_match): Check generic family.
21938 (font_matches_spec): Don't check generic family here.
21939 (fill_in_logfont): Set generic family based on adstyle.
21940
21941 * w32font.h (w32font_get_cache): Update declaration.
21942
21943 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21944
21945 * ftfont.c (ftfont_get_cache): Adjust the argument type.
21946
21947 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
21948 If none of the new drivers are available, call font_update_drivers
21949 with the old drivers.
21950
21951 * w32font.c (w32font_get_cache): Adjust the argument type.
21952
21953 * xfont.c (xfont_get_cache): Adjust the argument type.
21954
21955 * font.h (struct font_driver): Change argument type of get_cache.
21956
21957 * xftfont.c (xftfont_start_for_frame): Delete prototype.
21958
21959 * font.c (Ffont_get): Fix arguments to Fassoc.
21960 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
21961 (font_clear_cache): New function.
21962 (font_list_entities, font_matching_entity): Use font_get_cache.
21963 (font_update_drivers): Call font_clear_cache when finishing a driver.
21964
21965 * fontset.c (fontset_find_font): Fix previous change.
21966
21967 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21968
21969 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
21970 dpyinfo->font_table.
21971 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
21972 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
21973
21974 * font.c (font_at): Handle the case that the arg C is negative.
21975 Handle the unibyte case.
21976 (Ffont_at): Call font_at with the arg C -1.
21977
21978 * xdisp.c (handle_auto_composed_prop): Don't get a character at
21979 the position here, and call font_at with the arg C -1.
21980 Don't check the range of the existing composition at the point.
21981
21982 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21983
21984 * fontset.c (fontset_add): New args charset_id and family.
21985 Change caller.
21986 (load_font_get_repertory, fontset_find_font): Assume that
21987 font_spec is always a font-spec object.
21988 (Fset_fontset_font): Always store a font-spec object in a fontset.
21989
21990 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
21991 instead of get_property_and_range.
21992
21993 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21994
21995 * xftfont.c (struct xftfont_info): Delete the member ft_face.
21996 (xftfont_open): Don't keep locking face.
21997 (xftfont_close): Don't unlock face.
21998 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
21999
22000 * fontset.c (fontset_find_font): Don't prefer a font of
22001 supplementary charset.
22002
22003 2008-02-01 Kenichi Handa <handa@m17n.org>
22004
22005 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
22006 script, langsys_tag to langsys, new member script.
22007 (OTF_TAG_STR): Terminate by '\0'.
22008 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
22009 listing to the script specified in that property. Fix arg to
22010 OTF_check_features.
22011
22012 2008-02-01 Jason Rumney <jasonr@gnu.org>
22013
22014 * w32font.h: New file.
22015
22016 * w32font.c: Include it.
22017 (struct w32font_info): Add owning_frame field. Move to w32font.h.
22018 (w32font_open): Set owning_frame.
22019 (w32font_text_extents): Use owning_frame.
22020 (struct font_callback_data): Add opentype_only field.
22021 (add_font_entity_to_list): Use it to filter fonts.
22022 Don't check against full name.
22023 (w32font_list_internal): New function.
22024 (w32font_list): Use it.
22025 (w32font_match_internal): New function.
22026 (w32font_match): Use it.
22027 (w32font_open_internal): New function.
22028 (w32font_open): Use it.
22029 (w32font_get_cache, w32font_close, w32font_has_char)
22030 (w32font_encode_char, w32font_text_extents, w32font_draw):
22031 Make non-static.
22032
22033 * makefile.w32-in (w32font.o): Depend on w32font.h.
22034
22035 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22036
22037 * charset.c (Fdefine_charset_internal): Record a supplementary
22038 charset at the tail of Vcharset_order_list.
22039
22040 * font.c (Ffont_shape_text): Fix the return value.
22041
22042 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
22043
22044 * xdisp.c (handle_auto_composed_prop): Fix previous change.
22045
22046 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22047
22048 * ftfont.c (struct OpenTypeSpec): New struct.
22049 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
22050 (ftfont_get_open_type_spec): New function.
22051 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
22052
22053 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
22054
22055 2008-02-01 Jason Rumney <jasonr@gnu.org>
22056
22057 * w32font.c (add_font_entity_to_list): Compare only the beginning
22058 of full name.
22059
22060 2008-02-01 Kenichi Handa <handa@m17n.org>
22061
22062 * xdisp.c (handle_auto_composed_prop): Simplify the code.
22063 Never return HANDLED_RECOMPUTE_PROPS.
22064
22065 2008-02-01 Kenichi Handa <handa@m17n.org>
22066
22067 * font.c (font_gstring_produce): Delete it.
22068
22069 * composite.h (COMPOSITION_METHOD):
22070 Handle COMPOSITION_WITH_GLYPH_STRING.
22071
22072 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22073
22074 * xfont.c (Qx): Delete.
22075 (syms_of_xfont): Don't initialize Qx.
22076
22077 * composite.h (enum composition_method):
22078 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
22079
22080 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22081
22082 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
22083 (choose_face_font): Accept new form of font-spec.
22084
22085 * frame.h (font_driver_list): Declare it unconditionally.
22086 (struct frame): Define members font_driver_list and font_data_list
22087 unconditionally.
22088
22089 * fontset.c: Include "font.h" unconditionally.
22090 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
22091 (Fset_fontset_font): Accept a font-spec object.
22092
22093 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
22094 PIXEL_SIZE part a wild card.
22095
22096 * dispextern.h (struct glyph_string): Define members clip and
22097 num_clips unconditionally.
22098 (struct face): Define members font_info and extra unconditionally.
22099
22100 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
22101 ftfont_info only when HAVE_LIBOTF is defined.
22102
22103 2008-02-01 Andreas Schwab <schwab@suse.de>
22104
22105 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
22106 and end.
22107
22108 2008-02-01 Jason Rumney <jasonr@gnu.org>
22109
22110 * w32font.c (w32font_driver): Add new fields.
22111
22112 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22113
22114 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
22115 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
22116 (LIBES): Add @M17N_FLT_CFLAGS@.
22117
22118 * composite.c (compose_text): Don't treat the new style
22119 composition specially.
22120
22121 * emacs.c (main): Call syms_of_font unconditionally.
22122
22123 * font.h (FONT_ENTITY_NOT_LOADABLE)
22124 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
22125 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
22126 (struct font_driver): New member shape.
22127 (font_registry_charsets): Extern it.
22128 (font_find_for_lface, font_prepare_composition): Adjust prototype.
22129 (font_otf_capability, font_drive_otf): Delete their externs.
22130
22131 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
22132 (font_charset_alist, font_registry_charsets): Move from xfont.c
22133 and rename.
22134 (font_prop_validate_otf): New function.
22135 (font_property_table): Register it for QCotf.
22136 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
22137 (font_drive_otf): Delete.
22138 (font_prepare_composition): New arg F. Adjust for the change of
22139 lispy gstring.
22140 (font_find_for_lface): New arg C.
22141 (font_load_for_face): Adjust for the change of font_find_for_lface.
22142 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
22143 lispy gstring.
22144 (Ffont_shape_text): New function.
22145 (Fopen_font): If the font size is not given, use 12-pixel.
22146 (Ffont_at): New arg STRING.
22147 (syms_of_font): Initialize font_charset_alist.
22148 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
22149 conditionally.
22150
22151 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
22152 fonts of the same font-spec. Change the format of RFONT-DEF.
22153 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
22154 Adjust for the change of RFONT-DEF.
22155 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
22156
22157 * ftfont.h: New file.
22158
22159 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
22160 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
22161 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
22162 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
22163 font_otf_capability and font_drive_otf, set ftfont_shape.
22164 (ftfont_list): Adjust for the change of :otf property value.
22165 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
22166 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
22167 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
22168 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
22169 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
22170 (otf_gstring, gstring, m17n_flt_initialized): New variables.
22171
22172 * w32term.c (x_draw_composite_glyph_string_foreground):
22173 Adjust for the change of lispy gstring.
22174
22175 * xdisp.c (handle_composition_prop): Adjust for the change of
22176 lispy gstring. Call a function for auto-composition with the
22177 third arg it->window.
22178 (fill_composite_glyph_string): Adjust for the change of lispy string.
22179 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
22180
22181 * xfaces.c (set_font_frame_param): Adjust for the change of
22182 font_find_for_lface.
22183
22184 * xfont.c (x_font_charset_alist): Move to font.c and rename.
22185 (xfont_registry_charsets): Likewise. Change caller.
22186 (syms_of_xfont): Don't handle x_font_charset_alist.
22187
22188 * xftfont.c: Include "ftfont.h".
22189 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
22190 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
22191 (xftfont_close) [HAVE_LIBOTF]: Close otf.
22192 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
22193 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
22194 Set xftfont_driver.shape to xftfont_shape.
22195
22196 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
22197 the change of lispy gstring.
22198
22199 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22200
22201 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
22202
22203 2008-02-01 Jason Rumney <jasonr@gnu.org>
22204
22205 * w32font.c (w32font_draw): Fill background manually.
22206
22207 2008-02-01 Jason Rumney <jasonr@gnu.org>
22208
22209 * font.c (Qfontp): Remove unused symbol.
22210 (QCantialias): New symbol.
22211 (syms_of_font): Define it.
22212 (font_property_table): Set a validator for QCantialias.
22213
22214 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
22215 Define if not already.
22216 (QCfamily): Share with xfaces.c.
22217 (Qstandard, Qsubpixel, Qnatural): New symbols.
22218 (syms_of_w32font): Define them. Don't define QCfamily here.
22219 (w32_antialias_type, lispy_antialias_type): New functions.
22220 (w32_enumfont_pattern_entity): New arg requested_font.
22221 Set antialias parameter if non-default was requested.
22222 (fill_in_logfont): Fill in lfQuality if :antialias specified.
22223
22224 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22225
22226 * lread.c (read1): Undo the previous change.
22227
22228 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
22229
22230 * frame.c (Fdelete_frame): Call font_update_drivers only when
22231 USE_FONT_BACKEND is defined.
22232
22233 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22234
22235 * font.h (struct font_bitmap): New member bits_per_pixel.
22236 (struct font_driver): New members start_for_frame and end_for_frame.
22237 (struct font_data_list): New struct.
22238 (font_put_frame_data, font_get_frame_data): Extern them.
22239
22240 * frame.h (struct frame): New member font_data_list.
22241
22242 * font.c (font_update_drivers): Call driver->start_for_frame and
22243 driver->end_for_frame at proper timings.
22244 (font_put_frame_data, font_get_frame_data): New functions.
22245 (Ffont_spec): Add usage in the docstring.
22246
22247 * frame.c (make_frame): Initialize f->font_data_list to NULL.
22248 (Fdelete_frame): Call font_update_drivers.
22249
22250 * xftfont.c (struct xftface_info): Delete the member xft_draw.
22251 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
22252 (xftfont_get_xft_draw): New function.
22253 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
22254 (xftfont_end_for_frame): New function.
22255 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
22256
22257 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
22258 Change argument. Cache GCs in the per-frame data.
22259 (struct ftxfont_frame_data): New struct.
22260 (ftxfont_draw_bitmap): New arg gc_fore and flush.
22261 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
22262 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
22263 (ftxfont_end_for_frame): New function.
22264 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
22265
22266 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
22267
22268 2008-02-01 Kenichi Handa <handa@m17n.org>
22269
22270 * xselect.c (Vselection_coding_system)
22271 (Vnext_selection_coding_system): Delete them.
22272 (syms_of_xselect): Don't declare selection-coding-system and
22273 next-selection-coding-system. They are declared in select.el.
22274
22275 2008-02-01 Jason Rumney <jasonr@gnu.org>
22276
22277 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
22278
22279 * w32fns.c: Include imm.h.
22280 (get_composition_string_fn, get_ime_context_fn): New optional
22281 system functions.
22282 (globals_of_w32fns): Load them from imm32.dll.
22283 (ignore_ime_char): New flag.
22284 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
22285 WM_IME_ENDCOMPOSITION messages.
22286
22287 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
22288 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
22289
22290 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22291
22292 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
22293 (READCHAR_REPORT_MULTIBYTE): New macro.
22294 (readchar): New 2nd arg MULTIBYTE.
22295 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
22296 Make symbol's name multibyte according to the multibyteness of the
22297 source.
22298
22299 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22300
22301 * xfaces.c (face_for_overlay_string): Call lookup_face with
22302 correct arguments (fix of synching with the trunk).
22303
22304 2008-02-01 Kenichi Handa <handa@m17n.org>
22305
22306 * font.c (font_prop_validate_symbol, font_prop_validate_style)
22307 (font_prop_validate_non_neg, font_prop_validate_spacing):
22308 Delete argument prop_index.
22309 (font_property_table): Change arguments to validater. Change Callers.
22310 (font_lispy_object): Delete.
22311 (font_at): Use font_find_object instead fo font_lispy_object.
22312
22313 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22314
22315 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
22316 and file names.
22317
22318 2008-02-01 Jason Rumney <jasonr@gnu.org>
22319
22320 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
22321 (font_matches_spec): Remove debug output.
22322 (add_font_entity_to_list): Avoid using substituted fonts.
22323
22324 2008-02-01 Jason Rumney <jasonr@gnu.org>
22325
22326 * doc.c (Fsnarf_documentation):
22327 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
22328
22329 2008-02-01 Miles Bader <miles@gnu.org>
22330
22331 * dispextern.h (struct glyph_row): Only define "clip" field if
22332 HAVE_WINDOW_SYSTEM is defined.
22333
22334 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
22335
22336 Fix up multi-tty merge.
22337
22338 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
22339 and indentation.
22340
22341 * xfaces.c (free_realized_face, clear_face_gcs):
22342 Include font_done_for_face in the input_blocked section, just in case.
22343
22344 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
22345 (get_char_face_and_encoding): Undo last change and remove the *other*
22346 duplicate definition (i.e. keep the one that's better scoped and that
22347 includes code for the font-backend).
22348
22349 * terminal.c (create_terminal): Default keyboard_coding to
22350 `no-conversion' and terminal_coding to `undecided'.
22351
22352 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
22353
22354 * fontset.c (free_realized_fontsets): Check that the table entry does
22355 contain a fontset before trying to compare it to `base'.
22356
22357 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
22358 syms_of_charset, and syms_of_coding earlier because init_window_once
22359 now needs Vcoding_system_hash_table to be setup.
22360
22361 * coding.h (default_buffer_file_coding): Remove.
22362
22363 * coding.c (default_buffer_file_coding): Remove.
22364 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
22365 than ->symbol, and use the terminal-local coding system.
22366 (syms_of_coding): Don't setup the coding-systems that are not
22367 terminal-local.
22368 (Fdefine_coding_system_internal): Use XCAR/XCDR.
22369
22370 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
22371 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
22372
22373 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
22374 in chartab.c and were re-added here by mistake.
22375 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
22376
22377 * doc.c (Fsnarf_documentation):
22378 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
22379 src to etc.
22380
22381 * ChangeLog.10: Add mistakenly removed entry.
22382
22383 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
22384
22385 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
22386
22387 2008-02-01 Miles Bader <miles@gnu.org>
22388
22389 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
22390 Add extra args to FACE_FOR_CHAR.
22391
22392 2008-02-01 Kenichi Handa <handa@m17n.org>
22393
22394 * keymap.c (where_is_internal_1): If key is a cons, store the copy
22395 in sequence.
22396
22397 * chartab.c (map_sub_char_table, map_char_table): If the range
22398 contains just one character, call the function with that character
22399 even if the depth is not 3.
22400
22401 2008-02-01 Jason Rumney <jasonr@gnu.org>
22402
22403 * w32font.c (w32font_text_extents): Calculate metrics for the
22404 whole string.
22405
22406 2008-02-01 Jason Rumney <jasonr@gnu.org>
22407
22408 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
22409
22410 2008-02-01 Jason Rumney <jasonr@gnu.org>
22411
22412 * w32term.c (x_set_glyph_string_clipping):
22413 Use get_glyph_string_clip_rects.
22414 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
22415 Adjust for the change of struct glyph_string.
22416
22417 * w32font.c (w32font_draw): Do clipping here.
22418
22419 2008-02-01 Kenichi Handa <handa@m17n.org>
22420
22421 * xftfont.c (xftfont_draw): Adjust for the change of struct
22422 glyph_string.
22423
22424 * xterm.c (x_set_glyph_string_clipping):
22425 Use get_glyph_string_clip_rects.
22426 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
22427 Adjust for the change of struct glyph_string.
22428
22429 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
22430 the resulting clip(s}.
22431 (expose_overlaps): Add arg r. Change callers. Set it to
22432 row->clip temporarily.
22433 (expose_window): Redraw rows overlapping the exposed area.
22434
22435 * dispextern.h (struct glyph_row): New member clip.
22436 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
22437 clip_height, new member clip, and num_clips.
22438
22439 2008-02-01 Kenichi Handa <handa@m17n.org>
22440
22441 * data.c (Fchar_or_string_p): Fix docstring.
22442
22443 2008-02-01 Kenichi Handa <handa@m17n.org>
22444
22445 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
22446 create a temporary XftDraw object.
22447
22448 2008-02-01 Kenichi Handa <handa@m17n.org>
22449
22450 * font.c (Ffontp): Fix docstring.
22451
22452 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
22453 strong evidence of ISO-2022.
22454
22455 2008-02-01 Kenichi Handa <handa@m17n.org>
22456
22457 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
22458 SYNTAX_ENTRY_FOLLOW_PARENT.
22459
22460 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
22461
22462 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
22463 its type.
22464 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
22465 Update to the new type of weak_hash_tables and next_weak.
22466
22467 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
22468 a plain C pointer to Lisp_Hash_Table.
22469
22470 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
22471 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
22472 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
22473 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
22474 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
22475 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
22476 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
22477 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
22478 (GC_EQ): Remove since they've been identical to their non-GC_
22479 alter-egos ever since the markbit was eradicated.
22480
22481 * alloc.c:
22482 * buffer.c:
22483 * buffer.h:
22484 * data.c:
22485 * fileio.c:
22486 * filelock.c:
22487 * fns.c:
22488 * frame.h:
22489 * lisp.h:
22490 * macterm.c:
22491 * print.c:
22492 * process.c:
22493 * w32fns.c:
22494 * w32menu.c:
22495 * w32term.c:
22496 * xfns.c:
22497 * xmenu.c:
22498 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
22499
22500 2008-02-01 Kenichi Handa <handa@m17n.org>
22501
22502 * chartab.c (map_sub_char_table): Make it work for the top-level
22503 char-table. Fix handling of parent char-table.
22504 (map_char_table): Adjust for the above change.
22505
22506 2008-02-01 Jason Rumney <jasonr@gnu.org>
22507
22508 * w32font.c (Qgdi): Rename from Qw32.
22509
22510 2008-02-01 Jason Rumney <jasonr@gnu.org>
22511
22512 * w32bdf.c (get_quoted_string): Make function static.
22513
22514 2008-02-01 Kenichi Handa <handa@m17n.org>
22515
22516 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
22517 bigger ascent and descent than those of the font, use them as
22518 font's ascent and descent.
22519
22520 2008-02-01 Kenichi Handa <handa@m17n.org>
22521
22522 * Makefile.in (${lispsource}international/charprop.el): Move this
22523 target within "#ifdef HAVE_UNIDATA" and "#endif".
22524
22525 2008-02-01 Kenichi Handa <handa@m17n.org>
22526
22527 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
22528 (shortlisp): Add ../lisp/language/tai-viet.el.
22529
22530 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
22531
22532 * Makefile.in (${lispsource}international/charprop.el): Depend on
22533 temacs${EXEEXT}.
22534
22535 2008-02-01 Jason Rumney <jasonr@gnu.org>
22536
22537 * w32font.c (w32font_close): Delete the GDI font object.
22538
22539 * w32menu.c: Include character.h.
22540
22541 * w32proc.c: Likewise.
22542
22543 * w32select.c: Likewise.
22544
22545 * makefile.w32-in (w32proc.o): Depend on character.h.
22546
22547 2008-02-01 Jason Rumney <jasonr@gnu.org>
22548
22549 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
22550
22551 * w32menu.c (syms_of_w32menu): Likewise.
22552
22553 * w32proc.c (syms_of_ntproc): Likewise.
22554
22555 * w32select.c (syms_of_w32select): Likewise.
22556
22557 * w32term.c (syms_of_w32term): Likewise.
22558
22559 2008-02-01 Jason Rumney <jasonr@gnu.org>
22560
22561 * w32font.c (w32font_draw): Delete brush after using it.
22562
22563 2008-02-01 Jason Rumney <jasonr@gnu.org>
22564
22565 * w32font.c (w32font_open): Don't set font_idx.
22566 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
22567 to font settings.
22568 (w32font_draw): Fill background explicitly.
22569
22570 2008-02-01 Jason Rumney <jasonr@gnu.org>
22571
22572 * w32term.c (w32_initialize): Don't call w32font_initialize.
22573
22574 * w32font.c (w32font_info): Remove subranges.
22575 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
22576 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
22577 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
22578 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
22579 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
22580 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
22581 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
22582 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
22583 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
22584 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
22585 New symbols.
22586 (font_callback_data): New struct.
22587 (w32font_list, w32font_match): Use it.
22588 (w32font_open): Don't populate subranges.
22589 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
22590 (w32font_encode_char): Always return unicode code-point as-is.
22591 (w32font_text_extents): Supply a transformation matrix to
22592 GetGlyphOutline. Never look up by glyph index. Avoid looping
22593 twice. Use unicode version of GetTexExtentPoint32 instead of
22594 glyph index version.
22595 (set_fonts_frame): Remove.
22596 (w32_enumfont_pattern_entity): Add frame parameter, use it to
22597 set frame parameter. Use backward compatible fake foundries.
22598 Save generic family in extra slot under QCfamily. Make width slot
22599 constant. Save QCspacing value. Save list of scripts instead of
22600 binary subranges.
22601 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
22602 (add_font_entity_to_list): Use font_callback_data struct.
22603 Filter unwanted fonts.
22604 (add_one_font_entity_to_list): Use font_callback_data struct.
22605 (w32_registry): Default to iso10646_1.
22606 (fill_in_logfont): Use dpi from extra slot. Don't bother with
22607 string font registries. Don't fill in font name if it is a generic
22608 family name, fill family instead. Use spacing, family and script
22609 extra info to fill pitch, family and charset fields.
22610 (list_all_matching_fonts): Use font_callback_data struct.
22611 (unicode_range_for_char): Remove.
22612 (font_supported_scripts): New function.
22613 (w32font_initialize): Remove.
22614 (syms_of_w32font): Update which symbols are defined.
22615
22616 2008-02-01 Jason Rumney <jasonr@gnu.org>
22617
22618 * font.c (font_pixel_size): Reverse assq_no_quit args.
22619
22620 * w32term.h (FONT_WIDTH): Report max width, not average.
22621 (FONT_MAX_WIDTH): Remove.
22622 (FONT_AVG_WIDTH): New macro.
22623
22624 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
22625 redefinition of FONT_WIDTH.
22626
22627 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
22628 (w32_cache_char_metrics): Use FONT_WIDTH.
22629
22630 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
22631
22632 2008-02-01 Jason Rumney <jasonr@gnu.org>
22633
22634 * w32font.c (w32font_open): Make lfHeight negative.
22635
22636 * w32fns.c (x_default_font_parameter): Use new style font name.
22637 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
22638
22639 2008-02-01 Jason Rumney <jasonr@gnu.org>
22640
22641 * w32font.c (QCsubranges): New symbol.
22642 (w32font_open, w32font_has_char): Get subranges from subproperty
22643 of extra.
22644 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
22645 (syms_of_w32font): Define :subranges symbol.
22646
22647 * font.c (font_put_extra): Expose externally.
22648
22649 * font.h (font_put_extra): Move declaration from font.c.
22650
22651 * font.c (Ffont_get): Use font driver to determine otf capability.
22652 (adjust_anchor): Check if driver defines anchor_point before using.
22653
22654 * w32font.c (w32font_open): Handle size, height and pixel_size better.
22655 (w32font_draw): Use options.
22656 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
22657 Fix detection of truetype fonts.
22658 (registry_to_w32_charset): Handle charsets other than iso8859-1
22659 expressed as lisp symbols.
22660 (w32_registry): Express charset as lisp symbol.
22661 (fill_in_logfont): Reverse pixel and point height logic.
22662 Don't set width here. Set quality to default.
22663
22664 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
22665 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
22666
22667 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
22668 Remove redundant loop and allocation.
22669
22670 * makefile.w32-in (font.o, w32font.o): New objects.
22671 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
22672 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
22673
22674 * xdisp.c (fill_composite_glyph_string): Make the first arg to
22675 STORE_XCHARB a valid l-value.
22676
22677 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
22678 calculations for non-Truetype fonts.
22679 (x_draw_glyph_string): Sync with xterm.c.
22680 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
22681 Remove redundant code.
22682 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
22683
22684 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
22685 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
22686
22687 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
22688 (x_to_w32_charset, w32_to_x_charset): Expose externally.
22689
22690 * w32font.c: New file for w32 font backend.
22691
22692 2008-02-01 Kenichi Handa <handa@m17n.org>
22693
22694 * term.c: Don't include "buffer.h" twice.
22695
22696 2008-02-01 Kenichi Handa <handa@m17n.org>
22697
22698 * character.c (Funibyte_string): New function.
22699 (syms_of_character): Defsubr it.
22700
22701 2008-02-01 Jason Rumney <jasonr@gnu.org>
22702
22703 * w32term.c [USE_FONT_BACKEND]:
22704 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
22705 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
22706 (x_draw_glyph_string, x_draw_glyph_string_foreground)
22707 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
22708 (x_free_frame_resources): Sync with xterm.c.
22709
22710 2008-02-01 Andreas Schwab <schwab@suse.de>
22711
22712 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
22713 char-table size.
22714
22715 2008-02-01 Kenichi Handa <handa@m17n.org>
22716
22717 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
22718
22719 2008-02-01 Kenichi Handa <handa@m17n.org>
22720
22721 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
22722 font_otf_gpos, add font_drive_otf.
22723
22724 * fontset.c (fontset_find_font): Pay attention to font size
22725 specified for a font.
22726 (reorder_font_vector): Check contents of font_def.
22727
22728 * font.c (struct otf_list): Delete it.
22729 (otf_list): Make it a lisp variable.
22730 (otf_open): Use lispy otf_list.
22731 (generate_otf_features): Rename from parse_gsub_gpos_spec.
22732 (check_otf_features): New function.
22733 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
22734 New functions.
22735 (font_drive_otf): New function merging font_otf_gsub and
22736 font_otf_gpos.
22737 (font_open_for_lface): New arg spec. Change argument order.
22738 (font_load_for_face): Adjust for the change of font_open_for_lface.
22739 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
22740 Ffont_otf_gpos.
22741 (syms_of_font): Staticpro otf_list. Delete defsubr of
22742 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
22743
22744 * xfaces.c (set_font_frame_param): Adjust for the change of
22745 font_open_for_lface.
22746
22747 * font.h (font_open_for_lface): Adjust prototype.
22748 (struct font_driver): Delete members otf_gsub and otf_gpos, add
22749 member otf_drive.
22750 (font_otf_gsub, font_otf_gpos): Delete externs.
22751 (font_drive_otf): Extern it.
22752
22753 2008-02-01 Kenichi Handa <handa@m17n.org>
22754
22755 * font.c (font_at): If the window W is not on a window system,
22756 return Qnil.
22757
22758 * coding.c (produce_chars, encode_coding): Don't call
22759 insert_from_gap if no characters to produce.
22760
22761 2008-02-01 Kenichi Handa <handa@m17n.org>
22762
22763 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
22764 Fclear_face_cache.
22765
22766 * xfaces.c (face_for_font): Check also face->font==font->font.font.
22767
22768 2008-02-01 Miles Bader <miles@gnu.org>
22769
22770 * emacs.c (main): Change default value of `enable_font_backend' to 1.
22771 Parse "--disable-font-backend" option.
22772 (standard_args): Add "--disable-font-backend" option.
22773
22774 2008-02-01 Kenichi Handa <handa@m17n.org>
22775
22776 * fontset.c (fontset_find_font): New function.
22777 (fontset_font): Use fontset_find_font.
22778 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
22779 Register the specified font for all Latin characters.
22780 (new_fontset_from_font): Register the specified font for all Latin
22781 characters.
22782 (dump_fontset): For a realized fontset, include the base fontset
22783 name in the returned vector.
22784
22785 2008-02-01 Kenichi Handa <handa@m17n.org>
22786
22787 * character.h (CHAR_STRING): Cast C to unsigned on calling
22788 char_string.
22789
22790 * character.c (char_string): Type of arg C changed to unsigned.
22791 Signal an error if C is an invalid character code.
22792
22793 * editfns.c (general_insert_function, Fchar_to_string):
22794 Use CHARACTERP, not INTEGERP.
22795
22796 2008-02-01 Kenichi Handa <handa@m17n.org>
22797
22798 * character.h (MIN_MULTIBYTE_LEADING_CODE)
22799 (MAX_MULTIBYTE_LEADING_CODE): New macros.
22800
22801 * regex.c (analyse_first): Fix for multibyte characters in "case
22802 charset:" and "case categoryspec:".
22803
22804 2008-02-01 Andreas Schwab <schwab@suse.de>
22805
22806 * Makefile.in (LIBES): Move standard libraries to the end.
22807
22808 2008-02-01 Kenichi Handa <handa@m17n.org>
22809
22810 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
22811 nonzero, don't shrink the buffer nextb.
22812
22813 * buffer.h (struct buffer_text): New member inhibit_shrinking.
22814
22815 * coding.c (coding_alloc_by_making_gap): New arg offset.
22816 (alloc_destination): Call coding_alloc_by_making_gap with the arg
22817 offset.
22818 (decode_coding_iso_2022): Update coding->safe_charsets.
22819 (decode_coding_gap): Temporarily set
22820 current_buffer->text->inhibit_shrinking to 1.
22821
22822 2008-02-01 Kenichi Handa <handa@m17n.org>
22823
22824 * xterm.c (x_draw_composite_glyph_string_foreground):
22825 Fix indexing into elements of s->cmp and s->char2b.
22826
22827 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
22828
22829 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
22830
22831 2008-02-01 Kenichi Handa <handa@m17n.org>
22832
22833 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
22834 target_multibyte instead of multibyte.
22835 (re_match_2_internal): Call bcmp_translate with target_multibyte.
22836 (bcmp_translate): Change the argument name from multibyte to
22837 target_multibyte.
22838
22839 2008-02-01 Kenichi Handa <handa@m17n.org>
22840
22841 These changes are to compile a regexp into a pattern that can be
22842 used both for multibyte and unibyte targets.
22843
22844 * Makefile.in (search.o): Depend on charset.h.
22845
22846 * character.c (multibyte_char_to_unibyte_safe): New function.
22847
22848 * search.c: Include "charset.h".
22849 (compile_pattern_1): Delete argument multibyte. Don't set
22850 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
22851 (compile_pattern): Don't compare cp->buf.target_multibyte.
22852 Compare cp->buf.charset_unibyte.
22853 (compile_pattern): Set cp->buf.target_multibyte.
22854
22855 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
22856
22857 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
22858
22859 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
22860 multibyte. Change callers.
22861 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
22862 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
22863 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
22864 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
22865 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
22866 (regex_compile): Make the compiled pattern usable both for
22867 multibyte and unibyte targets.
22868 (analyse_first): Make the fastmap usable both for multibyte and
22869 unibyte targets.
22870 (TRANSLATE_VIA_MULTIBYTE): Delete.
22871 (re_match_2_internal): Pay attention to the case that the
22872 multibyteness of bufp and target may be different.
22873
22874 2008-02-01 Kenichi Handa <handa@m17n.org>
22875
22876 * xdisp.c (x_produce_glyphs): When a font is not found, make the
22877 empty box occupy at least one column width.
22878
22879 2008-02-01 Miles Bader <miles@gnu.org>
22880
22881 * Makefile.in: Remove redundant HAVE_XFT clause.
22882
22883 2008-02-01 Kenichi Handa <handa@m17n.org>
22884
22885 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
22886
22887 2008-02-01 Kenichi Handa <handa@m17n.org>
22888
22889 * fontset.c (Finternal_char_font): Fix for the case of POSITION
22890 being nil.
22891
22892 2008-02-01 Kenichi Handa <handa@m17n.org>
22893
22894 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
22895
22896 2008-02-01 Kenichi Handa <handa@m17n.org>
22897
22898 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
22899
22900 2008-02-01 Kenichi Handa <handa@m17n.org>
22901
22902 * search.c (simple_search): Fix previous change.
22903
22904 2008-02-01 Kenichi Handa <handa@m17n.org>
22905
22906 * xftfont.c (ftfont_font_format): Extern declaration.
22907
22908 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
22909
22910 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
22911 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
22912
22913 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
22914 (ftfont_font_format): Fix previous change.
22915
22916 * font.h (Ffont_xlfd_name): EXFUN it.
22917
22918 * font.c (font_parse_xlfd): Fix the array size of `f'.
22919 (register_font_driver): Use EQ to compare driver->type.
22920
22921 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
22922 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
22923 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
22924
22925 2008-02-01 Kenichi Handa <handa@m17n.org>
22926
22927 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
22928 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
22929
22930 2008-02-01 Kenichi Handa <handa@m17n.org>
22931
22932 * xfont.c (xfont_open): Set font->format.
22933
22934 * xftfont.c (xftfont_open): Set font->format.
22935
22936 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
22937 (ftfont_list): Include FC_FONTFORMAT in FcObject.
22938 (ftfont_open): Set font->format.
22939 (ftfont_font_format): New function.
22940
22941 * font.h (struct font): New member format.
22942
22943 * font.c (Qopentype): New variable.
22944 (syms_of_font): Defsym it.
22945 (Fquery_font): Change the format of the last element of the return
22946 value.
22947
22948 2008-02-01 Kenichi Handa <handa@m17n.org>
22949
22950 * xfns.c (xic_create_xfontset): Try the default fontset name as a
22951 last resort.
22952
22953 2008-02-01 Kenichi Handa <handa@m17n.org>
22954
22955 * coding.c (detect_coding_charset): Fix detection of multi-byte
22956 charset.
22957
22958 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
22959
22960 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
22961
22962 2008-02-01 Kenichi Handa <handa@m17n.org>
22963
22964 * xdisp.c (get_next_display_element): Set it->face_id for the
22965 first component of a composition.
22966 (x_produce_glyphs): Check if the font is changed or not for composition.
22967
22968 2008-02-01 Kenichi Handa <handa@m17n.org>
22969
22970 * fontset.c (Qlatin): New variable.
22971 (syms_of_fontset): Define it as a lisp symbol.
22972 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
22973
22974 2008-02-01 Kenichi Handa <handa@m17n.org>
22975
22976 * font.c (font_unparse_fcname): Pay attention to the case that
22977 some of font property is a null string.
22978
22979 2008-02-01 Kenichi Handa <handa@m17n.org>
22980
22981 * term.c: Include "composite.h".
22982 (encode_terminal_code): Output all components of composition.
22983 Check the size of encode_terminal_src.
22984 (produce_glyphs): For composition, call produce_composite_glyph.
22985 (append_composite_glyph, produce_composite_glyph): New functions.
22986
22987 * xdisp.c (x_produce_glyphs): In handling composition, if a font
22988 is not found, get font_info from the current ascii face.
22989
22990 2008-02-01 Kenichi Handa <handa@m17n.org>
22991
22992 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
22993 buffer-file-name to Qnil before calling insert_from_buffer.
22994
22995 * font.c (font_unparse_fcname): Pay attention to the case that
22996 foundry is a null string.
22997
22998 2008-02-01 Kenichi Handa <handa@m17n.org>
22999
23000 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
23001
23002 * font.c (Qunicode_sip): New variable.
23003 (syms_of_font): Declare it as a Lisp symbol.
23004
23005 * font.h (Qunicode_sip): Extern it.
23006
23007 2008-02-01 Kenichi Handa <handa@m17n.org>
23008
23009 * composite.c (get_composition_id): Pay attention to TAB component.
23010
23011 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
23012 TAB. Adjust for the change of s->char2b which always points to
23013 the first element of allocated memory.
23014
23015 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
23016
23017 * xdisp.c (handle_composition_prop): Set it->c to the first
23018 non-TAB component.
23019 (fill_composite_glyph_string): Change argument.
23020 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
23021 (x_produce_glyphs): Fix handling of left/right padding.
23022
23023 2008-02-01 Kenichi Handa <handa@m17n.org>
23024
23025 * coding.c (detect_coding_system): Fix for handling off
23026 inhibit_iso_escape_detection. Fix for the case that no coding
23027 system is defined for a specific coding category.
23028
23029 2008-02-01 Kenichi Handa <handa@m17n.org>
23030
23031 * font.c (font_matching_entity): Delete unused local var.
23032
23033 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
23034 opening a font.
23035
23036 * fileio.c (Finsert_file_contents): On recovering a file, assume
23037 Unix-like eol.
23038 (choose_write_coding_system): On auto-saving a file, force
23039 Unix-like eol.
23040
23041 * coding.c (setup_coding_system): Fix setting of
23042 coding->common_flags based on eol_type.
23043 (coding_inherit_eol_type): If PARENT is not nil, be sure to
23044 inherit from it.
23045
23046 2008-02-01 Kenichi Handa <handa@m17n.org>
23047
23048 * alloc.c (NSTATICS): Increas to 0x600.
23049
23050 2008-02-01 Kenichi Handa <handa@m17n.org>
23051
23052 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
23053 (ftfont_list): Don't check :name property.
23054 (ftfont_match): New function.
23055 (ftfont_pattern_entity): If the pattern doesn't contain
23056 FC_SPACING, don't assume FC_MONO.
23057
23058 * font.h (struct font_driver): New member `match'.
23059 (font_update_drivers): Adjust prototype.
23060
23061 * font.c (font_parse_fcname, font_parse_name): Don't change :name
23062 property of FONT.
23063 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
23064 Define them unconditionally.
23065 (font_matching_entity): New function.
23066 (font_open_by_name): Try font_matching_entity if exact match is
23067 not found.
23068 (font_update_drivers): Delete the arg FONT. Return a list of
23069 actually used backends. Don't free faces, font caches here.
23070 Don't store data in frame parameters. Don't call x_set_font.
23071 (Ffont_spec): Store :name property as is.
23072 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
23073 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
23074 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
23075 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
23076 Call font->driver->otf_gsub instead of font_otf_gsub.
23077
23078 * frame.c (x_set_font_backend): Do more works that were done in
23079 font_update_drivers before.
23080
23081 * xfont.c (xfont_match): New function.
23082 (xfont_driver): Set xfont_driver.match to xfont_match.
23083 (xfont_draw): Set font in GC if necessary.
23084
23085 * ftxfont.c (ftxfont_match): New function.
23086 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
23087
23088 * xftfont.c (xftfont_match): New function.
23089 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
23090
23091 2008-02-01 Kenichi Handa <handa@m17n.org>
23092
23093 * font.h (struct font): New member scalable.
23094 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
23095 (font_otf_gsub): Adjust prototype.
23096
23097 * font.c (font_otf_capability): Fix handling of the default langsys.
23098 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
23099 Check the contents of SPEC.
23100 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
23101 (check_gstring): New function.
23102 (REPLACEMENT_CHARACTER): New macro.
23103 (font_otf_gsub): New arg alternate_subst. Be sure to set all
23104 glyph codes of GSTRING.
23105 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
23106 (font_prepare_composition): Set cmp->glyph_len.
23107 (font_open_entity): Set font->scalable.
23108 (Ffont_get): Handle :otf property.
23109 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
23110 New functions.
23111 (Fquery_font): Use font->font.full_name.
23112 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
23113 Sfont_otf_alternates.
23114
23115 * ftfont.c (ftfont_open): Set font->font.full_name and
23116 font->font.name properly. Fix calculation of font->font.height
23117 and font->min_width.
23118
23119 * ftxfont.c (ftxfont_create_gcs): New function.
23120 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
23121 (ftxfont_draw_backgrond): Fix filling region.
23122 (ftxfont_default_fid): New function.
23123 (ftxfont_open): Set xfont->fid to the return value of
23124 ftxfont_default_fid.
23125 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
23126 (ftxfont_done_face): Free only GCs that are created by
23127 ftxfont_create_gcs.
23128 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
23129
23130 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
23131 Clip to src->width, etc (not src->clip_XXX).
23132
23133 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
23134 FontBackend frame parameter.
23135
23136 2008-02-01 Kenichi Handa <handa@m17n.org>
23137
23138 * font.h (struct font_driver_list): New member `on'.
23139 (Fclear_font_cache): EXFUN it.
23140 (font_update_drivers): Extern it.
23141
23142 * font.c (font_unparse_fcname): Fix typo (swidth->width).
23143 (font_list_entities): Check driver_list->on.
23144 (register_font_driver): Initialize `on' member to 0.
23145 (font_update_drivers): New function.
23146 (Fclear_font_cache): Check driver_list->on.
23147
23148 * frame.h (Qfont_backend): Extern it.
23149 (x_set_font_backend): Extern it.
23150
23151 * frame.c (Qfont_backend): New variable.
23152 (frame_parms): New element for font-backend.
23153 (x_set_font_backend): New function.
23154
23155 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
23156 FontBackend frame parameter.
23157 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
23158 x_set_font_backend.
23159
23160 * xfont.c (xfont_list): Don't try listing by :name property if the
23161 name is not for XLFD.
23162
23163 2008-02-01 Kenichi Handa <handa@m17n.org>
23164
23165 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
23166 (LGLYPH_SET_TO): New macros.
23167 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
23168 element of G is vector or not.
23169 (font_at): Extern it.
23170
23171 * font.c: Include window.h.
23172 (font_lispy_object): New function.
23173 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
23174 end of valid glyph.
23175 (font_close_object): Fix getting (struct font *).
23176 (font_at): New function.
23177 (Ffont_get): If FONT is a font-object, get entity from it.
23178 (Ffont_make_gstring): Initialize elements of glyphs with nil.
23179 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
23180 Fix range check.
23181 (Ffont_at): New function.
23182 (syms_of_font): Defsubr Sfont_at.
23183
23184 * xdisp.c (it_props): Move the entry for Qauto_composed to just
23185 before the entry for Qcomposition.
23186 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
23187 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
23188 the font in gstring.
23189 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
23190 LGLYPH_FORM (g) to detect the end of valid glyph.
23191 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
23192 we are composing with gstring.
23193
23194 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
23195 Check if adjustment is vector or not.
23196
23197 * Makefile.in (font.o): Make it depends on window.h.
23198
23199 2008-02-01 Kenichi Handa <handa@m17n.org>
23200
23201 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
23202 adjustment is vector or not.
23203
23204 2008-02-01 Miles Bader <miles@gnu.org>
23205
23206 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
23207
23208 2008-02-01 Kenichi Handa <handa@m17n.org>
23209
23210 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
23211 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
23212 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
23213
23214 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
23215 (DEVICE_DELTA): Fix typo.
23216 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
23217 LGLYPH format.
23218
23219 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
23220 the change of LGLYPH format.
23221
23222 2008-02-01 Kenichi Handa <handa@m17n.org>
23223
23224 * ftfont.c (ftfont_list): Fix typo.
23225 (ftfont_build_basic_charsets): Don't include letters with diacritics.
23226
23227 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
23228
23229 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
23230
23231 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
23232 xftface_info is non-NULL.
23233
23234 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
23235
23236 * ftfont.c (ftfont_list): Move misplaced #endif.
23237
23238 2008-02-01 Kenichi Handa <handa@m17n.org>
23239
23240 * ftfont.c (ftfont_list): Pay attention to the case that
23241 FC_CAPABILITY is not defined.
23242
23243 2008-02-01 Kenichi Handa <handa@m17n.org>
23244
23245 * xftfont.c (xftfont_open): Set charset related members to -1.
23246
23247 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
23248 QCname.
23249 (ftfont_open): Set charset related members to -1.
23250
23251 * fontset.c (Votf_script_alist): New variable.
23252 (syms_of_fontset): Initialize it.
23253 (fontset_font): Delete unused variable.
23254
23255 * fontset.h (Votf_script_alist): Extern it.
23256
23257 * font.c (font_find_for_lface): Optimize code.
23258
23259 * font.h (font_close_object, font_merge_old_spec): Extern them.
23260
23261 2008-02-01 Kenichi Handa <handa@m17n.org>
23262
23263 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
23264 (syms_of_font): Initialize them.
23265 (font_pixel_size): Allow float value in dpi.
23266 (font_prop_validate_type): Delete.
23267 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
23268 Change caller.
23269 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
23270 (font_prop_validate_extra): Delete.
23271 (font_prop_validate_spacing): New function.
23272 (font_property_table): Add elements for all known properties.
23273 (get_font_prop_index): Rename from check_font_prop_name.
23274 New argument FROM. Change caller.
23275 (font_prop_validate): Validate all known properties.
23276 (font_put_extra): Delete argument force. Change caller.
23277 (font_expand_wildcards): Make it static. Fix the way of shrinking
23278 the possible range.
23279 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
23280 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
23281 Change caller.
23282 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
23283 (font_parse_fcname): Delete argument merge. Fix parsing of point
23284 size. Don't validate properties values here. Change caller.
23285 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
23286 (font_open_by_name): Delete unused variable.
23287 (Ffont_spec): Likewise. Validate property values.
23288 (Ffont_match_p): New function.
23289
23290 * font.h (QCscalable): Extern it.
23291 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
23292
23293 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
23294
23295 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
23296 (xfont_list_pattern): New function.
23297 (xfont_list): Use xfont_list_pattern.
23298
23299 2008-02-01 Kenichi Handa <handa@m17n.org>
23300
23301 * font.h (Flist_fonts): EXFUN it.
23302
23303 2008-02-01 Jason Rumney <jasonr@gnu.org>
23304
23305 * w32term.c (w32_initialize): Add back smoothing_type and
23306 smoothing_enabled definitions.
23307
23308 2008-02-01 Kenichi Handa <handa@m17n.org>
23309
23310 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
23311 s->face->font on determining underline position.
23312
23313 2008-02-01 Kenichi Handa <handa@m17n.org>
23314
23315 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
23316 (font_has_char): Accept font-object too.
23317 (font_find_for_lface): Try at first with a size specified in face.
23318
23319 2008-02-01 Kenichi Handa <handa@m17n.org>
23320
23321 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
23322 font_open_by_name.
23323
23324 2008-02-01 Kenichi Handa <handa@m17n.org>
23325
23326 * font.h (QCspacing, QCdpi): Extern them.
23327 (enum font_spacing): New enum.
23328 (FONT_PIXEL_SIZE_QUANTUM): New macro.
23329
23330 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
23331 (QCspacing, QCdpi): New variables.
23332 (syms_of_font): Initialize them.
23333 (font_pixel_size): New function.
23334 (font_put_extra): New function.
23335 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
23336 in FONT_EXTRA.
23337 (font_parse_fcname): Handle enumerated values (e.g. bold).
23338 Fix handling font size. Add QCname property that contains only
23339 unknown properties.
23340 (font_score): Change argument. Change caller. Pay attention to
23341 FONT_PIXEL_SIZE_QUANTUM.
23342 (font_sort_entites, font_list_entities, font_find_for_lface)
23343 (font_open_for_lface, font_open_by_name): Fix handling of font size.
23344 (Ffont_spec): Add QCname property that contains only unknown properties.
23345
23346 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
23347 Don't include weight in listing pattern, instead check weight of each
23348 listed font. Don't include scalable in pattern. Pay attention to
23349 FONT_PIXEL_SIZE_QUANTUM.
23350
23351 2008-02-01 Kenichi Handa <handa@m17n.org>
23352
23353 * font.c (font_parse_fcname): Fix parsing of point-size.
23354 (font_unparse_fcname): Produce symbolic names for style properties.
23355 (font_list_entities): Handle float size correctly.
23356 (font_open_by_name): Prefer `normal' property values if the name
23357 doesn't specify them.
23358
23359 * fontset.c (Finternal_char_font): Use font_get_name, not
23360 Ffont_xlfd_name.
23361
23362 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
23363 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
23364 pattern. Don't force scalable.
23365
23366 * xftfont.c (xftfont_open): For generating a name, start from
23367 96-byte buffer.
23368
23369 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
23370
23371 * frame.h (x_new_fontset2): Fix prototype.
23372
23373 2008-02-01 Kenichi Handa <handa@m17n.org>
23374
23375 * font.h (struct font_driver): Delete member parse_name.
23376 (font_match_p, font_get_spec, font_parse_fcname)
23377 (font_unparse_fcname): Extern them.
23378 (font_get_name): Adjust prototype.
23379
23380 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
23381 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
23382 (font_expand_wildcards): Fix handling ENCODING field.
23383 Avoid unnecessary checks for weight, slant, and swidth.
23384 (font_parse_fcname): New function.
23385 (font_unparse_fcname): New function.
23386 (font_parse_name): New function.
23387 (font_match_p): New function.
23388 (font_get_name): Change return value to Lisp string.
23389 (font_get_spec): New function.
23390 (Qunspecified, Qignore_defface): Don't extern them.
23391 (font_find_for_lface): Assume that LFACE is fully specified.
23392 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
23393 object, use it for FACE.
23394 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
23395 driver->parse_name.
23396 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
23397
23398 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
23399 prototype.
23400
23401 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
23402 argument F. Don't call Fnew_fontset. Instead, directly call
23403 make_fontset.
23404
23405 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
23406
23407 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
23408 of x_new_fontset2.
23409
23410 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
23411 (Qsans__serif): New variables.
23412 (ftfont_generic_family_list): New variable.
23413 (syms_of_ftfont): Initialize the above variables.
23414 (ftfont_pattern_entity): Delete argument NAME.
23415 (ftfont_list_generic_family): New function.
23416 (ftfont_parse_name): Delete this function.
23417 (ftfont_list): Try generic family only when FcFontList found no font.
23418 (ftfont_list_family): Fix args to FcObjectSetBuild.
23419
23420 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
23421 object in attrs[LFACE_FONT_INDEX].
23422 (set_lface_from_font_name): Cancel all changes for font-backend.
23423 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
23424 function.
23425 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
23426 font object in QCfont attribute.
23427 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
23428 (realize_default_face) [USE_FONT_BACKEND]: Call
23429 set_lface_from_font_and_fontset.
23430
23431 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
23432 "fixed", and signal error here if no suitable font was found.
23433
23434 * xfont.c (xfont_parse_name): Delete this function.
23435
23436 * xftfont.c (xftfont_open): Change coding style of error
23437 handling. Generate fontconfig's fontname pattern.
23438
23439 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
23440 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
23441
23442 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
23443 Both args FONTSET and FONT_OBJECT must be existing ones.
23444
23445 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23446
23447 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
23448
23449 2008-02-01 Kenichi Handa <handa@m17n.org>
23450
23451 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
23452
23453 * font.h (struct font): Fix typo.
23454
23455 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
23456 XLFD_XXX_INDEX.
23457 (enum xlfd_field_mask): New enum.
23458 (intern_font_field): Change argument. Change caller. If digits
23459 are followed by non-digits, return a symbol.
23460 (font_expand_wildcards): New function.
23461 (font_parse_xlfd): Fix wildcard handling.
23462 (Ffont_spec): If :name is specified, reflect the info in the other
23463 properties.
23464
23465 * ftfont.c (ftfont_pattern_entity): Fix typo.
23466 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
23467 locale.
23468
23469 2008-02-01 Kenichi Handa <handa@m17n.org>
23470
23471 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
23472
23473 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
23474 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
23475 registry doesn't specify encoding part.
23476 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
23477 (font_open_by_name): At first try parsing the name.
23478 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
23479 as Lisp symbols.
23480
23481 * fontset.c (reorder_font_vector): Pay attention to the case that
23482 the 3rd element of font_def is nil.
23483 (fontset_font): For the default fontset, append one more fontset
23484 elements for a script-based font specification. Don't add script
23485 attribute on finding a font.
23486 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
23487 font name.
23488 (fontset_ascii_font): If a font can't be opened, return nil.
23489
23490 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
23491 (ftfont_pattern_entity): New function.
23492 (ftfont_get_cache): Assume that freetype_font_cache is already
23493 initialized.
23494 (ftfont_list): Handle the case that a file is specified in font
23495 name. Use ftfont_pattern_entity to generate entities.
23496 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
23497 (syms_of_ftfont): Initialize freetype_font_cache.
23498
23499 * xftfont.c (xftfont_open): Make the font name fontconfig's
23500 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
23501 (xftfont_close): Free font->font.name if not NULL.
23502
23503 * xfont.c (xfont_list): If script is specified for a font, return
23504 null_vector.
23505 (xfont_list_family): Declare argument type.
23506
23507 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
23508 name, set LFACE_FONT (lface) to nil.
23509
23510 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
23511 return Qnil.
23512
23513 2008-02-01 Kenichi Handa <handa@m17n.org>
23514
23515 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
23516 (standard_args): Add "-enable-font-backend".
23517
23518 2008-02-01 Kenichi Handa <handa@m17n.org>
23519
23520 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
23521 (struct xftdraw_list, xftdraw_list): Delete them.
23522 (register_xftdraw, check_xftdraw): Delete them.
23523 (xftfont_prepare_face): Don't call register_xftdraw.
23524 (xftfont_done_face): Don't call check_xftdraw.
23525 (xftfont_draw): Get background color only when with_background is
23526 nonzero.
23527
23528 * xfont.c (xfont_encode_char): Fix calculation of char2b.
23529
23530 2008-02-01 Kenichi Handa <handa@m17n.org>
23531
23532 These changes are for the new font handling codes.
23533
23534 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
23535 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
23536 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
23537 (FONTSRC, FONTOBJ): New variables.
23538 (obj): Add $(FONTOBJ).
23539 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
23540 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
23541 @LIBOTF_LIBS@.
23542 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
23543 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
23544
23545 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
23546
23547 * character.h (Vscript_representative_chars): Extern it.
23548
23549 * character.c (Vscript_representative_chars): New variable.
23550 (syms_of_character): Declare it as a Lisp variable.
23551
23552 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
23553 enable_font_backend is nonzero, accept the composition method
23554 COMPOSITION_WITH_GLYPH_STRING.
23555
23556 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
23557 enumeration COMPOSITION_WITH_GLYPH_STRING.
23558
23559 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
23560 members clip_x, clip_y, clip_width, and clip_height.
23561 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
23562
23563 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
23564 --enable-font-backend. Call syms_of_font.
23565
23566 * fns.c (assoc_no_quit): New function.
23567
23568 * fontset.h (FONT_INFO_FROM_FACE): New macro.
23569 (face_for_font, new_fontset_from_font)
23570 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
23571
23572 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
23573 (fontset_font, fontset_ascii, face_for_char)
23574 (make_fontset_for_ascii_face, Ffont_info)
23575 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
23576 is nonzero, use font-backend mechanism.
23577 (find_font_encoding): Make it non-static.
23578 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
23579 New functions.
23580
23581 * frame.h (struct frame): New members resx and resy.
23582 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
23583 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
23584
23585 * frame.c [USE_FONT_BACKEND]: Include "font.h".
23586 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
23587
23588 * lisp.h (assoc_no_quit): Extern it.
23589
23590 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
23591 Through out the file, use FONT_INFO_FROM_FACE instead of
23592 FONT_INFO_FROM_ID, use get_per_char_metric instead of
23593 rif->per_char_metric.
23594 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
23595 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
23596 (get_glyph_face_and_encoding, fill_composite_glyph_string)
23597 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
23598 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
23599 nonzero, use font-backend mechanism.
23600 (get_per_char_metric): New function.
23601
23602 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
23603 (set_lface_from_font_name)
23604 (set_font_frame_param, free_realized_face)
23605 (prepare_face_for_display, clear_face_gcs)
23606 (Finternal_set_font_selection_order, realize_x_face)
23607 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
23608 font-backend mechanism.
23609 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
23610 (load_face_font) [USE_FONT_BACKEND]: Abort.
23611 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
23612 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
23613
23614 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
23615 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
23616 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
23617 nonzero, register all available font drivers.
23618 Call x_default_font_parameter for deciding a font.
23619 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
23620
23621 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
23622 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
23623 (x_set_glyph_string_clipping_exactly)
23624 (x_compute_glyph_string_overhangs)
23625 (x_draw_glyph_string_foreground)
23626 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
23627 (x_free_frame_resources) [USE_FONT_BACKEND]: If
23628 enable_font_backend is nonzero, use font-backend mechanism.
23629 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
23630
23631 2008-02-01 Kenichi Handa <handa@m17n.org>
23632
23633 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
23634 system_eol_type.
23635 (syms_of_coding): Initialize system_eol_type.
23636
23637 * process.c (Fset_process_coding_system): Inherit system's eol
23638 format if necessary.
23639
23640 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23641
23642 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
23643
23644 2008-02-01 Kenichi Handa <handa@m17n.org>
23645
23646 * coding.c (decode_eol): Pay attention to buffer relocation in
23647 del_range_2.
23648 (decode_coding): Call decode_eol before restoring undo_list.
23649
23650 2008-02-01 Kenichi Handa <handa@m17n.org>
23651
23652 * charset.c (Fdefine_charset_internal): Fix setting of
23653 emacs_mule_bytes.
23654
23655 2008-02-01 Kenichi Handa <handa@m17n.org>
23656
23657 * keyboard.c (read_char): Check if C is a character or not before
23658 looking up Vkeyboard_translate_table.
23659
23660 2008-02-01 Kenichi Handa <handa@m17n.org>
23661
23662 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
23663 Fix condition to terminate the loop.
23664
23665 2008-02-01 Kenichi Handa <handa@m17n.org>
23666
23667 * coding.c (produce_composition): Compare charbuf[i] instead of
23668 args[i] against 0.
23669 (Fterminal_coding_system): Use EQ to compare Lisp objects.
23670
23671 2008-02-01 Kenichi Handa <handa@m17n.org>
23672
23673 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
23674 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
23675 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
23676 detect_coding.
23677 (emacs_mule_char): Handle old style (Emacs 20) component character
23678 of a composition.
23679 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
23680 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
23681 composition rule.
23682 (decode_coding_emacs_mule): Handle invalid bytes correctly.
23683
23684 2008-02-01 Kenichi Handa <handa@m17n.org>
23685
23686 * coding.c (encode_coding_ccl): Allocate destination dynamically
23687 when necessary.
23688
23689 2008-02-01 Kenichi Handa <handa@m17n.org>
23690
23691 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
23692 the loop. When quitted, show a proper error message.
23693
23694 2008-02-01 Kenichi Handa <handa@m17n.org>
23695
23696 * xterm.c (x_set_glyph_string_clipping_exactly):
23697 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
23698
23699 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
23700 character sequence.
23701 (Fccl_execute_on_string): Use ASET, not XSET.
23702
23703 2008-02-01 Kenichi Handa <handa@m17n.org>
23704
23705 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
23706
23707 2008-02-01 Kenichi Handa <handa@m17n.org>
23708
23709 * coding.c (decode_coding): Fix the condition of terminating the
23710 decoding loop.
23711
23712 2008-02-01 Kenichi Handa <handa@m17n.org>
23713
23714 * data.c (Faset): On setting a character bigger than 255 in a
23715 unibyte string, signal an error instead of make the string multibyte.
23716
23717 2008-02-01 Kenichi Handa <handa@m17n.org>
23718
23719 * charset.c (map_charset_chars): Fix for ascii-compatible charset
23720 made by a mapping table.
23721
23722 2008-02-01 Kenichi Handa <handa@m17n.org>
23723
23724 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
23725 not.
23726 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
23727 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
23728
23729 * xterm.c (x_draw_composite_glyph_string_foreground):
23730 Check s->face is NULL or not.
23731
23732 2008-02-01 Kenichi Handa <handa@m17n.org>
23733
23734 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
23735 (x_draw_glyph_string): Fix drawing of right_overhang and
23736 left_overhang around/on cursor.
23737
23738 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
23739
23740 2008-02-01 Kenichi Handa <handa@m17n.org>
23741
23742 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
23743
23744 2008-02-01 Kenichi Handa <handa@m17n.org>
23745
23746 * coding.c (Fdefine_coding_system_internal)
23747 (Fdefine_coding_system_alias): Avoid a duplicated element in
23748 Vcoding_system_alist.
23749
23750 2008-02-01 Kenichi Handa <handa@m17n.org>
23751
23752 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
23753
23754 * coding.c (Qcoding_system_define_form): New variable.
23755 (syms_of_coding): Intern and staticpro it.
23756 (Fcoding_system_p): Check Qcoding_system_define_form.
23757 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
23758
23759 * coding.h (CODING_SYSTEM_P): If ID is not available, call
23760 Fcoding_system_p.
23761 (CHECK_CODING_SYSTEM): If ID is not available, call
23762 Fcheck_coding_system.
23763 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
23764 Try also Fcheck_coding_system.
23765
23766 2008-02-01 Kenichi Handa <handa@m17n.org>
23767
23768 * coding.c (code_conversion_restore): GCPRO arg.
23769
23770 2008-02-01 Kenichi Handa <handa@m17n.org>
23771
23772 * character.c (lisp_string_width): Check multibyteness of STRING.
23773
23774 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23775
23776 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
23777 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
23778 (decode_mac_font_name): Use decode_coding_c_string instead of
23779 decode_coding.
23780 (x_load_font): Initialize fontp->fontset to -1.
23781 Set fontp->encoding_type.
23782
23783 2008-02-01 Kenichi Handa <handa@m17n.org>
23784
23785 * search.c (search_buffer): Give up BM search on case-fold-search
23786 if one of a target character has a case-equivalence of different
23787 byte length even if that target character is an ASCII.
23788 (simple_search): Fix calculation of byte length of matched text.
23789 (boyer_moore): Fix handling of case-equivalent multibyte characters.
23790
23791 2008-02-01 Kenichi Handa <handa@m17n.org>
23792
23793 * coding.c (decode_coding): Fix handling of invalid bytes.
23794
23795 2008-02-01 Kenichi Handa <handa@m17n.org>
23796
23797 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
23798 Unicode characters.
23799
23800 2008-02-01 Kenichi Handa <handa@m17n.org>
23801
23802 * coding.c (encode_coding_object): If a pre-write-conversion
23803 function makes a new buffer, kill it.
23804
23805 2008-02-01 Kenichi Handa <handa@m17n.org>
23806
23807 * coding.c (QCascii_compatible_p): New variable.
23808 (syms_of_coding): Initialize it.
23809 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
23810 calling string_char.
23811 (record_conversion_result): Add `default:' case.
23812 (coding_charset_list): Delete unused variable `coding_type'.
23813 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
23814 property in the plist of the coding system.
23815 (Fcoding_system_put): Check QCascii_compatible_p.
23816
23817 2008-02-01 Miles Bader <miles@gnu.org>
23818
23819 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
23820 removed calculation of frame `f', as it's now used.
23821
23822 2008-02-01 Kenichi Handa <handa@m17n.org>
23823
23824 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
23825 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
23826 (UNIDATA): New variable.
23827 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
23828 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
23829 Run $(RUN_TEMACS) unconditionally.
23830
23831 2008-02-01 Kenichi Handa <handa@m17n.org>
23832
23833 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
23834 (admindir): New variable.
23835 ($(lispsource)international/charprop.el): New target.
23836
23837 2008-02-01 Miles Bader <miles@gnu.org>
23838
23839 * character.c (chars-in-region): Remove obsolete function.
23840 (syms_of_character): Remove its initialization.
23841
23842 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
23843
23844 * w32select.c (validate_coding_system)
23845 (setup_windows_coding_system): New functions.
23846 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
23847 Use setup_windows_coding_system.
23848 (setup_config, Fw32_get_clipboard_data):
23849 Use validate_coding_system.
23850 (Fx_selection_exists): Move call to setup_config to a place
23851 where signals are allowed.
23852
23853 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
23854 (Fcheck_coding_system): Add declarations.
23855
23856 2008-02-01 Kenichi Handa <handa@m17n.org>
23857
23858 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
23859
23860 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23861
23862 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
23863 string as the second argument for x_new_fontset.
23864
23865 2008-02-01 Kenichi Handa <handa@m17n.org>
23866
23867 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
23868 (encode_coding_object): Use safe_call instead of call2.
23869
23870 2008-02-01 Kenichi Handa <handa@m17n.org>
23871
23872 * fontset.c (Fset_fontset_font): Check family element of a given vector.
23873
23874 * Makefile.in (lisp): Include charprop.el.
23875
23876 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23877
23878 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
23879 Not sure if it's unnecessary.
23880
23881 2008-02-01 Steven Tamm <steventamm@mac.com>
23882
23883 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
23884 some possibly unnecessary fontset checking code that crashed
23885 when creating a new frame.
23886
23887 2008-02-01 Kenichi Handa <handa@m17n.org>
23888
23889 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
23890 lookup_face.
23891
23892 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
23893
23894 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
23895
23896 2008-02-01 Kenichi Handa <handa@m17n.org>
23897
23898 * coding.c: Cancel the change done in HEAD on 2008-02-01.
23899 (coding_charset_list): New function.
23900
23901 * coding.h (coding_charset_list): Extern it.
23902
23903 2008-02-01 Kenichi Handa <handa@m17n.org>
23904
23905 * fontset.c (Fset_fontset_font): Call find_font_encoding with
23906 concatenation of family and registry.
23907
23908 2008-02-01 Kenichi Handa <handa@m17n.org>
23909
23910 * character.h (BYTE8_STRING): Fix typo.
23911
23912 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
23913 string to multibyte (sync to HEAD).
23914
23915 * casefiddle.c (casify_region): Handle changes in byte-length
23916 using replace_range_2 (sync to HEAD).
23917
23918 2008-02-01 Andreas Schwab <schwab@suse.de>
23919
23920 * chartab.c (map_char_table): GCPRO table and arg.
23921
23922 2008-02-01 Kenichi Handa <handa@m17n.org>
23923
23924 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
23925 already at limit.
23926
23927 2008-02-01 Kenichi Handa <handa@m17n.org>
23928
23929 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
23930 instead of fast_c_string_match_ignore_case.
23931 (find_font_encoding): Change argument to Lisp_Object.
23932 Use fast_string_match_ignore_case instead of
23933 fast_c_string_match_ignore_case. Change caller.
23934
23935 2008-02-01 Kenichi Handa <handa@m17n.org>
23936
23937 * xdisp.c (get_next_display_element): In unibyte case, decide to
23938 display in octal form by checking a character by
23939 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
23940
23941 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
23942
23943 * character.c (unibyte_has_multibyte_table): New variable.
23944
23945 * character.h (unibyte_has_multibyte_table): Extern it.
23946 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
23947
23948 2008-02-01 Kenichi Handa <handa@m17n.org>
23949
23950 * coding.c (encode_coding_iso_2022): Fix handling of charset
23951 annotation.
23952
23953 2008-02-01 Kenichi Handa <handa@m17n.org>
23954
23955 * coding.c (setup_coding_system): If coding_system is nil, use
23956 Qundecided.
23957 (Fterminal_coding_system): Return nil if terminal coding system is
23958 `undecided'.
23959 (syms_of_coding): Define coding-system `undecided' here.
23960 Setup terminal_coding as `undecided'.
23961
23962 2008-02-01 Kenichi Handa <handa@m17n.org>
23963
23964 * xdisp.c (message_dolog, set_message_1):
23965 Call unibyte_char_to_multibyte with arg type int.
23966
23967 * lread.c (read1): Fix reading of a char-table.
23968
23969 * print.c (print_object): Include sub char-table in circularities
23970 detection.
23971
23972 2008-02-01 Kenichi Handa <handa@m17n.org>
23973
23974 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
23975 Append the found sequences in car of ARGS instead of prepending.
23976
23977 2008-02-01 Kenichi Handa <handa@m17n.org>
23978
23979 * fileio.c (report_file_error): Make a unibyte string from
23980 strerror (errorno).
23981 (Fsubstitute_in_file_name): Fix the arg to
23982 unibyte_char_to_multibyte. It is evaluated twice.
23983
23984 2008-02-01 Kenichi Handa <handa@m17n.org>
23985
23986 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
23987
23988 2008-02-01 Kenichi Handa <handa@m17n.org>
23989
23990 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
23991 BOM is not found.
23992 (detect_coding, detect_coding_system): Optimization for ISO-2022
23993 when no 8-bit data is found.
23994
23995 2008-02-01 Jason Rumney <jasonr@gnu.org>
23996
23997 * w32fns.c (x_to_w32_font): Update to use new coding struct.
23998
23999 2008-02-01 Kenichi Handa <handa@m17n.org>
24000
24001 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
24002 CHARS.
24003
24004 2008-02-01 Steven Tamm <steventamm@mac.com>
24005
24006 * macterm.c (mac_encode_char): Add charset argument and update
24007 to use encoding_type.
24008 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
24009 switch to pure fontset.
24010 (decode_mac_font_name): Temporarily remove decoding.
24011 (x_font_name_to_mac_font_name): Temporarily remove encoding.
24012 (x_load_font): Temporarily remove encoding.
24013
24014 2008-02-01 Kenichi Handa <handa@m17n.org>
24015
24016 * xfaces.c (Fface_font): If frame is not on a window system,
24017 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
24018 refer to face->font.
24019 (split_font_name_into_vector, build_font_name_from_vector)
24020 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
24021 when HAVE_WINDOW_SYSTEM is defined.
24022
24023 2008-02-01 Kenichi Handa <handa@m17n.org>
24024
24025 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
24026 (x_produce_glyphs): Fix setting of members of cmp in case
24027 cmp->glyph_len is zero.
24028
24029 * fontset.c (Fset_fontset_font): Fix docstring.
24030 (Ffontset_info): Make it backward compatible. New arg ALL.
24031
24032 2008-02-01 Kim F. Storm <storm@cua.dk>
24033
24034 * process.c (read_process_output): Grow decoding_buf when needed;
24035 this could cause a crash in allocate_string and compact_small_strings.
24036
24037 2008-02-01 Kenichi Handa <handa@m17n.org>
24038
24039 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
24040
24041 2008-02-01 Kenichi Handa <handa@m17n.org>
24042
24043 * coding.c (setup_coding_system): Set coding->common_flags
24044 correctly for raw-text.
24045 (consume_chars): On encoding unibyte text by raw-text, don't check
24046 multibyte form.
24047 (encode_coding): On encoding by raw-text, never use translation tables.
24048
24049 * fileio.c (e_write): Short cut for the case of no encoding.
24050
24051 2008-02-01 Kenichi Handa <handa@m17n.org>
24052
24053 * coding.c (detect_coding, detect_coding_system): Delete unused
24054 variables.
24055
24056 2008-02-01 Kenichi Handa <handa@m17n.org>
24057
24058 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
24059 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
24060
24061 2008-02-01 Kenichi Handa <handa@m17n.org>
24062
24063 * coding.c (Ffind_coding_systems_region_internal):
24064 Include raw-text and no-conversion in the result.
24065
24066 2008-02-01 Kenichi Handa <handa@m17n.org>
24067
24068 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
24069 (load_font_get_repertory): Delete unnecessary check of ENCODING of
24070 FONT_DEF.
24071 (font_def_arg, add_arg, from_arg, to_arg): New args.
24072 (set_fontset_font): Change argument.
24073 (Fset_fontset_font): Fix for the case that TARGET is a script
24074 name and charset name.
24075 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
24076
24077 2008-02-01 Kenichi Handa <handa@m17n.org>
24078
24079 * fontset.c (fontset_font): Rename from fontset_face. Change return
24080 value.
24081 (face_suitable_for_char_p, face_for_char): Adjust for the change
24082 of fontset_font.
24083 (make_fontset_for_ascii_face): Fix setting of the fontset element
24084 for ASCII.
24085 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
24086 to get a font name.
24087 (Ffontset_info): Adjust for the change of fontset_font.
24088
24089 * coding.c (emacs_mule_char): Check invalid code more rigidly.
24090
24091 * character.h (LEADING_CODE_LATIN_1_MIN)
24092 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
24093
24094 2008-02-01 Kenichi Handa <handa@m17n.org>
24095
24096 * editfns.c (check_translation): New function.
24097 (Ftranslate_region_internal): Handle M:N mapping.
24098
24099 2008-02-01 Kenichi Handa <handa@m17n.org>
24100
24101 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
24102
24103 2008-02-01 Kenichi Handa <handa@m17n.org>
24104
24105 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
24106 goto invalid_code.
24107 (decode_coding_iso_2022): Fix handling of invalid designation.
24108
24109 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
24110 after calling code_conversion_save.
24111
24112 2008-02-01 Kenichi Handa <handa@m17n.org>
24113
24114 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
24115
24116 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
24117
24118 * fontset.c: Include "intervals.h".
24119 (fontset_face): Fix comparing of Lisp_Objects.
24120 (free_face_fontset, new_fontset_from_font_name):
24121 Fix Lisp_Object/int mixup.
24122
24123 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
24124
24125 * coding.c: Add many prototypes for static functions.
24126 (get_translation_table): Allow max_lookup to be NULL.
24127 (decode_coding, Ffind_coding_systems_region_internal)
24128 (Funencodable_char_position, Fcheck_coding_systems_region):
24129 Call get_translation_table with max_lookup NULL.
24130
24131 2008-02-01 Kenichi Handa <handa@m17n.org>
24132
24133 * coding.c (get_translation_table): Declare it as Lisp_Object.
24134 (LOOKUP_TRANSLATION_TABLE): New macro.
24135 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
24136 instead of CHAR_TABLE_REF.
24137
24138 2008-02-01 Kenichi Handa <handa@m17n.org>
24139
24140 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
24141 annotation data format.
24142 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
24143 Change arguments FROM and TO to single argument NCHARS. Change caller.
24144 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
24145 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
24146 (decode_coding_ccl, decode_coding_charset): Pay attention to
24147 coding->charbuf_used.
24148 (get_translation): New function.
24149 (produce_chars): New arguments translation_table and last_block.
24150 Translate characters here. Return number of carryover chars.
24151 Change caller.
24152 (produce_composition): New argument pos. Change caller.
24153 Adjust for the change of annotation data format.
24154 (produce_charset, produce_annotation): Likewise.
24155 (decode_coding, encode_coding): Don't call translate_chars.
24156 (consume_chars): New arg translation_table. Change caller.
24157 (translate_chars): Delete.
24158 (syms_of_coding): Make translation-table's number of extra slots 2.
24159
24160 2008-02-01 Kenichi Handa <handa@m17n.org>
24161
24162 * search.c (simple_search): Fix setting this_pos_byte in backward
24163 search.
24164
24165 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
24166 byte sequence.
24167 (detect_coding_ccl): Fix setting of the variable valids.
24168
24169 2008-02-01 Kenichi Handa <handa@m17n.org>
24170
24171 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
24172
24173 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
24174
24175 * editfns.c (Ftranslate_region_internal): Rename from
24176 Ftranslate_region. Accept a char-table in TABLE.
24177 (syms_of_editfns): Defsubr Stranslate_region_internal.
24178
24179 * xfaces.c (set_lface_from_font_name): If a font is specified for
24180 a frame, generate a fontset from the font.
24181 (build_scalable_font_name): If the scalable font is requested for
24182 a specific size, don't change that size.
24183 (try_font_list): Try a scalable font also in the case that a
24184 pattern string is specified.
24185
24186 2008-02-01 Kenichi Handa <handa@m17n.org>
24187
24188 * xfaces.c (Fface_font): New optional arg CHARACTER.
24189
24190 2008-02-01 Kenichi Handa <handa@m17n.org>
24191
24192 * charset.h (CHARSET_OFFSET): New macro.
24193
24194 2008-02-01 Kenichi Handa <handa@m17n.org>
24195
24196 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
24197
24198 * fontset.c (fontset_face): Handle the case that repertory is a
24199 char-table.
24200 (find_font_encoding): Return nil for unknown encoding.
24201 (Fset_fontset_font): Ignore a font of unknown encoding.
24202
24203 2008-02-01 Kenichi Handa <handa@m17n.org>
24204
24205 * keymap.c (describe_vector): Handle default value of a char table.
24206
24207 * fontset.c (fontset_face): Handle fallback fonts correctly.
24208 (Ffontset_info): Return infomation about fallback fonts.
24209
24210 2008-02-01 Kenichi Handa <handa@m17n.org>
24211
24212 * fontset.c (FONTSET_DEFAULT): New macro.
24213 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
24214 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
24215 the case that it is nil.
24216 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
24217 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
24218
24219 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
24220 subset or superset.
24221
24222 2008-02-01 Kenichi Handa <handa@m17n.org>
24223
24224 * emacs.c (main): Call init_charset after syms_of_XXX.
24225
24226 * charset.c (Vcharset_map_directory): Delete.
24227 (Vcharset_map_path): New variable.
24228 (load_charset_map_from_file): Use Vcharset_map_path instead.
24229 (init_charset): Initialize Vcharset_map_path.
24230 (syms_of_charset): Delete declaration of "charset-map-directory",
24231 add declaration of "charset-map-path".
24232
24233 2008-02-01 Kenichi Handa <handa@m17n.org>
24234
24235 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
24236 ASCII only string.
24237
24238 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
24239
24240 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
24241 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
24242
24243 2008-02-01 Kenichi Handa <handa@m17n.org>
24244
24245 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
24246
24247 * coding.c (QCmnemonic, QCdefalut_char)
24248 (QCdecode_translation_table, QCencode_translation_table)
24249 (QCpost_read_conversion, QCpre_write_conversion): New variables.
24250 (get_translation_table): Return a list of translation tables if
24251 necessary.
24252 (decode_coding): Call get_translation_table with ENCODEP 0.
24253 (char_encodable_p): If translation_table is non-nil, always call
24254 translate_char.
24255 (Fdefine_coding_system_internal): Accept list of translation
24256 tables as :encode-translation-table and :decode-translation-table.
24257 (Fcoding_system_put): New function.
24258 (syms_of_coding): Declare new symbols.
24259 Defsubr Scoding_system_put.
24260 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
24261 typically JISX0212.
24262
24263 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
24264 when the charset is superset type.
24265
24266 * character.c (translate_char): Accept list of translation tables.
24267
24268 2008-02-01 Kenichi Handa <handa@m17n.org>
24269
24270 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
24271 (CODING_ATTR_TRANS_TBL): New macro.
24272
24273 * coding.c (get_translation_table): New function.
24274 (translate_chars): Fix the bug of skipping annotation data.
24275 (decode_coding, encode_coding): Utilize get_translation_table.
24276 (char_encodable_p, Funencodable_char_position): Translate char if
24277 necessary.
24278 (Ffind_coding_systems_region_internal)
24279 (Fcheck_coding_systems_region): Setup translation table for encode
24280 in a coding system attribute vector in advance.
24281 (Fdefine_coding_system_internal): Allow a symbol as translation
24282 table. For shift-jis type coding system, allow 4th charset.
24283
24284 2008-02-01 Kenichi Handa <handa@m17n.org>
24285
24286 * coding.c (decode_coding_sjis): Check the first byte rigidly.
24287
24288 * xdisp.c (get_next_display_element): Pass -1 as POS to
24289 FACE_FOR_CHAR if displaying a C-string.
24290
24291 2008-02-01 Kenichi Handa <handa@m17n.org>
24292
24293 * composite.c (get_composition_id): Handle xoff and yoff in a
24294 composition rule.
24295
24296 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
24297 (struct composition): New member lbearing and rbearing.
24298
24299 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
24300 (x_get_glyph_overhangs): Handle a composition glyph.
24301 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
24302
24303 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
24304 composition glyph.
24305
24306 2008-02-01 Kenichi Handa <handa@m17n.org>
24307
24308 * print.c: Include charset.h.
24309 (Vprint_charset_text_property): New variable.
24310 (Qdefault): Extern it.
24311 (PRINT_STRING_NON_CHARSET_FOUND)
24312 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
24313 (print_check_string_result): New variable.
24314 (print_check_string_charset_prop): New function.
24315 (print_prune_charset_plist): New variable.
24316 (print_prune_string_charset): New function.
24317 (print_object): Call print_prune_string_charset if
24318 Vprint_charset_text_property is not t.
24319 (print_interval): Print nothing if interval->plist is nil.
24320 (syms_of_print): Declare Vprint_charset_text_property as a lisp
24321 variable. Init and staticpro print_prune_charset_plist.
24322
24323 2008-02-01 Kenichi Handa <handa@m17n.org>
24324
24325 * fontset.c (new_fontset_from_font_name): Use the specified font
24326 for all characters in the new fontset.
24327
24328 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
24329 OBJECT args.
24330
24331 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
24332 OBJECT args for composition too.
24333
24334 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
24335 OBJECT args.
24336
24337 2008-02-01 Kenichi Handa <handa@m17n.org>
24338
24339 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
24340
24341 * fontset.c (reorder_font_vector): Adjust for the change of
24342 FONT_DEF format.
24343 (fontset_face): New arg id. Change caller.
24344 (face_for_char): New args pos and object.
24345 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
24346 (fs_query_fontset): Check NAME by Fassoc too.
24347 (Fset_fontset_font): Allow non-XLFD font name.
24348 (Ffontset_info): Adjust for the change of FONT_DEF format.
24349
24350 * fontset.h (face_for_char): Adjust prototype.
24351
24352 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
24353 (append_space, extend_face_to_end_of_line)
24354 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
24355 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
24356
24357 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
24358 POS and OBJECT args.
24359
24360 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
24361 POS and OBJECT args.
24362
24363 2008-02-01 Jason Rumney <jasonr@gnu.org>
24364
24365 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
24366 of GlobalAlloc'ed memory.
24367
24368 2008-02-01 Kenichi Handa <handa@m17n.org>
24369
24370 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
24371
24372 * charset.h (charset_table_used): Delete extern.
24373
24374 * charset.c (charset_table_used): Make it static.
24375 (map_charset_chars): Fix args to c_function with.
24376
24377 * chartab.c (map_sub_char_table_for_charset): Fix args to
24378 c_function with.
24379
24380 * coding.h (enum coding_result_code):
24381 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
24382
24383 * coding.c (Qinsufficient_source, Qinconsistent_eol)
24384 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
24385 (Vlast_code_conversion_error): New variables.
24386 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
24387 (ONE_MORE_BYTE): Record error if any instead of signaling an
24388 error. If non-ASCII multibyte char is found, return the negative
24389 value of the code. All callers changed to check it.
24390 (ONE_MORE_BYTE_NO_CHECK): Likewise.
24391 (record_conversion_result): New function. Change all codes setting
24392 coding->result to call this function.
24393 (detect_coding_utf_8, decode_coding_utf_8)
24394 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
24395 Don't use the local variable incomplete.
24396 (emacs_mule_char): Change the second arg to `const'.
24397 (decode_coding): Fix of flushing out unprocessed data.
24398 (make_conversion_work_buffer): Fix making of a work buffer.
24399 (decode_coding_object): Return coding->dst_object.
24400
24401 * fontset.c (set_fontset_font): Fix args.
24402
24403 * lisp.h (CHARACTERBITS): Define as 22.
24404
24405 * process.c (send_process): Be sure to set coding->src_multibyte.
24406
24407 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
24408
24409 2008-02-01 Kenichi Handa <handa@m17n.org>
24410
24411 * xdisp.c (handle_auto_composed_prop): Give limit to
24412 Fnext_single_char_property_change.
24413
24414 2008-02-01 Kenichi Handa <handa@m17n.org>
24415
24416 * composite.c (syms_of_composite): Don't make the composition hash
24417 table weak.
24418
24419 * fontset.c (Fset_fontset_font): Fix docstring.
24420
24421 * lisp.h (detect_coding_system): Adjust prototype.
24422
24423 * fileio.c (kill_workbuf_unwind): Delete this function.
24424 (Finsert_file_contents): Adjust the call of detect_coding_system.
24425 Get conversion_buffer by code_conversion_save. Use the macro
24426 CODING_MAY_REQUIRE_DECODING. After decoding, update
24427 coding_system.
24428
24429 * coding.h (make_conversion_work_buffer): Delete extern.
24430 (code_conversion_save): Extern it.
24431
24432 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
24433 (CODING_GET_INFO): Delete argument eol_type. Change callers.
24434 (decode_coding_utf_8): Don't do eol converion.
24435 (detect_coding_utf_16): Check coding->src_chars, not
24436 coding->src_bytes. Add heuristics for those that have no signature.
24437 (decode_coding_emacs_mule, decode_coding_iso_2022)
24438 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
24439 Don't do eol converion.
24440 (adjust_coding_eol_type): Return a new coding system.
24441 (detect_coding): Don't detect eol. Fix for utf-16 detection.
24442 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
24443 each change.
24444 (decode_coding): Pay attention to undo_list. Do eol conversion for
24445 all types of coding-systems (if necessary).
24446 (Vcode_conversion_work_buf_list): Delete it.
24447 (Vcode_conversion_reused_workbuf): Rename from
24448 Vcode_conversion_reused_work_buf.
24449 (Vcode_conversion_workbuf_name): New variable.
24450 (reused_workbuf_in_use): New variable.
24451 (make_conversion_work_buffer): Delete the arg DEPTH.
24452 (code_conversion_restore): Change argument to cons.
24453 (code_conversion_save): Delete the argument BUFFER. Change callers.
24454 (detect_coding_system): New argument src_chars. Change callers.
24455 Fix for utf-16 detection.
24456 (init_coding_once): Don't use ISO_carriage_return.
24457 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
24458 reused_workbuf_in_use.
24459
24460 2008-02-01 Kenichi Handa <handa@m17n.org>
24461
24462 * keymap.c (store_in_keymap): Pay attention to the case that idx
24463 is a cons specifying a character range.
24464
24465 2008-02-01 Kenichi Handa <handa@m17n.org>
24466
24467 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
24468 HANDLED_RECOMPUTE_PROPS.
24469
24470 * coding.c (Fdefine_coding_system_internal): Fix checking of
24471 ascii compatibility.
24472
24473 2008-02-01 Kenichi Handa <handa@m17n.org>
24474
24475 * charset.c (find_charsets_in_text): Delete unused locale variable.
24476 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
24477
24478 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
24479 Resync charset_list to Vemacs_mule_charset_list.
24480
24481 * keymap.c (store_in_keymap): Pay attention to the case that idx
24482 is a cons specifying a character range.
24483
24484 2008-02-01 Kenichi Handa <handa@m17n.org>
24485
24486 * composite.c (update_compositions): Bind inhibit-read-only, etc
24487 to t before calling remove-list-of-text-properties.
24488
24489 * print.c (print_object): Always print ASCII chars as is.
24490
24491 2008-02-01 Kenichi Handa <handa@m17n.org>
24492
24493 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
24494
24495 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
24496 is a char table.
24497
24498 2008-02-01 Kenichi Handa <handa@m17n.org>
24499
24500 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
24501
24502 2008-02-01 Kenichi Handa <handa@m17n.org>
24503
24504 * xfaces.c (set_lface_from_font_name): Fix for the case that
24505 FONTNAME is not fontset name.
24506
24507 2008-02-01 Kenichi Handa <handa@m17n.org>
24508
24509 * fns.c (base64_encode_1): Fix previous change.
24510
24511 2008-02-01 Kenichi Handa <handa@m17n.org>
24512
24513 * fontset.c (set_fontset_font): New function.
24514 (Fset_fontset_font): If a font is specified for a charset, use
24515 map_charset_chars to store the font spec in a fontset.
24516
24517 2008-02-01 Kenichi Handa <handa@m17n.org>
24518
24519 * fontset.c (fontset_face): Create a fallback fontset on demand.
24520 (make_fontset): Don't create a fallback fontset here.
24521 (free_face_fontset): Free a fallback fontset (if any) too.
24522 (n_auto_fontsets): Delete this variable.
24523 (auto_fontset_alist): New variable.
24524 (new_fontset_from_font_name): Check auto_fontset_alist.
24525 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
24526 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
24527 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
24528 Defsubr Sfontset_list_all.
24529
24530 2008-02-01 Kenichi Handa <handa@m17n.org>
24531
24532 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
24533
24534 2008-02-01 Kenichi Handa <handa@m17n.org>
24535
24536 * fontset.c (Fnew_fontset): Check NAME more rigidly.
24537
24538 2008-02-01 Kenichi Handa <handa@m17n.org>
24539
24540 * editfns.c (Fgoto_char): Fix docstring.
24541
24542 2008-02-01 Kenichi Handa <handa@m17n.org>
24543
24544 * insdel.c (insert_from_gap): Adjust intervals correctly.
24545
24546 2008-02-01 Jason Rumney <jasonr@gnu.org>
24547
24548 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
24549 (pfnGetFontUnicodeRanges): New dynamically loaded function.
24550 (w32_initialize): Try to load it.
24551 (x_get_font_repertory): Use it if available.
24552 (w32_encode_char): Add shortcut for unicode output.
24553
24554 * w32fns.c (w32_load_system_font): Default charset to -1.
24555 (x_to_w32_charset): Match all fonts for unicode.
24556 (w32_to_x_charset): New parameter matching. Don't return partial
24557 or wildcard charsets.
24558 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
24559 (w32_codepage_for_font): Return CP_UNICODE for unicode.
24560 (w32_to_x_font): Match charset to real charset.
24561 (enum_font_cb2): Always list unicode versions.
24562
24563 * makefile.w32-in (temacs): Increase EMHEAP.
24564
24565 2008-02-01 Jason Rumney <jasonr@gnu.org>
24566
24567 * w32term.c (w32_encode_char): New charset parameter.
24568 font_info.encoding becomes encoding_type.
24569 (x_get_font_repertory): New function. Warning: stub only!
24570 (x_new_font): Return quickly if font already set.
24571 (x_new_fontset): fontsetname parameter is Lisp_Object.
24572 Use new fs_query_fontset. Try new_fontset_from_font_name.
24573 Use fontset_name for return value.
24574
24575 * w32term.h: Declare x_get_font_repertory.
24576
24577 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
24578 place of find_charset_in_text. Use encode_coding_object in place
24579 of encode_coding.
24580 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
24581 decode_coding.
24582
24583 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
24584 of x_new_fontset.
24585 (w32_load_system_font): Initialize charset as unicode.
24586 font_info.encoding becomes encoding_type.
24587 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
24588 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
24589 (syms_of_w32fns): Set get_font_repertory_func.
24590
24591 * w32console.c: Include character.h. Use terminal_encode_buffer
24592 from term.c.
24593 (write_glyphs): Use new version of encode_terminal_code.
24594 Use encode_coding_object in place of encode_coding.
24595
24596 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
24597 encoding becomes encoding_type.
24598
24599 * term.c (terminal_encode_buffer): Make externally visible.
24600
24601 * makefile.w32-in: Add character.h dependancies.
24602 (character.o, chartab.o): New targets.
24603
24604 2008-02-01 Kenichi Handa <handa@m17n.org>
24605
24606 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
24607 CODING_ID_EOL_TYPE.
24608
24609 2008-02-01 Andreas Schwab <schwab@suse.de>
24610
24611 * coding.c (produce_chars): Revert last change.
24612
24613 2008-02-01 Kenichi Handa <handa@m17n.org>
24614
24615 * charset.h (charset_unicode): Extern it.
24616
24617 * charset.c (string_xstring_p): Check by (C >= 0x100).
24618 (find_charsets_in_text): Change format of the arc CHARSETS.
24619 New arg MULTIBYTE.
24620 (Ffind_charset_region, Ffind_charset_string): Adjust for the
24621 change of find_charsets_in_text.
24622 (Fsplit_char): Fix doc. Never return unknown.
24623
24624 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
24625
24626 * coding.c (Fdefine_coding_system_alias):
24627 Update Vcoding_system_list.
24628
24629 * fontset.c (load_font_get_repertory): Pay attention to the case
24630 that ENCODING of a font is specified by a char-table.
24631
24632 * xterm.c (x_get_font_repertory): Handle the case that the
24633 encoding of font is other than Unicode.
24634
24635 2008-02-01 Kenichi Handa <handa@m17n.org>
24636
24637 * term.c (encode_terminal_code): Don't handle glyph-table.
24638 Check if a character is encodable by the terminal coding system.
24639 If not, produces proper number of `?'s. Update
24640 terminal_encode_buffer and terminal_encode_buf_size if necessary.
24641 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
24642
24643 2008-02-01 Kenichi Handa <handa@m17n.org>
24644
24645 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
24646 New variables.
24647 (encode_terminal_code): Change argument. Encode multiple
24648 characters at once. Store the result of encoding in
24649 terminal_encode_buffer.
24650 (write_glyphs, insert_glyphs): Adjust for the change of
24651 encode_terminal_code.
24652 (term_init): Initialize terminal_encode_buffer and
24653 terminal_encode_buf_size.
24654
24655 * coding.c (consume_chars): If coding->src_object is nil, don't
24656 check annotation.
24657
24658 2008-02-01 Kenichi Handa <handa@m17n.org>
24659
24660 * character.c (char_string): Use ASCII_CHAR_P instead of
24661 SINGLE_BYTE_CHAR_P.
24662
24663 2008-02-01 Kenichi Handa <handa@m17n.org>
24664
24665 * xdisp.c (handle_auto_composed_prop): Check if the last
24666 characters of auto-composed region is newly composed with the
24667 following characters.
24668 (handle_composition_prop): Fix checking of point being inside
24669 composition.
24670
24671 2008-02-01 Kenichi Handa <handa@m17n.org>
24672
24673 * fns.c (concat): Don't change multibyteness of the result by
24674 concatenating an 8-bit character.
24675
24676 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
24677 multibyteness of the result when newelt is an 8-bit character.
24678
24679 2008-02-01 Dave Love <fx@gnu.org>
24680
24681 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
24682 EMACS_INT.
24683
24684 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
24685
24686 * xfaces.c (face_numeric_value): Declare dim size_t.
24687 (Finternal_lisp_face_equal_p): Remove unused f.
24688
24689 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
24690 (MATRIX_ROW): Remove unused vars.
24691 (draw_glyphs, x_insert_glyphs, fast_find_position)
24692 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
24693 byte/char counts.
24694
24695 * regex.c (regex_compile): Remove unused var.
24696
24697 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
24698
24699 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
24700 (Faccessible_keymaps, where_is_internal): Remove unused vars.
24701
24702 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
24703
24704 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
24705
24706 * fileio.c (Fwrite_region): Remove unused var.
24707
24708 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
24709 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
24710
24711 * composite.c (Fremove_list_of_text_properties): Declare.
24712
24713 * coding.c (inhibit_pre_post_conversion): Remove (unused).
24714 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
24715 (coding_inherit_eol_type): Remove unused attrs.
24716 (detect_coding): Cast arg of detect_eol.
24717
24718 * charset.c (syms_of_charset): Remove unused var p.
24719 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
24720 byte/char counts.
24721
24722 * casetab.c (set_case_table): Remove unused var.
24723
24724 * window.c (Fdisplay_buffer, Fframe_selected_window):
24725 Remove unused vars.
24726
24727 2008-02-01 Dave Love <fx@gnu.org>
24728
24729 * xterm.c (x_bitmap_mask): Declare.
24730
24731 2008-02-01 Dave Love <fx@gnu.org>
24732
24733 * xterm.c (x_term_init): Fix type error.
24734
24735 * lisp.h: Add Funibyte_char_to_multibyte.
24736
24737 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
24738 (Fset_coding_system_priority): Doc fix.
24739
24740 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
24741
24742 * indent.c (check_composition): Make start and end EMACS_INT.
24743
24744 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
24745
24746 * xdisp.c (handle_composition_prop, check_point_in_composition):
24747 Make buffer positions EMACS_INT.
24748
24749 * composite.c (find_composition, run_composition_function)
24750 (update_compositions, Ffind_composition_internal): Make buffer
24751 positions EMACS_INT.
24752
24753 * composite.h (find_composition, update_compositions):
24754 Make position args EMACS_INT.
24755
24756 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
24757
24758 * intervals.c (get_property_and_range):
24759 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
24760
24761 * unexalpha.c: Don't include varargs.h.
24762
24763 2008-02-01 Dave Love <fx@gnu.org>
24764
24765 * coding.h (ENCODE_UTF_8): New.
24766
24767 * Makefile.in (gtkutil.o): Depend on coding.h.
24768
24769 * coding.c (Fset_coding_system_priority): Doc fix.
24770
24771 2008-02-01 Kenichi Handa <handa@m17n.org>
24772
24773 * fileio.c (Finsert_file_contents): Call setup_coding_system in
24774 the case of auto saving.
24775
24776 2008-02-01 Andreas Schwab <schwab@suse.de>
24777
24778 * chartab.c (map_char_table, map_char_table_for_charset):
24779 Protect `range' from GC.
24780
24781 2008-02-01 Kenichi Handa <handa@m17n.org>
24782
24783 * coding.c (decode_coding_sjis): Check bytes more rigidly.
24784
24785 2008-02-01 Kenichi Handa <handa@m17n.org>
24786
24787 * fileio.c (choose_write_coding_system): Return a decided coding system.
24788 (Fwrite_region): Set Vlast_coding_system_used to the return value
24789 of choose_write_coding_system.
24790
24791 2008-02-01 Kenichi Handa <handa@m17n.org>
24792
24793 * charset.c (Fset_charset_priority): Pay attention to duplicated
24794 arguments.
24795
24796 * coding.c (QCcategory): New variable.
24797 (syms_of_coding): Defsym it. Set all elements of
24798 Vcoding_category_table and their symbol values.
24799 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
24800 coding-category-XXX, and coding-category-list.
24801 (Fdefine_coding_system_internal): Add category in the plist.
24802
24803 2008-02-01 Kenichi Handa <handa@m17n.org>
24804
24805 * callproc.c (Fcall_process): Handle carryover correctly.
24806
24807 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
24808 (raw_text_coding_system): Check NILP (coding_system).
24809 (coding_inherit_eol_type): Check NILP (coding_system) and
24810 NILP (parent).
24811 (consume_chars): Fix for the case of raw-text.
24812
24813 * process.c (read_process_output): Handle carryover correctly.
24814
24815 2008-02-01 Dave Love <fx@gnu.org>
24816
24817 * regex.c (re_search_2): Fix last change.
24818
24819 2008-02-01 Kenichi Handa <handa@m17n.org>
24820
24821 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
24822 target_multibyte. Even in a unibyte case, return a converted
24823 multibyte char.
24824 (GET_CHAR_AFTER): New macro.
24825 (PATFETCH): Translate via multibyte char.
24826 (HANDLE_UNIBYTE_RANGE): Delete this macro.
24827 (SETUP_MULTIBYTE_RANGE): New macro.
24828 (regex_compile): Setup compiled code so that its multibyteness
24829 matches that of a target. Fix the handling of "[X-YZ]" using
24830 SETUP_MULTIBYTE_RANGE.
24831 (analyse_first) <charset>: For filling fastmap for all multibyte
24832 characters, don't check by BASE_LEADING_CODE_P.
24833 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
24834 the same as RE_MULTIBYTE_P (bufp) now.
24835 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
24836 (TARGET_CHAR_AND_LENGTH): Delete this macro.
24837 (TRANSLATE_VIA_MULTIBYTE): New macro.
24838 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
24839 It is the same as RE_MULTIBYTE_P (bufp) now.
24840 <exactn>: Translate via multibyte.
24841 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
24842 Don't translate it.
24843 <charset, charset_not>: Fetch a character by
24844 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
24845 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
24846 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
24847 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
24848 by GET_CHAR_AFTER.
24849 (bcmp_translate): Likewise.
24850
24851 * search.c (compile_pattern): Check the member target_multibyte,
24852 not the member multibyte of buf.
24853
24854 * lread.c (read1): While reading a string, set force_singlebyte
24855 and force_multibyte correctly.
24856
24857 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
24858 up of unibyte_to_multibyte_table.
24859
24860 2008-02-01 Kenichi Handa <handa@m17n.org>
24861
24862 * coding.c (setup_coding_system): If coding has
24863 post-read-conversion or pre-write-conversion, set
24864 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
24865 respectively.
24866 (decode_coding_gap): Run post-read-conversion if any.
24867
24868 * fileio.c (Finsert_file_contents): Even if we read into a
24869 unibyte buffer, check if we must decode the result or not.
24870
24871 2008-02-01 Kenichi Handa <handa@m17n.org>
24872
24873 * coding.c (make_conversion_work_buffer): Change the work buffer
24874 name to the same one as that of Emacs 21.
24875
24876 2008-02-01 Kenichi Handa <handa@m17n.org>
24877
24878 * coding.h (make_conversion_work_buffer): Adjust prototype.
24879 (code_conversion_restore): Don't extern it.
24880
24881 * coding.c (detected_mask): Delete unused variable.
24882 (decode_coding_iso_2022): Pay attention to the byte sequence of
24883 CTEXT extended segment, and retain those bytes as is.
24884 (decode_coding_ccl): Delete unused variable `valids'.
24885 (setup_coding_system): Delete unused variable `category'.
24886 (consume_chars): Delete unused variable `category'. Make it work
24887 for non-multibyte case.
24888 (make_conversion_work_buffer): Change argument.
24889 (saved_coding): Delete unused variable.
24890 (code_conversion_restore): Don't check saved_coding->destination.
24891 (code_conversion_save): New function.
24892 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
24893 instead of record_unwind_protect.
24894 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
24895 (detect_coding_system): Delete unused variable `mask'.
24896 (Fdefine_coding_system_internal): Delete unused variable id.
24897
24898 * fileio.c (kill_workbuf_unwind): New function.
24899 (Finsert_file_contents): On replacing, call
24900 make_conversion_work_buffer with correct args, and call
24901 record_unwind_protect with the first arg kill_workbuf_unwind.
24902
24903 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
24904
24905 2008-02-01 Kenichi Handa <handa@m17n.org>
24906
24907 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
24908 (fontset_add): Fix for the case that TO is less than TO1.
24909 (Ffontset_info): Don't use fallback fontset on checking the
24910 default fontset.
24911 (dump_fontset): New function for debugging.
24912
24913 * coding.c (Fdefine_coding_system_internal): Fix for the case that
24914 coding_type is Qcharset.
24915
24916 2008-02-01 Kenichi Handa <handa@m17n.org>
24917
24918 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
24919 (map_char_table): Don't inherit the value from the parent on
24920 initializing VAL. Adjust for the above change.
24921
24922 2008-02-01 Kenichi Handa <handa@m17n.org>
24923
24924 * coding.c (Qsignature, Qendian): Delete these variables.
24925 (syms_of_coding): Don't initialize them.
24926 (CATEGORY_MASK_UTF_16_AUTO): New macro.
24927 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
24928 detect_info->found.
24929 (decode_coding_utf_16): Don't detect BOM here.
24930 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
24931 is NOT utf_16_without_bom.
24932 (setup_coding_system): For a coding system of type utf-16, check
24933 if the attribute :endian is Qbig or not (not nil or not), and set
24934 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
24935 (detect_coding): If coding type is utf-16 and BOM detection is
24936 required, detect it.
24937 (Fdefine_coding_system_internal): For a coding system of type
24938 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
24939
24940 2008-02-01 Kenichi Handa <handa@m17n.org>
24941
24942 * coding.c (coding_set_source): Fix for the case that the current
24943 buffer is different from coding->src_object.
24944 (decode_coding_object): Don't use the conversion work buffer if
24945 DST_OBJECT is a buffer.
24946
24947 2008-02-01 Dave Love <fx@gnu.org>
24948
24949 * lread.c (read_emacs_mule_char) [len==2]: Index
24950 emacs_mule_charset correctly.
24951
24952 2008-02-01 Dave Love <fx@gnu.org>
24953
24954 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
24955 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
24956 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
24957 treated specially.)
24958 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
24959 (detected_mask): Remove Big5 bits.
24960
24961 2008-02-01 Kenichi Handa <handa@m17n.org>
24962
24963 The following changes are to make the font rescaling facility
24964 compatible with Emacs 21.
24965
24966 * xfaces.c (Vface_font_rescale_alist): Rename from
24967 Vface_resizing_fonts.
24968 (struct font_name): Rename member resizing_ratio to rescale_ratio.
24969 (font_rescale_ratio): Rename from font_resizing_ratio.
24970 (split_font_name): Set font->rescale_ratio.
24971 (better_font_p): Pay attention to font->rescale_ratio.
24972 (build_scalable_font_name): Likewise. Change RESX, and RESY
24973 fields.
24974 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
24975
24976 2008-02-01 Kenichi Handa <handa@m17n.org>
24977
24978 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
24979 (Qutf_16_le): Remove these variables.
24980 (syms_of_coding): Don't DEFSYM them.
24981 (decode_coding_utf_16): Fix handling of BOM.
24982 (encode_coding_utf_16): Fix handling of BOM.
24983
24984 2008-02-01 Kenichi Handa <handa@m17n.org>
24985
24986 * fileio.c (Finsert_file_contents): On replacing, before decoding
24987 the file into the work buffer, set point of the work buffer to the end.
24988
24989 2008-02-01 Dave Love <fx@gnu.org>
24990
24991 * coding.c (Fcheck_coding_systems_region): Fix type errors.
24992
24993 2008-02-01 Dave Love <fx@gnu.org>
24994
24995 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
24996 and fix C types.
24997
24998 2008-02-01 Kenichi Handa <handa@m17n.org>
24999
25000 * xdisp.c (SKIP_GLYPHS): New macro.
25001 (set_cursor_from_row): Pay attention to string display properties.
25002
25003 * category.c (copy_category_entry): Fix for the case that RANGE
25004 is an integer.
25005
25006 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
25007
25008 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
25009
25010 2008-02-01 Kenichi Handa <handa@m17n.org>
25011
25012 * charset.c (Fcharset_id_internal): New function.
25013 (syms_of_charset): Defsubr it.
25014
25015 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
25016 with the last arg charset_list acquired from coding.
25017 (Fdefine_coding_system_internal): For ccl-based coding system, fix
25018 the attribute coding_attr_ccl_valids.
25019
25020 * coding.h (enum define_coding_ccl_arg_index): Set the first
25021 member coding_arg_ccl_decoder to coding_arg_max.
25022
25023 * ccl.h (ccl_driver): Adjust prototype.
25024
25025 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
25026 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
25027 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
25028 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
25029 last arg Qnil.
25030
25031 2008-02-01 Kenichi Handa <handa@m17n.org>
25032
25033 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
25034 call encode_char.
25035
25036 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
25037
25038 2008-02-01 Dave Love <fx@gnu.org>
25039
25040 * composite.c (syms_of_composite): Make composition_hash_table weak.
25041
25042 2008-02-01 Kenichi Handa <handa@m17n.org>
25043
25044 * dispextern.h (check_face_attributes, generate_ascii_font_name)
25045 (font_name_registry): Don't extern them.
25046 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
25047
25048 * fontset.h (Qfontset): Don't extern it.
25049 (new_fontset_from_font_name): Extern it.
25050
25051 * fontset.c: Give 8 extra slots to fontset objects.
25052 (Qfontset_info): New variable.
25053 (syms_of_fontset): Defsym it.
25054 (FONTSET_FALLBACK): New macro.
25055 (fontset_face): Try also the default fontset.
25056 (make_fontset): Realize a fallback fontset from the default fontset.
25057 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
25058 using split_font_name_into_vector and build_font_name_from_vector.
25059 (Fset_fontset_font): Access the elements of font_spec by enum
25060 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
25061 name by using split_font_name_into_vector.
25062 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
25063 generate a proper font name from the fontset name.
25064 Update Vfontset_alias_alist.
25065 (n_auto_fontsets): New variable.
25066 (new_fontset_from_font_name): New function.
25067 (Ffont_info): Store the information about fonts generated from the
25068 default fontset in the first extra slot of the returned char-table.
25069
25070 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
25071 (font_name_registry): Delete function.
25072 (split_font_name_into_vector): New function.
25073 (build_font_name_from_vector): New function.
25074 (font_list): The argument REGISTRY is now a list of registry names.
25075 (choose_face_font): If we are choosing an ASCII font, and ATTRS
25076 specifies an explicit font name, return the name as is. Make a
25077 list of registy names.
25078
25079 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
25080 of x_new_fontset.
25081 (Fx_create_frame): Don't call x_new_fontset here. Just use
25082 x_list_fonts to check the existence of fonts.
25083
25084 * xterm.h (x_new_fontset): Adjust prototype.
25085
25086 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
25087 string. Use new_fontset_from_font_name to create a fontset from a
25088 font name.
25089
25090 2008-02-01 Kenichi Handa <handa@m17n.org>
25091
25092 * syntax.c (Vfind_word_boundary_function_table): New name for
25093 Vnext_word_boundary_function_table.
25094 (find-word-boundary-function-table): New name for
25095 next-word-boundary-function-table.
25096
25097 2008-02-01 Dave Love <fx@gnu.org>
25098
25099 * Makefile.in: Fix some dependencies.
25100
25101 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
25102 set it to nil before returning.
25103
25104 * composite.c (update_compositions): Fix type error.
25105
25106 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
25107
25108 2008-02-01 Kenichi Handa <handa@m17n.org>
25109
25110 * xterm.c (x_new_font): Optimize for the case that the font is
25111 already set for the frame.
25112
25113 2008-02-01 Kenichi Handa <handa@m17n.org>
25114
25115 * chartab.c (char_table_ascii): Check if the char table contents
25116 is sub-char-table or not.
25117 (char_table_set, char_table_set_range): Fix argument to
25118 char_table_ascii.
25119
25120 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
25121 (detect_coding_utf_8, detect_coding_utf_16)
25122 (detect_coding_emacs_mule, detect_coding_iso_2022)
25123 (detect_coding_sjis, detect_coding_big5)
25124 (detect_coding_ccl, detect_coding_charset): Change argument MASK
25125 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
25126 sequence is valid in this coding system. Change callers.
25127 (MAX_ANNOTATION_LENGTH): New macro.
25128 (ADD_ANNOTATION_DATA): New macro.
25129 (ADD_COMPOSITION_DATA): Change argument. Change callers.
25130 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
25131 (ADD_CHARSET_DATA): New macro.
25132 (emacs_mule_char): New argument ID. Change callers.
25133 (decode_coding_emacs_mule, decode_coding_iso_2022)
25134 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
25135 Produce charset annotation data in coding->charbuf.
25136 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
25137 to charset annotation data in coding->charbuf.
25138 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
25139 coding->common_flags if the coding system is iso-2022 based and
25140 uses designation.
25141 (produce_composition): Adjust for the new annotation data format.
25142 (produce_charset): New function.
25143 (produce_annotation): Handle charset annotation.
25144 (handle_composition_annotation, handle_charset_annotation):
25145 New functions.
25146 (consume_chars): Handle charset annotation. Utilize the above two
25147 functions.
25148 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
25149 buffer, get the deleted text as a string and set
25150 coding->src_object to that string.
25151 (detect_coding, detect_coding_system): Use the new struct
25152 coding_detection_info.
25153
25154 * coding.h (struct coding_detection_info): New structure.
25155 (struct coding_system): Adjust prototype of the member `detector'.
25156 (CODING_ANNOTATE_CHARSET_MASK): New macro.
25157
25158 2008-02-01 Kenichi Handa <handa@m17n.org>
25159
25160 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
25161
25162 2008-02-01 Dave Love <fx@gnu.org>
25163
25164 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
25165 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
25166 to new local and nullify apropos_accumulate before returning.
25167 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
25168
25169 2008-02-01 Kenichi Handa <handa@m17n.org>
25170
25171 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
25172 correctly.
25173
25174 2008-02-01 Dave Love <fx@gnu.org>
25175
25176 * fns.c (Flanginfo): Call synchronize_system_time_locale.
25177
25178 2008-02-01 Kenichi Handa <handa@m17n.org>
25179
25180 The following changes are to make character composition happen
25181 automatically on displaying.
25182
25183 * Makefile.in (lisp, shortlisp): Add composite.elc.
25184
25185 * composite.h (Qauto_composed, Vauto_composition_function)
25186 (Qauto_composition_function): Extern them.
25187
25188 * composite.c (Vcomposition_function_table)
25189 (Qcomposition_function_table): Delete variables.
25190 (Qauto_composed, Vauto_composition_function)
25191 (Qauto_composition_function): New variables.
25192 (run_composition_function): Don't call
25193 compose-chars-after-function.
25194 (update_compositions): Clear `auto-composed' text property.
25195 (compose_chars_in_text): Delete this function.
25196 (syms_of_composite): Staticpro Qauto_composed and
25197 Qauto_composition_function. Declare Vauto_composition_function as
25198 a Lisp variable.
25199
25200 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
25201
25202 * xdisp.c (it_props): Add an entry for Qauto_composed.
25203 (handle_auto_composed_prop): New function.
25204
25205 * xselect.c (selection_data_to_lisp_data): Don't call
25206 compose_chars_in_text.
25207
25208 2008-02-01 Dave Love <fx@gnu.org>
25209
25210 * keyboard.c (read_char): Modify checking around use of
25211 Vkeyboard_translate_table.
25212
25213 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
25214 and fix C types.
25215
25216 2008-02-01 Kenichi Handa <handa@m17n.org>
25217
25218 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
25219 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
25220 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
25221 the case that the last byte is '\r' correctly.
25222 (decode_coding): Flush out the unprocessed data correctly.
25223 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
25224
25225 2008-02-01 Dave Love <fx@gnu.org>
25226
25227 * xterm.c (XTread_socket): Fix changes for defined keysyms.
25228 Add XK_ISO... case.
25229 (xaw_scroll_callback): Revert last change.
25230
25231 2008-02-01 Kenichi Handa <handa@m17n.org>
25232
25233 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
25234
25235 2008-02-01 Kenichi Handa <handa@m17n.org>
25236
25237 * xfaces.c (Vface_resizing_fonts): New variable.
25238 (struct font_name): New member `resizing_ratio'.
25239 (font_resizing_ratio): New function.
25240 (split_font_name): Set font->resizing_ratio.
25241 (better_font_p): Pay attention to font->resizing_ratio.
25242 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
25243 RESX, and RESY fields.
25244 (try_alternative_families): Try scalable fonts if
25245 Vscalable_fonts_allowed is not Qt.
25246 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
25247
25248 2008-02-01 Dave Love <fx@gnu.org>
25249
25250 * xterm.c (xaw_scroll_callback): Cast correctly.
25251
25252 2008-02-01 Dave Love <fx@gnu.org>
25253
25254 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
25255 (lispy_kana_keys): Comment out.
25256 (make_lispy_event) [XK_kana_A]: Comment out.
25257
25258 * xterm.c (xaw_scroll_callback): Cast call_data.
25259 (XTread_socket): Deal with ASCII keysyms.
25260 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
25261
25262 2008-02-01 Dave Love <fx@gnu.org>
25263
25264 * xterm.c (Vx_keysym_table): New.
25265 (syms_of_xterm): Initialize it.
25266 (XTread_socket): Use it.
25267 From head: Eliminate incorrect optimization that tried to avoid
25268 decoding the output of X*LookupString.
25269 (x_get_font_repertory): Delete charset declaration.
25270
25271 2008-02-01 Kenichi Handa <handa@m17n.org>
25272
25273 * coding.c (detect_coding_charset): If only ASCII bytes are found,
25274 return 0.
25275 (Fdefine_coding_system_internal):
25276 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
25277
25278 2008-02-01 Dave Love <fx@gnu.org>
25279
25280 * coding.c (Fcheck_coding_system): Doc fix.
25281
25282 * editfns.c (Finsert_byte): Return a proper value.
25283
25284 2008-02-01 Kenichi Handa <handa@m17n.org>
25285
25286 * coding.c (decode_coding): Fix args to translate_chars.
25287 Pay attention to Vstandard_translation_table_for_decode.
25288 (encode_coding): Fix args to translate_chars. Pay attention to
25289 Vstandard_translation_table_for_encode.
25290
25291 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
25292 SINGLE_BYTE_CHAR_P.
25293
25294 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
25295 not by SINGLE_BYTE_CHAR_P.
25296
25297 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
25298 SINGLE_BYTE_CHAR_P.
25299
25300 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
25301 SINGLE_BYTE_CHAR_P.
25302
25303 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
25304 by SINGLE_BYTE_CHAR_P.
25305
25306 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
25307 SINGLE_BYTE_CHAR_P.
25308
25309 2008-02-01 Dave Love <fx@gnu.org>
25310
25311 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
25312
25313 2008-02-01 Dave Love <fx@gnu.org>
25314
25315 * fns.c (Flanginfo): Fix typo.
25316
25317 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
25318
25319 2008-02-01 Kenichi Handa <handa@m17n.org>
25320
25321 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
25322 (detect_coding_emacs_mule, detect_coding_iso_2022)
25323 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
25324 incomplete byte sequence. Don't update *mask when correctly detected.
25325 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
25326 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
25327 (detect_coding, detect_coding_system): Adjust for the changes above.
25328
25329 2008-02-01 Kenichi Handa <handa@m17n.org>
25330
25331 * character.c (char_string): Rename from
25332 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
25333 (string_char): Rename from string_char.
25334
25335 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
25336 if C is greater than MAX_3_BYTE_CHAR.
25337 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
25338 Call string_char instead of string_char_with_unification.
25339
25340 2008-02-01 Dave Love <fx@gnu.org>
25341
25342 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
25343
25344 2008-02-01 Kenichi Handa <handa@m17n.org>
25345
25346 * keymap.c (push_key_description): Pay attention to force_multibyte.
25347
25348 * regex.c (re_search_2): Fix for the case of unibyte buffer.
25349
25350 2008-02-01 Dave Love <fx@gnu.org>
25351
25352 * charset.c (define_charset_internal): Rename `supprementary'.
25353
25354 * Makefile.in (lisp, shortlisp): Remove latin-N.
25355
25356 2008-02-01 Dave Love <fx@gnu.org>
25357
25358 * xfns.c (x_window, x_window): Use use_xim.
25359
25360 * xterm.c (use_xim): Initialize.
25361 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
25362 (x_term_init): Maybe set use_xim.
25363
25364 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
25365
25366 2008-02-01 Kenichi Handa <handa@m17n.org>
25367
25368 * search.c (search_buffer): Fix case-fold-search of multibyte
25369 characters.
25370 (boyer_moore): Rename the last argument to char_high_bits.
25371
25372 2008-02-01 Kenichi Handa <handa@m17n.org>
25373
25374 * xdisp.c (display_string): Fix for the case of zero width glyph.
25375
25376 * xfns.c (x_set_font): Change the error message of the case that
25377 x_new_fontset returns Qt.
25378
25379 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
25380 (Finternal_set_lisp_face_attribute): Use signal_error for the
25381 error of invalid fontset.
25382
25383 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
25384 fontset, return Qt.
25385
25386 2008-02-01 Dave Love <fx@gnu.org>
25387
25388 * unexelf.c (unexec): Make .got handling not SGI-specific.
25389
25390 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
25391
25392 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
25393
25394 * keyboard.c (read_key_sequence): Fix type error.
25395
25396 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
25397 Fix type error.
25398
25399 * fontset.c (fontset_add): Return Lisp_Object.
25400
25401 2008-02-01 Dave Love <fx@gnu.org>
25402
25403 * charset.h (charset_ordered_list_tick): Declare extern.
25404
25405 2008-02-01 Kenichi Handa <handa@m17n.org>
25406
25407 The following changes (and some of 2008-02-01 changes of mine) are
25408 for handling syntax, category, and case conversion for unibyte
25409 characters by converting them to multibyte on the fly. With these
25410 changes, we don't have to setup syntax and case tables for unibyte
25411 characters in each language environment.
25412
25413 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
25414 multibyte if necessary.
25415
25416 * bytecode.c (Fbyte_code): Likewise.
25417
25418 * character.h (LEADING_CODE_LATIN_1_MIN)
25419 (LEADING_CODE_LATIN_1_MAX): New macros.
25420 (unibyte_to_multibyte_table): Extern it.
25421 (unibyte_char_to_multibyte): New macro.
25422 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
25423 (CHAR_LEADING_CODE): New macro.
25424 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
25425
25426 * character.c (unibyte_to_multibyte_table): New variable.
25427 (unibyte_char_to_multibyte): Move to character.h and define as macro.
25428 (multibyte_char_to_unibyte): If C is an eight-bit character,
25429 convert it to the corresponding byte value.
25430
25431 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
25432 not 1, signals an error. Update the elements of
25433 unibyte_to_multibyte_table.
25434 (init_charset_once): Initialize unibyte_to_multibyte_table.
25435 (syms_of_charset): Define the charset `iso-8859-1'.
25436
25437 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
25438 as is without converting it to unibyte. In a unibyte buffer,
25439 convert C to multibyte before checking the syntax.
25440
25441 * lisp.h (unibyte_char_to_multibyte): Delete extern.
25442
25443 * minibuf.c (Fminibuffer_complete_word): Use the macro
25444 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
25445
25446 * regex.h (struct re_pattern_buffer): New member target_multibyte.
25447
25448 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
25449 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
25450 If that is zero, convert an eight-bit char to multibyte.
25451 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
25452 non-emacs case.
25453 (PATFETCH): Convert an eight-bit char to multibyte.
25454 (HANDLE_UNIBYTE_RANGE): New macro.
25455 (regex_compile): Setup the compiled pattern for multibyte chars
25456 even if the given regex string is unibyte. Use PATFETCH_RAW
25457 instead of PATFETCH in many places. To handle `charset'
25458 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
25459 only for ASCII chars.
25460 (analyse_first) <exactn>: Simplify because the compiled pattern
25461 is multibyte.
25462 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
25463 <charset>: Use CHAR_LEADING_CODE to get leading codes.
25464 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
25465 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
25466 multibyte always 1.
25467 (re_search_2): In emacs, set the locale variable multibyte to 1,
25468 otherwise to 0. New local variable target_multibyte. Check it
25469 to decide the multibyteness of STR1 and STR2.
25470 If target_multibyte is zero, convert unibyte chars to multibyte
25471 before translating and checking fastmap.
25472 (TARGET_CHAR_AND_LENGTH): New macro.
25473 (re_match_2_internal): In emacs, set the locale variable multibyte
25474 to 1, otherwise to 0. New local variable target_multibyte.
25475 Check it to decide the multibyteness of STR1 and STR2.
25476 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
25477 <charset, charset_not>: If multibyte is nonzero, check fastmap
25478 only for ASCII chars. Call bcmp_translate with
25479 target_multibyte, not with multibyte.
25480 <begline>: Declare the local variable C as `unsigned'.
25481 (bcmp_translate): Change the last arg name to target_multibyte.
25482
25483 * search.c (compile_pattern_1): Don't adjust the multibyteness of
25484 the regexp pattern and the matching target. Set cp->buf.multibyte
25485 to the multibyteness of the regexp pattern. Set
25486 cp->but.target_multibyte to the multibyteness of the matching target.
25487 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
25488 FETCH_STRING_CHAR_ADVANCE.
25489 (Freplace_match): Convert unibyte chars to multibyte.
25490
25491 * syntax.c (char_quoted, back_comment, scan_words)
25492 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
25493 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
25494 unibyte chars to multibyte.
25495 (skip_chars): Delete the arg syntaxp, and move the code for
25496 handling syntaxes to skip_syntaxes. Change callers.
25497 Fix the case that the multibyteness of STRING and the current
25498 buffer doesn't match.
25499 (skip_syntaxes): New function.
25500 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
25501 SINGLE_BYTE_CHAR_P.
25502
25503 2008-02-01 Kenichi Handa <handa@m17n.org>
25504
25505 * xfaces.c (QCfontset): New variable.
25506 (LFACE_FONTSET): New macro.
25507 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
25508 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
25509 (Finternal_set_lisp_face_attribute)
25510 (Finternal_get_lisp_face_attribute): Handle QCfontset.
25511 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
25512 check also LFACE_FONTSET_INDEX.
25513 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
25514 attrs[LFACE_FONT_INDEX].
25515 (syms_of_xfaces): Intern and staticpro QCfontset.
25516
25517 * dispextern.h (enum lface_attribute_index): New member
25518 LFACE_FONTSET_INDEX.
25519
25520 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
25521
25522 2008-02-01 Kenichi Handa <handa@m17n.org>
25523
25524 * coding.c (coding_set_destination): Fix coding->destination for
25525 the case converting a region.
25526 (encode_coding_utf_8): Encode eight-bit chars as single byte.
25527 (encode_coding_object): Fix coding->dst_pos and
25528 coding->dst_pos_byte for the case converting a region.
25529
25530 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
25531
25532 * character.h (BYTE8_STRING): New macro.
25533
25534 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
25535
25536 2008-02-01 Kenichi Handa <handa@m17n.org>
25537
25538 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
25539 characters by octal form.
25540
25541 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
25542
25543 * buffer.h (_fetch_multibyte_char_len): Delete extern.
25544 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
25545 _fetch_multibyte_char_len.
25546 (FETCH_CHAR_AS_MULTIBYTE): New macro.
25547
25548 * casetab.c (set_canon, set_identity, shuffle): Simplify.
25549
25550 * casefiddle.c (casify_object): Simplify. Handle the case that
25551 the case conversion change the byte length.
25552 (casify_region): Likewise.
25553
25554 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
25555
25556 * character.c (_fetch_multibyte_char_len): Delete this variable.
25557 (syms_of_character): Setup Vprintable_chars.
25558
25559 * editfns.c (Fchar_equal): Fix for the unibyte case.
25560 (Finsert_byte): New function.
25561 (syms_of_editfns): Defsubr it.
25562
25563 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
25564 of direct code 0x3ffff.
25565
25566 * search.c (Freplace_match): Fix for the unibyte case.
25567
25568 2008-02-01 Kenichi Handa <handa@m17n.org>
25569
25570 * lread.c (safe_to_load_p): Fix the logic.
25571
25572 * syntax.c (scan_words): Don't treat characters belonging to
25573 different scripts as constituting a word.
25574
25575 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
25576
25577 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
25578
25579 * emacs.c (main): In the case of --unibyte, instead of aborting on
25580 finding non-empty buffer, make it unibyte.
25581
25582 2008-02-01 Kenichi Handa <handa@m17n.org>
25583
25584 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
25585 to create a fontset.
25586
25587 2008-02-01 Dave Love <fx@gnu.org>
25588
25589 * character.c (Funibyte_char_to_multibyte): Doc fix.
25590
25591 * xfns.c [HAVE_STDLIB_H]: Fix last change.
25592
25593 2008-02-01 Kenichi Handa <handa@m17n.org>
25594
25595 * fontset.c (fontset_add): Make the type `int'.
25596 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
25597
25598 * character.c (unibyte_char_to_multibyte)
25599 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
25600 charset_unibyte, not charset_primary.
25601
25602 * charset.h (charset_unibyte): Extern it instead of charset_primary.
25603
25604 * charset.c (charset_unibyte): Rename from charset_primary.
25605 (Funibyte_charset): Rename from Fprimary_charset.
25606 (Fset_unibyte_charset): Rename from Fset_primary_charset.
25607 (syms_of_charset): Adjust for the above changes.
25608
25609 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
25610 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
25611 it->multibyte_p is zero.
25612
25613 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
25614 Delete extern.
25615
25616 2008-02-01 Kenichi Handa <handa@m17n.org>
25617
25618 * coding.c (Fdefine_coding_system_internal): Fix category setting
25619 for a coding system of type iso-2022.
25620
25621 2008-02-01 Kenichi Handa <handa@m17n.org>
25622
25623 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
25624
25625 2008-02-01 Kenichi Handa <handa@m17n.org>
25626
25627 * syntax.c (Vnext_word_boundary_function_table): New variable.
25628 (next-word-boundary-function-table): Declare it as a Lisp variable
25629 in syms_of_syntax.
25630 (scan_words): Call functions in Vnext_word_boundary_function_table
25631 if any.
25632
25633 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
25634
25635 * fontset.c (fs_load_font): If fontp->charset is not negative,
25636 return fontp without setting its members.
25637
25638 2008-02-01 Dave Love <fx@gnu.org>
25639
25640 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
25641
25642 * m/sparc.h (HAVE_ALLOCA): Delete.
25643
25644 * s/irix6-5.h: Don't include strings.h.
25645 (bcopy, bzero, bcmp): Don't undef.
25646
25647 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
25648
25649 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
25650 (TIOCSIGSEND): Don't test IRIX6.
25651 (bcopy, bzero, bcmp): Define conditionally.
25652
25653 2008-02-01 Kenichi Handa <handa@m17n.org>
25654
25655 * buffer.c (Qas, Qmake, Qto): New variables.
25656 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
25657 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
25658
25659 * callproc.c (Fcall_process): Don't call insert_1_both directly if
25660 we are inserting a process output into a multibyte buffer.
25661
25662 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
25663 multibyte_char_to_unibyte.
25664
25665 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
25666 by the primary charset, make it eight-bit char.
25667 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
25668
25669 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
25670 (charset_8_bit__control, charset_8_bit_graphic)
25671 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
25672 (define_charset_internal): New function.
25673 (syms_of_charset): Call define_charset_internal for pre-defined
25674 charsets.
25675
25676 * charset.h (charset_8_bit): Extern it.
25677
25678 * coding.c (make_conversion_work_buffer): Adjust for the change
25679 of Fset_buffer_multibyte.
25680 (encode_coding_raw_text): Increment p0 in the loop.
25681
25682 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
25683
25684 * xdisp.c (setup_echo_area_for_printing, set_message_1):
25685 Adjust for the change of Fset_buffer_multibyte.
25686
25687 * fns.c (Fstring_to_multibyte): New function.
25688 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
25689
25690 2008-02-01 Dave Love <fx@gnu.org>
25691
25692 * xfns.c (x_put_x_image): Declare args.
25693
25694 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
25695 (try_font_list): Declare an arg.
25696
25697 * xdisp.c (message2_nolog, set_message): Declare an arg.
25698
25699 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
25700
25701 * syntax.c (scan_sexps_forward): Declare an arg.
25702
25703 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
25704 Declare an arg.
25705
25706 * lisp.h (Fnew_fontset): Declare.
25707
25708 * keymap.c (push_key_description): Call CHARACTERP correctly.
25709
25710 * fontset.c (fontset_add): Declare args. Call make_number correctly.
25711 (face_for_char): Delete unused vars.
25712 (Fset_fontset_font): Doc fix. Delete unused vars.
25713
25714 * doc.c (Fsubstitute_command_keys): Delete unused vars.
25715
25716 * composite.c (update_compositions): Declare arg.
25717
25718 * cm.c (calccost, cmgoto): Declare args.
25719
25720 * charset.c: Remove `emacs' conditional. Doc fixes.
25721 (map_char_table_for_charset): Declare.
25722
25723 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
25724
25725 * ccl.c: Remove `emacs' conditional.
25726
25727 2008-02-01 Kenichi Handa <handa@m17n.org>
25728
25729 The following changes are to allow specifying multiple font
25730 patterns for a character range (specified by script or charset).
25731
25732 * Makefile.in (abbrev.o): Depend on syntax.h.
25733 (xfaces.o): Depend on charset.h.
25734
25735 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
25736 SINGLE_BYTE_CHAR_P.
25737
25738 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
25739
25740 * character.h (Vchar_script_table): Extern it.
25741
25742 * character.c (Vscript_alist): Delete.
25743 (Vchar_script_table, Qchar_script_table): New variable.
25744 (syms_of_character): Declare Vchar_script_table as a lisp variable
25745 and initialize it.
25746
25747 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
25748 have property char-table-extra-slots, make no extra slot.
25749
25750 * dispextern.h (struct face): Delete member `charset'.
25751 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
25752 SINGLE_BYTE_CHAR_P.
25753 (choose_face_font, lookup_non_ascii_face, font_name_registry):
25754 Add prototypes.
25755 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
25756 (generate_ascii_font_name): Rename from generate_ascii_font.
25757
25758 * fontset.h (get_font_repertory_func): New prototype.
25759 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
25760 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
25761
25762 * fontset.c (Qprepend, Qappend): New variables.
25763 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
25764 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
25765 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
25766 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
25767 (fontset_ref_and_range, fontset_add, reorder_font_vector)
25768 (load_font_get_repertory): New functions.
25769 (fontset_set): Delete.
25770 (fontset_face): New arg FACE. Return face ID, not face.
25771 Complete re-write to handle new fontset structure. Change caller.
25772 (free_face_fontset): Use ASET istead of AREF (X) = Y.
25773 (face_for_char): Don't call lookup_face.
25774 (make_fontset_for_ascii_face): New arg FACE.
25775 (fs_load_font): New arg CHARSET_ID. Don't check
25776 Vfont_encoding_alist here.
25777 (find_font_encoding): New function.
25778 (list_fontsets): Use STRINGP, not ! NILP.
25779 (accumulate_script_ranges): New function.
25780 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
25781 Completely re-written to handle new fontset structure.
25782 (Ffontset_font): Return a copy of element.
25783 (syms_of_fontset): Define symbols Qprepend and Qappend.
25784 Fix docstring of font-encoding-alist.
25785
25786 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
25787 (Fset_fotset_font): Fix arguments to 5.
25788
25789 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
25790
25791 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
25792 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
25793 (highlight_trailing_whitespace): Adjust for the change of
25794 lookup_named_face.
25795
25796 * xfaces.c: Include charset.h.
25797 (load_face_font): Delete argument C. Change caller.
25798 (generate_ascii_font_name): Rename from generate_ascii_font.
25799 (font_name_registry): New function.
25800 (cache_face): Store ascii faces before non-ascii faces in buckets.
25801 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
25802 Lookup only ascii faces.
25803 (lookup_non_ascii_face): New function.
25804 (lookup_named_face): Delete argument C. Change caller.
25805 (lookup_derived_face): Delete argument C. Change caller.
25806 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
25807 a string, just call font_list with it.
25808 (choose_face_font): Delete arguments FACE and C. New arg
25809 FONT_SPEC. Change caller.
25810 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
25811 Change caller.
25812 (realize_non_ascii_face): New function.
25813 (realize_x_face): Call load_face_font here.
25814 (realize_tty_face): Delete argument C. Change caller.
25815 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
25816 get a face ID.
25817 (dump_realized_face): Don't print charset of FACE.
25818
25819 * xfns.c (x_set_font): Always call x_new_fontset and
25820 store_frame_parameter.
25821 (Fx_create_frame): Call x_new_fontset, not x_new_font.
25822 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
25823
25824 * xterm.h (x_get_font_repertory): Extern it.
25825
25826 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
25827 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
25828 it->multibyte_p is zero.
25829 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
25830 (x_new_fontset): If FONTSETNAME doesn't match any existing
25831 fontsets, create a new one.
25832 (x_get_font_repertory): New function.
25833
25834 2008-02-01 Kenichi Handa <handa@m17n.org>
25835
25836 * coding.c (Ffind_coding_systems_region_internal): Detect an
25837 ASCII only string correctly.
25838
25839 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
25840 version is 0.
25841
25842 2008-02-01 Kenichi Handa <handa@m17n.org>
25843
25844 * lread.c: Include "coding.h".
25845 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
25846 (load_each_byte, unread_char): New variables.
25847 (readchar_backlog): Delete.
25848 (readchar): Return a character unless load_each_byte is nonzero.
25849 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
25850 cons. If unread_char is not -1, simply return it.
25851 (unreadchar): Handle the case that readcharfun is
25852 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
25853 (read_multibyte): Delete.
25854 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
25855 (read_emacs_mule_char): New functions.
25856 (Fload): Even if the file doesn't have the extension ".elc", if
25857 safe_to_load_p returns a positive version number, assume that the
25858 file contains bytecompiled code. If the version is less than 22,
25859 load the file while decoding multibyte sequences by emacs-mule.
25860 (readevalloop): Don't use readchar_backlog.
25861 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
25862 (Fread_from_string): Pay attention to the case that STREAM is a cons.
25863 (read_escape): Delete the arg BYTEREP.
25864 (read1): Set load_each_byte to 1 temporarily while handling
25865 #@NUMBER. Don't call read_multibyte.
25866 (read_vector): Call Fread with a cons. If readcharfun is
25867 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
25868 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
25869 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
25870 and Qload_force_doc_strings.
25871
25872 2008-02-01 Kenichi Handa <handa@m17n.org>
25873
25874 * xdisp.c (face_before_or_after_it_pos):
25875 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
25876
25877 2008-02-01 Kenichi Handa <handa@m17n.org>
25878
25879 * character.h (TRAILING_CODE_P): New macro.
25880 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
25881 (string_char_with_unification): Fix prototype.
25882 (Vscript_alist): Extern it.
25883
25884 * character.c (Vscript_alist): New variable.
25885 (string_char_with_unification, str_as_unibyte)
25886 (string_escape_byte8): Add `const' to local variables.
25887 (syms_of_character): Declare script-alist as a Lisp variable.
25888
25889 * charset.h (Vcharset_ordered_list): Extern it.
25890 (charset_ordered_list_tick): Extern it.
25891 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
25892 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
25893 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
25894 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
25895 (Funify_charset): Adjust for the change of Funify_charset.
25896
25897 * charset.c (charset_ordered_list_tick): New variable.
25898 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
25899 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
25900 deunify instead of unify a charset.
25901 (string_xstring_p): Add `const' to local variables.
25902 (find_charsets_in_text): Add `const' to arguments and local variables.
25903 (encode_char): Adjust for the change of Funify_charset.
25904 Fix detecting of invalid code.
25905 (Fset_charset_priority): Increment charset_ordered_list_tick.
25906 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
25907 and TO_CODE.
25908
25909 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
25910 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
25911 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
25912 (decode_coding_ccl, consume_chars)
25913 (Ffind_coding_systems_region_internal)
25914 (Fcheck_coding_systems_region): Add `const' to local variables.
25915
25916 * print.c (print_object): Use octal form for printing the
25917 contents of a bool vector.
25918
25919 2008-02-01 Dave Love <fx@gnu.org>
25920
25921 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
25922 <version == 20>: Refuse to load.
25923
25924 2008-02-01 Dave Love <fx@gnu.org>
25925
25926 * fns.c: Move coding.h.
25927 (Qcodeset, Qdays, Qmonths): New.
25928 (concat): Use CHARACTERP instead of INTEGERP.
25929 (Flocale_codeset): Delete.
25930 (Flanginfo): New function.
25931 (syms_of_fns): Change accordingly.
25932
25933 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
25934
25935 2008-02-01 Dave Love <fx@gnu.org>
25936
25937 * casetab.c (init_casetab_once, init_casetab_once):
25938 Fix CHAR_TABLE_SET call.
25939
25940 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
25941
25942 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
25943
25944 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
25945 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
25946 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
25947
25948 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
25949
25950 * coding.c (ENCODE_DESIGNATION, decode_eol)
25951 (make_conversion_work_buffer, code_conversion_restore)
25952 (Fdefine_coding_system_internal): Convert Lisp types.
25953 (code_conversion_restore): Use EQ, not ==.
25954 (Fencode_coding_string): Fix code_convert_string call.
25955
25956 * coding.h (code_convert_region): Fix prototype.
25957
25958 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
25959
25960 * fontset.c (fontset_ref, fontset_set, fs_load_font)
25961 (Ffontset_info): Convert Lisp types.
25962
25963 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
25964
25965 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
25966
25967 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
25968
25969 * chartab.c: Include "...h", not <...h> in some cases.
25970
25971 * callproc.c (Fcall_process): Remove unused variables.
25972
25973 2008-02-01 Dave Love <fx@gnu.org>
25974
25975 * coding.c (Fset_coding_system_priority): Allow null arg list.
25976
25977 2008-02-01 Dave Love <fx@gnu.org>
25978
25979 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
25980 (Fself_insert_and_exit): Use CHARACTERP.
25981
25982 * callproc.c (Fcall_process): Remove unused vars.
25983
25984 * xterm.c (XTread_socket): Add extra dead keysyms.
25985
25986 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
25987
25988 * dispextern.h: Remove prototypes for redraw_frame,
25989 redraw_garbaged_frames.
25990
25991 * cmds.c (Fself_insert_command): Use CHARACTERP.
25992
25993 * chartab.c (make_sub_char_table): Remove unused var.
25994 (Fset_char_table_default, Fmap_char_table): Doc fix.
25995
25996 * keymap.c (access_keymap): Remove generic char code.
25997 (push_key_description): Use CHARACTERP.
25998
25999 2008-02-01 Dave Love <fx@gnu.org>
26000
26001 * charset.c: Doc fixes.
26002 (Funify_charset): Extra checking.
26003
26004 2008-02-01 Dave Love <fx@gnu.org>
26005
26006 * lread.c: Remove some unused variables.
26007 (safe_to_load_p): If safe, return the magic number version byte.
26008 (Fload): Maybe use load-with-code-conversion.
26009
26010 2008-02-01 Kenichi Handa <handa@m17n.org>
26011
26012 * category.c (Fmodify_category_entry): Don't modify the contents
26013 of category_set for characters out of the range.
26014 Avoid unnecessary modification.
26015
26016 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
26017 Vchar_unify_table. The default value of the table is now nil.
26018
26019 * character.c (syms_of_character): Setup Vchar_width_table for
26020 eight-bit-control and raw-byte chars.
26021
26022 * charset.h (enum define_charset_arg_index):
26023 Delete charset_arg_parents and add charset_arg_subset and
26024 charset_arg_superset.
26025 (enum charset_attr_index): Delete charset_parents and add
26026 charset_subset and charset_superset.
26027 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
26028 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
26029 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
26030 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
26031 (CHARSET_SUPERSET): New macros.
26032 (charset_work): Extern it.
26033 (ENCODE_CHAR): Use charset_work.
26034 (CHAR_CHARSET_P): Adjust for the change of encoder format.
26035 (map_charset_chars): Extern it.
26036
26037 * charset.c (load_charset_map): Set the default value of encoder
26038 and deunifier char-tables to nil.
26039 (map_charset_chars): Change argument. Change callers.
26040 Use map_char_table_for_charset instead of map_char_table.
26041 (Fmap_charset_chars): New optional args from_code and to_code.
26042 (Fdefine_charset_internal): Adjust for the change of
26043 `define-charset' (:parents -> :subset or :superset).
26044 (charset_work): New variable.
26045 (encode_char, syms_of_charset): Adjust for the change of
26046 Fdefine_charset_internal.
26047 (Ffind_charset_string): Setup the vector `charsets' correctly.
26048
26049 * chartab.c (sub_char_table_ref_and_range): New arg default.
26050 Fix the previous change.
26051 (char_table_ref_and_range): Adjust for the above change.
26052 (map_sub_char_table_for_charset): New function.
26053 (map_char_table_for_charset): New function.
26054
26055 * keymap.c (describe_vector): Handle a char-table directly here.
26056 (describe_char_table): Delete.
26057
26058 * lisp.h (map_charset_chars): Delete.
26059
26060 2008-02-01 Dave Love <fx@gnu.org>
26061
26062 * fns.c (count_combining): Comment out (unused).
26063 (Flocale_codeset): New.
26064 (syms_of_fns): Defsubr it.
26065
26066 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
26067 (size_t): Remove.
26068
26069 2008-02-01 Dave Love <fx@gnu.org>
26070
26071 * Makefile.in (chartab.o): Depend on charset.h.
26072
26073 2008-02-01 Kenichi Handa <handa@m17n.org>
26074
26075 * character.c (syms_of_character): Set the default value of
26076 Vprintable_chars to Qnil.
26077
26078 2008-02-01 Dave Love <fx@gnu.org>
26079
26080 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
26081
26082 2008-02-01 Kenichi Handa <handa@m17n.org>
26083
26084 * charset.c (load_charset_map): Handle the case that from < to
26085 correctly.
26086
26087 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
26088 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
26089 Pay attention to raw-8-bit chars.
26090
26091 2008-02-01 Kenichi Handa <handa@m17n.org>
26092
26093 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
26094 It is not bytecompiled now.
26095
26096 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
26097 (charset_jisx0208): New variables.
26098 (Fdefine_charset_internal): Setup them if appropriate.
26099 (init_charset_once): Initialize them to -1.
26100
26101 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
26102 (charset_jisx0208): Extern them.
26103
26104 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
26105 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
26106 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
26107 (setup_iso_safe_charsets): Fix arguments to Fassq.
26108 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
26109 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
26110 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
26111 (encode_coding_iso_2022): Change the 1st arg to
26112 ENCODE_ISO_CHARACTER to a variable.
26113
26114 2008-02-01 Kenichi Handa <handa@m17n.org>
26115
26116 * charset.h (enum define_charset_arg_index): New enums
26117 charset_arg_min_code and charset_arg_max_code.
26118 (struct charset): New member char_index_offset.
26119
26120 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
26121 Take charset->char_index_offset into account.
26122 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
26123 args[charset_arg_max_code]. Setup charset.char_index_offset.
26124 (syms_of_charset): Fix args to Fdefine_charset_internal.
26125
26126 2008-02-01 Dave Love <fx@gnu.org>
26127
26128 * coding.c (decode_coding_utf_8): Reject overlong sequences.
26129
26130 2008-02-01 Dave Love <fx@gnu.org>
26131
26132 * coding.c: Doc fixes.
26133 (Fcoding_system_aliases): Fix return value.
26134 (Qmac): Remove (duplicated) definition.
26135
26136 2008-02-01 Dave Love <fx@gnu.org>
26137
26138 * charset.c (Fcharset_priority_list, Fset_charset_priority):
26139 New functions.
26140
26141 * character.c (Fstring): Doc fix.
26142
26143 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
26144
26145 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
26146 (font-encoding-alist): Doc fix.
26147
26148 2008-02-01 Dave Love <fx@gnu.org>
26149
26150 * term.c (costs_set): Declare static, non-initialized for pcc.
26151 (encode_terminal_code): Remove unused var.
26152
26153 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
26154 for K&R.
26155
26156 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
26157
26158 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
26159 (suffixes): Move out of make_subsidiaries for K&R.
26160
26161 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
26162
26163 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
26164
26165 2008-02-01 Dave Love <fx@gnu.org>
26166
26167 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
26168
26169 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
26170
26171 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
26172
26173 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
26174
26175 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
26176
26177 2008-02-01 Kenichi Handa <handa@m17n.org>
26178
26179 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
26180 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
26181
26182 2008-02-01 Kenichi Handa <handa@m17n.org>
26183
26184 * coding.c (decode_coding_charset): Adjust for the change of
26185 Fdefine_coding_system_internal.
26186 (Fdefine_coding_system_internal): For a coding system of
26187 `charset' type, store a list of charset IDs in
26188 `charset_attr_charset_valids' element of coding attributes.
26189
26190 2008-02-01 Kenichi Handa <handa@m17n.org>
26191
26192 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
26193 (emacs_mule_char): New arg src. Delete arg `composition'.
26194 Change caller. Handle 2-byte and 3-byte charsets correctly.
26195 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
26196 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
26197 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
26198 (DECODE_EMACS_MULE_21_COMPOSITION):
26199 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
26200 sequence.
26201 (decode_coding_emacs_mule): Handle composition correctly. Rewind
26202 `src' and `consumed_chars' correctly before calling emacs_mule_char.
26203 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
26204 and alt&rule composition.
26205 (decode_coding_iso_2022): Handle composition correctly.
26206 (init_coding_once): Setup emacs_mule_bytes for private charsets.
26207
26208 * charset.c (Fdefine_charset_internal): Fix bug for the case of
26209 re-defining a charset. If the charset has :emacs-mule-id, setup
26210 emacs_mule_bytes.
26211 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
26212
26213 2008-02-01 Kenichi Handa <handa@m17n.org>
26214
26215 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
26216 (encode_coding_big5, encode_coding_charset): If coding requires safe
26217 encoding, produce a character specified by
26218 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
26219
26220 2008-02-01 Dave Love <fx@gnu.org>
26221
26222 * xterm.c (XSetIMValues): Declare.
26223
26224 * process.c: Conditionally include sys/wait.h, pty.h.
26225
26226 * print.c (print_object): Fix print format for 64-bit systems.
26227
26228 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
26229
26230 * buffer.c (emacs_strerror): Declare.
26231
26232 * fontset.c (Fclear_face_cache): Declare.
26233 (accumulate_font_info): Comment-out (unused).
26234 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
26235 variables.
26236
26237 * character.h (string_escape_byte8): Declare.
26238
26239 * charset.c (load_charset_map, load_charset_map_from_file):
26240 Remove unused vars.
26241 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
26242 (Fmap_charset_chars): Doc fix.
26243
26244 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
26245 (Fset_coding_system_priority, Fset_coding_system_priority)
26246 (Fdefine_coding_system_internal): Doc fix.
26247
26248 2008-02-01 Dave Love <fx@gnu.org>
26249
26250 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
26251
26252 2008-02-01 Kenichi Handa <handa@m17n.org>
26253
26254 * character.c (string_escape_byte8): Make multibyte string with
26255 correct size.
26256
26257 * charset.c (Fmake_char): Delete unnecessary code.
26258
26259 2008-02-01 Kenichi Handa <handa@m17n.org>
26260
26261 * xfns.c (x_encode_text): Allocate coding.destination here, and
26262 call encode_coding_object with dst_object Qnil.
26263
26264 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
26265 multibyte form correctly.
26266
26267 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
26268 against Vfont_encoding_alist.
26269
26270 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
26271 handling of charset list.
26272 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
26273 (decode_coding_object): Move point to coding->dst_pos before
26274 calling post-read-conversion function.
26275 (encode_coding_object): Give correct arguments to
26276 pre-write-conversion. Ignore the return value of
26277 pre-write-conversion function. Pay attention to the case that
26278 pre-write-conversion changes the current buffer. If dst_object is
26279 Qt, even if coding->src_bytes is zero, allocate at least one byte
26280 to coding->destination.
26281
26282 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
26283
26284 * charset.c (Fmake_char): Make it more backward compatible.
26285 (Fmap_charset_chars): Fix docstring.
26286
26287 2008-02-01 Dave Love <fx@gnu.org>
26288
26289 * coding.c: Doc fixes.
26290 (Fdefine_coding_system_alias): Use names, not symbols, in
26291 coding-system-alist.
26292
26293 2008-02-01 Kenichi Handa <handa@m17n.org>
26294
26295 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
26296 of calling free_realized_face.
26297
26298 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
26299
26300 * charset.c (read_hex): Don't treat SPC as a comment starter.
26301 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
26302 (Fdecode_char): Fix typo.
26303
26304 2008-02-01 Kenichi Handa <handa@m17n.org>
26305
26306 * charset.h (struct charset): New member `code_space_mask'.
26307
26308 * coding.c (coding_set_source): Delete the local variable beg_byte.
26309 (encode_coding_charset, Fdefine_coding_system_internal):
26310 Delete the local variable charset.
26311 (Fdefine_coding_system_internal):
26312 Setup attrs[coding_attr_charset_valids] correctly.
26313
26314 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
26315 member to check if CODE is valid or not.
26316 (Fdefine_charset_internal): Initialize `code_space_mask' member.
26317 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
26318 is within the range of charset->min_code and carset->max_code.
26319
26320 2008-02-01 Dave Love <fx@gnu.org>
26321
26322 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
26323
26324 * dispextern.h (generate_ascii_font): Fix return type.
26325
26326 * xfaces.c (generate_ascii_font): Fix arg declaration.
26327
26328 * coding.c (coding_inherit_eol_type)
26329 (Fset_terminal_coding_system_internal)
26330 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
26331
26332 2008-02-01 Kenichi Handa <handa@m17n.org>
26333
26334 * coding.c (decode_coding_charset, encode_coding_charset):
26335 Handle multiple charsets correctly.
26336
26337 2008-02-01 Kenichi Handa <handa@m17n.org>
26338
26339 * search.c (boyer_moore): Fix handling of multibyte character
26340 translation.
26341
26342 * xdisp.c (display_mode_element): When the variable `elt' is
26343 changed, update `this' and `lisp_string'.
26344
26345 2008-02-01 Kenichi Handa <handa@m17n.org>
26346
26347 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
26348
26349 * callproc.c (Fcall_process): Be sure to give the current buffer
26350 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
26351
26352 * charset.c (struct charset_map_entries): New struct.
26353 (load_charset_map): Rename from parse_charset_map. New args
26354 entries and n_entries. Change caller.
26355 (load_charset_map_from_file): Rename from load_charset_map.
26356 Change caller. New arg control_flag. Call load_charset_map at
26357 the tail.
26358 (load_charset_map_from_vector): New function.
26359 (Fdefine_charset_internal): Setup charset.compact_codes_p.
26360 (encode_char): If the charset is compact, change a character index
26361 to a code point.
26362
26363 * coding.c (coding_alloc_by_making_gap): Check the case that the
26364 source and destination are the same correctly.
26365 (decode_coding_raw_text): Set coding->consumed_char and
26366 coding->consumed to 0.
26367 (produce_chars): If coding->chars_at_source is nonzero, update
26368 coding->consumed_char and coding->consumed before calling
26369 alloc_destination.
26370 (Fdefine_coding_system_alias): Register ALIAS in
26371 Vcoding_system_alist.
26372 (syms_of_coding): Define `no-conversion' coding system at the tail.
26373
26374 * fileio.c (Finsert_file_contents): Set coding_system instead of
26375 val. If the current buffer is multibyte, always call
26376 decode_coding_gap.
26377
26378 * xfaces.c (try_font_list): Give higher priority to fontset's
26379 family than face's family.
26380
26381 2008-02-01 Kenichi Handa <handa@m17n.org>
26382
26383 * callproc.c (Fcall_process): Be sure to give the current buffer
26384 to decode_coding_c_string.
26385
26386 * xfaces.c (try_font_list): Give a family specified in a fontset
26387 higher priority than a family specified in a face.
26388
26389 2008-02-01 Kenichi Handa <handa@m17n.org>
26390
26391 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
26392 Fix arguments to insert_from_buffer.
26393
26394 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
26395
26396 2008-02-01 Kenichi Handa <handa@m17n.org>
26397
26398 * coding.c (produce_chars): Set the variable `multibytep' correctly.
26399 (decode_coding_gap): Set coding->dst_multibyte correctly.
26400
26401 2008-02-01 Kenichi Handa <handa@m17n.org>
26402
26403 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
26404 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
26405 (encode_coding_utf_16): Substitute coding->default_char for
26406 non-Unicode characters.
26407 (decode_coding): Don't call record_insert here.
26408 (setup_coding_system): Initialize `surrogate' of
26409 coding->spec.utf_16 to 0.
26410 (EMIT_ONE_BYTE): Fix for multibyte case.
26411
26412 * insdel.c (insert_from_gap): Call record_insert.
26413
26414 2008-02-01 Kenichi Handa <handa@m17n.org>
26415
26416 * casefiddle.c (casify_region): Fix multibyte case.
26417
26418 * character.c (c_string_width): Add return type `int'.
26419 (char_string_with_unification): Delete arg ADVANCED.
26420
26421 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
26422 (CHAR_STRING): Adjust for the change of char_string_with_unification.
26423 (CHAR_STRING_ADVANCE): Make it do-while statement.
26424
26425 * chartab.c (sub_char_table_set_range): Optimize for the case
26426 DEPTH == 3. Add workaround code for a GCC optimization bug.
26427
26428 * charset.c (parse_charset_map): Remove an unused variable.
26429
26430 * coding.c: Delete unused variables.
26431
26432 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
26433 earlier. If inserted is zero and the coding system doesn't
26434 require flushing, don't call decode_coding_gap.
26435
26436 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
26437
26438 2008-02-01 Kenichi Handa <handa@m17n.org>
26439
26440 The following changes are for using Unicode as an internal
26441 character model, and use UTF-8 format for buffer/string
26442 representation.
26443
26444 * .gdbinit (xchartable): Adjust for the change of char table structure.
26445 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
26446
26447 * Makefile.in (obj): Add character.o and chartab.o.
26448 (lisp, shortlisp): Remove utf-8.elc.
26449 (*.o): For many files, change dependency on charset.h to
26450 character.h, and add dependency on character.h.
26451 (character.o, chartab.o): New targets.
26452
26453 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
26454 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
26455 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
26456 of "charset.h".
26457
26458 * dired.c, filelock.c: Include "character.h".
26459
26460 * alloc.c: Include "character.h" instead of "charset.h".
26461 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
26462 (syms_of_alloc): Remove defsubr for Smake_char_table.
26463
26464 * buffer.c: Include "character.h" instead of "charset.h", don't
26465 include "coding.h".
26466 (Fset_buffer_multibyte): Adjust for UTF-8.
26467
26468 * buffer.h: EXFUN Fbuffer_live_p.
26469
26470 * callproc.c: Include "character.h" instead of "charset.h".
26471 (Fcall_process): Big change for the new code-conversion APIs.
26472
26473 * casetab.c: Include "character.h" instead of "charset.h".
26474 (set_canon, set_identity, shuffle): Adjust for the new
26475 map_char_table spec.
26476 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
26477 accessing the char table structure.
26478
26479 * chartab.c: New file that implements char table.
26480
26481 * category.c: Include "character.h".
26482 (copy_category_entry): New function.
26483 (copy_category_table): Call map_char_table and copy_category_entry.
26484 (Fmake_category_table): Initialize all top-level slots.
26485 (char_category_set): New function.
26486 (modify_lower_category_set): Delete.
26487 (Fmodify_category_entry): Call char_table_ref_and_range.
26488
26489 * category.h (CATEGORY_SET): Just call char_category_set.
26490
26491 * ccl.c: Include "character.h".
26492 (Qccl, Qcclp): New variables.
26493 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
26494 it's less than 256.
26495 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
26496 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
26497 and DST type.
26498 (ccl_driver): Change types of argument, adjust code accordingly.
26499 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
26500 ccl_driver.
26501 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
26502
26503 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
26504 New members src_multibyte, dst_multibyte, consumed, and produced.
26505 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
26506 (CODING_SPEC_CCL_PROGRAM): New macro.
26507 (ccl_driver): Update prototype.
26508 (Qccl, Qcclp, Fccl_program_p): Extern them.
26509 (CHECK_CCL_PROGRAM): New macro.
26510
26511 * character.c, character.h, chartab.c: New files.
26512
26513 * charset.c: Mostly re-written. Move character and multibyte sequence
26514 handling codes to character.c.
26515
26516 * charset.h: Mostly re-written. Move character and multibyte sequence
26517 handling codes to character.h.
26518
26519 * coding.c, coding.h: Mostly re-written.
26520
26521 * composite.c: Include "character.h" instead of "charset.h".
26522 (CHAR_WIDTH): Move to character.h.
26523 (HASH_KEY, HASH_VALUE): Delete.
26524
26525 * composite.h (enum composition_method): Change order of enumeration
26526 symbols.
26527
26528 * data.c: Include "character.h" instead of "charset.h".
26529 (Faref): Call CHAR_TABLE_REF for a char table.
26530 (Faset): Call CHAR_TABLE_SET for a char table.
26531
26532 * dispextern.h (free_realized_face, check_face_attribytes)
26533 (generate_ascii_font): Extern them.
26534 (free_realized_multibyte_face): Delete extern.
26535
26536 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
26537 table structure.
26538
26539 * editfns.c: Include "character.h" instead of "charset.h".
26540 (Fchar_to_string): Always call CHAR_STRING.
26541
26542 * emacs.c (main): Call init_charset_once, init_charset,
26543 syms_of_chartab, and syms_of_character.
26544
26545 * fileio.c: Include "character.h" instead of "charset.h".
26546 (Finsert_file_contents): Big change for the new code-conversion API.
26547 (choose_write_coding_system, Fwrite_region): Likewise.
26548 (build_annotations_2): Delete.
26549 (e_write): Big change for the new code-conversion API.
26550
26551 * fns.c: Include "character.h" instead of "charset.h".
26552 (copy_sub_char_table): Move to chartab.c.
26553 (Fcopy_sequence): Call copy_char_table for a char table.
26554 (concat): Delete codes calling count_multibyte.
26555 (string_char_to_byte, string_byte_to_char): Adjust for the new
26556 multibyte form.
26557 (internal_equal): Adjust for the change of char table structure.
26558 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
26559 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
26560 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
26561 (char_table_translate, optimize_sub_char_table)
26562 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
26563 chartab.c.
26564 (char_table_ref_and_index): Delete.
26565 (HASH_KEY, HASH_VALUE): Move to lisp.h.
26566 (Fmd5): Call preferred_coding_system instead of accessing
26567 Vcoding_category_list. Adjust for the new code-conversion API.
26568 (syms_of_fns): Move defsubr for char table related functions to
26569 chartab.c.
26570
26571 * fontset.c: Mostly re-written.
26572
26573 * fontset.h (struct font_info): Change type of the member encoding_type.
26574 (enum FONT_SPEC_INDEX): New enum.
26575 (fontset_font_pattern, fs_load_font): Update prototype.
26576 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
26577
26578 * indent.c: Include "character.h" instead of "charset.h".
26579 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
26580
26581 * insdel.c: Include "character.h" instead of "charset.h".
26582 (copy_text): Don't refer to Vnonascii_translation_table.
26583 (insert_from_gap): New function.
26584
26585 * keyboard.c: Include "character.h" instead of "charset.h".
26586 (command_loop_1): Never call direct_output_forward_char before
26587 a non-ASCII character.
26588 (read_char): If Vkeyboard_translate_table is a char table, always
26589 translate a character.
26590
26591 * keymap.c: Include "character.h".
26592 (store_in_keymap): Handle the case that IDX is a cons.
26593 (Fdefine_key): Handle the case that KEY is a cons and the car part
26594 is also a cons (range).
26595 (push_key_description): Adjust for the new character code.
26596 (describe_vector): Call describe_char_table for a char table.
26597 (describe_char_table): New function.
26598
26599 * keymap.h (describe_char_table): Extern it.
26600
26601 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
26602 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
26603 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
26604 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
26605 Delete.
26606 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
26607 structure.
26608 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
26609 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
26610 (CHARTAB_SIZE_BITS_3): New macros.
26611 (chartab_size): Extern it.
26612 (struct Lisp_Char_Table): Re-design.
26613 (struct Lisp_Sub_Char_Table): New structure.
26614 (HASH_KEY, HASH_VALUE): Move from fns.c.
26615 (CHARACTERBITS): Define as 22.
26616 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
26617 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
26618 (GC_SUB_CHAR_TABLE_P): New macro.
26619 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
26620 (code_convert_string_norecord): Delete extern.
26621 (init_character_once, syms_of_character, init_charset)
26622 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
26623
26624 * lread.c: Include "character.h".
26625 (read_multibyte): New arg NBYTES.
26626 (read_escape): Change the meaning of returned *BYTEREP.
26627 (to_multibyte): Delete.
26628 (read1): Adjust the handling of char table and string.
26629
26630 * print.c: Include "character.h" instead of "charset.h".
26631 (print_string): Convert 8-bit raw bytes to octal form by
26632 string_escape_byte8.
26633 (print_object): Adjust for the new multibyte form. Print 8-bit
26634 raw bytes always in octal form. Handle sub char table correctly.
26635
26636 * process.c: Include "character.h" instead of "charset.h".
26637 (read_process_output, send_process): Adjust for the new
26638 code-conversion API.
26639
26640 * puresize.h (BASE_PURESIZE): Increase.
26641
26642 * regex.c: Include "character.h" instead of "charset.h".
26643 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
26644 (regex_compile): Accept a range whose starting and ending
26645 character have different leading bytes.
26646 (analyse_first): Adjust for the above change.
26647
26648 * search.c: Include "character.h" instead of "charset.h".
26649 (search_buffer, boyer_moore): Adjust for the new multibyte form.
26650 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
26651
26652 * syntax.c: Include "character.h" instead of "charset.h".
26653 (syntax_parent_lookup): Delete.
26654 (Fmodify_syntax_entry): Accept a cons as CHAR.
26655 (skip_chars): Adjust for the new multibyte form.
26656 (init_syntax_once): Call char_table_set_range instead of directly
26657 accessing the structure of a char table.
26658
26659 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
26660 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
26661 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
26662 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
26663
26664 * term.c: Include "buffer.h" and "character.h".
26665 (encode_terminal_code, write_glyphs): Adjust for the new
26666 code-conversion API.
26667 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
26668
26669 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
26670
26671 * xdisp.c: Include "character.h".
26672 (get_next_display_element): Adjust for the new multibyte form.
26673 (disp_char_vector): Adjust for the new char table structure.
26674 (decode_mode_spec_coding): Adjust for the new structure of
26675 coding system.
26676 (decode_mode_spec): Adjust for the new code-conversion API.
26677
26678 * xfaces.c: Include "character.h" instead of "charset.h".
26679 (load_face_font): Adjust for the change of choose_face_font and
26680 FS_LOAD_FONT.
26681 (generate_ascii_font): New function.
26682 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
26683 (set_font_frame_param): Adjust for the change of choose_face_font.
26684 (free_realized_face): Make it public.
26685 (free_realized_faces_for_fontset): Rename from
26686 free_realized_multibyte_face. Free also faces realized for ASCII.
26687 (choose_face_font): Change arguments. Adjust for the change of
26688 fontset_font_pattern and FS_LOAD_FONT.
26689
26690 * xfns.c: Include "character.h".
26691 (x_encode_text): Adjust for the new code-conversion API.
26692
26693 * xselect.c: Don't include "charset.h".
26694 (selection_data_to_lisp_data): Adjust for the new code conversion API.
26695
26696 * xterm.c: Include "character.h".
26697 (x_encode_char): New argument CHARSET. Change caller.
26698 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
26699 Call ENCODE_CHAR instead of SPLIT_CHAR.
26700 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
26701 CHAR_WIDTH instead of CHARSET_WIDTH.
26702 (XTread_socket): Adjust for the new code-conversion API.
26703 (x_new_font): Adjust for the change of FS_LOAD_FONT.
26704 (x_load_font): Adjust for the change of struct font.
26705
26706 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
26707
26708 * xfaces.c (face_at_buffer_position): Remove unused vars.
26709
26710 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
26711
26712 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
26713 Fix overflow checking.
26714
26715 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
26716
26717 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
26718 Cancel previous change.
26719
26720 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
26721
26722 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
26723 ccl->eight_bit_control. Fix check for buffer overflow.
26724 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
26725 (ccl_driver): Initialize extra_bytes to 0.
26726
26727 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
26728
26729 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
26730 return it ORed with ctrl_modifier.
26731
26732 2008-01-29 Miles Bader <miles@gnu.org>
26733
26734 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
26735
26736 2008-01-28 Jason Rumney <jasonr@gnu.org>
26737
26738 * w32.c (stat): Don't double check for networked drive.
26739
26740 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
26741
26742 * window.c (run_window_configuration_change_hook): New function.
26743 Code extracted from set_window_buffer. Set the selected frame.
26744 (set_window_buffer): Use it.
26745 * window.h (run_window_configuration_change_hook): Declare.
26746 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
26747
26748 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
26749
26750 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
26751
26752 * Makefile.in: Remove references to unused macros.
26753
26754 2008-01-26 Eli Zaretskii <eliz@gnu.org>
26755
26756 * w32.c (g_b_init_get_sid_sub_authority)
26757 (g_b_init_get_sid_sub_authority_count): New static variables.
26758 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
26759 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
26760 (init_user_info): Use them to retrieve uid and gid.
26761 Use 500/513, the Windows defaults, as Administrator's uid/gid.
26762 (fstat): Use pw_uid and pw_gid from the_passwd structure for
26763 st_uid and st_gid of the file.
26764
26765 2008-01-26 Jason Rumney <jasonr@gnu.org>
26766
26767 * w32.c (logon_network_drive): New function.
26768 (stat): Use it.
26769
26770 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
26771
26772 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
26773 invisible text covered with an ellipsis.
26774
26775 2008-01-25 Richard Stallman <rms@gnu.org>
26776
26777 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
26778 jump back to beginning. Move some other initializations after that.
26779 (Qwindow_text_change_functions, Vwindow_text_change_functions):
26780 New variables.
26781 (syms_of_xdisp): Init them.
26782
26783 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
26784
26785 * buffer.c (reset_buffer_local_variables):
26786 Implement `permanent-local-hook'.
26787 (Qpermanent_local_hook): New variable.
26788 (syms_of_buffer): Init and staticpro it.
26789
26790 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
26791
26792 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
26793
26794 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
26795
26796 * fns.c (Fclrhash): Return TABLE.
26797
26798 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26799
26800 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
26801 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
26802 is set even without positional changes.
26803 (x_scroll_bar_clear): Set bar->redraw_needed_p.
26804
26805 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
26806
26807 2008-01-23 Jason Rumney <jasonr@gnu.org>
26808
26809 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
26810
26811 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
26812 the unicode range available in MULE by locale-coding-system.
26813 Improve dbcs lead byte detection. Set event timestamp and modifiers
26814 earlier.
26815
26816 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26817
26818 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
26819 [MAC_OSX] (init_mac_osx_environment): Initialize it.
26820 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
26821 when used on child processes.
26822
26823 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
26824
26825 * dbusbind.c (Fdbus_method_return_internal): Rename from
26826 Fdbus_method_return.
26827 (Fdbus_unregister_object): Move to dbus.el.
26828 (Fdbus_call_method, Fdbus_method_return_internal)
26829 (Fdbus_send_signal): Improve debug messages.
26830
26831 2008-01-20 Martin Rudalics <rudalics@gmx.at>
26832
26833 * undo.c (undo_inhibit_record_point): New variable.
26834 (syms_of_undo): Initialize it.
26835 (record_point): Don't record point when undo_inhibit_record_point
26836 is set.
26837
26838 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
26839
26840 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
26841
26842 * xdisp.c (Qauto_hscroll_mode): New var.
26843 (syms_of_xdisp): Initialize it.
26844 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
26845 window's buffer.
26846 (hscroll_windows): Don't check automatic_hscrolling_p here.
26847
26848 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
26849 vscroll if we're setting window-buffer to the value it already has.
26850
26851 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
26852
26853 * m/intel386.h: Remove references to XENIX.
26854
26855 2008-01-17 Andreas Schwab <schwab@suse.de>
26856
26857 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
26858 instead of HAVE_X86_64_LIB64_DIR.
26859 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
26860
26861 2008-01-17 Glenn Morris <rgm@gnu.org>
26862
26863 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
26864 to HAVE_X86_64_LIB64_DIR.
26865
26866 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
26867
26868 * s/irix3-3.h:
26869 * s/irix4-0.h:
26870 * s/386-ix.h:
26871 * s/domain.h:
26872 * s/hpux9-x11r4.h:
26873 * s/hpux9shxr4.h: Remove files for systems no longer supported.
26874
26875 * sysdep.c: Remove code containing references to symbols defined
26876 by unsupported systems.
26877
26878 2008-01-16 Glenn Morris <rgm@gnu.org>
26879
26880 * coding.c (select-safe-coding-system-function): Doc fix.
26881
26882 2008-01-15 Glenn Morris <rgm@gnu.org>
26883
26884 * config.in: Revert 2008-01-13 change: this is a generated file.
26885
26886 2008-01-13 Tom Tromey <tromey@redhat.com>
26887
26888 * lisp.h: Fix typo.
26889
26890 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
26891
26892 * m/sequent-ptx.h:
26893 * m/sequent.h:
26894 * s/ptx.h:
26895 * s/ptx4-2.h:
26896 * s/ptx4.h: Remove files for systems no longer supported.
26897
26898 * callproc.c (Fcall_process): Fix previous change.
26899
26900 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
26901
26902 * unexsunos4.c: Remove file, system not supported anymore.
26903
26904 * m/mips.h:
26905 * m/intel386.h:
26906 * callproc.c:
26907 * config.in:
26908 * ecrt0.c:
26909 * emacs.c:
26910 * fileio.c:
26911 * frame.c:
26912 * getpagesize.h:
26913 * keyboard.c:
26914 * lread.c:
26915 * process.c:
26916 * puresize.h:
26917 * sysdep.c:
26918 * systty.h:
26919 * syswait.h:
26920 * unexec.c:
26921 * xdisp.c:
26922 * alloc.c: Remove code containing references to symbols defined by
26923 unsupported systems.
26924
26925 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
26926
26927 * coding.c (detect_coding_mask): Fix previous change.
26928
26929 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
26930
26931 * coding.c (detect_coding_iso2022): New arg
26932 latin_extra_code_state. Allow Latin extra codes only
26933 when *latin_extra_code_state is nonzero.
26934 (detect_coding_mask): If there is a NULL byte, detect the encoding
26935 as UTF-16 or binary. If Latin extra codes exist, detect the
26936 encoding as ISO-2022 only when there's no other proper encoding is
26937 found.
26938
26939 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26940
26941 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
26942 #ifdef MAC_OS.
26943
26944 2008-01-08 Richard Stallman <rms@gnu.org>
26945
26946 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
26947
26948 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
26949
26950 * keyboard.c (parse_menu_item): Don't enclose key bindings on
26951 menu bar in parentheses.
26952
26953 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
26954
26955 * m/7300.h:
26956 * m/acorn.h:
26957 * m/alliant-2800.h:
26958 * m/alliant.h:
26959 * m/alliant1.h:
26960 * m/alliant4.h:
26961 * m/altos.h:
26962 * m/amdahl.h:
26963 * m/apollo.h:
26964 * m/att3b.h:
26965 * m/aviion-intel.h:
26966 * m/aviion.h:
26967 * m/celerity.h:
26968 * m/clipper.h:
26969 * m/cnvrgnt.h:
26970 * m/convex.h:
26971 * m/cydra5.h:
26972 * m/delta88k.h:
26973 * m/dpx2.h:
26974 * m/dual.h:
26975 * m/elxsi.h:
26976 * m/f301.h:
26977 * m/gould-np1.h:
26978 * m/gould.h:
26979 * m/i860.h:
26980 * m/ibmps2-aix.h:
26981 * m/ibmrt-aix.h:
26982 * m/ibmrt.h:
26983 * m/irist.h:
26984 * m/is386.h:
26985 * m/isi-ov.h:
26986 * m/mega68.h:
26987 * m/mg1.h:
26988 * m/news-r6.h:
26989 * m/news-risc.h:
26990 * m/news.h:
26991 * m/nh3000.h:
26992 * m/nh4000.h:
26993 * m/ns16000.h:
26994 * m/ns32000.h:
26995 * m/nu.h:
26996 * m/orion.h:
26997 * m/orion105.h:
26998 * m/paragon.h:
26999 * m/pfa50.h:
27000 * m/plexus.h:
27001 * m/pyramid.h:
27002 * m/pyrmips.h:
27003 * m/sh3el.h:
27004 * m/sps7.h:
27005 * m/sr2k.h:
27006 * m/stride.h:
27007 * m/sun1.h:
27008 * m/sun2.h:
27009 * m/sun3-68881.h:
27010 * m/sun3-fpa.h:
27011 * m/sun3-soft.h:
27012 * m/sun3.h:
27013 * m/sun386.h:
27014 * m/symmetry.h:
27015 * m/tad68k.h:
27016 * m/tahoe.h:
27017 * m/targon31.h:
27018 * m/tek4300.h:
27019 * m/tekxd88.h:
27020 * m/tower32.h:
27021 * m/tower32v3.h:
27022 * m/ustation.h:
27023 * m/wicat.h:
27024 * m/xps100.h:
27025 * s/cxux.h:
27026 * s/cxux7.h:
27027 * s/dgux.h:
27028 * s/dgux4.h:
27029 * s/dgux5-4-3.h:
27030 * s/dgux5-4r2.h:
27031 * s/esix.h:
27032 * s/esix5r4.h:
27033 * s/hiuxmpp.h:
27034 * s/hiuxwe2.h:
27035 * s/iris3-5.h:
27036 * s/iris3-6.h:
27037 * s/isc2-2.h:
27038 * s/isc3-0.h:
27039 * s/isc4-0.h:
27040 * s/isc4-1.h:
27041 * s/newsos5.h:
27042 * s/newsos6.h:
27043 * s/osf1.h:
27044 * s/osf5-0.h:
27045 * s/riscix1-1.h:
27046 * s/riscix12.h:
27047 * s/sco4.h:
27048 * s/sco5.h:
27049 * s/sunos4-0.h:
27050 * s/sunos4-1.h:
27051 * s/sunos413.h:
27052 * s/sunos4shr.h:
27053 * s/umax.h:
27054 * s/unipl5-2.h:
27055 * s/xenix.h:
27056 * cxux-crt0.s:
27057 * unexapollo.c:
27058 * unexconvex.c:
27059 * unexenix.c:
27060 * unexsni.c: Remove files for systems no longer supported.
27061
27062 * m/intel386.h: Remove references to unsupported systems.
27063
27064 * w32.c (get_emacs_configuration): Remove reference to i860.
27065
27066 * sysdep.c: Remove dead code.
27067
27068 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
27069
27070 * s/rtu.h:
27071 * m/masscomp.h: Remove files. Platform is obsolete.
27072
27073 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
27074
27075 * dbusbind.c (Fdbus_method_return): New function.
27076 (xd_read_message): Add the serial number to the event.
27077 (Fdbus_register_method): Activate the function.
27078
27079 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
27080
27081 * keyboard.c (read_key_sequence): Fix typo.
27082
27083 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
27084
27085 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
27086 (xd_signature, xd_append_arg): Handle element type detection for
27087 empty arrays.
27088 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
27089 SDATA () calls; this must be solved more general.
27090 (Fdbus_register_signal): Use SBYTES instead of strlen.
27091
27092 2008-01-03 Magnus Henoch <magnus@zemdatav>
27093
27094 * dbusbind.c (xd_append_arg): Use unsigned char instead of
27095 unsigned int for byte values (necessary for big-endian platform).
27096 (Fdbus_call_method): Handle the case of no returned arguments.
27097
27098 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
27099
27100 * dbusbind.c (xd_read_message): Use non-static input_event struct.
27101
27102 2007-12-31 Magnus Henoch <mange@freemail.hu>
27103
27104 * dbusbind.c (xd_signature): Signature of variant is just "v".
27105
27106 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
27107
27108 * dbusbind.c: Fix several errors and compiler warnings.
27109 Reported by Tom Tromey <tromey@redhat.com>.
27110 (XD_ERROR, XD_DEBUG_MESSAGE)
27111 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
27112 (xd_append_arg): Part for basic D-Bus types rewritten.
27113 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
27114 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
27115 appropriate.
27116 (xd_read_message): Return Qnil. Don't signal an error; it is not
27117 useful during event reading.
27118 (Fdbus_register_signal): Signal an error if the check for
27119 FUNCTIONP fails.
27120 (Fdbus_register_method): New function. The implementation is not
27121 complete, the call of the function signals an error therefore.
27122 (Fdbus_unregister_object): New function, renamed from
27123 Fdbus_unregister_signal. The initial check signals an error, if
27124 the object is not well formed.
27125
27126 2007-12-30 Richard Stallman <rms@gnu.org>
27127
27128 * textprop.c (get_char_property_and_overlay):
27129 Signal error if POSITION is out of range in a buffer.
27130
27131 2007-12-29 Martin Rudalics <rudalics@gmx.at>
27132
27133 * w32fns.c (Fx_create_frame): Make copy of frame parameters
27134 because the original parameters are in pure storage now.
27135
27136 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27137
27138 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
27139
27140 2007-12-22 Eli Zaretskii <eliz@gnu.org>
27141
27142 * callint.c (syms_of_callint) <command-history>: Add reference to
27143 history-length in the doc string.
27144
27145 2007-12-17 Jason Rumney <jasonr@gnu.org>
27146
27147 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
27148 before passing as wParam.
27149
27150 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
27151
27152 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
27153 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
27154 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
27155 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
27156 as number.
27157 (Fdbus_call_method): Fix docstring.
27158
27159 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
27160
27161 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
27162 New macros.
27163 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
27164 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
27165 Simplify.
27166 (xd_signature): New function.
27167 (xd_append_arg): Compute also signatures. Major rewrite.
27168 (xd_retrieve_arg): Make debug messages friendly.
27169 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
27170 Check for signatures of arguments.
27171
27172 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
27173
27174 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
27175 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
27176 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
27177 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
27178 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
27179 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
27180 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
27181 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
27182 (xd_retrieve_value): Remove. Functionality included in ...
27183 (xd_append_arg): New function.
27184 (Fdbus_call_method, Fdbus_send_signal): Apply it.
27185
27186 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
27187
27188 * dbusbind.c (top): Include <stdio.h>.
27189 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
27190 dbus_message_new_method_call and dbus_message_new_signal.
27191 (Fdbus_register_signal): Rename unique_name to uname.
27192 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
27193 non-existing unique name. Fix typos in matching rule. Return an
27194 object which is useful in Fdbus_unregister_signal.
27195 (Fdbus_unregister_signal): Reimplementation, in order to remove
27196 only the corresponding entry.
27197 (Vdbus_registered_functions_table): Change the order of entries.
27198 Apply these changes in xd_read_message and Fdbus_register_signal.
27199
27200 2007-12-16 Andreas Schwab <schwab@suse.de>
27201
27202 * fileio.c (Finsert_file_contents): Fix overflow check to not
27203 depend on undefined integer overflow.
27204
27205 2007-12-14 Jason Rumney <jasonr@gnu.org>
27206
27207 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
27208 for characters above 127.
27209
27210 2007-12-13 Jason Rumney <jasonr@gnu.org>
27211
27212 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
27213 before dereferencing array.
27214 (lookup_vk_code): Remove zero comparison.
27215
27216 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
27217
27218 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
27219 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
27220 Use `unsigned int' instead of `uint'.
27221 (xd_read_message, Fdbus_register_signal): Split expressions into
27222 multiple lines before operators "&&" and "||", according to the
27223 GNU Coding Standards.
27224
27225 2007-12-14 Eli Zaretskii <eliz@gnu.org>
27226
27227 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
27228
27229 2007-12-12 Juri Linkov <juri@jurta.org>
27230
27231 * buffer.c (Frename_buffer): In interactive spec replace
27232 `read-buffer' with `read-string' that uses `buffer-name-history'
27233 as history, and the current buffer's name as default.
27234
27235 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
27236
27237 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
27238 manipulating the backtrace manually.
27239 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
27240 (struct backtrace, backtrace_list): Remove.
27241 (command_loop_1): Remove dead var `no_direct'.
27242
27243 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
27244 preserve non-built-in buffer-local variables.
27245 (Fkill_all_local_variables): Don't re-create&re-set permanent
27246 buffer-local variables.
27247
27248 2007-12-09 Juri Linkov <juri@jurta.org>
27249
27250 * buffer.c (Frename_buffer): Change interactive spec from "s" to
27251 Lisp code that uses `read-buffer' with current buffer as default.
27252
27253 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
27254
27255 * dbusbind.c (xd_read_message): Generate an event for every
27256 registered handler. There might be several handlers registered
27257 for the same signal.
27258 (Fdbus_register_signal): Don't overwrite a registration for the
27259 same signal. Add a new registration if handlers are different.
27260 (Vdbus_registered_functions_table): Rework doc string.
27261
27262 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
27263
27264 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
27265 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
27266 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
27267 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
27268 Unify argument lists.
27269 (xd_read_message, Fdbus_register_signal): Reorder and extend event
27270 arguments and hash table keys. Use unique name for service.
27271 (Fdbus_unregister_signal): Remove checks.
27272 (Vdbus_registered_functions_table): Fix doc string.
27273
27274 2007-12-05 Magnus Henoch <mange@freemail.hu>
27275
27276 * process.c (make_process): Initialize pty_flag to 0.
27277
27278 2007-12-05 Jason Rumney <jasonr@gnu.org>
27279
27280 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
27281 specified XBMs.
27282
27283 2007-12-05 Richard Stallman <rms@gnu.org>
27284
27285 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
27286
27287 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27288
27289 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
27290 New variable.
27291 (mac_try_close_socket) [MAC_OSX]: New function.
27292 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
27293 Update cfsockets_for_select. Replace invalid CFRunLoop source.
27294
27295 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
27296 Use mac_try_close_socket.
27297
27298 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27299
27300 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
27301 reloc_base.
27302 (copy_dysymtab): Compute relocation base here.
27303 (rebase_reloc_address) [__ppc64__]: New function.
27304 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
27305 changed.
27306
27307 2007-12-05 Jason Rumney <jasonr@gnu.org>
27308
27309 * w32proc.c (sys_spawnve): Quote args with wildcards.
27310
27311 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27312
27313 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
27314 __objc_* sections.
27315 (unrelocate) [_LP64]: Set relocation base to address of data segment.
27316
27317 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
27318
27319 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
27320 Move check for Vdbus_registered_functions_table to
27321 xd_read_queued_messages.
27322 (xd_read_queued_messages): Protect xd_read_message calls by
27323 internal_condition_case_1.
27324
27325 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
27326
27327 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
27328 Qdbus_system_bus and Qdbus_session_bus, respectively.
27329 (Vdbus_intern_symbols): Remove.
27330 (Vdbus_registered_functions_table): New hash table.
27331 (XD_SYMBOL_INTERN_SYMBOL): Remove.
27332 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
27333 Rewrite in order to manage registered functions by hash table
27334 Vdbus_registered_functions_table.
27335
27336 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
27337
27338 * xterm.c: Update URL to Window Manager Specification in comment.
27339
27340 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
27341
27342 * config.in (HAVE_DBUS): Add.
27343
27344 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
27345 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
27346 (obj): Add $(DBUS_OBJ).
27347 (LIBES): Add $(DBUS_LIBS).
27348 (dbusbind.o): New target.
27349
27350 * dbusbind.c: New file.
27351
27352 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
27353
27354 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
27355 (Qdbus_event): New Lisp symbol.
27356 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
27357 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
27358 (keys_of_keyboard): Define dbus-event.
27359
27360 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
27361
27362 2007-12-01 Richard Stallman <rms@gnu.org>
27363
27364 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
27365
27366 2007-11-30 Jason Rumney <jasonr@gnu.org>
27367
27368 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
27369 (w32con_reset_terminal_modes): Clear screen buffer.
27370 (w32_face_attributes): Don't use color indexes that are out of range.
27371 Only reverse the default colors.
27372
27373 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
27374 WINDOWSNT.
27375
27376 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
27377
27378 2007-11-29 Jason Rumney <jasonr@gnu.org>
27379
27380 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
27381 (w32_face_attributes): Use Vtty_defined_color_alist to determine
27382 if the terminal colors are initialized.
27383 (unspecified_fg, unspecified_bg): Remove unused declarations.
27384
27385 2007-11-29 Andreas Schwab <schwab@suse.de>
27386
27387 * keyboard.c (apply_modifiers): Fix typo.
27388
27389 2007-11-29 Richard Stallman <rms@gnu.org>
27390
27391 * keymap.c (Fcurrent_local_map): Doc fix.
27392
27393 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
27394
27395 * s/gnu-kfreebsd.h: New file.
27396
27397 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
27398
27399 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
27400 Don't cast redundantly.
27401
27402 * keyboard.c (KEY_TO_CHAR): New macro.
27403 (parse_modifiers, apply_modifiers): Accept integer arguments.
27404 (read_key_sequence): Use them to unify the "shift->unshift" mapping
27405 for chars and symbol keys.
27406 After doing such remapping, apply function-key-map again.
27407
27408 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
27409
27410 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
27411 compiled anymore.
27412
27413 2007-11-26 Andreas Schwab <schwab@suse.de>
27414
27415 * process.c (list_processes_1): Fix indentation level of the
27416 command column.
27417
27418 2007-11-23 Andreas Schwab <schwab@suse.de>
27419
27420 * editfns.c (Fformat): Handle %c specially since it requires the
27421 argument to be of type int.
27422
27423 2007-11-23 Markus Triska <markus.triska@gmx.at>
27424
27425 * emacs.c (main): Call init_editfns before init_process, since
27426 init_process sets Vprocess_connection_type depending on OS release.
27427
27428 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
27429
27430 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
27431 (find_symbol_value): Use do_symval_forwarding.
27432
27433 * data.c (set_internal): Set the value in the `cons-cell' (for
27434 Buffer_Local_values) not only for frame-local variables.
27435
27436 2007-11-22 Andreas Schwab <schwab@suse.de>
27437
27438 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
27439 values to sprintf.
27440 * keymap.c (Fsingle_key_description): Likewise.
27441 * print.c (print_object): Likewise.
27442
27443 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
27444
27445 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
27446 file for image is nil.
27447
27448 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
27449
27450 * term.c: Include stdarg.h.
27451 (fatal): Implement using varargs.
27452 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
27453
27454 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
27455
27456 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
27457 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
27458 Update call to buffer_slot_type_mismatch.
27459 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
27460 (buffer_slot_type_mismatch): Update.
27461 * buffer.c (buffer_local_types): Remove.
27462 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
27463 (defvar_per_buffer): Set the type in the buffer_objfwd.
27464
27465 2007-11-21 Jason Rumney <jasonr@gnu.org>
27466
27467 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
27468 CreateFileMapping returns NULL on failure.
27469
27470 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
27471
27472 * search.c (Fset_match_data): Remove the `evaporate' feature.
27473 (unwind_set_match_data): Don't use the `evaporate' feature.
27474
27475 2007-11-21 Jason Rumney <jasonr@gnu.org>
27476
27477 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
27478
27479 * w32console.c (w32con_write_glyphs): Remove unused variables.
27480
27481 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
27482
27483 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
27484
27485 * s/darwin.h (MULTI_KBOARD): Remove.
27486
27487 * macfns.c (x_create_tip_frame, Fx_create_frame)
27488 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
27489
27490 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
27491
27492 * buffer.c (Fbuffer_local_value): Remove redundant test.
27493 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
27494 than in `current-buffer' to match the comment.
27495 Do the swap using swap_in_global_binding.
27496
27497 * data.c (store_symval_forwarding, set_internal):
27498 * eval.c (specbind): Remove dead code.
27499
27500 * coding.c (detect_coding, Fupdate_coding_systems_internal):
27501 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
27502 Since we do not want to see internal Lisp_*fwd objects here.
27503
27504 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
27505
27506 * sysdep.c (init_system_name): Use getaddrinfo if available.
27507
27508 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
27509 (x_scroll_bar_note_movement): start, end, with, height in struct
27510 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
27511
27512 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
27513
27514 * puresize.h (BASE_PURESIZE): Increase to 1190000.
27515
27516 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
27517
27518 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
27519 This undoes Richard's change of 14-Oct-2002.
27520
27521 * alloc.c (allocate_other_vector):
27522 * lisp.h (allocate_other_vector): Remove.
27523
27524 * window.c (struct save_window_data): Move non-lisp data to the end
27525 and make it `int' rather than Lisp_Object.
27526 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
27527 Done wrap/unwrap integer values.
27528 (Fset_window_configuration, compare_window_configurations):
27529 Update use of fields to their new types.
27530
27531 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
27532 Turn integer fields into `int'. Merge x_window_low and x_window_high.
27533 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
27534 (SET_SCROLL_BAR_X_WINDOW): Remove.
27535 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
27536 Access the new x_window field directly.
27537 * xterm.c (x_scroll_bar_create): Use a pseudovector.
27538 Don't wrap/unwrap integers into Lisp_Objects.
27539 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
27540 (x_scroll_bar_report_motion):
27541 Don't wrap/unwrap integers into Lisp_Objects.
27542 (x_term_init): Use SDATA.
27543 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
27544 (x_scroll_bar_set_handle, x_scroll_bar_remove)
27545 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
27546 (x_scroll_bar_report_motion, x_scroll_bar_clear):
27547 * xfns.c (x_set_background_color):
27548 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
27549 Access the new x_window field directly.
27550
27551 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
27552 (allocate_pseudovector): Make non-static.
27553
27554 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
27555 (allocate_pseudovector): Declare.
27556 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
27557
27558 2007-11-15 Andreas Schwab <schwab@suse.de>
27559
27560 * editfns.c (Fformat): Correctly format EMACS_INT values.
27561 Also take precision into account when formatting an integer.
27562
27563 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
27564
27565 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
27566
27567 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
27568 (syms_of_keyboard): Defsubr it.
27569
27570 * data.c (swap_in_global_binding): Fix longstanding bug where
27571 store_symval_forwarding was not called with the right second argument,
27572 thus causing objfwd-ing from being dropped.
27573
27574 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
27575
27576 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
27577 (Fx_display_pixel_height, Fx_display_planes)
27578 (Fx_display_color_cells, Fx_server_max_request_size)
27579 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
27580 (Fx_display_visual_class, Fx_display_save_under):
27581 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
27582 (Fx_display_pixel_height, Fx_display_planes)
27583 (Fx_display_color_cells, Fx_server_max_request_size)
27584 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
27585 (Fx_display_mm_height, Fx_display_mm_width)
27586 (Fx_display_backing_store, Fx_display_visual_class)
27587 (Fw32_select_font, Fx_display_save_under):
27588 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
27589 (Fx_display_pixel_height, Fx_display_planes)
27590 (Fx_display_color_cells, Fx_server_max_request_size)
27591 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
27592 (Fx_display_save_under): Fix typos in docstrings.
27593
27594 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
27595
27596 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
27597 corresponding to deleted entries; they are an implementation detail.
27598 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
27599 Remove variables.
27600 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
27601 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
27602 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
27603 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
27604 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
27605 (Fw32_define_rgb_color, Fw32_load_color_file)
27606 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
27607 Fix typos in docstrings.
27608 (Fx_server_version): Reflow docstring.
27609 (Fw32_shell_execute): Doc fixes.
27610
27611 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
27612
27613 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
27614 if w32_parse_hot_key returned nil.
27615
27616 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
27617
27618 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
27619
27620 2007-11-09 Jason Rumney <jasonr@gnu.org>
27621
27622 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
27623
27624 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
27625
27626 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
27627 Remove W32_SCROLL_BAR_CLICK_EVENT.
27628
27629 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
27630 Add MULTIMEDIA_KEY_EVENT.
27631
27632 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
27633 (lispy_multimedia_keys) [WINDOWSNT]: New array.
27634 (make_lispy_event) [WINDOWSNT]: Use it to translate
27635 MULTIMEDIA_KEY_EVENT.
27636
27637 * w32term.h (WM_APPCOMMAND): Define if not already.
27638 (GET_APPCOMMAND_LPARAM): Likewise.
27639
27640 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
27641 WM_APPCOMMAND.
27642
27643 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
27644 (syms_of_w32fns): Export and initialize it.
27645 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
27646
27647 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
27648
27649 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
27650 twice.
27651
27652 * xdisp.c (handle_face_prop): Fix last change.
27653
27654 2007-11-09 Richard Stallman <rms@gnu.org>
27655
27656 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
27657 not just for after-strings and before-strings.
27658 Call face_for_overlay_string and pass the overlay to it.
27659 (handle_display_prop): Determine whether property came from an overlay.
27660 Pass OVERLAY arg to handle_single_display_spec.
27661 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
27662 (load_overlay_strings): Fill in it->string_overlays.
27663 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
27664
27665 * xfaces.c (face_for_overlay_string): Function renamed from
27666 face_at_buffer_position_no_overlays, and add arg OVERLAY.
27667
27668 * dispextern.h (struct it): New elt string_overlays.
27669 New elt from_overlay, also in stack.
27670 Rearrange a few elements.
27671 (face_for_overlay_string): Decl renamed from
27672 face_at_buffer_position_no_overlays, and add argument.
27673
27674 2007-11-09 Richard Stallman <rms@gnu.org>
27675
27676 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
27677 to get the base face for an overlay string.
27678
27679 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
27680
27681 * xfaces.c (face_at_buffer_position_no_overlays): New function.
27682
27683 * xdisp.c (handle_stop): Move some code out of loop.
27684
27685 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27686
27687 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
27688 Fix conversion from Lisp object to ATSUFontID.
27689
27690 2007-11-09 Jason Rumney <jasonr@gnu.org>
27691
27692 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
27693
27694 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27695
27696 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
27697 Don't assume regions are aligned to page boundary.
27698 (print_load_command_name): Add LC_UUID if defined.
27699
27700 2007-11-09 Richard Stallman <rms@gnu.org>
27701
27702 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
27703
27704 2007-11-07 Jason Rumney <jasonr@gnu.org>
27705
27706 * s/windows95.h: Remove.
27707
27708 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
27709
27710 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
27711 abort with a message on unhandled store_type values.
27712
27713 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
27714
27715 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
27716 Remove HAVE_X11R5 and HAVE_X11R4.
27717
27718 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
27719
27720 * Makefile.in: Remove references to sunfns.c and sunfns.o.
27721
27722 2007-11-01 Johan Bockgård <bojohan@gnu.org>
27723
27724 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
27725 Don't set s->stippled_p here, since it has already been set by
27726 x_set_glyph_string_gc from x_draw_glyph_string.
27727
27728 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
27729
27730 * sunfns.c: Remove file.
27731
27732 * m/sun386.h:
27733 * m/sun2.h:
27734 * m/sparc.h: Remove Sun windows code.
27735
27736 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
27737
27738 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
27739 (init_keyboard): Set current_kboard's window-system to nil.
27740 (tty_read_avail_input): Typo.
27741 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
27742
27743 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
27744
27745 * s/usg5-4.h:
27746 * s/usg5-3.h:
27747 * s/ptx.h:
27748 * m/is386.h:
27749 * m/ibmps2-aix.h:
27750 * Makefile.in: Remove all mentions of X10.
27751
27752 * dispnew.c (syms_of_display): Don't mention version 10.
27753
27754 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
27755
27756 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
27757 ($(BLD)/abbrev.$(O)): Remove.
27758
27759 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
27760
27761 Rewrite abbrev.c in Elisp.
27762 * image.c (Qcount): Don't declare as extern.
27763 (syms_of_image): Initialize and staticpro `Qcount'.
27764 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
27765 * emacs.c (main): Don't call syms_of_abbrev.
27766 * Makefile.in (obj): Remove abbrev.o.
27767 (abbrev.o): Remove.
27768 * abbrev.c: Remove.
27769
27770 2007-10-26 Martin Rudalics <rudalics@gmx.at>
27771
27772 * window.c (window_min_size_2): Don't count header-line.
27773
27774 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
27775
27776 * frame.h (struct frame): Move all bit fields after the first bit
27777 field to take advantage of the available space. Group all the
27778 chars together to reduce wasted space due to padding.
27779
27780 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
27781
27782 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
27783
27784 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
27785 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
27786 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
27787 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
27788 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
27789 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
27790 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
27791 (last_marked, mark_object_loop_halt): Make static.
27792
27793 * frame.c (syms_of_frame) <delete-frame-functions>:
27794 Fix typo in docstring.
27795
27796 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
27797
27798 * w32.c (init_environment): Fix tiny memory leak.
27799 (w32_get_resource): Remove unused variable `ok'.
27800
27801 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
27802
27803 Make `window-system' into a keyboard-local variable (rather than
27804 frame-local as done originally by multi-tty).
27805
27806 * keyboard.h (struct kboard): Add Vwindow_system.
27807 * keyboard.c (init_kboard): Set a default for Vwindow_system.
27808 (mark_kboards): Mark Vwindow_system.
27809
27810 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
27811 (init_display): Don't set the obsolete `window-system' frame-param.
27812
27813 * xterm.c (x_term_init):
27814 * w32term.c (w32_create_terminal):
27815 * term.c (init_tty): Set Vwindow_system.
27816 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
27817 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
27818
27819 * xfns.c (Fx_create_frame, x_create_tip_frame):
27820 * w32fns.c (Fx_create_frame, x_create_tip_frame):
27821 * macfns.c (Fx_create_frame):
27822 Don't set the obsolete `window-system' frame-param.
27823
27824 * frame.h (Qwindow_system): Remove.
27825 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
27826 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
27827
27828 2007-10-24 Richard Stallman <rms@gnu.org>
27829
27830 * frame.c (x_figure_window_size): For fullscreen case,
27831 set USPosition | PPosition without clobbering rest of window_prompting.
27832
27833 * keyboard.c (Fcurrent_idle_time): Doc fix.
27834
27835 * print.c (Fwith_output_to_temp_buffer): Doc fix.
27836
27837 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
27838
27839 * process.c (unwind_request_sigio): Only define if __ultrix__.
27840
27841 * callproc.c (child_setup): Remove spurious *.
27842
27843 * lisp.h (Fget_text_property): Declare.
27844 (have_menus_p): Declare it here rather than in sys-dep header files.
27845 * macterm.h (have_menus_p):
27846 * msdos.h (have_menus_p):
27847 * xterm.h (have_menus_p): Remove.
27848
27849 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
27850 (Fmake_variable_frame_local): Just check the variable's const-ness
27851 rather than checking nil or t.
27852
27853 2007-10-22 Jason Rumney <jasonr@gnu.org>
27854
27855 * w32fns.c: Include math.h.
27856 (w32_abort): Declaration moved to nt/config.nt.
27857
27858 * s/ms-w32.h (HAVE_STDLIB_H): Define.
27859 (abort): Redefinition moved to nt/config.nt.
27860
27861 * m/windowsnt.h: Remove.
27862
27863 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
27864
27865 * emacs.c (Fdump_emacs): Fix typo in message.
27866 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
27867 <installation-directory>: Reflow docstring.
27868
27869 2007-10-22 Juri Linkov <juri@jurta.org>
27870
27871 * minibuf.c: Allow minibuffer default to be a list of default values.
27872 With empty input use the first element of this list as returned default.
27873 (string_to_object)
27874 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
27875 (read_minibuf): If defalt is cons, set histstring to its car.
27876 (Fread_string): If default_value is cons, set val to its car.
27877 (Fread_buffer): If def is cons, use its car.
27878 (Fcompleting_read): If defalt is cons, set val to its car.
27879
27880 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
27881
27882 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
27883
27884 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
27885
27886 * doc.c (Fdocumentation): Check for advice in all cases.
27887
27888 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
27889
27890 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
27891
27892 2007-10-19 Richard Stallman <rms@gnu.org>
27893
27894 * doc.c (Fdocumentation): Check for and handle an advised function.
27895
27896 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
27897
27898 * process.c (Fset_process_filter): Doc fix.
27899
27900 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
27901
27902 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
27903 which caused key-translation-map to applied repeatedly (thus breaking
27904 double-mode).
27905
27906 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
27907
27908 * xselect.c (x_own_selection, x_handle_selection_clear)
27909 (x_clear_frame_selections):
27910 * w32menu.c (list_of_panes, list_of_items):
27911 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
27912 * textprop.c (validate_plist, interval_has_all_properties)
27913 (interval_has_some_properties, interval_has_some_properties_list)
27914 (add_properties, text_property_list):
27915 * process.c (Fget_buffer_process, list_processes_1, status_notify):
27916 * minibuf.c (Fassoc_string):
27917 * macselect.c (x_own_selection, x_clear_frame_selections)
27918 (Fx_disown_selection_internal):
27919 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
27920 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
27921
27922 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
27923
27924 * process.c: Link to libs for calling res_init() if available.
27925 (Fmake_network_process): Call res_init() before getaddrinfo or
27926 gethostbyname, if possible.
27927
27928 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
27929
27930 * lread.c (read1): Set pvectype for char_tables.
27931
27932 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
27933 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
27934 Add type checks.
27935 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
27936
27937 * alloc.c (free_misc): Use XMISCTYPE.
27938 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
27939
27940 2007-10-17 Glenn Morris <rgm@gnu.org>
27941
27942 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
27943 (syms_of_minibuf): Add Qcompletion_ignore_case.
27944 * dired.c (Qcompletion_ignore_case): Change to external.
27945 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
27946 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
27947 (Fread_file_name): Use it rather than intern'ing.
27948
27949 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
27950 (Fread_coding_system): Ignore case of user input.
27951
27952 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27953
27954 * xdisp.c (handle_display_prop): Ignore display specs after
27955 replacing one when string text is being replaced.
27956 (handle_single_display_spec): Pretend as if characters with display
27957 property haven't been consumed only when buffer text is being replaced.
27958
27959 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
27960
27961 * xfns.c (Fx_create_frame, Fx_display_list):
27962 * window.c (window_fixed_size_p, enlarge_window)
27963 (shrink_window_lowest_first):
27964 * macterm.c (init_font_name_table):
27965 * macfns.c (Fx_create_frame, Fx_display_list):
27966 * lread.c (close_load_descs):
27967 * keyboard.c (read_char_x_menu_prompt):
27968 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
27969 * coding.c (code_convert_region_unwind): Test the type of an object
27970 rather than just !NILP before extracting data from it.
27971
27972 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
27973
27974 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
27975 (XMISCANY): New macro.
27976 (XMISCTYPE): Use it.
27977 (struct Lisp_Misc_Any): New type.
27978 (union Lisp_Misc): Use it.
27979 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
27980 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
27981 (find_symbol_value, set_internal, default_value, Fset_default)
27982 (Fmake_variable_buffer_local, Fmake_local_variable)
27983 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
27984 (Flocal_variable_if_set_p, Fvariable_binding_locus):
27985 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
27986 * alloc.c (allocate_buffer): Set the size and tag.
27987 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
27988 Use XMISCANY.
27989 (die): Follow the GNU convention for error messages.
27990 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
27991 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
27992 tag any more.
27993 (set_buffer_internal_1):
27994 * frame.c (store_frame_param):
27995 * eval.c (specbind):
27996 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
27997
27998 * doc.c (Fsnarf_documentation): Simplify.
27999
28000 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
28001
28002 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
28003 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
28004
28005 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
28006
28007 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
28008
28009 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
28010
28011 * eval.c (do_autoload): Don't save autoloads.
28012
28013 * data.c (Ffset): Save autoload of the function being set.
28014
28015 2007-10-07 John Paul Wallington <jpw@pobox.com>
28016
28017 * xfns.c (x_create_tip_frame): Set the `display-type' frame
28018 parameter before setting up faces.
28019
28020 2007-10-13 Eli Zaretskii <eliz@gnu.org>
28021
28022 * ccl.c (Fregister_code_conversion_map):
28023 * keyboard.c (append_tool_bar_item): Reformat last change.
28024
28025 * lisp.h (eabs): Rename from `abs'. All callers changed.
28026
28027 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
28028
28029 * buffer.c (add_overlay_mod_hooklist):
28030 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
28031 * fontset.c (make_fontset):
28032 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
28033 (append_tool_bar_item):
28034 * macmenu.c (grow_menu_items):
28035 * w32menu.c (grow_menu_items):
28036 * xmenu.c (grow_menu_items): Use larger_vector.
28037
28038 2007-10-13 Eli Zaretskii <eliz@gnu.org>
28039
28040 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
28041 selected frame'' on MSDOS).
28042
28043 2007-10-12 Martin Rudalics <rudalics@gmx.at>
28044
28045 * frame.c (Qexplicit_name): New variable.
28046 (x_report_frame_params): Report it in parameter alist.
28047 (syms_of_frame): Intern and staticpro it.
28048
28049 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
28050
28051 * macfns.c (x_create_tip_frame): Set terminal for frame.
28052
28053 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
28054
28055 * frame.c (Qenvironment): Remove.
28056 (syms_of_frame) <Qenvironment>: Don't initialize.
28057 (Fdelete_frame): Don't treat the `environment' param specially.
28058 * frame.h (Qenvironment): Don't declare.
28059 * callproc.c (set_initial_environment): Don't set unused frame param.
28060
28061 * frame.c (Fframe_with_environment): Remove.
28062 (syms_of_frame) <Sframe_with_environment>: Don't declare.
28063
28064 * lisp.h (Fframe_with_environment): Don't declare.
28065
28066 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
28067
28068 * indent.c (indent_tabs_mode, last_known_column)
28069 (last_known_column_modified): Make static.
28070 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
28071
28072 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
28073
28074 * puresize.h (BASE_PURESIZE): Increase to 1170000.
28075
28076 2007-10-09 Jason Rumney <jasonr@gnu.org>
28077
28078 * w32term.c (x_set_window_size): Disable code that attempts to tell
28079 Lisp code about a size change before it actually happens.
28080
28081 2007-10-09 Richard Stallman <rms@gnu.org>
28082
28083 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
28084 return HANDLED_RETURN.
28085
28086 2007-10-08 Martin Rudalics <rudalics@gmx.at>
28087
28088 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
28089 when there's an unread command event.
28090
28091 * frame.c (focus_follows_mouse): Move here from frame.el to allow
28092 window autoselection act appropriately when leaving selected frame.
28093 (syms_of_frame): Initialize focus_follows_mouse.
28094 * frame.h (focus_follows_mouse): Extern it.
28095 * macterm.c (XTread_socket): When focus_follows_mouse is nil
28096 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
28097 * msdos.c (dos_rawgetc): Likewise.
28098 * w32term.c (w32_read_socket): Likewise.
28099 * xterm.c (handle_one_xevent): Likewise.
28100 * xdisp.c (syms_of_xdisp): In doc-string of
28101 mouse-autoselect-window mention focus-follows-mouse.
28102
28103 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28104
28105 * macterm.c (mac_load_query_font): Fix missing return value.
28106 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
28107 Add BLOCK_INPUT.
28108
28109 2007-10-08 Richard Stallman <rms@gnu.org>
28110
28111 * xdisp.c (get_window_cursor_type): Implement documented behavior
28112 for cursor-in-non-selected-windows = t.
28113
28114 2007-10-08 Jason Rumney <jasonr@gnu.org>
28115
28116 * w32.c (w32_get_resource): Always close registry keys.
28117
28118 2007-10-08 Jason Rumney <jasonr@gnu.org>
28119
28120 * makefile.w32-in (LIBS): Add COMCTL32.
28121
28122 * w32fns.c (globals_of_w32fns): Init common controls.
28123
28124 2007-10-08 Richard Stallman <rms@gnu.org>
28125
28126 * image.c (our_memory_buffer): Rename from omfib_buffer.
28127
28128 2007-10-08 Richard Stallman <rms@gnu.org>
28129
28130 * buffer.c (Foverlays_at): Doc fix.
28131
28132 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
28133
28134 * fns.c (Fplist_put): Preserve uneven tail data.
28135
28136 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
28137
28138 * termhooks.h (enum event_kind): Remove trailing comma.
28139
28140 * frame.h (enum): Remove trailing comma.
28141
28142 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
28143
28144 * w32proc.c (delete_child): Don't terminate threads of zombies.
28145
28146 2007-10-08 Martin Rudalics <rudalics@gmx.at>
28147
28148 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
28149
28150 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
28151 last-repeatable-command.
28152 (init_kboard): Initialize Vlast_repeatable_command.
28153 (command_loop_1): Set it to real_this_command unless that was
28154 bound to an input event.
28155 (mark_kboards): Mark it.
28156
28157 2007-10-08 Richard Stallman <rms@gnu.org>
28158
28159 * eval.c (condition-case): Doc fix.
28160
28161 2007-10-08 Masatake YAMATO <jet@gyve.org>
28162
28163 * xfaces.c (tty_supports_face_attributes_p): Fix code
28164 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
28165 was copied and not edited.
28166
28167 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
28168
28169 Add new `input-decode-map' keymap and use it for terminal
28170 escape sequences.
28171 * keyboard.h (struct kboard): Add Vinput_decode_map.
28172 Remove Vlocal_key_translation_map.
28173 * keyboard.c (read_key_sequence): Add support for input-decode-map.
28174 (init_kboard): Init input-decode-map.
28175 Replace local-key-translation-map back with key-translation-map.
28176 (syms_of_keyboard): Declare input-decode-map.
28177 Remove local-key-translation-map. Update docstrings.
28178 (mark_kboards): Mark Vinput_decode_map.
28179 Don't mark Vlocal_key_translation_map.
28180 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
28181 Replace local-key-translation-map back with key-translation-map.
28182 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
28183 Bind in input-decode-map rather than function-key-map.
28184
28185 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
28186 This was made redundant by the previous introduction of XSETPVECTYPE.
28187
28188 2007-10-09 Richard Stallman <rms@gnu.org>
28189
28190 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
28191
28192 2007-09-29 Richard Stallman <rms@gnu.org>
28193
28194 * eval.c (internal_condition_case_2, internal_condition_case_1)
28195 (internal_condition_case): Reenable abort if x_catching_errors ()
28196 to see if that really happens and why.
28197
28198 2007-10-06 Andreas Schwab <schwab@suse.de>
28199
28200 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
28201
28202 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
28203
28204 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
28205
28206 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
28207
28208 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
28209
28210 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
28211
28212 * window.h (struct window):
28213 * window.c (struct save_window_data, struct saved_window):
28214 * termhooks.h (struct terminal):
28215 * process.h (struct Lisp_Process):
28216 * frame.h (struct frame):
28217 * buffer.h (struct buffer):
28218 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
28219 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
28220 The size field of (pseudo)vectors is now unsigned.
28221 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
28222
28223 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
28224 Turn `count' into an integer.
28225
28226 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
28227 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
28228 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
28229 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
28230 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
28231
28232 * alloc.c (allocate_pseudovector): New fun.
28233 (ALLOCATE_PSEUDOVECTOR): New macro.
28234 (allocate_window, allocate_terminal, allocate_frame)
28235 (allocate_process): Use it.
28236 (mark_vectorlike): New function.
28237 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
28238 (mark_terminals): Use it.
28239 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
28240 (Fmake_byte_code): Use XSETPVECTYPE.
28241
28242 * frame.c (Fframe_parameters): Minor simplification.
28243
28244 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
28245
28246 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
28247
28248 * buffer.c (Fget_buffer_create, init_buffer_once):
28249 * lread.c (defsubr):
28250 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
28251
28252 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
28253 defined differently in the m/*.h files.
28254 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
28255 (XSETPVECTYPE): New macro.
28256 (XSETPSEUDOVECTOR): Use it.
28257
28258 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
28259 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
28260
28261 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
28262 * lread.c (defvar_per_buffer):
28263 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
28264
28265 * window.c (candidate_window_p): Only consider as visible frames that
28266 are on the same terminal.
28267
28268 * m/ibms390x.h (MARKBIT): Remove unused macro.
28269
28270 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
28271
28272 * lread.c (Fload): Fix typo in docstring.
28273
28274 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
28275
28276 * floatfns.c (Fexpt): Manually check for overflows, so that a power
28277 of a non-zero value can't yield zero.
28278
28279 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
28280
28281 * term.c (term_clear_mouse_face, term_mouse_highlight)
28282 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
28283
28284 * print.c (safe_debug_print): Use XHASH.
28285
28286 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
28287 Lisp elements such as tags.
28288 (XHASH): New macro.
28289 (EQ): Use it.
28290 (SREF, SSET, STRING_COPYIN): Use SDATA.
28291 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
28292
28293 * alloc.c (mark_terminal): Remove left-over declaration.
28294 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
28295 (allocate_vectorlike): Remove type argument. Adjust callers.
28296 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
28297 Only handle the one remaining MEM_TYPE_VECTORLIKE.
28298
28299 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
28300 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
28301 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
28302 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
28303 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
28304 Use them.
28305
28306 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
28307 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
28308 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
28309
28310 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
28311
28312 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
28313 loaded by default.
28314
28315 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
28316
28317 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
28318 on this tty.
28319 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
28320
28321 * term.c (mouse_face_window): Rename from Qmouse_face_window.
28322 Update all users.
28323 (handle_one_term_event): Use Gpm_DrawPointer.
28324 (Fgpm_mouse_start): Rename from Fterm_open_connection.
28325 Signal errors instead of returning nil. Always return nil.
28326 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
28327 Make it a noop if gpm-mouse was not activated.
28328 (syms_of_term): Update names.
28329
28330 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
28331
28332 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
28333 (init_sys_modes): Check that gpm_tty is the current tty.
28334
28335 * alloc.c (allocate_terminal): Set the vector size to only count the
28336 lisp fields. Initialize those to nil.
28337 (mark_object): Don't treat terminals specially.
28338 (mark_terminal): Remove.
28339 (mark_terminals): Use mark_object instead.
28340
28341 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
28342 the GC to the beginning.
28343
28344 * indent.h:
28345 * indent.c: Use EMACS_INT for ints coming from Elisp data.
28346
28347 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
28348
28349 2007-09-25 Jason Rumney <jasonr@gnu.org>
28350
28351 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
28352
28353 * w32console.c (create_w32cons_output): Remove.
28354
28355 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
28356
28357 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
28358 (reset_sys_modes): Use reset_terminal_modes_hook.
28359
28360 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
28361
28362 * eval.c (do_autoload): Don't output any message.
28363
28364 2007-09-24 Juri Linkov <juri@jurta.org>
28365
28366 * emacs.c (standard_args): Change priority of "--no-splash"
28367 from 40 to 3. Add "--no-desktop" with the same priority.
28368
28369 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
28370
28371 * alloc.c (gc_sweep): Check cons cell mark bits word by word
28372 and optimize the case where they are all 1.
28373
28374 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
28375
28376 * lisp.h (abs): Define if not defined.
28377 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
28378 Don't define `abs', since it's defined in lisp.h.
28379
28380 2007-09-22 Eli Zaretskii <eliz@gnu.org>
28381
28382 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
28383 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
28384 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
28385 (init_tty): Use DEV_TTY instead of "/dev/tty".
28386 [WINDOWSNT]: No need to protect from NAME arg being null.
28387
28388 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
28389
28390 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
28391 up the tty state.
28392
28393 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
28394
28395 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
28396 (gpm_tty): Change its type.
28397 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
28398 (gpm_tty): Change its type and initialize it.
28399 (Fterm_open_connection): Check the frame is indeed a tty.
28400 Use the new gpm_tty.
28401 (Fterm_close_connection): Use the new gpm_tty.
28402 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
28403 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
28404
28405 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
28406
28407 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
28408 underline_color, to draw strike-through.
28409
28410 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
28411
28412 * lisp.h (allocate_terminal): Declare.
28413
28414 * window.c (candidate_window_p): Consider frames that are being placed
28415 by the user as somewhere between visible and iconified.
28416 (window_loop): Prefer windows on the current frame.
28417 (Fselect_window): Move the use of select-frame to the beginning so we
28418 can just delegate all the work (it'll call us back anyway).
28419
28420 * frame.c (Qdisplay_environment_variable):
28421 * frame.h (Qdisplay_environment_variable): Delete.
28422
28423 * .gdbinit (xbacktrace): Print the arg's address rather than the value
28424 of the first arg, since that value may be a union.
28425
28426 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
28427 parameter rather than Qdisplay_environment_variable. If all else
28428 fails, look for DISPLAY in initial-environment.
28429
28430 2007-09-21 Glenn Morris <rgm@gnu.org>
28431
28432 * Makefile.in (emacstool): Remove target.
28433 (lisp, shortlisp): Remove termdev.elc.
28434
28435 2007-09-21 Markus Triska <markus.triska@gmx.at>
28436
28437 * xterm.c (x_delete_display): Compile session management conditionally.
28438
28439 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
28440
28441 * callproc.c (getenv_internal_1): New function.
28442 (getenv_internal): Use it.
28443 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
28444
28445 * terminal.c (get_terminal): Don't accept ints to represent terminals.
28446 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
28447 (Fset_terminal_parameter): Work with dead terminals as well.
28448 (Fmodify_terminal_parameters): Remove.
28449
28450 * terminal.c (get_terminal): Handle terminals.
28451 Make sure the terminal returned is live.
28452 (create_terminal): Use allocate_terminal.
28453 (mark_terminals): Move to alloc.c.
28454 (delete_terminal): Use terminal->name as liveness status.
28455 NULL out fields after freeing their contents.
28456 Don't deallocate the object.
28457 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
28458 rather than an int.
28459 (Fterminal_live_p): Accept non-integer arguments.
28460 (Fterminal_list): Return terminal objects rather than an ints.
28461
28462 * alloc.c (enum mem_type): New member for `terminal' objects.
28463 (allocate_terminal): New function.
28464 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
28465 Handle terminals.
28466 (mark_terminal): New fun.
28467 (mark_terminals): Move from terminal.c.
28468
28469 * term.c (get_tty_terminal): Don't treat output_initial specially.
28470 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
28471 (delete_tty): Use terminal->name as liveness status.
28472
28473 * termhooks.h (struct terminal): Make it into a pseudovector.
28474 Remove `deleted' replaced by checking `name's nullness.
28475
28476 * print.c (print_object): Handle terminals.
28477
28478 * lisp.h (enum pvec_type): New `terminal' pseudovector.
28479 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
28480
28481 * frame.c (make_terminal_frame):
28482 * keyboard.c (tty_read_avail_input):
28483 * w32term.c (x_delete_terminal):
28484 * xfns.c (Fx_create_frame, x_create_tip_frame):
28485 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
28486
28487 2007-09-20 Glenn Morris <rgm@gnu.org>
28488
28489 * process.c (Fmake_network_process): Doc fix.
28490
28491 2007-09-19 Jason Rumney <jasonr@gnu.org>
28492
28493 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
28494
28495 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
28496
28497 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
28498 Fix a C warning regarding variable constness.
28499
28500 * xterm.c (handle_one_xevent): Fix a C warning.
28501
28502 2007-09-18 Jason Rumney <jasonr@gnu.org>
28503
28504 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
28505
28506 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
28507
28508 * gtkutil.c (gdpy_def): New variable.
28509 (xg_initialize): Initialize gdpy_def.
28510 (xg_display_close): If no other display exists, set gdpy_def to a
28511 new connection.
28512
28513 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
28514
28515 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
28516 when we have no file name for the icon.
28517 (xg_tool_bar_expose_callback): Remove.
28518 (xg_create_tool_bar): Don't connect expose signal to
28519 xg_tool_bar_expose_callback.
28520 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
28521
28522 2007-09-16 Andreas Schwab <schwab@suse.de>
28523
28524 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
28525 values instead of zapping them.
28526
28527 2007-09-14 Glenn Morris <rgm@gnu.org>
28528
28529 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
28530 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
28531 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
28532 scope and rename to omfib_buffer for clarity.
28533 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
28534
28535 2007-09-14 Kenichi Handa <handa@m17n.org>
28536
28537 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
28538
28539 2007-09-13 Jason Rumney <jasonr@gnu.org>
28540
28541 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
28542
28543 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
28544
28545 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
28546 (mac_term_init): Call here instead, passing rif.
28547
28548 2007-09-13 Glenn Morris <rgm@gnu.org>
28549
28550 * s/hpux.h: No longer define `static' as nothing.
28551
28552 2007-09-13 Johan Bockgård <bojohan@gnu.org>
28553
28554 * callint.c (Fcall_interactively): Remove unused var `fun'.
28555
28556 2007-09-12 Romain Francoise <romain@orebokech.com>
28557
28558 * window.c (prefer_window_split_horizontally, display_buffer):
28559 Revert 2007-09-08 change.
28560
28561 2007-09-12 Glenn Morris <rgm@gnu.org>
28562
28563 * alloca.c: Remove file.
28564 * Makefile.in (alloca): Do not undef.
28565 (allocaobj, alloca.o): Remove.
28566 (otherobj): Remove allocaobj.
28567 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
28568 * regex.c (C_ALLOCA): Remove all references and code that was only
28569 used when this was defined.
28570 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
28571 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
28572 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
28573
28574 * Makefile.in (SOURCES, unlock, relock): Delete.
28575
28576 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
28577 (menu_grab_callback): All uses changed.
28578
28579 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
28580 (x_reply_selection_request): All uses changed.
28581
28582 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
28583
28584 * lread.c (load_warn_old_style_backquotes): Change message to look
28585 better when it appears in the middle of byte-compiler messages.
28586
28587 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
28588
28589 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
28590
28591 * xterm.c (x_create_terminal): Add comment.
28592
28593 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
28594
28595 2007-09-10 Richard Stallman <rms@gnu.org>
28596
28597 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
28598
28599 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
28600
28601 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
28602 (DEFUN): Document `intspec', use it instead of `prompt'.
28603
28604 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
28605
28606 * data.c (Finteractive_form): If the interactive specification starts
28607 with a `(', use it as a Lisp form.
28608
28609 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
28610 name and file modes.
28611
28612 * callint.c (Fcall_interactively): Comment fixes.
28613
28614 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
28615
28616 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
28617 and compiled functions.
28618
28619 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
28620
28621 * window.c (prefer_window_split_horizontally): New variable.
28622 (display_buffer): Consider splitting window horizontally depending
28623 on prefer_window_split_horizontally.
28624
28625 2007-09-08 Eli Zaretskii <eliz@gnu.org>
28626
28627 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
28628
28629 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
28630
28631 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
28632
28633 * frame.c (x_set_frame_parameters): Check number is positive before
28634 using XFASTINT.
28635
28636 * window.c (freeze_window_start): Don't presume selected_window holds
28637 a window object.
28638 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
28639
28640 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
28641
28642 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
28643
28644 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
28645
28646 * window.c (Vsplit_window_preferred_function): New var.
28647 (Fdisplay_buffer): Use it.
28648 (syms_of_window): Export, and initialize it.
28649
28650 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
28651
28652 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
28653
28654 2007-09-06 Glenn Morris <rgm@gnu.org>
28655
28656 * gtkutil.c (menu_grab_callback) <cnt>:
28657 * xselect.c (x_reply_selection_request) <cnt>: Move static
28658 variable to file scope.
28659
28660 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
28661
28662 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
28663 consistent values of selected_frame and selected_window.
28664
28665 2007-09-04 Jason Rumney <jasonr@gnu.org>
28666
28667 * w32console.c (initialize_w32_display): Zero unused hooks.
28668
28669 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
28670
28671 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
28672 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
28673
28674 2007-09-04 Jason Rumney <jasonr@gnu.org>
28675
28676 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
28677 in w32console.c. Set up input. Remove XXX comments that have been
28678 confirmed as correct.
28679
28680 * s/ms-w32.h (MULTI_KBOARD): Define.
28681
28682 * w32console.c (one_and_only_w32cons): Remove.
28683 (initialize_w32_display): Take terminal argument.
28684
28685 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
28686 initialize_w32_display.
28687 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
28688
28689 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
28690
28691 * keyboard.c (discard_mouse_events): Discard it.
28692 (make_lispy_event): Translate it to a lisp event.
28693 (lispy_wheel_names): Add wheel-left and right events.
28694 (syms_of_keyboard): Enlarge wheel_syms.
28695
28696 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
28697 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
28698
28699 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
28700
28701 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
28702 from WM_MOUSEHWHEEL.
28703 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
28704
28705 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
28706 terminal.
28707
28708 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
28709 keyboard for the terminal.
28710
28711 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
28712
28713 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
28714 (Vresume_tty_hook): Rename from Vresume_tty_functions.
28715 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
28716 and resume-tty-function to resume-tty-hook.
28717 (Fsuspend_tty, Fresume_tty): Use new names.
28718
28719 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
28720
28721 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
28722 if it starts with "n:".
28723
28724 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
28725
28726 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
28727
28728 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
28729
28730 * frame.h:
28731 * frame.c (Qterm_environment_variable): Remove.
28732 (syms_of_frame): Don't init and staticpro it.
28733
28734 * callproc.c (getenv_internal): Remove special case for $TERM.
28735
28736 * callproc.c (Vinitial_environment): New variable.
28737 (set_initial_environment): Initialize it.
28738 (syms_of_callproc): Declare it.
28739 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
28740 TERM under which a process runs is never related to the TERM in which
28741 Emacs is running.
28742
28743 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
28744
28745 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
28746 * s/darwin.h: ... do it here.
28747
28748 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
28749
28750 * lisp.h (set_initial_environment): Rename from set_global_environment.
28751
28752 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
28753 removed by mistake on the multi-tty branch.
28754
28755 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
28756 (Fmodify_frame_parameters): Return a value.
28757
28758 * image.c (png_load): Comment-out var only used in commented-out code.
28759
28760 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
28761 before passing it to mark_object.
28762
28763 * xfaces.c (internal_resolve_face_name): Return a value.
28764 (internal_resolve_face_name, resolve_face_name_error): Comment out.
28765
28766 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
28767 (x_icon): Comment-out var only used in commented-out code.
28768
28769 2007-08-29 Romain Francoise <romain@orebokech.com>
28770
28771 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
28772 QUIT hasn't been provided.
28773
28774 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
28775
28776 * callproc.c (child_setup, getenv_internal): Use the
28777 display-environment-variable and term-environment-variable frame params.
28778 (set_initial_environment): Initialise Vprocess_environment.
28779
28780 * config.in: Disable multi-keyboard support on a mac.
28781
28782 * frame.c (Qterm_environment_variable)
28783 (Qdisplay_environment_variable): New variables.
28784 (syms_of_frame): Intern and staticpro them.
28785 (Fmake_terminal_frame): Disable output method test.
28786
28787 * frame.h: Declare them here.
28788
28789 * macfns.c (x_set_mouse_color): Get rif from the frame.
28790 (x_set_tool_bar_lines): Don't use updating_frame.
28791 (mac_window): Add 2 new parameters for consistency with other systems.
28792 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
28793 frame parameters following what is done in X11 and w32. Don't use
28794 FRAME_MAC_DISPLAY_INFO.
28795 (Fx_open_connection, start_hourglass): Remove window-system check.
28796 (x_create_tip_frame): Get the keyboard from the terminal.
28797
28798 * macmenu.c: Reorder includes.
28799 (Fx_popup_menu): Use terminal specific mouse_position_hook.
28800
28801 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
28802 terminal parameter.
28803 (x_clear_frame): Add a frame parameter.
28804 (note_mouse_movement): Get rif from the frame.
28805 (mac_term_init): Initialize the terminal.
28806 (mac_initialize): Make static and move terminal initialization ...
28807 (mac_create_terminal): ... to this new function.
28808
28809 * macterm.h (struct mac_display_info): Add terminal.
28810 (mac_initialize): Delete declaration.
28811
28812 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
28813
28814 * sysdep.c: Comment out text after #endif.
28815
28816 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
28817 is defined. Better initialize ttys in windows. Use terminal
28818 specific mouse_position_hook.
28819
28820 * termhooks.h (union display_info): Add mac_display_info.
28821
28822 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
28823 Set the default minibuffer frame, window_system and the rest of the
28824 frame parameters following what is done in X11.
28825
28826 * w32term.c (w32_initialize): Make static.
28827
28828 * xselect.c (x_handle_selection_clear): Only access
28829 terminal->kboard when MULTI_KBOARD is defined.
28830
28831 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
28832 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
28833
28834 2007-08-29 Jason Rumney <jasonr@gnu.org>
28835
28836 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
28837 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
28838
28839 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
28840 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
28841
28842 * keyboard.c (restore_kboard_configuration): Only define when
28843 MULTI_KBOARD defined.
28844
28845 * makefile.w32-in: Update dependancies from Makefile.in.
28846 (OBJ1): Add terminal.$(O)
28847
28848 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
28849 Don't define function body.
28850 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
28851
28852 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
28853
28854 * w32.c (request_sigio, unrequest_sigio): Remove.
28855
28856 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
28857 (w32con_clear_frame, w32con_clear_end_of_line)
28858 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
28859 (w32con_delete_glyphs, w32con_set_terminal_window)
28860 (scroll_line, w32_sys_ring_bell): Add frame arg.
28861 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
28862 Add terminal arg.
28863 (PICK_FRAME): Remove.
28864 (w32con_write_glyphs): Use frame specific terminal coding.
28865 (one_and_only_w32cons): New global variable.
28866 (initialize_w32_display): Use it for storing hooks.
28867 (create_w32cons_output): New function.
28868
28869 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
28870 arg a frame.
28871
28872 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
28873 Set window_system.
28874 (x_set_tool_bar_lines): Don't use updating_frame.
28875 (Fx_create_frame): Set terminal and ref count.
28876 (Fx_open_connection): Remove window-system check.
28877
28878 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
28879
28880 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
28881 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
28882 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
28883 Add frame arg.
28884 (x_delete_terminal, w32_create_terminal): New functions.
28885 (w32_term_init): Create a terminal.
28886 (w32_initialize): Move terminal specific initialization to
28887 w32_create_terminal.
28888
28889 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
28890 (w32_clear_rect, w32_clear_area): Use background from frame.
28891 (w32_display_info): Add terminal.
28892 (w32_sys_ring_bell, x_delete_display): Declare here.
28893
28894 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
28895
28896 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
28897
28898 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
28899
28900 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
28901 Fix get_named_tty calls for the controlling tty.
28902
28903 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
28904
28905 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
28906
28907 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
28908
28909 * term.c (tty_insert_glyphs): Add missing first parameter.
28910
28911 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
28912
28913 * buffer.c (Fbuffer_list, Fbury_buffer):
28914 Take frame->buried_buffer_list into account.
28915
28916 * cm.c (current_tty): New variable, for cmputc().
28917 (cmputc): Use it.
28918 (cmcheckmagic): Add tty parameter, look up terminal streams there.
28919 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
28920 (cmgoto): Add tty parameter. Pass it on to calccost().
28921 Use emacs_tputs() instead of tputs().
28922
28923 * cm.h (emacs_tputs): New macro to set current_tty, and then call
28924 tputs().
28925 (current_tty): New variable, for cmputc().
28926 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
28927
28928 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
28929 (internal_condition_case, internal_condition_case_1)
28930 (internal_condition_case_2): Don't abort when x_catching_errors.
28931
28932 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
28933 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
28934 prevent crashes caused by bogus longjmps in read_char.
28935
28936 * keymap.h (Fset_keymap_parent): Add EXFUN.
28937
28938 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
28939 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
28940 Remove redundant definition.
28941
28942 * macfns.c (x_set_mouse_color, x_make_gc):
28943 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28944
28945 * w32term.c (x_free_frame_resources):
28946 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28947 (w32_initialize): Use the accessor macros for terminal characteristics.
28948
28949 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
28950 Use the accessor macros for terminal characteristics.
28951 * msdos.c (internal_terminal_init): Use the accessor macros for
28952 terminal characteristics.
28953 (ScreenVisualBell, internal_terminal_init):
28954 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28955
28956 * termopts.h (no_redraw_on_reenter): Declare.
28957
28958 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
28959 (mark_terminals, mark_ttys): Declare.
28960 (Fgarbage_collect): Call them.
28961 (mark_object): Mark buried_buffer_list.
28962
28963 * prefix-args.c: Include stdlib.h for exit.
28964
28965 * syssignal.h: Add comment.
28966
28967 * indent.c: Include stdio.h.
28968
28969 * window.h (Vinitial_window_system): Declare.
28970 (Vwindow_system): Delete declaration.
28971
28972 * fontset.c (Finternal_char_font): Use FRAME_RIF.
28973
28974 * image.c (lookup_image): Don't initialize `c' until the xasserts
28975 have been run.
28976
28977 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
28978 FRAME_FOREGROUND_PIXEL.
28979
28980 * print.c (print_preprocess): Don't lose print_depth levels while
28981 iterating.
28982
28983 * widget.c (update_from_various_frame_slots):
28984 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28985
28986 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
28987 frames.
28988 (window_internal_height): Remove bogus make_number call.
28989 (init_window_once): Call make_terminal_frame with two zero parameters.
28990
28991 * fileio.c (Fread_file_name): Update comment.
28992
28993 * callint.c (Fcall_interactively):
28994 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
28995 Make sure it is correctly unwound.
28996
28997 * xsmfns.c (x_session_close): New function.
28998
28999 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
29000 Delete declarations.
29001
29002 * xterm.h: Remove declaration for x_fully_uncatch_errors.
29003 (x_output): Remove background_pixel and foreground_pixel fields.
29004 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
29005 (x_delete_device, x_session_close): Declare.
29006
29007 * lread.c: Include setjmp.h. Update declaration of `read_char'.
29008 (read_filtered_event): Call `read_char' with a local
29009 `wrong_kboard_jmpbuf'.
29010
29011 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
29012 Don't call single_kboard_state. Use FRAME_RIF.
29013
29014 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
29015 systems.
29016
29017 * lisp.h (set_process_environment): Rename to `set_global_environment'.
29018 (Fframe_with_environment, Fset_input_meta_mode)
29019 (Fset_quit_char): EXFUN.
29020 (x_create_device, tty_output, terminal, tty_display_info): Declare.
29021 (init_sys_modes, reset_sys_modes): Update prototypes.
29022 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
29023
29024 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
29025 Vlocal_key_translation_map, and Vkeyboard_translate_table.
29026 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
29027 Delete declarations.
29028 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
29029 (temporarily_switch_to_single_kboard, tty_read_avail_input):
29030 New declarations.
29031
29032 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
29033 already does that during init_display(). Call syms_of_keymap
29034 before syms_of_keyboard. Call `syms_of_terminal'.
29035 Call set_initial_environment, not set_process_environment.
29036 (shut_down_emacs): Call reset_all_sys_modes() instead of
29037 reset_sys_modes().
29038
29039 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
29040 (internal_resolve_face_name, resolve_face_name_error): New functions.
29041 (resolve_face_name): Protect against loops and errors thrown by Fget.
29042 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
29043 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
29044
29045 * scroll.c: Replace CURTTY() with local variables throughout the
29046 file (where applicable).
29047 (calculate_scrolling, calculate_direct_scrolling)
29048 (scrolling_1, scroll_cost): Use the accessor macros for terminal
29049 characteristics.
29050
29051 * keymap.c (Vfunction_key_map): Remove.
29052 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
29053 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
29054 (Vkey_translation_map): Remove.
29055 (syms_of_keymap): Remove DEFVAR for key-translation-map.
29056 (Fdescribe_buffer_bindings)
29057 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
29058 Update for terminal-local key-translation-map.
29059
29060 * Makefile.in (callproc.o): Update dependencies.
29061 (lisp, shortlisp): Add termdev.elc.
29062 (obj): Add terminal.o.
29063 (terminal.o): Add dependencies.
29064 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
29065 (data.o, fns.o): Add termhooks.h dependency.
29066 (SOME_MACHINE_LISP): Add dnd.elc.
29067 (minibuf.o): Fix typo.
29068 Update dependencies.
29069
29070 * data.c (do_symval_forwarding, store_symval_forwarding)
29071 (find_symbol_value): Use the selected frame's keyboard, not
29072 current_kboard.
29073
29074 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
29075 Vwindow_system.
29076
29077 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
29078 Fmenu_bar_open.
29079 (syms_of_xmenu): Update defsubr.
29080 (mouse_position_for_popup, Fx_popup_menu)
29081 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
29082 (set_frame_menubar, free_frame_menubar)
29083 (create_and_show_popup_menu, xmenu_show)
29084 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
29085 an X frame.
29086
29087 * xselect.c (x_own_selection): Abort if not an X frame.
29088 (some_frame_on_display): Check if it is an X frame.
29089 (x_handle_selection_clear): Deal with MULTI_KBOARD.
29090
29091 * coding.c: Include frame.h and termhooks.h.
29092 (terminal_coding, keyboard_coding): Delete.
29093 (Fset_terminal_coding_system_internal)
29094 (Fset_keyboard_coding_system_internal)
29095 (Fkeyboard_coding_system)
29096 (Fterminal_coding_system): Add a terminal parameter.
29097 Get terminal_coding from the terminal.
29098 (init_coding_once): Don't call setup_coding_system here.
29099
29100 * dispextern.h (set_scroll_region, turn_off_insert)
29101 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
29102 (tty_clear_end_of_line, tty_setup_colors)
29103 (delete_tty, updating_frame)
29104 (produce_special_glyphs, produce_glyphs, write_glyphs)
29105 (insert_glyphs): Remove.
29106 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
29107 (tty_turn_off_highlight, get_tty_size): Add declaration.
29108 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
29109
29110 * frame.h (enum output_method): Add output_initial.
29111 (struct x_output): Delete.
29112 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
29113 Access foreground_pixel and background_pixel directly from the frame.
29114 (tty_display): Delete.
29115 (struct frame): Add buried_buffer_list, foreground_pixel,
29116 background_pixel and terminal. Delete kboard.
29117 (union output_data): Add tty.
29118 (FRAME_KBOARD): Get the kboard from the terminal.
29119 (FRAME_INITIAL_P): New macro.
29120 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
29121 (Qterm_environment_variable, Qdisplay_environment_variable)
29122 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
29123 New declarations.
29124
29125 * termchar.h (tty_output, tty_display_info): New structures.
29126 (tty_list): Declare.
29127 (FRAME_TTY, CURTTY): New macros.
29128 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
29129 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
29130 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
29131 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
29132
29133 * callproc.c: Include frame.h and termhooks.h, for terminal
29134 parameters.
29135 (add_env): New function.
29136 (child_setup): Use it.
29137 (child_setup, getenv_internal): Handle the new Vprocess_environment.
29138 (getenv_internal): Fix get_terminal_param call.
29139 (Fgetenv_internal, egetenv): Update doc.
29140 (syms_of_callproc): Initialize Vprocess_environment to nil.
29141 Register and initialize them. Remove obsolete defvars. Update doc
29142 strings.
29143 (child_setup): Handle Vlocal_environment_variables.
29144 (getenv_internal): Add terminal parameter.
29145 Handle Vlocal_environment_variables.
29146 (Fgetenv_internal): Add terminal parameter.
29147 (child_setup, getenv_internal, Fgetenv_internal): Store the local
29148 environment in a frame (not terminal) parameter. Update doc strings.
29149 (set_initial_environment): Rename from set_global_environment.
29150 Store Emacs environment in initial frame parameter.
29151
29152 * xdisp.c (redisplay_internal): Update references to
29153 `previous_terminal_frame'.
29154 (display_mode_line, Fformat_mode_line): Replace calls to
29155 `push_frame_kboard' with `push_kboard'.
29156 (get_glyph_string_clip_rects): Add extra parentheses and
29157 braces to prevent compiler warnings.
29158 (calc_pixel_width_or_height): Add xassert to check that the
29159 frame is alive. Don't call `lookup_image' on a termcap frame.
29160 (message2_nolog, message3_nolog, redisplay_internal)
29161 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
29162 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
29163 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
29164 (Fx_display_pixel_width, Fx_display_pixel_height)
29165 (Fx_display_planes, Fx_display_color_cells)
29166 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
29167 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
29168 (Fx_display_backing_store, Fx_display_visual_class)
29169 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
29170 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
29171
29172 * xfns.c (x_set_foreground_color x_set_background_color)
29173 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
29174 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
29175 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
29176 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
29177 terminal that is being deleted.
29178 (Fx_create_frame): Use `store_frame_param' to set `window-system'
29179 frame parameter, and make sure it overrides any user-supplied setting.
29180 (Fx_close_connection, Fx_synchronize): Unify argument names with
29181 the rest of the DEFUNs.
29182
29183 * dispnew.c (Fsend_string_to_terminal): Update call to
29184 `get_tty_terminal'.
29185 (Fredraw_frame, Fsend_string_to_terminal)
29186 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
29187 FRAME_TERMCAP_P and FRAME_TTY.
29188 (window_change_signal): Don't believe width/height values that are
29189 impossibly small.
29190 (Vinitial_window_system): Rename from Vwindow_system.
29191 (termscript, Wcm, rif): Delete.
29192
29193 * termhooks.h (struct terminal): New struct containing the
29194 previously global text display hooks and new members NAME,
29195 DELETED and PARAM_ALIST.
29196 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
29197 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
29198 (FRAME_RIF): New macros.
29199 (get_terminal_param, get_device): New declarations.
29200 (termscript): Delete declaration.
29201
29202 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
29203 (XTflash, x_free_frame_resources, x_scroll_bar_create)
29204 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
29205 FRAME_FOREGROUND_PIXEL.
29206 (x_fully_uncatch_errors): Disable definition.
29207 (x_scroll_bar_expose): Fix reference to foreground pixel.
29208 (XTread_socket): Disable loop on all X displays.
29209 (x_delete_terminal): Don't set terminal->deleted and let
29210 delete_terminal delete the frames on the terminal.
29211 (x_delete_display): Doc update to reflect changes in
29212 delete_terminal.
29213 (x_display_info) <terminal>: Move member earlier in the struct.
29214 (deleting_tty): Remove old variable.
29215 (Fsuspend_tty): Call clear_tty_hooks.
29216 (Fresume_tty, init_tty): Call set_tty_hooks.
29217 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
29218 errors on X frames.
29219 (x_catch_errors_unwind): Abort if x_error_message is NULL.
29220 (handle_one_xevent): Initialize `f' to NULL.
29221 (x_delete_terminal, x_create_terminal): New functions.
29222 (XTset_terminal_modes, XTreset_terminal_modes)
29223 (XTread_socket, x_connection_closed, x_term_init)
29224 (x_term_init, x_delete_display): Add terminal parameter.
29225 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
29226 X connections.
29227
29228 * frame.c: Include termchar.h.
29229 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
29230 (Qwindow_system, Qenvironment, Qterm_environment_variable)
29231 (Qdisplay_environment_variable): New vars.
29232 (Fframep): Deal with output_initial.
29233 (Fframe-live-p): Doc fix.
29234 (Fwindow-system): New function.
29235 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
29236 (make_terminal_frame): Don't create frames on a terminal that is
29237 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
29238 (store_frame_param): Check for found_for_frame before calling XFRAME.
29239 (Fmake_terminal_frame): Handle NULL tty names correctly.
29240 (syms_of_frame): Enhance doc string of `default-frame-alist'.
29241 (Fdelete_frame): Remove unused variable `count'. Don't allow other
29242 frames to refer to a deleted frame in their 'environment parameter.
29243 (Fframe_with_environment): New function.
29244 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
29245 (get_future_frame_param): New function.
29246 (Fmake_terminal_frame): Use it.
29247 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
29248
29249 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
29250 * sysdep.c (reset_sys_modes): Update for renames.
29251
29252 * keyboard.c (tty_read_avail_input): New function.
29253 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
29254 (syms_of_keyboard): Defsubr them.
29255 (Fset_input_meta_mode, Fset_quit_char): New functions.
29256 (Fset_input_mode): Split to above functions.
29257 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
29258 parameter. Use it in call to `read_char'.
29259 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
29260 Set wrong_kboard_jmpbuf correctly in recursive calls.
29261 Use current_kboard to access Vkeyboard_translate_table.
29262 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
29263 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
29264 Update longjmp invocations. Remember the original current_kboard,
29265 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
29266 changes it. Comment out unnecessary calls to
29267 `record_single_kboard_state' and `any_kboard_state'.
29268 Update recursive calls.
29269 (wrong_kboard_jmpbuf): Remove global variable.
29270 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
29271 Handle deleted interrupted_kboards correctly; that is a legal
29272 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
29273 and read_char calls. Abort if interrupted_kboard died in read_char.
29274 (any_kboard_state, single_kboard_state)
29275 (push_frame_kboard): Remove function.
29276 (pop_kboard): Switch out of single_kboard mode if the kboard has
29277 been deleted. Remove unused variable. Help debugging by not
29278 changing current_kboard unnecessarily. Set current_kboard to the
29279 kboard of the selected frame when the stored kboard object has
29280 been deleted before pop_kboard.
29281 (temporarily_switch_to_single_kboard): Change first parameter to a
29282 frame pointer. Throw an error when caller wants to change kboards
29283 while in single_kboard mode. Don't push_kboard if we weren't in
29284 single kboard state. Don't pop_kboard if we popped into any
29285 kboard state.
29286 (restore_kboard_configuration): Abort if pop_kboard changed the
29287 kboard in single_kboard mode. Call pop_kboard only after setting
29288 up single_kboard mode.
29289 (Frecursive_edit): Switch to single_kboard mode only in nested
29290 command loops.
29291 (cmd_error, command_loop, command_loop_1, timer_check):
29292 Comment out unnecessary call to `any_kboard_state' and
29293 `record_single_kboard_state'.
29294 (delete_kboard): Exit single_kboard mode if we have just deleted
29295 that kboard. Use FRAME_KBOARD.
29296 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
29297 `fatal_error_signal'.
29298 (record_single_kboard_state): Don't push_kboard if we weren't in
29299 single kboard state. Don't pop_kboard if we popped into any
29300 kboard state.
29301 (push_frame_kboard): Rename to push_kboard.
29302 (kbd_buffer_get_event): Use FRAME_TERMINAL.
29303 (read_avail_input): Read input from all terminals.
29304 (mark_kboards): Also mark Vkeyboard_translate_table.
29305 (kbd_buffer_store_event_hold): Simplify condition.
29306 (read_key_sequence): Reinitialize fkey and keytran at each replay.
29307 (Vkeyboard_translate_table): Move to struct kboard.
29308 (init_kboard): Initialize Vkeyboard_translate_table.
29309 (syms_of_keyboard): Use DEFVAR_KBOARD to define
29310 Vkeyboard_translate_table. Update doc strings. Update docs of
29311 local-function-key-map and function-key-map.
29312
29313 * terminal.c: New file.
29314
29315 * term.c: Include errno.h.
29316 (Vring_bell_function, device_list, initial_device)
29317 (next_device_id, ring_bell, update_begin, update_end)
29318 (set_terminal_window, cursor_to, raw_cursor_to)
29319 (clear_to_end, clear_frame, clear_end_of_line)
29320 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
29321 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
29322 (syms_of_term): Move their initialization to terminal.c.
29323 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
29324 (Ftty_display_color_cells)
29325 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
29326 (clear_tty_hooks, set_tty_hooks)
29327 (init_tty, maybe_fatal): New functions.
29328 (Ftty_type): Return nil if terminal is not on a tty instead of
29329 throwing an error. Doc update.
29330 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
29331 Doc update. Initialize new subrs and variables.
29332 (delete_tty): Use terminal->deleted.
29333 (tty_set_terminal_modes): Rename from set_terminal_modes.
29334 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
29335 (set_scroll_region): Rename to `tty_set_scroll_region'.
29336 (turn_on_insert): Rename to `tty_turn_on_insert'.
29337 (turn_off_insert): Rename to `tty_turn_off_insert'.
29338 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
29339 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
29340 (toggle_highligh): Rename to `tty_toggle_highlight'.
29341 (background_highlight): Rename to `tty_background_highlight'.
29342 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
29343 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
29344 (tty_set_scroll_region, tty_background_highlight)
29345 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
29346 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
29347 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
29348 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
29349 Add static modifier.
29350 (tty_reset_terminal_modes, tty_set_terminal_window)
29351 (tty_set_scroll_region, tty_background_highlight)
29352 (tty_highlight_if_desired, tty_cursor_to)
29353 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
29354 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
29355 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
29356 renames.
29357
29358 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
29359
29360 * keyboard.c: Qrtl is new.
29361 (parse_tool_bar_item): Handle :rtl keyword.
29362 (syms_of_keyboard): Intern :rtl keyword.
29363
29364 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
29365
29366 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
29367 so no Lisp code is executed.
29368 (file_for_image, find_rtl_image): New functions.
29369 (xg_get_image_for_pixmap): Use file_for_image.
29370 (update_frame_tool_bar): If direction is RTL, use RTL image if
29371 defined. Use Gtk stock images if defined.
29372
29373 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29374
29375 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
29376 for nonexistent or zero-width glyph in composition glyph.
29377
29378 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
29379
29380 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
29381
29382 * xdisp.c (Finvisible_p): New function.
29383 (syms_of_xdisp): defsubr it.
29384
29385 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
29386
29387 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
29388 Doc fixes.
29389
29390 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29391
29392 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
29393
29394 2007-08-24 Martin Rudalics <rudalics@gmx.at>
29395
29396 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
29397 whether decoding has modified buffer contents.
29398
29399 2007-08-24 Jason Rumney <jasonr@gnu.org>
29400
29401 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
29402 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
29403 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
29404 (init_svg_functions) [HAVE_NTGUI]: New function.
29405 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
29406 (svg_load_image): Use them.
29407 (svg_load_image) [HAVE_NTGUI]: Implement background.
29408
29409 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29410
29411 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
29412 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
29413 (LIBX): Remove @RSVG_LIBS@.
29414 (LIBES): Add $(RSVG_LIBS).
29415
29416 * image.c (svg_load_image): Blend with specified background if exists.
29417 Use IMAGE_BACKGROUND. Add Mac OS Support.
29418
29419 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
29420 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
29421 Remove macros.
29422 [MAC_OSX] (socket_callback): Do nothing.
29423 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
29424 ReceiveNextEvent.
29425 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
29426 socket_callback.
29427 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
29428
29429 2007-08-22 Glenn Morris <rgm@gnu.org>
29430
29431 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
29432
29433 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
29434
29435 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
29436
29437 * image.c: Add support for SVG images. Some additional comments
29438 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
29439 (svg_image_p): New function to test for SVG image.
29440 (svg_load): New function to load SVG image.
29441 (svg_load_image): New function, helper for svg_load.
29442 (Qsvg): New Lisp_object.
29443 (svg_keyword_index): New enum.
29444 (svg_format): New static `image_keyword' struct.
29445 (svg_type): New static `image_type' struct.
29446 (librsvg/rsvg.h): Include it.
29447
29448 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
29449
29450 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
29451
29452 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
29453
29454 * lread.c (Qold_style_backquotes): New var.
29455 (syms_of_lread): Init and staticpro it.
29456 (load_warn_old_style_backquotes): New fun.
29457 (Fload): Use them to warn about old style backquotes.
29458 (end_of_file_error, Fload): Remove unused vars.
29459
29460 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
29461
29462 * lread.c (Vold_style_backquotes): New var.
29463 (syms_of_lread): Init and export it to Elisp.
29464 (read1): Set it when we find an old-style (back)quote.
29465
29466 2007-08-22 Jason Rumney <jasonr@gnu.org>
29467
29468 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
29469
29470 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
29471
29472 * puresize.h (BASE_PURESIZE): Increase to 1140000.
29473
29474 2007-08-19 Richard Stallman <rms@gnu.org>
29475
29476 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
29477
29478 2007-08-19 Andreas Schwab <schwab@suse.de>
29479
29480 * alloc.c (pure): Round PURESIZE up.
29481
29482 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
29483
29484 * xterm.c (handle_one_xevent): Remove check that mouse click is in
29485 active frame.
29486
29487 2007-08-16 Richard Stallman <rms@gnu.org>
29488
29489 * eval.c (Fcommandp): Add parens to clarify.
29490
29491 * minibuf.c (Fall_completions): Use enum for type of table.
29492
29493 * emacs.c (USAGE2): Improve text.
29494
29495 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
29496
29497 * term.c (tty_default_color_capabilities): Declare static
29498 variables in file scope, to avoid HPUX compiler problem.
29499
29500 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
29501
29502 * gtkutil.c (update_frame_tool_bar): Use -1 as index
29503 to gtk_toolbar_insert.
29504
29505 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
29506
29507 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
29508
29509 * insdel.c (reset_var_on_error): New fun.
29510 (signal_before_change, signal_after_change):
29511 Use it to reset (after|before)-change-functions to nil in case of error.
29512 Bind inhibit-modification-hooks to t.
29513 Don't bind (after|before)-change-functions to nil while they run.
29514
29515 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29516
29517 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
29518 filling pixmap with stippled background.
29519
29520 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29521
29522 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
29523 Don't use invisible frame as parent window for repositioning.
29524
29525 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
29526
29527 * print.c (new_backquote_output): Rename from old_backquote_output.
29528 (print): Inverse its logic (according to its name) so as to match the
29529 behavior of new_backquote_flag in lread.c.
29530
29531 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29532
29533 * gmalloc.c (posix_memalign): New function.
29534
29535 * macterm.c (frame_highlight, frame_unhighlight): Don't call
29536 ActivateControl/DeactivateControl here.
29537 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
29538 frame-notice-user-settings is non-nil.
29539 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
29540 for kEventParamFMFontStyle.
29541 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
29542 mac_pass_command_to_system and mac_pass_control_to_system here.
29543 (XTread_socket): Call ActivateControl/DeactivateControl here.
29544 (XTread_socket) [TARGET_API_MAC_CARBON]:
29545 Check mac_pass_command_to_system and mac_pass_control_to_system here.
29546 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
29547 for window repositioning.
29548
29549 2007-08-08 Glenn Morris <rgm@gnu.org>
29550
29551 * Replace `iff' in doc-strings and comments.
29552
29553 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
29554
29555 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
29556
29557 2007-08-07 Martin Rudalics <rudalics@gmx.at>
29558
29559 * fileio.c (Finsert_file_contents): Run format-decode and
29560 after_insert_file_functions on entire buffer when REPLACE is
29561 non-nil and inhibit modification_hooks and point_motion_hooks.
29562 For consistency, run after_insert_file_functions iff something
29563 got inserted. Move signal_after_change and update_compositions
29564 after code running after_insert_file_functions. Make sure that
29565 undo_list doesn't record intermediate steps of the decoding process.
29566
29567 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29568
29569 * emacs.c (main)
29570 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
29571 Call malloc_enable_thread on interactive startup.
29572
29573 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
29574 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
29575 [USE_PTHREAD]: Conditionalize with it.
29576 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
29577 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
29578 New functions.
29579
29580 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
29581
29582 * xdisp.c (redisplay_window): When restoring original buffer
29583 position, make sure it is still valid.
29584
29585 * image.c (png_load): Ignore png-supplied background color.
29586
29587 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29588
29589 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
29590 Use kCFAbsoluteTimeIntervalSince1970.
29591
29592 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
29593 New variable.
29594 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
29595 event loop should be quit.
29596 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
29597 Quit dialog event loop if quit_dialog_event_loop is set.
29598
29599 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
29600 (Selection): New typedef. Use instead of ScrapRef.
29601 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
29602 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
29603 (mac_clear_selection): Rename from clear_scrap.
29604 (get_flavor_type_from_symbol): New argument SEL and subsume function of
29605 scrap_has_target_type. All uses changed.
29606 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
29607 (mac_selection_has_target_p): New functions.
29608 (mac_put_selection_value): Rename from put_scrap_string.
29609 (mac_get_selection_value): Rename from get_scrap_string.
29610 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
29611 (put_scrap_private_timestamp, scrap_has_target_type)
29612 (get_scrap_private_timestamp): Remove functions.
29613 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
29614 (x_own_selection, x_get_local_selection):
29615 Use mac_valid_selection_value_p.
29616 (x_own_selection): Don't use put_scrap_private_timestamp.
29617 Record OWNERSHIP-INFO into Vselection_alist instead.
29618 (x_get_local_selection): Don't check type if request is local.
29619 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
29620 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
29621
29622 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
29623
29624 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
29625 add comment explaining why.
29626
29627 2007-08-03 Richard Stallman <rms@gnu.org>
29628
29629 * fileio.c (Fvisited_file_modtime): Use make_time.
29630
29631 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
29632
29633 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
29634 build.
29635
29636 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
29637
29638 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
29639
29640 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
29641
29642 * puresize.h (BASE_PURESIZE): Increase to 1130000.
29643
29644 2007-07-30 Richard Stallman <rms@gnu.org>
29645
29646 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
29647
29648 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
29649
29650 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
29651
29652 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
29653
29654 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
29655 remote default-directory.
29656
29657 * buffer.c (mode-line-format): Update doc string.
29658
29659 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29660
29661 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
29662 scroll bar gap.
29663 (x_scroll_bar_create): Set bar->fringe_extended_p.
29664 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
29665 on frame edge. Check fringe background extension. Don't clear
29666 extended fringe background area.
29667
29668 * w32term.h (struct scroll_bar): New member fringe_extended_p.
29669 (w32_fill_area): Enclose multiple statements with do ... while (0).
29670
29671 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
29672 Extend fringe background to scroll bar gap.
29673 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
29674 Set bar->fringe_extended_p.
29675 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
29676 Put leftmost/rightmost scroll bars on frame edge. Check fringe
29677 background extension. Don't clear extended fringe background area.
29678
29679 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
29680 New member fringe_extended_p.
29681
29682 2007-07-25 Glenn Morris <rgm@gnu.org>
29683
29684 * Relicense all FSF files to GPLv3 or later.
29685
29686 * COPYING: Switch to GPLv3.
29687
29688 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
29689
29690 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
29691
29692 * data.c (Finteractive_form): Check for the presence of an
29693 `interactive-form' symbol property more thoroughly.
29694
29695 * data.c (Finteractive_form): Use an `interactive-form' property if
29696 present, analogous to the function-documentation property.
29697
29698 2007-07-24 Jason Rumney <jasonr@gnu.org>
29699
29700 * w32fns.c (x_real_positions): Get real position from OS instead of
29701 calculating it.
29702
29703 2007-07-23 Jason Rumney <jasonr@gnu.org>
29704
29705 * filelock.c (current_lock_owner): Allow for @ sign in username.
29706
29707 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
29708
29709 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
29710 remote default-directory.
29711
29712 * buffer.c (mode-line-format): Describe above case in doc string.
29713
29714 2007-07-20 Eli Zaretskii <eliz@gnu.org>
29715
29716 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
29717 Define if not defined.
29718
29719 2007-07-18 Jason Rumney <jasonr@gnu.org>
29720
29721 * w32proc.c (w32_executable_type): Handle 64 bit executables.
29722
29723 2007-07-18 Richard Stallman <rms@gnu.org>
29724
29725 * data.c (Fsetq_default): Doc fix.
29726
29727 * eval.c (Fsetq): Doc fix.
29728
29729 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
29730
29731 * coding.c (Ffind_operation_coding_system):
29732 * eval.c (For, Fand): Doc fixes.
29733 Reported by Johan Bockgård.
29734
29735 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
29736
29737 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
29738
29739 * xterm.h: Declare x_ewmh_activate_frame.
29740
29741 * xterm.c (x_ewmh_activate_frame): New function.
29742 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
29743
29744 2007-07-17 Martin Rudalics <rudalics@gmx.at>
29745
29746 * window.c (Fdisplay_buffer): If largest or LRU window is the
29747 only window, split it even if it is not eligible for splitting.
29748 This restores the original behavior broken by the 2007-07-15
29749 change.
29750
29751 2007-07-17 Glenn Morris <rgm@gnu.org>
29752
29753 * abbrev.c (abbrev_check_chars): New function.
29754 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
29755 Call abbrev_check_chars to check abbrev characters are word
29756 constituents. Doc fix.
29757
29758 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
29759
29760 * process.c (Fstart_process, Fmake_network_process)
29761 (read_process_output): Fix up last changes.
29762
29763 2007-07-16 Eli Zaretskii <eliz@gnu.org>
29764
29765 * makefile.w32-in (clean): Don't delete *~.
29766
29767 2007-07-16 Andreas Schwab <schwab@suse.de>
29768
29769 * window.c (Fdisplay_buffer): Use NILP.
29770 (Fset_window_scroll_bars): Likewise.
29771
29772 2007-07-15 Martin Rudalics <rudalics@gmx.at>
29773
29774 * window.c (window_min_size_2): New function.
29775 (window_min_size_1, size_window, Fdisplay_buffer)
29776 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
29777 windows without mode- or header-lines when window-min-height is
29778 too small.
29779 (size_window): Reset nodelete_p after testing it, following an
29780 earlier note by Kim F. Storm.
29781 (display_buffer): Do not set split_height_threshold to twice the
29782 value of window_min_height to avoid changing the value of a
29783 customizable variable. Rather explicitly check whether the
29784 height of the window that shall be splitted is at least as large
29785 as split_height_threshold.
29786 (Fwindow_full_width_p): New defun.
29787 (syms_of_window): Defsubr it.
29788
29789 * window.h: Add EXFUN for Fwindow_full_width_p.
29790
29791 2007-07-14 Jason Rumney <jasonr@gnu.org>
29792
29793 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
29794
29795 2007-07-14 Richard Stallman <rms@gnu.org>
29796
29797 * eval.c (maybe_call_debugger): New function.
29798 (find_handler_clause): Use maybe_call_debugger.
29799 Call it when the handler says `debug'.
29800 Eliminate DEBUGGER_VALUE_PTR.
29801 (Fsignal): Eliminate debugger_value.
29802 (Qdebug): New variable.
29803 (syms_of_eval): Initialize it.
29804
29805 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
29806
29807 * eval.c (Fprogn):
29808 * keyboard.c (Ftrack_mouse):
29809 * print.c (Fwith_output_to_temp_buffer):
29810 * window.c (Fsave_window_excursion): Doc fix.
29811
29812 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
29813
29814 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
29815
29816 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
29817
29818 * process.h (struct Lisp_Process): Turn slots infd, outfd,
29819 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
29820 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
29821 read_output_delay, and read_output_skip from Lisp_Objects to ints.
29822 Remove unused encoding_carryover.
29823 * process.c: Adjust all functions accordingly.
29824
29825 2007-07-12 Richard Stallman <rms@gnu.org>
29826
29827 * term.c: Include unistd.h only if HAVE_UNISTD_H.
29828
29829 2007-07-11 Jason Rumney <jasonr@gnu.org>
29830
29831 * makefile.w32-in (LIBS): Include OLE32.
29832
29833 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
29834 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
29835
29836 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
29837
29838 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
29839 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
29840 from a Lisp_Object into a bare pointer.
29841 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
29842 Adjust the code correspondingly.
29843
29844 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
29845
29846 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
29847 (term_show_mouse_face): Remove unused var `j'.
29848 (handle_one_term_event): Remove unused vars `i' and `j'.
29849 Don't cast return value of ttyname since it's not necessary.
29850
29851 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
29852
29853 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
29854 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
29855
29856 * fns.c (map_char_table): Use an array of int for `indices' rather than
29857 an array of Lisp_Objects (which are only ever integers anyway).
29858 (Fmap_char_table): Update caller.
29859 * lisp.h: Update prototype.
29860 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
29861 * fontset.c (Ffontset_info):
29862 * casetab.c (set_case_table): Update callers.
29863
29864 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
29865
29866 * keymap.c (struct accessible_keymaps_data)
29867 (struct where_is_internal_data): New structures.
29868 (accessible_keymaps_1, where_is_internal_1): Use them to change
29869 interface to adhere to the one used by map_keymap.
29870 (Faccessible_keymaps, where_is_internal): Use map_keymap.
29871 (accessible_keymaps_char_table, where_is_internal_2): Remove.
29872
29873 * keymap.h (map_keymap_function_t): More informative prototype.
29874
29875 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
29876
29877 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
29878 (looking_at_1): Don't change search_regs and last_thing_searched
29879 if `inhibit-changing-match-data' is non-nil.
29880 (string_match_1, search_buffer, set_search_regs): Likewise.
29881 (syms_of_search): Add Lisp level definition for
29882 `inhibit-changing-match-data' and set it to nil.
29883 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
29884 start and end of the match, instead of using values in search_regs.
29885
29886 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
29887
29888 * minibuf.c (Fcompleting_read): New value `confirm-only'
29889 for `require-match'.
29890
29891 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
29892
29893 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
29894 part of the 2007-06-27 change to syms_of_fileio.
29895
29896 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29897
29898 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
29899 Check WINDOWP before using XWINDOW. Consolidate return statements.
29900
29901 2007-06-27 Richard Stallman <rms@gnu.org>
29902
29903 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
29904
29905 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
29906
29907 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
29908
29909 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29910
29911 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
29912 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
29913 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
29914 (_free_internal, memalign): Use them.
29915 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
29916 Initialize to PTHREAD_MUTEX_INITIALIZER.
29917 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
29918 (morecore_nolock): Rename from morecore. All uses changed.
29919 Use only nolock versions of internal allocation functions.
29920 (_malloc_internal_nolock, _realloc_internal_nolock)
29921 (_free_internal_nolock): New functions created from
29922 _malloc_internal, _realloc_internal, and _free_internal.
29923 (_malloc_internal, _realloc_internal, _free_internal): Use them.
29924 Copy hook value to automatic variable before its use.
29925 (memalign): Copy hook value to automatic variable before its use.
29926
29927 2007-06-26 Kenichi Handa <handa@m17n.org>
29928
29929 * coding.c (Ffind_operation_coding_system): Docstring improved.
29930 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
29931
29932 2007-06-25 David Kastrup <dak@gnu.org>
29933
29934 * keymap.c (Fcurrent_active_maps): Add `position' argument.
29935 (Fwhere_is_internal): Adjust call to `current-active-maps' to
29936 cater for additional parameter.
29937
29938 * keymap.h: Adjust number of parameters to `current-active-maps'.
29939
29940 * doc.c (Fsubstitute_command_keys): Adjust call of
29941 `current-active-maps'.
29942
29943 2007-06-25 David Kastrup <dak@gnu.org>
29944
29945 * callint.c (Fcall_interactively): Make the parsing of interactive
29946 specs somewhat more readable.
29947
29948 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29949
29950 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
29951 to scroll bar gap also when bitmap fills fringe. Draw only foreground
29952 if extended background has already been filled.
29953
29954 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29955
29956 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
29957 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
29958
29959 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
29960 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
29961 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
29962 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
29963 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
29964 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
29965 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
29966 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
29967 Run timers during dialog popup.
29968 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
29969
29970 2007-06-21 Jason Rumney <jasonr@gnu.org>
29971
29972 * image.c (convert_mono_to_color_image): Swap fore and background.
29973
29974 2007-06-20 Jason Rumney <jasonr@gnu.org>
29975
29976 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
29977 (w32_free_bdf_font): Unmap memory not handle.
29978
29979 2007-06-20 Sam Steingold <sds@gnu.org>
29980
29981 * gmalloc.c (__morecore): Fix the declaration to comply with the
29982 definition.
29983
29984 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
29985
29986 * w32term.c (w32_delete_display): Remove leftover declaration.
29987 (w32_define_cursor, w32_initialize): Make static.
29988
29989 * w32.c (_wsa_errlist): Fix typo in error message.
29990 (init_environment): Ignore any environment variable from the
29991 registry having a null value.
29992
29993 2007-06-20 Glenn Morris <rgm@gnu.org>
29994
29995 * Makefile.in (LIBGIF): Default to -lgif.
29996
29997 2007-06-17 Jason Rumney <jasonr@gnu.org>
29998
29999 * w32menu.c (add_menu_item): Don't use multibyte string functions on
30000 unicode strings.
30001
30002 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
30003
30004 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
30005 Fix typo in docstring.
30006
30007 2007-06-16 Eli Zaretskii <eliz@gnu.org>
30008
30009 * w32menu.c (add_menu_item): Escape `&' characters in menu items
30010 and their keybindings.
30011
30012 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
30013
30014 * composite.c (update_compositions): Fix last fix.
30015
30016 2007-06-14 Jason Rumney <jasonr@gnu.org>
30017
30018 * w32.c (get_process_times_fn): New function pointer.
30019 (globals_of_w32): Intialize it if present in kernel32.dll.
30020 (w32_get_internal_run_time): New function.
30021
30022 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
30023
30024 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
30025
30026 * composite.c (update_compositions): Check the validness of
30027 compositions.
30028
30029 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30030
30031 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
30032 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
30033
30034 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
30035 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
30036
30037 * macgui.h (USE_MAC_TOOLBAR): New define.
30038
30039 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
30040 Return immediately unless popup is activated.
30041
30042 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
30043 background to scroll bar gap.
30044 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
30045 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
30046 scroll bars on frame edge. Check fringe background extension.
30047 Don't clear extended fringe background area.
30048 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
30049 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
30050 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
30051 [USE_MAC_TOOLBAR]: New macros.
30052 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
30053 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
30054 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
30055 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
30056 [USE_MAC_TOOLBAR]: New functions.
30057 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
30058 manually if previous repositioning has failed.
30059 (mac_handle_keyboard_event): Use precomputed event kind.
30060 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
30061 as tool bar item click. Handle mouse movement over tool bar items.
30062
30063 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
30064 toolbar_win_gravity.
30065 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
30066 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
30067 Add externs.
30068
30069 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
30070 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
30071
30072 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
30073
30074 * image.c (search_image_cache): Remove unused variable.
30075
30076 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
30077
30078 * xfns.c, xmenu.c: Link to xaw3d if available.
30079
30080 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30081
30082 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
30083 frame_foreground and frame_background.
30084
30085 * image.c (lookup_image): Save frame foreground and background colors.
30086 (search_image_cache): Check if saved and current frame colors match.
30087
30088 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
30089
30090 * regex.c (regex_compile): Remove the `regnum' counter.
30091 Use bufp->re_nsub instead. Add support for \(?N:RE\).
30092
30093 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
30094
30095 * term.c: Include intervals.h to declare Fget_text_property.
30096
30097 2007-06-10 Jason Rumney <jasonr@gnu.org>
30098
30099 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
30100
30101 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
30102
30103 * callint.c (Fcall_interactively):
30104 * editfns.c (Fdelete_and_extract_region):
30105 * fileio.c (Fread_file_name):
30106 * fns.c (Fmapconcat):
30107 * keyboard.c (cmd_error_internal):
30108 * keymap.c (Fkey_description):
30109 * lread.c (openp):
30110 * minibuf.c (read_minibuf):
30111 * search.c (wordify):
30112 * sunfns.c (sel_read):
30113 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
30114 * xfns.c (x_default_scroll_bar_color_parameter):
30115 * xmenu.c (menu_help_callback):
30116 * xselect.c (Fx_get_atom_name):
30117 * xterm.c (x_term_init): Use empty_unibyte_string.
30118
30119 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
30120
30121 * alloc.c (init_strings): Initialize canonical empty strings.
30122 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
30123 canonical empty string when the requested size is 0.
30124
30125 * emacs.c (empty_unibyte_string): Rename from empty_string.
30126 (empty_multibyte_string): New canonical empty string.
30127 (syms_of_emacs): Don't initialize empty_string.
30128
30129 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
30130 string, if appropriate.
30131 (empty_unibyte_string, empty_multibyte_string): New externs.
30132 (empty_string): Remove extern.
30133
30134 * lread.c (syms_of_lread): Use empty_unibyte_string.
30135
30136 2007-06-07 Jason Rumney <jasonr@gnu.org>
30137
30138 * s/ms-w32.h: Don't define HAVE_TZNAME.
30139
30140 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
30141
30142 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30143
30144 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
30145
30146 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
30147 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
30148
30149 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
30150 Don't call next handler.
30151 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
30152 Remove argument. Install handler to application.
30153 (set_frame_menubar): Don't change deep_p.
30154 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
30155 FRAME_OUTER_TO_INNER_DIFF_Y.
30156 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
30157 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
30158 [HAVE_DIALOGS]: New macros.
30159 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
30160 Use them.
30161 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
30162
30163 * macselect.c [MAC_OSX] (install_service_handler): Rename from
30164 init_service_handler. All callers changed. Return OSStatus value.
30165
30166 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
30167 All callers changed so as not to call SetPortWindowPort.
30168 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
30169 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
30170 mac_draw_string_common.
30171 (mac_draw_image_string_qd): Likewise.
30172 (mac_draw_string_common): Use them. Add INLINE.
30173 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
30174 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
30175 GetGlobalMouse.
30176 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
30177 and FRAME_OUTER_TO_INNER_DIFF_Y.
30178 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
30179 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
30180 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
30181 repositioning window to mac_handle_window_event.
30182 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
30183 saving window location to mac_handle_window_event
30184 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
30185 (install_menu_target_item_handler): Remove argument in extern.
30186 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
30187 Also accept command events.
30188 (do_keystroke): New function created from XTread_socket.
30189 (init_command_handler): Remove functions.
30190 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
30191 and save window location by kEventWindowShowing and kEventWindowHiding
30192 handlers here. Don't call next handler for window state change and
30193 focus events.
30194 (mac_handle_application_event, mac_handle_keyboard_event)
30195 [TARGET_API_MAC_CARBON]: New functions.
30196 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
30197 kEventWindowShowing and kEventWindowHiding events. Move installation
30198 of mouse, font, text input and menu target item handlers to
30199 install_application_handler.
30200 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
30201 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
30202 New function.
30203 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
30204 Register it.
30205 (XTread_socket) [TARGET_API_MAC_CARBON]:
30206 Consolidate SendEventToEventTarget calls.
30207 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
30208 Move application activation handler to mac_handle_application_event.
30209 Move keyboard handler to mac_handle_keyboard_event.
30210 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
30211 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
30212 init_command_handler. Call install_application_handler.
30213
30214 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
30215 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
30216
30217 2007-06-07 Glenn Morris <rgm@gnu.org>
30218
30219 * emacs.c (main): Use `emacs-copyright' in --version output.
30220
30221 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
30222
30223 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
30224
30225 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30226
30227 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
30228
30229 * macgui.h: Replace WindowPtr with WindowRef.
30230
30231 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
30232 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
30233 Replace ControlHandle with ControlRef.
30234 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
30235
30236 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
30237 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
30238 Replace ControlHandle with ControlRef.
30239 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
30240 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
30241
30242 * macterm.h (struct scroll_bar): Rename member control_handle_low
30243 and control_handle_high to control_ref_low and control_ref_high.
30244 All uses changed.
30245 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
30246 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
30247 respectively. All uses changed.
30248 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
30249 (install_window_handler, remove_window_handler): Replace WindowPtr
30250 with WindowRef in externs.
30251
30252 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
30253
30254 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
30255
30256 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
30257
30258 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
30259
30260 * frame.c (Fmouse_position, Fmouse_pixel_position):
30261 Condition on HAVE_GPM too.
30262
30263 * term.c (term_mouse_highlight): Remove unused variables.
30264 (Fterm_open_connection): Set gpm_zerobased to 1.
30265 (term_mouse_movement, term_mouse_click, handle_one_term_event):
30266 Use zero based co-ordinates.
30267 (handle_one_term_event): Report a drag as mouse movement too.
30268
30269 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
30270
30271 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
30272
30273 * image.c (search_image_cache): New function. Require background
30274 color match if background color is unspecified in the image spec.
30275 (uncache_image, lookup_image): Use it.
30276
30277 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
30278
30279 * window.c (Fshrink_window): Reflow docstring.
30280
30281 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
30282
30283 * Version 22.1 released.
30284
30285 2007-06-01 Richard Stallman <rms@gnu.org>
30286
30287 * xfns.c (x_encode_text): Add GCPRO.
30288
30289 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30290
30291 * xfns.c (x_set_name_internal): Save encoded name before
30292 x_encode_text in case string data is relocated.
30293
30294 2007-05-31 Richard Stallman <rms@gnu.org>
30295
30296 * buffer.c (syms_of_buffer): Doc fix.
30297
30298 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
30299
30300 * sysdep.c (init_sys_modes): Add rather than replace with
30301 O_NONBLOCK.
30302
30303 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
30304 term_mouse_moveto.
30305
30306 * termhooks.h (term_mouse_moveto): New extern.
30307
30308 * term.c (mouse_face_window): Rename...
30309 (Qmouse_face_window): ...to this.
30310 (term_show_mouse_face, term_clear_mouse_face)
30311 (term_mouse_highlight): Use Qmouse_face_window.
30312 (term_mouse_moveto): New function.
30313 (term_mouse_position): Make it work.
30314 (syms_of_term): Uncomment assignment to mouse_position_hook.
30315 Staticpro Qmouse_face_window.
30316
30317 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30318
30319 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
30320 around current_column call.
30321
30322 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
30323
30324 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
30325 * xdisp.c (next_element_from_buffer):
30326 * window.c (delete_window):
30327 * term.c (term_mouse_highlight):
30328 * msdos.c (getdefdir):
30329 * macterm.c (mac_create_bitmap_from_bitmap_data)
30330 (init_font_name_table):
30331 * fns.c (Fsxhash):
30332 * data.c (Fmake_local_variable):
30333 * ccl.c (ccl_driver): Likewise.
30334
30335 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30336
30337 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
30338 Call mac_wakeup_from_rne on window size change.
30339
30340 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
30341
30342 * image.c (uncache_image): Fix typo.
30343
30344 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
30345
30346 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
30347
30348 2007-05-22 Richard Stallman <rms@gnu.org>
30349
30350 * xterm.c (x_connection_closed): Remove NO_RETURN.
30351
30352 2007-05-22 Martin Rudalics <rudalics@gmx.at>
30353
30354 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
30355
30356 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
30357
30358 * image.c (uncache_image): New function.
30359 (Fimage_refresh): New function.
30360
30361 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
30362
30363 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
30364
30365 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
30366
30367 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
30368 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
30369
30370 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
30371
30372 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
30373 conditional on [HAVE_GPM_H].
30374
30375 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
30376
30377 * syntax.c (skip_chars): Update syntax-table only after we checked that
30378 the new location is valid.
30379
30380 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30381
30382 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
30383 mac_get_window_bounds.
30384
30385 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
30386
30387 * Makefile.in (LIBGPM): Allow it to be set from configure.
30388 If set then link Emacs with it.
30389
30390 * config.in: Regenerate.
30391
30392 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
30393 New externs.
30394
30395 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
30396 Include gpm.h.
30397 (handle_one_term_event, term_gpm): New externs.
30398
30399 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
30400 and allow it to be interrupted by SIGIO.
30401
30402 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
30403 (wait_reading_process_output): Wait on gpm_fd too.
30404 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
30405 (add_gpm_wait_descriptor_called_flag): New variable.
30406 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
30407
30408 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
30409 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
30410 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
30411 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
30412 (make_lispy_event): Add case GPM_CLICK_EVENT.
30413 (read_avail_input): Handle mouse input.
30414
30415 * term.c (write_glyphs_with_face): New function.
30416 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
30417 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
30418 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
30419 (mouse_face_face_id, term_gpm, pos_x, pos_y)
30420 (last_mouse_x, last_mouse_y): New variables.
30421 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
30422 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
30423 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
30424 (Fterm_close_connection): New functions.
30425 (term_init): Initialise mouse_face_window.
30426
30427 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
30428
30429 * xdisp.c (redisplay_window): If first window line is a
30430 continuation line, recompute the new window start instead of
30431 recentering.
30432
30433 2007-05-18 Glenn Morris <rgm@gnu.org>
30434
30435 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
30436 Suggested by Alfred M. Szmidt <ams@gnu.org>.
30437
30438 2007-05-17 Glenn Morris <rgm@gnu.org>
30439
30440 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
30441
30442 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30443
30444 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
30445 dead key repeat and up events.
30446
30447 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
30448
30449 * image.c (pbm_load): Check image size for monochrome pbm.
30450
30451 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
30452
30453 * xterm.c (XTread_socket): Revert last change.
30454
30455 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
30456
30457 * image.c (pbm_load): Correctly check image size for greyscale pbm.
30458
30459 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
30460
30461 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
30462
30463 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
30464 mixup (YAILOM).
30465
30466 2007-05-07 Andreas Schwab <schwab@suse.de>
30467
30468 * keymap.c (Flookup_key): Fix typo in last change.
30469
30470 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
30471
30472 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
30473 mapping for unibyte strings.
30474
30475 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30476
30477 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
30478 (Fx_popup_dialog) [MAC_OSX]: Likewise.
30479
30480 2007-04-29 Richard Stallman <rms@gnu.org>
30481
30482 * insdel.c (replace_range): For undo, record insertion first.
30483
30484 2007-04-29 Andreas Schwab <schwab@suse.de>
30485
30486 * lisp.h (VECSIZE): Use OFFSETOF.
30487
30488 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30489
30490 * xdisp.c (try_window_reusing_current_matrix): Fix number of
30491 disabled lines.
30492
30493 2007-04-28 Richard Stallman <rms@gnu.org>
30494
30495 * lread.c (read_escape): In a string, \s is always space.
30496
30497 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
30498
30499 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
30500
30501 * gtkutil.c (xg_update_menubar, create_menus): Create empty
30502 submenu for menu bar items.
30503
30504 See ChangeLog.10 for earlier changes.
30505
30506 ;; Local Variables:
30507 ;; coding: utf-8
30508 ;; End:
30509
30510 Copyright (C) 2007-2011 Free Software Foundation, Inc.
30511
30512 This file is part of GNU Emacs.
30513
30514 GNU Emacs is free software: you can redistribute it and/or modify
30515 it under the terms of the GNU General Public License as published by
30516 the Free Software Foundation, either version 3 of the License, or
30517 (at your option) any later version.
30518
30519 GNU Emacs is distributed in the hope that it will be useful,
30520 but WITHOUT ANY WARRANTY; without even the implied warranty of
30521 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30522 GNU General Public License for more details.
30523
30524 You should have received a copy of the GNU General Public License
30525 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.