* minibuf.c: conform to C89 pointer rules
[bpt/emacs.git] / src / ChangeLog
CommitLineData
9eee99eb
PE
12011-02-06 Paul Eggert <eggert@cs.ucla.edu>
2
4c83cffc
PE
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
82470039
PE
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):
9eee99eb
PE
11 Change types between char * and unsigned char *, to satisfy C89
12 rules about pointer type compatibility.
82470039
PE
13 * doc.c (get_doc_string, Fsnarf_documentation):
14 (Fsubstitute_command_keys): Likewise.
5f742c1b
PE
15 * xfns.c (Fx_open_connection, Fx_window_property): Likewise.
16 * bitmaps/gray.xbm (gray_bits): Likewise.
b8dc29e9 17 * image.c (xbm_read_bitmap_data, xbm_load_image, xbm_load): Likewise.
847c0824
PE
18 * keyboard.c (echo_char, MULTI_LETTER_MOD, tty_read_avail_input):
19 Likewise.
01c9aa3a 20 * keymap.c (Ftext_char_description): Likewise.
637de37e 21 * minibuf.c (Fread_buffer): Likewise.
b68864e5
PE
22 * insdel.c (insert, insert_and_inherit, insert_before_markers):
23 (insert_before_markers_and_inherit, insert_1, insert_1_both):
24 Likewise. This changes these functions' signatures, which is
25 more convenient since most callers use char *. All remaining
26 callers changed.
27 * editfns.c (general_insert_function): Change signature to
28 match changes to insert functions' signatures.
01c9aa3a
PE
29 * keymap.c (map_keymap_char_table_item, map_keymap_internal): Use
30 explicit cast when converting between void * and function pointer
31 types, as C89 requires this.
9eee99eb 32
32299e33
PE
332011-02-05 Paul Eggert <eggert@cs.ucla.edu>
34
35 don't ignore chdir failure
36 * sysdep.c (sys_subshell) [!defined DOS_NT]: Diagnose chdir
37 failure and exit.
38 (sys_subshell) [defined DOS_NT]: Mark with a FIXME the two
39 remaining unchecked chdir calls in this function; some DOS/NT
40 expert needs to fix them.
41 * emacs.c (main): Mark with a FIXME the unchecked chdir calls
42 in this function; some NextStep expert needs to fix them.
43
233ba4d9 442011-02-05 Glenn Morris <rgm@gnu.org>
95838641
GM
45
46 * xfaces.c (Finternal_set_lisp_face_attribute):
47 Try to clarify some error messages. (Bug#2659)
48
233ba4d9 492011-02-05 Stefan Monnier <monnier@iro.umontreal.ca>
aca092ac
SM
50
51 * editfns.c (save_restriction_restore): Don't forget to invalidate the
52 current_column cache (bug#7946).
53
233ba4d9 542011-02-05 Kenichi Handa <handa@m17n.org>
ea2460a0
KH
55
56 * ftfont.c (ftfont_open): Use FC_DUAL only when it is defined.
57
58 * xftfont.c (xftfont_open): Likewise.
59
233ba4d9 602011-02-05 Andreas Schwab <schwab@linux-m68k.org>
29feb0e9
AS
61
62 * window.c (Fselect_window): Add missing return value.
63
d67985d3
PE
642011-02-05 Paul Eggert <eggert@cs.ucla.edu>
65
25a48bd0
PE
66 xstrcasecmp: conform to C89 pointer rules
67 * xfaces.c (xstrcasecmp): Change args from const unsigned char *
68 to const char *, since they're usually low-level C strings, and
69 this stays compatible with C89 pointer rules. All callers changed.
70
dfb6afda
PE
71 * charset.c: conform to C89 pointer rules
72 (define_charset_internal): Switch between char * and unsigned char *.
73
cc618f4e
PE
74 * xmenu.c: conform to C89 const rules
75 (xmenu_show, xdialog_show): Declare local var as char *, not
76 const char *, to stay compatible with C89 const rules.
77
9bcaafce
PE
78 * xdisp.c: conform to C89 pointer rules
79 (store_mode_line_noprop, display_string, reseat_to_string):
80 (c_string_pos, number_of_chars, message_dolog):
81 (message_log_check_duplicate, set_message_1, store_mode_line_noprop):
82 (display_mode_element, display_string):
83 Switch between char * and unsigned char * to stay compatible wth
84 C89 pointer rules.
85
5b0534c8
PE
86 * regex.c: conform to C89 pointer rules
87 (re_wctype): Add cast, as C89 does not allow assigning between
88 char * and unsigned char *.
89 (regex_compile): Likewise.
90
d67985d3
PE
91 sync from gnulib to remove HAVE_STDBOOL_H
92 * config.in: Regenerate.
93
a5d733f5
EZ
942011-02-04 Eli Zaretskii <eliz@gnu.org>
95
f90e08f5
EZ
96 * makefile.w32-in (LISP_H, PROCESS_H): New variables.
97 Replace all uses of lisp.h with $(LISP_H), and all uses of
98 process.h with $(PROCESS_H).
99 ($(BLD)/editfns.$(O)): Depend on ../lib/strftime.h.
100 ($(BLD)/print.$(O)): Depend on ../lib/ftoastr.h and ../lib/intprops.h.
101
be50df37
EZ
102 * deps.mk: Update for recent changes: gnutls support, gnulib
103 imports, addition of globals.h.
104
f90e08f5
EZ
105 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on
106 ../lib/ignore-value.h.
a5d733f5 107
67342916
PE
1082011-02-03 Paul Eggert <eggert@cs.ucla.edu>
109
110 allow C code to suppress warnings about ignored return values
111
112 We need to go through the code and for each such warning, either
113 fix the code to pay attention to the returned value, or tell GCC
114 that we really do want to ignore the returned value. Here is one
115 example of how to do the latter.
116 * sysdep.c: Include <ignore-value.h>.
117 (sys_subshell): Suppress an undesirable warning about not checking
118 the returned value of 'write', as there's nothing useful one can
119 do with that returned value.
120
36941b32
JD
1212011-02-03 Jan Djärv <jan.h.d@swipnet.se>
122
123 * xterm.c (x_connection_closed): Remove all calls that calls
124 XSync (Bug#7949).
125
3082f617
EZ
1262011-02-01 Eli Zaretskii <eliz@gnu.org>
127
128 * image.c (tiff_load): Avoid compiler warning in 2nd arg to
129 TIFFClientOpen.
130
4df0af9b
JD
1312011-02-01 Jan Djärv <jan.h.d@swipnet.se>
132
133 * xsmfns.c (ice_connection_closed): Call delete_read_fd.
134 (x_session_check_input): Change args and return type so it can be used
135 as argument to add_read_fd. Make static. Remove call to select.
136 Call kbd_buffer_store_event for emacs_event.
137 (smc_save_yourself_CB): Also store initial argv to SmRestartCommand.
138 (ice_conn_watch_CB): Call add_read_fd.
139
140 * xterm.c (XTread_socket): Remove HAVE_X_SM block with call to
141 x_session_check_input.
142 (x_session_initialized): Remove definition.
143 (x_initialize): Remove setting of x_session_initialized.
144
145 * xterm.h (x_session_check_input): Remove declaration.
146
a4180391
PE
1472011-02-01 Paul Eggert <eggert@cs.ucla.edu>
148
149 format-time-string now supports subsecond time stamp resolution
150 * editfns.c (emacs_nmemftime): Renamed from emacs_memftimeu,
151 for consistency with its new argument and with gnulib nstrftime.
152 All callers changed. New argument NS.
153 (Fformat_time_string): Check that the time argument's microseconds
154 component, if any, is in range; this avoids integer overflow and
155 also nstrftime needs this. Document %N.
156
14beddf4 1572011-01-31 Andreas Schwab <schwab@linux-m68k.org>
df61c790
AS
158
159 * image.c (DEF_IMGLIB_FN): Add parameter rettype, use it instead
160 of int. All uses adjusted.
161 (PNG_JMPBUF, png_load, jpeg_load, tiff_load, gif_load)
162 (svg_load_image): Remove casts.
163
14beddf4 1642011-01-31 Chong Yidong <cyd@stupidchicken.com>
7f9c5df9
CY
165
166 * image.c (fn_png_longjmp, fn_png_set_longjmp_fn): New png
167 function definitions for compiling with libpng-1.5.
168 (PNG_LONGJMP, PNG_JMPBUF): New macros for libpng-1.5.
169 (my_png_error, png_load): Use them. Suggested by Thomas Klausner
170 (Bug#7908).
171
70b0d280
EZ
1722011-01-31 Eli Zaretskii <eliz@gnu.org>
173
8b3c625b
EZ
174 * s/ms-w32.h (HAVE_STRFTIME): Don't define.
175
70b0d280
EZ
176 * makefile.w32-in (OBJ2): Remove strftime.$(O).
177 ($(BLD)/strftime.$(O)): Remove prerequisites.
178
16fab143
PE
1792011-01-31 Paul Eggert <eggert@cs.ucla.edu>
180
181 src/emacs.c now gets version number from configure.in
182 * emacs.c (emacs_version): Set to VERSION so that it
183 is determined automatically from ../configure.in.
184
546961a9
JM
1852011-01-31 Jim Meyering <meyering@redhat.com>
186
187 * charset.c (load_charset_map): Don't deref NULL on failed malloc.
188 Use xmalloc rather than malloc.
189
42a5b22f
PE
1902011-01-30 Paul Eggert <eggert@cs.ucla.edu>
191
16c3e636
PE
192 strftime: import from gnulib
193 * Makefile.in (obj): Remove strftime.o, as gnulib now does this for us.
194 * deps.mk (strftime.o): Remove.
195 * editfns.c: Include <strftime.h>, supplied by gnulib.
196 (emacs_strftimeu): Remove decl.
197 (emacs_memftimeu): Use nstrftime (the gnulib name) rather than
198 emacs_strftimeu.
199 * config.in: Regenerate.
200 * strftime.c: Remove; we now use strftime from gnulib.
201
42a5b22f
PE
202 Use SSDATA when the context wants char *.
203 * alloc.c, buffer.c, bytecode.c, callproc.c, dired.c:
204 * dispnew.c, doc.c, editfns.c, emacs.c, fileio.c, filelock.c:
205 * fns.c, font.c, frame.c, image.c, indent.c, keyboard.c:
206 * lread.c, minibuf.c, print.c, process.c, search.c, widget.c:
207 * xdisp.c, xfaces.c, xfns.c, xml.c, xselect.c, xterm.c:
208 Use SSDATA (not SDATA) when the context of the expression wants
209 char * (not unsigned char *).
210
2787bba3
JD
2112011-01-30 Jan Djärv <jan.h.d@swipnet.se>
212
213 * .gdbinit: Read global lisp variables as globals.f_V*.
214
4ec88040
AS
2152011-01-30 Andreas Schwab <schwab@linux-m68k.org>
216
217 * font.c (PROP_MATCH): Remove parameter N and use strlen instead.
218 All uses changed.
219 (PROP_SAVE): Likewise.
220
b6bcd048
CY
2212011-01-29 Chong Yidong <cyd@stupidchicken.com>
222
223 * keyboard.c (make_lispy_position): Fix typo in last change
224 (Bug#7935).
225
f915f0f7
EZ
2262011-01-29 Eli Zaretskii <eliz@gnu.org>
227
228 * s/ms-w32.h (HAVE_MKTIME): Remove.
229
230 * makefile.w32-in (LOCAL_FLAGS): Add -I../lib.
231 (GNULIB): New variable.
232 (LIBS): Add $(GNULIB).
233 $(TEMACS): Depend on $(GNULIB).
234 <top-level>: Fix font-lock disrupted by a lone `"'.
235
497a1925
JD
2362011-01-29 Jan Djärv <jan.h.d@swipnet.se>
237
238 * nsselect.m (ns_string_from_pasteboard): Get length of string
239 and use make_string instead of build_string (Bug#7934).
240 (ns_string_to_pasteboard_internal): Use initWithBytesNoCopy
241 instead of stringWithUTF8String (Bug#7934).
242
481ae085
JD
2432011-01-29 Anders Lindgren <andlind@gmail.com> (tiny change)
244
245 * nsfont.m (nsfont_open): Ensure that fonts with inexact
246 descenders would not become one pixel too tall (Bug#7887).
247
6b918613
CY
2482011-01-28 Chong Yidong <cyd@stupidchicken.com>
249
250 * keyboard.c (make_lispy_position): For clicks on right fringe or
251 margin, compute text position using the X coordinate relative to
252 the left of the text area (Bug#7839).
253
9e269017
KH
2542011-01-28 Kenichi Handa <handa@m17n.org>
255
256 * ftfont.c (ftfont_spec_pattern): Check each extra property
257 value.
258
17dd1fc8
SM
2592011-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
260
261 * xdisp.c (safe_eval_handler): Distinguish symbols and strings.
262
372fb76b
CY
2632011-01-27 Chong Yidong <cyd@stupidchicken.com>
264
265 * font.c (font_parse_fcname): Undefine a temporary macro.
266
e7f7fbaa
SM
2672011-01-26 Stefan Monnier <monnier@iro.umontreal.ca>
268
269 Let the debugger continue to the normal handler (bug#7825).
270 * eval.c (maybe_call_debugger): Declare before new use.
271 (find_handler_clause): Don't call debugger any more.
272 Ignore Vstack_trace_on_error.
273 Use XCAR/XCDR.
274 (syms_of_eval): Remove Vstack_trace_on_error.
275 (Fsignal): Only modify handlerlist when we know we need to do it.
276 Call the debugger when necessary.
277 * globals.h (Vstack_trace_on_error): Remove.
278
6608a7d8
CY
2792011-01-26 Chong Yidong <cyd@stupidchicken.com>
280
281 * font.c (font_parse_fcname): Rewrite GTK font name parser.
282
06d8ace5 2832011-01-25 Stefan Monnier <monnier@iro.umontreal.ca>
f996bbcb
SM
284
285 * xdisp.c (handle_fontified_prop): Be careful with font-lock changing
286 the buffer's point-max (bug#7876).
287
06d8ace5 2882011-01-25 Chong Yidong <cyd@stupidchicken.com>
19634648
CY
289
290 * lisp.h (XPNTR): Obey DATA_SEG_BITS in all non-USE_LSB_TAG cases.
06d8ace5 291 Remove unused case (Bug#6811).
19634648 292
8ab70320
JD
2932011-01-23 Jan Djärv <jan.h.d@swipnet.se>
294
295 * nsterm.m (x_set_offset): Set dont_constrain to 0 so the call to
296 setFrameTopLeftPoint is constrained.
297
51b59d79
PE
2982011-01-23 Paul Eggert <eggert@cs.ucla.edu>
299
9055082e
PE
300 Check return values of some library calls.
301 * emacs.c (main): Check dup result.
302 * frame.c: Include <limits.h>, for INT_MIN and INT_MAX.
303 (frame_name_fnn_p): Check strtol result.
304
5c7d01a5 305 * image.c (x_create_bitmap_from_xpm_data): Add cast to fix type clash
f77fabaf
PE
306 when calling XpmCreatePixmapFromData.
307
51b59d79
PE
308 Promote SSDATA macro from gtkutil.c and xsmfns.c to lisp.h.
309 * lisp.h (SSDATA): New macro.
310 All uses of (char *) SDATA (x) replaced with SSDATA (x),
311 and all uses of (unsigned char *) SDATA (x) replaced with SDATA (x).
312 * gtkutil.c (SSDATA): Remove, as lisp.h now defines this.
313 * xsmfns.c (SSDATA): Likewise.
314
e6b84b30
MR
3152011-01-22 Martin Rudalics <rudalics@gmx.at>
316
317 * window.c (select_window): New function.
318 (Fselect_window): Call it.
319 (inhibit_point_swap): Variable deleted.
320 (Fset_window_configuration): Call select_window directly.
321
3fb69558
JD
3222011-01-22 Jan Djärv <jan.h.d@swipnet.se>
323
324 * nsterm.m (constrainFrameRect): Only constrain the first time called.
325
449ab399
JD
3262011-01-21 Jan Djärv <jan.h.d@swipnet.se>
327
e2f79c8d
JD
328 * nsterm.m (x_set_offset, windowDidMove): When calculating y, use first
329 screen, not the window screen.
330 (x_set_window_size): Remove constraints.
331 Calculate origin.y only if zooming is 0 and without referring to a
332 screen.
333 (windowWillResize): Don't modify frameSize.
334 (windowDidBecomeKey, mouseDown): Set dont_constrain to 1.
335 (initFrameFromEmacs): Initialize ns_userRect.
336 (windowShouldZoom): Set zooming to one. Remove all other code.
337 (windowWillUseStandardFrame): Move static ns_userRect to EmacsView.
338 Zero it after restore.
339 (constrainFrameRect): New method for EmacsWindow.
340 (mouseDragged): Always post NSWindowDidResizeNotification after call to
341 windowWillResize.
342
343 * nsterm.h (ns_output): Add dont_constrain and zooming.
344 (EmacsView): Add ns_userRect.
345
449ab399
JD
346 * nsterm.m (keyDown): If ns_right_alternate_modifier is Qleft, check
347 if ns_alternate_modifier is none.
348
e885315d
JD
3492011-01-20 Jan Djärv <jan.h.d@swipnet.se>
350
351 * unexmacosx.c: Add comment about include order.
352
bb1c6663
GM
3532011-01-20 Glenn Morris <rgm@gnu.org>
354
c11136ec
GM
355 * minibuf.c (syms_of_minibuf) <read-expression-history>:
356 Give it a doc string.
357 * globals.h: Add Vread_expression_history.
358
bb1c6663
GM
359 * macros.c (syms_of_macros) <kbd-macro-termination-hook>:
360 Give it a doc string.
361 * globals.h: Add Vkbd_macro_termination_hook.
362
9aea757b
CY
3632011-01-20 Chong Yidong <cyd@stupidchicken.com>
364
365 * fns.c (Fyes_or_no_p): Revert 2011-01-07 change, removing ARGS.
366
e1ef0dac
PE
3672011-01-19 Paul Eggert <eggert@cs.ucla.edu>
368
369 Fix X11 compilation failure.
370 * globals.h (struct emacs_globals): Document f_Vselection_alist.
371 * xselect.c (Vselection_alist): Remove declaration, moving its
372 documentation to globals.h. This fixes a compilation failure
373 induced by the earlier change to globals.h today.
374
fb9d0f5a
JD
3752011-01-19 Jan Djärv <jan.h.d@swipnet.se>
376
8beb828a
JD
377 * unexmacosx.c: Include config.h before unistd.h (Bug#7859).
378
fb9d0f5a
JD
379 * nsterm.m (ns_input_file, ns_input_font, ns_input_fontsize)
380 (ns_input_line, ns_input_color, ns_input_text, ns_working_text)
381 (ns_input_spi_name, ns_input_spi_arg)
382 (ns_alternate_modifier, ns_right_alternate_modifier)
383 (ns_command_modifier, ns_right_command_modifier, ns_control_modifier)
384 (ns_right_control_modifier, ns_function_modifier)
385 (ns_antialias_text, ns_confirm_quit): Move to globals.h.
386 (Vx_toolkit_scroll_bars, x_use_underline_position_properties)
387 (x_underline_at_descent_line): Remove declaration.
388 (syms_of_nsterm): Remove & from DEFVAR_LISP and DEFVAR_BOOL.
389
390 * nsselect.m (Vns_sent_selection_hooks, Vns_lost_selection_hooks
391 (Vselection_alist, Vselection_converter_alist): Move to globals.h.
392 (syms_of_nsselect): Remove & from DEFVAR_LISP.
393
394 * nsmenu.m (Voverriding_local_map, Voverriding_local_map_menu_flag):
395 Remove declaration.
396
397 * nsfont.m (Vns_reg_to_script, ns_antialias_text): Move to
398 globals.h.
399 (syms_of_nsfont): Remove & from DEFVAR_LISP.
400
401 * nsfns.m (Vmenu_bar_mode, Vtool_bar_mode): Remove declaration.
402 (Vns_icon_type_alist, Vns_version_string): Move to globals.h.
403 (syms_of_nsfns): Remove & from DEFVAR_LISP calls.
404
405 * globals.h (struct emacs_globals): Add f_ns_input_file,
406 f_ns_input_font, f_ns_input_fontsize, f_ns_input_line,
407 f_ns_input_color, f_ns_input_text, f_ns_working_text,
408 f_ns_input_spi_name, f_ns_input_spi_arg, f_ns_alternate_modifier,
409 f_ns_right_alternate_modifier, f_ns_command_modifier,
410 f_ns_right_command_modifier, f_ns_control_modifier,
411 f_ns_right_control_modifier, f_ns_function_modifier,
412 f_ns_antialias_text, f_ns_confirm_quit, f_Vns_icon_type_alist,
413 f_Vns_version_string, f_Vns_sent_selection_hooks,
414 f_Vns_lost_selection_hooks, f_Vselection_alist, f_Vns_reg_to_script
415 and corresponding defines.
416
417
4e55715e
SS
4182011-01-19 Sam Steingold <sds@gnu.org>
419
420 * w32.c (check_windows_init_file): Remove declarations of
421 Vwindow_system, Vload_path, Qfile_exists_p to fix compilation.
817a735d 422 * w32fns.c: Fix an error introduced by the previous patch.
4e55715e 423
ef79d2fa
TT
4242011-01-19 Tom Tromey <tromey@redhat.com>
425
426 * window.c: Fix error introduced by previous patch.
427
29208e82
TT
4282011-01-18 Tom Tromey <tromey@parfait>
429
430 * globals.h: New file.
431 * xterm.h (Vx_pixel_size_width_font_regexp): Remove declaration.
432 * window.h (Vinitial_window_system, Vminibuf_scroll_window)
433 (Vwindow_system_version): Remove declaration.
434 * w32term.h (Vw32_enable_palette)
435 (Vx_pixel_size_width_font_regexp): Remove declaration.
436 * w32menu.c (Voverriding_local_map)
437 (Voverriding_local_map_menu_flag): Remove declaration.
438 * w32inevt.c (Vw32_alt_is_meta, Vw32_apps_modifier)
439 (Vw32_capslock_is_shiftlock, Vw32_enable_caps_lock)
440 (Vw32_enable_num_lock, Vw32_lwindow_modifier)
441 (Vw32_pass_lwindow_to_system, Vw32_pass_rwindow_to_system)
442 (Vw32_phantom_key_code, Vw32_recognize_altgr)
443 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
444 (w32_use_full_screen_buffer): Remove declaration.
445 * w32.c (Vsystem_configuration, Vw32_downcase_file_names)
446 (Vw32_generate_fake_inodes, Vw32_get_true_file_attributes)
447 (w32_num_mouse_buttons, w32_pipe_read_delay): Remove declaration.
448 * termopts.h (Vtruncate_partial_width_windows, inverse_video)
449 (no_redraw_on_reenter, visible_bell): Remove declaration.
450 * sysdep.c (Vsystem_name): Remove declaration.
451 * syntax.h (parse_sexp_lookup_properties): Remove declaration.
452 * menu.h (Vmenu_updating_frame): Remove declaration.
453 * macros.h (Vexecuting_kbd_macro, executing_kbd_macro_index):
454 Remove declaration.
455 * lisp.h (Vafter_init_time, Vafter_load_alist)
456 (Vauto_save_list_file_name, Vbefore_init_time, Vcommand_history)
457 (Vcompletion_regexp_list, Vcurrent_load_list)
458 (Vcurrent_prefix_arg, Vdata_directory, Vdebug_on_error)
459 (Vdoc_directory, Vdoc_file_name, Vdynamic_library_alist)
460 (Vexec_directory, Vexec_path, Vexec_suffixes)
461 (Vface_font_rescale_alist, Vface_ignored_fonts, Vfeatures)
462 (Vhelp_form, Vhistory_length, Vinhibit_field_text_motion)
463 (Vinhibit_quit, Vinhibit_read_only, Vinhibit_redisplay)
464 (Vinstallation_directory, Vinvocation_directory)
465 (Vinvocation_name, Vload_file_rep_suffixes, Vload_history)
466 (Vload_suffixes, Vmark_even_if_inactive, Vmemory_full)
467 (Vmessage_log_max, Vobarray, Vprint_length, Vprint_level)
468 (Vpurify_flag, Vquit_flag, Vsaved_region_selection)
469 (Vscalable_fonts_allowed, Vselect_active_regions)
470 (Vshell_file_name, Vstandard_input, Vstandard_output)
471 (Vsystem_name, Vtemporary_file_directory, Vthrow_on_input)
472 (Vtop_level, Vtty_erase_char, Vundo_outer_limit)
473 (Vuser_login_name, Vwindow_scroll_functions)
474 (Vwindow_system_version, Vx_no_window_manager)
475 (Vx_resource_class, Vx_resource_name, baud_rate)
476 (completion_ignore_case, debug_on_next_call, gc_cons_threshold)
477 (history_delete_duplicates, inhibit_x_resources)
478 (last_nonmenu_event, load_in_progress, max_specpdl_size)
479 (minibuffer_auto_raise, print_escape_newlines, scroll_margin)
480 (use_dialog_box, use_file_dialog): Remove declaration. Include
481 globals.h.
482 * keymap.h (Voverriding_local_map)
483 (Voverriding_local_map_menu_flag, meta_prefix_char): Remove
484 declaration.
485 * keyboard.h (Vdouble_click_time, Vfunction_key_map)
486 (Vinput_method_function, Vkey_translation_map)
487 (Vlucid_menu_bar_dirty_flag, Vthis_original_command)
488 (do_mouse_tracking, extra_keyboard_modifiers)
489 (num_nonmacro_input_events): Remove declaration.
490 * intervals.h (Vchar_property_alias_alist)
491 (Vdefault_text_properties, Vinhibit_point_motion_hooks)
492 (Vtext_property_default_nonsticky): Remove declaration.
493 * gtkutil.h (x_gtk_file_dialog_help_text)
494 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
495 (x_gtk_whole_detached_tool_bar): Remove declaration.
496 * frame.h (Vdefault_frame_alist, Vframe_alpha_lower_limit)
497 (Vmenu_bar_mode, Vmouse_highlight, Vterminal_frame)
498 (Vtool_bar_mode, Vx_resource_class, Vx_resource_name)
499 (focus_follows_mouse): Remove declaration.
500 * fontset.h (Valternate_fontname_alist, Vfontset_alias_alist)
501 (Vignore_relative_composition, Votf_script_alist)
502 (Vuse_default_ascent, Vvertical_centering_font_regexp): Remove
503 declaration.
504 * font.h (Vfont_log): Remove declaration.
505 * dosfns.h (Vdos_display_scancodes, Vdos_version)
506 (Vdos_windows_version, dos_codepage, dos_country_code)
507 (dos_decimal_point, dos_hyper_key, dos_keyboard_layout)
508 (dos_keypad_mode, dos_super_key, dos_timezone_offset): Remove
509 declaration.
510 * disptab.h (Vglyph_table, Vstandard_display_table): Remove
511 declaration.
512 * dispextern.h (Vface_remapping_alist, Vglyphless_char_display)
513 (Vmouse_autoselect_window, Voverflow_newline_into_fringe)
514 (Vshow_trailing_whitespace, Vtool_bar_button_margin)
515 (Vtool_bar_style, cursor_in_echo_area, display_hourglass_p)
516 (inverse_video, mode_line_in_non_selected_windows)
517 (tool_bar_button_relief, tool_bar_max_label_size)
518 (underline_minimum_offset)
519 (unibyte_display_via_language_environment, x_stretch_cursor_p):
520 Remove declaration.
521 * composite.h (Vauto_composition_function)
522 (Vcomposition_function_table): Remove declaration.
523 * commands.h (Vexecuting_kbd_macro)
524 (Vminibuffer_local_completion_map)
525 (Vminibuffer_local_filename_completion_map)
526 (Vminibuffer_local_filename_must_match_map)
527 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
528 (Vminibuffer_local_ns_map, Vthis_command)
529 (Vunread_command_events, cursor_in_echo_area)
530 (last_command_event, last_nonmenu_event, unread_command_char):
531 Remove declaration.
532 * coding.h (Vcoding_system_for_read, Vcoding_system_for_write)
533 (Vdefault_file_name_coding_system)
534 (Vdefault_process_coding_system, Vfile_name_coding_system)
535 (Vlast_coding_system_used, Vlocale_coding_system)
536 (Vselect_safe_coding_system_function)
537 (Vtranslation_table_for_input, coding_system_require_warning)
538 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
539 (eol_mnemonic_unix, inherit_process_coding_system): Remove
540 declaration.
541 * charset.h (Vcharset_list, Vcurrent_iso639_language): Remove
542 declaration.
543 * character.h (Vauto_fill_chars, Vchar_direction_table)
544 (Vchar_script_table, Vchar_width_table, Vprintable_chars)
545 (Vscript_representative_chars, Vtranslation_table_vector)
546 (Vunicode_category_table): Remove declaration.
547 * ccl.h (Vfont_ccl_encoder_alist): Remove declaration.
548 * buffer.h (Vafter_change_functions, Vbefore_change_functions)
549 (Vdeactivate_mark, Vfirst_change_hook, Vtransient_mark_mode)
550 (inhibit_modification_hooks): Remove declaration.
551 * xterm.c (syms_of_xterm): Update.
552 (Vx_alt_keysym, Vx_hyper_keysym, Vx_keysym_table)
553 (Vx_meta_keysym, Vx_super_keysym, Vx_toolkit_scroll_bars)
554 (x_mouse_click_focus_ignore_position)
555 (x_underline_at_descent_line)
556 (x_use_underline_position_properties): Remove.
557 * xsmfns.c (syms_of_xsmfns): Update.
558 (Vx_session_id, Vx_session_previous_id): Remove.
559 * xsettings.c (syms_of_xsettings): Update.
560 (Vxft_settings, use_system_font): Remove.
561 * xselect.c (syms_of_xselect): Update.
562 (Vselection_converter_alist, Vx_lost_selection_functions)
563 (Vx_sent_selection_functions, x_selection_timeout): Remove.
564 * xfns.c (syms_of_xfns): Update.
565 (Vgtk_version_string, Vmotif_version_string)
566 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
567 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
568 (Vx_no_window_manager, Vx_nontext_pointer_shape)
569 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
570 (Vx_sensitive_text_pointer_shape)
571 (Vx_window_horizontal_drag_shape, x_gtk_file_dialog_help_text)
572 (x_gtk_show_hidden_files, x_gtk_use_old_file_dialog)
573 (x_gtk_use_system_tooltips, x_gtk_whole_detached_tool_bar):
574 Remove.
575 * xfaces.c (syms_of_xfaces): Update.
576 (Vface_default_stipple, Vface_font_rescale_alist)
577 (Vface_ignored_fonts, Vface_new_frame_defaults)
578 (Vface_remapping_alist, Vfont_list_limit)
579 (Vscalable_fonts_allowed, Vtty_defined_color_alist): Remove.
580 * xdisp.c (syms_of_xdisp): Update.
581 (Vauto_resize_tool_bars, Vblink_cursor_alist)
582 (Vdisplay_pixels_per_inch, Vfontification_functions)
583 (Vframe_title_format, Vglobal_mode_string)
584 (Vglyphless_char_display, Vhourglass_delay, Vhscroll_step)
585 (Vicon_title_format, Vinhibit_redisplay)
586 (Vline_number_display_limit, Vline_prefix)
587 (Vmax_mini_window_height, Vmenu_bar_update_hook)
588 (Vmenu_updating_frame, Vmessage_log_max)
589 (Vmouse_autoselect_window, Vnobreak_char_display)
590 (Voverlay_arrow_position, Voverlay_arrow_string)
591 (Voverlay_arrow_variable_list, Vredisplay_end_trigger_functions)
592 (Vresize_mini_windows, Vshow_trailing_whitespace)
593 (Vtool_bar_border, Vtool_bar_button_margin, Vtool_bar_style)
594 (Vtruncate_partial_width_windows, Vvoid_text_area_pointer)
595 (Vwindow_scroll_functions, Vwindow_size_change_functions)
596 (Vwindow_text_change_functions, Vwrap_prefix)
597 (auto_raise_tool_bar_buttons_p, automatic_hscrolling_p)
598 (debug_end_pos, display_hourglass_p, emacs_scroll_step)
599 (highlight_nonselected_windows, hscroll_margin)
600 (inhibit_eval_during_redisplay, inhibit_free_realized_faces)
601 (inhibit_menubar_update, inhibit_try_cursor_movement)
602 (inhibit_try_window_id, inhibit_try_window_reusing)
603 (line_number_display_limit_width)
604 (make_cursor_line_fully_visible_p, message_truncate_lines)
605 (mode_line_inverse_video, multiple_frames, overline_margin)
606 (scroll_conservatively, scroll_margin, tool_bar_button_relief)
607 (tool_bar_max_label_size, underline_minimum_offset)
608 (unibyte_display_via_language_environment, x_stretch_cursor_p):
609 Remove.
610 * window.c (syms_of_window): Update.
611 (Vminibuf_scroll_window, Vother_window_scroll_buffer)
612 (Vrecenter_redisplay, Vscroll_preserve_screen_position)
613 (Vtemp_buffer_show_function, Vwindow_configuration_change_hook)
614 (Vwindow_point_insertion_type, auto_window_vscroll_p)
615 (mode_line_in_non_selected_windows, next_screen_context_lines)
616 (window_min_height, window_min_width): Remove.
617 (scroll_margin): Remove declaration.
618 * w32term.c (syms_of_w32term): Update.
619 (Vw32_capslock_is_shiftlock, Vw32_grab_focus_on_raise)
620 (Vw32_recognize_altgr, Vw32_swap_mouse_buttons)
621 (Vx_toolkit_scroll_bars, w32_num_mouse_buttons)
622 (w32_use_visible_system_caret, x_underline_at_descent_line)
623 (x_use_underline_position_properties): Remove.
624 (Vcommand_line_args, Vsystem_name, extra_keyboard_modifiers):
625 Remove declaration.
626 * w32select.c (syms_of_w32select): Update.
627 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
628 * w32proc.c (syms_of_ntproc): Update.
629 (Vw32_downcase_file_names, Vw32_generate_fake_inodes)
630 (Vw32_get_true_file_attributes, Vw32_quote_process_args)
631 (Vw32_start_process_inherit_error_mode)
632 (Vw32_start_process_share_console)
633 (Vw32_start_process_show_window, w32_pipe_read_delay): Remove.
634 (Vsystem_name): Remove declaration.
635 * w32font.c (syms_of_w32font): Update.
636 (Vw32_charset_info_alist): Remove.
637 * w32fns.c (globals_of_w32fns, syms_of_w32fns): Update.
638 (Vw32_alt_is_meta, Vw32_apps_modifier, Vw32_bdf_filename_alist)
639 (Vw32_color_map, Vw32_enable_caps_lock, Vw32_enable_num_lock)
640 (Vw32_enable_palette, Vw32_lwindow_modifier)
641 (Vw32_pass_alt_to_system, Vw32_pass_lwindow_to_system)
642 (Vw32_pass_rwindow_to_system, Vw32_phantom_key_code)
643 (Vw32_rwindow_modifier, Vw32_scroll_lock_modifier)
644 (Vx_cursor_fore_pixel, Vx_hourglass_pointer_shape)
645 (Vx_max_tooltip_size, Vx_mode_pointer_shape)
646 (Vx_no_window_manager, Vx_nontext_pointer_shape)
647 (Vx_pixel_size_width_font_regexp, Vx_pointer_shape)
648 (Vx_sensitive_text_pointer_shape)
649 (Vx_window_horizontal_drag_shape, w32_ansi_code_page)
650 (w32_enable_synthesized_fonts, w32_mouse_button_tolerance)
651 (w32_mouse_move_interval)
652 (w32_pass_extra_mouse_buttons_to_system)
653 (w32_pass_multimedia_buttons_to_system, w32_quit_key)
654 (w32_strict_fontnames, w32_strict_painting): Remove.
655 (Vhourglass_delay, Vmenu_bar_mode, Vtool_bar_mode)
656 (Vw32_recognize_altgr, Vwindow_system_version)
657 (w32_num_mouse_buttons, w32_use_visible_system_caret): Remove
658 declaration.
659 * w32console.c (syms_of_ntterm): Update.
660 (w32_use_full_screen_buffer): Remove.
661 (Vtty_defined_color_alist): Remove declaration.
662 * w16select.c (syms_of_win16select): Update.
663 (Vnext_selection_coding_system, Vselection_coding_system): Remove.
664 * undo.c (syms_of_undo): Update.
665 (Vundo_outer_limit, Vundo_outer_limit_function)
666 (undo_inhibit_record_point, undo_limit, undo_strong_limit):
667 Remove.
668 * textprop.c (syms_of_textprop): Update.
669 (Vchar_property_alias_alist, Vdefault_text_properties)
670 (Vinhibit_point_motion_hooks, Vtext_property_default_nonsticky):
671 Remove.
672 * terminal.c (syms_of_terminal): Update.
673 (Vdelete_terminal_functions, Vring_bell_function): Remove.
674 * term.c (syms_of_term): Update.
675 (Vresume_tty_functions, Vsuspend_tty_functions)
676 (no_redraw_on_reenter, system_uses_terminfo, visible_cursor):
677 Remove.
678 * syntax.c (syms_of_syntax): Update.
679 (Vfind_word_boundary_function_table, multibyte_syntax_as_symbol)
680 (open_paren_in_column_0_is_defun_start)
681 (parse_sexp_ignore_comments, parse_sexp_lookup_properties)
682 (words_include_escapes): Remove.
683 * search.c (syms_of_search): Update.
684 (Vinhibit_changing_match_data, Vsearch_spaces_regexp): Remove.
685 * process.c (syms_of_process): Update.
686 (Vprocess_adaptive_read_buffering, Vprocess_connection_type)
687 (delete_exited_processes): Remove.
688 * print.c (syms_of_print): Update.
689 (Vfloat_output_format, Vprint_charset_text_property)
690 (Vprint_circle, Vprint_continuous_numbering, Vprint_gensym)
691 (Vprint_length, Vprint_level, Vprint_number_table)
692 (Vstandard_output, print_escape_multibyte)
693 (print_escape_newlines, print_escape_nonascii, print_quoted):
694 Remove.
695 * msdos.c (syms_of_msdos): Update.
696 (Vdos_unsupported_char_glyph): Remove.
697 (unibyte_display_via_language_environment): Remove declaration.
698 * minibuf.c (syms_of_minibuf): Update.
699 (Vcompletion_regexp_list, Vhistory_add_new_input)
700 (Vhistory_length, Vminibuffer_completing_file_name)
701 (Vminibuffer_completion_confirm)
702 (Vminibuffer_completion_predicate, Vminibuffer_completion_table)
703 (Vminibuffer_exit_hook, Vminibuffer_help_form)
704 (Vminibuffer_history_position, Vminibuffer_history_variable)
705 (Vminibuffer_prompt_properties, Vminibuffer_setup_hook)
706 (Vread_buffer_function, Vread_expression_map)
707 (completion_ignore_case, enable_recursive_minibuffers)
708 (history_delete_duplicates, minibuffer_allow_text_properties)
709 (minibuffer_auto_raise, read_buffer_completion_ignore_case):
710 Remove.
711 * marker.c (syms_of_marker): Update.
712 (byte_debug_flag): Remove.
713 * macros.c (syms_of_macros): Update.
714 (Vexecuting_kbd_macro, executing_kbd_macro_index): Remove.
715 * lread.c (syms_of_lread): Update.
716 (Vafter_load_alist, Vbyte_boolean_vars)
717 (Vbytecomp_version_regexp, Vcurrent_load_list)
718 (Veval_buffer_list, Vload_file_name, Vload_file_rep_suffixes)
719 (Vload_history, Vload_path, Vload_read_function)
720 (Vload_source_file_function, Vload_suffixes, Vobarray)
721 (Vold_style_backquotes, Vpreloaded_file_list, Vread_circle)
722 (Vread_symbol_positions_list, Vread_with_symbol_positions)
723 (Vsource_directory, Vstandard_input, Vuser_init_file, Vvalues)
724 (force_load_messages, load_convert_to_unibyte)
725 (load_dangerous_libraries, load_force_doc_strings)
726 (load_in_progress): Remove.
727 * keymap.c (syms_of_keymap): Update.
728 (Vdefine_key_rebound_commands, Vemulation_mode_map_alists)
729 (Vminibuffer_local_completion_map)
730 (Vminibuffer_local_filename_completion_map)
731 (Vminibuffer_local_filename_must_match_map)
732 (Vminibuffer_local_map, Vminibuffer_local_must_match_map)
733 (Vminibuffer_local_ns_map, Vminor_mode_map_alist)
734 (Vminor_mode_overriding_map_alist, Vwhere_is_preferred_modifier):
735 Remove.
736 * keyboard.c (syms_of_keyboard): Update.
737 (Vauto_save_timeout, Vcommand_error_function)
738 (Vcommand_hook_internal, Vdeactivate_mark)
739 (Vdeferred_action_function, Vdeferred_action_list)
740 (Vdisable_point_adjustment, Vdouble_click_time)
741 (Vecho_keystrokes, Venable_disabled_menus_and_buttons)
742 (Vfunction_key_map, Vglobal_disable_point_adjustment)
743 (Vhelp_char, Vhelp_event_list, Vhelp_form)
744 (Vinput_method_function, Vinput_method_previous_message)
745 (Vkey_translation_map, Vlast_event_frame)
746 (Vlucid_menu_bar_dirty_flag, Vmenu_bar_final_items)
747 (Vminibuffer_message_timeout, Voverriding_local_map)
748 (Voverriding_local_map_menu_flag, Vpost_command_hook)
749 (Vpre_command_hook, Vprefix_help_command)
750 (Vsaved_region_selection, Vselect_active_regions)
751 (Vshow_help_function, Vspecial_event_map, Vsuggest_key_bindings)
752 (Vthis_command, Vthis_command_keys_shift_translated)
753 (Vthis_original_command, Vthrow_on_input, Vtimer_idle_list)
754 (Vtimer_list, Vtool_bar_separator_image_expression, Vtop_level)
755 (Vtty_erase_char, Vunread_command_events)
756 (Vunread_input_method_events, Vunread_post_input_method_events)
757 (auto_save_interval, cannot_suspend, do_mouse_tracking)
758 (double_click_fuzz, extra_keyboard_modifiers)
759 (inhibit_local_menu_bar_menus, last_command_event)
760 (last_input_event, last_nonmenu_event, menu_prompt_more_char)
761 (menu_prompting, meta_prefix_char, num_input_keys)
762 (num_nonmacro_input_events, polling_period, unread_command_char):
763 Remove.
764 * insdel.c (syms_of_insdel): Update.
765 (Vcombine_after_change_calls, check_markers_debug_flag): Remove.
766 * indent.c (syms_of_indent): Update.
767 (indent_tabs_mode): Remove.
768 * image.c (syms_of_image): Update.
769 (Vimage_cache_eviction_delay, Vimage_types)
770 (Vimagemagick_render_type, Vmax_image_size, Vx_bitmap_file_path)
771 (cross_disabled_images): Remove.
772 * fringe.c (syms_of_fringe): Update.
773 (Vfringe_bitmaps, Voverflow_newline_into_fringe): Remove.
774 * frame.c (syms_of_frame): Update.
775 (Vdefault_frame_alist, Vdefault_frame_scroll_bars)
776 (Vdelete_frame_functions, Vframe_alpha_lower_limit)
777 (Vmake_pointer_invisible, Vmenu_bar_mode, Vmouse_highlight)
778 (Vmouse_position_function, Vterminal_frame, Vtool_bar_mode)
779 (Vx_resource_class, Vx_resource_name, focus_follows_mouse):
780 Remove.
781 * fontset.c (syms_of_fontset): Update.
782 (Valternate_fontname_alist, Vfont_encoding_charset_alist)
783 (Vfontset_alias_alist, Vignore_relative_composition)
784 (Votf_script_alist, Vuse_default_ascent)
785 (Vvertical_centering_font_regexp): Remove.
786 * font.c (syms_of_font): Update.
787 (Vfont_encoding_alist, Vfont_log, Vfont_slant_table)
788 (Vfont_weight_table, Vfont_width_table): Remove.
789 * fns.c (syms_of_fns): Update.
790 (Vfeatures, use_dialog_box, use_file_dialog): Remove.
791 * filelock.c (syms_of_filelock): Update.
792 (Vtemporary_file_directory): Remove.
793 * fileio.c (syms_of_fileio): Update.
794 (Vafter_insert_file_functions, Vauto_save_include_big_deletions)
795 (Vauto_save_list_file_name, Vauto_save_visited_file_name)
796 (Vdefault_file_name_coding_system, Vfile_name_coding_system)
797 (Vfile_name_handler_alist, Vinhibit_file_name_handlers)
798 (Vinhibit_file_name_operation, Vset_auto_coding_function)
799 (Vwrite_region_annotate_functions)
800 (Vwrite_region_annotations_so_far)
801 (Vwrite_region_post_annotation_function)
802 (delete_by_moving_to_trash, write_region_inhibit_fsync): Remove.
803 (Vw32_get_true_file_attributes): Remove declaration.
804 * eval.c (syms_of_eval): Update.
805 (Vdebug_ignored_errors, Vdebug_on_error, Vdebug_on_signal)
806 (Vdebugger, Vinhibit_quit, Vmacro_declaration_function)
807 (Vquit_flag, Vsignal_hook_function, Vstack_trace_on_error)
808 (debug_on_next_call, debug_on_quit, debugger_may_continue)
809 (max_lisp_eval_depth, max_specpdl_size): Remove.
810 * emacs.c (syms_of_emacs): Update.
811 (Vafter_init_time, Vbefore_init_time, Vcommand_line_args)
812 (Vdynamic_library_alist, Vemacs_copyright, Vemacs_version)
813 (Vinstallation_directory, Vinvocation_directory)
814 (Vinvocation_name, Vkill_emacs_hook, Vpath_separator)
815 (Vprevious_system_messages_locale, Vprevious_system_time_locale)
816 (Vsystem_configuration, Vsystem_configuration_options)
817 (Vsystem_messages_locale, Vsystem_time_locale, Vsystem_type)
818 (inhibit_x_resources, noninteractive1): Remove.
819 * editfns.c (syms_of_editfns): Update.
820 (Vbuffer_access_fontified_property)
821 (Vbuffer_access_fontify_functions, Vinhibit_field_text_motion)
822 (Voperating_system_release, Vsystem_name, Vuser_full_name)
823 (Vuser_login_name, Vuser_real_login_name): Remove.
824 * dosfns.c (syms_of_dosfns): Update.
825 (Vdos_display_scancodes, Vdos_version, Vdos_windows_version)
826 (dos_codepage, dos_country_code, dos_decimal_point)
827 (dos_hyper_key, dos_keyboard_layout, dos_keypad_mode)
828 (dos_super_key, dos_timezone_offset): Remove.
829 * doc.c (syms_of_doc): Update.
830 (Vbuild_files, Vdoc_file_name): Remove.
831 * dispnew.c (syms_of_display): Update.
832 (Vglyph_table, Vinitial_window_system)
833 (Vredisplay_preemption_period, Vstandard_display_table)
834 (Vwindow_system_version, baud_rate, cursor_in_echo_area)
835 (inverse_video, redisplay_dont_pause, visible_bell): Remove.
836 * dired.c (syms_of_dired): Update.
837 (Vcompletion_ignored_extensions): Remove.
838 (Vw32_get_true_file_attributes): Remove declaration.
839 * dbusbind.c (syms_of_dbusbind): Update.
840 (Vdbus_debug, Vdbus_registered_buses)
841 (Vdbus_registered_objects_table): Remove.
842 * data.c (syms_of_data): Update.
843 (Vmost_negative_fixnum, Vmost_positive_fixnum): Remove.
844 * composite.c (syms_of_composite): Update.
845 (Vauto_composition_function, Vauto_composition_mode)
846 (Vcompose_chars_after_function, Vcomposition_function_table):
847 Remove.
848 * coding.c (syms_of_coding): Update.
849 (Vcharset_revision_table, Vcoding_category_list)
850 (Vcoding_system_alist, Vcoding_system_for_read)
851 (Vcoding_system_for_write, Vcoding_system_list)
852 (Vdefault_process_coding_system, Venable_character_translation)
853 (Vfile_coding_system_alist, Vlast_code_conversion_error)
854 (Vlast_coding_system_used, Vlatin_extra_code_table)
855 (Vlocale_coding_system, Vnetwork_coding_system_alist)
856 (Vprocess_coding_system_alist)
857 (Vselect_safe_coding_system_function)
858 (Vstandard_translation_table_for_decode)
859 (Vstandard_translation_table_for_encode)
860 (Vtranslation_table_for_input, coding_system_require_warning)
861 (eol_mnemonic_dos, eol_mnemonic_mac, eol_mnemonic_undecided)
862 (eol_mnemonic_unix, inherit_process_coding_system)
863 (inhibit_eol_conversion, inhibit_iso_escape_detection)
864 (inhibit_null_byte_detection): Remove.
865 * cmds.c (syms_of_cmds): Update.
866 (Vpost_self_insert_hook): Remove.
867 * charset.c (syms_of_charset): Update.
868 (Vcharset_list, Vcharset_map_path, Vcurrent_iso639_language)
869 (inhibit_load_charset_map): Remove.
870 * character.c (syms_of_character): Update.
871 (Vauto_fill_chars, Vchar_direction_table, Vchar_script_table)
872 (Vchar_width_table, Vprintable_chars)
873 (Vscript_representative_chars, Vtranslation_table_vector)
874 (Vunicode_category_table): Remove.
875 * ccl.c (syms_of_ccl): Update.
876 (Vcode_conversion_map_vector, Vfont_ccl_encoder_alist)
877 (Vtranslation_hash_table_vector): Remove.
878 * category.c (syms_of_category): Update.
879 (Vword_combining_categories, Vword_separating_categories): Remove.
880 * callproc.c (syms_of_callproc): Update.
881 (Vconfigure_info_directory, Vdata_directory, Vdoc_directory)
882 (Vexec_directory, Vexec_path, Vexec_suffixes)
883 (Vinitial_environment, Vprocess_environment)
884 (Vshared_game_score_directory, Vshell_file_name): Remove.
885 * callint.c (syms_of_callint): Update.
886 (Vcommand_debug_status, Vcommand_history, Vcurrent_prefix_arg)
887 (Vmark_even_if_inactive, Vmouse_leave_buffer_hook): Remove.
888 * bytecode.c (syms_of_bytecode): Update.
889 (Vbyte_code_meter, byte_metering_on): Remove.
890 * buffer.c (syms_of_buffer): Update.
891 (Vafter_change_functions, Vbefore_change_functions)
892 (Vchange_major_mode_hook, Vfirst_change_hook)
893 (Vinhibit_read_only, Vkill_buffer_query_functions)
894 (Vtransient_mark_mode, inhibit_modification_hooks): Remove.
895 * alloc.c (syms_of_alloc): Update.
896 (Vgc_cons_percentage, Vgc_elapsed, Vmemory_full)
897 (Vmemory_signal_data, Vpost_gc_hook, Vpurify_flag)
898 (cons_cells_consed, floats_consed, garbage_collection_messages)
899 (gc_cons_threshold, gcs_done, intervals_consed)
900 (misc_objects_consed, pure_bytes_used, string_chars_consed)
901 (strings_consed, symbols_consed, vector_cells_consed): Remove.
902
903 * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
904 (DEFVAR_INT): Assume global is in `globals'.
905 * alloc.c (globals): Define.
906
448c0820
TT
9072011-01-18 Tom Tromey <tromey@redhat.com>
908
909 * image.c (Vimagemagick_render_type): Remove redundant
910 definition.
911
8442d95d
TT
9122011-01-18 Tom Tromey <tromey@redhat.com>
913
914 * xdisp.c (emacs_scroll_step): Rename from scroll_step.
915 (try_scrolling): Rename argument to 'arg_scroll_conservatively'.
916 (redisplay_window): Update.
917 (syms_of_xdisp): Update.
918
cab0ba98
TT
9192011-01-18 Tom Tromey <tromey@redhat.com>
920
921 * gtkutil.h (x_gtk_use_old_file_dialog, x_gtk_show_hidden_files)
922 (x_gtk_file_dialog_help_text, x_gtk_whole_detached_tool_bar):
923 Declare.
924 * gtkutil.c (xg_uses_old_file_dialog):
925 (xg_get_file_with_chooser):
926 (xg_tool_bar_detach_callback): Don't redeclare globals.
927
422745d0
TT
9282011-01-18 Tom Tromey <tromey@redhat.com>
929
930 * lisp.h (DEFVAR_BUFFER_DEFAULTS): New macro.
931 * buffer.c (syms_of_buffer): Use DEFVAR_BUFFER_DEFAULTS.
932
7cae64b4
PE
9332011-01-18 Paul Eggert <eggert@cs.ucla.edu>
934
935 * lisp.h (DECL_ALIGN): Define if HAVE_ATTRIBUTE_ALIGNED, not if
936 defined __GNUC__. ../configure now checks for this GCC feature,
937 which is now also supported by IBM and Oracle compilers.
938 (USE_LSB_TAG) [defined DECL_ALIGN]: Also define if defined __sun,
939 since Solaris malloc returns mult-of-8.
940
a9faac5c 9412011-01-18 Stefan Monnier <monnier@iro.umontreal.ca>
0514b4be
SM
942
943 * image.c (syms_of_image): Don't access XSYMBOL's internals directly.
944
a3e44e79 9452011-01-17 Paul Eggert <eggert@cs.ucla.edu>
fa2c4f56 946
6e8e6bf2
PE
947 Give a name FLOAT_TO_STRING_BUFSIZE to the constant 350.
948 * lisp.h (FLOAT_TO_STRING_BUFSIZE): New macro.
949 * data.c (Fnumber_to_string): Use it.
950 * print.c (float_to_string, print_object): Likewise.
951
4004364e
PE
952 Include <unistd.h> unilaterally.
953 * alloc.c, atimer.c, buffer.c, callproc.c, dired.c, dispnew.c, doc.c:
954 * doprnt.c, editfns.c, emacs.c, fileio.c, filelock.c, fns.c:
955 * getloadavg.c, getpagesize.h, gmalloc.c, image.c, keyboard.c:
956 * lread.c, process.c, process.h, ralloc.c, regex.c, sysdep.c:
957 * systty.h, term.c, termcap.c, xfns.c, xrdb.c, xselect.c, xsmfns.c:
958 * xterm.c:
959 Include <unistd.h> without worrying about HAVE_UNISTD_H, since
960 unistd.h is always present now, possibly supplied by gnulib.
961
e84aba69
PE
962 * mktime.c: Remove; moving to ../lib.
963
1e11dbe3
PE
964 Use gnulib's mktime module.
965 * deps.mk (mktime.o): Remove rule.
966
fa2c4f56
PE
967 Use gnulib's ftoastr module.
968 * print.c: Include ftoastr.h.
969 (FLT_RADIX, DBL_MANT_DIG, DBL_DIG, DBL_MIN, DOUBLE_DIGITS_BOUND):
970 Remove; no longer needed.
971 (float_to_string): Use dtoastr rather than rolling our own code,
972 which had an off-by-one bug on non-IEEE hosts.
973
9a514d4a
PE
974 Automate syncing from gnulib.
975 * Makefile.in (lib): New macro.
976 (ALL_CFLAGS): Add -I$(lib) -I$(srcdir)/../lib.
977 ($(lib)/libgnu.a): New rule.
978 (temacs$(EXEEXT)): Also link $(lib)/libgnu.a.
979
717c30e0
PE
980 * xfns.c (x_real_positions): Fix signedness of local var 'ign'.
981 XGetGeometry wants unsigned int *, not int *, for its last 4 args,
982 so change the type of 'ign' to unsigned int from int.
983
8865d794
PE
984 * regex.c (analyse_first): Remove unreachable 'continue' statement.
985
4ef36a7b
PE
986 * xterm.h (struct x_display_info): Remove stray semicolon.
987 The extra semicolon didn't conform to the C standard.
988 Problem reported by Sun cc.
989
6df4097e
PE
990 * lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
991 These changes make compilation easier to follow with Sun cc.
992 (ARRAY_MARK_FLAG): Make it signed, so that it can be assigned to
993 EMACS_INT values without provoking overflow diagnostics.
994 (PSEUDOVECTOR_FLAG): Likewise, for consistency.
995 (XSET) [! USE_LSB_TAG]: Use unsigned left shift to avoid overflow
996 diagnostic with signed left shift.
9fba3563 997
410ed5c3
PE
998 * fileio.c (make_temp_name): Remove unreachable code.
999
97be3ce3
PE
1000 * fontset.c (free_realized_fontset): Mark unreachable code with if (0).
1001 Previously it was marked by preceding it with "return;", but
1002 Sun cc complains about this.
1003
9fba3563
PE
1004 * coding.c (decode_coding_emacs_mule): Remove unreachable code.
1005 This is a typo left over from 2009-03-06T07:51:52Z!handa@m17n.org,
1006 which fixed Bug#2370. Caught by Sun cc.
1007
6dc1d2d3
MR
10082011-01-15 Martin Rudalics <rudalics@gmx.at>
1009
1010 * window.c (inhibit_point_swap): New variable.
1011 (Fselect_window): If inhibit_point_swap is nonzero, avoid swapping
1012 point this time.
1013 (Fset_window_configuration): Set inhibit_point_swap to 1 instead
1014 of setting selected_window to nil (Bug#7728).
1015
f853f599
TH
10162011-01-11 Tassilo Horn <tassilo@member.fsf.org>
1017
8dabbfd6
SM
1018 * image.c (imagemagick_load_image, Finit_image_library):
1019 Free intermediate image after creating a MagickWand from it.
1020 Terminate MagickWand environment after image loading.
f853f599 1021
2bc92a93
MA
10222011-01-10 Michael Albinus <michael.albinus@gmx.de>
1023
1024 * dbusbind.c (Fdbus_register_service): Raise an error in case of
1025 unexpected return values.
1026 (Fdbus_register_method): Remove connection initialization.
1027
10282011-01-10 Jan Moringen <jan.moringen@uni-bielefeld.de>
5b83ba18
MA
1029
1030 * dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
1031 used by Fdbus_register_service.
1032 (QCdbus_request_name_replace_existing): Likewise.
1033 (QCdbus_request_name_do_not_queue): Likewise.
1034 (QCdbus_request_name_reply_primary_owner): Likewise.
1035 (QCdbus_request_name_reply_in_queue): Likewise.
1036 (QCdbus_request_name_reply_exists): Likewise.
1037 (QCdbus_request_name_reply_already_owner): Likewise.
1038 (Fdbus_register_service): New function.
1039 (Fdbus_register_method): Use Fdbus_register_service to do the name
1040 registration.
1041 (syms_of_dbusbind): Add symbols dbus-register-service,
1042 :allow-replacement, :replace-existing, :do-not-queue,
1043 :primary-owner, :existing, :in-queue and :already-owner.
1044
21a76236
CY
10452011-01-09 Chong Yidong <cyd@stupidchicken.com>
1046
1047 * gtkutil.c (update_frame_tool_bar): Don't advance tool-bar index
1048 when removing extra buttons.
1049
3d91e302
CY
10502011-01-08 Chong Yidong <cyd@stupidchicken.com>
1051
1052 * fns.c (Fyes_or_no_p): Doc fix.
1053
0d23ffb5
AS
10542011-01-08 Andreas Schwab <schwab@linux-m68k.org>
1055
1056 * fns.c (Fyes_or_no_p): Add usage.
1057
9dc3366b
GM
10582011-01-08 Glenn Morris <rgm@gnu.org>
1059
d0981f82
GM
1060 * makefile.w32-in ($(EMACS)):
1061 * Makefile.in (emacs$(EXEEXT)): -batch implies -q.
1062
9dc3366b
GM
1063 * xdisp.c (syms_of_xdisp) <Qrisky_local_variable>: Move from here...
1064 * emacs.c (syms_of_emacs) <Qrisky_local_variable>: ...to here.
1065
466cbae9
AS
10662011-01-07 Andreas Schwab <schwab@linux-m68k.org>
1067
1068 * image.c (imagemagick_load_image): Fix some resource leaks and
1069 error handling.
1070
8c51d2a2
CY
10712011-01-07 Chong Yidong <cyd@stupidchicken.com>
1072
1073 * fns.c (Fyes_or_no_p): Accept format string args.
1074
66b7b0fe
GM
10752011-01-07 Glenn Morris <rgm@gnu.org>
1076
1077 * emacs.c (no_site_lisp): New int.
1078 (USAGE1): Add --no-site-lisp, mention -Q uses it.
1079 (main): Set no_site_lisp.
1080 (standard_args): Add --no-site-lisp.
1081 * lisp.h (no_site_lisp): New int.
1082 * lread.c (init_lread): If no_site_lisp, don't re-add site-lisp
1083 directories to Vload_path.
1084
2018939f
AS
10852011-01-05 Andreas Schwab <schwab@linux-m68k.org>
1086
1087 * alloc.c (mark_stack): Use __builtin_unwind_init if available.
1088
6ed843e5
MA
10892011-01-04 Jan Moringen <jan.moringen@uni-bielefeld.de>
1090
8dabbfd6 1091 * dbusbind.c (Fdbus_register_method): Add optional parameter
6ed843e5
MA
1092 dont_register_service. Updated docstring accordingly.
1093
3f9b7090
GM
10942011-01-04 Glenn Morris <rgm@gnu.org>
1095
1096 * emacs.c (emacs_copyright): Update short copyright year to 2011.
1097
d82bce4a
EZ
10982011-01-03 Eli Zaretskii <eliz@gnu.org>
1099
1100 * image.c (png_jmpbuf): Remove definition.
1101 (my_png_error, png_load): Don't use png_jmpbuf.
1102
7c420169
CY
11032011-01-02 Eli Zaretskii <eliz@gnu.org>
1104
1105 * keyboard.c (Vselect_active_regions): Doc fix. (Bug#7702)
1106
11072011-01-02 Eli Zaretskii <eliz@gnu.org>
5be1c984
EZ
1108
1109 * image.c <Qlibpng_version>: New variable.
1110 (syms_of_image): Intern and staticpro it. Set its value to the
1111 version of PNG library we were compiled with.
1112 (my_png_error, png_load): Avoid GCC warnings about direct access
1113 to png_ptr->jmpbuf. (Bug#7716)
18da2e74
EZ
1114 (png_jmpbuf): New macro.
1115 (my_png_error, png_load): Use it instead of #ifdef'ing according
1116 to PNG_LIBPNG_VER_MAJOR and PNG_LIBPNG_VER_MINOR.
5be1c984 1117
7c420169 11182011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
cf07311b
SM
1119
1120 * .gdbinit (xgetptr): Fix the union+lsb case.
1121 (xbacktrace): Fix the union case.
1122
7c420169 11232011-01-02 Stefan Monnier <monnier@iro.umontreal.ca>
794b75c7
SM
1124
1125 * window.c (Fmove_to_window_line): Avoid abort when called in a buffer
1126 different from selected-window's.
1127
7c420169 11282011-01-02 Eli Zaretskii <eliz@gnu.org>
2e4ab211 1129
71fe378d
EZ
1130 * keyboard.c (parse_menu_item): Prepend " " to the key sequence
1131 equivalent of a menu item when the key sequence is given by the
1132 `:keys' attribute. (Bug#7662)
1133
2e4ab211
EZ
1134 * xdisp.c (Fformat_mode_line): Doc fix: no need to state that only
1135 the basic faces are supported.
1136
7c420169 11372011-01-02 Jan Djärv <jan.h.d@swipnet.se>
84595ff0
JD
1138
1139 * xterm.c (x_check_fullscreen): Fix pixel/character mixup.
1140
7c420169 11412011-01-02 Eli Zaretskii <eliz@gnu.org>
30d621a2
EZ
1142
1143 * xdisp.c (Fformat_mode_line): Fix last change.
1144
7c420169 11452011-01-02 Chong Yidong <cyd@stupidchicken.com>
4bf3e46e
CY
1146
1147 * xdisp.c (Fformat_mode_line): Restrict the FACE argument to basic
1148 faces (Bug#7587).
1149
7c420169 11502011-01-02 Eli Zaretskii <eliz@gnu.org>
1b2a627f
EZ
1151
1152 * fileio.c (Fexpand_file_name): One more doc fix.
1153
3afff00e
CY
11542011-01-01 Chong Yidong <cyd@stupidchicken.com>
1155
1156 * gtkutil.c (xg_get_tool_bar_widgets): Use NULL for a missing
1157 image or label in the container.
1158 (xg_make_tool_item): Replace VERT_ONLY arg with HORIZ, TEXT_IMAGE.
1159 (xg_show_toolbar_item): Function deleted.
1160 (xg_tool_item_stale_p): New function.
1161 (update_frame_tool_bar): Calculate tool-bar style once per call.
1162 Instead of hiding text labels, omit them. Don't use
1163 xg_show_toolbar_item; create new GtkToolItems from scratch if
1164 necessary, instead of trying to re-use them. This avoids an
1165 annoying animation when changing tool-bars.
1166
aeb7e951
JD
11672010-12-31 Jan Djärv <jan.h.d@swipnet.se>
1168
1169 * nsfns.m (ns_set_name_as_filename): Always use buffer name for
1170 title and buffer filename only for RepresentedFilename.
1171 Handle bad UTF-8 in buffer name (Bug#7517).
1172
5bbb4727
JD
11732010-12-30 Jan Djärv <jan.h.d@swipnet.se>
1174
1175 * coding.h (ENCODE_UTF_8): Remove "Used by ..." comment.
1176
1177 * nsfns.m (ns_set_name_iconic): Remove.
1178 (ns_set_name_internal): New function (Bug#7517).
1179 (Vicon_title_format): Extern declare.
1180 (ns_set_name): Call ns_set_name_internal.
1181 (x_explicitly_set_name): Remove call to ns_set_name_iconic.
1182 (x_implicitly_set_name): Ditto.
1183 (x_set_title): Remove commet about EXPLICIT. Call ns_set_name_internal.
1184 (ns_set_name_as_filename): Encode name with ENCODE_UTF_8 (Bug#7517).
1185
f1aab3ff
ŠN
11862010-12-29 Štěpán Němec <stepnem@gmail.com> (tiny change)
1187
1188 * window.c (syms_of_window): Add missing defsubr for
1189 window-use-time.
1190
365525b3
AS
11912010-12-28 Andreas Schwab <schwab@linux-m68k.org>
1192
1193 * xterm.h (x_alloc_lighter_color_for_widget): Restore declaration.
1194 * xterm.c (x_alloc_lighter_color_for_widget): Restore.
1195
59fc5cf9
AS
11962010-12-27 Andreas Schwab <schwab@linux-m68k.org>
1197
2f7c71a1
AS
1198 * buffer.c: Remove unused declarations.
1199 * buffer.h: Likewise.
1200 * charset.h: Likewise.
1201 * composite.h: Likewise.
1202 * dispextern.h: Likewise.
1203 * dispnew.c: Likewise.
1204 * font.h: Likewise.
1205 * fontset.c: Likewise.
1206 * fontset.h: Likewise.
1207 * intervals.h: Likewise.
1208 * keymap.h: Likewise.
1209 * lisp.h: Likewise.
1210 * syntax.c: Likewise.
1211 * syntax.h: Likewise.
1212 * termhooks.h: Likewise.
1213 * window.h: Likewise.
1214 * xsettings.h: Likewise.
1215 * xterm.c: Likewise.
1216 * xterm.h: Likewise.
1217
1218 * chartab.c (sub_char_table_ref): Make static.
1219 * dispnew.c (line_hash_code, required_matrix_height)
1220 (required_matrix_width): Likewise.
1221 * eval.c (interactive_p, apply_lambda): Likewise.
1222 * fns.c (string_make_multibyte, copy_hash_table, hash_clear):
1223 Likewise.
1224 * font.c (QCadstyle, QCregistry, font_make_spec)
1225 (font_parse_fcname, font_encode_char, font_at): Likewise.
1226 * frame.c (x_frame_get_arg): Likewise.
1227 * keymap.c (get_keyelt): Likewise.
1228 * lread.c (read_filtered_event): Likewise.
1229 * print.c (write_string_1): Likewise.
1230 * window.c (delete_window, window_height, window_width)
1231 (foreach_window): Likewise.
1232 * xrdb.c (x_get_customization_string, x_get_resource): Likewise.
1233 * xterm.c (x_scroll_bar_clear, xembed_set_info)
1234 (xembed_send_message): Likewise.
1235
1236 * eval.c (run_hook_list_with_args): Delete.
1237 * font.c (font_unparse_gtkname, font_update_lface): Likewise.
1238 * terminal.c (get_terminal_param): Likewise.
1239 * xterm.c (x_alloc_lighter_color_for_widget): Likewise.
1240
c4b607ed
AS
1241 * scroll.c: Fix comment.
1242
59fc5cf9
AS
1243 * dispnew.c (add_window_display_history)
1244 (add_frame_display_history, glyph_row_slice_p)
1245 (find_glyph_row_slice, flush_stdout)
1246 (check_matrix_pointer_lossage, matrix_row)
1247 (check_matrix_invariants, check_window_matrix_pointers)
1248 (check_matrix_pointers, window_to_frame_vpos)
1249 (window_to_frame_hpos): Prototize.
1250 * textprop.c (erase_properties): Likewise.
1251
a65b85b5
SM
12522010-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
1253
17870c01
SM
1254 * print.c (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): Remove.
1255 (print_preprocess): Fix handling of uninterned symbols in last change.
1256
a65b85b5
SM
1257 * print.c (print, print_preprocess, print_object): Use a hash table
1258 rather than a linear table for Vprint_number_table.
1259
f13183cf
CY
12602010-12-20 Chong Yidong <cyd@stupidchicken.com>
1261
1262 * frame.c (focus_follows_mouse): Default to 0 (Bug#7269).
1263
94975270
CY
12642010-12-20 Chong Yidong <cyd@stupidchicken.com>
1265
1266 * keyboard.c (Vtool_bar_separator_image_expression): New variable.
1267 (parse_tool_bar_item): Use it to obtain image separators for
1268 displays not using native tool-bar separators.
1269
1270 * xdisp.c (build_desired_tool_bar_string): Don't handle separators
1271 specially, since this is now done in parse_tool_bar_item.
1272
ef1b0ba7
SM
12732010-12-19 Stefan Monnier <monnier@iro.umontreal.ca>
1274
1275 Minor clean up to silence some gcc warnings.
1276 * window.c (Fset_window_buffer):
1277 * xterm.c (x_set_frame_alpha): Restructure code to silence
1278 compiler warning.
1279 (handle_one_xevent): Remove unused var `p'.
1280 (do_ewmh_fullscreen): Remove unused var `lval'.
1281 (xembed_set_info): Remove unused var `atom'.
1282 * textprop.c (Fremove_list_of_text_properties): Add braces to silence
1283 compiler warning.
1284 * fontset.c (fontset_id_valid_p, dump_fontset):
1285 * ftfont.c (ftfont_drive_otf): Modernize k&r declaration.
1286 * eval.c (Feval, Ffuncall): Avoid unneeded gotos.
1287 * dispnew.c (update_frame, update_frame_1): Compile the `do_pause'
1288 label only when it's used.
1289 * image.c (x_create_bitmap_from_xpm_data):
1290 * dispextern.h (x_create_bitmap_from_xpm_data): Use const char** like
1291 its callers.
1292 * coding.c (detect_coding_utf_16): Remove unused vars `src_base' and
1293 `consumed_chars'.
1294 (DECODE_EMACS_MULE_21_COMPOSITION): Remove unused var `charbuf_base'.
1295 (decode_coding_emacs_mule): Remove unused label `retry'.
1296 (detect_eol): Add parens to silence compiler warning.
1297 * alloc.c (bytes_used_when_reconsidered): Move to the #ifdef where
1298 it's used to silence the compiler.
1299 (make_number): Modernize k&r declaration.
1300 (mark_char_table): Add parens to silence compiler warning.
1301
4039c786
CY
13022010-12-17 Chong Yidong <cyd@stupidchicken.com>
1303
1304 * keyboard.c (parse_tool_bar_item): Allow menu separators in
1305 tool-bar maps.
1306 (menu_separator_name_p): New function, from gtkutil.c.
1307 (separator_names): Move from gtkutil.c.
1308
1309 * keyboard.h (menu_separator_name_p): Add prototype.
1310
1311 * gtkutil.c (XG_BIN_CHILD): New macro.
1312 (xg_get_menu_item_label, xg_update_menubar)
1313 (xg_update_menu_item, xg_tool_bar_menu_proxy)
1314 (xg_show_toolbar_item, update_frame_tool_bar): Use it.
1315 (separator_names, xg_separator_p): Move to keyboard.c.
ef1b0ba7
SM
1316 (create_menus, xg_update_submenu, update_frame_tool_bar):
1317 Use menu_separator_name_p.
4039c786
CY
1318
1319 * nsmenu.m (name_is_separator): Function deleted.
1320 (addItemWithWidgetValue): Use menu_separator_name_p.
1321
1322 * w32menu.c (name_is_separator): Function deleted.
1323 (add_menu_item): Use menu_separator_name_p.
1324
aa936e8e
JD
13252010-12-16 Jan Djärv <jan.h.d@swipnet.se>
1326
1327 * nsterm.m (ns_draw_window_cursor): If the cursor color is the
1328 same as the background, use the face forground as cursor.
1329
f49d1f52 13302010-12-13 Eli Zaretskii <eliz@gnu.org>
15579471
EZ
1331
1332 * fileio.c (Fexpand_file_name): Doc fix. (Bug#7617)
1333
f49d1f52 13342010-12-13 Eli Zaretskii <eliz@gnu.org>
76feb864 1335
f0559026
EZ
1336 * xdisp.c (string_pos_nchars_ahead, c_string_pos)
1337 (face_before_or_after_it_pos, next_element_from_string)
1338 (next_element_from_c_string, produce_stretch_glyph): Remove unused
1339 calculations of maximum string length before calling
1340 string_char_and_length and STRING_CHAR_AND_LENGTH.
1341 (string_char_and_length): Update commentary: MAXLEN is no longer
1342 needed.
1343
f49d1f52 13442010-12-13 Jan Djärv <jan.h.d@swipnet.se>
0b9fc69a
JD
1345
1346 * keyboard.c (kbd_buffer_get_event): Construct SAVE_SESSION_EVENT
1347 as (Qsave_session arg).
1348
1349 * xsmfns.c (smc_interact_CB): Set arg to Qnil.
1350 (smc_die_CB): Make an event with arg Qt.
1351 (Fhandle_save_session): If event has Qt as argument,
1352 call Fkill_emacs (Bug#7552).
1353
f49d1f52
SM
13542010-12-13 Chong Yidong <cyd@stupidchicken.com>
1355
1356 * buffer.c (transient-mark-mode): Doc fix (Bug#7465).
1357
13582010-12-13 Jan Djärv <jan.h.d@swipnet.se>
2b815743
JD
1359
1360 * xsmfns.c (smc_die_CB): Call Fkill_emacs (Bug#7552).
1361
f49d1f52 13622010-12-13 Chong Yidong <cyd@stupidchicken.com>
d8b2a962
CY
1363
1364 * dispextern.h (struct it): New member overlay_strings_charpos.
1365
1366 * xdisp.c (next_overlay_string, load_overlay_strings): Record the
1367 charpos where we computed n_overlay_strings.
1368 (next_overlay_string): Load overlay strings at recorded position,
1369 which may not be the same as the iterator's charpos (Bug#7016).
1370
f49d1f52 13712010-12-13 Chong Yidong <cyd@stupidchicken.com>
77f1ed6c
CY
1372
1373 * xdisp.c (try_scrolling): Avoid infloop if the first line is
1374 obscured due to a vscroll (Bug#7537).
1375
f49d1f52 13762010-12-13 Jan Djärv <jhd@zeplinf.localdomain>
2a91a0b5
JD
1377
1378 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
1379
1380 * nsterm.m (x_set_window_size, windowWillResize, initFrameFromEmacs):
1381 Use FRAME_TOOLBAR_HEIGHT.
1382 (x_set_offset): Handle XNegative and YNegative in
1383 f->size_hint_flags (Bug#7510).
1384
39321b94
EZ
13852010-12-11 Eli Zaretskii <eliz@gnu.org>
1386
1387 * w32fns.c (Fx_show_tip): Call try_window with last argument
1388 TRY_WINDOW_IGNORE_FONTS_CHANGE. Delete the TODO ifdef: problem
1389 solved. Round up the tip height to an integral multiple of the
1390 frame's line height. Add FRAME_COLUMN_WIDTH to the tip width.
1391 (Bug#7398)
1392
ec1b9b17
GM
13932010-12-08 Glenn Morris <rgm@gnu.org>
1394
1395 * fileio.c (Fverify_visited_file_modtime): Default to current buffer.
1396
3c2317e8
LMI
13972010-12-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
1398
1399 * xml.c (parse_region): Ignore blank HTML nodes.
1400 (make_dom): Return CDATA sections (like <style>foo</style>) as
1401 text nodes.
1402
bba3e508
SM
14032010-12-06 Stefan Monnier <monnier@iro.umontreal.ca>
1404
1405 * lread.c (read1): Allow newstyle unquote outside of backquote.
1406 Disallow old-style backquotes inside new-style backquotes.
1407 Don't count unquotes to figure out when we're "syntactically inside
1408 but semantically outside of a backquote" any more.
1409 Extend the restriction no-unescaped-commas-and-backquotes-in-symbols
1410 to all contexts.
1411
d23d8608
CY
14122010-12-05 Chong Yidong <cyd@stupidchicken.com>
1413
1414 * process.c: Remove checks for HAVE_SYS_IOCTL_H (Bug#7484).
1415
d6a003a8
AS
14162010-12-04 Andreas Schwab <schwab@linux-m68k.org>
1417
1418 * Makefile.in (M_FILE): Substitute @M_FILE@ instead of @machfile@.
1419 (S_FILE): Substitute @S_FILE@ instead of @opsysfile@.
1420 * m/arm.h, m/sh3.h, m/xtensa.h: Remove files.
1421
201ef780
AS
14222010-12-03 Andreas Schwab <schwab@linux-m68k.org>
1423
1424 * lisp.h (union Lisp_Object): Explicitly declare signedness of
1425 bit-field.
1426 (XINT): Remove variant for EXPLICIT_SIGN_EXTEND.
1427 * m/alpha.h (EXPLICIT_SIGN_EXTEND): Don't define.
1428 * m/amdx86-64.h (EXPLICIT_SIGN_EXTEND): Likewise.
1429 * m/ia64.h (EXPLICIT_SIGN_EXTEND): Likewise.
1430 * m/ibms390.h (EXPLICIT_SIGN_EXTEND): Likewise.
1431 * m/ibms390x.h (EXPLICIT_SIGN_EXTEND): Likewise.
1432 * m/iris4d.h (EXPLICIT_SIGN_EXTEND): Likewise.
1433 * m/m68k.h (EXPLICIT_SIGN_EXTEND): Likewise.
1434 * m/sparc.h (EXPLICIT_SIGN_EXTEND): Likewise.
1435 * m/template.h (EXPLICIT_SIGN_EXTEND): Likewise.
1436 * m/hp800.h: Remove file.
1437 * m/mips.h: Remove file.
1438
146490c3
JD
14392010-12-03 Jan Djärv <jan.h.d@swipnet.se>
1440
1441 * nsterm.m (ns_dumpglyphs_image): If drawing cursor, fill background
1442 with cursor color and draw a rectangle around the image (Bug#7412).
1443
babc8f0d
AS
14442010-12-03 Andreas Schwab <schwab@linux-m68k.org>
1445
1446 * frame.c (x_set_font): Remove unused variable.
1447
9583e9a0
JD
14482010-12-02 Jan Djärv <jan.h.d@swipnet.se>
1449
dd723bbd
JD
1450 * nsmenu.m (update_frame_tool_bar): Remove NSLog on invalid image.
1451
9583e9a0
JD
1452 * nsterm.m (ns_draw_glyph_string): Switch fore- and background if
1453 drawing text under filled box cursor (Bug#7479).
1454
07976ae3 14552010-11-27 Kenichi Handa <handa@m17n.org>
b84ae584
KH
1456
1457 * charset.c (emacs_mule_charset): Make it an array of charset ID;
1458 i.e. integer.
bba3e508 1459 (Fdefine_charset_internal): Adjust for the above change.
b84ae584
KH
1460 (init_charset_once): Likewise.
1461
bba3e508
SM
1462 * charset.h (emacs_mule_charset): Adjust the prototype.
1463 Delete duplicated extern.
b84ae584
KH
1464
1465 * coding.c (emacs_mule_char): Adjust for the change of
1466 emacs_mule_charset.
1467
1468 * lread.c (read_emacs_mule_char): Adjust for the change of
1469 emacs_mule_charset.
1470
07976ae3 14712010-11-27 Eli Zaretskii <eliz@gnu.org>
b8e5cf1d
EZ
1472
1473 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
1474 of w32api >= 3.15. (Bug#6989) (Bug#7452)
1475
07976ae3 14762010-11-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
96ad0af7
YM
1477
1478 * alloc.c (mark_terminals): Ensure that the image cache is marked
1479 even if the terminal object was marked earlier (Bug#6301).
1480
35f1de62
CY
14812010-11-21 Chong Yidong <cyd@stupidchicken.com>
1482
1483 * editfns.c (Fbyte_to_string): Signal an error arg is not a byte.
1484
07976ae3 14852010-11-27 Jan Djärv <jan.h.d@swipnet.se>
8d7f026f
JD
1486
1487 * gtkutil.c (menubar_map_cb): New function (Bug#7425).
1488 (xg_update_frame_menubar): Connect signal map to menubar_map_cb.
1489 Use 23 as menubar height if 0. (Bug#7425).
1490
8547874a
EZ
14912010-11-26 Eli Zaretskii <eliz@gnu.org>
1492
228482b2
EZ
1493 * xdisp.c (set_message_1): Force paragraph direction in echo area
1494 be left-to-right.
1495
8547874a
EZ
1496 * keyboard.c (make_lispy_position): Put a meaningful value in yret
1497 when the click is on the header or mode line.
1498
1e2dddbe
EZ
14992010-11-25 Eli Zaretskii <eliz@gnu.org>
1500
1501 * xdisp.c (set_cursor_from_row): Don't forget to consider the
1502 `cursor' property of the first character in overlay strings.
12365240 1503 (Bug#7474) (Bug#7481)
1e2dddbe 1504
50795d1f
JD
15052010-11-24 Jan Djärv <jan.h.d@swipnet.se>
1506
1507 * nsterm.m (NSLeftControlKeyMask, NSLeftCommandKeyMask)
1508 (NSLeftAlternateKeyMask): New defines.
c80c6166
JD
1509 (keyDown): Parse left and right keys separately (Bug#7458).
1510 Compare Left key masks exactly (Bug#7458).
50795d1f 1511
f8ab8c1f
EZ
15122010-11-23 Eli Zaretskii <eliz@gnu.org>
1513
1514 * intervals.c (temp_set_point_both): Define before calling, to
1515 avoid GCC warnings.
1516
2e8a4797
DN
15172010-11-23 Dan Nicolaescu <dann@ics.uci.edu>
1518
b29116ef
DN
1519 * nsmenu.m: Use #include <config.h> instead of "config.h".
1520
b932f8b1
DN
1521 * term.c (Qglyphless_char,last_glyphless_glyph_frame)
1522 (last_glyphless_glyph_face_id. last_glyphless_glyph_merged_face_id):
1523 Move declarations ...
1524 * lisp.h (Qglyphless_char,last_glyphless_glyph_frame)
1525 (last_glyphless_glyph_face_id. last_glyphless_glyph_merged_face_id):
1526 ... here.
1527
42c8bc9b
DN
1528 * emacs.c (gdb_use_union, gdb_valbits,gdb_gctypebits)
1529 (gdb_data_seg_bits, gdb_array_mark_flag, PVEC_FLAG)
1530 (gdb_pvec_type):
1531 * print.c (print_output_debug_flag):
1532 * lisp.h (debug_print): Mark as EXTERNALLY_VISIBLE.
1533 (safe_debug_print): New declaration.
1534
2e8a4797
DN
1535 * xterm.c:
1536 * systty.h:
1537 * sound.c: Include <sys/ioctl.h> unconditionally.
1538
b609f591
YM
15392010-11-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1540
1541 * alloc.c (mark_maybe_object): Return early if given a Lisp
1542 integer (Bug#6301).
1543
731e263a
KB
15442010-11-21 Ken Brown <kbrown@cornell.edu>
1545
1546 * sheap.c (STATIC_HEAP_SIZE): Revert previous change.
1547
b7d1e144
JD
15482010-11-21 Jan Djärv <jan.h.d@swipnet.se>
1549
1550 * nsterm.m (ns_right_command_modifier, ns_right_control_modifier):
1551 Define (Bug#7458).
1552 (NSRightCommandKeyMask, NSRightControlKeyMask): Define (Bug#7458).
1553 (EV_MODIFIERS): Check for NSRightCommandKeyMask and
1554 NSRightControlKeyMask also (Bug#7458).
1555 (keyDown): Ditto (Bug#7458).
1556 (syms_of_nsterm): Defvar ns-right-command-modifier and
1557 ns-right-control-modifier (Bug#7458).
1558
b7982059
DN
15592010-11-21 Dan Nicolaescu <dann@ics.uci.edu>
1560
bee3419f
DN
1561 * sysdep.c (sys_subshell): Remove SET_EMACS_PRIORITY.
1562 * emacs.c (emacs_priority, syms_of_emacs): Remove emacs_priority.
1563
b7982059
DN
1564 * intervals.h (temp_set_point, temp_set_point_both):
1565 * buffer.h (offset_intervals, copy_intervals): Remove INLINE.
1566
01664ed1
KB
15672010-11-20 Ken Brown <kbrown@cornell.edu>
1568
1569 * sheap.c (STATIC_HEAP_SIZE): Increase to 13MB.
1570
7c2d713b
EZ
15712010-11-20 Eli Zaretskii <eliz@gnu.org>
1572
1573 * term.c (produce_glyphless_glyph): Use \uNNNN, \UNNNNNN, or
1574 \xNNNNNN for hex-code display of glyphless characters.
1575
d2bd5189
JD
15762010-11-20 Jan Djärv <jan.h.d@swipnet.se>
1577
1578 * gtkutil.c (xg_make_tool_item): Take vert_only as argument.
1579 Set important to ! vert_only.
1580 (xg_show_toolbar_item): Don't show label horizontally if
1581 tool item isn't important.
1582 (update_frame_tool_bar): Get TOOL_BAR_ITEM_VERT_ONLY and pass it to
1583 xg_make_tool_item, or update important on existing tool item.
1584
1585 * keyboard.c (QCvert_only): New variable.
1586 (parse_tool_bar_item): Check for QCvert_only.
1587 (syms_of_keyboard): Initialize QCvert_only.
1588
1589 * dispextern.h (tool_bar_item_idx): Add TOOL_BAR_ITEM_VERT_ONLY.
1590
d9a95e67
EZ
15912010-11-20 Eli Zaretskii <eliz@gnu.org>
1592
1593 * msdos.c (dos_rawgetc): Use gen_help_event, instead of doing the
1594 same in-line.
1595
b6557553
AS
15962010-11-20 Andreas Schwab <schwab@linux-m68k.org>
1597
1598 * xfaces.c (lookup_face): Make static.
1599 * dispnew.c (copy_row_except_pointers): Likewise.
1600 * syntax.c (dec_bytepos): Likewise.
1601 (inc_bytepos): Remove.
1602 * dispextern.h (lookup_face): Remove declaration.
1603
f48fe1f0
EZ
16042010-11-19 Eli Zaretskii <eliz@gnu.org>
1605
1606 * xdisp.c (set_cursor_from_row): Display cursor after all the
1607 glyphs that come from an overlay. Don't overstep the last glyph
1608 when skipping glyphs from an overlay. (Bug#6687)
1609
654ef137
DN
16102010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
1611
84dfc8a7
DN
1612 * alloc.c (refill_memory_reserve): Move declaration ...
1613 * lisp.h (refill_memory_reserve): ... here.
1614
94fa3833
DN
1615 * strftime.c (_strftime_copytm): Add declaration.
1616
dde990a0
DN
1617 * callproc.c (syms_of_callproc): Use intern_c_string.
1618
50c77428
DN
1619 Move declarations from .c files to .h files.
1620 * process.c (timers_run):
1621 * minibuf.c (quit_char):
1622 * lread.c (read_emacs_mule_char):
1623 * keyboard.c (minibuf_level, message_enable_multibyte)
1624 (pending_malloc_warning):
1625 * insdel.c (Vselect_active_regions, Vsaved_region_selection)
1626 (Qonly): Remove declarations.
1627 * lisp.h (pending_malloc_warning, Vsaved_region_selection)
1628 (Vselect_active_regions):
1629 * keyboard.h (timers_run): Add declarations.
1630
654ef137
DN
1631 * strftime.c (my_strftime_gmtime_r, my_strftime_localtime_r)
1632 (tm_diff): Convert definitions to standard C.
1633 (extra_args_spec_iso): Remove, unused.
1634
4a47c275 16352010-11-18 Jan Djärv <jan.h.d@swipnet.se>
37de8fd0
J
1636
1637 * xsettings.c (init_gconf): Check HAVE_G_TYPE_INIT.
1638
1639 * config.in (HAVE_G_TYPE_INIT): New symbol.
1640
4a47c275 16412010-11-18 Eli Zaretskii <eliz@gnu.org>
c7926fe2
EZ
1642
1643 * lread.c (Fload): Mention `load-in-progress' and
1644 `load-file-name'. (Bug#7346)
1645
86520d8c
EZ
1646 * keyboard.c (kbd_buffer_nr_stored): Define only ifdef subprocesses.
1647 (kbd_buffer_store_event_hold, kbd_buffer_get_event)
1648 (tty_read_avail_input): Call kbd_buffer_nr_stored only ifdef
1649 subprocesses. Use buffer_free only ifdef subprocesses.
1650
1651 * process.c (init_process) [subprocesses]: Init kbd_is_on_hold in
1652 the subprocesses version, not in the non-subprocesses one.
1653
794a4b6d
EZ
1654 * Makefile.in: Don't use ## comment, it breaks the MSDOS build.
1655
146d267b
EZ
16562010-11-17 Eli Zaretskii <eliz@gnu.org>
1657
1658 * xdisp.c (set_cursor_from_row): Fix cursor positioning in empty
1659 lines on text-mode terminals. (bug#7417)
1660
fad0d565
SM
16612010-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1662
1663 * xterm.c (get_current_wm_state): Rename from get_current_vm_state.
1664 (do_ewmh_fullscreen, x_handle_net_wm_state): Update callers.
1665
6b4bb703
KH
16662010-11-17 Kenichi Handa <handa@m17n.org>
1667
1668 * coding.c (Fset_terminal_coding_system_internal): Fix previous
1669 change (set charset-ID list instead of charset-symbol list).
1670
9173a8fb
CY
16712010-11-16 Chong Yidong <cyd@stupidchicken.com>
1672
1673 * keyboard.c (make_lispy_position): For text area clicks, record Y
1674 pixel position relative to the text area, excluding header line.
1675 Also change X and Y to Lisp_Objects, not pointers; don't return
1676 coordinate values via pointers. Pass ON_TEXT_AREA coordinate to
1677 buffer_posn_from_coords counting from the start of the text area.
1678 (Fposn_at_x_y, make_lispy_event): Callers changed.
1679
1680 * window.c (coordinates_in_window): Change X and Y to ints rather
1681 than pointers; don't return coordinates via pointers.
1682 (struct check_window_data): Change X and Y from pointers to ints.
1683 (window_from_coordinates): Remove args WX and WY; don't return
1684 coordinates via pointers.
1685 (Fcoordinates_in_window_p, window_from_coordinates):
1686 (check_window_containing, Fwindow_at): Callers changed.
1687 (window_relative_x_coord): New function.
1688
1689 * window.h (window_from_coordinates, window_relative_x_coord):
1690 Update prototypes.
1691
1692 * dispnew.c (buffer_posn_from_coords): Assume that X counts from
1693 the start of the text area.
1694
1695 * xdisp.c (remember_mouse_glyph): Change window_from_coordinates
1696 call. Use window_relative_x_coord.
1697 (note_mouse_highlight): Change window_from_coordinates call.
1698
1699 * w32term.c (w32_read_socket):
1700 * msdos.c (dos_rawgetc):
1701 * xterm.c (handle_one_xevent): Likewise.
1702
d2762c86
DN
17032010-11-16 Dan Nicolaescu <dann@ics.uci.edu>
1704
1705 * strftime.c (LOCALE_PARAM_DECL): Update for standard C.
1706 (LOCALE_PARAM, LOCALE_PARAM_PROTO): Remove, unused.
1707 (memcpy_lowcase, so_week_days, extra_args_spec, emacs_strftimeu):
1708 Convert definitions to standard C.
1709 * regex.c: Do not include <stdlib.h>, config.h does it.
1710 Include unistd.h.
1711 (xrealloc, init_syntax_once, re_match, regcomp, regexec)
1712 (regerror, regfree): Convert definitions to standard C.
1713 * mktime.c (my_mktime_localtime_r, ydhms_tm_diff, ranged_convert)
1714 (__mktime_internal): Convert definitions to standard C.
1715
c2f0866a
DN
17162010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
1717
42a7e7f1
DN
1718 * w32proc.c:
1719 * w32inevt.c:
1720 * w32heap.c:
1721 * w32.c: Remove config.h include guards.
1722
67802943
DN
1723 * callproc.c (child_setup): Reorder code to simplify #ifdefs.
1724 No code changes.
1725
f0e1af46
DN
1726 * process.c: Include <sys/ioctl.h> unconditionally,
1727 keyboard.c already does it.
1728
c2f0866a
DN
1729 * keyboard.c (pending_malloc_warning): Add const to match
1730 definition in alloc.c.
1731 (Fset_input_interrupt_mode): Simplify #ifdefs.
1732
92d3ab7e
DN
17332010-11-15 Dan Nicolaescu <dann@ics.uci.edu>
1734
12e610e8
DN
1735 Clean up systty.h macros.
1736 * systty.h (EMACS_GET_TTY_PGRP, EMACS_SET_TTY_PGRP, EMACS_GET_TTY)
1737 (EMACS_SET_TTY): Remove unneeded abstraction, instead inline the
1738 definition in all uses.
1739 (EMACS_TTY_TABS_OK): Remove, it has a single user.
1740 * sysdep.c (discard_tty_input, child_setup_tty)
1741 (init_sys_modes, tabs_safe_p, reset_sys_modes):
1742 * emacs.c (shut_down_emacs):
1743 * callproc.c (child_setup):
1744 * term.c (dissociate_if_controlling_tty): Inline removed macros.
1745
92d3ab7e
DN
1746 * data.c (sign_extend_temp, sign_extend_lisp_int): Remove, unused.
1747
a3e6bad4
CY
17482010-11-14 Chong Yidong <cyd@stupidchicken.com>
1749
1750 * w32fns.c (Fx_create_frame):
1751 * nsfns.m (Fx_create_frame): Don't check for the cursorColor
1752 resource here; it's now done at startup.
1753
5a232ffb
J
17542010-11-14 Jan Djärv <jan.h.d@swipnet.se>
1755
1756 * xterm.c (set_wm_state): Add Qnil to final cons.
1757
1758 * xselect.c (x_send_client_event): Remove unused variables cons and
1759 size.
1760
24021b38
YM
17612010-11-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1762
1763 * keyboard.c (modify_event_symbol) : Add const to array elements of
1764 arg NAME_TABLE.
1765 (lispy_accent_keys, lispy_function_keys, lispy_multimedia_keys)
1766 (lispy_kana_keys, iso_lispy_function_keys, lispy_wheel_names)
1767 (lispy_wheel_names, lispy_drag_n_drop_names, modifier_names):
1768 Add const to array elements.
1769 (scroll_bar_parts): Make static. Fix position of const.
1770
1771 * w32fns.c (lispy_function_keys): Add const to extern.
1772
1773 * w32inevt.c (lispy_function_keys): Likewise.
1774
afa42fe3
CY
17752010-11-14 Chong Yidong <cyd@stupidchicken.com>
1776
1777 * xfns.c (Fx_create_frame): Don't check for the cursorColor
1778 resource here; it's now done at startup.
1779
53260a94
DN
17802010-11-13 Dan Nicolaescu <dann@ics.uci.edu>
1781
c865c575 1782 * xmenu.c: Make it clear that ../lwlib/lwlib.h is only needed for Motif.
ff2e8052 1783
c865c575 1784 Fix compilation on Solaris.
ff2e8052
DN
1785 * sysdep.c: Do not #include <term.h>.
1786 (tputs): Add declaration, similar to what cm.c does. (Bug#7178)
1787
53260a94
DN
1788 * s/ms-w32.h (HAVE_TERMIOS_H): Do not undef, not used anymore.
1789
933e29ff
J
17902010-11-13 Jan Djärv <jan.h.d@swipnet.se>
1791
1792 * xterm.c (set_wm_state): Don't put Atom in cons, call
1793 make_fixnum_or_float on them first.
1794 (x_term_init): Initialize Xatom_net_supporting_wm_check and
1795 Xatom_net_supported correctly.
1796
1797 * xselect.c (x_send_client_event): Move CHECK_STRING ...
1798 (Fx_send_client_event): to here.
1799
a048073e
MR
18002010-11-13 Martin Rudalics <rudalics@gmx.at>
1801
1802 * window.c (Fwindow_use_time): New function.
1803
0eb025fb
EZ
18042010-11-13 Eli Zaretskii <eliz@gnu.org>
1805
1806 * xdisp.c (set_cursor_from_row): Fix cursor positioning on
1807 zero-width characters.
1808
1809 * .gdbinit (pgx): Adapt to latest changes in `struct glyph'.
1810
1811 * w32term.c (x_draw_glyphless_glyph_string_foreground): Draw the
1812 box before drawing the glyphs inside it.
1813
1814 * xdisp.c (syms_of_xdisp) <glyphless-char-display>: Doc fix.
1815
bba3e508
SM
1816 * dispextern.h (enum glyphless_display_method):
1817 Rename GLYPHLESS_DISPLAY_HEXA_CODE to GLYPHLESS_DISPLAY_HEX_CODE.
1818 All users changed.
0eb025fb 1819
bba3e508
SM
1820 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
1821 Fix comments.
0eb025fb
EZ
1822 (produce_glyphless_glyph): Enclose "U+nnnn" and "empty box"
1823 whitespace in "[]", to simulate a box. Don't use uninitialized
1824 variable `width'.
1825
c869cc37
JD
18262010-11-11 Julien Danjou <julien@danjou.info>
1827
2d9074ba
JD
1828 * xsettings.c (init_xsettings): Use already fetch atoms.
1829
1830 * xsmfns.c (create_client_leader_window): Use SM_CLIENT_ID atom
1831 from dpyinfo.
1832
1833 * xselect.c (Fx_send_client_event): Split and create
1834 x_send_client_event.
1835
1836 * lisp.h: Do not EXFUN Fx_send_client_event.
1837
1838 * xterm.c (x_set_frame_alpha): Use _NET_WM_WINDOW_OPACITY atom
1839 from dpyinfo.
1840 (wm_supports): Use atoms from dpyinfo.
1841 (do_ewmh_fullscreen): Use atoms from dpyinfo.
1842 (x_ewmh_activate_frame): Use atoms from dpyinfo.
1843 (xembed_set_info): Use atoms from dpyinfo.
1844 (x_term_init): Fetch _XEMBED_INFO, _NET_SUPPORTED,
1845 _NET_SUPPORTING_WM_CHECK, _NET_WM_WINDOW_OPACITY and
1846 _NET_ACTIVE_WINDOW, XSETTINGS atoms.
1847 Get all atoms in one round-trip.
1848 (set_wm_state): Use x_send_client_event rather than
1849 Fx_send_client_event, using Atom directly.
1850 (x_ewmh_activate_frame): Ditto.
1851 (x_set_sticky): Pass atoms to set_wm_state.
1852 (do_ewmh_fullscreen): Ditto.
1853
1854
1855 * xterm.h (x_display_info): Add Xatom_net_supported,
1856 Xatom_net_supporting_wm_check, Xatom_net_active_window,
1857 Xatom_net_wm_window_opacity, Xatom_XEMBED_INFO, SM_CLIENT_ID.
1858
c869cc37
JD
1859 * xfns.c (Fx_show_tip): Fix typo in docstring.
1860
1a4236ea
SM
18612010-11-11 Stefan Monnier <monnier@iro.umontreal.ca>
1862
1863 * cmds.c (Fself_insert_command): Don't call XFASTINT without checking
1864 it's not negative.
1865
3106121c
YM
18662010-11-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1867
1868 * font.c (font_filter_properties): Add const to array elements of
1869 properties args.
1870
1871 * font.h (font_filter_properties): Likewise.
1872
1873 * ftfont.c (ftfont_booleans, ftfont_non_booleans): Add const to array
1874 elements.
1875
1876 * w32font.c (w32font_booleans, w32font_non_booleans): Likewise.
1877
da1fec2b
MA
18782010-11-10 Michael Albinus <michael.albinus@gmx.de>
1879
1880 * dbusbind.c (QCdbus_type_unix_fd): New Lisp object.
1881 (XD_BASIC_DBUS_TYPE, xd_symbol_to_dbus_type, xd_signature)
1882 (xd_append_arg, xd_retrieve_arg): Support DBUS_TYPE_UNIX_FD.
1883 (Fdbus_call_method): Add DBUS_TYPE_UNIX_FD type mapping to doc string.
1884 (syms_of_dbusbind): Initialize QCdbus_type_unix_fd).
1885
bd6bc222
GM
18862010-11-10 Glenn Morris <rgm@gnu.org>
1887
1888 * emacs.c (syms_of_emacs) <system-type>: Doc fix.
1889
c0098065
EZ
18902010-11-09 Eli Zaretskii <eliz@gnu.org>
1891
bd6bc222 1892 * xfns.c (x_real_positions): Fix declaration-after-statement problem.
c0098065 1893
d607b96b 18942010-11-09 Chong Yidong <cyd@stupidchicken.com>
be3faa80
CY
1895
1896 * image.c (free_image): Don't garbage the frame here, since this
1897 function can be called while redisplaying (Bug#7210).
1898 (uncache_image): Garbage the frame here (Bug#6426).
1899
d607b96b 19002010-11-09 Jan Djärv <jan.h.d@swipnet.se>
184765cc 1901
d607b96b
SM
1902 * xfns.c (x_real_positions): Only use _NET_FRAME_EXTENTS if our
1903 parent is the root window. Check this after traversing window tree.
184765cc 1904
d607b96b 1905 * xterm.c (x_term_init): Initialize Xatom_net_frame_extents.
bd80a886 1906
d607b96b 1907 * xterm.h (struct x_display_info): Xatom_net_frame_extents is new.
bd80a886 1908
d607b96b
SM
1909 * xfns.c (x_real_positions): Try to get _NET_FRAME_EXTENTS first
1910 before traversing window tree (Bug#5721).
c2e124a9 1911
27f92be7
J
19122010-11-07 Jan Djärv <jan.h.d@swipnet.se>
1913
66b16767
J
1914 * xfns.c (set_machine_and_pid_properties): Let X set WM_CLIENT_MACHINE.
1915
25f38310
SM
1916 * xdisp.c (note_mode_line_or_margin_highlight):
1917 Initialize Cursor to No_Cursor for HAVE_WINDOW_SYSTEM also.
27f92be7 1918
a971c0a7
EZ
19192010-11-06 Eli Zaretskii <eliz@gnu.org>
1920
1921 * xfns.c (Fx_show_tip): If any of the tool-tip text lines is R2L,
1922 adjust width of tool-tip frame to the width of text, excluding the
1923 stretch glyph at the beginning of R2L glyph rows.
1924
1925 * w32fns.c (Fx_show_tip): Likewise.
1926
80417b95
JD
19272010-11-06 Jan Djärv <jan.h.d@swipnet.se>
1928
1929 * nsfont.m: Include termchar for new mouse-highlight.
6dc61cf1 1930 (nsfont_draw): Use MOUSE_HL_INFO.
80417b95 1931
28118eb6
EZ
19322010-11-05 Eli Zaretskii <eliz@gnu.org>
1933
c1fc2d3a 1934 Unify mouse-highlight code for all GUI and TTY sessions.
cf482c50
EZ
1935
1936 * term.c: Remove static mouse_face_* variables. All users
1937 changed.
1938 (term_show_mouse_face, term_clear_mouse_face)
1939 (fast_find_position, term_mouse_highlight): Functions deleted.
1940 (tty_draw_row_with_mouse_face): New function.
1941 (term_mouse_movement): Call note_mouse_highlight instead of
1942 term_mouse_highlight.
1943
bbf534ce
EZ
1944 * nsterm.m (ns_update_window_begin, ns_update_window_end)
1945 (ns_update_end, x_destroy_window, ns_frame_up_to_date)
1946 (ns_dumpglyphs_box_or_relief, ns_maybe_dumpglyphs_background)
1947 (ns_dumpglyphs_image, ns_dumpglyphs_stretch)
1948 (ns_initialize_display_info, keyDown, mouseMoved, mouseExited):
1949 Replace Display_Info with Mouse_HLInfo everywhere where
1950 mouse_face_* members were accessed for mouse highlight purposes.
1951
1952 * xterm.c (x_update_window_begin, x_update_window_end)
1953 (x_update_end, XTframe_up_to_date, x_set_mouse_face_gc)
bba3e508
SM
1954 (handle_one_xevent, x_free_frame_resources, x_term_init):
1955 Replace Display_Info with Mouse_HLInfo everywhere where mouse_face_*
bbf534ce
EZ
1956 members were accessed for mouse highlight purposes.
1957
1958 * w32term.c (x_update_window_begin, x_update_window_end)
1959 (x_update_end, w32_read_socket, x_free_frame_resources)
1960 (w32_initialize_display_info): Replace Display_Info with
1961 Mouse_HLInfo everywhere where mouse_face_* members were accessed
1962 for mouse highlight purposes.
1963
1964 * xdisp.c (show_mouse_face, note_mode_line_or_margin_highlight)
1965 (note_mouse_highlight) [HAVE_WINDOW_SYSTEM]: Don't run GUI code
1966 unless the frame is on a window-system.
c1fc2d3a 1967 (get_tool_bar_item, handle_tool_bar_click)
7ea692f6
EZ
1968 (note_tool_bar_highlight, draw_glyphs, erase_phys_cursor)
1969 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
1970 (note_mode_line_or_margin_highlight, note_mouse_highlight)
1971 (x_clear_window_mouse_face, cancel_mouse_face, expose_frame):
1972 Replace Display_Info with Mouse_HLInfo everywhere where
1973 mouse_face_* members were accessed for mouse highlight purposes.
c1fc2d3a 1974 (coords_in_mouse_face_p): Move prototype out of the
d009ae66
EZ
1975 HAVE_WINDOW_SYSTEM conditional.
1976 (x_y_to_hpos_vpos, frame_to_window_pixel_xy): Move out of the
1977 HAVE_WINDOW_SYSTEM block.
bba3e508
SM
1978 (try_window_id) [HAVE_GPM || MSDOS]:
1979 Call x_clear_window_mouse_face.
d009ae66 1980 (draw_row_with_mouse_face): Implementation for HAVE_WINDOW_SYSTEM
c1fc2d3a
EZ
1981 systems. Call tty_draw_row_with_mouse_face for TTY systems.
1982 (show_mouse_face): Call draw_row_with_mouse_face, instead of
1983 calling draw_glyphs directly.
d009ae66
EZ
1984 (show_mouse_face, clear_mouse_face, coords_in_mouse_face_p)
1985 (cursor_in_mouse_face_p, rows_from_pos_range)
1986 (mouse_face_from_buffer_pos, mouse_face_from_string_pos)
1987 (note_mode_line_or_margin_highlight, note_mouse_highlight)
1988 (x_clear_window_mouse_face, cancel_mouse_face): Move out of the
1989 HAVE_WINDOW_SYSTEM block. Ifdef away window-system specific
1990 fragments.
1991 (note_mouse_highlight): Call popup_activated for MSDOS as well.
1992 Clear mouse highlight if pointer is over glyphs whose OBJECT is an
1993 integer.
1994 (mouse_face_from_buffer_pos): Add parentheses around && within ||.
bba3e508
SM
1995 (x_consider_frame_title, tool_bar_lines_needed):
1996 Move prototypes to HAVE_WINDOW_SYSTEM-only part.
c1fc2d3a
EZ
1997 (get_window_cursor_type): Move inside a HAVE_WINDOW_SYSTEM-only
1998 part. Remove "#ifdef HAVE_WINDOW_SYSTEM" from body of function.
1999 (null_glyph_slice): Move declaration into HAVE_WINDOW_SYSTEM-only
2000 part.
d009ae66
EZ
2001
2002 * dispnew.c (mirror_make_current): Set Y coordinate of the
2003 mode-line and header-line rows.
c1fc2d3a
EZ
2004 (init_display): Setup initial frame's output_data for text
2005 terminal frames.
d009ae66 2006
c1fc2d3a
EZ
2007 * xmenu.c (popup_activated): Don't define on MSDOS, which now has
2008 its own definition on msdos.c.
d009ae66
EZ
2009
2010 * msdos.c (show_mouse_face, clear_mouse_face)
2011 (fast_find_position, IT_note_mode_line_highlight)
2012 (IT_note_mouse_highlight): Functions deleted.
2013 (IT_frame_up_to_date, dos_rawgetc): Call note_mouse_highlight
2014 instead of IT_note_mouse_highlight.
2015 (draw_row_with_mouse_face, popup_activated): New functions.
c1fc2d3a
EZ
2016 (dos_set_window_size, draw_row_with_mouse_face, IT_update_begin)
2017 (IT_update_end, IT_frame_up_to_date, internal_terminal_init)
2018 (dos_rawgetc): Replace Display_Info with Mouse_HLInfo everywhere
2019 where mouse_face_* members were accessed for mouse highlight
2020 purposes.
2021
2022 * msdos.h (initialize_msdos_display): Add prototype.
2023
2024 * frame.h (MOUSE_HL_INFO): New macro.
2025
2026 * lisp.h (Mouse_HLInfo): New data type.
2027
2028 * xterm.h (struct x_display_info):
2029 * w32term.h (struct w32_display_info):
2030 * nsterm.h (struct ns_display_info):
2031 * termchar.h (struct tty_display_info): Use it instead of
2032 mouse_face_* members.
2033
2034 * dispextern.h (show_mouse_face, clear_mouse_face): Update type of
2035 1st argument.
2036 (frame_to_window_pixel_xy, note_mouse_highlight)
2037 (x_clear_window_mouse_face, cancel_mouse_face, clear_mouse_face)
2038 (show_mouse_face, cursor_in_mouse_face_p): Move prototypes out of
2039 HAVE_WINDOW_SYSTEM conditional.
2040 (draw_row_with_mouse_face): Declare prototype.
2041 (tty_draw_row_with_mouse_face): Declare prototype.
2042
6e8d7c47
EZ
20432010-11-05 Eli Zaretskii <eliz@gnu.org>
2044
bba3e508
SM
2045 * term.c (append_glyphless_glyph, produce_glyphless_glyph):
2046 Remove unused variables.
6e8d7c47 2047
f31ba3f0
AR
20482010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
2049
2050 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
2051 logic pointed out by Eli Zaretskii.
2052
448e17d6
LMI
20532010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2054
0c3a9a9f
GM
2055 * coding.c (coding-category-list): Refer to set-coding-system-priority
2056 instead of the obsolete set-coding-priority in the doc string.
448e17d6 2057
f31ba3f0 2058
3fdebbf9 20592010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
f31ba3f0
AR
2060
2061 * nsfont.m (nsfont_draw): Correct previous patch to return
2062 correct value.
2063 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
2064 don't change the method signature, change the return.
2065
20662010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
3fdebbf9
AR
2067
2068 * nsfont.m (nsfont_draw)
2069 * nsimage.m (EmacsImage-setXBMColor:)
f31ba3f0 2070 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
3fdebbf9 2071
17c0c952
JD
20722010-11-03 Julien Danjou <julien@danjou.info>
2073
2074 * image.c (gif_load): Add support for transparency and specified
2075 :background.
2076
b18fad6d
KH
20772010-11-01 Kenichi Handa <handa@m17n.org>
2078
2079 * dispextern.h (lookup_glyphless_char_display): Extern it.
2080
2081 * termhooks.h (struct terminal): New member charset_list.
2082
2083 * coding.c (Fset_terminal_coding_system_internal): Set the
2084 `charset_list' member of struct terminal.
2085
a8039db1 2086 * term.c (produce_glyphs): Handle the case it->what == IT_GLYPHLESS.
b18fad6d
KH
2087 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
2088
2089 * xdisp.c (lookup_glyphless_char_display): Make it non-static.
2090 (lookup_glyphless_char_display): Set it->what at the end.
2091 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
2092 (last_glyphless_glyph_merged_face_id): Make them non-static.
2093
a8039db1
JB
2094 * w32term.c (x_draw_glyphless_glyph_string_foreground):
2095 Fix the arg with_background for font->driver->draw.
65b6b59a 2096
a8039db1 20972010-11-01 Kenichi Handa <handa@m17n.org>
0269bd90 2098
a8039db1
JB
2099 * w32gui.h (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
2100 Surround chp by parentheses.
0269bd90 2101
a8039db1 21022010-11-01 Kenichi Handa <handa@m17n.org>
b2cca856
KH
2103
2104 Implement various display methods for glyphless characters.
2105
2106 * xdisp.c (Qglyphless_char, Vglyphless_char_display)
2107 (Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space)
2108 (Qzero_width): New variables.
2109 (THIN_SPACE_WIDTH): New macro.
2110 (lookup_glyphless_char_display): New funciton.
2111 (last_glyphless_glyph_frame, last_glyphless_glyph_face_id)
2112 (last_glyphless_glyph_merged_face_id): New variables.
2113 (get_next_display_element): Check glyphless characters.
2114 (redisplay_internal): Initialize last_glyphless_glyph_frame and
2115 last_glyphless_glyph_face_id.
2116 (fill_glyphless_glyph_string): New function.
2117 (BUILD_GLYPHLESS_GLYPH_STRING): New macro.
2118 (BUILD_GLYPH_STRINGS): Handle the case GLYPHLESS_GLYPH.
2119 (append_glyphless_glyph, produce_glyphless_glyph): New functions.
2120 (x_produce_glyphs): If a suitable font is not found, produce a
2121 glyphless glyph. Handle the case it->what == IT_GLYPHLESS.
2122 (syms_of_xdisp): Intern and staticpro Qglyphless_char,
2123 Qglyphless_char_display, Qhexa_code, Qempty_box, Qthin_space, and
2124 Qzero_width.
2125 (Vglyphless_char_display): Declare it as a Lisp variable.
2126
2127 * dispextern.h (enum glyph_type): Add GLYPHLESS_GLYPH.
a8039db1
JB
2128 (struct glyph): Change the size of the member "type" to 3.
2129 Add glyphless to the union slice and u.
b2cca856
KH
2130 (enum display_element_type): Add IT_GLYPHLESS.
2131 (enum glyphless_display_method): New enum.
2132 (struct it): New member glyphless_method.
2133 (Vglyphless_char_display): Extern it.
2134
2135 * xterm.c (x_draw_glyphless_glyph_string_foreground): New function.
2136 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
2137
a8039db1 2138 * w32term.c (x_draw_glyphless_glyph_string_foreground): New function.
b2cca856
KH
2139 (x_draw_glyph_string): Handle the case GLYPHLESS_GLYPH.
2140
2141 * nsterm.m (ns_draw_glyph_string): Handle the case
2142 GLYPHLESS_GLYPH (the detail is not yet implemented).
2143
c8c59954
GM
21442010-10-31 Glenn Morris <rgm@gnu.org>
2145
80696982
GM
2146 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Fix merge, maybe.
2147
c8c59954
GM
2148 * frame.c (syms_of_frame) <tool-bar-mode>:
2149 Default to nil if !HAVE_WINDOW_SYSTEM. (Bug#7299)
2150
46eadc7a
CY
21512010-10-31 Chong Yidong <cyd@stupidchicken.com>
2152
2153 * xterm.c (x_connection_closed): Print informative error message
2154 when aborting on GTK. This requires using shut_down_emacs
2155 directly instead of Fkill_emacs.
2156
ffe75e6b
EZ
21572010-10-29 Eli Zaretskii <eliz@gnu.org>
2158
2159 * emacs.c (main): Call syms_of_filelock unconditionally.
2160
2161 * filelock.c (syms_of_filelock): Move out of #ifdef CLASH_DETECTION
2162 clause, but keep part of it conditioned on CLASH_DETECTION.
2163
9d794026
GM
21642010-10-29 Glenn Morris <rgm@gnu.org>
2165
4f4f2973
GM
2166 * nsfns.m (Fx-display-save-under, Fx-open-connection)
2167 (Fxw-color-defined-p, Fxw-display-color-p, Fx-show-tip):
2168 * w32fns.c (Fxw_color_defined_p, Fx_open_connection):
2169 * xfns.c (Fxw_color_defined_p, Fx_open_connection):
2170 Sync docs between X, W32, NS.
2171
9d794026
GM
2172 * buffer.c (syms_of_buffer) <abbrev-mode, transient-mark-mode>:
2173 * frame.c (syms_of_frame) <tool-bar-mode>: Move doc here from Lisp.
2174
d46f6bbb
JB
21752010-10-26 Juanma Barranquero <lekktu@gmail.com>
2176
2177 * eval.c (init_eval_once): Set max_lisp_eval_depth to 600;
2178 otherwise, bootstrapping on Windows fails to compile macroexp.el.
2179
2e35f1a2
EZ
21802010-10-26 Eli Zaretskii <eliz@gnu.org>
2181
2182 * cmds.c (internal_self_insert): Don't insert if argument N is
84b28888 2183 zero or negative. (Bug#7281)
2e35f1a2 2184
8daaeda6
J
21852010-10-26 Jan Djärv <jan.h.d@swipnet.se>
2186
2187 * gtkutil.c (qttip_cb): Set title to empty for ATK (Bug#7278).
2188
6a5c2175
GM
21892010-10-25 Glenn Morris <rgm@gnu.org>
2190
2191 * Makefile.in (SOME_MACHINE_LISP): Remove easymenu.elc.
2192
7c051dd8
GM
21932010-10-24 Glenn Morris <rgm@gnu.org>
2194
2195 * w32fns.c (Fx_synchronize, Fx_change_window_property)
2196 (Fx_window_property, Fx_file_dialog):
2197 * xfns.c (Fx_synchronize, Fx_change_window_property)
2198 (Fx_window_property, Fx_file_dialog): Sync docs between w32 and X.
2199
23c261f5
CY
22002010-10-24 Chong Yidong <cyd@stupidchicken.com>
2201
2202 * xterm.c (x_connection_closed): Kill Emacs unconditionally.
2203
d414c713 22042010-10-24 Eli Zaretskii <eliz@gnu.org>
89baa1df
EZ
2205
2206 * frame.c (Fframep, Fwindow_system): Deprecate use as a predicate.
2207
2208 * dispnew.c (syms_of_display) <initial-window-system, window-system>:
2209 Deprecate use as a boolean flag.
2210
947f5e01
JM
22112010-10-24 Jim Meyering <jim@meyering.net>
2212
2213 * emacs.c (argmatch): Don't treat "--" as "--chdir".
2214
65807d73
GM
22152010-10-24 Glenn Morris <rgm@gnu.org>
2216
f5f25615
GM
2217 * w16select.c (syms_of_win16select) <selection-coding-system>:
2218 <next-selection-coding-system>:
2219 * w32select.c (syms_of_w32select) <selection-coding-system>:
2220 <next-selection-coding-system>:
3646b86d
GM
2221 Sync docs with select.el.
2222
46710489
GM
2223 * xfaces.c (syms_of_xfaces) <tty-defined-color-alist>: Sync doc with
2224 Lisp version.
2225
ea883883
GM
2226 * w32term.c (syms_of_w32term) <x-use-underline-position-properties>:
2227 Sync doc with the xterm.c version.
2228
65807d73
GM
2229 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
2230 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
2231
f3d87560
GM
22322010-10-23 Glenn Morris <rgm@gnu.org>
2233
66c6abf0 2234 * buffer.c (syms_of_buffer) <cursor-in-non-selected-windows>:
e1fd756b 2235 * frame.c (syms_of_frame) <menu-bar-mode>:
6e82cf1a 2236 * xdisp.c (syms_of_xdisp) <auto-hscroll-mode, display-hourglass>:
a102db1e 2237 <hourglass-delay>: Sync docs with Lisp.
f3d87560 2238
7b7e2c18
EZ
22392010-10-23 Eli Zaretskii <eliz@gnu.org>
2240
d1d6801e 2241 Implement mouse highlight for bidi-reordered lines.
d0010be5
EZ
2242
2243 * xdisp.c (fast_find_string_pos): #ifdef away, not used anymore.
2244 (mouse_face_from_string_pos): New function, replaces
2245 fast_find_string_pos.
2246 (note_mouse_highlight): Call it instead of fast_find_string_pos.
d1d6801e
EZ
2247 (note_mode_line_or_margin_highlight): Support bidi-reordered
2248 strings and R2L glyph rows. Fix comments.
2f3f89b3
EZ
2249 (note_mouse_highlight): When bidi reordering is turned on in a
2250 buffer, call next-single-property-change and
ef1b0ba7
SM
2251 previous-single-property-change with last argument nil.
2252 Clear mouse highlight when mouse pointer is in a R2L row on the stretch
d1d6801e 2253 glyph that stands for no text beyond the line end.
1f382a02
EZ
2254 (row_containing_pos): Don't return too early when CHARPOS is in a
2255 bidi-reordered continued line. Return immediately when the first
2256 hit is found in a line that is not continued, or when an exact
2257 match for CHARPOS is found.
d1d6801e
EZ
2258 (rows_from_pos_range): New function.
2259 (mouse_face_from_buffer_pos): Use it instead of calling
2260 row_containing_pos for START_CHARPOS and END_CHARPOS. Rewrite the
2261 function to support mouse highlight in bidi-reordered lines and
2262 not to assume that START_CHARPOS is always in mouse_face_beg_row.
2263 If necessary, swap mouse_face_beg_row and mouse_face_end_row so
2264 that the former is always above the latter or identical to it.
1554d88e 2265 (show_mouse_face): Support drawing highlighted R2L lines.
1b5a721b
EZ
2266 (coords_in_mouse_face_p): New function, bidi-aware.
2267 (cursor_in_mouse_face_p, note_mouse_highlight, erase_phys_cursor):
2268 Call it instead of comparing with mouse-face members of dpyinfo.
2269 (note_mode_line_or_margin_highlight): Fix confusingly swapped
2270 usage of hpos and vpos.
544bbc31 2271
dee186b6
J
22722010-10-22 Jan Djärv <jan.h.d@swipnet.se>
2273
2274 * xrdb.c: Include keyboard.h for MOTIF.
2275
2276 * xmenu.c: Revert 2010-07-27 change: lwlib.h is needed for
2277 MOTIF (Bug#7263).
2278
2279 * xfns.c: Include Xm/TextF and Xm/List.
bba3e508
SM
2280 (file_dialog_cb, file_dialog_unmap_cb, clean_up_file_dialog):
2281 Make ANSI prototypes.
dee186b6 2282
5fb59edb
GM
22832010-10-22 Glenn Morris <rgm@gnu.org>
2284
2285 * Makefile.in (SOME_MACHINE_LISP): Add w32-vars.
2286 Remove ccl and duplicate mouse.
2287
8b78d5e3
CY
22882010-10-21 Chong Yidong <cyd@stupidchicken.com>
2289
2290 * insdel.c (prepare_to_modify_buffer): Don't set
2291 saved-region-selection if modification hooks are disabled.
2292
b8a47412
CY
22932010-10-19 Chong Yidong <cyd@stupidchicken.com>
2294
2295 * cmds.c (Fdelete_char): Doc fix.
2296
ca3fa302 22972010-10-19 Ken Brown <kbrown@cornell.edu>
5419963b
KB
2298
2299 * s/cygwin.h (SIGNALS_VIA_CHARACTERS): New define (bug#7225).
2300
ca3fa302 23012010-10-19 Kenichi Handa <handa@m17n.org>
31daa5e1
KH
2302
2303 Fix incorrect font metrics when the same font is opened with
2304 different pixelsizes.
2305
2306 * xftfont.c: Include composite.h.
2307 (xftfont_shape): New function.
2308 (syms_of_xftfont): Set xftfont_driver.shape.
2309
c978536f
JD
23102010-10-18 Julien Danjou <julien@danjou.info>
2311
2312 * frame.c (Fframe_pointer_visible_p):
2313 Add `frame-pointer-visible-p' to get the pointer visibility.
2314
4b2d9ec2
LMI
23152010-10-18 Lars Magne Ingebrigtsen <larsi@gnus.org>
2316
2317 * gnutls.c (emacs_gnutls_read): Return 0 if we get a
2318 non-"EAGAIN"-like error to signal to Emacs that the socket should
2319 be closed.
2320
9cf66cf2
EZ
23212010-10-15 Eli Zaretskii <eliz@gnu.org>
2322
c3911ead
EZ
2323 * unexcoff.c (make_hdr): Fix prototype according to changes in
2324 2010-10-03T13:59:56Z!dann@ics.uci.edu.
2325
9cf66cf2
EZ
2326 * image.c (tiff_load): Cast 3rd argument to avoid compiler warning.
2327
be98da05
TH
23282010-10-15 Tassilo Horn <tassilo@member.fsf.org>
2329
2330 * Makefile.in (really-oldXMenu): Fix typo in variable name that
2331 made building the X menu fail.
cc98b256 2332 (really-oldXMenu): Fix my previous fix.
be98da05 2333
220d91b8 23342010-10-14 Damyan Pepper <damyanp@gmail.com>
9fa82824
DP
2335
2336 Fix handling of font properties on Windows (bug#6303).
2337 * font.c (font_filter_properties): New function, refactored from
2338 ftfont_filter_properties.
2339 * font.h (font_filter_properties): Declare.
2340 * ftfont.c (ftfont_filter_properties): Use font_filter_properties.
2341 * w32font.c (w32font_booleans, w32font_non_booleans): New variables.
2342 (w32font_filter_properties): New function.
2343 (w32font_driver): Add w32font_filter_properties.
2344
220d91b8 23452010-10-14 Juanma Barranquero <lekktu@gmail.com>
51e4f4a8 2346
c0943d3d 2347 * font.c (Ffont_variation_glyphs):
51e4f4a8
JB
2348 * ccl.c (Fccl_execute_on_string): Fix typo in docstring.
2349
24f981c9
JB
23502010-10-14 Juanma Barranquero <lekktu@gmail.com>
2351
2352 * w32fns.c (w32_wnd_proc, file_dialog_callback):
2353 * w32font.c (w32_generic_family):
2354 * w32inevt.c (key_event):
2355 * w32menu.c (fill_in_menu):
2356 * w32proc.c (reader_thread, w32_executable_type, compare_env)
2357 (merge_and_sort_env, int_from_hex, enum_locale_fn, enum_codepage_fn):
2358 * w32term.c (w32_read_socket): Make static.
2359
850690cc
JB
23602010-10-13 Juanma Barranquero <lekktu@gmail.com>
2361
2362 * image.c (DEF_IMGLIB_FN): Add argument to adapt to strict
2363 prototypes; all callers changed.
2364
5e371708
JB
23652010-10-13 Juanma Barranquero <lekktu@gmail.com>
2366
2367 * makefile.w32-in (TLIB2): Rename from TLIBW32.
2368 (OBJ2): New macro.
2369 (WIN32OBJ, FONTOBJ): Remove.
2370 (OBJ1): Redistribute object files with OBJ2.
2371 (LIBS, $(TEMACS)): Use TLIB2.
2372 (make-buildobj-CMD, make-buildobj-SH): Use OBJ2.
2373 ($(TLIB2), TAGS, TAGS-LISP, TAGS-gmake): Depend on OBJ2.
2374
2e288d54
JB
23752010-10-13 Juanma Barranquero <lekktu@gmail.com>
2376
2377 * emacs.c (Vdynamic_library_alist)
2378 (syms_of_emacs) <dynamic-library-alist>: Move from image.c and rename.
2379 Doc fix.
2380
2381 * lisp.h (Vdynamic_library_alist): Declare extern.
2382
2383 * image.c (Vimage_library_alist)
2384 (syms_of_image) <image-library-alist>: Move to emacs.c and rename.
2385 (lookup_image_type): Use Vdynamic_library_alist.
2386 (Finit_image_library): Doc fix.
2387
aba1381b
DN
23882010-10-12 Dan Nicolaescu <dann@ics.uci.edu>
2389
2390 * Makefile.in (lispsource, libsrc, etc, oldxmenudir, lwlibdir)
2391 (lispdir): Remove trailing /, update all uses.
2392
4c14013d 23932010-10-12 Jan Djärv <jan.h.d@swipnet.se>
a2e35ef5
JD
2394
2395 * nsterm.m (Qleft): Declare.
2396 (ns_right_alternate_modifier): New variable
2397 (NSRightAlternateKeyMask): New define.
2398 (EV_MODIFIERS): Parse NSRightAlternateKeyMask if
2399 ns_right_alternate_modifier isn't Qleft.
2400 (keyDown): If ns_right_alternate_modifier isn't Qleft, use it
2401 as emacs modifier for NSRightAlternateKeyMask.
2402 (syms_of_nsterm): DEFVAR_LISP ns-right-alternate-modifier.
2403
355cdaf3
LMI
24042010-10-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
2405
2406 * gnutls.c (emacs_gnutls_write): If we're trying to write before
2407 gnutls is ready, return EAGAIN as the errno.
2408
4c620157
DN
24092010-10-10 Dan Nicolaescu <dann@ics.uci.edu>
2410
edfd76ce
DN
2411 * vm-limit.c:
2412 * unexhp9k800.c:
2413 * unexelf.c:
2414 * unexaix.c:
2415 * termcap.c: Remove #ifdef emacs / #ifndef emacs code, unused.
2416
a4daeecf
DN
2417 * Makefile.in (temacs): Use $(ALL_CFLAGS) on the link line.
2418 (PROFILING_LDFLAGS): Remove, not needed anymore.
2419
2cb72a75 2420 * Makefile.in: Use $(...) everywhere instead of ${...}
4cf3ad30
DN
2421 (CRT_DIR): Move near potential user.
2422 (START_FILE): Move near CRT_DIR, it might use it.
2cb72a75 2423
4c620157
DN
2424 * sysdep.c (LPASS8): Remove, unused.
2425 (emacs_ospeed): Change from being a global to a local in the only
2426 user: init_baud_rate.
2427
b845653d
LMI
24282010-10-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
2429
2430 * gnutls.c (syms_of_gnutls): All the bootprops are keywords.
bda6d2bd 2431 (emacs_gnutls_write): Remove the debuggin fsync call.
b845653d 2432 (emacs_gnutls_read): Return -1 if we got an error from
bda6d2bd 2433 gnutls_read. This allows us to actually read lots of data from
b845653d 2434 the GnuTLS stream.
2e6c74c5
LMI
2435 (emacs_gnutls_write): Check for GNUTLS_E_AGAIN and not EINTR.
2436 According to the documentation, this is correct, and it seems to
2437 make things work.
b845653d 2438
3625b3e2
CY
24392010-10-09 Chong Yidong <cyd@stupidchicken.com>
2440
2441 * xterm.c (x_draw_relief_rect): Clear corner pixels.
2442
8b1c619f
MA
24432010-10-08 Michael Albinus <michael.albinus@gmx.de>
2444
2445 * keyboard.c: Revert last change; it was not intended to be
2446 synchronized with the trunk.
2447
93d50df8
KH
24482010-10-08 Kenichi Handa <handa@m17n.org>
2449
2b7c9342 2450 * coding.c (complement_process_encoding_system): Fix previous change.
5886ec9c 2451
4628bef1 24522010-10-08 Michael Albinus <michael.albinus@gmx.de>
a79b0f28
MA
2453
2454 * dbusbind.c (syms_of_dbusbind): Move putenv call ...
2455 (Fdbus_init_bus): ... here. (Bug#7113)
2456
4628bef1 24572010-10-08 Glenn Morris <rgm@gnu.org>
7b2bf907
GM
2458
2459 * buffer.c (before-change-functions, after-change-functions):
2460 Three-year overdue doc fix following 2007-08-13 change.
2461
4628bef1 24622010-10-08 Kenichi Handa <handa@m17n.org>
1911a33b
KH
2463
2464 * coding.c (coding_inherit_eol_type): If parent doesn't specify
2465 eol-format, inherit from the system's default.
2466 (complement_process_encoding_system): Make a new coding system
2467 inherit the original eol-format.
2468
4628bef1 24692010-10-08 Kenichi Handa <handa@m17n.org>
fcaf8878
KH
2470
2471 * coding.c (complement_process_encoding_system): New function.
2472
2473 * coding.h (complement_process_encoding_system): Extern it.
2474
2475 * callproc.c (Fcall_process): Complement the coding system for
2476 encoding arguments.
2477 (Fcall_process_region): Complement the coding system for encoding
2478 the input to the process.
2479
2480 * process.c (Fstart_process): Complement the coding system for
2481 encoding arguments.
2482 (send_process): Complement the coding system for encoding what
2483 sent to the process.
2484
4628bef1 24852010-10-08 Kenichi Handa <handa@m17n.org>
18acb5ad
KH
2486
2487 * xfont.c (xfont_open): Fix setting of font->average_width from
2488 :avgwidth property (Bug#7123).
2489
4628bef1 24902010-10-08 Michael Albinus <michael.albinus@gmx.de>
dec83468
MA
2491
2492 * dbusbind.c (syms_of_dbusbind): Use putenv instead of setenv, it
2493 is more portable.
2494
2495 * keyboard.c (gobble_input): Move call of xd_read_queued_messages ...
2496 (kbd_buffer_get_event): ... here. This is needed for cygwin, which
2497 has not defined SIGIO.
2498
389454fb
CY
24992010-10-08 Chong Yidong <cyd@stupidchicken.com>
2500
2501 * xterm.c (x_draw_relief_rect): If box width is larger than 1,
2502 draw the outermost line using the black relief, for legibility.
2503 Omit drawing the four corner pixels.
2504
51b403bd
CY
25052010-10-04 Chong Yidong <cyd@stupidchicken.com>
2506
2507 * keyboard.c (echo_prompt): Function moved into read_key_sequence.
2508 (read_key_sequence): Inline echo_prompt.
2509 (echo_dash): Add a dash only if key is continued (Bug#7137).
2510
3e6ae1a4
DN
25112010-10-04 Dan Nicolaescu <dann@ics.uci.edu>
2512
2513 Remove O_RDONLY, O_WRONLY definitions, not needed.
2514 * unexcoff.c:
2515 * lread.c:
2516 * fileio.c:
2517 * doc.c:
2518 * callproc.c:
2519 * alloc.c:
2520 * termcap.c: Remove O_RDONLY O_WRONLY definitions.
2521
c1ae068b
LMI
25222010-10-03 Teodor Zlatanov <tzz@lifelogs.com>
2523
2524 * gnutls.h (GNUTLS_LOG2): Convenience macro.
2525
2526 * gnutls.c: Add property list symbol holders.
2527 (emacs_gnutls_handshake): Clarify how sockets are passed to
2528 GnuTLS.
2529 (gnutls_log_function2): Convenience function using GNUTLS_LOG2.
2530 (Fgnutls_boot): Get all parameters from a plist. Require trustfiles
2531 and keyfiles to be a list of file names. Default to "NORMAL" for
2532 the priority string. Improve logging.
2533
e2afe435
GM
25342010-10-03 Glenn Morris <rgm@gnu.org>
2535
2536 * fileio.c (Vdirectory_sep_char): Remove.
2537
dd5ecd6b
DN
25382010-10-03 Dan Nicolaescu <dann@ics.uci.edu>
2539
b5437a05
DN
2540 * termhooks.h: Remove #ifdef CONSP.
2541
4777478a
DN
2542 * xterm.c (NO_INLINE, noinline): Move definitions to ../configure.in.
2543
a3d5088d
DN
2544 Include <fcntl.h> unconditionally.
2545 * termcap.c:
2546 * sysdep.c:
2547 * lread.c:
2548 * keyboard.c:
2549 * filelock.c:
2550 * fileio.c:
2551 * doc.c:
2552 * callproc.c:
2553 * alloc.c: Remove include guards for <fcntl.h>, process.c already
2554 does it.
2555
82719735
DN
2556 * process.c: Do not include <sys/wait.h>, syswait.h does it.
2557
9de940b5
DN
2558 * sysdep.c (flush_pending_output): Remove code, does not do
2559 anything on any platform.
2560
57507bf8 2561 Remove unused code.
bba3e508
SM
2562 * sysdep.c (select_alarm, sys_select, read_input_waiting):
2563 Remove select emulation, all systems support select.
57507bf8
DN
2564 (set_exclusive_use): Remove, the only user is in an #if 0 block.
2565 * process.c (create_process): Remove #if 0 code.
2566
dd5ecd6b
DN
2567 Remove unused arguments for unexec.
2568 The third one is never used, and the last two are always passed as zero.
2569 * emacs.c (unexec): Add declaration.
2570 (Fdump_emacs): Only pass the first two arguments to unexec.
2571 Simplify #ifdef.
2572 * unexw32.c (unexec):
2573 * unexsol.c (unexec):
2574 * unexhp9k800.c (unexec):
2575 * unexcw.c (unexec): Remove the last 3 arguments, unused.
2576 * unexelf.c (unexec): Remove the last 3 arguments, unused.
2577 (find_section): Use const.
2578 * unexmacosx.c (unexec): Remove the last 3 arguments, unused.
2579 (unexec_error): Declare it NO_RETURN.
2580 * unexcoff.c (make_hdr): Assume bss_start is always zero, remove
2581 it as an argument, remove data_start and entry_address arguments, unused.
2582 (unexec): Remove bss_start, data_start and
2583 entry_address arguments.
2584 * unexaix.c (make_hdr): Assume bss_start is always zero, remove
2585 it as an argument, remove data_start and entry_address arguments, unused.
2586 (unexec): Remove bss_start, data_start and
2587 entry_address arguments.
2588
74f1829d
JB
25892010-10-03 Juanma Barranquero <lekktu@gmail.com>
2590
7f467e14
JB
2591 * makefile.w32-in (TAGS, TAGS-LISP, TAGS-gmake): Add $(FONTOBJ).
2592
74f1829d
JB
2593 * gnutls.c (emacs_gnutls_handshake, gnutls_make_error)
2594 (gnutls_emacs_global_init, gnutls_emacs_global_deinit): Make static.
2595 (Fgnutls_get_initstage, Fgnutls_deinit, Fgnutls_boot, Fgnutls_bye):
2596 Fix typos in docstrings.
2597 (Fgnutls_error_fatalp, Fgnutls_error_string): Doc fixes.
2598 (Fgnutls_errorp): Doc fix; use ERR for the argument name.
2599
6926550f
CY
26002010-10-03 Chong Yidong <cyd@stupidchicken.com>
2601
2602 * keyboard.c (command_loop_1): Make sure the mark is really alive
2603 before using it (Bug#7044).
2604
54b65f7b
JB
26052010-10-02 Juanma Barranquero <lekktu@gmail.com>
2606
2607 * makefile.w32-in (tags): Rename target to full-tags.
2608
383ebd15
EZ
26092010-10-02 Eli Zaretskii <eliz@gnu.org>
2610
2611 * emacs.c (main): Remove !WINDOWSNT conditional.
2612 (Fkill_emacs): Don't mention exemption on MS-Windows.
2613
9c524fcb
GM
26142010-10-02 Glenn Morris <rgm@gnu.org>
2615
3226d6ca
GM
2616 * character.c (Fchar_bytes): Remove obsolete function.
2617 (syms_of_character): Remove Schar_bytes.
2618
9c524fcb
GM
2619 * emacs.c (fatal_error_signal): Also run Fkill_emacs on SIGINT.
2620 (main) [!WINDOWSNT]: Handle SIGINT with fatal_error_signal
2621 in batch-mode.
2622 (Fkill_emacs): Doc fix. Also run the hook in batch mode.
2623 (kill-emacs-hook): Doc fix.
2624
1b217849
LMI
26252010-10-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2626
2627 * xml.c (Flibxml_parse_xml_region, Flibxml_parse_html_region)
bba3e508 2628 (parse_region): Rework to take regions instead of strings, and
1b217849
LMI
2629 renamed to reflect that these are the libxml functions.
2630
54cc6a83
EZ
26312010-10-01 Eli Zaretskii <eliz@gnu.org>
2632
0ebf79de
EZ
2633 * term.c (init_tty) [DOS_NT]: Don't call Wcm_clear after setting
2634 screen dimensions in tty->Wcm.
2635
54cc6a83
EZ
2636 * xdisp.c (set_cursor_from_row): When the row is truncated and
2637 point is outside the range of displayed characters, position the
2638 cursor inside the scroll margin. (Bug#6349)
2639
321401d1
DN
26402010-10-01 Dan Nicolaescu <dann@ics.uci.edu>
2641
4cacd822
DN
2642 Do not include stdlib.h and string.h, config.h does it.
2643 * xfont.c:
2644 * w32term.c:
2645 * w32reg.c:
2646 * w32inevt.c:
2647 * w32heap.c:
2648 * w32console.c:
2649 * w16select.c:
2650 * unexsol.c:
2651 * term.c:
2652 * sound.c:
2653 * scroll.c (m):
2654 * gtkutil.c:
2655 * font.c:
2656 * filelock.c:
2657 * fileio.c:
2658 * dosfns.c:
2659 * dbusbind.c:
2660 * bidi.c:
2661 * callproc.c:
2662 * process.c:
2663 * msdos.c:
2664 * charset.c: Do not include stdlib.h and string.h, config.h does it.
2665
bba3e508
SM
2666 * callproc.c (SIGCHLD): Remove conditional definition, syssignal.h
2667 defines it.
0781e7ab 2668
9bf58201
DN
2669 * process.c: Move #include <pty.h> earlier.
2670 (SIGCHLD): Remove conditional definition, syssignal.h defines it.
2671 (pty_name): Move definition later.
2672
088dcc3e
DN
2673 * nsselect.m (syms_of_nsselect):
2674 * nsmenu.m (syms_of_nsmenu):
2675 * nsfns.m (syms_of_nsfns):
2676 * msdos.c (syms_of_msdos):
4cacd822 2677
088dcc3e
DN
2678 * image.c (syms_of_image):
2679 * charset.c (syms_of_charset): Use intern_c_string instead of intern.
2680
321401d1
DN
2681 * point.h: Remove, unused.
2682
73077a9a
EZ
26832010-10-01 Eli Zaretskii <eliz@gnu.org>
2684
2685 * makefile.w32-in (TAGS, frc, TAGS-LISP, ../nt/TAGS, tags)
2686 (TAGS-gmake, TAGS-nmake, TAGS-LISP-gmake, TAGS-LISP-nmake)
2687 (nt-TAGS-gmake, nt-TAGS-nmake): New targets.
2688
55e572ef
DN
26892010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
2690
2691 * xml.c (parse_string): Use const.
2692
d4b6d95d
LMI
26932010-09-30 Lars Magne Ingebrigtsen <larsi@gnus.org>
2694
ef1b0ba7
SM
2695 * eval.c (Fbacktrace): Don't overwrite print-level on exit.
2696 Also only override Vprint_level if it isn't already bound, and increase
d4b6d95d
LMI
2697 the level to 8 to produce more useful backtraces for bug reports.
2698
e4b6db12
DN
26992010-09-30 Dan Nicolaescu <dann@ics.uci.edu>
2700
2701 * Makefile.in: ecrt0.c does not exist anymore, do not mention it.
2702
1becef93
JB
27032010-09-30 Juanma Barranquero <lekktu@gmail.com>
2704
2705 * w32console.c (vga_stdcolor_name): Remove unused function;
2706 presumed dead after 2007-11-30T13:57:21Z!jasonr@gnu.org.
2707
df7fcaff
LMI
27082010-09-29 Lars Magne Ingebrigtsen <larsi@gnus.org>
2709
bac5cef8
LMI
2710 * gnutls.c (emacs_gnutls_handshake): Made into internal function.
2711 (Fgnutls_boot): Start the handshake.
2712 (emacs_gnutls_read): Perform the handshake from the reader loop.
e6059fa2
LMI
2713 (Fgnutls_boot): Remove some debugging messages.
2714 Change indentation throughout to use the Emacs style.
2715 (emacs_gnutls_handshake): Cast the fds to something that's
2716 possibly the expected length.
2717 (emacs_gnutls_write): Return -1 if we try to write before handshake.
bac5cef8 2718
df7fcaff
LMI
2719 * process.h (Lisp_Process): Add a gnutls_p field to Lisp_Process.
2720
2721 * process.c (make_process): Set the gnutls_p field to zero by
2722 default.
2723 (read_process_output): Always call the gnutls_read function if the
2724 stream is a gnutls stream.
2725 (send_process): Ditto for writes.
2726
2727 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read): Refuse to read
2728 or write anything until the state is GNUTLS_STAGE_READY.
2729 (Fgnutls_boot): Mark the stream as being a gnutls stream.
2730
d585695f
EZ
27312010-09-29 Eli Zaretskii <eliz@gnu.org>
2732
af7ef32d
EZ
2733 * xdisp.c (reseat_1): Initialize bidi_it.paragraph_dir to
2734 NEUTRAL_DIR.
2735 (handle_invisible_prop, iterate_out_of_display_property)
2736 (next_element_from_buffer): If bidi_it.first_elt is set, call
2737 bidi_paragraph_init with NO_DEFAULT_P argument non-zero.
2738 (Bug#7128)
2739
d585695f
EZ
2740 * print.c (print_object): Fix format string and argument types for
2741 printing a Lisp_Misc_Marker.
2742
2743 * xdisp.c (pos_visible_p, c_string_pos, number_of_chars)
2744 (load_overlay_strings, get_overlay_strings_1)
2745 (get_overlay_strings, forward_to_next_line_start)
2746 (back_to_previous_visible_line_start, reseat, reseat_to_string)
2747 (get_next_display_element, next_element_from_string)
2748 (next_element_from_c_string, next_element_from_buffer)
2749 (move_it_vertically_backward, move_it_by_lines, add_to_log)
2750 (message_dolog, message_log_check_duplicate, message2_nolog)
2751 (message3, message3_nolog, vmessage, set_message, set_message_1)
2752 (hscroll_window_tree, text_outside_line_unchanged_p)
2753 (set_cursor_from_row, set_vertical_scroll_bar, redisplay_window)
2754 (find_last_unchanged_at_beg_row)
2755 (find_first_unchanged_at_end_row, row_containing_pos)
2756 (trailing_whitespace_p, display_mode_element, decode_mode_spec)
bba3e508
SM
2757 (display_count_lines, x_produce_glyphs, note_mouse_highlight):
2758 Use EMACS_INT for buffer and string positions.
d585695f
EZ
2759
2760 * dispextern.h (struct it) <string_nchars>: Declare EMACS_INT.
2761 (row_containing_pos): Adjust prototype.
2762
2763 * lisp.h (pos_visible_p, message2, message2_nolog, message3)
2764 (message2_nolog, set_message): Adjust prototypes.
2765
a6f3211f
SM
27662010-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
2767
2768 * gnutls.c (Fgnutls_boot): Remove unused vars `data' and `srp_cred'.
2769 (Fgnutls_boot): Use SDATA.
2770 (Fgnutls_handshake): Remove unused var `max_log_level'.
2771
e0720500
MA
27722010-09-27 Michael Albinus <michael.albinus@gmx.de>
2773
11a5af7c 2774 * dbusbind.c (syms_of_dbusbind): Set $DBUS_FATAL_WARNINGS to "0".
e0720500
MA
2775 (Bug#7113)
2776
d8a4b27a
J
27772010-09-27 Jan Djärv <jan.h.d@swipnet.se>
2778
42d3022b
J
2779 * xgselect.c (xg_select): Clear file descriptors not set from
2780 rfds and wfds.
2781
d8a4b27a
J
2782 * process.c (wait_reading_process_output): Add missing FD_CLR
2783 for write_mask (must mirror connect_wait_mask).
2784
8ed70bf3
LMI
27852010-09-27 Teodor Zlatanov <tzz@lifelogs.com>
2786
2787 * gnutls.c (gnutls_log_function): Show level and "gnutls.c"
2788 prefix.
2789 (Fgnutls_boot): Use changed process members. Use log level with a
2790 function parameter to set it. Bring back Emacs-level debugging
2791 messages at log level 1 and 2.
2792
2793 * process.c (make_process): Initialize gnutls_log_level.
2794
2795 * process.h: Add gnutls_log_level and rename x509_cred and
2796 anon_cred to have the gnutls_ prefix for consistency.
2797
2798 * gnutls.h (GNUTLS_LOG): Add convenience macro.
2799
bedf4aab
JB
28002010-09-27 Juanma Barranquero <lekktu@gmail.com>
2801
2802 * w32.c (g_b_init_get_sid_identifier_authority)
2803 (GetSidIdentifierAuthority_Proc, get_sid_identifier_authority):
2804 Remove, not used.
2805 (globals_of_w32): Don't set g_b_init_get_sid_identifier_authority.
2806 (init_winsock): Remove useless assignment.
2807 (open_process_token, get_token_information, lookup_account_sid)
2808 (get_sid_sub_authority, get_sid_sub_authority_count, get_file_security)
2809 (get_security_descriptor_owner, get_security_descriptor_group)
2810 (is_valid_sid, equal_sid, get_length_sid, copy_sid)
2811 (get_native_system_info, get_system_times, init_user_info, crlf_to_lf)
2812 (is_unc_volume, GetCachedVolumeInformation, get_volume_info)
2813 (is_fat_volume, open_unc_volume, read_unc_volume, close_unc_volume)
2814 (unc_volume_file_attributes, convert_from_time_t)
2815 (create_toolhelp32_snapshot, process32_first, process32_next)
2816 (open_thread_token, impersonate_self, revert_to_self)
2817 (get_process_memory_info, get_process_working_set_size)
2818 (global_memory_status, global_memory_status_ex, socket_to_fd)
2819 (shutdown_handler): Make static.
2820
08609ffd
MA
28212010-09-27 Michael Albinus <michael.albinus@gmx.de>
2822
2823 * dbusbind.c (dbus_fd_cb, xd_get_dispatch_status)
2824 (xd_pending_messages): Functions removed.
2825 (xd_read_queued_messages): Add parameters fd, *data, for_read in
2826 order to be compatible with add_read_fd. Determine bus from data,
2827 and call xd_read_message just for this bus.
2828 (xd_add_watch): Use xd_read_queued_messages as callback function.
2829 Add data.
2830
2831 * lisp.h (xd_pending_messages, xd_read_queued_messages): Remove.
2832
d2e9d0bb
LMI
28332010-09-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
2834
ef1b0ba7 2835 * gnutls.c (gnutls_log_function): Add more debugging.
ec9f09be 2836 (emacs_gnutls_read): Don't infloop while reading.
d2e9d0bb 2837
4be9765d
KH
28382010-09-27 Kenichi Handa <handa@m17n.org>
2839
2840 These changes are to remove restriction on the number of glyphs in
2841 one composition.
2842
2843 * dispextern.h (struct glyph): Change the member "slice" to union.
2844 Remove u.cmp.from and u.cmp.to. Give more bits to u.cmp.id.
bba3e508 2845 (GLYPH_SLICE_EQUAL_P): Adjust for the above change.
4be9765d
KH
2846
2847 * dispnew.c (buffer_posn_from_coords): Use glyph->slice.img
2848 instead of glyph->slice.
2849 (marginal_area_string): Likewise.
2850
2851 * term.c (encode_terminal_code): Use glyph->slice.cmp instead of
2852 glyph->u.cmp.
2853 (append_composite_glyph): Likewise.
2854
2855 * xdisp.c (dump_glyph): Use glyph->slice.cmp instead of
2856 glyph->u.cmp.
2857 (fill_gstring_glyph_string, x_get_glyph_overhangs)
2858 (append_composite_glyph): Likewise.
2859 (fill_image_glyph_string): Use glyph->slice.img instead of
2860 glyph->slice.
2861 (append_glyph, produce_image_glyph, append_stretch_glyph)
2862 (note_mouse_highlight): Likewise.
2863
3fad2ad2
J
28642010-09-26 Jan Djärv <jan.h.d@swipnet.se>
2865
bf05eed6
J
2866 * process.c (add_keyboard_wait_descriptor)
2867 (delete_keyboard_wait_descriptor): Reinstate ifdef subprocesses.
82d6e50b
J
2868 (wait_reading_process_output): Don't pass write_mask to select
2869 if SELECT_CANT_DO_WRITE_MASK is defined.
2870 (SELECT_CANT_DO_WRITE_MASK): Define if SELECT_CANT_DO_WRITE_MASK.
bf05eed6 2871
3fad2ad2
J
2872 * process.h (add_read_fd, delete_read_fd, add_write_fd)
2873 (delete_write_fd): Declare.
2874
2875 * process.c (gpm_wait_mask, max_gpm_desc): Remove.
2876 (write_mask): New variable.
ef1b0ba7 2877 (max_input_desc): Rename from max_keyboard_desc.
3fad2ad2 2878 (fd_callback_info): New variable.
70e31436
JB
2879 (add_read_fd, delete_read_fd, add_write_fd, delete_write_fd):
2880 New functions.
3fad2ad2
J
2881 (Fmake_network_process): FD_SET write_mask.
2882 (deactivate_process): FD_CLR write_mask.
2883 (wait_reading_process_output): Connecting renamed to Writeok.
70e31436
JB
2884 check_connect removed. check_write is new. Remove references to gpm.
2885 Use Writeok/check_write unconditionally (i.e. no #ifdef
3fad2ad2
J
2886 NON_BLOCKING_CONNECT) instead of Connecting.
2887 Loop over file descriptors and call callbacks in fd_callback_info
2888 if file descriptor is ready for I/O.
2889 (add_gpm_wait_descriptor): Just call add_keyboard_wait_descriptor.
2890 (delete_gpm_wait_descriptor): Just call delete_keyboard_wait_descriptor.
2891 (keyboard_bit_set): Use max_input_desc.
70e31436
JB
2892 (add_keyboard_wait_descriptor, delete_keyboard_wait_descriptor):
2893 Remove #ifdef subprocesses. Use max_input_desc.
3fad2ad2
J
2894 (init_process): Initialize write_mask and fd_callback_info.
2895
2896 * keyboard.c (readable_events, gobble_input): Remove DBUS code.
2897
2898 * dbusbind.c: Include process.h.
2899 (dbus_fd_cb, xd_find_watch_fd, xd_toggle_watch)
2900 (xd_read_message_1): New functions.
70e31436
JB
2901 (xd_add_watch, xd_remove_watch): Call xd_find_watch_fd.
2902 Handle watch for both read and write.
3fad2ad2
J
2903 (Fdbus_init_bus): Also register xd_toggle_watch.
2904 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
2905 (Fdbus_method_error_internal, Fdbus_send_signal): Remove call
2906 to dbus_connection_flush.
70e31436 2907 (xd_read_message): Move most of the code to xd_read_message_1.
3fad2ad2
J
2908 Call xd_read_message_1 until status is COMPLETE.
2909
dce4c2ac
DN
29102010-09-26 Dan Nicolaescu <dann@ics.uci.edu>
2911
2912 * term.c: Do not include sys/ioctl.h, not needed.
70e31436
JB
2913 (init_tty): Reorder code to reduce the number of #ifdefs.
2914 No code changes.
dce4c2ac 2915
8af55556
TZ
29162010-09-26 Teodor Zlatanov <tzz@lifelogs.com>
2917
2918 * process.h: Set up GnuTLS support.
2919
2920 * process.c (make_process, Fstart_process)
2921 (read_process_output, send_process): Set up GnuTLS support for
2922 process input/output file descriptors.
2923
2924 * gnutls.h: The GnuTLS glue for Emacs, macros and enums.
2925
2926 * gnutls.c: The source code for GnuTLS support in Emacs.
2927
2928 * emacs.c: Set up GnuTLS support and call syms_of_gnutls.
2929
2930 * config.in: Set up GnuTLS support.
2931
2932 * Makefile.in (LIBGNUTLS_LIBS, LIBGNUTLS_CFLAGS, ALL_CFLAGS)
2933 (obj, LIBES): Set up GnuTLS support.
2934
83e245c4
JB
29352010-09-26 Juanma Barranquero <lekktu@gmail.com>
2936
2937 * w32.c (get_emacs_configuration_options): Fix previous change.
2938
d24ec09a
CY
29392010-09-25 Chong Yidong <cyd@stupidchicken.com>
2940
2941 * insdel.c (prepare_to_modify_buffer): Ensure the mark marker is
2942 alive before using it (Bug#6977).
2943
b7bdc47c
LMI
29442010-09-25 Lars Magne Ingebrigtsen <larsi@gnus.org>
2945
a952d5f3
LMI
2946 * xdisp.c (face_before_or_after_it_pos): EMACS_INT/int fixup.
2947
2948 * dispextern.h: EMACS_INT/int fixup.
2949
2950 * xdisp.c (string_pos_nchars_ahead, init_iterator): EMACS_INT/int
2951 fixup.
2952
b7bdc47c
LMI
2953 * xrdb.c (magic_file_p): EMACS_INT/int fixup.
2954
41118bd3
EZ
29552010-09-25 Eli Zaretskii <eliz@gnu.org>
2956
2452438f
EZ
2957 * window.c (Fpos_visible_in_window_p, Fdelete_other_windows)
2958 (Fselect_window, window_scroll_pixel_based)
2959 (window_scroll_line_based, Frecenter, Fset_window_configuration):
2960 Use EMACS_INT for buffer positions.
2961
2962 * textprop.c (validate_interval_range, interval_of)
2963 (property_change_between_p, Fadd_text_properties)
2964 (set_text_properties_1, Fremove_text_properties)
2965 (Fremove_list_of_text_properties, Ftext_property_any)
2966 (Ftext_property_not_all, copy_text_properties)
2967 (text_property_list, extend_property_ranges)
2968 (verify_interval_modification): Use EMACS_INT for buffer
2969 positions.
2970
f877c546
EZ
2971 * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
2972 for buffer positions.
2973
2974 * process.c (read_process_output, send_process)
2975 (Fprocess_send_region, status_notify): Use EMACS_INT for buffer
2976 and string positions and size.
2977
da43f021
EZ
2978 * print.c (print_object, print_string, strout): Use EMACS_INT for
2979 string indices.
2980
2981 * minibuf.c (string_to_object): Use EMACS_INT for string position
2982 and size.
2983
2984 * marker.c (verify_bytepos): Use EMACS_INT for buffer positions.
2985
2986 * lread.c <read_from_string_index, read_from_string_index_byte>
2987 <read_from_string_limit, readchar_count>: Define EMACS_INT.
2988 (readchar, unreadchar, read_internal_start): Use EMACS_INT for
2989 buffer positions and string length.
2990
41118bd3
EZ
2991 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare
2992 EMACS_INT.
2993 (echo_truncate, adjust_point_for_property, read_char)
2994 (gen_help_event, make_lispy_event, modify_event_symbol)
2995 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
2996 for buffer positions and string length.
2997
2998 * keyboard.h (gen_help_event): Adjust prototype.
2999
3000 * termhooks.h <struct input_event>: Make `code' member EMACS_INT.
3001
3002 * commands.h <last_point_position>: Declare EMACS_INT.
3003
3004 * xdisp.c <help_echo_pos>: Define as EMACS_INT.
3005 (truncate_echo_area): Accept EMACS_INT argument.
3006
3007 * dispextern.h <help_echo_pos>: Declare EMACS_INT.
3008
3009 * lisp.h (truncate_echo_area): Adjust prototype.
3010
3011 * composite.c (composition_adjust_point): Return EMACS_INT.
3012
3013 * composite.h (composition_adjust_point): Adjust prototype.
3014
ba3033ee
JB
30152010-09-25 Juanma Barranquero <lekktu@gmail.com>
3016
3017 * process.c (Fmake_network_process): When arg :host is 'local,
3018 use address 127.0.0.1, not name "localhost". (Bug#6781)
3019
4f3a2f8d
EZ
30202010-09-24 Eli Zaretskii <eliz@gnu.org>
3021
5816888b
EZ
3022 * indent.c (Fcurrent_indentation, indented_beyond_p)
3023 (compute_motion): Use EMACS_INT for buffer position variables.
3024
3025 * lisp.h (indented_beyond_p): Adjust prototype.
3026
3027 * buffer.c (overlay_strings): Return EMACS_INT.
3028
3029 * buffer.h (overlay_strings): Adjust prototype.
3030
3031 * region-cache.c (pp_cache): Adjust format to arguments.
3032
3033 * eval.c <specpdl_size, lisp_eval_depth>: Declare EMACS_INT.
3034 (call_debugger): Use EMACS_INT for specpdl_size related variables.
3035 (verror): Use EMACS_INT for size of allocated buffer.
3036
ace1712c
EZ
3037 * keyboard.c (make_lispy_position): Use EMACS_INT for buffer
3038 positions.
3039
3040 * xdisp.c (redisplay_internal, try_window_id)
bba3e508
SM
3041 (set_cursor_from_row, find_first_unchanged_at_end_row):
3042 Use EMACS_INT for buffer positions.
ace1712c 3043
f5276b75 3044 * dispextern.h (set_cursor_from_row): Adjust prototype.
ace1712c
EZ
3045
3046 * dispnew.c (increment_matrix_positions)
3047 (increment_row_positions, copy_glyph_row_contents)
3048 (mode_line_string, marginal_area_string): Use EMACS_INT for buffer
3049 positions.
3050
3051 * dispextern.h (mode_line_string, marginal_area_string)
bba3e508
SM
3052 (increment_matrix_positions, increment_row_positions):
3053 Adjust prototypes.
ace1712c
EZ
3054
3055 * data.c (Faref, Faset): Use EMACS_INT for string length and
3056 positions.
3057
3058 * cmds.c (internal_self_insert): Use EMACS_INT for the count of
3059 characters to insert.
3060
3061 * ccl.c (Fccl_execute_on_string): Use EMACS_INT for string
3062 position and size.
3063
4f3a2f8d
EZ
3064 * syntax.c (scan_words, update_syntax_table)
3065 (prev_char_comend_first, back_comment, skip_chars)
bba3e508
SM
3066 (skip_syntaxes, Fforward_comment, Fbackward_prefix_chars):
3067 Use EMACS_INT for buffer and string positions.
4f3a2f8d
EZ
3068
3069 * syntax.h (scan_words, update_syntax_table): Adjust prototypes.
3070
3071 * casefiddle.c (operate_on_word): Use EMACS_INT for buffer
3072 positions.
3073
db063399
LMI
30742010-09-24 Lars Magne Ingebrigtsen <larsi@gnus.org>
3075
f0812d35
LMI
3076 * scroll.c (calculate_scrolling, line_ins_del)
3077 (calculate_direct_scrolling, scroll_cost): Fix EMACS_INT/int
3078 conversion.
3079
f5c7fc27
LMI
3080 * region-cache.c (move_cache_gap, set_cache_region, pp_cache)
3081 (region_cache_backward, region_cache_forward)
3082 (revalidate_region_cache, set_cache_region): FIX EMACS_INT/int
3083 conversion.
3084
db063399
LMI
3085 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
3086
3087 * eval.c (verror): Fix EMACS_INT/int conversion.
3088
07914cd0 3089 * print.c (PRINTDECLARE, PRINTPREPARE, strout, print_string)
db063399
LMI
3090 (print_preprocess, print_check_string_charset_prop)
3091 (print_object): Fix EMACS_INT/int conversion.
3092
3093 * xdisp.c (message_dolog): Fix EMACS_INT/int conversion.
3094
e6d4aefa
EZ
30952010-09-24 Eli Zaretskii <eliz@gnu.org>
3096
69481da7
EZ
3097 * callproc.c (Fcall_process): Use EMACS_INT for count of
3098 characters read from the subprocess.
3099
61bfec98
EZ
3100 * bidi.c (struct bidi_paragraph_info): Use EMACS_INT for buffer
3101 positions.
3102 (bidi_cache_search, bidi_cache_find): Use EMACS_INT for buffer
3103 positions.
3104
145582a0
EZ
3105 * buffer.c (struct sortvec): Use EMACS_INT for buffer positions.
3106 (struct sortstrlist, overlay_str_len): Use EMACS_INT for string
3107 length.
3108 (advance_to_char_boundary, Fset_buffer_multibyte)
3109 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
3110 (overlay_touches_p, record_overlay_string, overlay_strings)
3111 (recenter_overlay_lists, fix_start_end_in_overlays)
3112 (modify_overlay, Fmove_overlay, report_overlay_modification)
3113 (evaporate_overlays): Use EMACS_INT for buffer positions.
3114
bba3e508
SM
3115 * lisp.h (fix_start_end_in_overlays, overlay_touches_p):
3116 Adjust prototypes.
145582a0 3117
446470a9
EZ
3118 * dispextern.h (struct bidi_saved_info): Use EMACS_INT for buffer
3119 positions.
3120
e6d4aefa
EZ
3121 * fns.c (Fcompare_strings, Fstring_lessp, concat)
3122 (string_make_unibyte, Fstring_as_unibyte, Fsubstring)
3123 (Fsubstring_no_properties, substring_both, Ffillarray)
3124 (Fclear_string, mapcar1, Fmapconcat, Fmapcar, Fmapc)
3125 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
3126 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
3127 (Fmd5): Use EMACS_INT for buffer and string positions and length
3128 variables and arguments.
3129
3130 * lisp.h (substring_both): Adjust prototype.
3131
eb652396
JB
31322010-09-24 Juanma Barranquero <lekktu@gmail.com>
3133
3134 Remove W32 API function pointer unused since 2005-02-15 (revno 2005-02-15T23:19:26Z!jasonr@gnu.org).
3135 * w32fns.c (clipboard_sequence_fn): Don't declare.
3136 (globals_of_w32fns): Don't initialize it.
3137
266a86bd 31382010-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
fbb3da77
SM
3139
3140 * syntax.c (back_comment): Detect the case where a 1-char comment
3141 starter is also the 2nd char of a 2-char comment ender.
3142
266a86bd 31432010-09-23 Jan Djärv <jan.h.d@swipnet.se>
2b5b82db
J
3144
3145 * gtkutil.c (xg_tool_bar_menu_proxy): Set gtk-menu-items to TRUE.
3146
40283062
LMI
31472010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3148
db063399
LMI
3149 * eval.c (verror): EMACS_INT/int cleanup.
3150
faf8b5bc
LMI
3151 * lisp.h (SPECPDL_INDEX): Cast to int, since we're not going to
3152 unwind_protect more than 2GB worth of functions.
3153
3154 * editfns.c (Finsert_char): EMACS_INT/int cleanup.
3155
40283062
LMI
3156 * lisp.h: Have oblookup take EMACS_INT to allow interning big
3157 string and avoid compiler warnings.
3158 (USE_SAFE_ALLOCA): Cast to int to avoid compilation warnings in
3159 all users.
3160
3161 * lread.c (oblookup): EMACS_INT/int cleanup.
3162
3163 * cmds.c (Fforward_line, Fdelete_char): EMACS_INT/int cleanup.
3164
fe3537c3
EZ
31652010-09-23 Eli Zaretskii <eliz@gnu.org>
3166
3167 * editfns.c (clip_to_bounds): Return an EMACS_INT value.
3168
3169 * lisp.h (clip_to_bounds): Adjust prototype.
3170
3171 * intervals.c (adjust_for_invis_intang): Return EMACS_INT value.
3172
0350982f
LMI
31732010-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
3174
84c9ce05
LMI
3175 * lisp.h: doprnt.c EMACS_INT/int cleanup.
3176
3177 * doprnt.c (doprnt): EMACS_INT/int cleanup.
3178
3179 * doc.c (Fsnarf_documentation, get_doc_string): EMACS_INT/int
3180 cleanup.
3181
0350982f
LMI
3182 * lisp.h: Change the definition of all marker.c functions that
3183 take and return buffer stuff to be EMACS_INT instead of int.
3184
3185 * marker.c (buf_charpos_to_bytepos, CONSIDER, set_marker_both)
3186 (buf_charpos_to_bytepos, bytepos_to_charpos)
3187 (buf_bytepos_to_charpos, Fbuffer_has_markers_at)
3188 (set_marker_restricted, set_marker_both): Convert int to EMACS_INT
3189 for all buffer positions.
3190
c50bd0d2
CY
31912010-09-23 Chong Yidong <cyd@stupidchicken.com>
3192
3193 * intervals.c (traverse_intervals, rotate_right, rotate_left)
3194 (split_interval_right, find_interval, next_interval)
3195 (delete_node, delete_interval, interval_deletion_adjustment)
3196 (adjust_intervals_for_deletion, merge_interval_right)
3197 (merge_interval_left, graft_intervals_into_buffer)
3198 (copy_intervals): Convert EMACS_UINTs to EMACS_INT.
3199
3200 * intervals.h (traverse_intervals): Update prototype.
3201
14162469
EZ
32022010-09-23 Eli Zaretskii <eliz@gnu.org>
3203
c098fdb8
EZ
3204 * indent.c (compute_motion): Use EMACS_INT for arguments to
3205 region_cache_forward.
3206
bba3e508
SM
3207 * region-cache.c (struct boundary, struct region_cache):
3208 Use EMACS_INT for positions.
c098fdb8
EZ
3209 (find_cache_boundary, move_cache_gap, insert_cache_boundary)
3210 (delete_cache_boundaries, set_cache_region)
3211 (invalidate_region_cache, know_region_cache)
bba3e508
SM
3212 (region_cache_forward, region_cache_backward, pp_cache):
3213 Use EMACS_INT for buffer positions.
c098fdb8
EZ
3214
3215 * region-cache.h (know_region_cache, invalidate_region_cache)
3216 (region_cache_forward, region_cache_backward): Adjust prototypes.
3217
3218 * search.c (string_match_1, fast_c_string_match_ignore_case)
3219 (looking_at_1, scan_buffer, scan_newline)
3220 (find_next_newline_no_quit, find_before_next_newline)
3221 (search_command, trivial_regexp_p, search_buffer, simple_search)
3222 (boyer_moore, wordify, Freplace_match): Use EMACS_INT for buffer
3223 and string positions and length.
3224
caefdbe7
EZ
3225 * lisp.h (scan_buffer, scan_newline, find_next_newline_no_quit)
3226 (find_before_next_newline): Adjust prototypes.
c098fdb8 3227
29cdc13e
EZ
3228 * editfns.c (transpose_markers, update_buffer_properties)
3229 (buildmark, clip_to_bounds, Fgoto_char, overlays_around)
3230 (get_pos_property, Fconstrain_to_field)
3231 (Fline_beginning_position, Fline_end_position, Fprevious_char)
3232 (Fchar_after, Fchar_before, Finsert_char)
3233 (Finsert_buffer_substring, Fcompare_buffer_substrings)
bba3e508
SM
3234 (Fsubst_char_in_region, Fformat, Ftranspose_regions):
3235 Use EMACS_INT for buffer and string position variables.
c098fdb8 3236 (Finsert_char): Protect against too large insertions.
29cdc13e
EZ
3237
3238 * lisp.h (clip_to_bounds): Adjust prototype.
3239
e79123aa
EZ
3240 * intervals.c (traverse_intervals, rotate_right, rotate_left)
3241 (balance_an_interval, split_interval_right, split_interval_left)
3242 (find_interval, next_interval, update_interval)
3243 (adjust_intervals_for_insertion, delete_node, delete_interval)
3244 (interval_deletion_adjustment, adjust_intervals_for_deletion)
3245 (offset_intervals, merge_interval_right, merge_interval_left)
3246 (graft_intervals_into_buffer, adjust_for_invis_intang)
3247 (move_if_not_intangible, get_local_map, copy_intervals)
3248 (copy_intervals_to_string, compare_string_intervals)
3249 (set_intervals_multibyte_1): Use EMACS_INT for buffer positions
6e48267a 3250 and for interval tree size.
e79123aa
EZ
3251
3252 * intervals.h (traverse_intervals, split_interval_right)
3253 (split_interval_left, find_interval, offset_intervals)
3254 (graft_intervals_into_buffer, copy_intervals)
3255 (copy_intervals_to_string, move_if_not_intangible, get_local_map)
3256 (update_interval): Adjust prototypes.
3257
579c18d0
EZ
3258 * xdisp.c (check_point_in_composition, reconsider_clip_changes):
3259 Use EMACS_INT for buffer position variables and arguments.
3260
3261 * composite.c (get_composition_id, find_composition)
3262 (run_composition_function, compose_text)
3263 (composition_gstring_width, autocmp_chars)
3264 (composition_update_it, Ffind_composition_internal): Use EMACS_INT
3265 for buffer positions and string length variables and arguments.
3266
3267 * composite.h (get_composition_id, find_composition, compose_text)
3268 (composition_gstring_width): Adjust prototypes.
3269
3270 * editfns.c (Fformat): Use EMACS_INT for string size variables.
3271
bba3e508
SM
3272 * xdisp.c (store_mode_line_noprop, display_mode_element):
3273 Use EMACS_INT for string positions.
579c18d0
EZ
3274
3275 * intervals.c (get_property_and_range): Use EMACS_INT for buffer
3276 position arguments.
3277
3278 * intervals.h (get_property_and_range): Adjust prototype.
14162469
EZ
3279
3280 * character.c (parse_str_as_multibyte, str_as_multibyte)
3281 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
579c18d0 3282 (string_count_byte8, string_escape_byte8, c_string_width)
bba3e508
SM
3283 (strwidth, lisp_string_width, multibyte_chars_in_text):
3284 Use EMACS_INT for string length variables and arguments.
14162469
EZ
3285
3286 * character.h (parse_str_as_multibyte, str_as_multibyte)
579c18d0 3287 (parse_str_to_multibyte, str_to_multibyte, str_as_unibyte)
bba3e508
SM
3288 (c_string_width, strwidth, lisp_string_width):
3289 Adjust prototypes.
14162469 3290
579c18d0
EZ
3291 * font.c (font_intern_prop): Use EMACS_INT for string length
3292 variables.
3293
3294 * font.c (font_intern_prop): Use EMACS_INT for string length
3295 variables.
3296
14162469
EZ
3297 * fns.c (Fstring_as_multibyte): Use EMACS_INT for string length
3298 variables.
3299
3300 * alloc.c <total_string_size>: Declare as EMACS_INT, not int.
3301 (Fmake_string): Protect against too large strings.
3302 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
3303 (live_misc_p): Use ptrdiff_t instead of int for pointer
3304 differences.
3305 (string_bytes, check_sblock, check_string_free_list)
3306 (allocate_string_data, compact_small_strings, Fmake_string)
3307 (Fmake_bool_vector, make_string, make_unibyte_string)
3308 (make_multibyte_string, make_string_from_bytes)
bba3e508
SM
3309 (make_specified_string_string, Fmake_list, Fmake_vector):
3310 Use EMACS_INT for string length variables and arguments.
14162469
EZ
3311 (find_string_data_in_pure, make_pure_string, make_pure_c_string)
3312 (Fpurecopy): Use EMACS_INT for string size.
3313 (mark_vectorlike, mark_char_table, mark_object): Use EMACS_UINT
3314 for vector size.
3315
3316 * lisp.h (make_string, make_unibyte_string, make_multibyte_string)
3317 (make_string_from_bytes, make_specified_string_string)
579c18d0
EZ
3318 (make_pure_string, string_bytes, check_point_in_composition):
3319 Adjust prototypes.
14162469 3320
c8a66ab8
EZ
33212010-09-22 Eli Zaretskii <eliz@gnu.org>
3322
3323 * editfns.c (Fsubst_char_in_region, Ftranslate_region_internal)
3324 (check_translation): Use EMACS_INT for buffer positions and
3325 length.
3326
3327 * undo.c (record_marker_adjustment, record_delete)
3328 (record_change, record_point, record_insert)
3329 (record_property_change, Fprimitive_undo): Use EMACS_INT for
3330 buffer positions.
3331
3332 * lisp.h (record_marker_adjustment, record_delete)
3333 (record_change, record_point, record_insert)
3334 (record_property_change, Fprimitive_undo): Adjust prototypes.
3335
38c54d9d
JB
33362010-09-22 Juanma Barranquero <lekktu@gmail.com>
3337 Eli Zaretskii <eliz@gnu.org>
3338
3339 * w32.c (get_emacs_configuration_options): Fix buffer overrun.
3340
413d18e7
EZ
33412010-09-22 Eli Zaretskii <eliz@gnu.org>
3342
3343 * minibuf.c (Fminibuffer_contents)
3344 (Fminibuffer_contents_no_properties)
3345 (Fminibuffer_completion_contents): Use EMACS_INT for minibuffer
3346 positions.
3347
3348 * keyboard.c (command_loop_1): Use EMACS_INT to compare point with
3349 mark.
3350
3351 * alloc.c (make_uninit_string, make_uninit_multibyte_string)
3352 (allocate_string_data): Accept EMACS_INT for string length.
3353
3354 * editfns.c (Ffield_string, Ffield_string_no_properties)
3355 (make_buffer_string, make_buffer_string_both, Fbuffer_substring)
3356 (Fbuffer_substring_no_properties, find_field, Fdelete_field)
3357 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
3358 (Ffield_end): Use EMACS_INT for buffer positions.
3359
3360 * insdel.c (prepare_to_modify_buffer): Use EMACS_INT to compare
3361 point with mark.
3362
3363 * lisp.h (allocate_string_data, make_uninit_string)
3364 (make_uninit_multibyte_string, make_buffer_string)
3365 (make_buffer_string_both): Adjust prototypes.
3366
4b9832a6
CY
33672010-09-22 Chong Yidong <cyd@stupidchicken.com>
3368
3369 * xml.c: Switch to GNU indentation.
3370 (make_dom): Change parse tree format to match xml.el.
3371 (Fxml_parse_html_string_internal): Rename from html-parse-string.
3372 (Fxml_parse_string_internal): Rename from xml-parse-string.
3373
86282aab
KH
33742010-09-22 Kenichi Handa <handa@m17n.org>
3375
3376 * xdisp.c (compute_stop_pos): Call composition_compute_stop_pos
3377 only if we are not at a composition.
3378 (set_iterator_to_next): Give it->end_charpos to
3379 composition_compute_stop_pos.
3380 (set_iterator_to_next, next_element_from_buffer): Likewise.
3381
3382 * dispnew.c (buffer_posn_from_coords): Fix position when the
3383 current display element is a grapheme cluster in bidi-reordered
3384 region.
3385
840b985a
AR
33862010-09-21 Ari Roponen <ari.roponen@gmail.com> (tiny change)
3387
3388 * doc.c (Fsnarf_documentation): Use memmove instead of memcpy as
3389 the regions may overlap.
3390
5bc88f4b
JB
33912010-09-21 Juanma Barranquero <lekktu@gmail.com>
3392
3393 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
3394
92bc9a36
DN
33952010-09-21 Dan Nicolaescu <dann@ics.uci.edu>
3396
d19e096e
DN
3397 * emacs.c: Do not include sys/ioctl.h, not needed.
3398
92bc9a36
DN
3399 * doprnt.c: Do not include stdlib.h, config.h does it.
3400 Move #include before macro definition.
3401
15f844ac
DN
34022010-09-20 Dan Nicolaescu <dann@ics.uci.edu>
3403
48e24408
DN
3404 * Makefile.in (temacs): Link using $(CC) not $(LD).
3405 (LD_FIRSTFLAG): Define using autoconf.
3406 (LD): Remove.
3407
65539506
DN
3408 Remove HAVE_TERMIOS definitions.
3409 * s/usg5-4-common.h (HAVE_TERMIOS):
3410 * s/template.h (HAVE_TERMIOS):
3411 * s/gnu-linux.h (HAVE_TERMIOS):
3412 * s/darwin.h (HAVE_TERMIOS):
3413 * s/cygwin.h (HAVE_TERMIOS):
3414 * s/bsd-common.h (HAVE_TERMIOS):
3415 * s/aix4-2.h (HAVE_TERMIOS):
3416 * s/hpux10-20.h (HAVE_TERMIOS): Do not define, it is assumed
3417 defined on all non-MS platforms.
3418 (HAVE_PSTAT_GETDYNAMIC): Do not define, autoconf does it.
3419
15f844ac
DN
3420 * xterm.c (xt_action_hook): Use const.
3421
7d701334
JB
34222010-09-20 Juanma Barranquero <lekktu@gmail.com>
3423
3424 Don't make W32 code conditional on HAVE_SOCKETS, it's always defined.
3425 * w32.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
3426 (gethostname) [!HAVE_SOCKETS]: Remove.
3427 (SOCK_REPLACE_HANDLE): Remove macro.
3428 (socket_to_fd, sys_close, _sys_read_ahead, sys_read, sys_write)
3429 (term_ntproc, init_ntproc): Don't conditionalize on HAVE_SOCKETS.
3430 * w32proc.c: Remove top-level uses of #ifdef HAVE_SOCKETS.
3431 (syms_of_ntproc): Don't conditionalize on HAVE_SOCKETS.
3432
f3ec267a
EZ
34332010-09-18 Eli Zaretskii <eliz@gnu.org>
3434
3435 * deps.mk (xml.o): Add dependencies.
3436
93acd23d
JB
3437 * xdisp.c (Fcurrent_bidi_paragraph_direction):
3438 Call bidi_paragraph_init with NO_DEFAULT_P non-zero. (Bug#7038)
bea4f10c
EZ
3439
3440 * bidi.c (bidi_paragraph_init): Accept an additional argument
3441 NO_DEFAULT_P; all callers changed. If NO_DEFAULT_P is non-zero,
3442 search back until a paragraph with a strong directional character
3443 is found, and use that to determine paragraph's base direction.
3444
3445 * dispextern.h (bidi_paragraph_init): Update prototype.
3446
69e847be
EZ
34472010-09-17 Eli Zaretskii <eliz@gnu.org>
3448
3449 * w32.c (_PROCESS_MEMORY_COUNTERS_EX): Don't define with versions
3450 of w32api >= 3.15. (Bug#6989)
3451
283357a7
LMI
34522010-09-17 Lars Magne Ingebrigtsen <larsi@gnus.org>
3453
3454 * process.c (wait_reading_process_output): Don't message about
3455 accept-process-output unless the time limit really is zero.
3456
4ddb20d6
SM
34572010-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
3458
3459 * frame.c (Ftool_bar_pixel_width): YAILOM (Yet another
3460 int/Lisp_Object mixup).
3461
e24ad6dd
J
34622010-09-17 Jan Djärv <jan.h.d@swipnet.se>
3463
3464 * keyboard.c (parse_tool_bar_item): For QClabel, set TOOL_BAR_ITEM_LABEL
3465 not HELP.
3466
fb0cf781
J
34672010-09-17 Stephen Berman <stephen.berman@gmx.net>
3468
3469 * frame.c (Ftool_bar_pixel_width): New function to expose tool
3470 bar's pixel width to Lisp (Bug#7048).
3471
4ddb20d6
SM
34722010-09-14 Juanma Barranquero <lekktu@gmail.com>
3473
3474 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
fb0cf781 3475
318a04c6
J
34762010-09-17 Jan Djärv <jan.h.d@swipnet.se>
3477
3478 * gtkutil.c (xg_pack_tool_bar): Call gtk_handle_box_set_handle_position
3479 with argument top/left if tool bar is vertical/horizontal (Bug#7051).
3480
78a21772
KH
34812010-09-17 Kenichi Handa <handa@m17n.org>
3482
3483 * ftfont.c (ftfont_check_otf): Fix previous change.
3484
fa3f6039
KH
34852010-09-14 Kenichi Handa <handa@m17n.org>
3486
3487 * ftfont.c (ftfont_check_otf): Fix the case of checking just
3488 existence of GSUB or GPOS.
3489
2b5491fa
JB
34902010-09-14 Juanma Barranquero <lekktu@gmail.com>
3491
3492 * cmds.c (syms_of_cmds) <post-self-insert-hook>: Fix typos in docstring.
3493
c97c655f
LMI
34942010-09-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
3495
ef1b0ba7 3496 * xml.c (parse_buffer): Rename to parse_string(), since that's
c97c655f
LMI
3497 what it does.
3498 (parse_string): Return nil when the document can't be parsed.
3499
6664fc59 35002010-09-14 Jan Djärv <jan.h.d@swipnet.se>
5f61a25c
J
3501
3502 * xterm.c (get_current_vm_state): New function.
3503 (do_ewmh_fullscreen): Call get_current_vm_state and compare with
3504 want_fullscreen so set_wm_state calls are few (Bug#7013).
3505 (x_handle_net_wm_state): Move code to get_current_vm_state and
3506 call that function.
3507
6664fc59 35082010-09-14 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
65b3d997
A
3509
3510 * term.c (tty_set_terminal_modes): Don't initialize twice (bug#7002).
3511
6664fc59 35122010-09-14 Kenichi Handa <handa@m17n.org>
a552b35a
KH
3513
3514 * coding.c (encode_coding_iso_2022): Don't optimize for ASCII if
3515 we may use designation or locking-shift.
3516
6664fc59 35172010-09-14 Kenichi Handa <handa@m17n.org>
396475b7
KH
3518
3519 * coding.c (detect_coding_emacs_mule): Fix checking of multibyte
3520 sequence when the source is multibyte.
3521
1da70e99
AS
35222010-09-14 Andreas Schwab <schwab@linux-m68k.org>
3523
6664fc59
JB
3524 * xml.c (Fxml_parse_string, Fxml_parse_string): Revert last change.
3525 Don't make first argument optional. Doc fix.
1da70e99 3526
26632d8d
LMI
35272010-09-14 Leo <sdl.web@gmail.com> (tiny change)
3528
3529 * xml.c (Fxml_parse_string, Fhtml_parse_string): Fix up the
3530 parameters for the doc string.
3531
21fa8e37
LMI
35322010-09-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
3533
3534 * xml.c (Fhtml_parse_string, Fxml_parse_string): Mention BASE-URL.
3535
5616cc54
SM
35362010-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3537
3538 * fns.c (Fy_or_n_p): Move to lisp/subr.el.
3539 (syms_of_fns): Don't defsubr Sy_or_n_p.
3540 * lisp.h: Don't declare Fy_or_n_p.
3541 * fileio.c (barf_or_query_if_file_exists): Fy_or_n_p -> y-or-n-p.
3542
381408e2
LMI
35432010-09-09 Lars Magne Ingebrigtsen <larsi@gnus.org>
3544
3545 * xml.c (Fxml_parse_buffer): New function to parse XML files.
3546
35472010-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
3548
3549 * xml.c: New file.
3550 (Fhtml_parse_buffer): New function to interface to the libxml2
3551 html parsing function.
3552
733946e7
JB
35532010-09-05 Juanma Barranquero <lekktu@gmail.com>
3554
3555 * biditype.h: Regenerate.
3556
7574650a
AS
35572010-09-04 Andreas Schwab <schwab@linux-m68k.org>
3558
3559 * nsimage.m (ns_load_image): Check argument types.
3560
3561 * image.c: Remove all uses of gcpro.
3562 (xpm_load): Check all lisp types.
3563 (pbm_load): Likewise.
3564 (png_load): Likewise.
3565 (jpeg_load): Likewise.
3566 (tiff_load): Likewise.
3567 (gif_load): Likewise.
3568 (imagemagick_load_image): Likewise.
3569 (imagemagick_load): Likewise.
3570 (svg_load): Likewise.
3571 (gs_load): Likewise.
3572
6e6b8e25
EZ
35732010-09-04 Eli Zaretskii <eliz@gnu.org>
3574
bba3e508
SM
3575 * w32uniscribe.c (uniscribe_shape): Update commentary.
3576 Don't try to reorder grapheme clusters, since LGSTRING should always
6e6b8e25
EZ
3577 hold them in the logical order.
3578 (uniscribe_encode_char, uniscribe_shape): Force ScriptShape to
3579 return glyph codes in the logical order.
3580
dbfe4532
AS
35812010-09-04 Andreas Schwab <schwab@linux-m68k.org>
3582
3583 * image.c (imagemagick_image_p): Replace bcopy by memcpy.
b7d187f8 3584 (imagemagick_load_image): Fix type mismatch.
5e5992c2 3585 (Fimagemagick_types): Likewise. Doc fix.
dbfe4532 3586
6d7cc563
JD
35872010-09-02 Jan Djärv <jan.h.d@swipnet.se>
3588
3589 * xterm.h (struct dpyinfo): Remove cut_buffers_initialized.
3590
3591 * xterm.c (x_term_init): Don't set dpyinfo->cut_buffers_initialized.
3592
3593 * xselect.c: Remove declaration of cut-buffer objects and functions.
3594 (symbol_to_x_atom): Remove mapping to XA_CUT_BUFFERn.
3595 (x_atom_to_symbol): Remove mapping to QCUT_BUFFERn.
3596 (Fx_get_cut_buffer_internal, Fx_store_cut_buffer_internal)
3597 (Fx_rotate_cut_buffers_internal): Remove.
3598 (syms_of_xselect): Remove defsubr of above.
3599 Remove intern of QCUT_BUFFERn.
3600
8f4e9110
SM
36012010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
3602
3603 * cmds.c (Vblink_paren_function): Remove.
3604 (internal_self_insert): Make it insert N chars at a time.
3605 Don't call blink-paren-function.
3606 (Fself_insert_command): Adjust accordingly.
3607 (syms_of_cmds): Don't declare blink-paren-function.
3608
d419e1d9
KH
36092010-08-31 Kenichi Handa <handa@m17n.org>
3610
3611 * dispextern.h (FACE_FOR_CHAR): Use an ASCII face for 8-bit
3612 characters.
3613
3614 * term.c (encode_terminal_code): Fix the previous change.
5616cc54
SM
3615 (produce_glyphs): Don't set it->char_to_display here.
3616 Don't handle unibyte-display-via-language-environment here.
d419e1d9
KH
3617 (produce_special_glyphs): Set temp_it.char_to_display before
3618 calling produce_glyphs.
3619
3620 * xdisp.c (get_next_display_element): Set it->char_to_display
3621 here. Convert all 8-bit bytes from unibyte buffer/string to 8-bit
3622 characters.
3623 (get_overlay_arrow_glyph_row): Set it.char_to_display too before
3624 calling PRODUCE_GLYPHS.
3625 (append_space_for_newline): Save and store it->char_to_display.
3626 Set it->char_to_display before calling PRODUCE_GLYPHS.
3627 (extend_face_to_end_of_line): Set it->char_to_display before
3628 calling PRODUCE_GLYPHS.
3629 (get_glyph_face_and_encoding): Set the glyph code an 8-bit
3630 character to its byte value.
3631 (get_char_glyph_code): New function.
3632 (produce_stretch_glyph): Set it2.char_to_display too before
3633 calling x_produce_glyphs.
3634 (x_produce_glyphs): Simplify by using the same code for ASCII and
65b3d997
A
3635 non-ASCII characters. Don't set it->char_to_display here.
3636 Don't handle unibyte-display-via-language-environment here. For a
2b5491fa 3637 character of no glyph, use font->space_width instead of FONT_WIDTH.
d419e1d9 3638
b819f760
SM
36392010-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
3640
3641 * keyboard.c (Fwindow_system): Fix compilation for USE_LISP_UNION_TYPE.
3642
07fa68a7
CY
36432010-08-31 Chong Yidong <cyd@stupidchicken.com>
3644
3645 * keyboard.c (command_loop_1): Don't call x-set-selection on tty.
3646
cd196f12
SM
36472010-08-30 Stefan Monnier <monnier@iro.umontreal.ca>
3648
3649 * marker.c (Fcopy_marker): Make the first arg optional.
3650
49a752bb
KH
36512010-08-30 Kenichi Handa <handa@m17n.org>
3652
3653 * composite.c (composition_update_it): Fix computing of
3654 cmp_it->width.
3655
769ae9e1
KH
36562010-08-29 Kenichi Handa <handa@m17n.org>
3657
9e69cb05 3658 * term.c (encode_terminal_code): Encode byte chars to the
5616cc54 3659 corresponding bytes.
9e69cb05 3660
4520b858
J
36612010-08-29 Jan Djärv <jan.h.d@swipnet.se>
3662
3663 * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
3664
fe50eb41
KH
36652010-08-26 Kenichi Handa <handa@m17n.org>
3666
3667 * xdisp.c (compute_stop_pos): Pay attention to bidi scan direction
3668 on calling composition_compute_stop_pos.
3669
f6aa6ec6
KH
36702010-08-25 Kenichi Handa <handa@m17n.org>
3671
9dfdbc0a
KH
3672 * fontset.c (reorder_font_vector): Prefer a font-spec specifying
3673 :otf.
3674
f6aa6ec6
KH
3675 * composite.c (composition_compute_stop_pos): Don't break
3676 composition at PT.
3677 (composition_reseat_it): Likewise. Fix calculation of character
3678 position starting a composition.
3679 (Fcomposition_get_gstring): Don't limit the number of components
3680 for automatic composition.
3681
ff94e32c
KH
36822010-08-25 Kenichi Handa <handa@m17n.org>
3683
3684 * composite.c (composition_compute_stop_pos): In forward search,
3685 pay attention to the possibility that some character after ENDPOS
3686 will be composed with charactrs before ENDPOS.
3687
1c409d0b
CY
36882010-08-24 Chong Yidong <cyd@stupidchicken.com>
3689
3690 * keyboard.c (command_loop_1): Don't clobber primary selection
3691 during handle-switch-frame (Bug#6872).
3692
0c372655
MA
36932010-08-23 Michael Albinus <michael.albinus@gmx.de>
3694
3695 * dbusbind.c: Accept UNIX domain sockets as bus address.
3696 (Fdbus_close_bus): New function.
3697 (Vdbus_registered_buses): New variable.
3698 (xd_initialize): Implement string as bus address.
3699 (Fdbus_init_bus): Add bus to Vdbus_registered_buses).
3700 (Fdbus_get_unique_name, Fdbus_call_method)
3701 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
3702 (Fdbus_method_error_internal, Fdbus_send_signal)
3703 (Fdbus_register_signal, Fdbus_register_method): Remove bus type
3704 check. This is done in xd_initialize_bus. Adapt doc string, if
3705 necessary.
3706 (xd_pending_messages, xd_read_queued_messages): Loop over buses in
3707 Vdbus_registered_buses.
3708 (Vdbus_registered_objects_table): Create hash.
3709
7133b7ee
JL
37102010-08-22 Juri Linkov <juri@jurta.org>
3711
3712 * keyboard.c (Fexecute_extended_command): Move reading a command name
3713 with `completing-read' to a new Elisp function `read-extended-command'.
3714 Call it to read a command to `function' (bug#5364, bug#5214).
3715
198a7a97
CY
37162010-08-22 Chong Yidong <cyd@stupidchicken.com>
3717
3718 * emacs.c (main): Remove handling of --unibyte arg (Bug#6886).
3719
b0126eac 37202010-08-22 Andreas Schwab <schwab@linux-m68k.org>
b72e0717
AS
3721
3722 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA_LISP
3723 instead of SAFE_ALLOCA.
3724
b0126eac 37252010-08-22 Chong Yidong <cyd@stupidchicken.com>
3a7a9129
CY
3726
3727 * eval.c (Flet, Feval, Fapply, apply_lambda): Use SAFE_ALLOCA
3728 (Bug#6214).
3729
b0126eac 37302010-08-22 Jan Djärv <jan.h.d@swipnet.se>
983b8302
J
3731
3732 * doc.c (Fsnarf_documentation): Set skip_file only if p[1] is S.
3733
b0126eac
CY
37342010-08-22 Jan Djärv <jan.h.d@swipnet.se>
3735
3736 * doc.c (Fsnarf_documentation): Initialize skip_file before
3737 build-files test.
3738
692f3ddc 37392010-08-22 Peter O'Gorman <pogma@thewrittenword.com> (tiny change)
b0126eac 3740
692f3ddc
JB
3741 * s/hpux10-20.h (HAVE_TERMIOS, NO_TERMIO, ORDINARY_LINK):
3742 New definitions.
b0126eac
CY
3743 (HAVE_TERMIO): Remove.
3744
5f2f0bc1
EZ
37452010-08-22 Eli Zaretskii <eliz@gnu.org>
3746
b613941b
EZ
3747 * deps.mk (sysdep.o, msdos.o): Depend on sysselect.h.
3748
a583bbef
EZ
3749 * sysselect.h [WINDOWSNT]: Don't define the FD_* and select stuff
3750 for w32.
3751
3752 * s/ms-w32.h (HAVE_SYS_TIMEB_H): Don't #undef HAVE_SYS_SELECT_H,
3753 it's done in nt/config.nt.
3754
3755 * makefile.w32-in ($(BLD)/sysdep.$(O)): Depend on sysselect.h.
3756
5f2f0bc1
EZ
3757 * unexcoff.c (report_error, make_hdr, write_segment)
3758 (copy_text_and_data, copy_sym, mark_x, adjust_lnnoptrs, unexec):
3759 Convert argument lists and prototypes to ANSI C.
3760 (make_hdr, write_segment): Remove unused variables.
3761 (unexec): Remove commented-out line. Initialize `new' to shut up
3762 compiler warnings.
3763
a7ebc409
DN
37642010-08-22 Dan Nicolaescu <dann@ics.uci.edu>
3765
3766 Simplify termio code.
3767 All non-MSDOS non-WINDOWSNT platforms define HAVE_TERMIOS, so
3768 HAVE_TERMIO code is obsolete.
3769 Replace HAVE_TERMIOS conditionals with !DOS_NT.
3770 * systty.h: Do not define HAVE_TCATTR.
3771 Remove HAVE_TERMIO, HAVE_LTCHARS and HAVE_TCHARS code.
3772 Do not define EMACS_HAVE_TTY_PGRP. Only define
3773 EMACS_GET_TTY_PGRP for !DOS_NT.
3774 * sysdep.c: Include sysselect.h unconditionally. Do not include
bba3e508
SM
3775 sys/ioctl.h and termios.h, systty.h does it.
3776 Use HAVE_SYS_UTSNAME_H instead of USG as an include guard.
a7ebc409
DN
3777 (init_baud_rate): Remove HAVE_TERMIO code.
3778 (child_setup_tty): Remove HAVE_TERMIO code.
3779 (emacs_get_tty, emacs_set_tty): Remove HAVE_TERMIO, HAVE_TCHARS
3780 and HAVE_LTCHARS code. Use !DOS_NT instead of HAVE_TCATTR.
3781 (new_ltchars, new_tchars): Remove, unused.
3782 (init_sys_modes): Remove HAVE_TERMIO, HAVE_TCHARS and HAVE_LTCHARS
bba3e508
SM
3783 code. Remove special casing for __mips__, it was a no-op.
3784 Remove HAVE_TCATTR conditional, it is implied by HAVE_TERMIOS.
a7ebc409
DN
3785 (init_sys_modes): Remove HPUX special case.
3786 * process.c: Include stdlib.h unconditionally. Do not include
3787 fcntl.h, systty.h does it. Remove conditional code for
3788 HAVE_SERIAL, it is always true.
3789 (process_send_signal): Remove HAVE_TERMIOS conditional, it's
3790 always true when SIGNALS_VIA_CHARACTERS is true.
3791 (Fcontinue_process, Fprocess_send_eof): Simplify conditionals:
3792 !WINDOWSNT means HAVE_TERMIOS.
3793 (create_process): Remove HAVE_TERMIOS, it's inside a HAVE_PTYS
3794 conditional, which is true for all HAVE_TERMIOS systems.
3795 * keyboard.c (init_keyboard): Do not use HAVE_TERMIO, use !DOS_NT
3796 instead of HAVE_TERMIOS.
3797 * emacs.c (shut_down_emacs): Use !defined DOS_NT instead of
3798 EMACS_HAVE_TTY_PGRP.
3799 * callproc.c (child_setup): Move EMACS_SET_TTY_PGRP use to the
3800 non-MSDOS, non-WINDOWSNT code, it's only defined for such systems
3801 anyway.
3802
914f049b 38032010-08-21 Eli Zaretskii <eliz@gnu.org>
40629f17
EZ
3804
3805 * dispnew.c (buffer_posn_from_coords): Fix off-by-one error in
3806 mirroring pixel positions.
3807
d931da8c
DN
38082010-08-20 Dan Nicolaescu <dann@ics.uci.edu>
3809
b5c76d0c
DN
3810 * alloc.c (malloc_sbrk_used, malloc_sbrk_unused): Remove,
3811 write only.
3812 (init_alloc_once): Remove writes to malloc_sbrk_unused, and
3813 malloc_sbrk_used, nothing uses them.
3814
74815588
DN
3815 * puresize.h: Remove code assuming PNTR_COMPARISON_TYPE is not
3816 defined, unconditionally defined in lisp.h.
3817
f5817d1c
DN
3818 * term.c: Do not include <termios.h>, systty.h does it.
3819
d931da8c
DN
3820 * s/unixware.h (HAVE_TCATTR):
3821 * s/aix4-2.h (HAVE_TCATTR): Remove definitions, not needed.
3822 systty.h defines it when HAVE_TERMIOS is defined.
3823
ff2de6d2 38242010-08-20 Eli Zaretskii <eliz@gnu.org>
491a1546 3825
b43c883c 3826 * dispnew.c (buffer_posn_from_coords): Fix last change for text
00c53994 3827 terminals: add one-character offset for R2L lines.
b43c883c 3828
491a1546
EZ
3829 * emacs.c <emacs_version>: Add a comment regarding
3830 msdos/mainmake.v2's dependency on the syntax of this declaration.
3831
2396cbba
EZ
38322010-08-20 Eli Zaretskii <eliz@gnu.org>
3833
3834 * dispnew.c (buffer_posn_from_coords): Fix calculation of buffer
3835 position for R2L lines by mirroring the pixel position wrt the
3836 text are box. Improve commentary.
3837
7df6150a
AS
38382010-08-20 Andreas Schwab <schwab@linux-m68k.org>
3839
3840 * image.c (imagemagick_clear_image): Remove debugging output.
3841
a2e5caf7
SM
38422010-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
3843
3844 * cmds.c (Vself_insert_face, Vself_insert_face_command): Remove.
3845 (Qpost_self_insert_hook, Vpost_self_insert_hook): New vars.
3846 (internal_self_insert): Run Qpost_self_insert_hook rather than handle
3847 self-insert-face.
3848 (syms_of_cmds): Initialize the new vars.
3849
20d60baf
JR
38502010-08-19 Jason Rumney <jasonr@gnu.org>
3851
cc477da7
JR
3852 * w32menu.c (set_frame_menubar): Remove call to undefined function.
3853
20d60baf
JR
3854 * w32fns.c (w32_wnd_proc): Don't check context before initializing.
3855
2c0ac867
J
38562010-08-19 Jan Djärv <jan.h.d@swipnet.se>
3857
3858 * nsselect.m (nxatoms_of_nsselect): Use "Selection" and "Secondary".
3859
93352106
EZ
38602010-08-18 Eli Zaretskii <eliz@gnu.org>
3861
3862 * xterm.c (x_draw_bar_cursor):
3863 * w32term.c (x_draw_bar_cursor): If the character under cursor is
3864 R2L, draw the bar cursor on its right rather than on its left.
3865
c785836d
SM
38662010-08-18 Stefan Monnier <monnier@iro.umontreal.ca>
3867
0193499f
SM
3868 * eval.c (Fdefmacro): Only obey one declaration.
3869
c785836d
SM
3870 * casefiddle.c (casify_region): Setup gl_state.
3871
9cb728a5
J
38722010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3873
3874 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
3875
e1e18511
J
38762010-08-18 Jan Djärv <jan.h.d@swipnet.se>
3877
1d77b63e 3878 * gtkutil.c (update_frame_tool_bar): Literal strings are const char*.
e1e18511 3879
64cb6c78
J
38802010-08-18 David De La Harpe Golden <david@harpegolden.net>
3881
3882 * nsselect.m (QCLIPBOARD, NXPrimaryPboard): Define.
3883 (symbol_to_nsstring): Map QCLIPBOARD => NSGeneralPboard,
3884 QPRIMARY => NXPrimaryPboard.
3885 (ns_string_to_symbol): NSGeneralPboard => QCLIPBOARD,
3886 NXPrimaryPboard => QPRIMARY.
3887 (nxatoms_of_nsselect): NXPrimaryPboard = PrimarySelection,
3888 NXSecondaryPboard = SecondarySelection.
3889 (syms_of_nsselect): Intern QCLIPBOARD (Bug#6677).
3890
0c9b8993
GM
38912010-08-18 Joakim Verona <joakim@verona.se>
3892
3893 * image.c: Add support for ImageMagick. When HAVE_IMAGEMAGICK is
3894 defined:
3895 (imagemagick_image_p): New function to test for ImageMagic image.
3896 (imagemagick_load): New function to load ImageMagick image.
3897 (imagemagick_load_image): New function, helper for imagemagick_load.
3898 (imagemagick-types): New function.
3899 (Qimagemagick): New Lisp_object.
3900 (imagemagick-render-type): New variable, decides which renderer to use.
ccd80618 3901
c3554f68
SM
39022010-08-17 Stefan Monnier <monnier@iro.umontreal.ca>
3903
3904 * gtkutil.c (update_frame_tool_bar): Don't assume TOOL_BAR_ITEM_LABEL
3905 is a string.
3906
1ff2e434
J
39072010-08-17 Jan Djärv <jan.h.d@swipnet.se>
3908
3909 * nsfns.m (ns_frame_parm_handlers): Add a slot for the
3910 x_set_tool_bar_position handler.
3911
0cc56427
EZ
39122010-08-17 Eli Zaretskii <eliz@gnu.org>
3913
3914 * w32fns.c <w32_frame_parm_handlers>: Add a slot for the
3915 x_set_tool_bar_position handler, needed to support changes from
3916 2010-07-29T16:49:59Z!jan.h.d@swipnet.se for positioning the tool bar. (Bug#6796)
3917
e45a249b
JD
39182010-08-16 Jan Djärv <jan.h.d@swipnet.se>
3919
921242c6
J
3920 * nsselect.m: include keyboard.h for QPRIMARY, remove its
3921 declaration (Bug#6863).
573d150b 3922 (syms_of_nsselect): Don't intern QPRIMARY.
921242c6 3923
e45a249b
JD
3924 * xselect.c: Remove declaration of QPRIMARY (Bug#6864).
3925
3926 * keyboard.h (QPRIMARY): Declare (Bug#6864).
3927
7c23dd44
CY
39282010-08-16 Chong Yidong <cyd@stupidchicken.com>
3929
3930 * keyboard.c (command_loop_1): Avoid setting selection twice,
3931 since it's done in deactivate-mark as well.
3932 (Vselect_active_regions): Change default to t. Replace `lazy'
3933 with non-default value `only', meaning only set PRIMARY for
3934 temporarily active regions.
3935
3936 * insdel.c (prepare_to_modify_buffer): Handle `only' value of
3937 select-active-regions.
3938
0005830c
J
39392010-08-15 Jan Djärv <jan.h.d@swipnet.se>
3940
3941 * keyboard.c (parse_tool_bar_item): Put in a bad label if :label
3942 isn't a string.
3943
603dfc72
AS
39442010-08-15 Andreas Schwab <schwab@linux-m68k.org>
3945
3946 * keyboard.c (parse_tool_bar_item): Avoid excessive use of strlen.
3947
c25ce9d0
J
39482010-08-15 Jan Djärv <jan.h.d@swipnet.se>
3949
c3554f68
SM
3950 * keyboard.c (parse_tool_bar_item): malloc buf.
3951 Set TOOL_BAR_ITEM_LABEL to empty string if not set to
3952 new_lbl (Bug#6855).
c25ce9d0 3953
5872c762
EZ
39542010-08-14 Eli Zaretskii <eliz@gnu.org>
3955
b236615c
EZ
3956 * xterm.c (x_draw_stretch_glyph_string):
3957 * w32term.c (x_draw_stretch_glyph_string): In R2L rows, display
3958 the cursor on the right edge of the stretch glyph.
3959
c3554f68
SM
3960 * xdisp.c (window_box_right_offset, window_box_right):
3961 Fix commentary.
b236615c 3962
5872c762
EZ
3963 * xdisp.c (Fcurrent_bidi_paragraph_direction): Fix paragraph
3964 direction when point is inside a run of whitespace characters.
3965
3966 * bidi.c (bidi_at_paragraph_end): Remove obsolete comment.
3967
e66f9a1b
JR
39682010-08-14 Jason Rumney <jasonr@gnu.org>
3969
3970 * keyboard.c (lispy_function_keys): Do not define VK_PACKET (bug#4836)
3971
79d6f59e
CY
39722010-08-14 Chong Yidong <cyd@stupidchicken.com>
3973
3974 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
3975
1c9b4129
JR
39762010-08-13 Jason Rumney <jasonr@gnu.org>
3977
3978 * w32menu.c (simple_dialog_show): Use unicode message box if available.
3979 (MessageBoxW_Proc): New function typedef.
3980 (unicode-message-box): New function pointer.
3981 (globals_of_w32menu): Import it from user32.dll. (Bug#5629)
3982
2b4e6277
J
39832010-08-13 Jan Djärv <jan.h.d@swipnet.se>
3984
3985 * frame.h (Qtool_bar_position): Declare.
3986
3987 * xfns.c (Fx_create_frame): Call x_default_parameter for
3988 Qtool_bar_position.
3989
94c97d85
EZ
39902010-08-13 Eli Zaretskii <eliz@gnu.org>
3991
8ee81892
EZ
3992 * unexcoff.c: Remove the parts used when "emacs" is not defined.
3993 (report_error, report_error_1): Ditto.
3994 (write_segment): Remove "#if 0" unused code.
3995 (make_hdr): Remove code that was "#ifndef NO_REMAP" before
3996 NO_REMAP was removed (in 2010-07-29T03:25:08Z!dann@ics.uci.edu).
3997 (start_of_text): Remove unused function (was used only if NO_REMAP
3998 was NOT defined).
3999
891ef8f7
EZ
4000 * msdos.c (IT_set_face): Fix format string to match argument
4001 types.
4002 (IT_write_glyphs, IT_note_mode_line_highlight)
4003 (IT_set_frame_parameters): Remove unused variables.
4004 (x_set_menu_bar_lines): Declare set_menu_bar_lines.
4005 (IT_set_terminal_modes): Disambiguate expression in if clause.
4006 (Fmsdos_remember_default_colors): Return Qnil.
4007 (IT_set_frame_parameters): Add parens to disambiguate boolean
4008 expression for logging the cursor type to termscript.
4009 (keyboard_layout_list, keypad_translate_map)
4010 (grey_key_translate_map): Add braces in inner initializers.
4011 (dos_rawgetc): Add parens in condition for mouse-3 button-press.
4012 (dos_rawgetc): Remove unused label.
4013 (XMenuActivate): Add braces to remove ambiguous `else'.
4014 (dos_ttraw): Always return a value.
4015 (spawnve): Declare.
4016 (run_msdos_command): Cast 3rd arg of spawnve to "char **".
4017
4018 * dosfns.h (x_set_title): Declare.
4019
4020 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
4021 Remove unused variables.
4022
4023 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused
4024 variables.
4025 (init_dosfns): Declare get_lim_data.
4026 (system_process_attributes): Declare Fget_internal_run_time.
4027
38e41e0e
EZ
4028 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument
4029 list to be consistent with menu.h.
4030
94c97d85
EZ
4031 * w32menu.c (add_menu_item, name_is_separator): Shut up compiler
4032 warnings due to mixing of "char *" and "const char *".
4033
c5683ceb
SM
40342010-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
4035
4036 Introduce a new comment style "c" flag.
4037 * syntax.c (SYNTAX_FLAGS_COMMENT_STYLEB)
4038 (SYNTAX_FLAGS_COMMENT_STYLEC): New macros.
4039 (SYNTAX_FLAGS_COMMENT_STYLE): Use them, add an argument.
4040 (syntax_prefix_flag_p): New function.
4041 (Fstring_to_syntax): Understand new "c" flag.
4042 (Finternal_describe_syntax_value): Recognize new flag; use the
4043 SYNTAX_FLAGS_* macros.
4044 (scan_sexps_forward, Fparse_partial_sexp): Change representation of
4045 comment style to accomodate the new styles.
4046 (back_comment, forw_comment, Fforward_comment, scan_lists)
4047 (scan_sexps_forward): Update code to obey the new comment style flag.
4048
4049 * syntax.h: Move SYNTAX_FLAGS_FOO() macros to syntax.c.
4050
4051 * casefiddle.c (casify_region): Use the new syntax_prefix_flag_p.
4052
7aee76f4
J
40532010-08-11 Jan Djärv <jan.h.d@swipnet.se>
4054
3a46642b
J
4055 * xfns.c (x_defined_color): If USE_GTK, call xg_check_special_colors
4056 first.
94dff98f 4057 (Fx_hide_tip): Check FRAME_LIVE_P (f) before calling xg_hide_tooltip.
3a46642b
J
4058
4059 * gtkutil.h (xg_check_special_colors): Declare.
4060
4061 * gtkutil.c (xg_check_special_colors, style_changed_cb): New functions.
4062 (xg_create_frame_widgets): Connect theme name changes to
4063 style_changed_cb.
4064
42ca4633
J
4065 * xterm.c (emacs_class): New char[] for EMACS_CLASS.
4066 (xim_open_dpy, xim_initialize, xim_close_dpy): Use emacs_class.
4067 (x_term_init): Use char[] display_opt and name_opt instead of
93acd23d 4068 string literal. file is const char*.
42ca4633
J
4069
4070 * xsmfns.c (NOSPLASH_OPT): Change to char[].
4071 (smc_save_yourself_CB): Do xstrdup on all ->type and ->name for
4072 props. Free them at the end.
4073
4074 * xselect.c (Fx_get_atom_name): Use char empty[] instead of literal "".
4075
c5683ceb
SM
4076 * xrdb.c (get_system_app): Make path const and use char *p for
4077 non-const char.
42ca4633
J
4078
4079 * xmenu.c (Fx_popup_dialog): error_name is const char*.
93acd23d 4080 (xmenu_show): error parameter is const char **. pane_string is const
42ca4633
J
4081 char *.
4082 (button_names): Is const char *.
4083 (xdialog_show): error_name and pane_string is const.
4084
4085 * process.h (synch_process_death): Is const char*.
4086
4087 * w32menu.c (w32_menu_show):
4088 * nsmenu.m (ns_menu_show): error parameter is const char **.
4089
4090 * menu.h (w32_menu_show, ns_menu_show, xmenu_show): error parameter
4091 is const char **.
4092
4093 * menu.c (Fx_popup_menu): error_name is const.
4094
4095 * keyboard.h (_widget_value): Add defined USE_GTK. Replace Boolean
4096 with unsigned char and XtPointer with void *.
4097
4098 * gtkutil.h: Replace widget_value with struct _widget_value.
4099 (enum button_type, struct _widget_value): Remove and use the one from
4100 keyboard.h.
4101
4102 * gtkutil.c (get_utf8_string): Always return an allocated string.
4103 Parameter is const.
4104 (create_dialog, xg_create_one_menuitem, create_menus)
4105 (xg_item_label_same_p, xg_update_menu_item): Free result from
4106 get_utf8_string.
4107 (xg_separator_p, xg_item_label_same_p): label is const.
4108
4109 * font.h (font_open_by_name): Make name const.
4110
4111 * font.c (font_open_by_name): Make name const.
4112
4113 * floatfns.c (matherr): Use a const char* variable for x->name.
4114
4115 * emacs.c (main): Pass char[] to putenv instead of literal.
4116
4117 * callproc.c (synch_process_death): Make const.
4118 (Fcall_process): Make signame const.
4119
9c5bd55a
J
4120 * nsterm.h (parseKeyEquiv, addSubmenuWithTitle)
4121 (addDisplayItemWithImage): Use const char*.
4122
4123 * nsmenu.m (parseKeyEquiv, addSubmenuWithTitle)
4124 (addDisplayItemWithImage, update_frame_tool_bar): Use const char*.
4125
4126 * nsfont.m (ns_descriptor_to_entity): Use const char*.
4127
4128 * keyboard.h (_widget_value): name, value and key are const char*.
4129
7aee76f4
J
4130 * unexmacosx.c (unexec_error): Use const char *.
4131
09d93395
DN
41322010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4133
4134 * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
c5683ceb 4135 (font_parse_name, font_open_by_name):
09d93395 4136 * font.c (font_parse_xlfd, font_parse_fcname, font_unparse_fcname)
c5683ceb 4137 (font_parse_name, font_open_by_name): Remove const.
09d93395 4138
671d409f
AS
41392010-08-09 Andreas Schwab <schwab@linux-m68k.org>
4140
4141 Use autoconf determined WORDS_BIGENDIAN instead of hardcoded
4142 definition.
4143
4144 * m/alpha.h: Don't define/undef WORDS_BIG_ENDIAN.
4145 * m/amdx86-64.h: Likewise.
4146 * m/arm.h: Likewise.
4147 * m/hp800.h: Likewise.
4148 * m/ia64.h: Likewise.
4149 * m/ibmrs6000.h: Likewise.
4150 * m/ibms390.h: Likewise.
4151 * m/intel386.h: Likewise.
4152 * m/iris4d.h: Likewise.
4153 * m/m68k.h: Likewise.
4154 * m/macppc.h: Likewise.
4155 * m/mips.h: Likewise.
4156 * m/sh3.h: Likewise.
4157 * m/sparc.h: Likewise.
4158 * m/template.h: Likewise.
4159 * m/vax.h: Likewise.
4160 * m/xtensa.h: Likewise.
4161 * fringe.c (init_fringe_bitmap): Test WORDS_BIGENDIAN instead of
4162 WORDS_BIG_ENDIAN.
4163 * lisp.h: Likewise.
4164 * md5.c: Likewise.
4165 * sound.c (le2hl, le2hs, be2hl, be2hs): Likewise.
4166
8ea90aa3
DN
41672010-08-09 Dan Nicolaescu <dann@ics.uci.edu>
4168
4169 Use const char* instead of char*.
4170 Reduce the number of warnings with -Wwrite-strings.
4171 * xrdb.c (get_environ_db, get_system_name):
4172 * unexelf.c (find_section):
4173 * term.c (string_cost, string_cost_one_line, per_line_cost)
4174 (get_named_tty, init_tty):
4175 * sysdep.c (sys_subshell):
4176 * sound.c (sound_perror, sound_warning, vox_open, vox_init)
4177 (alsa_sound_perror, alsa_open, alsa_configure, alsa_init):
4178 * search.c (Freplace_match):
4179 * process.c (Fmake_network_process, send_process, init_process):
4180 * lread.c (Fload, init_lread):
4181 * keymap.c (Fdescribe_buffer_bindings, describe_map_tree):
4182 * keyboard.c (parse_tool_bar_item, struct event_head):
4183 * gtkutil.h (xg_get_font_name):
4184 * gtkutil.c (get_dialog_title, create_dialog, xg_get_font_name)
4185 (make_widget_for_menu_item, make_menu_item, create_menus)
4186 (xg_make_tool_item):
4187 * font.c (parse_matrix, font_parse_name):
4188 * floatfns.c (rounding_driver, float_error_fn_name):
4189 * filelock.c (get_boot_time_1, lock_file_1):
4190 * fileio.c (barf_or_query_if_file_exists, check_writable):
4191 * editfns.c (get_system_name, get_operating_system_release)
4192 (Fencode_time, Fset_time_zone_rule):
4193 * dispextern.h (string_cost, per_line_cost, get_named_tty, init_tty):
4194 * buffer.c (defvar_per_buffer): Use const.
4195
7815fe19 41962010-08-08 Kenichi Handa <handa@m17n.org>
7a84eee5 4197
692f3ddc 4198 * charset.c: Include <stdlib.h>.
7a84eee5
KH
4199 (struct charset_sort_data): New struct.
4200 (charset_compare): New function.
692f3ddc 4201 (Fsort_charsets): New function.
7a84eee5
KH
4202 (syms_of_charset): Declare Fsort_charsets as a Lisp function.
4203
4204 * coding.c (decode_coding_iso_2022): Fix checking of dimension
4205 number in CTEXT extended segment.
4206
7815fe19 42072010-08-08 Juanma Barranquero <lekktu@gmail.com>
f5f6c0e0
JB
4208
4209 * w32fns.c (syms_of_w32fns) <x-max-tooltip-size>: Fix typo in docstring.
4210 * xfns.c (syms_of_xfns) <x-max-tooltip-size>: Reflow docstring.
4211
7815fe19 42122010-08-08 Juanma Barranquero <lekktu@gmail.com>
b756c005
JB
4213
4214 * fns.c (Fsubstring_no_properties, Fnthcdr, Ffeaturep)
4215 (Fhash_table_size): Fix typos in docstrings.
4216 (Fmake_hash_table): Doc fix.
4217
7815fe19 42182010-08-08 Juanma Barranquero <lekktu@gmail.com>
b4f588fa
JB
4219
4220 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
4221 Doc fix (bug#5625).
4222
7815fe19 42232010-08-08 Ken Brown <kbrown@cornell.edu>
9f8c08a7
KB
4224
4225 * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of
4226 the MSDOS definition.
4227
1b6d8cf0
DN
42282010-08-08 Dan Nicolaescu <dann@ics.uci.edu>
4229
675e2c69
DN
4230 Use const char* instead of char*.
4231 * xterm.c (x_create_toolkit_scroll_bar):
4232 * xfont.c (xfont_list_pattern):
4233 * xfns.c (x_default_scroll_bar_color_parameter)
4234 (xic_create_fontsetname, x_default_font_parameter)
4235 (x_screen_planes):
4236 * xdisp.c (c_string_pos, number_of_chars, reseat_to_string)
4237 (store_mode_line_string, decode_mode_spec, display_string):
4238 * menu.c (digest_single_submenu):
4239 * keymap.h (initial_define_key, initial_define_lispy_key):
4240 * keymap.c (initial_define_key, initial_define_lispy_key):
4241 * image.c (image_error, image_keyword):
4242 * gtkutil.h (xg_create_widget, xg_create_scroll_bar):
4243 * gtkutil.c (xg_create_widget, xg_create_scroll_bar):
4244 * ftfont.c (struct fc_charset_table, ftfont_spec_pattern)
4245 (ftfont_list, ftfont_match):
4246 * frame.c (frame_parm_table):
4247 * font.h (font_intern_prop, font_parse_xlfd, font_parse_fcname)
4248 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
4249 (font_add_log, font_deferred_log):
4250 * font.c (font_intern_prop, font_parse_xlfd, font_parse_fcname)
4251 (font_unparse_fcname, font_unparse_fcname, font_open_by_name)
4252 (font_add_log, font_deferred_log):
4253 * emacs.c (argmatch):
4254 * dispextern.h (struct it):
4255 * coding.c (ENCODE_DESIGNATION):
4256 * charset.c (define_charset_internal): Use const.
4257
25717ca1
DN
4258 * s/freebsd.h (DECLARE_GETPWUID_WITH_UID_T): Remove, unused.
4259
c5683ceb
SM
4260 * xrdb.c: Remove include guard.
4261 Remove DECLARE_GETPWUID_WITH_UID_T conditional it had no effect.
1b6d8cf0
DN
4262 Remove #if 0 code. Replace malloc->xmalloc, free->xfree,
4263 realloc->xrealloc instead of using #defines.
4264
efb41e21
EZ
42652010-08-08 Eli Zaretskii <eliz@gnu.org>
4266
cd21226d 4267 * cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line):
c5683ceb
SM
4268 * editfns.c (Fline_beginning_position, Fline_end_position):
4269 State in the doc strings that start and end of line are in the
4270 logical order.
cd21226d 4271
efb41e21
EZ
4272 * xdisp.c (display_line): Move the handling of overlay arrow after
4273 the call to find_row_edges. (Bug#6699)
4274
746812d9
CY
42752010-08-07 Chong Yidong <cyd@stupidchicken.com>
4276
4277 * keyboard.c (command_loop_1):
4278 * insdel.c (prepare_to_modify_buffer): Don't call validate_region.
4279
9852377f
CY
42802010-08-07 Chong Yidong <cyd@stupidchicken.com>
4281
4282 * insdel.c (prepare_to_modify_buffer): Save active region text to
4283 Vsaved_region_selection.
4284
4285 * xselect.c (QPRIMARY): Move to keyboard.c.
4286
4287 * keyboard.c (Vselect_active_regions): Move from simple.el.
8d9e03e4
JB
4288 (Vsaved_region_selection, Qx_set_selection, QPRIMARY, Qlazy): New vars.
4289 (command_loop_1): Set window selection prior to deactivating the mark.
9852377f 4290
0e9c8657
JB
42912010-08-07 Juanma Barranquero <lekktu@gmail.com>
4292
4293 * alloc.c (lisp_malloc):
4294 * buffer.c (set_buffer_internal, set_buffer_internal_1):
4295 * charset.h (emacs_mule_charset):
4296 * dispextern.h (inhibit_free_realized_faces, redraw_frame)
4297 (redraw_garbaged_frames, scroll_cost, update_frame, scrolling)
4298 (bitch_at_user):
4299 * lisp.h (Fcheck_coding_system, Fget_text_property)
4300 (Qfunction, Qcompletion_ignore_case, QCwidth, QCsize):
4301 Remove duplicate declarations.
4302
648801d1
DN
43032010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
4304
32bc6709
DN
4305 * process.c: Simplify include logic.
4306
3ef1d108
DN
4307 * keyboard.h (quit_char): Add declaration.
4308 * process.h (QCport, QCspeed, QCprocess, QCbytesize, QCstopbits)
8d9e03e4
JB
4309 (QCparity, Qodd, Qeven, QCflowcontrol, Qhw, Qsw, QCsummary):
4310 Add declarations.
3ef1d108
DN
4311 * sysdep.c:
4312 * w32.c: Remove the above declarations.
4313
97ec208f
DN
4314 Remove extern declarations in .c files, .h files have them.
4315 * xterm.c:
4316 * xdisp.c:
97ec208f
DN
4317 * msdos.c:
4318 * image.c:
4319 * gtkutil.c:
4320 * fileio.c:
4321 * eval.c: Remove declarations.
4322
94eed851
DN
4323 * frame.c (frame_params): Make const.
4324
36e053eb
DN
4325 * lisp.h (fatal_error_signal, emacs_root_dir): Add declaration.
4326
0e843971
DN
4327 * emacs.c (emacs_copyright, emacs_version): Make static.
4328 (Vinitial_window_system, Vauto_save_list_file_name)
4329 (Vinhibit_redisplay): Remove declarations.
4330 (main): Remove HAVE_SHM code, unused. Remove _I386 conditional
4331 for AIX.
4332
648801d1
DN
4333 Use const for some arrays and functions.
4334 * xterm.h (xg_set_icon_from_xpm_data):
4335 * xfns.c (xg_set_icon_from_xpm_data):
4336 * term.c (fkeys):
4337 * keyboard.c (lispy_accent_keys, lispy_function_keys)
4338 (lispy_multimedia_keys, lispy_kana_keys, iso_lispy_function_keys)
4339 (lispy_drag_n_drop_names, scroll_bar_parts, modify_event_symbol)
4340 (frame.c frame_parms):
4341 * emacs-icon.h (gnu_xpm_bits):
4342 * callint.c (callint_argfuns): Use const.
4343
8646d999
J
43442010-08-06 Jan Djärv <jan.h.d@swipnet.se>
4345
4346 * sysdep.c: Move include term.h last of includes (Bug#6812).
4347
cb4545ad
EZ
43482010-08-06 Eli Zaretskii <eliz@gnu.org>
4349
4350 * dispnew.c (realloc_glyph_pool): Zero out newly allocated glyphs.
4351
4352 * msdos.c (IT_display_cursor): Log cursor position on termscript.
4353
4354 * .gdbinit (pgx): Display the avoid_cursor_p flag.
4355
da7e2be6
JB
43562010-08-06 Juanma Barranquero <lekktu@gmail.com>
4357
4358 * makefile.w32-in ($(BLD)/xdisp.$(O)): Update dependencies.
4359
3d608a86
J
43602010-08-06 Jan Djärv <jan.h.d@swipnet.se>
4361
7908fb60
J
4362 * xterm.h (x_get_focus_frame): Declare.
4363
4364 * keyboard.h (poll_for_input_1): Unconditionally declare.
4365
4094bf36
J
4366 * nsterm.h (x_set_menu_bar_lines): Declare.
4367
4368 * window.c: Don't include menu.h, it depends on lots of other .h-files.
4369
3d608a86
J
4370 * xfaces.c (x_create_gc, x_free_gc): Convert to ANSI C prototypes.
4371
4372 * window.c: Include menu.h.
4373
4374 * unexmacosx.c (print_region_list, print_regions)
4375 (build_region_list, find_emacs_zone_regions)
4376 (unexec_regions_merge, read_load_commands, dump_it)
4377 (unexec_init_emacs_zone): Convert to ANSI C prototypes.
4378
4379 * term.c: Check HAVE_SYS_IOCTL_H.
4380
686b968e 4381 * sysdep.c: Check HAVE_TERM_H.
3d608a86 4382
686b968e 4383 * process.c: Check HAVE_UTIL_H. Include nsterm.h if HAVE_NS.
3d608a86
J
4384
4385 * nsterm.m (ns_init_paths, ns_alloc_autorelease_pool)
4386 (ns_ring_bell, ns_defined_color, hide_hourglass)
4387 (x_display_pixel_height, x_display_pixel_width, syms_of_nsterm):
4388 Convert to ANSI C prototypes.
4389 (x_set_window_size, ns_draw_fringe_bitmap, judge): Move declarations
4390 before code.
4391
4392 * nsterm.h : Include sysselect.h.
4393 (x_sync, x_get_focus_frame, x_set_mouse_position)
4394 (x_set_mouse_pixel_position, x_make_frame_visible)
4395 (x_make_frame_invisible, x_iconify_frame, x_char_width, x_char_height)
4396 (x_pixel_width, x_pixel_height, x_set_frame_alpha, x_set_tool_bar_lines)
4397 (x_activate_menubar, free_frame_menubar, ns_init_paths, ns_select)
4398 (syms_of_nsterm, syms_of_nsfns, syms_of_nsmenu, syms_of_nsselect):
686b968e 4399 Declare.
3d608a86
J
4400
4401 * nsmenu.m (popup_activated, name_is_separator)
4402 (syms_of_nsmenu): Convert to ANSI C prototypes.
4403 (runMenuAt): Prototypes and move declarations before code.
4404
4405 * nsimage.m (ns_load_image): Move NSTRACE after declarations.
4406
4407 * nsfont.m (ns_fallback_entity, syms_of_nsfont): Convert to ANSI C
4408 prototypes.
4409
4410 * nsfns.m (have_menus_p, ns_display_info_for_name)
4411 (x_set_cursor_type, ns_appkit_version_str)
4412 (ns_appkit_version_int, ns_do_applescript)
4413 (x_set_scroll_bar_default_width, x_sync, compute_tip_xy)
4414 (syms_of_nsfns): Convert to ANSI C prototypes.
4415
4416 * menu.h (x_set_menu_bar_line): Declare.
4417 (free_menubar_widget_value_tree et.al): Add HAVE_NS for these functions.
4418
4419 * lisp.h (fmod_float): Declare.
4420
4421 * image.c (xpm_scan, xpm_make_color_table_v)
4422 (xpm_put_color_table_v, xpm_get_color_table_v)
4423 (xpm_make_color_table_h, xpm_put_color_table_h)
4424 (xpm_get_color_table_h, xpm_str_to_color_key, xpm_load_image)
4425 (xpm_load): Convert to ANSI C prototypes.
4426
4427 * emacs.c: Include nsterm.h if HAVE_NS.
4428
4429 * bidi.c (bidi_dump_cached_states): Fix fprintf warning.
4430
fce70521
DN
44312010-08-06 Dan Nicolaescu <dann@ics.uci.edu>
4432
4433 * process.c: Remove HAVE_SOCKETS #ifdefs inside #ifdef
4434 subprocesses, only MSDOS does not define HAVE_SOCKETS.
4435 (socket_options): Use const char* for name.
4436
a11889ab
JB
44372010-08-06 Juanma Barranquero <lekktu@gmail.com>
4438
4439 Fix changes in 2010-08-05T23:15:24Z!dann@ics.uci.edu..2010-08-05T23:34:12Z!dann@ics.uci.edu for Windows build.
4440
4441 * xmenu.c [USE_X_TOOLKIT || USE_GTK]:
4442 Don't declare xmalloc_widget_value and digest_single_submenu.
4443
4444 * w32font.c (Qlatin): Remove declaration.
4445
4446 * menu.h (xmalloc_widget_value, digest_single_submenu): Declare.
4447
c95b508f 4448 * dired.c (compile_pattern): Restore declaration.
a11889ab 4449
6254cdda
DN
44502010-08-05 Dan Nicolaescu <dann@ics.uci.edu>
4451
04bab72c
DN
4452 Remove extern declarations in .c files, .h files have them.
4453 * data.c:
4454 * dired.c:
4455 * editfns.c:
4456 * filelock.c:
4457 * fns.c:
4458 * font.c:
4459 * fontset.c:
4460 * frame.c:
4461 * fringe.c:
4462 * ftfont.c:
4463 * gtkutil.c:
4464 * indent.c:
4465 * keyboard.c:
4466 * keymap.c:
4467 * lread.c:
4468 * menu.c:
4469 * print.c:
4470 * search.c:
4471 * sound.c:
4472 * window.c:
4473 * xdisp.c:
4474 * xfaces.c:
4475 * xfns.c:
4476 * xfont.c:
4477 * xftfont.c:
4478 * xmenu.c:
4479 * xterm.c: Remove declarations.
4480
dff94ed5
DN
4481 Cleanup syssignal.h.
4482 * syssignal.h (sighold, sigrelse, RETSIGTYPE): Remove, unused.
4483 (main_thread): Move down to remove #ifdef.
4484 (SIGMASKTYPE, SIGEMPTYMASK, SIGFULLMASK, sigmask, sigunblock):
4485 Remove conditional definition following unconditional ones.
4486
99f3388e
DN
4487 * lisp.h: Remove HAVE_SHM code, unused.
4488 (QCmap, QCrehash_size, QCrehash_threshold, QCsize, QCtest)
4489 (QCweakness, Qabove_handle, Qbackquote, Qbar, Qbelow_handle)
4490 (Qborder, Qbottom, Qbox, Qcircular_list, Qcomma, Qcomma_at)
4491 (Qcomma_dot, Qcursor, Qdefault, Qdown, Qend_scroll, Qeq, Qeql)
4492 (Qequal, Qfile_exists_p, Qfont_param, Qfringe, Qfunction)
4493 (Qfunction_documentation, Qhandle, Qhbar, Qheader_line, Qhollow)
4494 (Qidentity, Qleft_margin, Qmenu, Qmenu_bar_update_hook)
4495 (Qmode_line_inactive, Qmouse, Qoverriding_local_map)
4496 (Qoverriding_terminal_local_map, Qratio, Qregion, Qright_margin)
4497 (Qscroll_bar, Qtool_bar, Qtop, Qup, Qvertical_border, Qwhen)
4498 (Qwindow_scroll_functions, Vafter_load_alist)
4499 (Vauto_save_list_file_name, Vface_alternative_font_family_alist)
4500 (Vface_alternative_font_registry_alist, Vface_font_rescale_alist)
4501 (Vface_ignored_fonts, Vinhibit_redisplay, Vminibuffer_list)
4502 (Vprint_length, Vprint_level, Vscalable_fonts_allowed)
4503 (Vshell_file_name, Vsystem_name, Vwindow_scroll_functions)
4504 (Vwindow_system_version, Vx_no_window_manager, initial_argc)
4505 (initial_argv, last_nonmenu_event, load_in_progress)
4506 (noninteractive_need_newline, scroll_margin): Add declarations.
4507
bba3e508
SM
4508 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
4509 Remove declarations, menu.h has them.
99f3388e
DN
4510 (QCbutton, QCtoggle, QCradio, QClabel, extra_keyboard_modifiers)
4511 (Vinput_method_function, Qinput_method_function)
4512 (Qevent_symbol_element_mask, last_event_timestamp):
4513 * dispextern.h (Voverflow_newline_into_fringe):
4514 * font.h (QCantialias, Qp, syms_of_ftfont, syms_of_xfns)
4515 (syms_of_ftxfont, syms_of_xftfont, syms_of_bdffont)
4516 (syms_of_w32font, syms_of_nsfont):
4517 * fontset.h (find_font_encoding, Qlatin):
4518 * frame.h (Qtooltip, Qrun_hook_with_args, Vmenu_bar_mode)
4519 (Vtool_bar_mode, set_frame_menubar):
4520 * ftfont.h (ftfont_font_format, ftfont_get_fc_charset):
4521 * xterm.h (Qx_gtk_map_stock):
4522 * keymap.h (meta_prefix_char): Add declarations.
4523
9f5dd6f2
DN
4524 * term.c: Remove dead code.
4525
6254cdda
DN
4526 Fix emacs -Q -f server-start & emacsclient -t on GNU/Linux.
4527 * term.c (dissociate_if_controlling_tty): Use USG5 instead of
4528 USG. This is equivalent to defined (USG) && !defined (BSD_PGRPS),
4529 which is what was there before BSD_PGRPS was removed.
4530
29cf3e20
EZ
45312010-08-05 Eli Zaretskii <eliz@gnu.org>
4532
4533 * deps.mk (unexcoff.o): Rename unexec.[co] => unexcoff.[co].
4534
4535 * unexcoff.c: Renamed from unexec.c.
4536
aaa0a19a
SM
45372010-08-04 Stefan Monnier <monnier@iro.umontreal.ca>
4538
4539 * sysdep.c (child_setup_tty): Comment-out left-over non-ICANON code.
4540
8d1d9587
JB
45412010-08-03 Johan Bockgård <bojohan@gnu.org>
4542
4543 * data.c (Flocal_variable_p): Handle variable aliases correctly.
e0d62a9b 4544 (Bug#6744)
8d1d9587 4545
9a747ba6
JD
45462010-08-02 Jan Djärv <jan.h.d@swipnet.se>
4547
4d464ae4
JD
4548 * xterm.c (x_create_toolkit_scroll_bar): Only set XtNbeNiceToColormap
4549 to TRUE if depth of screen is < 16.
4550
ac01763e
JD
4551 * gtkutil.c (hierarchy_ch_cb, qttip_cb): Do not define unless
4552 USE_GTK_TOOLTIP.
e0d62a9b
JB
4553 (xg_prepare_tooltip): Return 0 unless USE_GTK_TOOLTIP.
4554 (xg_show_tooltip, xg_hide_tooltip): Do nothing unless USE_GTK_TOOLTIP.
4d464ae4 4555 (xg_create_frame_widgets): Surround tooltip-related code with ifdef
ac01763e
JD
4556 USE_GTK_TOOLTIP.
4557 (xg_free_frame_widgets): Don't delete ttip_* unless USE_GTK_TOOLTIP.
4558
4559 * xterm.h (USE_GTK_TOOLTIP): New define.
4560 (struct x_output): Put ttip_* inside ifdef USE_GTK_TOOLTIP.
4561
9a747ba6
JD
4562 * sysdep.c (child_setup_tty): Enable ICANON in lflags and set VEOF
4563 to Control-D (Bug#6771).
4564
7b0815ba
JB
45652010-08-02 Juanma Barranquero <lekktu@gmail.com>
4566
4567 * editfns.c (Fregion_beginning, Fregion_end): Doc fixes (bug#6493).
4568 Wording by Drew Adams <drew.adams@oracle.com>.
4569
aa1859f5
J
45702010-08-01 Jan Djärv <jan.h.d@swipnet.se>
4571
4572 * xterm.h (struct x_output): Add ttip_widget, ttip_window and
4573 ttip_lbl.
4574
4575 * xterm.c (x_clear_frame): Check FRAME_GTK_WIDGET (f) before
4576 calling gtk_widget_queue_draw.
4577 (x_free_frame_resources): Call xg_free_frame_widgets.
4578
4579 * xfns.c (x_gtk_use_system_tooltips): New variable.
4580 (Fx_show_tip): If USE_GTK and x_gtk_use_system_tooltips, call
4581 new gtkutil tooltip functions to show the tooltip.
4582 (Fx_hide_tip): Call xg_hide_tooltip.
4583 (syms_of_xfns): Defvar x-gtk-use-system-tooltips.
4584
4585 * gtkutil.h (xg_free_frame_widgets, xg_prepare_tooltip)
4586 (xg_show_tooltip, xg_hide_tooltip): Declare.
4587
4588 * gtkutil.c (hierarchy_ch_cb, qttip_cb, xg_prepare_tooltip)
e0d62a9b
JB
4589 (xg_show_tooltip, xg_hide_tooltip, xg_free_frame_widgets):
4590 New functions.
aa1859f5
J
4591 (xg_create_frame_widgets): Set ttip_* to 0. Set a dummy tooltip
4592 text so qttip_cb is called. Connect query-tooltip to qttip_cb.
4593 Remove code that is commented out.
4594
76417ef4
SM
45952010-08-01 Stefan Monnier <monnier@iro.umontreal.ca>
4596
4597 * keymap.c (Fdefine_key, Flookup_key): Say what event is invalid.
4598
16041401
CY
45992010-07-31 Chong Yidong <cyd@stupidchicken.com>
4600
4601 * xselect.c (x_own_selection): Use list4.
4602
2c09a58f
DN
46032010-07-30 Dan Nicolaescu <dann@ics.uci.edu>
4604
4605 * buffer.c (Qwindow): Do not define, already defined in data.c.
4606 (syms_of_buffer): Do not intern and staticpro Qwindow. (Bug#6760)
4607
59df9fdd 46082010-07-29 Chad Brown <yandros@mit.edu>
1c97e857 4609
59df9fdd
JB
4610 Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf.
4611 * dired.c, sysdep.c: Test HAVE_DIRENT_H instead of SYSV_SYSTEM_DIR.
4612 * config.in: Undef HAVE_DIRENT_H.
1c97e857 4613 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h,
59df9fdd 4614 * s/msdos.h, s/usg5-4.h: Don't define SYSV_SYSTEM_DIR.
1c97e857 4615
1b231651
DN
46162010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4617
4618 Rename s/usg5-4.h -> s/usg5-4-common.h.
4619 * s/usg5-4.h: Rename file to ...
4620 * s/usg5-4-common.h: ... this for consistency with what we do for BSD.
4621 * s/unixware.h:
4622 * s/sol2-6.h:
4623 * s/irix6-5.h: Update includes accordingly.
4624
bfeabdc3
JD
46252010-07-29 Jan Djärv <jan.h.d@swipnet.se>
4626
2ebf1083
J
4627 * xfns.c (x_set_tool_bar_position): Remove debug fprintf.
4628
bfeabdc3 4629 * xterm.h (struct x_output): Add toolbar_top_height,
e0d62a9b
JB
4630 toolbar_bottom_height, toolbar_left_width, toolbar_right_width.
4631 Remove toolbar_height.
4632 If USE_GTK: Add hbox_widget and toolbar_in_hbox.
bfeabdc3
JD
4633 (FRAME_TOOLBAR_TOP_HEIGHT, FRAME_TOOLBAR_BOTTOM_HEIGHT)
4634 (FRAME_TOOLBAR_LEFT_WIDTH, FRAME_TOOLBAR_RIGHT_WIDTH): New macros.
4635 (FRAME_TOOLBAR_HEIGHT): Is now TOP_HEIGHT + BOTTOM_HEIGHT.
4636
4637 * xterm.c (x_set_window_size_1): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
4638
4639 * xfns.c (x_set_tool_bar_position): New function.
4640 (xic_set_statusarea): Use FRAME_TOOLBAR_TOP_HEIGHT.
4641 (x_frame_parm_handlers): Add x_set_tool_bar_position.
e0d62a9b 4642 (syms_of_xfns): If USE_GTK, provide move-toolbar.
bfeabdc3
JD
4643
4644 * window.c (calc_absolute_offset): Check for FRAME_TOOLBAR_TOP_HEIGHT
4645 and FRAME_TOOLBAR_LEFT_WIDTH.
4646
4647 * gtkutil.h (xg_change_toolbar_position): Declare.
4648
4649 * gtkutil.c (FRAME_TOTAL_PIXEL_WIDTH): New macro.
4650 (xg_frame_set_char_size): Add FRAME_TOOLBAR_WIDTH to pixelwidth.
4651 (xg_height_or_width_changed): Use FRAME_TOTAL_PIXEL_WIDTH.
4652 (xg_create_frame_widgets): Create a hobox for placing widgets
4653 vertically. Use gtk_box_pack_start.
ef1b0ba7 4654 (xg_height_or_width_changed): Rename from xg_height_changed.
bfeabdc3
JD
4655 (x_wm_set_size_hint): Add FRAME_TOOLBAR_WIDTH to base_width.
4656 (xg_update_frame_menubar, free_frame_menubar): Change to
4657 xg_height_or_width_changed.
4658 (xg_tool_bar_detach_callback): Update left/right/top/bottom tool bar
4659 size correctly. Remove hardcoded 4, instead use handlebox size -
4660 toolbar size.
4661 (xg_tool_bar_attach_callback): Update left/right/top/bottom tool bar
e0d62a9b 4662 size correctly. Use handlebox size + toolbar size as additional size.
bfeabdc3
JD
4663 (xg_pack_tool_bar): POS is a new parameter.
4664 Set orientation of tool bar based on pos.
4665 Only make handlebox_widget if NULL.
4666 Check if tool bar goes to vbox or hbox depending on pos.
4667 (xg_update_tool_bar_sizes): New function.
686b968e 4668 (update_frame_tool_bar): Remove old_req, new_req. Do not get tool bar
bfeabdc3
JD
4669 height, call xg_update_tool_bar_sizes instead.
4670 (free_frame_tool_bar): Remove from hbox or vbox depending on
4671 toolbar_in_hbox, Set all FRAME_TOOLBAR_*_(WIDTH|HEIGHT) to zero.
4672 (xg_change_toolbar_position): New function.
4673
4674 * frame.h (struct frame): Add tool_bar_position.
4675 (Qbottom): Declare.
4676
4677 * frame.c (Qtool_bar_position): New variable.
4678 (make_frame): Set tool_bar_position to Qtop.
4679 (frame_parms): Add tool-bar-position.
4680 (x_report_frame_params): Store tool_bar_position.
4681 (x_set_fringe_width): Reset wm size hint after fringe changes.
4682
26469a38
DN
46832010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4684
4685 Make lisp_time_argument declaration work on all systems.
4686 * lisp.h (lisp_time_argument): Move declaration ...
4687 * systime.h (lisp_time_argument): ... here
4688 * editfns.c (lisp_time_argument): Remove declaration. (Bug#6751)
4689
8848b728
JD
46902010-07-29 Jan Djärv <jan.h.d@swipnet.se>
4691
4692 * vm-limit.c (POINTER): Add typedef for it.
4693 (start_of_data): Change return type from POINTER to char *.
4694
4695 * frame.h (Qtty_color_mode): Move declaration out of ifdef
4696 HAVE_WINDOW_SYSTEM.
4697
76fd1ee9
DN
46982010-07-29 Dan Nicolaescu <dann@ics.uci.edu>
4699
0441987e
DN
4700 * vm-limit.c: Do not include sys/resource.h, mem-limits.h does it.
4701 Remove reference to __osf__, unused.
4702
56a000c7
DN
4703 * mem-limits.h: Remove duplicated includes.
4704 (NULL): Remove definition, unused.
4705 (POINTER): Remove definition.
4706 (start_of_data): Use char* in prototype, as the function
4707 definition does.
4708
e6cba650
DN
4709 Remove extern declarations from .c files, and them to .h files.
4710 * keyboard.h (Qhelp_echo, waiting_for_input)
4711 (input_available_clear_time, ignore_mouse_drag_p)
4712 (Vdouble_click_time, real_this_command, Vthis_original_command):
4713 * keymap.h (Qremap, Qmenu_item, Voverriding_local_map)
4714 (Voverriding_local_map_menu_flag):
4715 * lisp.h (Qinteractive_form, use_file_dialog)
4716 (Qcursor_in_echo_area, QCascent, QCmargin, QCrelief, Qcount)
4717 (Qextension_data, QCconversion, QCcolor_symbols, QCheuristic_mask)
4718 (QCindex, QCmatrix, QCcolor_adjustment, QCmask)
4719 (Qrisky_local_variable, map_char_table_for_charset, Vprint_level)
4720 (Qfunction, debug_on_next_call, Qfield)
4721 (Vinhibit_field_text_motion, Vuser_login_name, lisp_time_argument)
4722 (Qpriority, Qwindow, Qevaporate, Qbefore_string, Qafter_string)
4723 (Qfile_directory_p, Qinsert_file_contents)
4724 (Qcompletion_ignore_case, Qcompletion_ignore_case)
4725 (Vcompletion_regexp_list, Vhistory_length, completion_ignore_case)
4726 (history_delete_duplicates, minibuffer_auto_raise, Qonly)
4727 (Qfile_name_handler_alist, Qfront_sticky, Qrear_nonsticky)
4728 (Qminibuffer_prompt)
4729 (Vtemporary_file_directory,char_ins_del_vector, Qface):
4730 * xterm.h (gray_bitmap_width, gray_bitmap_height)
4731 (gray_bitmap_bits, xic_create_fontsetname):
4732 * coding.h (Vtranslation_table_for_input): Add extern declarations.
4733
4734 * xsmfns.c (Vuser_login_name):
4735 * xrdb.c (Vdouble_click_time):
4736 * xfaces.c (xic_create_fontsetname):
4737 * w32select.c (waiting_for_input):
4738 * print.c (minibuffer_auto_raise):
4739 * msdos.c (Qhelp_echo):
4740 * macros.c (real_this_command):
4741 * keymap.c (Voverriding_local_map):
4742 * xterm.c (poll_for_input_1, gray_bitmap_width)
4743 (gray_bitmap_height, gray_bitmap_bits;
4744 * xmenu.c ( Voverriding_local_map)
4745 (Voverriding_local_map_menu_flag; Qmenu_item; use_dialog_box)
4746 (use_file_dialog, Xt_app_con):
4747 * xdisp.c (minibuffer_auto_raise, Voverriding_local_map)
4748 (Voverriding_local_map_menu_flag, Qmenu_item, Qface, Qinvisible)
4749 (Qwidth, Qinvisible, Qwindow, Qpriority, Qtool_bar_lines)
4750 (Qtool_bar_lines, ignore_mouse_drag_p):
4751 * minibuf.c (Voverriding_local_map, Qfield, Qfront_sticky)
4752 (Qrear_nonsticky, nconc2):
4753 * keyboard.c (current_global_map, minibuf_level, Qmenu_item)
4754 (Vhistory_length, Vtranslation_table_for_input, Qcomposition)
4755 (Qdisplay, Qafter_string, Qbefore_string, Qundefined):
4756 * fileio.c (use_dialog_box, use_file_dialog, Vuser_login_name)
4757 (minibuf_level, minibuffer_auto_raise, lisp_time_argument):
4758 * eval.c (Qinteractive_form, Qrisky_local_variable, Qfunction)
4759 (gc_in_progress):
4760 * doc.c (Voverriding_local_map, Qremap):
4761 * dired.c (completion_ignore_case, Qcompletion_ignore_case)
4762 (Vcompletion_regexp_list):
4763 * coding.c (Qmac, Qinsert_file_contents, Qwrite_region)
4764 (Qcompletion_ignore_case):
4765 * callint.c (Qcursor_in_echo_area, Qfile_directory_p, Qonly)
4766 (Vhistory_length, Vthis_original_command, real_this_command)
4767 (Qface, Qminibuffer_prompt, history_delete_duplicates):
4768 * image.c (Qrisky_local_variable):
4769 * fontset.c (QCname):
4770 * fns.c (minibuffer_auto_raise, QCname):
4771 * dispnew.c (char_ins_del_cost):
4772 * composite.c (font_fill_lglyph_metrics):
4773 * cmds.c (Qface, Vtranslation_table_for_input):
4774 * charset.c (map_char_table_for_charset, Qfile_name_handler_alist):
4775 * ccl.c (charset_unicode):
4776 * callproc.c (Vtemporary_file_directory):
4777 * buffer.c (emacs_strerror): Remove extern declarations.
4778
4779 * data.c (Qwindow): Make non-static, used from other files too.
4780 * frame.c (validate_x_resource_name): Remove shadow definition for i.
4781
76fd1ee9
DN
4782 * unexec.c (make_hdr): Remove references to NO_REMAP, COFF,
4783 SEGMENT_MASK, SECTION_ALIGNMENT, ADJUST_EXEC_HEADER.
4784 * s/usg5-4.h (COFF):
4785 * s/template.h:
4786 * s/msdos.h (COFF, NO_REMAP):
4787 * s/ms-w32.h (NO_REMAP):
4788 * s/hpux10-20.h (NO_REMAP):
4789 * m/sparc.h (SEGMENT_MASK):
4790 * m/m68k.h (NO_REMAP):
4791 * m/intel386.h (SEGMENT_MASK):
4792 * m/arm.h (NO_REMAP):
4793 * m/alpha.h (COFF):
4794 * m/template.h: Remove references to unused defines.
4795
8a52f00a
JD
47962010-07-28 Jan Djärv <jan.h.d@swipnet.se>
4797
4798 * xsettings.c (Ftool_bar_get_system_style): Also check for
4799 Qtext_image_horiz.
4800
4801 * xdisp.c (Qtext_image_horiz): Define.
4802 (syms_of_xdisp): Initialize Qtext_image_horiz. Add text-image-horiz
087b38a0 4803 to documentation of tool-bar-style.
8a52f00a
JD
4804
4805 * lisp.h (Qtext_image_horiz): Declare.
4806
4807 * gtkutil.c (xg_make_tool_item, xg_show_toolbar_item): Handle tool bar
4808 style text_image_horiz.
4809
89dc303e
DN
48102010-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4811
60799703
DN
4812 * emacs.c (Fkill_emacs): Remove return statement.
4813
37254dc1
DN
4814 * term.c (Qspace, QCalign_to, QCwidth): Remove declarations.
4815 (encode_terminal_code, produce_composite_glyph): Remove unused variables.
bba3e508
SM
4816 (set_tty_color_mode, term_mouse_highlight, term_get_fkeys):
4817 Remove local extern declarations.
37254dc1 4818
71c7345a
DN
4819 * xmenu.c: Do not included lwlib.h, not needed.
4820
6ba577cb
DN
4821 * m/iris4d.h (XUINT, XSET): Remove, not needed.
4822
fdb183d6
DN
4823 * process.c: Move definitions earlier to minimize #ifdefs.
4824
4825 * xterm.h (x_get_customization_string, x_load_resources)
4826 (x_get_resource, x_text_icon, x_text_icon, x_check_errors)
4827 (x_check_errors, x_property_data_to_lisp, defined_color)
4828 (xic_set_xfontset, x_defined_color): Use const.
4829
4830 * xterm.c (xlwmenu_window_p, xlwmenu_redisplay): Remove declarations.
4831 (x_text_icon, x_check_errors, x_connection_closed): Use const.
4832
4833 * xselect.c (selection_data_to_lisp_data)
4834 (x_property_data_to_lisp):
4835 * xrdb.c (x_get_string_resource, file_p)
4836 (x_get_customization_string, magic_file_p, search_magic_path)
4837 (get_system_app, get_user_app, x_load_resources, x_get_resource)
4838 (x_get_string_resource): Use const.
4839
4840 * xfns.c: Include xlwmenu.h when USE_LUCID.
4841 (x_defined_color, xic_set_xfontset): Use const.
4842 (Fx_hide_tip): Remove local extern declaration.
4843
4844 * xfaces.c (Qmouse_face): Remove declaration.
4845 (face_color_gray_p, tty_defined_color, defined_color)
686b968e 4846 (face_color_gray_p, face_color_supported_p): Add const.
fdb183d6
DN
4847
4848 * xdisp.c (do_mouse_tracking): Remove declaration.
4849 (add_to_log): Use const.
4850
4851 * minibuf.c (Qmouse_face): Remove declaration.
4852
4853 * msdos.c (IT_note_mouse_highlight): Remove local extern declaration.
4854
4855 * keyboard.h (do_mouse_tracking): Add declaration.
4856
4857 * image.c (QCwidth, QCheight, QCforeground, QCbackground, QCfile)
4858 (QCdata, QCtype, Qcenter): Remove declarations.
4859
4860 * frame.c (x_get_resource_string, x_get_string_resource)
4861 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
4862 (x_default_parameter): Use const.
4863
4864 * font.c (Qnormal, QCtype, QCfamily, QCweight, QCslant, QCwidth)
4865 (QCheight, QCsize, QCname): Remove declarations.
4866
4867 * emacs.c (main): Remove local extern declaration.
4868
4869 * editfns.c (region_limit, syms_of_editfns): Remove local extern
4870 declarations.
4871
4872 * dispnew.c: Remove duplicate #include <unistd.h>.
4873 (update_window, update_frame_1, init_display): Remove local extern
4874 declarations.
4875
4876 * dispextern.h (add_to_log): Remove declaration.
4877 (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
4878 (x_frame_get_and_record_arg, x_default_parameter): Add const.
4879
4880 * dired.c (scmp): Add const.
4881 (directory_files_internal): Remove local extern declaration.
4882
4883 * data.c (Finteractive_form): Use const.
4884
4885 * composite.c (syms_of_composite): Remove local extern declarations.
4886
4887 * charset.c (add_to_log): Remove declaration.
4888
4889 * character.c (strwidth, parse_str_to_multibyte): Add const.
4890
4891 * character.h (strwidth, parse_str_to_multibyte): Likewise.
4892
4893 * buffer.c (Fset_buffer_multibyte): Remove local extern declaration.
4894
89dc303e 4895 * lisp.h (Fkill_emacs): Mark as NO_RETURN.
fdb183d6
DN
4896 (Lisp_Subr): Make doc and intspec constant.
4897 (QCsize, Qspace, Qcenter, QCalign_to, QCdata, QCfile, QCtype)
4898 (Qlocal, Qapply, Qnormal, QCfamily, QCweight, QCslant, QCwidth)
4899 (QCheight, QCsize, QCname, QCwidth, QCforeground)
4900 (QCbackground, add_to_log, stack_base, Vmark_even_if_inactive)
4901 (display_arg): Add declarations.
89dc303e 4902
0ed082fe 49032010-07-27 Christoph Scholtes <cschol2112@gmail.com>
a2a0d36b
CS
4904
4905 * minibuf.c (Fread_buffer): Doc fix (bug#6528).
4906
0ed082fe
JB
4907 * window.c (Fwindow_height): Doc fix (bug#6518).
4908
49092010-07-27 Juanma Barranquero <lekktu@gmail.com>
4910
4911 * buffer.c (syms_of_buffer) <fringe-indicator-alist>: Doc fix.
4912
ccaf0336
DN
49132010-07-26 Dan Nicolaescu <dann@ics.uci.edu>
4914
977105dc
DN
4915 * keyboard.c (Ftop_level, Fexit_recursive_edit)
4916 (Fabort_recursive_edit): Remove return statements in NO_RETURN
4917 functions.
4918
f5ada890
DN
4919 * frame.h (Qtty_color_mode): Add declaration.
4920
ccaf0336
DN
4921 * lisp.h (Ftop_level, Fexit_recursive_edit)
4922 (Fabort_recursive_edit): Mark as NO_RETURN.
4923
dfe3c90f
KH
49242010-07-26 Kenichi Handa <handa@m17n.org>
4925
4926 * font.c (Ffont_shape_gstring): Terminate GSTRING by nil if the
e29eb8cf 4927 number of glyphs gets smaller than the original length. (Bug#6621)
dfe3c90f 4928
7d383292
JB
49292010-07-26 Juanma Barranquero <lekktu@gmail.com>
4930
4931 * lread.c (unreadpure, mapatoms_1): Make static.
4932
da31e629
JB
49332010-07-25 Juanma Barranquero <lekktu@gmail.com>
4934
4935 * terminfo.c (tparam): Fix prototype of tparm.
4936
7bfa6d77
AS
49372010-07-25 Andreas Schwab <schwab@linux-m68k.org>
4938
dcc19aac
AS
4939 * emacs.c (main) [PROFILING]: Use __executable_start if defined to
4940 find start of text segment.
4941 * dispnew.c (safe_bcopy): Don't define if HAVE___EXECUTABLE_START
4942 is defined.
4943
7bfa6d77
AS
4944 * callproc.c (set_initial_environment): Avoid unbalanced braces.
4945
63f9a672
KB
49462010-07-25 Ken Brown <kbrown@cornell.edu>
4947
4948 * vm-limit.c (check_memory_limits): Fix previous change;
4949 accidentally reverted an earlier change.
4950
24933075
KB
49512010-07-25 Ken Brown <kbrown@cornell.edu>
4952
4953 * mem-limits.h (BSD4_2) [cygwin]: Don't define here; instead...
4954 * vm-limit.c: ...add 'defined (CYGWIN)' here (Bug#6715).
4955
361358ea
JB
49562010-07-25 Juanma Barranquero <lekktu@gmail.com>
4957
4958 * callproc.c (relocate_fd): Set inside #ifndef WINDOWSNT.
4959 * dired.c (opendir, readdir): Fix prototypes.
4960 * editfns.c (w32_get_internal_run_time): Fix prototypes.
4961 * keyboard.c (input_available_signal): Declare inside #ifdef SIGIO.
4962 * ndir.h (opendir, readdir, seekdir, closedir): Fix prototypes.
4963 (telldir): Remove declaration.
4964 * ralloc.c (real_morecore, __morecore): Fix prototypes.
4965 * sound.c (alsa_sound_perror): Declare inside #ifdef HAVE_ALSA.
4966 * syssignal.h (strsignal): Fix prototype.
4967 * term.c (tparam): Fix prototype.
4968 (term_get_fkeys_address, term_get_fkeys_kboard, term_get_fkeys_1)
4969 (term_get_fkeys): Set inside "#ifndef DOS_NT".
4970 * vm-limit.c (check_memory_limits): Fix prototypes of real_morecore
4971 and __morecore.
4972 * w32gui.h (XParseGeometry): Fix prototype.
4973 * w32heap.h (get_data_start, get_data_end, init_heap): Fix prototypes.
4974 * w32term.c (my_set_focus): Declare inside #if 0.
4975 * w32term.h (x_window_to_frame, x_display_info_for_name, w32_term_init)
4976 (w32_fill_rect, w32_clear_window, init_crit, delete_crit, signal_quit)
4977 (drain_message_queue, get_next_msg, post_msg, parse_button)
4978 (ClipboardSequence_Proc): Fix prototypes.
4979 (wait_for_sync): Remove declaration.
4980
630b9592
JB
49812010-07-24 Juanma Barranquero <lekktu@gmail.com>
4982
4983 * w32fns.c (w32_to_x_color): Remove, unused.
4984
6a0d6611
AS
49852010-07-24 Andreas Schwab <schwab@linux-m68k.org>
4986
4987 * lisp.h: Remove leftover P_.
4988
4e8608ff
DN
49892010-07-24 Dan Nicolaescu <dann@ics.uci.edu>
4990
4991 * ecrt0.c, unexalpha.c: Remove files, unused.
4992
c8197983
AS
49932010-07-24 Andreas Schwab <schwab@linux-m68k.org>
4994
4995 * cmds.c (internal_self_insert): Make static.
4996 * lisp.h (internal_self_insert): Remove declaration.
4997
97b372d7
JB
49982010-07-23 Juanma Barranquero <lekktu@gmail.com>
4999
33ac0414
JB
5000 * alloc.c (free_float):
5001 * font.c [ENABLE_CHECKING] (font_match_xlfd, font_check_xlfd_parse):
5002 * frame.c (delete_frame_handler):
5003 * ralloc.c (reorder_bloc):
5004 * w32menu.c (menubar_id_to_frame, add_left_right_boundary):
5005 Remove unused static functions.
5006
94da8397
JB
5007 * menu.c (cleanup_popup_menu): Set inside "#ifdef HAVE_NS";
5008 it is called only from NS code.
5009
2e6c8532
JB
5010 * w32term.c (my_set_focus): #ifdef away; it is called only from
5011 "#ifdef 0" code.
5012
97b372d7
JB
5013 * w32fns.c (x_edge_detection):
5014 * xfaces.c (may_use_scalable_font_p):
5015 Remove obsolete static declarations.
5016
7c3320d8
JB
50172010-07-20 Juanma Barranquero <lekktu@gmail.com>
5018
5019 * alloc.c (emacs_blocked_free, emacs_blocked_malloc)
5020 (emacs_blocked_realloc, uninterrupt_malloc):
5021 * fringe.c (w32_reset_fringes):
5022 * image.c (convert_mono_to_color_image, lookup_rgb_color)
5023 (init_color_table, XPutPixel, jpeg_resync_to_restart_wrapper):
5024 * sound.c (be2hs, do_play_sound):
5025 * vm-limit.c (get_lim_data, ret_lim_data):
5026 * w32term.c (x_free_frame_resources):
5027 * xfaces.c (x_create_gc, x_free_gc):
5028 Convert definitions to standard C.
5029
d5273788
SM
50302010-07-20 Stefan Monnier <monnier@iro.umontreal.ca>
5031
5032 * eval.c (Feval, Ffuncall): Use the new names.
5033
5034 * lisp.h (struct Lisp_Subr): Rename `am' to aMANY and add aUNEVALLED.
5035 (DEFUN): Add braces around the union initialisation and use ## to
5036 specify the right union alternative and avoid a cast.
5037
8d16a259
JB
50382010-07-18 Juanma Barranquero <lekktu@gmail.com>
5039
5040 * makefile.w32-in ($(BLD)/keyboard.$(O)): Update dependencies.
5041
3b8eff32
CY
50422010-07-17 Chong Yidong <cyd@stupidchicken.com>
5043
5044 * frame.c (make_initial_frame): Use set_menu_bar_lines (Bug#6660).
5045
499322ce
J
50462010-07-17 Jan Djärv <jan.h.d@swipnet.se>
5047
5048 * gtkutil.c (xg_event_is_for_menubar): Also check that event window
5049 is related to the menu bar (Bug#6499).
a628ad9d 5050 (xg_frame_resized): GTK_IS_MAPPED => gtk_widget_get_mapped, for Gtk 3.0.
499322ce 5051
f6003da5 50522010-07-16 Jan Djärv <jan.h.d@swipnet.se>
b78f9767
J
5053
5054 * xterm.h (x_menubar_window_to_frame): Second parameter is XEvent*.
5055
5056 * xterm.c (handle_one_xevent): Pass event to x_menubar_window_to_frame.
5057
5058 * xmenu.c (x_activate_menubar): Revert previous fix for Bug#6499,
5059 i.e. don't put back ButtonRelease (Bug#6608).
5060
5061 * xfns.c (x_menubar_window_to_frame): Take XEvent as second parameter
5062 instead of Window. Call xg_event_is_for_menubar when
5063 USE_GTK (Bug#6499).
5064
5065 * gtkutil.h (xg_event_is_for_menubar): Declare.
5066
5067 * gtkutil.c (xg_event_is_for_menubar): New function (Bug#6499).
5068
f6003da5 50692010-07-16 Eli Zaretskii <eliz@gnu.org>
1f60c16a
EZ
5070
5071 * w32fns.c (x_set_foreground_color): Fix setting the cursor color
5072 when it's the same as the old foreground. (Bug#6609)
5073
23243f29
J
50742010-07-16 Jan Djärv <jan.h.d@swipnet.se>
5075
5076 * xmenu.c (free_frame_menubar): Only call x_set_window_size if
5077 widget is non-null (Bug#6645).
5078
2b23d2a6
AS
50792010-07-15 Andreas Schwab <schwab@linux-m68k.org>
5080
01b564ff
AS
5081 * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font):
5082 Convert old-style definition.
5083
2b23d2a6
AS
5084 * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of
5085 timestamp argument.
5086
c4affd2c
EZ
50872010-07-15 Eli Zaretskii <eliz@gnu.org>
5088
5089 * fringe.c (update_window_fringes): Restore mistakenly reverted
5090 code from 2010-04-17T12:33:05Z!eliz@gnu.org merged in 2010-04-20T13:31:28Z!eliz@gnu.org.
5091
cf28cebc
J
50922010-07-14 Jan Djärv <jan.h.d@swipnet.se>
5093
5094 * xterm.c (xm_scroll_callback, x_process_timeouts): K&R => prototype.
5095 (SET_SAVED_KEY_EVENT): Remove (not used).
5096 (SET_SAVED_MENU_EVENT): Rename to SET_SAVED_BUTTON_EVENT and
5097 remove size parameter.
5098 (handle_one_xevent): Check popup_activated () for menu for Xt also.
5099 Remove #ifdef USE_GTK around finish = X_EVENT_DROP.
5100 Remove #ifdef USE_MOTIF code that did SET_SAVED_BUTTON_EVENT for
5101 ButtonRelease.
6b2c4bd9
J
5102 (x_set_window_size_1): scroll_bar_actual_width is always
5103 SCROLL_BAR_COLS * COLUMN_WIDTH for the purpose of frame sizing.
cf28cebc
J
5104
5105 * xdisp.c (pending_menu_activation): Remove extern declaration.
5106 (prepare_menu_bars): Remove setting of pending_menu_activation.
5107
5108 * xmenu.c (pending_menu_activation): Remove.
f6003da5
JB
5109 (x_activate_menubar): Set popup_activated_flag for Xt also.
5110 Remove setting of pending_menu_activation.
cf28cebc
J
5111 (set_frame_menubar): Remove check of pending_menu_activation.
5112 Declare menubar_size before code. Correct spelling in comment.
5113
f6c1c771
KH
51142010-07-14 Kenichi Handa <handa@m17n.org>
5115
5116 * font.c (font_open_entity): Cancel previous change.
5117 (Ffont_get): Don't check FONT_ENTITY_INDEX of a font-object.
5118
20477505
EZ
51192010-07-13 Eli Zaretskii <eliz@gnu.org>
5120
77defa9a
EZ
5121 Remove subprocesses #ifdefs.
5122 * process.c <inhibit_sentinels>: Move to the common part.
5123 (Fwaiting_for_user_input_p): Move to the common part; return nil
5124 if async subprocesses aren't supported.
5125 * sysdep.c (wait_for_termination) [!MSDOS]: Don't compile on
5126 MS-DOS. Remove "#ifdef subprocesses".
5127 (sys_subshell, sys_select): Remove "#ifdef subprocesses".
5128 (gettimeofday): Remove "#ifdef subprocesses".
5129 (wait_without_blocking): Remove function.
5130 (flush_pending_output, child_setup_tty): Don't compile on MS-DOS.
5131 Remove "#ifdef subprocesses".
5132 (child_setup_tty): Use WINDOWSNT instead of DOS_NT, since not
5133 compiled on MS-DOS.
5134 * callproc.c (Fcall_process) [!MSDOS]: Don't call
5135 wait_for_termination on MS-DOS.
5136 * emacs.c (shut_down_emacs): Remove "#ifndef subprocesses" from
5137 initialization of inhibit_sentinels.
5138 * keyboard.c (record_asynch_buffer_change): Remove "#ifdef
5139 subprocesses" conditional.
5140 * callproc.c (Fcall_process) [!subprocesses]: Don't call
5141 wait_for_termination, since `buffer' cannot be an integer when
5142 async subprocesses are not supported
5143 * xdisp.c (decode_mode_spec): Use `MSDOS' instead of `subprocesses'
5144 for ifdefing away the call to Fprocess_status.
5145
20477505
EZ
5146 * process.c (add_keyboard_wait_descriptor) [!subprocesses]: Ifdef
5147 away the entire body of the function.
5148
b3ffc17c
DN
51492010-07-13 Dan Nicolaescu <dann@ics.uci.edu>
5150
01faa934
DN
5151 Remove subprocesses #ifdefs from term.c.
5152 * process.c (add_keyboard_wait_descriptor)
5153 (delete_keyboard_wait_descriptor): Move to common section, do
5154 nothing when subprocesses is not defined.
a628ad9d
JB
5155 * term.c (Fsuspend_tty, Fresume_tty, init_tty):
5156 Remove subprocesses #ifdefs.
01faa934 5157
b3ffc17c
DN
5158 Convert maybe_fatal to standard C.
5159 * lisp.h (verror): Declare.
5160 * eval.c (verror): New function containing the code from ...
5161 (error): ... this. Call verror.
5162 * term.c (vfatal): New function containing the code from ...
5163 (fatal): ... this. Call vfatal.
5164 (maybe_fatal): Convert to standard C, use variable number of
5165 arguments. Declare as non-return.
5166 (init_tty): Fix maybe_fatal call.
5167
0521f580
DN
51682010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5169
5170 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_expose)
5171 (_scroll_bar_note_movement): Convert definitions to standard C.
5172 * xmenu.c (menu_help_callback, pop_down_menu, xmenu_show):
5173 * xfns.c (hack_wm_protocols, x_window, x_window): Likewise.
5174
ebd15611
DN
51752010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5176
5177 * xterm.c (x_frame_of_widget, x_alloc_nearest_color_for_widget)
5178 (x_alloc_lighter_color_for_widget, cvt_string_to_pixel)
5179 (cvt_pixel_dtor, x_window_to_menu_bar, xt_action_hook)
5180 (xaw_jump_callback, xaw_scroll_callback)
5181 (x_create_toolkit_scroll_bar, x_set_toolkit_scroll_bar_thumb)
bba3e508
SM
5182 (x_wm_set_size_hint, x_activate_timeout_atimer):
5183 Convert definitions to standard C.
ebd15611
DN
5184 * xmenu.c (menubar_id_to_frame, popup_get_selection)
5185 (popup_activate_callback, popup_deactivate_callback)
5186 (menu_highlight_callback, menubar_selection_callback)
5187 (apply_systemfont_to_dialog, apply_systemfont_to_menu)
5188 (free_frame_menubar, popup_selection_callback, as)
5189 (create_and_show_popup_menu, dialog_selection_callback)
5190 (create_and_show_dialog):
5191 * xfns.c (hack_wm_protocols, x_window):
5192 * xfaces.c (x_update_menu_appearance):
5193 * widget.c (get_default_char_pixel_size, pixel_to_char_size)
5194 (char_to_pixel_size, round_size_to_char, get_wm_shell)
5195 (set_frame_size, update_wm_hints, setup_frame_gcs)
5196 (update_various_frame_slots, update_from_various_frame_slots)
5197 (EmacsFrameInitialize, EmacsFrameRealize, EmacsFrameResize)
5198 (EmacsFrameSetValues, EmacsFrameQueryGeometry)
5199 (EmacsFrameSetCharSize, widget_store_internal_border): Likewise.
5200
de06a2dd
AS
52012010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5202
a628ad9d 5203 * dbusbind.c (xd_initialize): Don't compare boolean with a constant.
de06a2dd 5204
fc549af9
EZ
52052010-07-12 Eli Zaretskii <eliz@gnu.org>
5206
5207 * process.c (setup_process_coding_systems): Move to the part
5208 shared by non-subprocesses systems, and make its body empty when
5209 subprocesses is not defined.
5210 (close_process_descs): Move to the part shared by non-subprocesses
5211 systems.
1408902e
EZ
5212 (wait_reading_process_output) [!subprocesses]: Convert arg list to
5213 ANSI C.
fc549af9 5214
d5a3eaaf
AS
52152010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5216
5217 * editfns.c (transpose_markers): Convert old-style definition.
5218 * emacs.c (abort, shut_down_emacs, fixup_locale)
5219 (synchronize_system_time_locale)
5220 (synchronize_system_messages_locale, syms_of_emacs): Likewise.
5221 * floatfns.c (extract_float, matherr, init_floatfns)
5222 (syms_of_floatfns): Likewise.
5223 * fns.c (make_hash_table): Likewise.
5224 * ftfont.c (ftfont_get_otf, ftfont_otf_features)
5225 (ftfont_otf_capability, ftfont_get_glyph_id, ftfont_get_metrics)
5226 (ftfont_drive_otf, ftfont_shape_by_flt, ftfont_shape)
5227 (ftfont_variation_glyphs): Likewise.
5228 * gtkutil.c (xg_create_widget, xg_modify_menubar_widgets): Likewise.
5229 * keymap.c (describe_map_tree, describe_map, describe_vector): Likewise.
5230 * lread.c (read_filtered_event): Likewise.
5231 * minibuf.c (read_minibuf_noninteractive, read_minibuf): Likewise.
5232 * process.c (wait_reading_process_output): Likewise.
5233 * scroll.c (do_line_insertion_deletion_costs): Likewise.
5234 * search.c (search_buffer, boyer_moore): Likewise.
5235 * syntax.c (scan_sexps_forward): Likewise.
5236 * xdisp.c (try_scrolling): Likewise.
5237 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
5238 (face_at_string_position): Likewise.
5239 * xfns.c (x_default_scroll_bar_color_parameter): Likewise.
5240 * xselect.c (x_get_window_property, receive_incremental_selection)
5241 (x_get_window_property_as_lisp_data, lisp_data_to_selection_data):
5242 Likewise.
5243 * xterm.c (x_draw_relief_rect, x_draw_box_rect): Likewise.
5244
6f704c76
DN
52452010-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5246
ded80a25
DN
5247 * callproc.c (child_setup): Remove subprocesses conditional.
5248 Remove code dealing with SET_EMACS_PRIORITY, unused.
5249
49d937f4 5250 * buffer.c (Fset_buffer_multibyte): Remove subprocesses conditional.
2e31d424
DN
5251 * process.c (close_process_descs): Use DOS_NT instead of WINDOWSNT.
5252
5253 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
5254 (__do_global_dtors, __main): Use void in definition.
5255 (main): Remove code dealing with SET_EMACS_PRIORITY, unused.
5256 Remove SYMS_MACHINE code, unused. Remove SYMS_SYSTEM, inline
5257 the only users from ...
5258 * s/ms-w32.h (SYMS_SYSTEM): ... here and ...
5259 * s/msdos.h (SYMS_SYSTEM): ... here. Remove.
5260 (HAVE_VOLATILE): Remove, unused.
5261
6f704c76
DN
5262 Convert more function definitions to standard C.
5263 * xdisp.c (window_box_edges, handle_single_display_spec)
5264 (display_string): Convert definition to standard C.
5265 * scroll.c (do_direct_scrolling, scrolling_1):
5266 * dispnew.c (allocate_matrices_for_frame_redisplay)
5267 (mirrored_line_dance):
5268 * coding.c (code_convert_string):
5269 * charset.c (map_charset_chars):
5270 * ccl.c (Fccl_program_p, Fccl_execute, Fccl_execute_on_string)
5271 (Fregister_ccl_program, Fregister_code_conversion_map):
5272 * keyboard.c (kbd_buffer_nr_stored): Likewise.
5273 (head_table): Make static and const.
5274
e6cfa7c3
AS
52752010-07-12 Andreas Schwab <schwab@linux-m68k.org>
5276
5277 * Makefile.in (C_WARNINGS_SWITCH, PROFILING_CFLAGS)
5278 (PROFILING_LDFLAGS): Set from substitution.
5279 (ALL_CFLAGS): Add C_WARNINGS_SWITCH and PROFILING_CFLAGS, put
5280 CFLAGS last.
5281
892dd565
KH
52822010-07-12 Kenichi Handa <handa@m17n.org>
5283
6f2cdcd1
KH
5284 * Makefile.in (lisp): Change hebrew.el to hebrew.elc.
5285 (shortlisp): Likewise.
5286
892dd565
KH
5287 * font.h (enum font_property_index): New member FONT_ENTITY_INDEX.
5288
5289 * font.c (font_open_entity): Record ENTITY in FONT_OBJECT's slot
5290 of FONT_ENTITY_INDEX.
5291 (Ffont_get): If KEY is :otf and the font-object doesn't have the
5292 property, get the property value dynamically.
5293 (Ffont_put): Accept font-entity and font-object too.
ef1b0ba7 5294 (Ffont_get_glyhphs): Rename from Fget_font_glyphs. Arguments and
892dd565 5295 return value changed.
bba3e508 5296 (syms_of_font): Adjust for the above change.
892dd565 5297
ae96d47a
AS
52982010-07-11 Andreas Schwab <schwab@linux-m68k.org>
5299
c8fc18ee
AS
5300 * blockinput.h: Remove obsolete comment.
5301
89887d67
AS
5302 * lisp.h: Include <stddef.h>.
5303 (OFFSETOF): Don't define.
5304 (VECSIZE): Use offsetof instead of OFFSETOF.
5305 (PSEUDOVECSIZE): Likewise.
5306 * process.c (conv_sockaddr_to_lisp): Likewise.
5307 * alloc.c: Don't include <stddef.h>.
5308 * buffer.h (PER_BUFFER_VAR_OFFSET): Use offsetof.
5309
ae96d47a
AS
5310 * process.c: Remove obsolete comment.
5311
635c0aa1
CY
53122010-07-11 Chong Yidong <cyd@stupidchicken.com>
5313
5314 * xfaces.c (Vface_remapping_alist): Doc fix (Bug#6091).
5315
a64df650
AS
53162010-07-11 Andreas Schwab <schwab@linux-m68k.org>
5317
8966b757
AS
5318 * callint.c (Fcall_interactively): Use strchr, strrchr instead of
5319 index, rindex.
5320 * doc.c (get_doc_string, Fsnarf_documentation): Likewise.
5321 * editfns.c (Fuser_full_name, Fformat): Likewise.
5322 * emacs.c (argmatch, sort_args, decode_env_path): Likewise.
5323 * fileio.c (Ffile_symlink_p): Likewise.
5324 * filelock.c (current_lock_owner): Likewise.
5325 * font.c (font_parse_name, font_parse_family_registry): Likewise.
5326 * fontset.c (fontset_pattern_regexp): Likewise.
5327 * lread.c (read1): Likewise.
5328 * sysdep.c (init_system_name): Likewise.
5329 * xfns.c (select_visual): Likewise.
5330 * s/hpux10-20.h (index, rindex): Don't define.
5331 * s/ms-w32.h (index): Likewise.
5332 * s/usg5-4.h: Likewise.
5333
cf237e27
AS
5334 * callproc.c (relocate_fd): Use F_DUPFD if defined.
5335
a8fe7202
AS
5336 * alloc.c (pending_malloc_warning, malloc_warning): Add const.
5337 * callproc.c (relocate_fd, getenv_internal_1, getenv_internal)
5338 (egetenv): Likewise.
5339 * doprnt.c (doprnt): Likewise.
5340 * editfns.c (set_time_zone_rule, format2): Likewise.
5341 * emacs.c (decode_env_path): Likewise.
5342 * eval.c (signal_error, error): Likewise.
5343 * insdel.c (replace_range_2): Likewise.
5344 * keyboard.c (cmd_error_internal): Likewise.
5345 * lread.c (isfloat_string, make_symbol, dir_warning): Likewise.
5346 * print.c (write_string, write_string_1, print_error_message):
5347 Likewise.
5348 * vm-limit.c (warn_function, memory_warnings): Likewise.
5349 * xdisp.c (message1, message1_nolog, message_with_string)
5350 (vmessage, message, message_nolog): Likewise.
5351 * emacs.c: Remove duplicate declaration.
5352 * keyboard.h: Likewise.
5353 * lisp.h: Update prototypes.
5354
bb8e180f
AS
5355 * eval.c: Fix indentation problem.
5356
83380e65
AS
5357 * keyboard.c: Include "process.h"
5358
a64df650
AS
5359 * eval.c: Remove obsolete noinline declaration.
5360 * fns.c: Likewise.
5361
6a8033e1
KR
53622010-07-11 Ken Raeburn <raeburn@raeburn.org>
5363
5364 * doprnt.c (doprnt): Take a va_list argument instead of count and
5365 pointer.
5366 * eval.c (error): Change to a standard-C variadic function.
ef1b0ba7 5367 * xdisp.c (vmessage): Rename from message, made static, and
6a8033e1
KR
5368 changed to take a va_list argument.
5369 (message): New variadic wrapper.
5370 (message_nolog): Now a variadic function, calling vmessage.
5371 * lisp.h: Include stdarg.h for va_list.
5372 (doprnt, error, message, message_nolog): Decls updated.
5373
462aa963
EZ
53742010-07-11 Eli Zaretskii <eliz@gnu.org>
5375
5376 * process.c (syms_of_process) <delete-exited-processes>: Define
5377 even if !subprocesses.
5378 (delete_exited_processes): Ditto.
5379
5380 * msdos.c (syms_of_msdos) <delete-exited-processes>: Remove DEFVAR.
5381 (delete_exited_processes): Don't define.
5382
48104462
CY
53832010-07-10 Chong Yidong <cyd@stupidchicken.com>
5384
5385 * frame.c (make_frame): Initialize menu_bar_lines and
5386 tool_bar_lines members.
bba3e508
SM
5387 (make_initial_frame, make_terminal_frame):
5388 Initialize menu_bar_lines using value of menu-bar-mode.
48104462
CY
5389
5390 * msdos.c (IT_set_frame_parameters): Don't set menu-bar-lines.
5391
f388c88a
EZ
53922010-07-10 Eli Zaretskii <eliz@gnu.org>
5393
5394 * process.c: Reshuffle #include's. Condition some of the global
5395 and static variables on `subprocesses'.
5396 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
5397 Leave only one implementation.
5398 (Fget_buffer_process, Fprocess_inherit_coding_system_flag)
5399 (kill_buffer_processes, Flist_system_processes)
5400 (Fprocess_attributes, init_process, syms_of_process): Unify the
5401 implementations for with subprocesses and without them.
5402
723f5a07
J
54032010-07-09 Jan Djärv <jan.h.d@swipnet.se>
5404
5405 * xmenu.c (set_frame_menubar): Must realize menubar_widget to get the
5406 correct size for Motif.
5407 (free_frame_menubar): Call x_set_window_size to update frame size.
5408
5409 * xfns.c (x_window): Set borderWidth to 0 for pane and
5410 EmacsFrame. Frame size calculation is wrong otherwise.
5411
2536a4b7
MA
54122010-07-09 Michael Albinus <michael.albinus@gmx.de>
5413
5414 * dbusbind.c (xd_initialize): Add new argument RAISE_ERROR, which
5415 allows to suppress errors when polling in Emacs' main loop.
5416 (Fdbus_init_bus, Fdbus_get_unique_name, Fdbus_call_method)
5417 (Fdbus_call_method_asynchronously, Fdbus_method_return_internal)
5418 (Fdbus_method_error_internal, Fdbus_send_signal)
5419 (xd_get_dispatch_status, xd_read_message, Fdbus_register_signal)
5420 (Fdbus_register_method): Use it. (Bug#6579)
5421
5842a27b
DN
54222010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
5423
5424 * alloc.c: Convert DEFUNs to standard C.
5425 * buffer.c:
5426 * bytecode.c:
5427 * callint.c:
5428 * callproc.c:
5429 * casefiddle.c:
5430 * casetab.c:
5431 * category.c:
5432 * character.c:
5433 * charset.c:
5434 * chartab.c:
5435 * cmds.c:
5436 * coding.c:
5437 * composite.c:
5438 * data.c:
5439 * dbusbind.c:
5440 * dired.c:
5441 * dispnew.c:
5442 * doc.c:
5443 * dosfns.c:
5444 * editfns.c:
5445 * emacs.c:
5446 * eval.c:
5447 * fileio.c:
5448 * filelock.c:
5449 * floatfns.c:
5450 * fns.c:
5451 * font.c:
5452 * fontset.c:
5453 * frame.c:
5454 * fringe.c:
5455 * image.c:
5456 * indent.c:
5457 * insdel.c:
5458 * keyboard.c:
5459 * keymap.c:
5460 * lread.c:
5461 * macros.c:
5462 * marker.c:
5463 * menu.c:
5464 * minibuf.c:
5465 * msdos.c:
5466 * nsfns.m:
5467 * nsmenu.m:
5468 * nsselect.m:
5469 * print.c:
5470 * process.c:
5471 * search.c:
5472 * sound.c:
5473 * syntax.c:
5474 * term.c:
5475 * terminal.c:
5476 * textprop.c:
5477 * undo.c:
5478 * w16select.c:
5479 * w32console.c:
5480 * w32fns.c:
5481 * w32font.c:
5482 * w32menu.c:
5483 * w32proc.c:
5484 * w32select.c:
5485 * window.c:
5486 * xdisp.c:
5487 * xfaces.c:
5488 * xfns.c:
5489 * xmenu.c:
5490 * xselect.c:
5491 * xsettings.c:
5492 * xsmfns.c: Likewise.
5493
d568829b
EZ
54942010-07-08 Eli Zaretskii <eliz@gnu.org>
5495
5496 * process.c (kbd_is_on_hold, hold_keyboard_input)
5497 (unhold_keyboard_input, kbd_on_hold_p) [!subprocesses]: Define.
5498
52214050
J
54992010-07-08 Jan Djärv <jan.h.d@swipnet.se>
5500
5501 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
5502 (create_and_show_dialog): Don't call apply_systemfont_to_(menu|dialog)
5503 unless USE_LUCID.
5504
313d9eb2
DN
55052010-07-08 Dan Nicolaescu <dann@ics.uci.edu>
5506
a628ad9d
JB
5507 * xdisp.c (store_mode_line_noprop_char): Remove K&R alternative
5508 declaration.
d8825aa3 5509
295d0d8f
DN
5510 Clean up include guards.
5511 * tparam.c: Remove include guards for config.h, string.h and code
5512 that assumes #ifndef emacs.
5513 * termcap.c:
5514 * unexalpha.c:
5515 * sysdep.c:
5516 * filemode.c:
5517 * filelock.c:
5518 * bidi.c: Likewise.
5519
49d9e6b0
DN
5520 Remove prefix-args.c
5521 * prefix-args.c: Remove file.
5522 * autodeps.mk (ALLOBJS): Remove reference to prefix-args.
5523 * Makefile.in (temacs${EXEEXT}): Remove references to
5524 PRE_EDIT_LDFLAGS and POST_EDIT_LDFLAGS.
5525 (mostlyclean): Remove reference to prefix-args.
5526 (prefix-args): Remove.
5527
313d9eb2
DN
5528 Simplify cstart_of_data, start_of_code and related code.
5529 * mem-limits.h: Remove !emacs and _LIBC conditional code.
5530 (start_of_data): Merge into start_of_data function.
5531 * sysdep.c (start_of_text): Remove. Move simplified versions of
5532 it in the only users: unexaix.c and unexec.c.
5533 (read_input_waiting): Remove local declaration of quit_char.
5534 (start, etext): Remove declarations.
5535 (start_of_data): Merge with the version in mem-limits.h and move
5536 to vm-limits.c.
5537 * vm-limit.c (start_of_data): Merged and simplified version of the
5538 code formerly in mem-limits.h and sysdep.c.
5539 * unexec.c (start): New declaration, moved from sysdep.c.
5540 (start_of_text): Simplified version of the code formerly in sysdep.c.
5541 * unexaix.c (start_of_text): Simplified version of the code
5542 formerly in sysdep.c.
5543 * m/alpha.h (HAVE_TEXT_START): Remove.
5544 (TEXT_START): Move ...
5545 * unexalpha.c (TEXT_START): ... here.
5546 * s/hpux10-20.h (TEXT_START): Remove.
5547 * s/darwin.h (TEXT_START):
5548 * m/mips.h (TEXT_START):
5549 * m/macppc.h (HAVE_TEXT_START):
5550 * m/m68k.h (TEXT_START):
5551 * m/iris4d.h (TEXT_START):
5552 * m/intel386.h (TEXT_START):
5553 * m/ibmrs6000.h (TEXT_START):
5554 * m/ia64.h (HAVE_TEXT_START):
5555 * s/msdos.h (TEXT_START): Likewise.
5556
72af86bd
AS
55572010-07-07 Andreas Schwab <schwab@linux-m68k.org>
5558
5559 * alloc.c (overrun_check_malloc, overrun_check_realloc)
5560 (overrun_check_free, xstrdup, allocate_string)
5561 (allocate_string_data, compact_small_strings, Fmake_string)
5562 (make_unibyte_string, make_multibyte_string)
5563 (make_string_from_bytes, make_specified_string, make_float)
5564 (Fcons, allocate_terminal, allocate_frame, make_pure_string)
5565 (Fgarbage_collect): Replace bcopy, safe_bcopy, bzero, bcmp by
5566 memcpy, memmove, memset, memcmp.
5567 * atimer.c (start_atimer, set_alarm): Likewise.
5568 * buffer.c (clone_per_buffer_values, report_overlay_modification)
5569 (mmap_realloc, init_buffer_once): Likewise.
5570 * callint.c (Fcall_interactively): Likewise.
5571 * callproc.c (Fcall_process, Fcall_process_region, child_setup)
5572 (getenv_internal_1): Likewise.
5573 * casefiddle.c (casify_object): Likewise.
5574 * ccl.c (ccl_driver): Likewise.
5575 * character.c (str_as_multibyte, str_to_multibyte): Likewise.
5576 * charset.c (load_charset_map_from_file)
5577 (load_charset_map_from_file, load_charset_map_from_vector)
5578 (Fdefine_charset_internal): Likewise.
5579 * cm.c (Wcm_clear): Likewise.
5580 * coding.c (decode_eol, decode_coding_object)
5581 (Fset_coding_system_priority, make_subsidiaries): Likewise.
5582 * data.c (Faset): Likewise.
5583 * dired.c (directory_files_internal, file_name_completion_stat):
5584 Likewise.
5585 * dispnew.c (new_glyph_matrix, adjust_glyph_matrix)
5586 (clear_glyph_row, copy_row_except_pointers)
5587 (copy_glyph_row_contents, new_glyph_pool, realloc_glyph_pool)
5588 (save_current_matrix, restore_current_matrix)
5589 (build_frame_matrix_from_leaf_window, mirrored_line_dance)
5590 (mirror_line_dance, scrolling_window): Likewise.
5591 * doc.c (Fsnarf_documentation, Fsubstitute_command_keys):
5592 Likewise.
5593 * doprnt.c (doprnt): Likewise.
5594 * editfns.c (Fuser_full_name, make_buffer_string_both)
5595 (Fmessage_box, Fformat, Ftranspose_regions): Likewise.
5596 * emacs.c (sort_args): Likewise.
5597 * eval.c (Fapply, Ffuncall): Likewise.
5598 * fileio.c (Ffile_name_directory, make_temp_name)
5599 (Fexpand_file_name, search_embedded_absfilename)
5600 (Fsubstitute_in_file_name, Ffile_symlink_p, Finsert_file_contents)
5601 (auto_save_error): Likewise.
5602 * fns.c (Fstring_equal, Fcopy_sequence, concat)
5603 (string_to_multibyte, Fstring_as_unibyte, Fstring_as_multibyte)
5604 (internal_equal, Fclear_string, larger_vector, copy_hash_table)
5605 (Fmake_hash_table): Likewise.
5606 * fringe.c (Fdefine_fringe_bitmap): Likewise.
5607 * ftfont.c (ftfont_text_extents): Likewise.
5608 * getloadavg.c (getloadavg): Likewise.
5609 * image.c (define_image_type, make_image, make_image_cache)
5610 (x_create_x_image_and_pixmap, xbm_image_p)
5611 (w32_create_pixmap_from_bitmap_data, xbm_load, xpm_lookup_color)
5612 (xpm_image_p, x_create_bitmap_from_xpm_data, xpm_load)
5613 (init_color_table, x_build_heuristic_mask, pbm_image_p, pbm_load)
5614 (png_image_p, png_read_from_memory, png_load, jpeg_image_p)
5615 (tiff_image_p, tiff_read_from_memory, gif_image_p)
5616 (gif_read_from_memory, gif_load, svg_image_p, gs_image_p):
5617 Likewise.
5618 * indent.c (scan_for_column, compute_motion): Likewise.
5619 * insdel.c (gap_left, gap_right, make_gap_smaller, copy_text)
5620 (insert_1_both, insert_from_gap, replace_range_2): Likewise.
5621 * intervals.c (reproduce_tree, reproduce_tree_obj): Likewise.
5622 * keyboard.c (echo_char, save_getcjmp, restore_getcjmp)
5623 (kbd_buffer_store_event_hold, apply_modifiers_uncached)
5624 (store_user_signal_events, menu_bar_items, tool_bar_items)
5625 (process_tool_bar_item, append_tool_bar_item)
5626 (read_char_minibuf_menu_prompt, read_key_sequence)
5627 (Fread_key_sequence, Fread_key_sequence_vector, Frecent_keys):
5628 Likewise.
5629 * keymap.c (current_minor_maps, Fdescribe_buffer_bindings):
5630 Likewise.
5631 * lisp.h (STRING_COPYIN): Likewise.
5632 * lread.c (Fload, read1, oblookup): Likewise.
5633 * msdos.c (Frecent_doskeys): Likewise.
5634 * nsfns.m (Fx_create_frame): Likewise.
5635 * nsfont.m (nsfont_open, nsfont_text_extents, ns_glyph_metrics):
5636 Likewise.
5637 * nsimage.m (EmacsImage-initFromSkipXBM:width:height:)
5638 (EmacsImage-initForXPMWithDepth:width:height:flip:length:):
5639 Likewise.
5640 * nsmenu.m (ns_update_menubar): Likewise.
5641 * nsterm.m (ns_draw_fringe_bitmap, ns_term_init): Likewise.
5642 * print.c (print_unwind, printchar, strout, print_string)
5643 (print_error_message): Likewise.
5644 * process.c (conv_lisp_to_sockaddr, set_socket_option)
5645 (Fmake_network_process, Fnetwork_interface_list)
5646 (Fnetwork_interface_info, read_process_output, Fprocess_send_eof)
5647 (init_process): Likewise.
5648 * ralloc.c (resize_bloc, r_alloc_sbrk, r_alloc_init): Likewise.
5649 * regex.c (init_syntax_once, regex_compile, re_compile_fastmap):
5650 Likewise.
5651 * scroll.c (do_scrolling, do_direct_scrolling)
5652 (scrolling_max_lines_saved): Likewise.
5653 * search.c (search_buffer, wordify, Freplace_match): Likewise.
5654 * sound.c (wav_init, au_init, Fplay_sound_internal): Likewise.
5655 * syntax.c (skip_chars, skip_syntaxes): Likewise.
5656 * sysdep.c (child_setup_tty, sys_subshell, emacs_get_tty)
5657 (emacs_set_tty): Likewise.
5658 * term.c (encode_terminal_code, calculate_costs)
5659 (produce_special_glyphs, create_tty_output, init_tty, delete_tty):
5660 Likewise.
5661 * termcap.c (tgetst1, gobble_line): Likewise.
5662 * termhooks.h (EVENT_INIT): Likewise.
5663 * tparam.c (tparam1): Likewise.
5664 * unexalpha.c (unexec): Likewise.
5665 * unexec.c (write_segment): Likewise.
5666 * unexmacosx.c (unexec_write_zero): Likewise.
5667 * w32fns.c (w32_wnd_proc, Fx_create_frame, x_create_tip_frame)
5668 (Fx_file_dialog, Fsystem_move_file_to_trash): Likewise.
5669 * w32font.c (w32font_list_family, w32font_text_extents)
5670 (w32font_list_internal, w32font_match_internal)
5671 (w32font_open_internal, compute_metrics, Fx_select_font):
5672 Likewise.
5673 * w32menu.c (set_frame_menubar, add_menu_item)
5674 (w32_menu_display_help, w32_free_submenu_strings): Likewise.
5675 * w32term.c (XCreateGC, w32_initialize_display_info): Likewise.
5676 * w32uniscribe.c (uniscribe_list_family): Likewise.
5677 * w32xfns.c (get_next_msg, post_msg, prepend_msg): Likewise.
5678 * window.c (make_window, replace_window, set_window_buffer)
5679 (Fsplit_window): Likewise.
5680 * xdisp.c (init_iterator, RECORD_OVERLAY_STRING, reseat_to_string)
5681 (add_to_log, message3, x_consider_frame_title)
5682 (append_space_for_newline, extend_face_to_end_of_line)
5683 (decode_mode_spec_coding, init_glyph_string): Likewise.
5684 * xfaces.c (x_create_gc, get_lface_attributes_no_remap)
5685 (Finternal_copy_lisp_face, Finternal_merge_in_global_face)
5686 (face_attr_equal_p, make_realized_face, make_face_cache)
5687 (free_realized_faces, lookup_named_face, smaller_face)
5688 (face_with_height, lookup_derived_face)
5689 (x_supports_face_attributes_p, Finternal_set_font_selection_order)
5690 (Finternal_set_font_selection_order, realize_default_face)
5691 (compute_char_face, face_at_buffer_position)
5692 (face_for_overlay_string, face_at_string_position, merge_faces):
5693 Likewise.
5694 * xfns.c (xic_create_fontsetname, Fx_create_frame)
5695 (Fx_window_property, x_create_tip_frame)
5696 (Fx_backspace_delete_keys_p): Likewise.
5697 * xfont.c (xfont_list, xfont_match, xfont_list_family)
5698 (xfont_text_extents): Likewise.
5699 * xmenu.c (set_frame_menubar, xmenu_show): Likewise.
5700 * xrdb.c (magic_file_p, x_get_resource): Likewise.
5701 * xselect.c (x_queue_event, x_get_window_property)
5702 (receive_incremental_selection): Likewise.
5703 * xsmfns.c (x_session_check_input): Likewise.
5704 * xterm.c (x_send_scroll_bar_event, SET_SAVED_MENU_EVENT)
5705 (handle_one_xevent, x_check_errors, xim_initialize, x_term_init):
5706 Likewise.
5707 * character.h (BCOPY_SHORT): Removed.
5708 * config.in: Regenerate.
5709 * dispnew.c (safe_bcopy): Only define as dummy if PROFILING.
5710 * emacs.c (main) [PROFILING]: Don't declare
5711 dump_opcode_frequencies.
5712 * lisp.h (safe_bcopy): Remove declaration.
5713 (memset) [!HAVE_MEMSET]: Declare.
5714 (memcpy) [!HAVE_MEMCPY]: Likewise.
5715 (memmove) [!HAVE_MEMMOVE]: Likewise.
5716 (memcmp) [!HAVE_MEMCMP]: Likewise.
5717 * s/ms-w32.h (bzero, bcopy, bcmp, GAP_USE_BCOPY)
5718 (BCOPY_UPWARD_SAFE, BCOPY_DOWNWARD_SAFE, HAVE_BCOPY, HAVE_BCMP):
5719 Don't define.
5720 (HAVE_MEMCMP, HAVE_MEMCPY, HAVE_MEMMOVE, HAVE_MEMSET): Define.
5721 * s/msdos.h (GAP_USE_BCOPY, BCOPY_UPWARD_SAFE)
5722 (BCOPY_DOWNWARD_SAFE): Don't define.
5723 * sysdep.c (memset) [!HAVE_MEMSET]: Define.
5724 (memcpy) [!HAVE_MEMCPY]: Define.
5725 (memmove) [!HAVE_MEMMOVE]: Define.
5726 (memcmp) [!HAVE_MEMCMP]: Define.
5727
cb768704
J
57282010-07-07 Jan Djärv <jan.h.d@swipnet.se>
5729
5730 * process.c (kbd_is_on_hold): New variable.
a628ad9d
JB
5731 (hold_keyboard_input, unhold_keyboard_input, kbd_on_hold_p):
5732 New functions.
cb768704
J
5733 (wait_reading_process_output): If kbd_on_hold_p returns non-zero,
5734 select on empty input mask.
5735 (init_process): Initialize kbd_is_on_hold to 0.
5736
5737 * process.h (hold_keyboard_input, unhold_keyboard_input)
5738 (kbd_on_hold_p): Declare.
5739
5740 * keyboard.c (input_available_signal): Declare.
5741 (kbd_buffer_nr_stored): New function.
5742 (kbd_buffer_store_event_hold): If kbd_buffer_nr_stored returns
5743 more than KBD_BUFFER_SIZE/2, stop reding input (Bug#6571).
5744 (kbd_buffer_get_event): If input is suspended and kbd_buffer_nr_stored
5745 returns less than KBD_BUFFER_SIZE/4, resume reding input (Bug#6571).
5746 (tty_read_avail_input): If input is on hold, return.
5747 Don't read more that free slots in kbd_buffer (Bug#6571).
5748
3a8ce822
EZ
57492010-07-07 Eli Zaretskii <eliz@gnu.org>
5750
5751 * msdos.h:
5752 * msdos.c:
5753 * dosfns.c:
5754 * w16select.c: Convert function definitions to ANSI C.
5755
a628ad9d
JB
5756 * msdos.h (ctrl_break_func, install_ctrl_break_check):
5757 Remove unused prototypes.
3a8ce822 5758
cf84bb53
JB
57592010-07-07 Juanma Barranquero <lekktu@gmail.com>
5760
5761 * coding.c, sysdep.c: Convert some more functions to standard C.
5762
1a4990fb
JB
57632010-07-07 Juanma Barranquero <lekktu@gmail.com>
5764
5765 * coding.c (decode_coding_gap, encode_coding_gap, decode_coding_object)
5766 (encode_coding_object): Use SPECPDL_INDEX.
5767 (syms_of_coding): Use DOS_NT.
5768
c0f2f16b
DN
57692010-07-07 Dan Nicolaescu <dann@ics.uci.edu>
5770
48fb6855
DN
5771 * intervals.h (interval): Use EMACS_UINT instead of unsigned EMACS_INT.
5772
c0f2f16b
DN
5773 Make the function member of Lisp_Subr use standard C prototypes.
5774 * lisp.h (struct Lisp_Subr): Use a union for the function member.
5775 (DECL_ALIGN): Add a cast for the function.
5776 * eval.c (Feval, Ffuncall): Use the proper type for each type
5777 function call.
5778
67aecef9
CY
57792010-07-06 Chong Yidong <cyd@stupidchicken.com>
5780
5781 * fringe.c (draw_fringe_bitmap_1): Use lookup_named_face to get
5782 fringe face id, so face-remapping-alist works (Bug#6091).
5783
b56ceb92
JB
57842010-07-06 Juanma Barranquero <lekktu@gmail.com>
5785
5786 * w32.c, w32console.c, w32fns.c, w32font.c, w32heap.c, w32inevt.c
5787 * w32menu.c, w32proc.c, w32reg.c, w32select.c, w32term.c
5788 * w32uniscribe.c, w32xfns.c: Convert function definitions to standard C.
5789
7af07b96
AS
57902010-07-06 Andreas Schwab <schwab@linux-m68k.org>
5791
5792 * xterm.c (x_get_keysym_name): Change type of parameter to int.
5793 * lisp.h: Declare x_get_keysym_name.
5794 * keyboard.c (modify_event_symbol): Don't declare
5795 x_get_keysym_name here.
5796
69e24e34
DN
57972010-07-06 Dan Nicolaescu <dann@ics.uci.edu>
5798
5799 * ecrt0.c: Revert conversion to standard C.
5800
d3da34e0 58012010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
d2aa42f8
DN
5802
5803 * vm-limit.c (memory_warnings):
5804 * keyboard.c (modify_event_symbol):
5805 * floatfns.c (rounding_driver, ceiling2, floor2, truncate2)
5806 (round2, emacs_rint):
5807 * process.c (send_process, old_sigpipe): Convert function
5808 definitions and declarations to standard C.
5809
58102010-07-05 Juanma Barranquero <lekktu@gmail.com>
d3da34e0
JB
5811
5812 * buffer.c, cm.c, eval.c, keyboard.c, process.c, term.c, vm-limit.c,
5813 * xdisp.c: Convert function definitions to standard C.
5814
5815 * cm.c (cmputc): Arg C is now int, not char.
5816 * process.c (Fmake_network_process): Cast sockaddr_in* to sockaddr*.
5817
00be444c
J
58182010-07-05 James Cloos <cloos@jhcloos.com>
5819
5820 * xterm.h (Xatom_net_wm_name, Xatom_net_wm_icon_name): New.
5821
5822 * xterm.c (x_term_init): Intern the _NET_WM_NAME and
5823 _NET_WM_ICON_NAME atoms.
5824
5825 * xfns.c (x_set_name_internal): Set the EWMH _NET_WM_NAME
5826 and _NET_WM_ICON_NAME properties, too, matching what is
5827 done in the Gtk+ case.
5828
e4c8d29a
J
58292010-07-05 Jan Djärv <jan.h.d@swipnet.se>
5830
ff919460
J
5831 * xterm.c (XTring_bell, XTset_terminal_window): Fix wrong prototype.
5832
e4c8d29a
J
5833 * xsmfns.c (SSDATA): New macro.
5834 (smc_save_yourself_CB, x_session_initialize): Use SSDATA for strings
5835 passed to strlen/strcpy/strcat.
bba3e508
SM
5836 (create_client_leader_window): Surround with #ifndef USE_GTK.
5837 Cast 7:th arg to XChangeProperty to (unsigned char *).
e4c8d29a
J
5838
5839 * xsettings.c (something_changedCB, parse_settings)
5840 (apply_xft_settings): Reformat prototype.
5841 (something_changedCB, init_gconf): Remove unused variable i.
5842 (read_settings): Remove unused variable long_len.
5843
5844 * gtkutil.c (xg_get_pixbuf_from_pix_and_mask)
5845 (xg_get_image_for_pixmap, create_dialog)
5846 (xg_get_file_with_selection, xg_get_file_name, update_cl_data)
5847 (menuitem_highlight_callback, make_menu_item)
5848 (xg_create_one_menuitem, create_menus, xg_update_menu_item)
5849 (xg_create_scroll_bar, xg_update_scrollbar_pos)
5850 (xg_set_toolkit_scroll_bar_thumb, xg_tool_bar_button_cb)
5851 (xg_tool_bar_proxy_help_callback, xg_tool_bar_detach_callback)
5852 (xg_tool_bar_attach_callback, xg_tool_bar_help_callback)
5853 (xg_tool_bar_item_expose_callback): Reformat prototype.
5854 (xg_update_menubar): GList *group => GSList *group.
5855 (xg_modify_menubar_widgets): Initialize witem to 0, check witem != 0
5856 before use.
5857 (update_frame_tool_bar): 4:th param to xg_get_image_for_pixmap changed
5858 to GTK_IMAGE (wimage).
5859
dd4c5104
DN
58602010-07-05 Dan Nicolaescu <dann@ics.uci.edu>
5861
898b4c5c
DN
5862 * atimer.c: Use "" instead of <> for local includes for
5863 consistency with the rest of the code.
5864
dd4c5104
DN
5865 * xsmfns.c (smc_save_yourself_CB, smc_error_handler):
5866 * xrdb.c (get_system_name):
5867 * window.c (shrink_windows):
5868 * syntax.c (forw_comment):
5869 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
5870 (ins_del_costs):
5871 * mem-limits.h (start_of_data):
5872 * lread.c (readevalloop):
5873 * gtkutil.c (xg_dialog_response_cb, xg_get_file_with_chooser)
5874 (xg_get_file_with_selection, xg_update_menubar, xg_update_submenu):
5875 * frame.c (x_get_focus_frame):
5876 * floatfns.c (fmod_float):
5877 * fileio.c (choose_write_coding_system):
5878 * emacs.c (fatal_error_signal, init_cmdargs, argmatch)
5879 (malloc_initialize_hook, sort_args, synchronize_locale):
5880 * doprnt.c (doprnt):
5881 * dired.c (compile_pattern):
5882 * data.c (fmod_float):
5883 * chartab.c (map_sub_char_table, map_sub_char_table_for_charset)
5884 (map_char_table_for_charset):
5885 * charset.c (define_charset_internal):
5886 * alloc.c (Fgarbage_collect): Convert declarations or definitions
5887 to standard C.
5888
9a39b306 58892010-07-04 Tetsurou Okazaki <okazaki@be.to> (tiny change)
9c8a2331 5890 Stefan Monnier <monnier@iro.umontreal.ca>
9a39b306
TO
5891
5892 * lread.c (read1): Fix up last change to not mess up `c'.
5893
e6cb2cbb
JB
58942010-07-04 Juanma Barranquero <lekktu@gmail.com>
5895
5896 * strftime.c: Revert conversion to standard C (2010-07-04T07:50:25Z!dann@ics.uci.edu).
5897
438105ed
JB
58982010-07-04 Juanma Barranquero <lekktu@gmail.com>
5899
5900 Fix prototypes.
5901
e5447b22 5902 * atimer.c (start_atimer): Use EMACS_TIME, not struct timeval.
438105ed 5903 * dired.c (file_name_completion_stat): Use DIRENTRY, not struct dirent.
9c8a2331
JB
5904 * fileio.c (read_non_regular, read_non_regular_quit): Add Lisp_Object
5905 arg, as required by internal_condition_case_1.
dcc7404b 5906 * print.c (strout): Use const char* for arg PTR.
438105ed
JB
5907 * regex.c (bcmp_translate): Use RE_TRANSLATE_TYPE, not Lisp_Object.
5908 (analyse_first): Fix "const const".
e5447b22 5909 * sysdep.c (set_file_times): Use EMACS_TIME, not struct timeval.
b9503078 5910 * unexelf.c (round_up, find_section): Use ElfW macro for arguments.
e5447b22 5911 * xgselect.c (xg_select): Use SELECT_TYPE, EMACS_TIME.
438105ed 5912
971de7fb
DN
59132010-07-04 Dan Nicolaescu <dann@ics.uci.edu>
5914
5915 * alloc.c: Convert function definitions to standard C.
5916 * atimer.c:
5917 * bidi.c:
5918 * bytecode.c:
5919 * callint.c:
5920 * callproc.c:
5921 * casefiddle.c:
5922 * casetab.c:
5923 * category.c:
5924 * ccl.c:
5925 * character.c:
5926 * charset.c:
5927 * chartab.c:
5928 * cmds.c:
5929 * coding.c:
5930 * composite.c:
5931 * data.c:
5932 * dbusbind.c:
5933 * dired.c:
5934 * dispnew.c:
5935 * doc.c:
5936 * doprnt.c:
5937 * ecrt0.c:
5938 * editfns.c:
5939 * fileio.c:
5940 * filelock.c:
5941 * filemode.c:
5942 * fns.c:
5943 * font.c:
5944 * fontset.c:
5945 * frame.c:
5946 * fringe.c:
5947 * ftfont.c:
5948 * ftxfont.c:
5949 * gtkutil.c:
5950 * indent.c:
5951 * insdel.c:
5952 * intervals.c:
5953 * keymap.c:
5954 * lread.c:
5955 * macros.c:
5956 * marker.c:
5957 * md5.c:
5958 * menu.c:
5959 * minibuf.c:
5960 * prefix-args.c:
5961 * print.c:
5962 * ralloc.c:
5963 * regex.c:
5964 * region-cache.c:
5965 * scroll.c:
5966 * search.c:
5967 * sound.c:
5968 * strftime.c:
5969 * syntax.c:
5970 * sysdep.c:
5971 * termcap.c:
5972 * terminal.c:
5973 * terminfo.c:
5974 * textprop.c:
5975 * tparam.c:
5976 * undo.c:
5977 * unexelf.c:
5978 * window.c:
5979 * xfaces.c:
5980 * xfns.c:
5981 * xfont.c:
5982 * xftfont.c:
5983 * xgselect.c:
5984 * xmenu.c:
5985 * xrdb.c:
5986 * xselect.c:
5987 * xsettings.c:
5988 * xsmfns.c:
5989 * xterm.c: Likewise.
5990
ae492bec
EZ
59912010-07-03 Eli Zaretskii <eliz@gnu.org>
5992
76ea4cc9
EZ
5993 * msdos.c (IT_set_frame_parameters): Fix setting of colors in
5994 frames other than the initial one. Fix reversal of colors when
bba3e508
SM
5995 `reverse' is specified in the frame parameters.
5996 Call update_face_from_frame_parameter instead of
76ea4cc9
EZ
5997 internal-set-lisp-face-attribute. Initialize screen colors from
5998 initial_screen_colors[] when f->default_face_done_p is zero,
5999 instead of depending on being called with default-frame-alist as
6000 the alist argument.
6001
6002 * xfaces.c (update_face_from_frame_parameter): Move out of
6003 HAVE_WINDOW_SYSTEM portion. Condition window-system only parts
6004 with HAVE_WINDOW_SYSTEM.
6005
1e6255ae
EZ
6006 * msdos.c (IT_set_frame_parameters): Set menu-bar-lines according
6007 to menu-bar-mode, if not set in the frame parameters or in
6008 default-frame-alist.
6009
ae492bec
EZ
6010 * w32console.c (sys_tputs): Adjust argument list to prototype in
6011 term.c.
6012
3a35a84c
JB
60132010-07-03 Juanma Barranquero <lekktu@gmail.com>
6014
6015 * lisp.h (memory_warnings): Fix prototype.
6016
6017 * cm.h (evalcost): Fix prototype.
6018
6019 * cm.c (evalcost): Fix arg type.
6020
c532d349
DN
60212010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
6022
6023 * term.c (term_clear_mouse_face, Fidentity):
6024 * syssignal.h (signal_handler_t):
6025 * lisp.h (memory_warnings):
6026 * coding.h (preferred_coding_system):
6027 * cm.h (evalcost):
6028 * blockinput.h (reinvoke_input_signal): Convert to standard C prototypes.
6029
c0b36d46
EZ
60302010-07-02 Eli Zaretskii <eliz@gnu.org>
6031
6032 * dosfns.h (msdos_stdcolor_idx, msdos_stdcolor_name): Remove P_
6033 from prototypes.
6034
6035 * msdos.h (load_pixmap): Don't define away.
6036
383e0970
J
60372010-07-02 Jan Djärv <jan.h.d@swipnet.se>
6038
f57e2426
J
6039 * lisp.h:
6040 * atimer.h: Remove define for P_.
6041
6042 * alloc.c: Remove __P and P_ from .c and .m files.
6043 * atimer.c:
6044 * buffer.c:
6045 * callint.c:
6046 * category.c:
6047 * charset.c:
6048 * chartab.c:
6049 * cm.c:
6050 * coding.c:
6051 * composite.c:
6052 * data.c:
6053 * dired.c:
6054 * dispnew.c:
6055 * doc.c:
6056 * editfns.c:
6057 * emacs.c:
6058 * eval.c:
6059 * fileio.c:
6060 * filelock.c:
6061 * fns.c:
6062 * font.c:
6063 * fontset.c:
6064 * frame.c:
6065 * ftfont.c:
6066 * ftxfont.c:
6067 * gmalloc.c:
6068 * gtkutil.c:
6069 * image.c:
6070 * indent.c:
6071 * intervals.c:
6072 * keyboard.c:
6073 * keymap.c:
6074 * lread.c:
6075 * marker.c:
6076 * menu.c:
6077 * minibuf.c:
6078 * print.c:
6079 * process.c:
6080 * scroll.c:
6081 * search.c:
6082 * sound.c:
6083 * strftime.c:
6084 * syntax.c:
6085 * sysdep.c:
6086 * term.c:
6087 * terminal.c:
6088 * textprop.c:
6089 * unexalpha.c:
6090 * w32console.c:
6091 * w32fns.c:
6092 * w32font.c:
6093 * w32menu.c:
6094 * w32term.c:
6095 * w32uniscribe.c:
6096 * window.c:
6097 * xdisp.c:
6098 * xfaces.c:
6099 * xfns.c:
6100 * xfont.c:
6101 * xftfont.c:
6102 * xmenu.c:
6103 * xselect.c:
6104 * xterm.c: Likewise.
6105
383e0970 6106 Remove P_ and __P macros.
f57e2426
J
6107 * atimer.h: Remove P_ and __P macros.
6108 * buffer.h:
383e0970
J
6109 * category.h:
6110 * ccl.h:
6111 * character.h:
6112 * charset.h:
6113 * cm.h:
6114 * coding.h:
6115 * composite.h:
6116 * dispextern.h:
6117 * disptab.h:
9e892c8d 6118 * dosfns.h:
383e0970
J
6119 * font.h:
6120 * fontset.h:
6121 * frame.h:
6122 * gtkutil.h:
6123 * indent.h:
6124 * intervals.h:
6125 * keyboard.h:
6126 * keymap.h:
6127 * lisp.h:
6128 * macros.h:
6129 * md5.h:
6130 * menu.h:
6131 * msdos.h:
6132 * nsterm.h:
6133 * puresize.h:
6134 * region-cache.h:
6135 * syntax.h:
6136 * syssignal.h:
6137 * systime.h:
6138 * termhooks.h:
9e892c8d 6139 * w32font.h:
383e0970
J
6140 * w32term.h:
6141 * widget.h:
6142 * window.h:
6143 * xgselect.h:
6144 * xsettings.h:
6145 * xterm.h: Likewise.
6146
98601119
DN
61472010-07-02 Dan Nicolaescu <dann@ics.uci.edu>
6148
d9170db5
DN
6149 * lisp.h: Document that USE_LISP_UNION_TYPE is now enabled using autoconf.
6150
98601119
DN
6151 Cleanup old code.
6152 * dired.c (BSD4_3): Remove all uses, redundant with BSD4_2.
6153 * syssignal.h: Remove code for Lynx, not supported anymore.
6154 * vm-limit.c: Remove unused code the depends on emacs not being
6155 defined and NO_LIM_DATA being defined.
6156 * mem-limits.h: Remove dead code.
6157
1f984e12
J
61582010-07-01 Jan Djärv <jan.h.d@swipnet.se>
6159
c49d071a
J
6160 * window.c (Fwindow_absolute_pixel_edges): Doc fix.
6161
9d5405ec
J
6162 * window.c (calc_absolute_offset, Fwindow_absolute_pixel_edges)
6163 (Fwindow_inside_absolute_pixel_edges): New functions (bug#5721).
6164
7a18115b
J
6165 * nsfns.m (compute_tip_xy): Do not convert coordinates from frame
6166 parameters, they are already absolute.
6167
a628ad9d
JB
6168 * nsterm.m (x_set_window_size, initFrameFromEmacs):
6169 Rename FRAME_NS_TOOLBAR_HEIGHT to FRAME_TOOLBAR_HEIGHT.
581a8100 6170
a628ad9d 6171 * nsterm.h (FRAME_NS_TOOLBAR_HEIGHT): Rename to FRAME_TOOLBAR_HEIGHT.
581a8100 6172
a628ad9d
JB
6173 * nsmenu.m (update_frame_tool_bar, free_frame_tool_bar):
6174 Update FRAME_TOOLBAR_HEIGHT.
581a8100 6175
a628ad9d
JB
6176 * nsmenu.m (free_frame_tool_bar, update_frame_tool_bar):
6177 Add BLOCK/UNBLOCK_INPUT so asserts don't trigger.
1f984e12 6178
c1ef4455
CY
61792010-06-30 Chong Yidong <cyd@stupidchicken.com>
6180
bba3e508
SM
6181 * frame.c (get_future_frame_param, Fmake_terminal_frame):
6182 Don't check default-frame-alist.
c1ef4455 6183
ce8f5a9a
AS
61842010-06-30 Andreas Schwab <schwab@linux-m68k.org>
6185
6186 * process.c (create_process): Avoid using invalid file descriptors.
6187
6188 * callproc.c (child_setup): Avoid closing a file descriptor twice.
6189
bf935339
J
61902010-06-30 Jan Djärv <jan.h.d@swipnet.se>
6191
6192 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
6193 Improve documentation. Return font regardless of use_system_font.
6194 (syms_of_xsettings): Improve documentation for font-use-system-font.
6195
7c33a057
CY
61962010-07-10 Chong Yidong <cyd@stupidchicken.com>
6197
2ec1b5ee
CY
6198 * xfaces.c (realize_face): Garbage the frame if a face is removed
6199 (Bug#6593).
6200
62012010-07-05 Andreas Schwab <schwab@linux-m68k.org>
6202
6203 * keyboard.c: Remove duplicate <setjmp.h>.
6204 (read_key_sequence): Remove volatile qualifiers.
6205
62062010-07-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6207
6208 * dispextern.h (FRINGE_HEIGHT_BITS): New define.
6209 (struct glyph_row): New members left_fringe_offset and
6210 right_fringe_offset.
6211
6212 * xterm.c (x_draw_fringe_bitmap): Don't clip bottom aligned bitmap
6213 specially.
6214 * w32term.c (w32_draw_fringe_bitmap): Likewise.
6215 * nsterm.m (ns_draw_fringe_bitmap): Likewise.
6216
6217 * fringe.c (draw_fringe_bitmap_1): Don't clip bitmap here.
f6003da5 6218 Take account of bitmap offset.
2ec1b5ee
CY
6219 (draw_window_fringes): Take account of window vscroll.
6220 (update_window_fringes): Likewise. Extend top-aligned top indicator
6221 or bottom-aligned bottom indicator to adjacent rows if it doesn't fit
6222 in one row. Don't set redraw_fringe_bitmaps_p outside row comparison.
6223 Set left_fringe_offset and right_fringe_offset (Bug#5634, Bug#6325).
6224
62252010-07-04 Juanma Barranquero <lekktu@gmail.com>
6226
6227 * w32fns.c (Qtooltip): Declare.
6228 Suggested by Andy Moreton <andrewjmoreton@gmail.com>.
6229
62302010-07-03 Jan Djärv <jan.h.d@swipnet.se>
6231
6232 * xmenu.c (x_activate_menubar): Send Press/Release for Gtk+ to avoid
6233 grab on just Press (Bug#6499).
6234
62352010-07-02 Chong Yidong <cyd@stupidchicken.com>
6236
6237 * frame.c (Qtooltip): New var.
6238 (delete_frame): Use it. Fix faulty if statement. Don't update
6239 mode line for tooltip frames. Suggested by Martin Rudalics.
6240
6241 * xfns.c (x_create_tip_frame):
6242 * w32fns.c (x_create_tip_frame): Use it.
6243
62442010-06-17 Naohiro Aota <naota@elisp.net> (tiny change)
769e9d47
KH
6245
6246 * xftfont.c (xftfont_open): Check font width one by one also when
6247 spacing is dual.
6248
6249 * ftfont.c (ftfont_open): Ditto.
6250
6259c2ec
GM
62512010-06-30 Glenn Morris <rgm@gnu.org>
6252
a46007e9
GM
6253 * s/sol2-6.h (INHIBIT_X11R6_XIM): Remove, handled by configure now.
6254
6259c2ec
GM
6255 * Makefile.in (CANNOT_DUMP): Update for configure name change.
6256
6257 * s/freebsd.h (USE_MMAP_FOR_BUFFERS):
6258 * s/irix6-5.h (USE_MMAP_FOR_BUFFERS):
6259 * s/darwin.h (SYSTEM_MALLOC):
6260 * s/sol2-10.h (SYSTEM_MALLOC): Move to configure.
6261
5d1d3d04
J
62622010-06-29 Jan Djärv <jan.h.d@swipnet.se>
6263
6264 * nsfns.m: extern declare Vmenu_bar_mode, Vtool_bar_mode.
6265 (ns_get_screen): Don't assign integer to f.
6266 (Fx_display_color_cells): Declarations before statements.
6267
e547b051
J
62682010-06-28 Jan Djärv <jan.h.d@swipnet.se>
6269
5fc8e5bc
J
6270 * xfns.c (x_default_font_parameter): Remove got_from_system
6271 (Bug#6526).
6272
e547b051 6273 * xterm.h (gtk_widget_get_window, gtk_widget_get_mapped)
bba3e508
SM
6274 (gtk_adjustment_get_page_size, gtk_adjustment_get_upper):
6275 New defines based on what configure finds.
e547b051
J
6276
6277 * xterm.c (XTflash): Use gtk_widget_get_window.
6278 (xg_scroll_callback): Use gtk_adjustment_get_upper and
6279 gtk_adjustment_get_page_size.
6280 (handle_one_xevent): Use gtk_widget_get_mapped.
6281 (x_term_init): Remove HAVE_GTK_MULTIDISPLAY and associated error
6282 messages.
6283
6284 * xmenu.c (create_and_show_popup_menu): Call gtk_widget_get_mapped.
6285
6286 * gtkutil.h: Replace HAVE_GTK_FILE_BOTH with
6287 HAVE_GTK_FILE_SELECTION_NEW.
6288
bba3e508
SM
6289 * gtkutil.c (xg_display_open, xg_display_close):
6290 Remove HAVE_GTK_MULTIDISPLAY, it is always defined.
e547b051
J
6291 (xg_display_open): Return type is void.
6292 (gtk_widget_set_has_window)
6293 (gtk_dialog_get_action_area, gtk_dialog_get_content_area)
6294 (gtk_widget_get_sensitive, gtk_adjustment_set_page_size)
6295 (gtk_adjustment_set_page_increment)
6296 (gtk_adjustment_get_step_increment): #define these if not found
6297 by configure.
6298 (remove_submenu): New define based on Gtk+ version.
bba3e508
SM
6299 (xg_set_cursor, xg_frame_resized, xg_event_is_for_scrollbar):
6300 Use gtk_widget_get_window.
e547b051
J
6301 (xg_frame_resized, xg_update_frame_menubar): Use gtk_widget_get_mapped.
6302 (xg_create_frame_widgets): Use gtk_widget_set_has_window.
6303 (create_dialog): Use gtk_dialog_get_action_area and
6304 gtk_dialog_get_content_area.
6305 (xg_uses_old_file_dialog, xg_get_file_name): Remove HAVE_GTK_FILE_BOTH
6306 and HAVE_GTK_FILE_CHOOSER_DIALOG_NEW. File chooser is always
6307 available, so checking for HAVE_GTK_FILE_SELECTION_NEW is enough.
bba3e508
SM
6308 (xg_update_menubar, xg_update_submenu, xg_show_toolbar_item):
6309 Use g_object_ref and g_object_unref.
6310 (xg_update_menu_item, xg_tool_bar_menu_proxy):
6311 Use gtk_widget_get_sensitive.
e547b051
J
6312 (xg_update_submenu): Use remove_submenu.
6313 (xg_update_scrollbar_pos): Don't use GtkFixedChild, use child
6314 properties instead to get old x and y position.
6315 (xg_set_toolkit_scroll_bar_thumb): Use gtk_adjustment_get_page_size,
6316 gtk_adjustment_get_step_increment, gtk_adjustment_set_page_size,
2b7e356a 6317 gtk_adjustment_set_step_increment and gtk_adjustment_set_page_increment.
e547b051
J
6318 (xg_get_tool_bar_widgets): New function.
6319 (xg_tool_bar_menu_proxy, xg_show_toolbar_item)
6320 (update_frame_tool_bar): Call xg_get_tool_bar_widgets.
6321 (toolbar_set_orientation): New #define based on if configure
6322 finds gtk_orientable_set_orientation.
6323 (xg_create_tool_bar): Call toolbar_set_orientation.
6324 (xg_make_tool_item, xg_show_toolbar_item): Call gtk_box_pack_start
6325 instead of gtk_box_pack_start_defaults.
6326
b9229673
CY
63272010-06-28 Chong Yidong <cyd@stupidchicken.com>
6328
6329 * cmds.c (Fdelete_backward_char): Move into Lisp.
6330
bbc803b0
DN
63312010-06-27 Dan Nicolaescu <dann@ics.uci.edu>
6332
6333 * s/freebsd.h (BSD4_2): Remove redundant definition.
6334 bsd-common.h defines it already.
6335
6431f2e6
CY
63362010-06-27 Chong Yidong <cyd@stupidchicken.com>
6337
6338 * xfns.c (Fx_create_frame): Don't consult X resouces when setting
6339 menu-bar-lines and tool-bar-lines. Use menu-bar-mode and
6340 tool-bar-mode, which are now set using these X resources at
6341 startup, to determine the defaults (Bug#2249).
6342
6343 * w32fns.c (Fx_create_frame):
6344 * nsfns.m (Fx_create_frame): Likewise.
6345
6346 * frame.c (Vmenu_bar_mode, Vtool_bar_mode): New vars.
6347
8c079ebb
JB
63482010-06-24 Juanma Barranquero <lekktu@gmail.com>
6349
6350 * gtkutil.c (xg_update_scrollbar_pos):
6351 Avoid C99 mid-block variable declaration.
6352
e9b7ab96
JD
63532010-06-22 Jan Djärv <jan.h.d@swipnet.se>
6354
bc869eca
JD
6355 * xterm.c (x_scroll_bar_create): Remove call to xg_show_scroll_bar.
6356
2b7e356a 6357 * gtkutil.h (xg_show_scroll_bar): Remove.
bc869eca
JD
6358
6359 * gtkutil.c (xg_update_scrollbar_pos): Show/hide scroll bar as needed
6360 if height is less than scroll bar min size.
6361 (xg_show_scroll_bar): Remove, show moved to xg_update_scrollbar_pos.
6362
e9b7ab96
JD
6363 * xfns.c (x_default_font_parameter): Try to open font from system
6364 before using it (bug#6478). Rename got_from_gconf to got_from_system.
6365
a628ad9d 63662010-06-22 Keith Packard <keithp@keithp.com> (tiny change)
32a679fd
JD
6367
6368 * font.c (font_parse_fcname): Allow . for sizes like 7.5 (bug#6437).
6369
70c4cfbb
EZ
63702010-06-20 Eli Zaretskii <eliz@gnu.org>
6371
6372 * xdisp.c (try_scrolling): When scroll-conservatively is set to
6373 most-positive-fixnum, be extra accurate when scrolling window
6374 start, to avoid missing the cursor line.
6375
ad5a12b5
EZ
63762010-06-19 Eli Zaretskii <eliz@gnu.org>
6377
6378 * xdisp.c (try_scrolling): Compute the limit for searching point
6379 in forward scroll from scroll_max, instead of an arbitrary limit
ef1b0ba7
SM
6380 of 10 screen lines.
6381 See http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00766.html
ad5a12b5
EZ
6382 and
6383 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00773.html
6384 for details.
6385
2a64315a 63862010-06-16 Glenn Morris <rgm@gnu.org>
6fda6a0c
GM
6387
6388 * editfns.c (Fbyte_to_string): Pacify compiler.
6389
288cf4e9
SM
63902010-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
6391
6392 * lread.c (read1): Phase out old-style backquotes a bit more.
6393
6e6e5760
EZ
63942010-06-12 Eli Zaretskii <eliz@gnu.org>
6395
cbc4fd20
EZ
6396 * makefile.w32-in ($(BLD)/bidi.$(O)): Depend on biditype.h and
6397 bidimirror.h.
6398
6399 * deps.mk (bidi.o): Depend on biditype.h and bidimirror.h.
6400
317fbf33
EZ
6401 * bidi.c (bidi_initialize): Remove explicit initialization of
6402 bidi_type_table; include biditype.h instead. Don't support
288cf4e9 6403 entries whose second codepoint is zero. Initialize bidi_mirror_table.
cbc4fd20 6404 (bidi_mirror_char): Use bidi_mirror_table.
317fbf33
EZ
6405
6406 * biditype.h: New file.
6407
cbc4fd20
EZ
6408 * bidimirror.h: New file.
6409
6e6e5760
EZ
6410 * window.c (syms_of_window): Doc fix (bug#6409).
6411
4176cba2
RF
64122010-06-12 Romain Francoise <romain@orebokech.com>
6413
6414 * Makefile.in (lisp, shortlisp): Use new location of vc-hooks and
6415 ediff-hook.
6416
cb4bfcb5
GM
64172010-06-10 Glenn Morris <rgm@gnu.org>
6418
64c60c2f
GM
6419 * editfns.c (Fbyte_to_string): Pacify compiler.
6420
cb4bfcb5
GM
6421 * m/ibms390x.h: Rather than duplicating ibms390.h, just include it.
6422
2ec1b5ee
CY
64232010-06-26 Andreas Schwab <schwab@linux-m68k.org>
6424
6425 * alloc.c (Fmake_byte_code): Don't access undefined argument
6426 (Bug#6517).
6427
64282010-06-25 Chong Yidong <cyd@stupidchicken.com>
6429
6430 * xdisp.c (next_element_from_image): Ensure that after-strings are
6431 read the next time we hit handle_stop (Bug#1336).
6432
64332010-06-23 Andreas Schwab <schwab@linux-m68k.org>
6434
6435 * lread.c (read1): Signal error if #s is not followed by paren.
6436
64372010-06-19 Chong Yidong <cyd@stupidchicken.com>
6438
6439 * image.c (free_image): Mark frame as garbaged (Bug#6426).
6440
6441 * keymap.c (Fdefine_key): Doc fix (Bug#6460).
6442
64432010-06-15 Glenn Morris <rgm@gnu.org>
6444
6445 * editfns.c (Fbyte_to_string): Pacify compiler.
6446
e454a4a3
SM
64472010-06-09 Stefan Monnier <monnier@iro.umontreal.ca>
6448
6449 * dbusbind.c (xd_append_arg): Don't "make-unibyte" the string.
6450 Check `object's type before accessing its guts.
6451
c1b1acc2
DN
64522010-06-09 Dan Nicolaescu <dann@ics.uci.edu>
6453
6454 * s/usg5-4.h: Fix previous change.
6455 Suggested by Lawrence Mitchell <wence@gmx.li>
6456
657d4c0b
AS
64572010-06-08 Andreas Schwab <schwab@linux-m68k.org>
6458
6459 * minibuf.c (Fall_completions): Add more checks.
6460
9b27fd9f
JB
64612010-06-08 Juanma Barranquero <lekktu@gmail.com>
6462
6463 * minibuf.c (Fall_completions): Check COLLECTION's size (bug#6378).
6464
a99ebb40
DN
64652010-06-08 Dan Nicolaescu <dann@ics.uci.edu>
6466
d7c5d87d
DN
6467 * lread.c (X_OK): Remove, unused.
6468
0263a941
DN
6469 * dispnew.c: Remove obsolete comment.
6470
a99ebb40
DN
6471 Remove INCLUDED_FCNTL.
6472 * xterm.c (INCLUDED_FCNTL):
6473 * callproc.c (INCLUDED_FCNTL):
6474 * alloc.c (INCLUDED_FCNTL):
6475 * systty.h (INCLUDED_FCNTL): Remove all uses, not needed anymore.
6476 (emacs_get_tty, emacs_set_tty): Declare unconditionally.
6477
13b5221f
MR
64782010-06-07 Martin Rudalics <rudalics@gmx.at>
6479
6480 * window.c (Fselect_window): Move `record_buffer' up to the
6481 beginning of this function, so the buffer gets recorded
6482 even if the selected window does not change.
6483 http://lists.gnu.org/archive/html/emacs-devel/2010-06/msg00137.html
6484
5220357f
JB
64852010-06-07 Juanma Barranquero <lekktu@gmail.com>
6486
6487 * cmds.c (Fforward_char, Fbackward_char): Fix typos in docstrings.
6488 (Fforward_line, Fbeginning_of_line): Reflow docstrings.
6489
3085237c
DN
64902010-06-06 Dan Nicolaescu <dann@ics.uci.edu>
6491
6492 Remove BSTRING related code, all platforms define it.
6493 * s/usg5-4.h (BSTRING): Remove definition.
6494 * s/template.h (BSTRING):
6495 * s/msdos.h (BSTRING):
6496 * s/ms-w32.h (BSTRING):
6497 * s/hpux10-20.h (BSTRING):
6498 * s/gnu-linux.h (BSTRING):
6499 * s/darwin.h (BSTRING):
6500 * s/cygwin.h (BSTRING):
6501 * s/bsd-common.h (BSTRING):
6502 * s/aix4-2.h (BSTRING): Likewise.
6503 * sysdep.c: Remove code depending on BSTRING not being defined.
6504
409f2919
JB
65052010-06-05 Juanma Barranquero <lekktu@gmail.com>
6506
6507 Remove obsolete macro BASE_LEADING_CODE_P.
6508 * character.h (BASE_LEADING_CODE_P): Remove.
6509 * regex.c [!emacs] (BASE_LEADING_CODE_P): Remove.
6510 * buffer.c (Fset_buffer_multibyte):
6511 * indent.c (scan_for_column, compute_motion):
6512 * insdel.c (count_combining_before, count_combining_after):
6513 Use LEADING_CODE_P instead of BASE_LEADING_CODE_P.
6514
087fc47a
JB
65152010-06-04 Juanma Barranquero <lekktu@gmail.com>
6516
6517 Turn `directory-sep-char' into a noop.
6518
6519 * lisp.h [WINDOWSNT] (Vdirectory_sep_char): Don't declare.
6520 (DIRECTORY_SEP): Define unconditionally.
6521
6522 * s/ms-w32.h (DIRECTORY_SEP): Remove.
6523
6524 * emacs.c (decode_env_path): Don't check DIRECTORY_SEP,
6525 call dostounix_filename directly.
6526
6527 * fileio.c (CORRECT_DIR_SEPS): Remove.
6528 (Ffile_name_directory, directory_file_name, Fexpand_file_name)
6529 (Fsubstitute_in_file_name): Use dostounix_filename instead.
6530 (file_name_as_directory): Use dostounix_filename, DIRECTORY_SEP.
6531 (syms_of_fileio) <directory-sep-char>: Move to subr.el.
6532
6533 * w32proc.c (CORRECT_DIR_SEPS): Remove.
6534 (Fw32_short_file_name, Fw32_long_file_name): Use dostounix_filename.
6535
0eb7675e
AS
65362010-06-03 Andreas Schwab <schwab@linux-m68k.org>
6537
a628ad9d
JB
6538 * process.c (conv_lisp_to_sockaddr): Fix conversion of IPv4 address.
6539 (Bug#6346)
0eb7675e 6540
78edd3b7
JB
65412010-06-03 Juanma Barranquero <lekktu@gmail.com>
6542
6543 * ccl.c (Fccl_program_p): Fix typo in docstring.
6544
eb697db5
DN
65452010-06-03 Dan Nicolaescu <dann@ics.uci.edu>
6546
6547 Move UNEXEC definition to autoconf.
6548 * s/usg5-4.h (UNEXEC): Remove, move to configure.in.
6549 * s/sol2-10.h (UNEXEC):
6550 * s/irix6-5.h (UNEXEC):
6551 * s/hpux10-20.h (UNEXEC):
6552 * s/gnu-linux.h (UNEXEC):
6553 * s/darwin.h (UNEXEC):
6554 * s/cygwin.h (UNEXEC):
6555 * s/bsd-common.h (UNEXEC):
6556 * s/aix4-2.h (UNEXEC):
6557 * m/alpha.h (UNEXEC): Likewise.
6558 * Makefile.in (UNEXEC_OBJ): Define using @UNEXEC_OBJ@.
6559
aa3830c4
JB
65602010-06-03 Juanma Barranquero <lekktu@gmail.com>
6561
6562 Remove obsolete pre-unicode2 macros.
6563 * character.h (MULTIBYTE_FORM_LENGTH, PARSE_MULTIBYTE_SEQ): Remove.
6564 * composite.c (composition_reseat_it):
6565 * data.c (Faset):
6566 * fns.c (Ffillarray):
6567 * regex.c (re_search_2): Use BYTES_BY_CHAR_HEAD.
6568 [!emacs] (BYTES_BY_CHAR_HEAD): Define instead of MULTIBYTE_FORM_LENGTH.
6569
d234d13e
JL
65702010-06-03 Juri Linkov <juri@jurta.org>
6571
6572 * buffer.c (Fother_buffer): Add CHECK_FRAME.
6573 (Fswitch_to_buffer): Remove unused variable `err'.
6574
0d4bcf4d
GM
65752010-06-03 Glenn Morris <rgm@gnu.org>
6576
e23dc1e2
GM
6577 * m/template.h (NO_SOCK_SIGIO): Remove, no longer used.
6578
05b09564
GM
6579 * m/hp800.h (alloca) [__NetBSD__ && __GNUC__]: No need to define it,
6580 now that AH_BOTTOM does it.
6581
824e2978
GM
6582 * m/hp800.h (HAVE_ALLOCA):
6583 * m/ibms390x.h (HAVE_ALLOCA): Do not define, no longer needed.
6584
0d4bcf4d
GM
6585 * m/ia64.h, s/gnu-linux.h, s/gnu.h, s/netbsd.h, s/usg5-4.h:
6586 Remove NOT_C_CODE tests, it is always true now.
6587
c55d2abf
DN
65882010-06-02 Dan Nicolaescu <dann@ics.uci.edu>
6589
08a494a3
DN
6590 Fix config.h includes.
6591 * xsettings.c:
6592 * xgselect.c:
6593 * nsterm.m:
6594 * nsselect.m:
6595 * nsimage.m:
6596 * nsfont.m:
6597 * nsfns.m:
6598 * dbusbind.c: Use #include <config.h> instead of "config.h" as all
6599 other files do.
6600
75934b1d
DN
6601 * gmalloc.c: Remove BROKEN_PROTOTYPES reference, unused.
6602
9f32a766
DN
6603 * s/sol2-6.h: Remove obsolete comments.
6604
c55d2abf
DN
6605 Remove unnecessary alloca.h includes.
6606 * keymap.c: Do not include alloca.h, config.h does that.
6607 * sysdep.c: Likewise. Do not define fwrite, not used.
6608
06ac62b4
SM
66092010-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
6610
6611 * sysdep.c (child_setup_tty): Move the non-canonical initialization to
6612 the HAVE_TERMIO where it belongs (bug#6149).
6613
1ab8293c
SM
66142010-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
6615
6616 * keymap.c (Fwhere_is_internal): Fix handling of remapping (in thread
6617 of bug#6305).
6618
6dcfd253
EZ
66192010-05-30 Eli Zaretskii <eliz@gnu.org>
6620
6621 * bidi.c (bidi_move_to_visually_next): Make sure the sentinel
6622 state is always cached (bug#6306).
6623
6d26bbb2
EZ
66242010-05-29 Eli Zaretskii <eliz@gnu.org>
6625
06fa4a23
EZ
6626 Fix cursor motion in bidi-reordered continued lines.
6627 * xdisp.c (try_cursor_movement): Backup to non-continuation line
6628 only after finding point's row. Fix the logic. Rewrite the loop
ef1b0ba7
SM
6629 over continuation lines in bidi-reordered buffers.
6630 Return CURSOR_MOVEMENT_MUST_SCROLL upon failure to find a suitable row,
6d26bbb2
EZ
6631 rather than CURSOR_MOVEMENT_CANNOT_BE_USED.
6632
f5783df3
MA
66332010-05-28 Michael Albinus <michael.albinus@gmx.de>
6634
6635 * fileio.c (Fdelete_file): Pass TRASH arg to handler call.
6636
7d56b2dd
KH
66372010-05-28 Kenichi Handa <handa@m17n.org>
6638
6639 * font.c (font_delete_unmatched): Check Vface_ignored_fonts.
6640 Don't sheck SPEC if it is nil.
6641 (font_list_entities): Call font_delete_unmatched if
b925d231 6642 Vface_ignored_fonts is non-nil. (Bug#6287)
7d56b2dd 6643
e58d4ff7
GM
66442010-05-28 Glenn Morris <rgm@gnu.org>
6645
6646 * Makefile.in (LIBES): Remove $LOADLIBES, it is never set.
6647
f1a5d776
CY
66482010-05-27 Chong Yidong <cyd@stupidchicken.com>
6649
6650 * fileio.c (Fdelete_file): Change meaning of optional arg to mean
6651 whether to trash.
6652 (internal_delete_file, Frename_file): Callers changed.
6653 (delete_by_moving_to_trash): Doc fix.
6654 (Fdelete_directory_internal): Don't move to trash.
6655
6656 * callproc.c (delete_temp_file):
6657 * buffer.c (Fkill_buffer): Callers changed.
6658
6659 * lisp.h: Update prototype.
6660
f44a59e6
CY
66612010-05-27 Chong Yidong <cyd@stupidchicken.com>
6662
6663 * xdisp.c (redisplay_window): After redisplay, check if point is
6664 still valid before setting it (Bug#6177).
6665
81ac4f35
GM
66662010-05-27 Glenn Morris <rgm@gnu.org>
6667
6668 * Makefile.in, autodeps.mk, deps.mk, ns.mk:
6669 Convert comments to Makefile format.
6670
6671 * Makefile.in (bootstrap-clean): No more Makefile.c.
6672
ccd89fb3
GM
66732010-05-26 Glenn Morris <rgm@gnu.org>
6674
90278cb6
GM
6675 * Makefile.in (YMF_PASS_LDFLAGS): Remove.
6676 (temacs${EXEEXT}): Use PRE_EDIT_LDFLAGS, POST_EDIT_LDFLAGS.
6677
ccd89fb3
GM
6678 * Makefile.in (NS_IMPL_GNUSTEP_INC, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
6679 Remove.
6680 (TEMACS_LDFLAGS): Do not use NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6681
b7050583
KH
66822010-05-26 Kenichi Handa <handa@m17n.org>
6683
6684 * composite.c (composition_compute_stop_pos): Fix condition for
6685 backward scanning.
6686
e5458003
GM
66872010-05-25 Glenn Morris <rgm@gnu.org>
6688
c345fe90
GM
6689 * Makefile.in (@NS_IMPL_GNUSTEP_INC@, NS_IMPL_GNUSTEP_TEMACS_LDFLAGS):
6690 Move before TEMACS_LDFLAGS.
6691 (TEMACS_LDFLAGS): Use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6692 (temacs${EXEEXT}): Do not use $NS_IMPL_GNUSTEP_TEMACS_LDFLAGS.
6693
2e0689ab
GM
6694 * Makefile.in (NOT_C_CODE): No longer define.
6695 (config.h): No longer include.
6696
8009a5e8
GM
6697 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): Move definition after some
6698 variables it may reference.
6699
e5458003
GM
6700 * Makefile.in (LD_SWITCH_SYSTEM_EXTRA): Remove.
6701 (TEMACS_LDFLAGS): Remove LD_SWITCH_SYSTEM_EXTRA.
6702
10f72a37
KH
67032010-05-25 Kenichi Handa <handa@m17n.org>
6704
6705 * dispextern.h (struct composition_it): New members rule_idx and
6706 charpos.
6707
6708 * xdisp.c (set_iterator_to_next): While scanning backward, assume
6709 that the character positions of IT point the last character of the
6710 current grapheme cluster.
6711 (next_element_from_composition): Don't change character positions
6712 of IT.
6713 (append_composite_glyph): Set glyph->charpos to
6714 it->cmp_it.charpos.
6715
6716 * composite.c (autocmp_chars): Change the first argument to RULE,
6717 and try composition with RULE only.
6718 (composition_compute_stop_pos): Record the index number of the
6719 composition rule in CMP_IT->rule_idx.
6720 (composition_reseat_it): Call autocmp_chars repeatedly until the
6721 correct rule of the composition is found.
6722 (composition_update_it): Set CMP_IT->charpos. Assume the CHARPOS
6723 is at the last character of the current grapheme cluster when
6724 CMP_IT->reversed_p is nonzero.
6725
171eda53 67262010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
f5b416d2 6727
171eda53
SM
6728 * editfns.c (Fbyte_to_string): New function.
6729
66a9f7f4
SM
67302010-05-24 Stefan Monnier <monnier@iro.umontreal.ca>
6731
6732 * process.c (Fmake_network_process): Set :host to nil if it's not used.
6733 Suggested by Masatake YAMATO <yamato@redhat.com>.
6734
d8c315d1
EZ
67352010-05-23 Eli Zaretskii <eliz@gnu.org>
6736
171eda53 6737 * dispextern.h (init_iterator): Sync prototype with changed definition.
d8c315d1 6738
f5b416d2 67392010-05-20 enami tsugutomo <tsugutomo.enami@jp.sony.com>
6740
6741 * s/netbsd.h: If terminfo is found, use it in preference to
6742 termcap. (Bug#6190) [Backport from trunk]
6743
0416466c
EZ
67442010-05-19 Eli Zaretskii <eliz@gnu.org>
6745
11117830 6746 Redesign and reimplement bidi-aware edge positions of glyph rows.
d36fe237
EZ
6747
6748 * dispextern.h (struct glyph_row): New members minpos and maxpos.
6749 (MATRIX_ROW_START_CHARPOS, MATRIX_ROW_START_BYTEPOS)
6750 (MATRIX_ROW_END_CHARPOS, MATRIX_ROW_END_BYTEPOS): Reference minpos
6751 and maxpos members instead of start.pos and end.pos, respectively.
6752
6753 * xdisp.c (display_line): Compare IT_CHARPOS with the position in
6754 row->start.pos, rather than with MATRIX_ROW_START_CHARPOS.
6755 (cursor_row_p): Use row->end.pos rather than MATRIX_ROW_END_CHARPOS.
66a9f7f4
SM
6756 (try_window_reusing_current_matrix, try_window_id):
6757 Use ROW->minpos rather than ROW->start.pos.
d36fe237
EZ
6758 (init_from_display_pos, init_iterator): Use EMACS_INT for
6759 character and byte positions.
66a9f7f4 6760 (find_row_edges): Rename from find_row_end. Accept additional
d36fe237
EZ
6761 arguments for minimum and maximum buffer positions seen by
6762 display_line for this row. Don't use iterator to find the
6763 position following the maximum one; instead, increment the
11117830
EZ
6764 position found by display_line directly. Fix logic; eol_pos
6765 should be tested before the rest. Handle the case of characters
6766 delivered from display vector (bug#6036). Fix tests related to
6767 it->method. Handle the truncated_on_right_p rows.
6768 (RECORD_MAX_MIN_POS): New macro.
6769 (display_line): Use it to record the minimum and maximum buffer
6770 positions for glyphs in the row being assembled. Record the
6771 position of the newline that terminates the line. If word wrap is
6772 in effect, restore minimum and maximum positions seen up to the
6773 wrap point, when iterator returns to it.
6774 (try_window_reusing_current_matrix): Give up if in bidi-reordered
6775 row and cursor not already at point. Restore original pre-bidi
6776 code for unidirectional buffers.
d36fe237
EZ
6777
6778 * dispnew.c (increment_row_positions, check_matrix_invariants):
6779 Increment and check row->start.pos and row->end.pos, in addition
6780 to MATRIX_ROW_START_CHARPOS and MATRIX_ROW_END_CHARPOS.
6781
11117830
EZ
6782 * .gdbinit (prowlims): Display row->minpos and row->maxpos.
6783 Display truncated_on_left_p and truncated_on_right_p flags.
6784 Formatting fixes.
6785 (pmtxrows): Display the ordinal number of each row. Don't display
6786 rows beyond the last one.
6787
6788 * bidi.c (bidi_cache_iterator_state): Don't zero out new_paragraph:
6789 it is not copied by bidi_copy_it.
6790
6e83d800
EZ
67912010-05-22 Eli Zaretskii <eliz@gnu.org>
6792
6793 * w32.c (sys_write): Break writes into chunks smaller than 32MB.
6794 (Bug#6237)
6795
110683ad
CY
67962010-05-22 Chong Yidong <cyd@stupidchicken.com>
6797
6798 * image.c (Fimage_flush): Rename from image-refresh.
6799
98fe5161
CY
68002010-05-21 Chong Yidong <cyd@stupidchicken.com>
6801
6802 * xdisp.c (redisplay_internal): Clear caches even if redisplaying
6803 just one window.
6804
6805 * image.c (Vimage_cache_eviction_delay): Decrease to 300.
6806 (clear_image_cache): If the number of cached images is unusually
6807 large, decrease the cache eviction delay (Bug#6230).
6808
e8752c66
GM
68092010-05-21 Glenn Morris <rgm@gnu.org>
6810
66dbf213
GM
6811 * Makefile.in (${ns_appdir}, ${ns_appbindir}Emacs, ns-app):
6812 Move these rules to ns.mk.
6813 * ns.mk: New file.
6814
04384b2d
GM
6815 * Makefile.in (../src/$(OLDXMENU), $(OLDXMENU)): Always define rules.
6816
e8752c66
GM
6817 * Makefile.in (CANNOT_DUMP): New, set by configure.
6818 (emacs${EXEEXT}, bootstrap-emacs${EXEEXT}): Use $CANNOT_DUMP.
6819
2e2bbddb
JL
68202010-05-20 Juri Linkov <juri@jurta.org>
6821
6822 * fileio.c (Fdelete_file): Change interative spec to use
6823 `read-file-name' like in `find-file-read-args' where the default
6824 value is `default-directory' instead of `buffer-file-name'.
6825 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00533.html
6826
31c4aaf6
KR
68272010-05-20 Kevin Ryde <user42@zip.com.au>
6828
6829 * keyboard.c (Vlast_command, Vkeyboard_translate_table)
6830 (Voverriding_terminal_local_map, Vsystem_key_alist)
6831 (Vlocal_function_key_map): Fix manual link in docstring (Bug#6224).
6832
9d5cf9b6
GM
68332010-05-20 Glenn Morris <rgm@gnu.org>
6834
6835 * Makefile.in (DEPDIR): New constant.
6836 (DEPFLAGS): Set with configure, not cpp.
6837 (MKDEPDIR): New, set by configure.
6838 (.c.o, .m.o, ecrt0.o): Use $MKDEPDIR.
6839 (clean): Use $DEPDIR.
6840 (deps_frag): Include from configure.
6841 Move static/dynamic dependency stuff to deps.mk/autodeps.mk.
6842 * deps.mk, autodeps.mk: New files, extracted from Makefile.in.
6843
bba3e508
SM
6844 * bidi.c (bidi_cache_shrink, bidi_cache_iterator_state):
6845 Fix reallocation of the cache. (Bug#6210)
ead6f8f5 6846
7f34aec3
GM
68472010-05-19 Glenn Morris <rgm@gnu.org>
6848
d494e8f2
GM
6849 * s/msdos.h (ORDINARY_LINK): Move to sed2v2.inp.
6850
c1d0dcfd
GM
6851 * Makefile.in (LD, YMF_PASS_LDFLAGS): Set with configure, not cpp.
6852 (GNULIB_VAR): Remove.
6853 (LIBES): Use LIB_GCC instead of GNULIB_VAR.
6854
6855 * m/ibms390x.h (LINKER):
6856 * m/macppc.h (LINKER) [GNU_LINUX]:
6857 * s/aix4-2.h (ORDINARY_LINK):
6858 * s/cygwin.h (LINKER):
6859 * s/darwin.h (ORDINARY_LINK):
6860 * s/gnu.h (ORDINARY_LINK):
6861 * s/netbsd.h (LINKER):
6862 * s/usg5-4.h (ORDINARY_LINK):
6863 Move to configure.
6864
7f34aec3
GM
6865 * s/aix4-2.h (LINKER): Remove; this file sets ORDINARY_LINK.
6866
754790b6
CY
68672010-05-18 Chong Yidong <cyd@stupidchicken.com>
6868
6869 * character.c (Fstring, Funibyte_string): Use SAFE_ALLOCA to
6870 prevent stack overflow if number of arguments is too large
6871 (Bug#6214).
6872
161e44d1
JB
68732010-05-18 Juanma Barranquero <lekktu@gmail.com>
6874
6875 * charset.c (load_charset_map_from_file): Don't call close after fclose.
6876
be4ff9da
GM
68772010-05-18 Glenn Morris <rgm@gnu.org>
6878
9539dc5d
GM
6879 * s/gnu-linux.h: Combine two conditionals.
6880
6881 * Makefile.in (otherobj): Include $(VMLIMIT_OBJ) separately from
6665f4c5
GM
6882 $(POST_ALLOC_OBJ).
6883
40dc6bf4
GM
6884 * Makefile.in (RALLOC_OBJ): New, set by configure.
6885 (rallocobj): Replace with the previous variable.
6886 (otherobj): Use $RALLOC_OBJ.
6887
6888 * s/gnu.h (REL_ALLOC) [DOUG_LEA_MALLOC]:
6889 * s/gnu-linux.h (REL_ALLOC) [DOUG_LEA_MALLOC]: Move undef to configure.
6890
be4ff9da
GM
6891 * Makefile.in (GMALLOC_OBJ, VMLIMIT_OBJ): New, set by configure.
6892 (gmallocobj, vmlimitobj): Replace with previous two variables.
6893 (otherobj): Use $GMALLOC_OBJ, $VMLIMIT_OBJ.
6894
16455a85
GM
68952010-05-17 Glenn Morris <rgm@gnu.org>
6896
6897 * Makefile.in (OLDXMENU_DEPS): New, set by configure.
6898 (stamp-oldxmenu): Use $OLDXMENU_DEPS.
6899
5fdb7468
GM
69002010-05-16 Glenn Morris <rgm@gnu.org>
6901
7ca1f3f9
GM
6902 * Makefile.in (${ns_appbindir}Emacs, ns-app): Always define these rules.
6903
7541dad5
GM
6904 * Makefile.in (clean): Get rid of HAVE_NS conditional.
6905
da53fab9
GM
6906 * Makefile.in (ns_appdir, ns_appbindir): Now configure adds the
6907 trailing "/".
6908
b02a6645
GM
6909 * Makefile.in (TEMACS_LDFLAGS2): New, set by configure.
6910 (temacs${EXEEXT}): Combine the NS_IMPL_GNUSTEP case with the default.
6911
8877ca0f
GM
6912 * Makefile.in (GNUSTEP_SYSTEM_LIBRARIES): Remove, unused.
6913 (NS_IMPL_GNUSTEP_TEMACS_LDFLAGS): New, set by configure.
6914 (LD) [NS_IMPL_GNUSTEP]: Set to $(CC) -rdynamic.
6915 (temacs${EXEEXT}): Remove $LOCALCPP, never defined or referenced.
6916 Make most of the NS_IMPL_GNUSTEP case the same as the default case.
6917
5fdb7468
GM
6918 * Makefile.in (temacs${EXEEXT}) [!NS_IMPL_GNUSTEP]:
6919 Remove ${STARTFLAGS}, nothing ever sets it.
6920
95adb4b1
DN
69212010-05-16 Dan Nicolaescu <dann@ics.uci.edu>
6922
6923 * m/ia64.h (UNEXEC): Remove, set in s/*.h.
6924
676b6304
GM
69252010-05-16 Glenn Morris <rgm@gnu.org>
6926
9beab9ce
GM
6927 * Makefile.in (LIBX_BASE): Always define.
6928
8a95f0e7
GM
6929 * Makefile.in (LIBX_OTHER): Move out of cpp section.
6930
676b6304
GM
6931 * Makefile.in (LIBXT): Always define.
6932
6e546d18
GM
69332010-05-15 Glenn Morris <rgm@gnu.org>
6934
4235ca47 6935 * Makefile.in (OLDXMENU, LIBXMENU, LIBX_OTHER): Always define.
02d4ac0e 6936
6e546d18
GM
6937 * Makefile.in (FONT_DRIVERS): Remove, replace with $FONT_OBJ.
6938 (obj, SOME_MACHINE_OBJECTS): Use $FONT_OBJ.
6939
8c5ff6dd
KR
69402010-05-15 Ken Raeburn <raeburn@raeburn.org>
6941
560bb7ae 6942 * lisp.h (XFLOAT_DATA): Use "0?x:x" to generate an rvalue. (Bug#5916)
52766425
KR
6943 (LISP_MAKE_RVALUE) [!USE_LISP_UNION_TYPE && !__GNUC__]: Likewise.
6944
8b4eb796
KR
6945 * emacs.c (main): Initialize initial-environment and
6946 process-environment before generating from env, not after.
6947
8c5ff6dd
KR
6948 Handle --version reasonably in CANNOT_DUMP configuration.
6949 * emacs.c (emacs_version, emacs_copyright): New string variables.
6950 (Vemacs_version, Vemacs_copyright): New Lisp_Object variables.
6951 (syms_of_emacs): Defvar them, and initialize them from the C
6952 string variables.
6953 (main): If initialization hasn't been done, print initial version
6954 info from the C strings, instead of starting an interactive session.
6955
dbd3f723
EZ
69562010-05-15 Eli Zaretskii <eliz@gnu.org>
6957
d20e1419
EZ
6958 * bidi.c (bidi_paragraph_init): Don't leave alone garbage values
6959 of bidi_it->paragraph_dir. Call bidi_initialize if needed.
2e9abc3d
EZ
6960 (bidi_paragraph_init): Remove redundant assertion that we are at
6961 the beginning of a line after call to bidi_find_paragraph_start.
d20e1419
EZ
6962
6963 * xdisp.c (Fcurrent_bidi_paragraph_direction): New function.
6964 (syms_of_xdisp): Defsubr it.
6965
d36fe237
EZ
6966 * cmds.c (Fforward_char, Fbackward_char): Doc fix.
6967
dbd3f723
EZ
6968 * Makefile.in: Fix MSDOS-related comments.
6969
02be533b
GM
69702010-05-15 Glenn Morris <rgm@gnu.org>
6971
1a82cca9
GM
6972 * Makefile.in (OLDXMENU_TARGET): New, set by configure.
6973 (really-lwlib, really-oldXMenu): Always define.
6974 ($OLDXMENU): Depend on $OLDXMENU_TARGET.
6975
3df7b338
GM
6976 * Makefile.in: Simplify cpp conditional.
6977
2b5f541b
GM
6978 * Makefile.in (${ns_appdir}): Simplify using umask.
6979
02be533b
GM
6980 * Makefile.in (${ns_appdir}): Remove references to CVS-related files.
6981
4e2db1fe
SM
69822010-05-14 Stefan Monnier <monnier@iro.umontreal.ca>
6983
6984 * eval.c (specbind): Remove left-over duplicate test.
6985 Disallow let-binding frame-local vars. Add comment.
6986
4b292a22
EZ
69872010-05-14 Eli Zaretskii <eliz@gnu.org>
6988
2fe72643 6989 Make the cache of bidi iterator states dynamically allocated.
1edbd309 6990 * bidi.c (bidi_cache_shrink): New function.
2fe72643
EZ
6991 (bidi_init_it): Call it.
6992 (bidi_cache_iterator_state): Enlarge the cache if needed.
6993
4e2db1fe 6994 * bidi.c (bidi_move_to_visually_next): Rename from
4b292a22
EZ
6995 bidi_get_next_char_visually. All callers changed.
6996
82ebc97b
KH
69972010-05-14 Kenichi Handa <handa@m17n.org>
6998
6999 * dispextern.h (struct composition_it): New member reversed_p.
7000
7001 * composite.c (composition_compute_stop_pos): Search backward if
7002 ENDPOS < CHARPOS.
7003 (composition_reseat_it): Handle the case that ENDPOS < CHARPOS.
7004 Set CMP_IT->reversed_p.
b4b6e17e 7005 (composition_update_it): Pay attention to CMP_IT->reversed_p.
82ebc97b 7006
4e2db1fe
SM
7007 * xdisp.c (set_iterator_to_next):
7008 Call composition_compute_stop_pos with negative ENDPOS if we are
82ebc97b
KH
7009 scanning backward. Call composition_compute_stop_pos if scan
7010 direction is changed.
7011 (next_element_from_buffer): Call composition_compute_stop_pos with
7012 negative ENDPOS if we are scanning backward.
7013 (next_element_from_composition): Pay attention to
7014 IT->cmp_it.reversed_p.
7015
0e5d7800
KH
70162010-05-14 Kenichi Handa <handa@m17n.org>
7017
560bb7ae 7018 * font.c (font_range): Return the range for the font found at first.
0e5d7800 7019
cb027b32
GM
70202010-05-14 Glenn Morris <rgm@gnu.org>
7021
177b0288
GM
7022 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Always define.
7023
fbc00890
GM
7024 * Makefile.in (mktime, X11, register): Move undefs to configure.
7025
f14d1dfd
GM
7026 * Makefile.in (MSDOS_OBJ): Default to empty, let msdos scripts set it.
7027 (MSDOS_X_OBJ): New variable.
7028 (MSDOS_SUPPORT_REAL): New constant.
7029 (MSDOS_SUPPORT): Set as a variable, not with cpp.
7030 (obj): Use MSDOS_X_OBJ.
7031 (lisp): Use MSDOS_SUPPORT as a variable.
7032
11842bd8
GM
7033 * Makefile.in (REAL_MOUSE_SUPPORT): New constant.
7034 (GPM_MOUSE_SUPPORT): Now it's a constant.
7035 (MOUSE_SUPPORT, TOOLTIP_SUPPORT, WINDOW_SUPPORT): Set with configure,
7036 not cpp.
7037
489d31a4 7038 * Makefile.in (@NS_IMPL_GNUSTEP_INC@): Use in place of #ifdef.
845612ac 7039 (ns_appresdir): Remove, unused.
e20f1f07 7040
489d31a4
GM
7041 * Makefile.in (SHELL): Move outside cpp section.
7042
cb027b32
GM
7043 * s/netbsd.h (AMPERSAND_FULL_NAME): Remove (defined in AH_BOTTOM).
7044
5a903aa9
GM
70452010-05-13 Glenn Morris <rgm@gnu.org>
7046
3369c79f
GM
7047 * Makefile.in (FONT_DRIVERS): Place with other HAVE_X_WINDOWS stuff.
7048 (TOOLTIP_SUPPORT): Place with other HAVE_WINDOW_SYSTEM stuff.
7049
d5e982a6
GM
7050 * Makefile.in (FONT_DRIVERS): If HAVE_X_WINDOWS is defined,
7051 HAVE_WINDOW_SYSTEM must be too.
7052
6192e163
GM
7053 * Makefile.in (WINNT_SUPPORT): Remove, nt build does not use this file.
7054 (lisp): Remove WINNT_SUPPORT.
7055
472c5d6b
GM
7056 * Makefile.in (OLDXMENU, LIBXMENU) [!HAVE_MENUS]:
7057 Let configure set these variables (to empty) in this case as well.
7058
0116466b
GM
7059 * Makefile.in (LD_SWITCH_X_SITE): Define as a variable, not via cpp.
7060 (LIBX_BASE): Use $LD_SWITCH_X_SITE.
7061
5a903aa9
GM
7062 * Makefile.in (C_SWITCH_X_SYSTEM, C_SWITCH_X_SITE, LIB_STANDARD)
7063 (LIB_MATH, FONTCONFIG_CFLAGS, FONTCONFIG_LIBS, FREETYPE_CFLAGS)
7064 (FREETYPE_LIBS, LIBOTF_CFLAGS, LIBOTF_LIBS, M17N_FLT_CFLAGS)
7065 (M17N_FLT_LIBS, GNU_OBJC_CFLAGS, GNUSTEP_SYSTEM_LIBRARIES, LIBGPM)
7066 (LIBRESOLV, UNEXEC_OBJ): For clarity, define variables to hold
c0a2b70a 7067 the values output by configure.
5a903aa9
GM
7068 (ALL_CFLAGS, obj, LIBES, temacs${EXEEXT}): Use the above variables.
7069
1a0d7c06
GM
70702010-05-12 Glenn Morris <rgm@gnu.org>
7071
b5457f14
GM
7072 * Makefile.in (YMF_PASS_LDFLAGS, LD, LINKER): Simplify the logic.
7073 (LINKER_WAS_SPECIFIED): Remove.
7074
1a0d7c06
GM
7075 * Makefile.in (LIB_GCC): Set using configure, not cpp.
7076 (GNULIB_VAR) [!ORDINARY_LINK]: Always set to $LIB_GCC.
7077 * m/arm.h (LIB_GCC) [GNU_LINUX]:
7078 * s/cygwin.h (LIB_GCC):
7079 * s/freebsd.h (LIB_GCC):
7080 * s/gnu-linux.h (LIB_GCC):
7081 * s/msdos.h (LIB_GCC):
7082 * s/netbsd.h (LIB_GCC):
7083 Move to configure.
7084
d1ddd1d0 70852010-05-11 Karel Klíč <kklic@redhat.com>
c90ca7b7
KH
7086
7087 * ftfont.c: Fix incorrect parentheses of #if condition for
7088 definining M17N_FLT_USE_NEW_FEATURE.
7089
acddf8ae
GM
70902010-05-11 Glenn Morris <rgm@gnu.org>
7091
7092 * Makefile.in (LIBS_SYSTEM) [MSDOS]: Do not reset.
7093 * s/msdos.h (MSDOS_LIBS_SYSTEM): Remove.
7094
ae5e04fa
EZ
70952010-05-10 Eli Zaretskii <eliz@gnu.org>
7096
7097 * xdisp.c (init_iterator): Don't turn on bidi reordering in
7098 unibyte buffers. See
7099 http://lists.gnu.org/archive/html/emacs-devel/2010-05/msg00263.html.
7100
7490175b
GM
71012010-05-10 Glenn Morris <rgm@gnu.org>
7102
97efb629
GM
7103 * Makefile.in (LIBS_SYSTEM): Set using configure, not cpp.
7104 (LIBS_SYSTEM) [MSDOS]: Reset with MSDOS_LIBS_SYSTEM.
7105 (LIBES): Use LIBS_SYSTEM as a variable.
7106 * s/msdos.h (LIBS_SYSTEM): Rename to MSDOS_LIBS_SYSTEM. Always define.
7107 * s/aix4-2.h (LIBS_SYSTEM):
7108 * s/freebsd.h (LIBS_SYSTEM):
7109 * s/hpux10-20.h (LIBS_SYSTEM):
7110 * s/sol2-6.h (LIBS_SYSTEM):
7111 * s/unixware.h (LIBS_SYSTEM):
7112 Move to configure.
7113
7490175b
GM
7114 * s/aix4-2.h (MAIL_USE_LOCKF):
7115 * s/bsd-common.h (MAIL_USE_FLOCK):
7116 * s/darwin.h (MAIL_USE_FLOCK):
7117 * s/gnu-linux.h (MAIL_USE_FLOCK):
7118 * s/irix6-5.h (MAIL_USE_FLOCK):
7119 * s/template.h (MAIL_USE_FLOCK):
7120 Move to configure.
7121
0235128c 71222010-05-08 Chong Yidong <cyd@stupidchicken.com>
61a808e8
CY
7123
7124 * Version 23.2 released.
7125
0235128c 71262010-05-08 Andreas Schwab <schwab@linux-m68k.org>
5dcde606
AS
7127
7128 * composite.c (autocmp_chars): Save point as marker before calling
7129 auto-composition-function (Bug#5984).
7130
7131 * lisp.h (restore_point_unwind): Add prototype.
7132
7133 * fileio.c (restore_point_unwind): Remove static attribute.
7134
0235128c 71352010-05-08 Kenichi Handa <handa@m17n.org>
c4170e32
KH
7136
7137 * ftfont.c (M17N_FLT_USE_NEW_FEATURE): Define it if we can use the
7138 new feature of libotf and m17n-flt.
0235128c
SM
7139 (ftfont_check_otf) [M17N_FLT_USE_NEW_FEATURE]:
7140 Call OTF_check_features even if no specific feature is given.
c4170e32
KH
7141 (PACK_OTF_TAG) [M17N_FLT_USE_NEW_FEATURE]: New macro.
7142 (ftfont_drive_otf) [M17N_FLT_USE_NEW_FEATURE]: Handle the case
7143 that OUT is NULL. Use OTF_drive_gsub_with_log and
7144 OTF_drive_gpos_with_log instead of OTF_drive_gsub and
7145 OTF_drive_gpos.
7146 (ftfont_try_otf) [M17N_FLT_USE_NEW_FEATURE]: New function.
0235128c
SM
7147 (ftfont_shape_by_flt) [M17N_FLT_USE_NEW_FEATURE]:
7148 Setup mflt_enable_new_feature and mflt_try_otf.
7149
4721152c
J
71502010-05-08 Jan Djärv <jan.h.d@swipnet.se>
7151
7152 * xsettings.c (Ftool_bar_get_system_style): Correct comment.
7153
7154 * gtkutil.c (xg_pack_tool_bar): Change show_all to show for handle
7155 box and toolbar (Bug #6139).
7156 (xg_create_tool_bar): Remove comment (Bug #6139).
7157 (xg_make_tool_item): Remove gtk_widget_show_all (Bug #6139).
7158 (xg_show_toolbar_item): Add gtk_widget_show for weventbox (Bug #6139).
7159
ee0a16cf
JB
71602010-05-08 Juanma Barranquero <lekktu@gmail.com>
7161
7162 * makefile.w32-in ($(BLD)/eval.$(O), $(BLD)/w32fns.$(O)):
7163 Update dependencies.
7164
96d79611
EZ
71652010-05-08 Eli Zaretskii <eliz@gnu.org>
7166
7167 * fringe.c (update_window_fringes): Set up truncation bitmaps for
7168 R2L lines.
7169
40c17879
GM
71702010-05-08 Glenn Morris <rgm@gnu.org>
7171
7b42b29f
GM
7172 * Makefile.in (THIS_IS_MAKEFILE): Remove, unused.
7173
40c17879
GM
7174 * Makefile.in (LIBS_TERMCAP): Set with configure, not cpp.
7175 (TERMCAP_OBJ): New, set by configure, replacing termcapobj.
7176 (termcapobj): Replace with TERMCAP_OBJ.
7177 (otherobj): Use $TERMCAP_OBJ instead of $termcapobj.
7178 (LIBES): Use LIBS_TERMCAP as a variable.
7179
7180 * s/freebsd.h (osreldate.h): No longer include, since this file
7181 does not use __FreeBSD_version any more.
7182
7183 * s/aix4-2.h (TERMINFO):
7184 * s/cygwin.h (TERMINFO):
7185 * s/darwin.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
7186 * s/freebsd.h (TERMINFO, LIBS_TERMCAP):
7187 * s/gnu-linux.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
7188 * s/gnu.h (TERMINFO, LIBS_TERMCAP) [HAVE_LIBNCURSES]:
7189 * s/hpux10-20.h (TERMINFO, LIBS_TERMCAP):
7190 * s/irix6-5.h (TERMINFO):
7191 * s/netbsd.h (LIBS_TERMCAP):
7192 * s/openbsd.h (TERMINFO, LIBS_TERMCAP):
7193 * s/sol2-6.h (LIBS_TERMCAP) [!TERMINFO]:
7194 * s/usg5-4.h (TERMINFO):
7195 Move to configure.
7196
94b612ad
SM
71972010-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
7198
7199 * eval.c (unbind_to): Don't unbind a local binding into the global
7200 binding when the local binding disappeared. Inversely, don't unbind
7201 a global binding into a newly created local binding.
7202 * data.c (set_internal): Make its `buf' arg into a `where' arg so we
7203 can specify the frame to use, when applicable. Adjust callers.
7204
15e12598 72052010-05-07 Vincent Belaïche <vincent.belaiche@gmail.com>
acd0102a 7206 Stefan Monnier <monnier@iro.umontreal.ca>
15e12598
VB
7207
7208 * floatfns.c (Fisnan, Fcopysign, Ffrexp, Fldexp): New functions.
7209
f724825e
EZ
72102010-05-07 Eli Zaretskii <eliz@gnu.org>
7211
5cba3209
EZ
7212 * w32fns.c: Include w32.h.
7213 (Fw32_shell_execute): Decode the error message before passing it
7214 to `error'. (Bug#6126)
7215
d16bdfc3
EZ
7216 * msdos.c (dos_set_window_size):
7217 * w16select.c (Fx_selection_exists_p): Use `Fsymbol_value (foo)'
7218 instead of `XSYMBOL (foo)->value'.
7219
59d93e87
EZ
72202010-05-07 Eli Zaretskii <eliz@gnu.org>
7221
9fdec8bc
EZ
7222 Fix the MS-DOS build, broken by autoconfiscation.
7223
7224 * Makefile.in: Don't use Make-style comments past the "start of
7225 cpp stuff" line.
7226 (MSDOS_OBJ): Remove xmenu.o (it is now defined by XMENU_OBJ).
7227
7228 * s/msdos.h (UNEXEC): Don't define (@unexec@ in Makefile.in is
7229 edited directly by msdos/sed1v2.inp).
f724825e 7230
2f86b22b
GM
72312010-05-07 Glenn Morris <rgm@gnu.org>
7232
7233 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
7234 (LD_SWITCH_SYSTEM_EXTRA): New variable, set by configure.
7235 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM and $LD_SWITCH_SYSTEM_EXTRA,
7236 move out of cpp section.
7237 * s/freebsd.h (LD_SWITCH_SYSTEM):
7238 * s/gnu-linux.h (LD_SWITCH_SYSTEM):
7239 * s/netbsd.h (LD_SWITCH_SYSTEM):
7240 * s/openbsd.h (LD_SWITCH_SYSTEM): Move to configure.in.
7241
49ebbd65
DN
72422010-05-07 Dan Nicolaescu <dann@ics.uci.edu>
7243
7244 Define LIB_STANDARD and START_FILES using autoconf.
7245 * s/usg5-4.h (LIB_STANDARD):
7246 * s/netbsd.h (START_FILES):
7247 * s/irix6-5.h (LIB_STANDARD):
7248 * s/hpux10-20.h (LIB_STANDARD, START_FILES):
7249 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
7250 * s/freebsd.h (START_FILES):
7251 * s/darwin.h (START_FILES):
7252 * s/cygwin.h (START_FILES):
7253 * s/aix4-2.h (LIB_STANDARD):
7254 * m/ibmrs6000.h (START_FILES): Remove, move logic to configure.in.
7255 * Makefile.in (STARTFILES): Rename to START_FILES, define using
7256 autoconf, not cpp.
7257
d43c06d6
DN
72582010-05-06 Dan Nicolaescu <dann@ics.uci.edu>
7259
28823648
DN
7260 Remove NEED_BSDTTY and NEED_UNISTD_H.
7261 * s/hpux10-20.h (NEED_BSDTTY): Remove.
7262 * s/aix4-2.h (NEED_UNISTD_H): Remove.
7263 * systty.h: Simplify conditionals for including <sys/bsdtty.h>,
7264 <sys/ptyio.h> and <unistd.h>.
7265
aca00430
DN
7266 * emacs.c (main): Remove NO_DIR_LIBRARY conditional, unused.
7267
d43c06d6
DN
7268 * Makefile.in (STARTFILES): Conditionally define to make the usage clear.
7269 * s/gnu.h (START_FILES): Remove empty definition.
7270
3e56b11d
JD
72712010-05-06 Jan Djärv <jan.h.d@swipnet.se>
7272
7273 * xterm.c (x_draw_image_relief): Move declaration of extra to beginning.
7274
e3cf0cde
GM
72752010-05-06 Glenn Morris <rgm@gnu.org>
7276
7277 * Makefile.in (CPP, LN_S): Remove unused variables.
7278
774b9a60
SM
72792010-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7280
7281 * syntax.c (Fchar_syntax): Check the arg is a character (bug#6080).
7282
4ab92842
LM
72832010-05-05 Lawrence Mitchell <wence@gmx.li>
7284
7285 * m/sparc.h: Fix typo in earlier change.
7286
178f2507
SM
72872010-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7288
7289 Misc tweaks.
7290 * eval.c (Fdefvaralias): Remove unintended nested if.
7291 (internal_condition_case_2, internal_condition_case_n): Use ANSI type.
7292
80f00217 72932010-05-04 Bernhard Herzog <bh@intevation.de> (tiny change)
991be6d4
JD
7294
7295 * xsmfns.c (smc_save_yourself_CB): strlen(client_id) => strlen(cwd).
7296
ef03a4e6
DN
72972010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
7298
58eb6cf0
DN
7299 Remove BSD_PGRPS.
7300 * s/bsd-common.h (BSD_PGRPS): Remove undef.
7301 * s/gnu-linux.h (BSD_PGRPS): Remove.
7302 * term.c (dissociate_if_controlling_tty):
7303 * sysdep.c (narrow_foreground_group, widen_foreground_group)
7304 (init_sys_modes, reset_sys_modes):
7305 * emacs.c (main):
7306 * callproc.c (Fcall_process, child_setup): Remove code depending
7307 on BSD_PGRPS.
7308
ef03a4e6
DN
7309 Remove POSIX_SIGNALS.
7310 * s/usg5-4.h (POSIX_SIGNALS):
7311 * s/netbsd.h (POSIX_SIGNALS):
7312 * s/msdos.h (POSIX_SIGNALS):
7313 * s/ms-w32.h (POSIX_SIGNALS):
7314 * s/hpux11.h (POSIX_SIGNALS):
7315 * s/gnu.h (POSIX_SIGNALS):
7316 * s/gnu-linux.h (POSIX_SIGNALS):
7317 * s/freebsd.h (POSIX_SIGNALS):
7318 * s/darwin.h (POSIX_SIGNALS):
7319 * s/cygwin.h (POSIX_SIGNALS):
7320 * s/aix4-2.h (POSIX_SIGNALS): Remove definition.
7321 * s/unixware.h:
7322 * s/sol2-6.h: Remove comments on POSIX_SIGNALS.
7323 * process.c (create_process):
7324 * syssignal.h:
7325 * sysdep.c (wait_for_termination, init_signals):
7326 * process.c (create_process):
7327 * msdos.c: POSIX_SIGNALS is always defined on all platforms,
7328 remove all code that assumes the contrary.
7329
49628785
GM
73302010-05-04 Glenn Morris <rgm@gnu.org>
7331
27a2cdfc
GM
7332 * s/gnu-linux.h (LD_SWITCH_SYSTEM): Use LD_SWITCH_X_SITE_AUX as a shell
7333 variable.
7334 * s/netbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
7335 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH.
7336 * s/openbsd.h (LD_SWITCH_SYSTEM_tmp): Remove.
7337 (LD_SWITCH_SYSTEM): Use $LD_SWITCH_X_SITE_AUX_RPATH instead of
7338 LD_SWITCH_SYSTEM_tmp.
7339 * Makefile.in (LD_SWITCH_X_SITE_AUX, LD_SWITCH_X_SITE_AUX_RPATH):
7340 New variables, set by configure.
7341
eb21eab5
GM
7342 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
7343 * s/darwin.h (HEADERPAD_EXTRA, LIBS_NSGUI): Remove.
7344 (LD_SWITCH_SYSTEM_TEMACS): Move to configure.in.
7345 * Makefile.in (LD_SWITCH_SYSTEM_TEMACS): New variable, set by configure.
7346 (TEMACS_LDFLAGS): Use $LD_SWITCH_SYSTEM_TEMACS.
7347
49628785
GM
7348 * s/aix4-2.h (C_SWITCH_SYSTEM):
7349 * m/alpha.h (C_SWITCH_MACHINE):
7350 Move to configure.in.
7351 * Makefile.in (C_SWITCH_MACHINE, C_SWITCH_SYSTEM):
7352 New variables, set by configure.
7353 (ALL_CFLAGS): Use $C_SWITCH_MACHINE and $C_SWITCH_SYSTEM in place of
7354 $c_switch_machine and $c_switch_system.
7355
7dff330b
DN
73562010-05-04 Dan Nicolaescu <dann@ics.uci.edu>
7357
7358 * s/hpux10-20.h (LIB_STANDARD): New definition.
7359 * Makefile.in (ORDINARY_LINK): Remove setting LIB_STANDARD based
7360 on it, not used anymore.
7361
53967e09
CY
73622010-05-03 Chong Yidong <cyd@stupidchicken.com>
7363
7364 * eval.c (internal_condition_case_n): Rename from
7365 internal_condition_case_2.
7366 (internal_condition_case_2): New function.
7367
7368 * xdisp.c (safe_call): Use internal_condition_case_n.
7369
7370 * fileio.c (Fdelete_file, internal_delete_file): New arg FORCE.
7371 (internal_delete_file, Frename_file): Callers changed.
7372
7373 * buffer.c (Fkill_buffer):
7374 * callproc.c (delete_temp_file): Callers changed (Bug#6070).
7375
7376 * lisp.h: Update prototypes.
7377
3dee6fdb
GM
73782010-05-03 Glenn Morris <rgm@gnu.org>
7379
7380 * Makefile.in (LIBX_EXTRA, LIBX_BASE): New variables.
7381 (LIBXT_OTHER, LIBX_OTHER): New, set by configure.
7382 (LIBXT): Set with configure, not cpp.
7383 (LIBX): Remove.
7384 (LIBES): Replace $LIBX with $LIBX_BASE and $LIBX_OTHER.
7385
a101e0fb
DN
73862010-05-02 Dan Nicolaescu <dann@ics.uci.edu>
7387
7388 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Remove.
7389 The FreeBSD is not needed, the default works, Solaris version is
7390 not needed, and the remaining case is not supported by configure.
7391
f63d0028
JD
73922010-05-02 Jan Djärv <jan.h.d@swipnet.se>
7393
7394 * xsmfns.c (CHDIR_OPT): New define.
7395 (smc_save_yourself_CB): Add CHDIR_OPT to options to use when
7396 restarting emacs.
7397
7398 * xterm.c (x_connection_closed): Call Fkill_emacs instead of
7399 shut_down_emacs.
7400
7401 * emacs.c (USAGE1): Mention --chdir.
7402 (main): Handle --chdir.
7403 (standard_args): Add --chdir.
7404 (fatal_error_signal): Call Fkill_emacs for SIGTERM and SIGHUP (Bug
7405 #5552).
7406
e4814a9f
DN
74072010-05-01 Dan Nicolaescu <dann@ics.uci.edu>
7408
cd03c74a
DN
7409 Remove LD_SWITCH_MACHINE.
7410 * Makefile.in (LD_SWITCH_MACHINE): Remove definition, unused.
7411 (TEMACS_LDFLAGS): Do not use LD_SWITCH_MACHINE.
7412
c3a398a1
DN
7413 Clean up IRIX code.
7414 * m/iris4d.h (TERMINFO, FIRST_PTY_LETTER): Move definitions ...
7415 * s/irix6-5.h (TERMINFO, FIRST_PTY_LETTER): ... here.
7416
87e7285c
DN
7417 Clean up AIX code.
7418 * m/ibmrs6000.inp: Remove file, unused.
7419 * m/ibmrs6000.h (IBMR2AIX): Remove, unused.
7420 (LD_SWITCH_MACHINE): Rename to LD_SWITCH_SYSTEM_TEMACS, and move
7421 definition ...
7422 * s/aix4-2.h (LD_SWITCH_SYSTEM_TEMACS): ... here.
7423
80f00217
JB
7424 * sysdep.c (child_setup_tty, init_sys_modes): Remove !IBMR2AIX code,
7425 unused.
e4814a9f 7426
59ca28de
EZ
74272010-05-01 Eli Zaretskii <eliz@gnu.org>
7428
197daef4
EZ
7429 Emulate POSIX_SIGNALS on MS-Windows.
7430
7431 * s/ms-w32.h (POSIX_SIGNALS, struct sigaction, SIG_BLOCK)
7432 (SIG_SETMASK, SIG_UNBLOCK): Define.
d6dae14b
EZ
7433
7434 * sysdep.c (sys_signal) [WINDOWSNT]: #ifdef away.
7435 (wait_for_termination) [WINDOWSNT]: Move MS-Windows specific code
7436 from non-POSIX_SIGNALS section to POSIX_SIGNALS section.
7437
80f00217
JB
7438 * w32.c (sigemptyset, sigaddset, sigfillset, sigprocmask):
7439 New stubs.
197daef4 7440
af7c7572
EZ
7441 Miscellaneous fixes of bidi display.
7442
59ca28de
EZ
7443 * xdisp.c (find_row_end): New function, refactored from display_line.
7444 (display_line): Use it.
017ea819
EZ
7445 (extend_face_to_end_of_line): In almost-filled rows, extend only
7446 if the row is R2L and not continued.
166e930d 7447 (display_line): Fix prepending of truncation glyphs to R2L rows.
af7c7572 7448 Preserve overlay and string info in row->end.
166e930d
EZ
7449 (insert_left_trunc_glyphs): Support addition of left truncation
7450 glyphs to R2L rows.
b47e0dcf 7451 (set_cursor_from_row): Don't place cursor on the vertical border
af7c7572
EZ
7452 glyph between adjacent windows. Fix a crash when a display string
7453 is continued to the next line. Don't return zero if cursor was
7454 found by `cursor' property of a display string.
b47e0dcf
EZ
7455 (try_cursor_movement): Don't assume that row->end == (row+1)->start,
7456 test for that explicitly.
59ca28de 7457
7acac9f4
GM
74582010-05-01 Glenn Morris <rgm@gnu.org>
7459
7460 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
7461 for clarity.
7462 (OTHER_OBJ): Remove.
7463 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
7464 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
7465
45841e65
KK
74662010-05-01 Karel Klíč <kklic@redhat.com>
7467
7468 * fileio.c (Ffile_selinux_context): Context functions may return null.
7469
afc61943
DN
74702010-04-30 Dan Nicolaescu <dann@ics.uci.edu>
7471
80f00217 7472 * s/gnu.h (POSIX_SIGNALS, START_FILES): New definitions.
afc61943 7473
5a1bb006
GM
74742010-04-30 Glenn Morris <rgm@gnu.org>
7475
7476 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
7477 (OTHER_OBJ): Define as a separate variable, for clarity.
7478
210af043
J
74792010-04-30 Jan Djärv <jan.h.d@swipnet.se>
7480
7481 * xsettings.c: include limits.h and update file comment.
7482
0a7df391
GM
74832010-04-30 Glenn Morris <rgm@gnu.org>
7484
d5096f16
GM
7485 * Makefile.in (OLDXMENU, LIBXMENU) [HAVE_MENUS]:
7486 Set with configure, not cpp.
7487 (LIBW): Remove, replace with $TOOLKIT_LIBW.
7488
7eb1ac33
GM
7489 * Makefile.in (mallocobj): Remove.
7490 (otherobj): Simplify using @OTHER_OBJ@.
7491
517d086b
GM
7492 * Makefile.in (dispnew.o, frame.o, fringe.o, font.o, fontset.o)
7493 (keyboard.o, window.o, xdisp.o, xfaces.o, menu.o):
7494 Don't bother making nsgui.h dependency platform-specific.
7495
0a7df391
GM
7496 * Makefile.in (nsfns.o): Remove duplicate nsgui.h dependency.
7497
d6d23852
SM
74982010-04-29 Stefan Monnier <monnier@iro.umontreal.ca>
7499
d2630aef
SM
7500 * process.c (read_process_output, exec_sentinel): Don't burp if the
7501 sentinel/filter kills the current buffer (bug#6060).
7502
f9dddf52 7503 Fix wrong-docstring problem introduced with hash-consing. (Bug#6008)
d6d23852
SM
7504 * eval.c (Fautoload): Set doc to a unique number rather than to 0.
7505 Remove unused var `args'.
7506 * lisp.h (XSETCARFASTINT, XSETCDRFASTINT): Remove.
7507 (LOADHIST_ATTACH): Wrap with do...while to avoid surprises for callers.
7508 * doc.c (store_function_docstring): Use XSETCAR.
7509
f1e3642a
GM
75102010-04-28 Glenn Morris <rgm@gnu.org>
7511
faf535f8
GM
7512 * Makefile.in (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT): New variables.
7513 (WINDOW_SUPPORT) [HAVE_WINDOW_SYSTEM]: Use them.
7514
c40f9449
GM
7515 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
7516
658f86ca
GM
7517 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
7518 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
7519
bc0b5f61
GM
7520 * Makefile.in (FONT_OBJ): New, set by configure.
7521 (FONT_DRIVERS): Use $FONT_OBJ.
7522
294c50a0
GM
7523 * Makefile.in (LIBXMU): Set with configure, not cpp.
7524 * s/aix4-2.h (LIBXMU):
7525 * s/hpux10-20.h (LIBXMU):
7526 Remove definition, now set in configure.
7527
e6ec4e99
GM
7528 * Makefile.in (NS_OBJ, NS_SUPPORT): Set with configure, not cpp.
7529
f1e3642a
GM
7530 * m/amdx86-64.h [i386]: Move this test to configure.in.
7531
c6ea2936
GM
75322010-04-27 Glenn Morris <rgm@gnu.org>
7533
8fdac2c3
GM
7534 * Makefile.in (LIBXTR6): Set with configure, not cpp.
7535 * s/unixware.h (NEED_LIBW): Remove definition.
7536
986fb647
GM
7537 * Makefile.in (LUCID_LIBW, MOTIF_LIBW): Remove, replacing by...
7538 (TOOLKIT_LIBW): New, set by configure.
7539 (@X_TOOLKIT_TYPE@): No longer define it.
7540
c6ea2936
GM
7541 * Makefile.in (LIBXP): Remove, since included in MOTIF_LIBW.
7542 (MOTIF_LIBW): Set with configure, not cpp.
7543 * s/aix4-2.h (LIB_MOTIF):
7544 * s/gnu-linux.h (LIB_MOTIF):
7545 * s/unixware.h (LIB_MOTIF): Move to configure.in.
7546
aaa36002
DN
75472010-04-27 Dan Nicolaescu <dann@ics.uci.edu>
7548
7549 Reduce CPP usage.
7550 * Makefile.in (LIB_X11_LIB): Remove, inline in the only user.
7551 (obj): Use autoconf for unexec instead of cpp.
bba3e508
SM
7552 (C_SWITCH_SYSTEM, C_SWITCH_MACHINE, C_SWITCH_X_SITE):
7553 Remove definitions and undefs. Inline definitions in the only user.
ed6281b0 7554 (ALL_CFLAGS): Substitute C_SWITCH_X_SYSTEM using autoconf.
aaa36002 7555
b678dd8b
GM
75562010-04-27 Glenn Morris <rgm@gnu.org>
7557
76cda504
GM
7558 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Change the logic around,
7559 since the defaults (set by the system file) are fine in most cases.
7560 [GNU_LINUX, __OpenBSD__, __NetBSD__, __APPLE__]: Remove sections.
7561 * m/ibms390x.h (START_FILES, LIB_STANDARD):
7562 * m/macppc.h (START_FILES, LIB_STANDARD) [GNU_LINUX]:
7563 * m/sparc.h (START_FILES, LIB_STANDARD) [__linux__]:
7564 Remove definitions, since they are set correctly in s/gnu-linux.h.
7565 * s/freebsd.h (START_FILES, LIB_STANDARD):
7566 * s/gnu-linux.h (START_FILES, LIB_STANDARD):
7567 * s/hpux10-20.h (START_FILES):
7568 * s/netbsd.h (START_FILES, LIB_STANDARD, START_FILES_1, END_FILES_1):
7569 Use $CRT_DIR in place of fixed /usr/lib, /lib directories.
7570
b678dd8b
GM
7571 * Makefile.in (LIBXP, LUCID_LIBW, WIDGET_OBJ): Set via configure.
7572 (MOTIF_LIBW): Use $LIBXP.
7573 (otherobj): Use $WIDGET_OBJ.
7574
9452ded1
DN
75752010-04-26 Dan Nicolaescu <dann@ics.uci.edu>
7576
7e10844c
DN
7577 * Makefile.in (LIBS_MACHINE): Remove, unused.
7578
9452ded1
DN
7579 Use autoconf instead of cpp for LIB_MATH.
7580 * s/darwin.h (LIB_MATH): Do not define here, move to configure.
7581 * s/cygwin.h (LIB_MATH): Likewise.
7582 * Makefile.in (LIB_MATH): Do not define with cpp.
7583 (LIBES): Use autoconf for LIB_MATH.
7584
fcebfc6a
KH
75852010-04-26 Kenichi Handa <handa@m17n.org>
7586
7587 * composite.c (Ffind_composition_internal): Fix the return value
7588 for an automatic composition.
7589
39e2ad1b
DN
75902010-04-25 Dan Nicolaescu <dann@ics.uci.edu>
7591
7592 Remove all NO_ARG_ARRAY uses.
7593 * fns.c (concat2, concat3, nconc2):
7594 * eval.c (apply1, call1, call2, call3, call4, call5, call6)
7595 (call7): Remove NO_ARG_ARRAY usage, assume it's always true.
7596 * m/xtensa.h (NO_ARG_ARRAY):
7597 * m/template.h (NO_ARG_ARRAY):
7598 * m/sparc.h (NO_ARG_ARRAY):
7599 * m/sh3.h (NO_ARG_ARRAY):
7600 * m/mips.h (NO_ARG_ARRAY):
7601 * m/macppc.h (NO_ARG_ARRAY):
7602 * m/iris4d.h (NO_ARG_ARRAY):
7603 * m/intel386.h (NO_ARG_ARRAY):
7604 * m/ibms390x.h (NO_ARG_ARRAY):
7605 * m/ibms390.h (NO_ARG_ARRAY):
7606 * m/ibmrs6000.h (NO_ARG_ARRAY):
7607 * m/ia64.h (NO_ARG_ARRAY):
7608 * m/hp800.h (NO_ARG_ARRAY):
7609 * m/arm.h (NO_ARG_ARRAY):
7610 * m/amdx86-64.h (NO_ARG_ARRAY):
7611 * m/alpha.h (NO_ARG_ARRAY): Remove definition.
7612
adf4f59c
EZ
76132010-04-25 Eli Zaretskii <eliz@gnu.org>
7614
6bdf5d65
EZ
7615 * xdisp.c (display_line): Don't assume 2nd call to
7616 get_next_display_element cannot return zero. (Bug#6030)
f538fcec
EZ
7617 (iterate_out_of_display_property): New function, body from pop_it.
7618 (pop_it): Use it.
adf4f59c 7619
dfbbda83
GM
76202010-04-24 Glenn Morris <rgm@gnu.org>
7621
7622 * m/amdx86-64.h (START_FILES, LIB_STANDARD) [__OpenBSD__]:
7623 For clarity, revert to using fixed /usr/lib rather than $CRT_DIR.
7624 (START_FILES, LIB_STANDARD) [__FreeBSD__]: Merge into the generic case,
7625 since CRT_DIR defaults to /usr/lib. Suggested by Dan Nicolaescu.
7626
2d4018aa
EZ
76272010-04-24 Eli Zaretskii <eliz@gnu.org>
7628
a49884a6
EZ
7629 * xdisp.c (display_line): Use `reseat' instead of `reseat_1', and
7630 use `get_next_display_element' and `set_iterator_to_next' to
7631 advance to the next character, when looking for the character that
7632 begins the next row.
7633
76db6fcc 7634 * .gdbinit: Add a "set Fmake_symbol" line to force GDB to load the
2d4018aa
EZ
7635 definition of "struct Lisp_Symbol".
7636
70eab5c1
GM
76372010-04-24 Glenn Morris <rgm@gnu.org>
7638
7639 * Makefile.in (CRT_DIR): New variable, set by configure.
7640 * m/amdx86-64.h, m/ibms390x.h (START_FILES, LIB_STANDARD):
7641 Use $CRT_DIR rather than HAVE_LIB64_DIR. (Bug#5655)
7642
1ad4cc3d
DN
76432010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
7644
e769f484
DN
7645 * Makefile.in: Remove C_SWITCH_X_MACHINE, unused.
7646
4196ff33
DN
7647 * s/cygwin.h (LIBS_DEBUG): Remove, unused.
7648
879b0ee4
DN
7649 Remove redundant flags.
7650 * s/freebsd.h (C_SWITCH_SYSTEM):
7651 * s/hpux10-20.h (C_SWITCH_X_SYSTEM, LD_SWITCH_X_DEFAULT):
7652 * s/netbsd.h (C_SWITCH_SYSTEM):
7653 * s/openbsd.h (LD_SWITCH_X_DEFAULT): Remove, configure takes care
7654 of these.
7655
03cbbcb8
DN
7656 Simplify m/intel386.h.
7657 * m/intel386.h (CRT0_DUMMIES): Remove, inline value in the only
7658 user: ecrt0.c.
7659 (SOLARIS2): Remove LOAD_AVE_TYPE, LOAD_AVE_CVT, LIBS_MACHINE, unused.
7660 (USG5_4): Move LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE definitions to
7661 the only user: s/unixware.h.
7662 * ecrt0.c: Remove #ifndef static. Inline CRT0_DUMMIES definition
7663 from m/intel386.h.
bba3e508
SM
7664 * s/unixware.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, FSCALE):
7665 Definitions moved here from m/intel386.h.
03cbbcb8 7666
1ad4cc3d
DN
7667 * m/mips.h: Remove #if 0 code.
7668
8785b888
EZ
76692010-04-23 Eli Zaretskii <eliz@gnu.org>
7670
728588cc
EZ
7671 Fix display of composed characters from L2R scripts in bidi buffers.
7672 * xdisp.c (set_iterator_to_next, next_element_from_composition):
7673 After advancing IT past the composition, resync the bidi iterator
7674 with IT's position. (Bug#5977)
7675
a63f80b4
DN
76762010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
7677
7678 * Makefile.in (LD_SWITCH_MACHINE_TEMACS): Remove, unused.
7679 (TEMACS_LDFLAGS): Don't use LD_SWITCH_SYSTEM_TEMACS.
7680
ff5dec5c
SM
76812010-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
7682
7683 * gtkutil.c: Include xsettings.h for Ftool_bar_get_system_style.
7684
8785b888
EZ
76852010-04-23 Eli Zaretskii <eliz@gnu.org>
7686
58ccf243 7687 Support `display' text properties and overlay strings in bidi buffers.
8785b888
EZ
7688 * xdisp.c (pop_it): When the stack is popped after displaying
7689 from a string, bidi-iterate to exit from the text portion covered
7690 by the `display' property or overlay. (Bug#5988, bug#5920)
7691
feeb1604
DN
76922010-04-23 Dan Nicolaescu <dann@ics.uci.edu>
7693
8e324eb6
DN
7694 * m/macppc.h (LD_SWITCH_SYSTEM_TEMACS): Remove #undef.
7695 (LD_SWITCH_MACHINE_TEMACS): Remove, configure sets nocombreloc.
7696
809fcaba
DN
7697 * s/netbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure sets nocombreloc.
7698 * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Remove.
7699
ed710380
DN
7700 Simplify STARTFILES definition.
7701 * s/hpux10-20.h (START_FILES): Explicitly define here instead of
7702 relying on Makefile.in to define it.
7703 * s/cygwin.h (START_FILES): Likewise.
7704 * Makefile.in (STARTFILES): Remove conditional code, not needed anymore.
7705
feeb1604
DN
7706 Clean up Solaris code.
7707 * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS, C_SWITCH_X_SYSTEM)
7708 (LIB_MOTIF): Remove, configure takes care of this.
7709 (NOT_USING_MOTIF): Remove, unused.
7710 * xrdb.c: Remove #if 0-ed #include.
7711 (SYSV): Remove conditional for old SysV.
7712 * sysdep.c (closedir): Remove conditional code for Solaris,
7713 Solaris has closedir.
7714
a0d0b563
JD
77152010-04-22 Jan Djärv <jan.h.d@swipnet.se>
7716
7717 * xsettings.c (read_and_apply_settings): Check if current_font is
7718 NULL before strcmp (Bug#6001).
7719
56bae7c7
DN
77202010-04-21 Dan Nicolaescu <dann@ics.uci.edu>
7721
7722 Clean up HP-UX files.
7723 * m/hp800.h (NO_REMAP, VIRT_ADDR_VARIES, DATA_SEG_BITS)
7724 (DATA_START, TEXT_START, LOAD_AVE_TYPE, LOAD_AVE_CVT)
7725 (LDAV_SYMBOL, index, rindex): Move definitions only used in HP-UX ...
7726 * s/hpux10-20.h: ... to the only user, here.
7727
372b7a95
EZ
77282010-04-21 Eli Zaretskii <eliz@gnu.org>
7729
7730 * bidi.c (bidi_find_paragraph_start, bidi_at_paragraph_end): Don't
7731 use buffer-local values of paragraph-start and paragraph-separate.
7732 <paragraph_start_re, paragraph_separate_re>: Rename from
7733 fallback_paragraph_start_re and fallback_paragraph_separate_re.
7734 (Bug#5992)
7735
f904c0f9
JD
77362010-04-21 Jan Djärv <jan.h.d@swipnet.se>
7737
7738 * xsettings.c: Qmonospace_font_name, Qtool_bar_style and
7739 current_tool_bar_style are new.
7740 (store_config_changed_event): Rename from store_font_changed_event.
7741 (XSETTINGS_TOOL_BAR_STYLE): New define.
7742 (SEEN_FONT, SEEN_TB_STYLE): New enum values.
7743 (struct xsettings): Add font and tb_style, set xft stuff inside #ifdef
7744 HAVE_XFT.
7745 (something_changedCB): store_font_changed_event is now
c4cc8b9a 7746 store_config_changed_event.
bba3e508
SM
7747 (parse_settings): Rename from parse_xft_settings.
7748 Read non-xft xsettings outside #ifdef HAVE_XFT.
ef1b0ba7 7749 (read_settings): Rename from read_xft_settings.
f904c0f9
JD
7750 (apply_xft_settings): Take current settings as parameter. Do not
7751 call read_(xft)_settings.
7752 (read_and_apply_settings): New function.
bba3e508
SM
7753 (xft_settings_event): Do non-xft stuff out of HAVE_XFT.
7754 Call read_and_apply_settings if there are settings to be read.
ef1b0ba7 7755 (init_xsettings): Rename from init_xfd_settings.
f904c0f9
JD
7756 Call read_and_apply_settings unconditionally.
7757 (xsettings_initialize): Call init_xsettings.
7758 (Ftool_bar_get_system_style): New function.
7759 (syms_of_xsettings): Define Qmonospace_font_name and
7760 Qtool_bar_style. Initialize current_tool_bar_style to nil.
f9dddf52 7761 defsubr Stool_bar_get_system_style. Fprovide on
f904c0f9 7762 dynamic-setting.
31a01b90 7763 Move misplaced HAVE_GCONF
f904c0f9
JD
7764
7765 * xsettings.h (Ftool_bar_get_system_style): Declare.
7766
7767 * xdisp.c: Vtool_bar_style, tool_bar_max_label_size,
7768 Qtext, Qboth, Qboth_horiz are new.
7769 (syms_of_xdisp): Intern Qtext, Qboth, Qboth_horiz, DEFVAR
7770 Vtool_bar_style, tool_bar_max_label_size.
7771
7772 * lisp.h: Extern declare Qtext, Qboth, Qboth_horiz.
7773
7774 * keyboard.c: QClabel is new.
7775 (parse_tool_bar_item): Take out QClabel from tool bar items.
7776 Try to construct a label if ther is no QClabel.
7777 (syms_of_keyboard): Intern :label as QClabel.
7778
7779 * dispextern.h (tool_bar_item_idx): TOOL_BAR_ITEM_LABEL is new.
7780 (Vtool_bar_style, tool_bar_max_label_size, DEFAULT_TOOL_BAR_LABEL_SIZE):
7781 New.
7782
7783 * Makefile.in (SOME_MACHINE_LISP): font-setting.el renamed to
7784 dynamic-setting.el.
7785
7786 * gtkutil.c (xg_tool_bar_menu_proxy): Handle label in tool bar item.
7787 (xg_make_tool_item, xg_show_toolbar_item): New function.
7788 (update_frame_tool_bar): Take label from TOOL_BAR_ITEM_LABEL.
7789 Call xg_make_tool_item to make a tool bar item.
7790 Call xg_show_toolbar_item. Use wtoolbar instead of x->toolbar_widget.
7791
7792 * xterm.c (x_draw_image_relief): Take Vtool_bar_button_margin
7793 into account for toolbars.
7794
c632dfda
JD
77952010-04-21 Jan Djärv <jan.h.d@swipnet.se>
7796
7797 * data.c (make_blv): Declarations before code (Bug#5993).
7798
10efe302
GM
77992010-04-21 Glenn Morris <rgm@gnu.org>
7800
7801 * Makefile.in (DBUS_OBJ, GTK_OBJ, XMENU_OBJ, XOBJ):
7802 Define using autoconf, not cpp.
7803 (LIBXSM): New variable, set by autoconf.
7804 (LIBXT): Use $LIBXSM.
7805
4285ac5a
DN
78062010-04-21 Dan Nicolaescu <local_user@dannlt>
7807
3ec759e7
DN
7808 Remove NOMULTIPLEJOBS, unused.
7809 * s/template.h (NOMULTIPLEJOBS):
7810 * s/msdos.h (NOMULTIPLEJOBS): Remove, unused.
7811
4285ac5a
DN
7812 Simplify LD_SWITCH_SYSTEM_TEMACS usage.
7813 * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS):
7814 * s/gnu-linux.h (LD_SWITCH_SYSTEM_TEMACS): Remove, configure
7815 detects -znocombreloc and passes it to the linker
7816 * s/hpux10-20.h (LD_SWITCH_SYSTEM_TEMACS): Remove, empty.
7817
2807228d
GM
78182010-04-21 Glenn Morris <rgm@gnu.org>
7819
7820 * Makefile.in (LIBSELINUX_LIBS): Move out of #ifdef.
7821
574c05e2
KK
78222010-04-21 Karel Klíč <kklic@redhat.com>
7823
7824 * Makefile.in (LIBSELINUX_LIBS): New.
7825 (LIBES): Add $LIBSELINUX_LIBS.
7826 * eval.c, lisp.h (call7): New function.
7827 * fileio.c [HAVE_LIBSELINUX]: Include selinux headers.
7828 (Ffile_selinux_context, Fset_file_selinux_context):
7829 New functions.
7830 (Fcopy_file): New parameter preserve-selinux-context.
7831 (Frename_file): Preserve selinux context when renaming by copy-file.
7832
91eac4bb 78332010-04-21 Juanma Barranquero <lekktu@gmail.com>
acd0102a 7834 Eli Zaretskii <eliz@gnu.org>
91eac4bb 7835
50426a04
JB
7836 Don't depend on cm.c or termcap.c on Windows, use stubs.
7837 * makefile.w32-in (OBJ1): Remove cm.$(O) and termcap.$(O).
7838 ($(BLD)/cm.$(O), $(BLD)/termcap.$(O)): Remove.
7839 * w32console.c (current_tty, cost): New vars; lifted from cm.c.
7840 (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear)
7841 (sys_tputs, sys_tgetstr): New stubs.
7842 * s/ms-w32.h (chcheckmagic, cmcostinit, cmgoto, cmputc, Wcm_clear)
7843 (tputs, tgetstr): New; define to sys_*.
91eac4bb 7844
938efb77
JB
78452010-04-20 Juanma Barranquero <lekktu@gmail.com>
7846
7847 * buffer.c (syms_of_buffer) <bidi-display-reordering>: Doc fix.
7848
b4bf28b7
SM
78492010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7850
8b1e1112
SM
7851 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
7852 Just signal a warning rather than an error when inside a let.
7853 (Fmake_variable_frame_local): Add the same test.
7854
933ac235
SM
7855 * font.c (syms_of_font): Make the style table vars read-only.
7856
b4bf28b7
SM
7857 * buffer.h (struct buffer): Remove unused var `direction_reversed'.
7858 * buffer.c (init_buffer_once, syms_of_buffer): Remove its initialization.
7859
7860 * bidi.c (bidi_initialize): Simplify fallback_paragraph_*_re init.
7861
93d68d0c
EZ
78622010-04-20 Eli Zaretskii <eliz@gnu.org>
7863
7864 Fix R2L paragraph display on TTY.
7865
7866 * xdisp.c (unproduce_glyphs): New function.
7867 (display_line): Use it when produced glyphs are discarded from R2L
7868 glyph rows.
7869 (append_composite_glyph): In R2L rows, prepend the glyph rather
7870 than appending it.
7871
7872 * term.c (append_composite_glyph): In R2L rows, prepend the glyph
7873 rather than append it. Set up the resolved_level and bidi_type
7874 attributes of the appended glyph.
283ccc18
EZ
7875 (produce_special_glyphs): Mirror the backslash continuation
7876 character in R2L lines.
93d68d0c 7877
283ccc18 7878 Implement display of R2L paragraphs in GUI sessions.
26cdf528 7879
283ccc18
EZ
7880 * xdisp.c [HAVE_WINDOW_SYSTEM]: Add prototype for
7881 append_stretch_glyph.
bba3e508
SM
7882 (set_cursor_from_row) <cursor_x>: Remove unused variable.
7883 Fix off-by-one error in computing x at end of text in the row.
283ccc18
EZ
7884 (append_stretch_glyph): In reversed row, prepend the glyph rather
7885 than append it. Set resolved_level and bidi_type of the glyph.
7886 (extend_face_to_end_of_line): If the row is reversed, prepend a
7887 stretch glyph whose width is such that the rightmost glyph will be
7888 drawn at the right margin of the window. Fix off-by-one error on
bba3e508
SM
7889 TTY frames in testing whether a line needs face extension.
7890 Fix face extension at ZV. If this is the last glyph row, use
283ccc18
EZ
7891 DEFAULT_FACE_ID, to avoid painting the rest of the window with the
7892 region face.
bba3e508
SM
7893 (set_cursor_from_row, display_line):
7894 Use MATRIX_ROW_CONTINUATION_LINE_P instead of testing value of
26cdf528 7895 row->continuation_lines_width.
283ccc18
EZ
7896 (next_element_from_buffer): Don't call bidi_paragraph_init if we
7897 are at ZV. Fixes a crash when reseated to ZV by
7898 try_window_reusing_current_matrix.
45903529
EZ
7899 (display_and_set_cursor, erase_phys_cursor): Handle negative HPOS,
7900 which happens with R2L glyph rows. Fixes a crash when inserting a
7901 character at end of an R2L line.
283ccc18
EZ
7902 (set_cursor_from_row): Don't be fooled by truncated rows: don't
7903 treat them as having zero-width characters. Improve comments.
7904 Don't reverse pos_before and pos_after for reversed glyph rows.
7905 Set cursor.x to negative value when the cursor might be on the
7906 left fringe.
7907 (IT_OVERFLOW_NEWLINE_INTO_FRINGE): For R2L lines, consider the
7908 left fringe, not the right one.
f951a506
EZ
7909 (notice_overwritten_cursor, draw_phys_cursor_glyph)
7910 (erase_phys_cursor): For reversed cursor_row, support cursor on
7911 the left fringe.
7912
283ccc18
EZ
7913 * fringe.c (update_window_fringes): For R2L rows, swap the bitmaps
7914 of continuation indicators on the fringes.
7915 (draw_fringe_bitmap): For reversed glyph rows, allow cursor on the
7916 left fringe.
7917
f951a506
EZ
7918 * w32term.c (w32_draw_window_cursor): For reversed glyph rows,
7919 draw cursor on the left fringe.
7920
7921 * xterm.c (x_draw_window_cursor): For reversed glyph rows, draw
7922 cursor on the left fringe.
7923
f951a506
EZ
7924 * dispnew.c (update_text_area): Handle reversed desired rows when
7925 the cursor is on the left fringe.
7926 (set_window_cursor_after_update): Limit cursor's hpos by -1 from
7927 below, not by 0, for when the cursor is on the left fringe.
7928
3bb49aaf
JD
79292010-04-20 Jan Djärv <jan.h.d@swipnet.se>
7930
7931 * gtkutil.c (xg_event_is_for_scrollbar): Check if grabbed
7932 widget is a scrollbar.
7933
c0be27fd
KH
79342010-04-20 Kenichi Handa <handa@m17n.org>
7935
7936 * charset.c (char_charset): Consider Vcharset_non_preferred_head
7937 only when the arg CHARSET_LIST is nil.
7938
ce5b453a
SM
79392010-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
7940
7941 Make variable forwarding explicit rather the using special values.
7942 Basically, this makes the structure of buffer-local values and object
7943 forwarding explicit in the type of Lisp_Symbols rather than use
7944 special Lisp_Objects for that. This tends to lead to slightly more
7945 verbose code, but is more C-like, simpler, and makes it easier to make
7946 sure we handled all cases, among other things by letting the compiler
7947 help us check it.
7948 * lisp.h (enum Lisp_Misc_Type, union Lisp_Misc):
7949 Removing forwarding objects.
7950 (enum Lisp_Fwd_Type, enum symbol_redirect, union Lisp_Fwd): New types.
7951 (struct Lisp_Symbol): Make the various forms of variable-forwarding
7952 explicit rather than hiding them inside Lisp_Object "values".
7953 (XFWDTYPE): New macro.
7954 (XINTFWD, XBOOLFWD, XOBJFWD, XKBOARD_OBJFWD): Redefine.
7955 (XBUFFER_LOCAL_VALUE): Remove.
7956 (SYMBOL_VAL, SYMBOL_ALIAS, SYMBOL_BLV, SYMBOL_FWD, SET_SYMBOL_VAL)
7957 (SET_SYMBOL_ALIAS, SET_SYMBOL_BLV, SET_SYMBOL_FWD): New macros.
7958 (SYMBOL_VALUE, SET_SYMBOL_VALUE): Remove.
7959 (struct Lisp_Intfwd, struct Lisp_Boolfwd, struct Lisp_Objfwd)
7960 (struct Lisp_Buffer_Objfwd, struct Lisp_Kboard_Objfwd):
7961 Remove the Lisp_Misc_* header.
7962 (struct Lisp_Buffer_Local_Value): Redefine.
7963 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): New macros.
7964 (struct Lisp_Misc_Any): Add filler to get the right size.
7965 (struct Lisp_Free): Use struct Lisp_Misc_Any rather than struct
7966 Lisp_Intfwd.
7967 (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL, DEFVAR_INT)
7968 (DEFVAR_KBOARD): Allocate a forwarding object.
7969 * data.c (do_blv_forwarding, store_blv_forwarding): New macros.
7970 (let_shadows_global_binding_p): New function.
7971 (union Lisp_Val_Fwd): New type.
7972 (make_blv): New function.
7973 (swap_in_symval_forwarding, indirect_variable, do_symval_forwarding)
7974 (store_symval_forwarding, swap_in_global_binding, Fboundp)
7975 (swap_in_symval_forwarding, find_symbol_value, Fset)
7976 (let_shadows_buffer_binding_p, set_internal, default_value)
7977 (Fset_default, Fmake_variable_buffer_local, Fmake_local_variable)
7978 (Fkill_local_variable, Fmake_variable_frame_local)
7979 (Flocal_variable_p, Flocal_variable_if_set_p)
7980 (Fvariable_binding_locus):
7981 * xdisp.c (select_frame_for_redisplay):
7982 * lread.c (Fintern, Funintern, init_obarray, defvar_int)
7983 (defvar_bool, defvar_lisp_nopro, defvar_lisp, defvar_kboard):
7984 * frame.c (store_frame_param):
7985 * eval.c (Fdefvaralias, Fuser_variable_p, specbind, unbind_to):
7986 * bytecode.c (Fbyte_code) <varref, varset>: Adapt to the new symbol
7987 value structure.
7988 * buffer.c (PER_BUFFER_SYMBOL): Move from buffer.h.
7989 (clone_per_buffer_values): Only adjust markers into the current buffer.
7990 (reset_buffer_local_variables): PER_BUFFER_IDX is never -2.
7991 (Fbuffer_local_value, set_buffer_internal_1)
7992 (swap_out_buffer_local_variables):
7993 Adapt to the new symbol value structure.
7994 (DEFVAR_PER_BUFFER): Allocate a Lisp_Buffer_Objfwd object.
7995 (defvar_per_buffer): Take a new arg for the fwd object.
7996 (buffer_lisp_local_variables): Return a proper alist (different fix
7997 for bug#4138).
7998 * alloc.c (Fmake_symbol): Use SET_SYMBOL_VAL.
7999 (Fgarbage_collect): Don't handle buffer_defaults specially.
8000 (mark_object): Handle new symbol value structure rather than the old
8001 special Lisp_Misc_* objects.
8002 (gc_sweep) <symbols>: Free also the buffer-local-value objects.
8003 * term.c (set_tty_color_mode):
8004 * bidi.c (bidi_initialize): Don't access the ->value field directly.
8005 * buffer.h (PER_BUFFER_VAR_OFFSET): Don't bother with
8006 a buffer_local_flags.
8007 * print.c (print_object): Get rid of impossible forwarding objects.
8008
fd3998ff
EZ
80092010-04-19 Eli Zaretskii <eliz@gnu.org>
8010
8011 * bidi.c (bidi_get_type, bidi_get_category)
8012 (bidi_at_paragraph_end, bidi_resolve_weak, bidi_resolve_neutral)
ce5b453a
SM
8013 (bidi_type_of_next_char, bidi_level_of_next_char):
8014 Declare static. Use `INLINE' rather than `inline'.
fd3998ff 8015
e42cd1a7
JB
80162010-04-19 Juanma Barranquero <lekktu@gmail.com>
8017
8018 * dired.c (Ffile_attributes): Fix typo in docstring.
8019
6e104790 80202010-04-19 Adrian Robert <Adrian.B.Robert@gmail.com>
79353a53
AR
8021
8022 * nsmenu.m (EmacsDialog-runDialogAt:): Declare ret as
8023 NSInteger (Bug#5811).
8024
6e104790 80252010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
658b9b93
YM
8026
8027 * s/darwin.h (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF)
8028 (PTY_OPEN): New defines. Use openpty (Bug#726, Bug#5819).
8029
6e104790 80302010-04-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16009a0e
YM
8031
8032 * frame.h (FRAME_LINE_TO_PIXEL_Y): Add missing parenthesis.
8033
6e104790
SM
80342010-04-19 Chong Yidong <cyd@stupidchicken.com>
8035
8036 * xdisp.c (prepare_menu_bars): Don't call ns_set_doc_edited for
8037 terminal frames (Bug#5837).
8038
37dcfea0
EZ
80392010-04-19 Eli Zaretskii <eliz@gnu.org>
8040
d1da276f
EZ
8041 * .gdbinit (xsubchartable): New command.
8042
37dcfea0
EZ
80432010-04-19 Eli Zaretskii <eliz@gnu.org>
8044
8045 * xdisp.c (display_line): Don't write beyond the last glyph row in
9166b0f3 8046 the desired matrix. Fixes a crash in "emacs -nw" (bug#5972), see
37dcfea0
EZ
8047 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00075.html
8048 and
8049 http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00213.html
8050
e9515805
SM
80512010-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8052
8053 * alloc.c (Fpurecopy): Hash-cons if requested.
8054 (syms_of_alloc): Update purify-flag docstring.
8055
22aa44a8
JD
80562010-04-18 Jan Djärv <jan.h.d@swipnet.se>
8057
8058 * gtkutil.c (xg_set_geometry): Set size in geometry string also.
8059 (x_wm_set_size_hint): Set USER_POS in hint_flags (Bug#5968).
8060
ebb5722e
EZ
80612010-04-17 Eli Zaretskii <eliz@gnu.org>
8062
8063 Fix a crash when an NSM character is inserted at BEGV.
8064
8065 * bidi.c (bidi_init_it): Fix initialization of bidi_it->prev.
8066 (bidi_resolve_weak): Don't use prev.type_after_w1 if it is
8067 NEUTRAL_B or UNKNOWN_BT.
8068
0f4442ef
EZ
80692010-04-16 Eli Zaretskii <eliz@gnu.org>
8070
8071 * xdisp.c (set_cursor_from_row): Don't consider possibility of
8072 other rows with cursor unless they are different from this row and
8073 this row is part of a continued line. (Bug#5943)
8074
7d4e45f8
DN
80752010-04-16 Dan Nicolaescu <dann@ics.uci.edu>
8076
8077 * s/freebsd.h: Restore osreldate.h include.
8078 Suggested by Naohiro Aota.
8079
5ba5ec85
J
80802010-04-16 Jan Djärv <jan.h.d@swipnet.se>
8081
8082 * xmenu.c (apply_systemfont_to_menu): *childs was incorrectly used.
8083
20af301d
CY
80842010-04-16 Ken Brown <kbrown@cornell.edu> (tiny change)
8085
8086 * s/cygwin.h: Avoid linking against static libgcc.
8087
a4b000fb
JL
80882010-04-15 Juri Linkov <juri@jurta.org>
8089
8090 * window.c: Add Qscroll_command.
8091 Remove Vscroll_preserve_screen_position_commands.
8092 (window_scroll_pixel_based, window_scroll_line_based): Check the
8093 `scroll-command' property on the last command instead of searching
8094 the last command in Vscroll_preserve_screen_position_commands.
8095 (syms_of_window): Initialize and staticpro `Qscroll_command'.
8096 Put Qscroll_command property on Qscroll_up and Qscroll_down.
8097 (scroll-preserve-screen-position): Doc fix.
8098 (Vscroll_preserve_screen_position_commands): Remove variable.
8099
bc319ba4
DN
81002010-04-15 Dan Nicolaescu <dann@ics.uci.edu>
8101
6bb24457
DN
8102 * xdisp.c (message): Do not use NO_ARG_ARRAY.
8103
19d4c244
DN
81042010-04-14 Dan Nicolaescu <dann@ics.uci.edu>
8105
8106 Reduce cpp use in Makefile.in.
8107 * Makefile.in (DBUS_CFLAGS, DBUS_LIBS, GCONF_CFLAGS, GCONF_LIBS)
8108 (LIBSOUND, CFLAGS_SOUND, RSVG_LIBS, RSVG_CFLAGS, INTERVALS_H)
8109 (GETLOADAVG_LIBS, RUN_TEMACS): Move to the autoconf section.
8110 (ORDINARY_LINK): Remove, defined in src/s/gnu.h.
8111 (CRT0_COMPILE): Remove, inline it in the only user.
8112
32129746
JL
81132010-04-14 Juri Linkov <juri@jurta.org>
8114
8115 * window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
8116 `scroll-up-command' and `M-v' from `scroll-down' to
8117 `scroll-down-command'.
8118
9013a7f8
JL
81192010-04-14 Juri Linkov <juri@jurta.org>
8120
8121 * window.c (Vscroll_preserve_screen_position_commands): New variable
8122 with the default value as the list of Qscroll_down and Qscroll_up.
8123 (window_scroll_pixel_based, window_scroll_line_based): Search the
8124 last command in the list Vscroll_preserve_screen_position_commands
8125 instead of comparing with Qscroll_up and Qscroll_down.
8126
4bef8d26
JD
81272010-04-13 Jan Djärv <jan.h.d@swipnet.se>
8128
92848133
JD
8129 * gtkutil.c (xg_set_geometry): Set geometry for PPosition also.
8130 (x_wm_set_size_hint): Dont set position flags, gtk_window_parse_geometry
8131 does that.
8132
4bef8d26
JD
8133 * xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
8134 to zero.
8135
58b963f7
SM
81362010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
8137
84164a0d
SM
8138 * term.c (init_tty): Move common text outside of #ifdef TERMINFO.
8139
2b0a91e7
SM
8140 Try to solve the problem of spurious EOF chars in long lines of text
8141 sent to interactive subprocesses.
8142 * sysdep.c (child_setup_tty): Do not enable ICANON any more.
8143 (system_process_attributes): Remove unused var `ttotal'.
8144 * process.c (send_process): Don't bother breaking long line with EOF
8145 chars when talking to ttys any more.
8146 (wait_reading_process_output): Output a warning when called in such
8147 a way that it could block without being interruptible.
8148
58b963f7
SM
8149 Try to detect file modification within the same second.
8150 * buffer.h (struct buffer): New field modtime_size.
8151 * buffer.c (reset_buffer): Initialize it.
8152 * fileio.c (Finsert_file_contents, Fwrite_region): Set it.
8153 (Fverify_visited_file_modtime): Check it.
8154 (Fclear_visited_file_modtime, Fset_visited_file_modtime): Clear it.
8155 (Fset_visited_file_modtime): Set (or clear) it.
8156
01f5787b
SM
81572010-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8158
8159 * process.c (status_notify): Remove unused var `ro'.
8160
83725342
JD
81612010-04-12 Jan Djärv <jan.h.d@swipnet.se>
8162
8163 * xfns.c (select_visual): Don't call error if XGetVisualInfo returns
8164 more than one visual (Bug#5938).
8165
b9465836
DN
81662010-04-12 Dan Nicolaescu <dann@ics.uci.edu>
8167
50426a04
JB
8168 * Makefile.in (C_SWITCH_SYSTEM,C_SWITCH_MACHINE,C_SWITCH_X_SITE):
8169 Undefine.
b9465836 8170
8d9c8ece
DN
81712010-04-11 Dan Nicolaescu <dann@ics.uci.edu>
8172
b1f52161
DN
8173 Remove C_SWITCH_SYSTEM_TEMACS.
8174 * s/darwin.h (C_SWITCH_SYSTEM_TEMACS): Remove.
8175 (malloc, realloc, free): Use emacs, not temacs for conditional
8176 definition.
8177
8178 * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Remove.
8179 (ALL_CFLAGS): Do not use C_SWITCH_SYSTEM_TEMACS.
8180
8d9c8ece
DN
8181 Use autoconf, not cpp for some variables.
8182 * Makefile.in (C_SWITCH_SYSTEM, C_SWITCH_MACHINE)
8183 (C_SWITCH_X_SITE): Define using autoconf, not cpp.
8184 (ALL_CFLAGS): Use them as make variables.
8185 (really-lwlib, really-oldXMenu): Do not pass them.
8186
1ecb2d3f
JD
81872010-04-11 Jan Djärv <jan.h.d@swipnet.se>
8188
8189 * xmenu.c (apply_systemfont_to_dialog): New.
8190 (create_and_show_dialog): Call apply_systemfont_to_dialog if HAVE_XFT.
8191
3a4fa2f2
SM
81922010-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8193
97e53006
SM
8194 * process.c (exec_sentinel): Preserve current-buffer.
8195
3a4fa2f2
SM
8196 * process.c (read_process_output): Move the save-current-buffer to
8197 apply to both the filter and the non-filter branches.
8198
88df7221
DN
81992010-04-10 Dan Nicolaescu <dann@ics.uci.edu>
8200
8201 * s/msdos.h (UNEXEC): New definition.
8202
5634ff85
YM
82032010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8204
6eff5c3d
YM
8205 * dispextern.h (TRY_WINDOW_CHECK_MARGINS)
8206 (TRY_WINDOW_IGNORE_FONTS_CHANGE): New defines.
8207
8208 * xdisp.c (try_window): Change arg from CHECK_MARGINS to FLAGS.
8209 Don't abort with fonts change if TRY_WINDOW_IGNORE_FONTS_CHANGE is
8210 set in FLAGS. Callers with non-zero CHECK_MARGINS changed to use
8211 TRY_WINDOW_CHECK_MARGINS.
8212
8213 * xfns.c (Fx_show_tip): Undo last change. Call try_window with
5b253e9c
YM
8214 TRY_WINDOW_IGNORE_FONTS_CHANGE (Bug#2423). Subtract last glyph's
8215 width only when it is for padding.
5634ff85 8216
b13aef54
J
82172010-04-09 Jan Djärv <jan.h.d@swipnet.se>
8218
8219 * xfns.c (Fx_show_tip): Call try_window in a loop until
8220 fonts_changed_p is zero (Bug#2423).
8221
21d28484
EZ
82222010-04-08 Eli Zaretskii <eliz@gnu.org>
8223
8224 * xdisp.c (set_cursor_from_row): Don't dereference glyphs beyond
8225 the end of TEXT_AREA. (Bug#5856)
8226
0269ef77
JD
82272010-04-08 Jan Djärv <jan.h.d@swipnet.se>
8228
8229 * xsettings.c (XSETTINGS_FONT_NAME): Move XSETTINGS_FONT_NAME out of
8230 HAVE_GCONF.
8231
5930fe97
EZ
82322010-04-08 Eli Zaretskii <eliz@gnu.org>
8233
8234 * bidi.c (bidi_resolve_weak): Use prev.type_after_w1, instead of
8235 prev.orig_type, for resolving type of NSM. (Bug#5858)
8236
99852628
JD
82372010-04-08 Jan Djärv <jan.h.d@swipnet.se>
8238
8239 * xsettings.c (current_font, SYSTEM_FONT, XSETTINGS_FONT_NAME): New.
8240 (parse_xft_settings): Also check for XSETTINGS_FONT_NAME and save that
8241 in current_font.
8242 (init_gconf): Read value of SYSTEM_FONT and save it in current_font.
50426a04
JB
8243 (Ffont_get_system_normal_font, xsettings_get_system_normal_font):
8244 New functions.
8245 (syms_of_xsettings): Initialize current_font.
8246 defsubr Sfont_get_system_normal_font.
99852628 8247
686b968e
JB
8248 * xsettings.h (Ffont_get_system_normal_font)
8249 (xsettings_get_system_normal_font): Declare.
99852628
JD
8250
8251 * xfns.c (extern xlwmenu_default_font): Remove.
8252 (Fx_create_frame): Remove setting of xlwmenu_default_font, moved
8253 to xlwmenu.c.
8254
8255 * menu.c (digest_single_submenu): If USE_LUCID and HAVE_XFT, encode
8256 menu items in UTF-8.
8257
8258 * xmenu.c: include xsettings.h and xlwmenu.h if USE_LUCID.
8259 (apply_systemfont_to_menu): New function.
bba3e508
SM
8260 (set_frame_menubar, create_and_show_popup_menu):
8261 Call apply_systemfont_to_menu.
99852628 8262
7fc874c4
J
82632010-04-07 Jan Djärv <jan.h.d@swipnet.se>
8264
8265 * frame.h (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Don't use
8266 FRAME_LINE_TO_PIXEL_Y.
8267
8268 * xterm.c (x_set_window_size_1): Don't add border_width/height to
8269 pixelwidth/height.
8270
863bf481
DN
82712010-04-07 Dan Nicolaescu <dann@ics.uci.edu>
8272
5e5a3b92
DN
8273 Simplify code for HP machines.
8274 * m/hp800.h (LOAD_AVE_TYPE, LOAD_AVE_CVT, NO_REMAP): Do not define
8275 for GNU_LINUX, not needed.
8276 (UNEXEC, NEED_BSDTTY): Move definitions...
8277 * s/hpux10-20.h (UNEXEC, NEED_BSDTTY): ... here.
8278
863bf481
DN
8279 * m/iris4d.h (UNEXEC): Move definition ...
8280 * s/irix6-5.h (UNEXEC): ... here.
8281
3e6bec3b
JD
82822010-04-04 Jan Djärv <jan.h.d@swipnet.se>
8283
8284 * xfns.c (set_machine_and_pid_properties): New function.
8285 (Fx_create_frame): Call set_machine_and_pid_properties.
8286
2912322b
SM
82872010-04-03 Eli Zaretskii <eliz@gnu.org>
8288
bba3e508
SM
8289 * bidi.c (bidi_resolve_explicit, bidi_level_of_next_char):
8290 Check bidi_it->bytepos against ZV_BYTE instead of bidi_it->ch against
1502b819
EZ
8291 BIDI_EOB. Fixes infloop with vertical cursor motion at ZV.
8292
2912322b
SM
8293 * w32fns.c (x_create_tip_frame): Copy `parms' before we modify it
8294 in this function. (Bug#5703)
8295
82962010-04-03 Chong Yidong <cyd@stupidchicken.com>
8297
8298 * nsterm.h: Fix last change.
8299
c435b432
DN
83002010-04-03 Dan Nicolaescu <dann@ics.uci.edu>
8301
a568f507
DN
8302 * m/intel386.h (NO_REMAP): Move definition ...
8303 * s/msdos.h (NO_REMAP): ... here.
8304
4cd9f6c2
DN
8305 * m/vax.h (CRT0_DUMMIES): Remove, unused.
8306
c435b432
DN
8307 * ecrt0.c: Remove MSDOS, m68k and __sparc__ conditionals, file not
8308 used on those platforms.
8309
42a2c622
DN
83102010-04-02 Dan Nicolaescu <dann@ics.uci.edu>
8311
8312 Remove extern errno declarations.
8313 * xterm.c:
8314 * xrdb.c:
8315 * w32term.c:
8316 * unexec.c:
8317 * unexaix.c:
8318 * sysdep.c:
8319 * process.c:
8320 * lread.c:
8321 * keyboard.c:
8322 * floatfns.c:
8323 * filelock.c:
8324 * fileio.c:
8325 * emacs.c (main):
8326 * ecrt0.c:
8327 * dispnew.c:
8328 * callproc.c:
8329 * buffer.c: Remove errno extern declarations.
8330 * s/netbsd.h (NEED_ERRNO): Remove.
8331
8224f93d
DN
83322010-04-01 Dan Nicolaescu <dann@ics.uci.edu>
8333
8334 Remove all uses of LIBX11_SYSTEM.
8335 * Makefile.in (LIBX11_SYSTEM): Remove.
8336 * s/msdos.h (LIBX11_SYSTEM): Do not define, define LIBS_SYSTEM
8337 instead.
8338
814062c7
EZ
83392010-04-01 Eli Zaretskii <eliz@gnu.org>
8340
ed68db4d
EZ
8341 Remove support for DJGPP v1.x (bug#5813).
8342
8343 * w16select.c (__dpmi_int): Remove DJGPP v1.x compatibility.
8224f93d
DN
8344 * s/msdos.h:
8345 * unexec.c (make_hdr, copy_text_and_data):
8346 * sysdep.c (wait_for_termination, sys_subshell):
ed68db4d 8347 * msdos.c (dos_set_window_size, msdos_set_cursor_shape)
52f4d8d5
EZ
8348 (IT_set_terminal_modes, __write, _rename, gethostname)
8349 (gettimeofday, alarm, fork, kill, dos_ttraw, dos_ttcooked)
8350 (run_msdos_command, abort): Remove DJGPP v1.x code and tests of
8351 the value of __DJGPP__.
ed68db4d
EZ
8352 (nice, pause, sigsetmask, sigblock): Remove DJGPP v1.x
8353 compatibility code.
8224f93d
DN
8354 * lread.c:
8355 * gmalloc.c (memalign):
8356 * fileio.c (Fcopy_file, check_executable, Ffile_modes):
8357 * emacs.c (main):
8358 * dosfns.c (init_dosfns):
ed68db4d
EZ
8359 * dired.c (file_name_completion_stat): Remove tests of __DJGPP__.
8360
52f4d8d5
EZ
83612010-04-01 Eli Zaretskii <eliz@gnu.org>
8362
814062c7
EZ
8363 * xdisp.c (set_cursor_from_row): Fix cursor positioning when the
8364 string with `cursor' property comes from an `after-string'
8365 overlay. (Bug#5816)
8366
0dc2e11d
GM
83672010-04-01 Glenn Morris <rgm@gnu.org>
8368
8369 * Makefile.in (LIBTIFF, LIBJPEG, LIBPNG, LIBGIF, LIBXPM, XFT_LIBS):
8370 Define as Makefile variables.
8371 (LIBX): Use above variables rather than directly using autoconf.
8372
1d29df59
DN
83732010-03-31 Dan Nicolaescu <dann@ics.uci.edu>
8374
8375 Clean up BSD_SYSTEM use.
8376 * xterm.c:
8377 * process.c:
8378 * emacs.c: Use HAVE_SYS_IOCTL_H instead of BSD_SYSTEM as a guard
8379 for including <sys/ioctl.h>.
8380 * sysdep.c (wait_without_blocking): Remove BSD_SYSTEM case, this
8381 code is only used for MSDOS.
8382
1546c559
JL
83832010-03-31 Juri Linkov <juri@jurta.org>
8384
8385 * image.c: Add `Qextension_data'.
8386 (syms_of_image): Initialize and staticpro `Qextension_data'.
8387 (Fimage_metadata): Rename from `Fimage_extension_data'.
8388 (gif_load): Put GIF extension data to the property
8389 `Qextension_data'.
8390
6521c534
CY
83912010-03-31 Chong Yidong <cyd@stupidchicken.com>
8392
8393 * nsfns.m (ns_set_doc_edited): Remove unused arg OLDVAL.
8394 * nsterm.h: Fix prototype.
8395
52c30783
EZ
83962010-03-31 Eli Zaretskii <eliz@gnu.org>
8397
8398 * xdisp.c (highlight_trailing_whitespace): Support highlight of
8399 trailing whitespace in right-to-left rows.
8400
855a0da7
SM
84012010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8402
8403 Get rid of the direct_output optimizations.
8404 * keyboard.c (nonundocount): Remove extern declaration.
8405 (command_loop_1): Remove brittle optimisation for cheap and
8406 common operations.
8407 * xdisp.c (redisplay_internal): Don't bother checking
8408 redisplay_performed_directly_p any more.
8409 * sysdep.c (init_sys_modes): Don't call direct_output_forward_char
8410 any more.
8411 * dispnew.c (redisplay_performed_directly_p)
8412 (direct_output_for_insert, direct_output_forward_char):
8413 * dispextern.h (redisplay_performed_directly_p)
8414 (direct_output_for_insert, direct_output_forward_char): Remove.
8415 * cmds.c (nonundocount): Make it static.
8416
85738751 84172010-03-31 Bernhard Herzog <bh@intevation.de> (tiny change)
a6d676d9
CY
8418
8419 * menu.c (Fx_popup_menu): Use last_event_timestamp (Bug#4930).
8420
85738751 84212010-03-31 Jan Djärv <jan.h.d@swipnet.se>
67fee863
JD
8422
8423 * xdisp.c (note_mouse_highlight): Don't do highlight if pointer is
8424 invisible (Bug#5766).
8425
85738751 84262010-03-31 Adrian Robert <adrian.b.robert@gmail.com>
9ae6e189 8427
855a0da7
SM
8428 * xdisp.c (x_consider_frame_title, update_window_cursor):
8429 Remove HAVE_NS conditionals.
194d44e7 8430 (prepare_menu_bars) [HAVE_NS]: Call ns_set_doc_edited.
9ae6e189
CY
8431
8432 * nsfns.m (x_implicitly_set_name): If frame-title-format is t, use
8433 filename for the title.
8434 (ns_set_doc_edited): Do nothing if the selected window is a
8435 minibuffer window.
8436
8437 * nsterm.h: Add prototypes for ns_set_name_as_filename and
8438 ns_set_doc_edited.
8439
8440 * nsterm.m: Remove unneeded prototype.
8441
85738751 84422010-03-31 Glenn Morris <rgm@gnu.org>
25c72475
GM
8443
8444 * Makefile.in (SOME_MACHINE_OBJECTS): Ensure dbus stuff is always
8445 in the DOC file. (Bug#5336)
8446
85738751 84472010-03-31 Chong Yidong <cyd@stupidchicken.com>
f79a01db
CY
8448
8449 * xdisp.c (pos_visible_p): Revert 2008-01-25 change (Bug#5730).
8450
75d1428c
SM
84512010-03-31 Stefan Monnier <monnier@iro.umontreal.ca>
8452
8453 * window.c (keys_of_window): Remove redundant/overridden bindings.
8454
82043cfb
EZ
84552010-03-30 Eli Zaretskii <eliz@gnu.org>
8456
8457 * xdisp.c (BUFFER_POS_REACHED_P, move_it_in_display_line_to):
8458 Restore original behavior when the iterator is not bidi_p.
8459
b5dd0ae7
DN
84602010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
8461
8462 * xdisp.c (syms_of_xdisp): Use intern_c_string instead of intern.
8463
bd924a5d
EZ
84642010-03-30 Eli Zaretskii <eliz@gnu.org>
8465
8466 * bidi.c (bidi_cache_iterator_state): Invalidate the cache if we
8467 are outside the range of cached character positions.
8468
3580374b
JB
84692010-03-30 Juanma Barranquero <lekktu@gmail.com>
8470
8471 * makefile.w32-in ($(BLD)/bidi.$(O)): Add dependency on w32gui.h.
8472
a7b02820
EZ
84732010-03-30 Eli Zaretskii <eliz@gnu.org>
8474
8475 Initial support for bidirectional editing.
8476
8477 * Makefile.in (obj): Include bidi.o.
8478 (bidi.o): New target.
8479
8480 * makefile.w32-in (OBJ1): Add $(BLD)/bidi.$(O).
8481 ($(BLD)/bidi.$(O)): New target.
8482
8483 * bidi.c: New file.
8484
8485 * buffer.h (struct buffer): New members bidi_display_reordering
8486 and bidi_paragraph_direction.
8487
8488 * buffer.c (init_buffer_once): Initialize bidi_display_reordering
8489 and bidi_paragraph_direction.
8490 (syms_of_buffer): Declare Lisp variables bidi-display-reordering
8491 and bidi-paragraph-direction.
8492 (Fbuffer_swap_text): Swap the values of
8493 bidi_display_reordering and bidi_paragraph_direction.
8494
8495 * dispextern.h (BIDI_MAXLEVEL, BIDI_AT_BASE_LEVEL): New macros.
8496 (bidi_type_t, bidi_dir_t): New types.
8497 (bidi_saved_info, bidi_stack, bidi_it): New structures.
8498 (struct it): New members bidi_p, bidi_it, paragraph_embedding,
8499 prev_stop, base_level_stop, and eol_pos.
8500 (bidi_init_it, bidi_get_next_char_visually): New prototypes.
8501 (IT_STACK_SIZE): Enlarge to 5.
8502 (struct glyph_row): New member reversed_p.
8503 <string_buffer_position>: Update prototype.
8504 (PRODUCE_GLYPHS): Set the reversed_p flag in the iterator's
8505 glyph_row if bidi_it.paragraph_dir == R2L.
8506 (struct glyph): New members resolved_level and bidi_type.
8507
8508 * dispnew.c (direct_output_forward_char): Give up if we need bidi
8509 processing or buffer's direction is right-to-left.
8510 (prepare_desired_row): Preserve the reversed_p flag.
8511 (row_equal_p): Compare the reversed_p attributes as well.
8512
bba3e508
SM
8513 * xdisp.c (init_iterator): Initialize it->bidi_p.
8514 Call bidi_init_it and set it->paragraph_embedding from the current
a7b02820
EZ
8515 buffer's value of bidi_paragraph_direction.
8516 (reseat_1): Initialize bidi_it.first_elt.
8517 (set_iterator_to_next, next_element_from_buffer): Use the value of
8518 paragraph_embedding to determine the paragraph direction.
8519 (set_iterator_to_next): Under bidi reordering, call
8520 bidi_get_next_char_visually. Call bidi_paragraph_init if the
8521 new_paragraph flag is set in the bidi iterator.
8522 (next_element_from_buffer): If bidi_it.first_elt is set,
8523 initialize paragraph direction and find the first character to
8524 display in the visual order. If reseated to a middle of a line,
bba3e508
SM
8525 prime the bidi iterator starting at the line's beginning.
8526 Handle the situation where we overstepped stop_charpos due to
a7b02820
EZ
8527 non-linearity of the bidi iteration. Likewise for when we back up
8528 beyond the previous stop_charpos. When moving across stop_charpos,
8529 record it in prev_stop.
8530 (display_line): Set row->end and it->start for the next row to the
8531 next character in logical order. Always extend reversed_p rows to
8532 the end of line, even if they end at ZV. Copy the reversed_p flag
8533 to the next glyph row. Keep calling set_cursor_from_row for
8534 bidi-reordered rows even if we already have a possible candidate
8535 for cursor position. Set row_end after all the row's glyphs have
8536 been produced, by looping over the glyphs. Record the position
8537 after EOL in it->eol_pos, and use it to set end_pos of the last
8538 row produced for a continued line.
8539 <Qright_to_left, Qleft_to_right>: New variables.
8540 (syms_of_xdisp): Initialize and staticpro them.
8541 (string_buffer_position_lim): New function.
8542 (string_buffer_position): Most of code moved to
8543 string_buffer_position_lim. Last argument and return value are
8544 now EMACS_INT; all callers changed.
8545 (set_cursor_from_row): Rewritten to support bidirectional text and
8546 reversed glyph rows.
bba3e508
SM
8547 (text_outside_line_unchanged_p, try_window_id):
8548 Disable optimizations if we are reordering bidirectional text and the
a7b02820
EZ
8549 paragraph direction can be affected by the change.
8550 (append_glyph, append_composite_glyph)
8551 (produce_image_glyph, append_stretch_glyph): Set the
8552 resolved_level and bidi_type members of each glyph.
8553 (append_glyph): If the glyph row is reversed, prepend the glyph
8554 rather than appending it.
8555 (handle_stop_backwards): New function.
8556 (reseat_1, pop_it, push_it): Set prev_stop and base_level_stop.
8557 (reseat): call handle_stop_backwards to recompute prev_stop and
8558 base_level_stop for the new position.
8559 (handle_invisible_prop): Under bidi iteration, skip invisible text
8560 using bidi_get_next_char_visually. If we are `reseat'ed, init the
8561 paragraph direction. Update IT->prev_stop after skipping
8562 invisible text.
8563 (move_it_in_display_line_to): New variables prev_method
8564 and prev_pos. Compare for strict equality in
8565 BUFFER_POS_REACHED_P.
8566 (try_cursor_movement): Examine all the candidate rows that occlude
8567 point, to return the best match. If rows are bidi-reordered
8568 and point moved backwards, back up to the row that is not a
8569 continuation line, and start looking for a suitable row from
8570 there.
8571
8572 * term.c (append_glyph): Reverse glyphs by pre-pending them,
8573 rather than appending, if the glyph_row's reversed_p flag is set.
8574 Set the resolved_level and bidi_type members of each glyph.
8575
8576 * .gdbinit (pbiditype): New command.
8577 (pgx): Use it to display bidi level and type of the glyph.
8578 (pitx): Display some bidi information about the iterator.
8579 (prowlims, pmtxrows): New commands.
8580
32a8894e
DN
85812010-03-30 Dan Nicolaescu <dann@ics.uci.edu>
8582
8583 Remove all uses of C_DEBUG_SWITCH and LIBS_DEBUG.
8584 * s/usg5-4.h (LIBS_DEBUG):
8585 * s/irix6-5.h (C_DEBUG_SWITCH):
8586 * s/gnu-linux.h (LIBS_DEBUG):
8587 * s/darwin.h (LIBS_DEBUG):
8588 * s/bsd-common.h (LIBS_DEBUG):
8589 * s/aix4-2.h (LIBS_DEBUG, C_DEBUG_SWITCH):
8590 * m/iris4d.h (LIBS_DEBUG):
8591 * m/hp800.h (LIBS_DEBUG): Remove definitions.
8592
8593 * Makefile.in (LIBES): Remove reference to LIBS_DEBUG.
8594 (LIBS_DEBUG): Remove definition.
8595
649dbf36
CY
85962010-03-27 Chong Yidong <cyd@stupidchicken.com>
8597
8598 * process.c (Fmake_network_process): Don't apply Bug#5173 fix for
8599 Windows.
8600
cad4261f
YM
86012010-03-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8602
8603 * process.c (Fmake_network_process): Don't call turn_on_atimers around
8604 `connect' (Bug#5723).
8605
cd591dbc
HE
86062010-03-25 Helmut Eller <eller.helmut@gmail.com>
8607
8608 * process.c (Fmake_network_process): Call `select' for interrupted
8609 `connect' rather than creating new socket (Bug#5173).
8610
e867cb5d 86112010-03-24 Jan Djärv <jan.h.d@swipnet.se>
93318cbd
JD
8612
8613 * frame.c (x_get_arg): Handle RES_TYPE_BOOLEAN_NUMBER (bug #5736).
8614
8615 * xfns.c (Fx_create_frame): Make menuBar a RES_TYPE_BOOLEAN_NUMBER.
8616
8617 * dispextern.h (resource_types): RES_TYPE_BOOLEAN_NUMBER is new.
8618
e867cb5d 86192010-03-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ad13a3ee
YM
8620
8621 * xfns.c (Fx_create_frame) [USE_LUCID]: Add BLOCK_INPUT around
8622 XLoadQueryFont.
8623
e867cb5d 86242010-03-24 Kenichi Handa <handa@m17n.org>
fbdc1721
KH
8625
8626 * coding.c (decode_coding_ccl): Fix previous change for the
8627 multibyte case.
fb608df3
KH
8628 (encode_coding_ccl): Don't setup ccl program here. Fix for the
8629 case that the output buffer is fullfilled.
8630 (encode_coding): Setup ccl program here.
fbdc1721 8631
5845f0ed
DN
86322010-03-23 Dan Nicolaescu <dann@ics.uci.edu>
8633
814fb708
DN
8634 * s/gnu-linux.h (LIBS_SYSTEM): Remove, same as default.
8635
5845f0ed
DN
8636 Simplify LIBS_MACHINE definitions.
8637 * m/hp800.h (LIBS_MACHINE): Remove, same as default.
8638 * m/iris4d.h (LIBS_MACHINE): Likewise.
8639 * m/ibmrs6000.h (LIBS_MACHINE): Rename to LIBS_SYSTEM and move ...
8640 * s/aix4-2.h (LIBS_SYSTEM): ... here.
38e3487c 8641 * s/netbsd.h: Remove commented out code.
5845f0ed 8642
b7064064
DN
86432010-03-22 Dan Nicolaescu <dann@ics.uci.edu>
8644
df7734b2
DN
8645 Remove dead code dealing with POSIX_SIGNALS.
8646 * atimer.c (set_alarm): Remove dead code, all USG systems define
8647 POSIX_SIGNALS.
8648 * data.c (arith_error): Likewise.
8649 * keyboard.c (input_available_signal, handle_user_signal)
8650 (interrupt_signal): Likewise.
8651 * process.c (sigchld_handler): Likewise.
8652 (create_process): Remove if 0 code. Remove HPUX conditional when
8653 !defined (POSIX_SIGNALS), it cannot be true.
8654 * syssignal.h: Remove USG5_4 and USG conditionals when
8655 !POSIX_SIGNALS, they cannot be true.
8656
b7064064
DN
8657 * keyboard.c (Fset_input_interrupt_mode): Remove code depending on
8658 NO_SOCK_SIGIO, not used anymore.
8659
55da5ee3
DN
86602010-03-21 Dan Nicolaescu <dann@ics.uci.edu>
8661
0be96e3a
DN
8662 * m/vax.h (BSD_SYSTEM, BSD4_2): Remove conditionals, we only
8663 support vax on BSDs.
8664
55da5ee3
DN
8665 * m/ibmrs6000.h (ORDINARY_LINK): Move definition ...
8666 * s/aix4-2.h (ORDINARY_LINK): ... here.
8667
c0282183
AS
86682010-03-21 Andreas Schwab <schwab@linux-m68k.org>
8669
82c3d67a
AS
8670 * Makefile.in (abs_builddir): Define.
8671 (bootstrap_exe): Use it.
8672 (VPATH): Use $(srcdir) instead of @srcdir@.
c0282183 8673
3613edce
SM
86742010-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8675
8676 * Makefile.in (bootstrap_exe): Use an absolute name.
8677
7f110ddc
DN
86782010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
8679
22e87574
DN
8680 Remove support for old GNU/Linux using libc version 5.
8681 * m/alpha.h (LINUX_SBRK_BUG): Remove definition.
8682 * emacs.c (main): Remove code depending on LINUX_SBRK_BUG.
8683
05a670e6
DN
8684 Consolidate redundant definitions in s/bsd-common.h.
8685 * s/bsd-common.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8686 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8687 (LDAV_SYMBOL, KERNEL_FILE): Define (or undefine) here instead of
8688 doing it in all files that include this one.
8689 * s/gnu.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8690 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8691 (LDAV_SYMBOL, KERNEL_FILE): Remove.
8692 * s/freebsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8693 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8694 (LDAV_SYMBOL, KERNEL_FILE): Remove.
8695 * s/netbsd.h (BSD4_2, TABDLY, TAB3, HAVE_TERMIOS, NO_TERMIO)
8696 (LIBS_DEBUG, SYSV_SYSTEM_DIR, UNEXEC, NARROWPROTO, BSD_PGRPS)
8697 (LDAV_SYMBOL, KERNEL_FILE): Remove.
8698
2968f561
DN
8699 Consolidate redundant definitions.
8700 * s/usg5-4.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not define,
8701 it's undefined in all files that include this one.
8702 (POSIX_SIGNALS): Define here instead of doing it in all files that
8703 include this one.
8704 * s/irix6-5.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
8705 (POSIX_SIGNALS): Do not define.
8706 * s/sol2-6.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
8707 (POSIX_SIGNALS): Do not define.
8708 * s/unixware.h (sigsetmask, PTY_TTY_NAME_SPRINTF): Do not undef.
8709 (POSIX_SIGNALS): Do not define.
8710
15d25dc0
DN
8711 Remove support for old UNIX System V systems.
8712 * s/unixware.h: Add the contents of s/usg-5-4-2.h.
8713 * s/usg-5-4-2.h: Remove.
8714
07e339e4
DN
8715 Remove support for Solaris on PPC and for old versions.
8716 * s/sol2-6.h: Add the contents of s/sol-2.3.h, s/sol-2.4.h, s/sol-2.5.h.
8717 (LD_SWITCH_SYSTEM, USE_MMAP_FOR_BUFFERS): Remove #defines/#undef
8718 that cancel each other.
8719 * s/sol2-3.h:
8720 * s/sol2-4.h:
8721 * s/sol2-5.h: Remove.
8722 * m/ibmrs6000.h: Remove code for USG5_4, this file is only used on AIX.
8723 (NO_REMAP): Remove, unused.
8724 (UNEXEC): Move definition ...
8725 * s/aix4-2.h (UNEXEC): ... here.
8726
7f110ddc
DN
8727 * s/openbsd.h: Remove support for non-ELF and for systems that do
8728 not support shared libraries.
8729 * s/netbsd.h:
8730 * s/freebsd.h: Likewise.
8731
605f35cd
DN
87322010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
8733
8734 Remove non-working support for lynxos 3.0.
8735 * s/lynxos.h: Remove file.
8736
8737 * unexec.c (unexec, adjust_lnnoptrs): Do not depend on
8738 COFF_BSD_SYMBOLS, nothing defines it anymore.
8739
aed71cf4
DN
87402010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
8741
8742 Remove obsolete uses of HAVE_SHM.
8743 * emacs.c (standard_args):
8744 (Fdump_emacs):
8745 (syms_of_emacs): Remove code depending on HAVE_SHM.
8746
8747 * alloc.c: Remove HAVE_SHM dependent definition.
8748
8749 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
8750
aded53ff
GM
87512010-03-18 Glenn Morris <rgm@gnu.org>
8752
17284745
GM
8753 * emacs.c (USAGE4): Hard-code bug address.
8754 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
8755 (bug_reporting_address): Remove.
8756 (main): Don't call bug_reporting_address.
8757
aded53ff
GM
8758 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
8759 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
8760
303500aa
CY
87612010-03-15 Chong Yidong <cyd@stupidchicken.com>
8762
8763 * xfns.c (Fx_create_frame):
8764 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
8765 on left.
8766
cef3058f
CY
87672010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
8768
8769 * editfns.c (Fformat): Account for string precision when computing
8770 field width (Bug#5710).
8771
a647d59d
CY
87722010-03-12 Chong Yidong <cyd@stupidchicken.com>
8773
4fa42018
CY
8774 * xfns.c (Fx_create_frame): Set default to Qright.
8775
a647d59d
CY
8776 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
8777 all window systems.
8778
6da23aaa
EZ
87792010-03-12 Eli Zaretskii <eliz@gnu.org>
8780
a96f6398 8781 These changes remove termcap.c from the build on Posix platforms.
83d02def 8782 * Makefile.in (termcapobj): Move termcap.o from here...
6da23aaa
EZ
8783 (MSDOS_OBJ): ...to here.
8784 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
8785 now identical to when LIBS_TERMCAP is defined.
8786
8787 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
8788
8789 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
8790
a96f6398 8791 * config.in: Regenerated. (See top-level ChangeLog.)
6da23aaa 8792
288f9fc0
CY
87932010-03-10 Chong Yidong <cyd@stupidchicken.com>
8794
8795 * Branch for 23.2.
8796
d48cd3f4
SM
87972010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
8798
8799 Cleanup setup of gl_state in various parts of the code.
8800 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
8801 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
8802 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
8803 (skip_chars):
8804 * regex.c (regex_compile): Use it.
8805 (re_compile_pattern): Don't set gl_state.current_syntax_table since
8806 it's now set in regex_compile when/if we need it.
8807
618db430
SM
88082010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
8809
c0335e02
SM
8810 Make it possible to C-g in a tight bytecode loop again (bug#5680).
8811 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
8812 (QUIT): Use it to consolidate code and remove redundancy.
8813 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
8814
254c06a8
SM
8815 * regex.c (regex_compile): Setup gl_state as well.
8816
618db430
SM
8817 * syntax.c (skip_chars): Setup gl_state (bug#3823).
8818 (in_classes): Use CONSP before XCAR/XCDR.
8819
233f0c9f
CY
88202010-03-03 Chong Yidong <cyd@stupidchicken.com>
8821
8822 * keymap.c (Fwhere_is_internal): Use Fequal to compare
8823 definitions, so that keyboard macros are correctly handled
8824 (Bug#5481).
8825
75f80e63
EZ
88262010-03-02 Eli Zaretskii <eliz@gnu.org>
8827
8828 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
8829 text that could be relocated inside the call to emacs_mule_char.
8830 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
8831 (CODING_DECODE_CHAR): Add a comment describing its purpose.
8832
dcfb9bc4
KH
88332010-03-02 Kenichi Handa <handa@m17n.org>
8834
fc9a17bc
KH
8835 * character.c (parse_str_as_multibyte): Fix handling of the
8836 multibyte form of raw-bytes.
8837 (str_as_multibyte): Likewise.
8838
dcfb9bc4
KH
8839 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
8840 form of raw-bytes.
8841
412c01b6
CY
88422010-02-28 Chong Yidong <cyd@stupidchicken.com>
8843
8844 * charset.c (load_charset_map_from_file)
8845 (load_charset_map_from_vector): Zero out allocated
8846 charset_map_entries before using them.
8847
df7e1ea0
AS
88482010-02-27 Andreas Schwab <schwab@linux-m68k.org>
8849
8850 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
8851
fe69a722
CY
88522010-02-27 Chong Yidong <cyd@stupidchicken.com>
8853
4ed28cf4
CY
8854 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
8855 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
fe69a722 8856
7379cfce
KH
88572010-02-26 Kenichi Handa <handa@m17n.org>
8858
f88cc4d6
KH
8859 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
8860
7379cfce
KH
8861 * xdisp.c (reseat_to_string): Fix previous change.
8862
cf2fdcfb
CY
88632010-02-26 David Reitter <david.reitter@gmail.com>
8864
8865 * nsfont.m (nsfont_draw): ns_antialias_text should be a
8866 Lisp_Object (Bug#4736).
8867
cc6c7c75
KH
88682010-02-25 Kenichi Handa <handa@m17n.org>
8869
8870 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
8871
32e737d7
JD
88722010-02-24 Jan Djärv <jan.h.d@swipnet.se>
8873
8874 * xterm.c (XTflash): Move declarations before statements.
8875
8876 * gtkutil.c (xg_get_gdk_display): Remove (unused).
8877 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
8878 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
8879 (xg_create_tool_bar): Remove unused variables.
8880 (x_wm_set_size_hint): Move declarations before statements.
a73f9c9d 8881 (xg_create_frame_widgets): Remove variable grav.
32e737d7 8882
676cae9f
CY
88832010-02-21 Chong Yidong <cyd@stupidchicken.com>
8884
8885 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
8886
886cc2b8
SM
88872010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
8888
8889 * term.c (fatal): Add a final \n if needed (bug#5596).
8890
ddb2d8e2
CY
88912010-02-18 Chong Yidong <cyd@stupidchicken.com>
8892
8893 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
8894
2a4f8d3d
GM
88952010-02-18 Glenn Morris <rgm@gnu.org>
8896
8897 * callint.c (Finteractive): Doc fix.
8898
ebaf11b6
KH
88992010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
8900
886cc2b8
SM
8901 * coding.c (record_conversion_result):
8902 Handle CODING_RESULT_INSUFFICIENT_DST.
ebaf11b6
KH
8903 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
8904 memory allocation error.
8905
d0396581
KH
89062010-02-17 Kenichi Handa <handa@m17n.org>
8907
886cc2b8
SM
8908 * coding.c (decode_coding_ccl): Don't setup ccl program here.
8909 Fix for the case that the output buffer is fullfilled.
d0396581
KH
8910 (decode_coding): Setup ccl program here. Keep looping when the
8911 decoder stopped because the output buffer is
8912 fullfilled (bug#5534).
8913
8914 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
8915
98599f74
JD
89162010-02-13 Jan Djärv <jan.h.d@swipnet.se>
8917
471e4f04 8918 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
98599f74 8919 bug #5571.
886cc2b8 8920 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
471e4f04 8921 overdrawn.
98599f74 8922
182659ae
JD
89232010-02-10 Jan Djärv <jan.h.d@swipnet.se>
8924
8925 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
8926 doing_interact here.
8927 (ice_connection_closed): New function.
8928 (x_session_check_input, smc_die_CB, ice_io_error_handler)
8929 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
8930 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
8931 returns I/O error.
8932 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
8933 bug #5512.
8934
9be32c4e 89352010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
14a225f9
CY
8936
8937 * nsfont.m (nsfont_open): The system's value for the font descent
8938 is negative, so round it down to avoid clipping.
8939
a2f3eb19
CY
89402010-02-06 Chong Yidong <cyd@stupidchicken.com>
8941
8942 * charset.c (load_charset_map_from_file)
8943 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
953d248c 8944 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
a2f3eb19 8945
3088147c
CY
89462010-02-05 Chong Yidong <cyd@stupidchicken.com>
8947
8948 * charset.c (load_charset_map_from_file): Allocate large
8949 charset_map_entries structure on the heap rather than the stack.
8950 (Bug#5526).
8951
b57d9029
KH
89522010-01-31 Kenichi Handa <handa@m17n.org>
8953
8954 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
115e4fd3 8955 size in NAME is invalid, return -1 (Bug#5396).
b57d9029 8956
c67d885b
CY
89572010-01-31 Chong Yidong <cyd@stupidchicken.com>
8958
8959 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
8960 <deactivated@gmail.com> (Bug#3605).
8961
8fab2362
CY
89622010-01-31 David De La Harpe Golden <david@harpegolden.net>
8963
8964 * fileio.c (Frename_file): Correctly rename symlinks to
8965 directories (Bug#5496).
8966
cb2a62f2
CY
89672010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
8968
8969 * nsterm.m (ns_ring_bell): Handle visible bell like X.
8970
944c7a26
AS
89712010-01-30 Andreas Schwab <schwab@linux-m68k.org>
8972
8973 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
8974
c024ac08
CY
89752010-01-29 Chong Yidong <cyd@stupidchicken.com>
8976
8977 * frame.c (DEFAULT_ROWS): Change default to 35.
8978
8979 * xfns.c (x_default_font_parameter): Change default XFT font to
8980 monospace-10 (Bug#3643).
8981
af93af83
EZ
89822010-01-29 Eli Zaretskii <eliz@gnu.org>
8983
8984 * w32inevt.c (key_event): Remove unnecessary comparison of
8985 event->uChar.AsciiChar with 128.
8986
ca0eb708
CY
89872010-01-28 Chong Yidong <cyd@stupidchicken.com>
8988
b242dbfc
CY
8989 * fileio.c (Frename_file): Fix last change (Bug#5487).
8990
ca0eb708
CY
8991 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
8992
8993 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
8994
45d45af5
JD
89952010-01-28 Jan Djärv <jan.h.d@swipnet.se>
8996
8997 * xfns.c (Fx_create_frame): Remove window size matching code from
8998 2010-01-15.
a73f9c9d 8999 (x_get_current_desktop, x_get_desktop_workarea): Remove.
45d45af5 9000
7e233730
JR
90012010-01-27 Jason Rumney <jasonr@gnu.org>
9002
9003 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
a292592c 9004 (key_event): Use unicode for characters 128 and higher (Bug#4567).
7e233730 9005
86e893e3
KH
90062010-01-27 Kenichi Handa <handa@m17n.org>
9007
9008 * regex.c (analyse_first): Fix setting of fastmap for unibyte
c8b96b2a 9009 pattern string (Bug#4209).
86e893e3 9010
8719abec
CY
90112010-01-27 David De La Harpe Golden <david@harpegolden.net>
9012
9013 * fileio.c (Frename_file): Call copy-directory and
9014 delete-directory for directories, in order to handle cross-device
9015 renaming (Bug#3353).
9016
844794c8
JD
90172010-01-25 Jan Djärv <jan.h.d@swipnet.se>
9018
aa3e13b5 9019 * xfns.c (Fx_create_frame): If frame height is too big, try
ac146f82 9020 sizes 24 and 10. Bug #3643.
844794c8 9021
bd4b5750
SM
90222010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
9023
8dc1adf6 9024 Try and fix bug#788, hopefully for real this time.
bd4b5750
SM
9025 * keymap.c (shadow_lookup): Add `remap' arg.
9026 (describe_map, describe_vector): Update calls to shadow_lookup.
9027 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
9028 `remapped' so this flag is applicable to `sequence'. Be careful to
8dc1adf6
SM
9029 perform remapping during shadow_lookup check of remapped_sequences.
9030
285d07e2
CY
90312010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
9032
9033 * image.c (png_load): Use png_sig_cmp instead of the obsolete
9034 png_check_sig, which has been removed in libpng 1.4.
9035
c6d09b8d
CY
90362010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
9037
9038 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
9039 lacks this header file).
9040
3d782998
YM
90412010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9042
9043 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
9044 as in Emacs 22.
9045
2aff7c53
YM
90462010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9047
9048 * lisp.h (make_pure_string): String pointer arg now points to const.
9049
9050 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
9051 args now point to const.
9052
74327f7a
EZ
90532010-01-22 Eli Zaretskii <eliz@gnu.org>
9054
9055 * lread.c (Fload): Don't treat files without .elc extension as
9056 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
9057 them. (bug#5303)
9058
4d1e6632
KH
90592010-01-20 Kenichi Handa <handa@m17n.org>
9060
9061 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
9062 treat the source as actual byte sequence.
9063
1fdede8f
AM
90642010-01-19 Alan Mackenzie <acm@muc.de>
9065
9066 Fix spurious before-change-functions invocation from (insert ?\n).
194d44e7 9067 * textprop.c (set_text_properties): Rename parameter
1fdede8f
AM
9068 `signal_after_change_p' to `coherent_change_p', and make the
9069 invocation of `modify_region' conditional on it.
9070
67477f30
JD
90712010-01-19 Jan Djärv <jan.h.d@swipnet.se>
9072
9073 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
9074 for debug purpose.
9075 (syms_of_xsettings): Declare xft-settings.
9076
244b023e
CY
90772010-01-18 Chong Yidong <cyd@stupidchicken.com>
9078
9079 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
9080
617364fe
CY
90812010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
9082
9083 * xterm.c (event_handler_gdk): Block input (Bug#5037).
9084
4fe22cdf
CY
90852010-01-16 Chong Yidong <cyd@stupidchicken.com>
9086
9087 * emacs.c (standard_args): Adjust arg priorities to reflect how
9088 they are processed in startup.el.
9089
e118d2be
AS
90902010-01-16 Andreas Schwab <schwab@linux-m68k.org>
9091
9092 * Makefile.in (lisp, shortlisp): Update.
9093
523ae620
SM
90942010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
9095
9096 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
9097 code, link the new kboard into all_kboard before running Lisp code,
9098 and protect the new terminal with GCPRO (Bug#5365).
9099 (x_term_init): Remove unused var `atom'.
9100 (x_delete_display, x_delete_terminal): Remove unused var `i'.
9101
f0d13888
JD
91022010-01-15 Jan Djärv <jan.h.d@swipnet.se>
9103
9104 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
9105 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
9106 to find out usable size of the desktop. Don't make frames larger than
ac146f82 9107 this. Bug #3643.
f0d13888 9108
cc320f07
KH
91092010-01-15 Kenichi Handa <handa@m17n.org>
9110
9111 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
9112
7ffdf101
CY
91132010-01-15 Chong Yidong <cyd@stupidchicken.com>
9114
9115 * nsterm.m (Qnone): Define.
9116
9117 * nsfns.m (Qnone): Move definition to nsterm.m.
9118
d12bd917
KH
91192010-01-14 Kenichi Handa <handa@m17n.org>
9120
9121 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
9122 systems.
9123
d9a7c140
KH
91242010-01-14 Kenichi Handa <handa@m17n.org>
9125
9126 Make auto-composition work on all buffers even if they are
9127 fundamental mode.
9128
9129 * composite.c (Vauto_composition_mode): New variable.
9130 (composition_compute_stop_pos): Check Vauto_composition_mode
9131 instead of Vauto_composition_function.
9132 (composition_adjust_point, Ffind_composition_internal): Likewise.
9133 (syms_of_composite): Declare Lisp variable
9134 "auto-composition-mode" here.
9135
63286bb2
CY
91362010-01-13 Chong Yidong <cyd@stupidchicken.com>
9137
9138 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
9139 during call to vendor-specific-keysyms (Bug#5365).
9140
c2623ee7
YM
91412010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9142
9143 * keyboard.c (input_available_signal) [SYNC_INPUT]:
9144 Call SIGNAL_THREAD_CHECK (Bug#5333).
9145
9146 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
9147 Call SIGNAL_THREAD_CHECK.
9148
0b5397c2
SM
91492010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
9150
9151 Try to fix bug#5314. This is probably not the final word, tho.
9152 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
9153 recent-auto-save-p as a side-effect.
9154 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
9155 * buffer.c (Fkill_buffer, reset_buffer):
9156 * editfns.c (Fsubst_char_in_region):
9157 * fileio.c (Finsert_file_contents, Fdo_auto_save)
9158 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
9159
dc954cb2
KH
91602010-01-13 Kenichi Handa <handa@m17n.org>
9161
9162 Display buffer name, etc. in mode line by composing correctly.
9163
9164 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
9165 STRING is not nil.
0b5397c2 9166 (display_mode_element): Adjust for the change of
dc954cb2
KH
9167 decode_mode_spec and display_line.
9168 (decode_mode_spec): Change arg MULTIBYTE to STRING.
9169 (display_string): Handle the case that STRING is non-null and
9170 LISP_STRING is not nil.
9171
0b5397c2
SM
9172 * xterm.c (x_draw_composite_glyph_string_foreground):
9173 Pay attention to s->face->overstrike.
dc954cb2
KH
9174
9175 * composite.c (composition_reseat_it): Don't check PT if STRING is
9176 non nil.
9177
4a00eaca
YM
91782010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9179
9180 * keyboard.c (read_char): Don't apply previous change when current
9181 buffer is unchanged by command execution.
9182
60abb287
JD
91832010-01-12 Jan Djärv <jan.h.d@swipnet.se>
9184
9185 * keyboard.c (read_char): Return after executing from special map.
9186
893db5bc
GM
91872010-01-12 Glenn Morris <rgm@gnu.org>
9188
9189 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
9190 bug-gnu-emacs rather than emacs-pretest-bug.
9191
4d03ece0
CY
91922010-01-11 Chong Yidong <cyd@stupidchicken.com>
9193
9194 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
9195 initializing the Lisp variables that depend on them.
9196
1df47e38
YM
91972010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9198
9199 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
9200 Clear areas that will not be updated after change of menu bar lines.
9201 Clear the menu bar window's current matrix when the window gets empty.
9202
2f1c6384
CY
92032010-01-09 Chong Yidong <cyd@stupidchicken.com>
9204
e398c61c
CY
9205 * intervals.h, textprop.c (extend_property_ranges): Return value
9206 and args changed. Discard properties that begin at or after the
9207 new end (Bug#5306).
9208
9209 * editfns.c (Fformat): Caller changed.
9210
e5a29a10
CY
9211 * nsterm.m (ns_set_default_prefs): Delete function.
9212 (syms_of_nsterm): Initialize ns_command_modifier,
9213 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
9214 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
9215
2f1c6384
CY
9216 * xdisp.c (pos_visible_p): Check for invisible text at the correct
9217 position (Bug#4040).
9218
d427a9fa
EZ
92192010-01-09 Eli Zaretskii <eliz@gnu.org>
9220
9221 * editfns.c (Ffloat_time): Doc fix.
9222
21b9df2f
JD
92232010-01-09 Jan Djärv <jan.h.d@swipnet.se>
9224
9225 * xfns.c (Fx_create_frame): Don't create frame larger than display
9226 by default bug#3643.
9227
4b00d3b1
YM
92282010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9229
9230 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
9231 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
9232 windows above internal border.
9233
9234 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
9235 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
9236 windows above internal border.
9237
9238 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
9239 tool bar windows specially.
9240
9241 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
9242
9243 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
9244 specially.
9245 (XTflash): Take account of menu bar height.
9246
9247 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
9248 specially.
9249
5075d853
JD
92502010-01-08 Jan Djärv <jan.h.d@swipnet.se>
9251
ac146f82 9252 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
5075d853
JD
9253 also be true before we can return early (bug #5339).
9254
474217c8
CY
92552010-01-06 David Reitter <david.reitter@gmail.com>
9256
9257 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
9258 (Fns_display_usable_bounds): Rewrite, computing bounds properly
9259 (Bug#3233).
9260
c0e6d47d
JD
92612010-01-06 Jan Djärv <jan.h.d@swipnet.se>
9262
d0cf45b7
JD
9263 * font.c (font_open_entity): Enable chache and call cached_font_ok
9264 for the driver if defined.
9265 (QCuser_spec): New symbol.
9266 (font_spec_from_name): Save name as user-spec.
9267 (font_load_for_lface): Keep user-spec instead of name.
9268 (font_open_by_name): Save name as user-spec.
9269 (syms_of_font): Initialize QCuser_spec.
b7f8e4f5 9270 (font_clear_prop): Clear name if it exists in font (bug#5157).
d0cf45b7
JD
9271
9272 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
9273 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
9274 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
9275
9276 * font.h (struct font_driver): Add cached_font_ok.
9277
c0e6d47d
JD
9278 * xterm.c (x_clear_frame): Queue draw for scroll bars.
9279
7c583cd8
JD
92802010-01-05 Jan Djärv <jan.h.d@swipnet.se>
9281
9282 * xterm.c (x_new_font): Move code for setting rows/cols before
9283 resizing ...
ac146f82 9284 (x_set_window_size): ... to here. Bug #2568.
7c583cd8
JD
9285
9286 * gtkutil.c (xg_clear_under_internal_border): New function.
0b5397c2
SM
9287 (xg_frame_resized, xg_frame_set_char_size):
9288 Call xg_clear_under_internal_border.
7c583cd8 9289 (xg_update_scrollbar_pos): Clear under old scroll bar position.
69e2f185 9290
03f77f0a
CY
92912010-01-05 Chong Yidong <cyd@stupidchicken.com>
9292
9293 * keyboard.c (read_key_sequence): Catch keyboard switch after
9294 making a new tty frame (Bug#5095).
9295
2a1ef5be
KH
92962010-01-05 Kenichi Handa <handa@m17n.org>
9297
9298 * fontset.c (fontset_find_font): Fix getting the frame pointer.
9299
e3eb1dae
SM
93002010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
9301
9302 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
9303 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
9304 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
9305
777013f2
MA
93062010-01-03 Michael Albinus <michael.albinus@gmx.de>
9307
9308 * dbusbind.c (xd_add_watch): Improve debug message.
9309 (xd_remove_watch): Improve debug message. If DATA is the session
9310 bus, unset D-Bus session environment.
9311 (Fdbus_init_bus): Pass the bus as argument to
9312 dbus_connection_set_watch_functions. (Bug#5283)
7c583cd8 9313
8932b1c2
CY
93142010-01-01 Chong Yidong <cyd@stupidchicken.com>
9315
87231e2c
CY
9316 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
9317
4801c5fa
CY
9318 * lread.c (syms_of_lread): Make it clearer that these are the
9319 names of loaded files (Bug#5068).
9320
8932b1c2
CY
9321 * eval.c (run_hook_with_args): Handle the case where the global
9322 value has the obsolete single-function form (Bug#5026).
9323
11e3c684
CY
93242009-12-27 Chong Yidong <cyd@stupidchicken.com>
9325
9326 * minibuf.c (Fall_completions): Minor optimization.
9327
5b28ce35
EZ
93282009-12-26 Eli Zaretskii <eliz@gnu.org>
9329
5ce6e4f4
JB
9330 * .gdbinit (pgx): Fix display of composite glyphs.
9331 Display cmp.from and cmp.to as well.
9332 (pitx): Fix last change.
5b28ce35 9333
bcffff46
KH
93342009-12-25 Kenichi Handa <handa@m17n.org>
9335
9336 * composite.h (composition_adjust_point): Update prototype.
9337
9338 * composite.c (composition_reseat_it): Don't make a composition
9339 spanning over point.
9340 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
9341 composable characters.
9342 (composition_adjust_point): New arg NEW_PT. Callers changed.
9343
9344 * keyboard.c (command_loop_1): Force redisplay if the last point
9345 was within a composition.
9346 (adjust_point_for_property): Don't adjust point for automatic
9347 composition when called after buffer modification.
9348
3f670e9a
EZ
93492009-12-19 Eli Zaretskii <eliz@gnu.org>
9350
5ce6e4f4
JB
9351 * .gdbinit (pitx): Don't use enum names, use their values.
9352 Remove reference to non-existing value GET_FROM_COMPOSITION.
be996d82
EZ
9353 (pgx): Don't use enum names, use their values.
9354 (pitmethod): New helper command.
9355 (pitx): Use it to display iteration method.
9356 (pgrowit): New command.
9357
ad903955
EZ
9358 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
9359
3f670e9a
EZ
9360 Update dependencies in Makefile.in.
9361
9362 * Makefile.in (alloc.o): Depend on termhooks.h.
9363 (atimer.o): Depend on blockinput.h.
9364 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
9365 and frame.h.
9366 (callint.o): Depend on systime.h, coding.h, and composite.h.
9367 (callproc.o): Depend on buffer.h.
9368 (casefiddle.o): Don't depend on charset.h.
9369 (casetab.o): Depend on character.h.
9370 (ccl.o): Depend on composite.h.
9371 (chartab.o): Depend on ccl.h.
9372 (cm.o): Depend on dispextern.h.
9373 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
9374 (coding.o): Don't depend on $(INTERVALS_H).
9375 (composite.o): Don't depend on dispextern.h explicitly (it's in
9376 $(INTERVALS_H)). Depend on ccl.h.
9377 (data.o): Depend on systime.h, coding.h, composite.h,
9378 dispextern.h, font.h, and ccl.h.
9379 (dired.o): Depend on composite.h.
9380 (dispnew.o): Depend on coding.h. Don't depend explicitly on
9381 composite.h (it's in $(INTERVALS_H)).
9382 (doc.o): Depend on systime.h, coding.h, and composite.h.
9383 (editfns.o): Don't depend explicitly on dispextern.h.
9384 (emacs.o): Depend on frame.h and coding.h.
9385 (eval.o): Depend on coding.h, composite.h, and xterm.h.
9386 (fileio.o): Depend on frame.h and commands.h. Don't depend
9387 explicitly on dispextern.h.
9388 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
9389 composite.h.
9390 (fns.o): Don't depend on termhooks.h.
9391 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
9392 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
9393 coding.h, $(INTERVALS_H), window.h, xterm.h.
9394 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
9395 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
9396 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
9397 fontset.h, ccl.h, and ftfont.h.
9398 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
9399 (gtkutil.o): Depend on dispextern.h and composite.h.
9400 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
9401 termhooks.h, and ccl.h.
9402 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
9403 (intervals.o): Depend on systime.h and coding.h.
9404 (keyboard.o): Depend on composite.h and coding.h.
9405 (keymap.o): Depend on coding.h and frame.h.
9406 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
9407 (macros.o): Depend on systime.h, coding.h, and composite.h.
9408 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
9409 and atimer.h.
9410 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
9411 dispextern.h explicitly.
0b5397c2
SM
9412 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
9413 Don't depend explicitly on dispextern.h and composite.h.
3f670e9a
EZ
9414 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
9415 (regex.o): Don't depend on charset.h.
9416 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
9417 (search.o): Don't depend explicitly on composite.h.
9418 (sound.o): Depend on atimer.h and systime.h.
9419 (syntax.o): Don't depend explicitly on composite.h.
9420 (sysdep.o): Depend on coding.h and composite.h.
9421 (term.o): Depend on xterm.h and buffer.h.
9422 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
9423 (textprop.o): Don't depend on dispextern.h explicitly.
9424 (undo.o): Depend on dispextern.h.
9425 (window.o): Depend on coding.h and termhooks.h. Don't depend on
9426 dispextern.h and composite.h explicitly.
9427 (xdisp.o): Depend on ccl.h.
9428 (xfaces.o): Depend on coding.h and ccl.h.
9429 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
9430 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
9431 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
9432 ftfont.h.
9433 (xgselect.o): New dependency.
9434 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
9435 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
9436 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
9437 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
9438 (xsmfns.o): Depend on frame.h and dispextern.h.
9439 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
9440 sysselect.h.
9441
7a6f7fea
AS
94422009-12-19 Andreas Schwab <schwab@linux-m68k.org>
9443
9444 * font.c (Fclear_font_cache): Pass correct cache argument to
9445 font_clear_cache.
9446
f4c21026
AS
94472009-12-16 Andreas Schwab <schwab@linux-m68k.org>
9448
9449 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
9450 twice.
9451
f7ab0997
CY
94522009-12-15 Chong Yidong <cyd@stupidchicken.com>
9453
9454 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
9455 calling file-remote-p. Reported by Jim Meyering.
9456
fa8e045a
MA
94572009-12-15 Michael Albinus <michael.albinus@gmx.de>
9458
9459 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
777013f2 9460 avoid compiler warnings. (Bug #5217)
fa8e045a 9461
a63dba42
KH
94622009-12-14 Kenichi Handa <handa@m17n.org>
9463
9464 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
9465 in 8-bit encoding.
9466
5ce6e4f4 94672009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
36acb2a7
JD
9468
9469 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
9470 tooltip windows.
9471
223e5fc6
JD
94722009-12-13 Jan Djärv <jan.h.d@swipnet.se>
9473
36acb2a7
JD
9474 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
9475 Xatom_net_window_type.
9476
9477 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
9478 Xatom_net_window_type.
9479
b8f00677
JD
9480 * xterm.c (my_log_handler): New function.
9481 (x_term_init): Set my_log_handler as log handler during gtk_init
5ce6e4f4 9482 so we can filter out buggy messages. (Bug #5120).
b8f00677 9483
e5f0bc9a
JD
9484 * xterm.c (xg_scroll_callback): Parameter list changed,
9485 use parameter GtkScrollType to determine scroll/line/page.
9486 Only allow dragging if a button < 4 is grabbed (bug #5177).
9487 (xg_end_scroll_callback): New function.
9488 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
9489 xg_create_scroll_bar.
9490
9491 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
9492 (scroll_end_callback): Remove.
9493 (xg_create_scroll_bar): Add parameter end_callback, bind it to
9494 button-release-event. Replace value-changed event with change-value,
c4cc8b9a 9495 bug #5177.
e5f0bc9a
JD
9496 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
9497 bug #5177.
9498
9499 * gtkutil.h (XG_LAST_SB_DATA): Remove.
9500 (xg_create_scroll_bar): Add GCallback end_callback.
9501
223e5fc6
JD
9502 * xftfont.c (QClcdfilter): New variable.
9503 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
9504 (syms_of_xftfont): Initialize QClcdfilter.
9505
3c055b77
JD
95062009-12-12 Jan Djärv <jan.h.d@swipnet.se>
9507
9508 * xsettings.c (struct xsettings): Add member seen.
9509 (parse_xft_settings): Update member seen with what we have read.
ba68c0b0 9510 Return non-zero if Xft-settings have been parsed, 0 otherwise.
3c055b77
JD
9511 (apply_xft_settings): Only update Xft settings with what member seen
9512 indicates as new.
9513
05fe33ff
EZ
95142009-12-12 Eli Zaretskii <eliz@gnu.org>
9515
c4cc8b9a 9516 * dispextern.h (struct text_pos): Use EMACS_INT.
05fe33ff
EZ
9517 (struct glyph): Use EMACS_INT for charpos.
9518 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
9519 region_beg_charpos, region_end_charpos,
9520 redisplay_end_trigger_charpos, and also for
9521 iterator_stack_entry.end_charpos and
9522 iterator_stack_entry.stop_charpos.
9523
e8d7886a
JD
95242009-12-12 Jan Djärv <jan.h.d@swipnet.se>
9525
5ce6e4f4 9526 * gtkutil.c (scroll_end_callback): New function (bug #5177).
e8d7886a
JD
9527 (xg_create_scroll_bar): Call scroll_end_callback on button release
9528 event (bug #5177).
9529 (xg_event_is_for_scrollbar): != replaced with ==.
9530
d0db2ec8
KH
95312009-12-12 Kenichi Handa <handa@m17n.org>
9532
9533 * ftfont.c (struct ftfont_info): New member matrix.
9534 (ftfont_open): Setup xftfont_info->matrix.
9535 (MFLTFontFT): New member matrix.
9536 (FLOOR, CEIL, ROUND): New macros.
9537 (ftfont_get_metrics): Handle matrix transformation.
9538 (ftfont_shape_by_flt): New arg matrix. Callers changed.
9539
9540 * xftfont.c (struct xftfont_info): New member matrix.
9541 (xftfont_open): Setup xftfont_info->matrix.
9542
95432009-12-10 Kenichi Handa <handa@m17n.org>
9544
9545 * xdisp.c (append_space_for_newline): Consider face-remapping.
9546
2cc7b62f
AS
95472009-12-09 Andreas Schwab <schwab@linux-m68k.org>
9548
b87dd913
AS
9549 * xsettings.c: Include "keyboard.h".
9550
eba5eb94
AS
9551 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
9552
2cc7b62f
AS
9553 Fix implicit function declarations.
9554 * cmds.c: Include "frame.h".
9555 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
9556 * frame.h: Move declaration of delete_frame outside of
9557 HAVE_WINDOW_SYSTEM.
9558
a4ef73c8
CY
95592009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
9560
9561 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
9562
9563 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
9564 GTK builds.
9565
944a300c
AS
95662009-12-07 Andreas Schwab <schwab@linux-m68k.org>
9567
9568 * unexelf.c (unexec): Don't search for .data twice.
9569
022eef62
CY
95702009-12-05 Chong Yidong <cyd@stupidchicken.com>
9571
426ac949
CY
9572 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
9573 if push failed.
9574 (handle_line_prefix): Set avoid_cursor_p here. Check return value
9575 of push_display_prop (Bug#5000).
9576
022eef62
CY
9577 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
9578 value of font_list_entities (Bug#5085).
9579
be95bee9
JB
95802009-12-04 Juanma Barranquero <lekktu@gmail.com>
9581
9582 Fix `string-to-number' to deal consistently with integers and floats.
9583 * lread.c (isfloat_string): New argument ignore_trailing to accept all
9584 trailing characters, not just whitespace.
9585 (read1): Pass new arg 0 to keep old behavior.
9586 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
9587 trailing chars, as it is already done for integers. Doc fixes.
9588 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
9589
24c2d7ce
EZ
95902009-12-04 Eli Zaretskii <eliz@gnu.org>
9591
0b5397c2
SM
9592 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
9593 Delete unused enumeration value.
24c2d7ce 9594
7e694795
EZ
95952009-12-03 Eli Zaretskii <eliz@gnu.org>
9596
9597 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
9598
84b31826
SM
95992009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
9600
9601 * process.c (Fmake_network_process): Fix up the tests for
9602 "connectionless socket", so they DTRT for seqpacket sockets as well.
9603
f00c449b
SM
96042009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
9605
9606 * process.c (Qseqpacket): New symbol.
9607 (HAVE_SEQPACKET): New macro.
9608 (Fmake_network_process): Accept new :type `seqpacket'.
9609 (init_process): Add `seqpacket' feature when applicable.
9610 (syms_of_process): Initialize Qseqpacket.
9611
8096a0ff
YM
96122009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9613
9614 * font.c (font_load_for_lface, font_open_by_name): Don't store name
9615 if entity is Qnil.
9616
3e0de07f
SM
96172009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
9618
9619 * print.c (print_preprocess): Preprocess the key_and_value table of
9620 hashtables, even tho they're "hidden" (bug#5082).
9621
abeafb2a
JD
96222009-11-29 Jan Djärv <jan.h.d@swipnet.se>
9623
9624 * frame.c (frame_make_pointer_invisible)
9625 (frame_make_pointer_visible): Declare f before statements.
9626
4bf47195
EZ
96272009-11-28 Eli Zaretskii <eliz@gnu.org>
9628
9629 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
9630 omitted dependencies on lisp.h.
9631
c525b3f2
JD
96322009-11-27 Jan Djärv <jan.h.d@swipnet.se>
9633
ece2d4ed
JD
9634 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
9635 is NULL.
9636
9637 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
9638
9639 * frame.c (frame_make_pointer_invisible)
3e0de07f 9640 (frame_make_pointer_visible): Just return if there isn't any selected
ece2d4ed
JD
9641 frame.
9642
c525b3f2
JD
9643 * search.c (simple_search): Remove warning by making *p const.
9644
2f00e299
DN
96452009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
9646
9647 * xdisp.c (power_letter): Remove duplicate const.
9648
084b049b
JD
96492009-11-25 Jan Djärv <jan.h.d@swipnet.se>
9650
a1fadc6f
JD
9651 * term.c (delete_tty): Remove check for last terminal (bug#4970).
9652
5ce6e4f4 9653 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
084b049b
JD
9654 defaults (bug #5025).
9655
28259cac
SM
96562009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
9657
9658 * insdel.c (adjust_markers_for_delete): Move it in the
9659 right direction! (bug#4803)
9660
e8e14166
YM
96612009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9662
9663 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
9664
9665 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
9666
86677b58
GM
96672009-11-24 Glenn Morris <rgm@gnu.org>
9668
9669 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
9670
581e51e8
JD
96712009-11-23 Jan Djärv <jan.h.d@swipnet.se>
9672
cfc86c7a
JD
9673 * Makefile.in: Must create deps for ecrt0.o in its rule.
9674
581e51e8
JD
9675 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
9676 because that is what Gtk+ font dialog understands.
9677
9678 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
9679 of Fcopy_sequence.
9680 (font_open_by_name): Put name given into QCname for font-object returned.
9681
9682 * frame.c (x_set_font): Save original font name as frame parameter
9683 font-parameter.
9684
9685 * xsettings.c (set_default_xft_settings): New function.
9686 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
9687 is found.
9688
8b264ecb
AS
96892009-11-22 Andreas Schwab <schwab@linux-m68k.org>
9690
9691 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
9692 searching backwards through multibyte buffer.
9693
872870b2
JD
96942009-11-21 Jan Djärv <jan.h.d@swipnet.se>
9695
9696 * xterm.c: #include xgselect.h.
9697 (x_initialize): Call xgselect_initialize.
9698
9699 * xsettings.c (something_changedCB): C++ comments => C comments.
9700 (init_gconf): Do not deal with any GLib file descriptors, xg_select
9701 does that now.
9702
9703 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
9704 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
9705 (scroll_bar_button_cb): Remove.
5ce6e4f4 9706 (create_menus): C++ comments => C comments. Don't bind grab-notify
872870b2
JD
9707 event.
9708 (xg_create_scroll_bar): Don't bind button-press-event and
9709 button-release-event.
9710
9711 * process.c: Include xgselect.h if defined (USE_GTK) ||
9712 defined (HAVE_GCONF).
9713 (wait_reading_process_output): Call xg_select for the same condition.
9714
9715 * xgselect.c (xg_select): New function to better integrate with
9716 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
9717
9718 * xgselect.h: New file, declare xg_select, xgselect_initialize.
9719
9720 * Makefile.in (XOBJ): Add xgselect.o.
9721
62a6e103
AS
97222009-11-21 Andreas Schwab <schwab@linux-m68k.org>
9723
0b5397c2
SM
9724 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
9725 Remove ignored second argument. All callers changed.
62a6e103
AS
9726 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
9727 (RE_STRING_CHAR_AND_LENGTH): Likewise.
9728 * xdisp.c (string_char_and_length): Likewise.
9729
b0ca0f33
DN
97302009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
9731
9732 * xterm.c (x_new_font):
9733 * print.c (print_object):
9734 * cmds.c (Fself_insert_command): Move declarations before statements.
9735
dd5a6279
CY
97362009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
9737
9738 * s/cygwin.h: Remove unneeded linker flags.
9739
4a8e097d
JD
97402009-11-20 Jan Djärv <jan.h.d@swipnet.se>
9741
0d1d0d26
JD
9742 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
9743
9744 * xsettings.h: Declare xsettings_get_system_font.
9745
9746 * xsettings.c (xsettings_get_system_font): New function.
9747 (init_gconf): No use initiating gconf unless we have Xft also.
9748 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
9749 HAVE_GCONF.
9750
4a8e097d
JD
9751 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
9752 add a blank entry so it doesn't collapse into nothing.
9753
8ab1650e
SM
97542009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9755
9756 * lread.c (Funintern): Comment out last change.
9757
82c602f0
RS
97582009-11-19 Richard Stallman <rms@gnu.org>
9759
9760 * lread.c (Funintern): Error if symbol is t or nil.
9761
87e32266
SM
97622009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
9763
9764 * insdel.c (make_gap_larger): Don't make as many assumptions about the
9765 representation of Lisp integers.
9766 Reported by MJ Chan <mjchan.inbox@gmail.com>.
9767
1b9ac145
AS
97682009-11-17 Andreas Schwab <schwab@linux-m68k.org>
9769
9770 * lisp.h: Remove declaration of Ffont_get_system_font.
9771 * xfns.c: Move include of "xsettings.h".
9772 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
9773
dfb3c4c6
JD
97742009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9775
87e32266
SM
9776 * xsettings.c (something_changedCB, Ffont_get_system_font):
9777 Check use_system_font.
dfb3c4c6
JD
9778 (syms_of_xsettings): DEFVAR font-use-system-font.
9779
9370c1d8
AS
97802009-11-17 Andreas Schwab <schwab@linux-m68k.org>
9781
25fe851a
AS
9782 * xfns.c (x_default_font_parameter): Remove dead assignment.
9783
9370c1d8
AS
9784 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
9785
637fa988
JD
97862009-11-17 Jan Djärv <jan.h.d@swipnet.se>
9787
87e32266 9788 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
21050de1 9789 not have FC_LCD_*. #define them if not there.
a6eb20d8 9790
87e32266 9791 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
a6eb20d8 9792
637fa988
JD
9793 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
9794
9795 * xterm.c (handle_one_xevent): Call xft_settings_event for
9796 ClientMessage, PropertyNotify and DestroyNotify.
9797 (x_term_init): If we have XFT, get DPI from Xft.dpi.
9798 Call xsettings_initialize.
9799
9800 * xftfont.c (xftfont_fix_match): New function.
9801 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
9802 Call xftfont_fix_match after XftFontMatch.
9803
9804 * xfont.c (xfont_driver): Initialize all members.
9805
87e32266
SM
9806 * xfns.c (x_default_font_parameter):
9807 Try font from Ffont_get_system_font.
637fa988
JD
9808 Do not get font from x_default_parameter if we got one from
9809 Ffont_get_system_font.
87e32266 9810 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
637fa988
JD
9811
9812 * w32font.c (w32font_driver): Initialize all members.
9813
9814 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
9815
9816 * lisp.h: Declare syms_of_xsettings.
9817
87e32266
SM
9818 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
9819 Handle CONFIG_CHANGED_EVENT.
637fa988
JD
9820
9821 * ftfont.c (ftfont_filter_properties): New function.
9822
9823 * frame.c (x_set_font): Remove unused variable lval.
9824
87e32266 9825 * font.h (struct font_driver): Add filter_properties.
637fa988
JD
9826
9827 * font.c (font_put_extra): Don't return if val is nil, it means
9828 boolean option is off.
9829 (font_parse_fcname): Collect all extra properties in extra_props
9830 and call filter_properties for all drivers with extra_props and
9831 font as parameter.
87e32266
SM
9832 (font_open_entity): Do not use cache, it does not pick up new
9833 fontconfig settings like hinting.
637fa988
JD
9834 (font_load_for_lface): If spec had a name in it, store it in entity.
9835
a73f9c9d 9836 * emacs.c (main): Call syms_of_xsettings.
637fa988
JD
9837
9838 * config.in: HAVE_GCONF is new.
9839
9840 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
9841 xsettings.o is new.
9842
5a942932
KH
98432009-11-17 Kenichi Handa <handa@m17n.org>
9844
9845 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
9846 back to the default font in case that no suitable font is found.
9847
b7c7a4d1
SM
98482009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
9849
9850 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
9851 Suggested by Chad Brown <yandros@mit.edu>.
9852 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
9853
072f1e39
JD
98542009-11-16 Jan Djärv <jan.h.d@swipnet.se>
9855
9856 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
9857
5d1e70a2
AS
98582009-11-14 Andreas Schwab <schwab@linux-m68k.org>
9859
87e32266 9860 * Makefile.in: Ignore errors from mkdir when creating deps directory.
5d1e70a2 9861
a53cfbe5
JD
98622009-11-14 Jan Djärv <jan.h.d@swipnet.se>
9863
473a99b7
JD
9864 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
9865 has a parent.
9866
a53cfbe5 9867 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
5ce6e4f4 9868 dependency files in deps/. Include those files into Makefile.
a53cfbe5
JD
9869
9870 * config.in: Generated (AUTO_DEPEND).
9871
f04bb9b2
MA
98722009-11-13 Michael Albinus <michael.albinus@gmx.de>
9873
b7c7a4d1 9874 * dbusbind.c (Vdbus_registered_objects_table): Rename from
f04bb9b2
MA
9875 Vdbus_registered_functions_table, because it contains also
9876 properties. Fix docstring.
b7c7a4d1 9877 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
f04bb9b2 9878
8f11f7ec
SM
98792009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
9880
9881 * alloc.c (mark_object): Don't reprocess marked strings.
9882 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
9883 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
9884
8a605fe8
KH
98852009-11-13 Kenichi Handa <handa@m17n.org>
9886
8f11f7ec 9887 * category.c (word_boundary_p): Adjust for the change of the
8a605fe8
KH
9888 semantics of Vword_combining_categories.
9889 (Vword_combining_categories): Describe the slight change of the
9890 semantics.
9891
241c4680
EZ
98922009-11-13 Eli Zaretskii <eliz@gnu.org>
9893
9894 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
9895
9896 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
9897
5d58e44c
SM
98982009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
9899
9900 * xdisp.c (syms_of_xdisp): Fix typo in last change.
9901
5e13f9d3
JB
99022009-11-12 Juanma Barranquero <lekktu@gmail.com>
9903
9904 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
9905
cf54c754
DR
99062009-11-11 David Reitter <david.reitter@gmail.com>
9907
9908 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
9909 variables to fix 2009-11-09 change.
9910
a4ada374
DN
99112009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
9912
91433552
DN
9913 * process.c (ifflag_def): Make flag_sym constant.
9914 (Fnetwork_interface_info): Use a constant pointer.
9915 (ifflag_table):
9916 * xfns.c (cursor_bits):
9917 * xdisp.c (power_letter):
9918 * termcap.c (speeds, esctab):
9919 * sysdep.c (baud_convert):
9920 * keyboard.c (lispy_accent_codes, modifier_names):
9921 * image.c (xbm_format, xpm_format, pbm_format, png_format)
9922 (jpeg_format, tiff_format, gif_format, svg_format)
9923 (interlace_start, interlace_increment, gs_format):
9924 * gtkutil.c (separator_names):
9925 * fringe.c (swap_nibble):
9926 * fns.c (base64_value_to_char, base64_char_to_value):
9927 * fileio.c (make_temp_name_tbl):
9928 * coding.c (suffixes): Make constant.
9929
f4265f6c
DN
9930 * frame.c (make_initial_frame):
9931 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
9932 build_string.
9933 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
9934
04420943
DN
9935 * s/freebsd.h:
9936 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
9937
0a5d24ae
DN
9938 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
9939 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
9940
a4ada374
DN
9941 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
9942 * xterm.c (syms_of_xterm):
9943 * xfaces.c (syms_of_xfaces):
9944 * xdisp.c (syms_of_xdisp):
9945 * lread.c (syms_of_lread):
9946 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
9947 build_string.
91433552 9948
a4ada374
DN
9949 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
9950
af98fc7f
SM
99512009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9952
8ab1650e 9953 * fns.c (Fplist_get): Merge the active and the commented out code.
af98fc7f 9954
e90292a9
JD
99552009-11-10 Jan Djärv <jan.h.d@swipnet.se>
9956
9957 * keyboard.h: Declare timer_check.
9958
9959 * keyboard.c (timer_check_2): New function that does what the old
9960 timer_check did.
9961 (timer_check): Call timer_check_2 until -1 or a non-zero time is
9962 returned, i.e. don't return -1 with timers pending.
9963
9964 * process.c: Remove extern declaration of timer_check.
9965
9966 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
9967 even if timer_check returned -1.
9968
af98fc7f
SM
9969 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
9970 xg_dialog_data.
e90292a9
JD
9971 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
9972 the event loop.
9973 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
9974 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
9975 Destroy the dialog after xg_dialog_run.
9976
045b83c0
SM
99772009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9978
9979 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
9980
1fb99a3a
JD
99812009-11-10 Jan Djärv <jan.h.d@swipnet.se>
9982
9983 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
9984
04e452cb
JB
99852009-11-09 Juanma Barranquero <lekktu@gmail.com>
9986
9987 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
9988
ef7417fd
SM
99892009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
9990
9991 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
9992 w32menu.c, and nsmenu.m.
9993 Simplify the obsolete case where position is nil.
9994 (cleanup_popup_menu): New function, moved from nsmenu.m.
9995 (struct skp): Remove slot `notreal'.
9996 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
9997 adjust callers.
9998 (single_menu_item): Adjust call to parse_menu_item.
9999 (syms_of_menu): Defsubr x-popup-menu.
10000 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
10001 (keymap_panes): Don't export any more.
10002 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
10003 (xmenu_show): Declare.
10004 * keyboard.c (parse_menu_item): Remove arg `notreal'.
10005 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
10006 * keyboard.h (parse_menu_item): Update declaration.
10007 * xmenu.c (Fx_popup_menu): Remove.
10008 (syms_of_xmenu): Don't defsubr x-popup-menu.
10009 * w32menu.c (Fx_popup_menu): Remove.
10010 (syms_of_w32menu): Don't defsubr x-popup-menu.
10011 * nsmenu.m (cleanup_popup_menu): Remove.
10012 (ns_menu_show): Rename from ns_popup_menu and remove all the code
10013 moved to menu.c's Fx_popup_menu.
10014 (Fx_popup_menu): Remove.
10015 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
10016 menu_items (it's done in menu.c already).
10017
424d6179
SM
100182009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
10019
10020 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
10021 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
10022
c0df13a6 100232009-11-08 Chong Yidong <cyd@stupidchicken.com>
a20903d0
CY
10024
10025 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
c0df13a6 10026 xmenu_show. Hide any tooltip before opening a menu.
a20903d0
CY
10027 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
10028 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
10029
2de9f71c
SM
100302009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
10031
10032 Let integers use up 2 tags to give them one extra bit and thus double
10033 their range.
10034 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
10035 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
10036 New macros.
10037 (enum Lisp_Type): Use them. Give explicit values.
10038 (Lisp_Type_Limit): Remove.
10039 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
10040 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
10041 Pay attention to USE_2_TAGS_FOR_INTS.
10042 (INTEGERP): Use LISP_INT_TAG_P.
10043 * fns.c (internal_equal): Simplify the default case.
10044 (sxhash): Use case_Lisp_Int.
10045 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
10046 any more.
10047 (Ftype_of): Use case_Lisp_Int.
10048 (store_symval_forwarding): Take into account the fact that Ints can
10049 now have more than one tag.
10050 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
686b968e 10051 (buffer_slot_type_mismatch):
2de9f71c
SM
10052 * xfaces.c (face_attr_equal_p):
10053 * print.c (print_object):
10054 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
10055 Use case_Lisp_Int.
10056
323637a2
EZ
100572009-11-06 Eli Zaretskii <eliz@gnu.org>
10058
7ac65b38
EZ
10059 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
10060
323637a2
EZ
10061 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
10062 warning.
10063
e511451f
JD
100642009-11-06 Jan Djärv <jan.h.d@swipnet.se>
10065
10066 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
10067
10068 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
10069
10070 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
10071 ButtonPressRelease and MotionNotify (bug#4870).
10072
5e2327cf
DN
100732009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
10074
5adc433e
DN
10075 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
10076
d67b4f80
DN
10077 * xterm.c (syms_of_xterm):
10078 * xselect.c (syms_of_xselect):
10079 * xmenu.c (syms_of_xmenu):
10080 * xfns.c (syms_of_xfns):
10081 * xfaces.c (syms_of_xfaces):
10082 * xdisp.c (syms_of_xdisp):
10083 * window.c (syms_of_window):
10084 * w32fns.c (syms_of_w32fns):
10085 * undo.c (syms_of_undo):
10086 * textprop.c (syms_of_textprop):
10087 * terminal.c (syms_of_terminal):
10088 * syntax.c (syms_of_syntax):
10089 * sound.c (syms_of_sound):
10090 * search.c (syms_of_search):
10091 * print.c (syms_of_print):
10092 * minibuf.c (syms_of_minibuf):
10093 * macros.c (syms_of_macros):
10094 * keymap.c (syms_of_keymap, initial_define_key)
10095 (initial_define_lispy_key):
10096 * keyboard.c (syms_of_keyboard):
10097 * insdel.c (syms_of_insdel):
10098 * image.c (syms_of_image):
10099 * fringe.c (syms_of_fringe):
10100 * frame.c (syms_of_frame):
10101 * fontset.c (syms_of_fontset):
10102 * fns.c (syms_of_fns):
10103 * fns.c (syms_of_fns):
10104 * fileio.c (syms_of_fileio):
10105 * fileio.c (syms_of_fileio):
10106 * eval.c (syms_of_eval):
10107 * doc.c (syms_of_doc):
10108 * dispnew.c (syms_of_display):
10109 * dired.c (syms_of_dired):
10110 * dbusbind.c (syms_of_dbusbind):
10111 * data.c (syms_of_data):
10112 * composite.c (syms_of_composite):
10113 * coding.c (syms_of_coding):
10114 * cmds.c (syms_of_cmds):
10115 * charset.c (define_charset_internal, syms_of_character):
10116 * ccl.c (syms_of_ccl):
10117 * category.c (syms_of_category, init_category_once):
10118 * casetab.c (syms_of_casetab):
10119 * casefiddle.c (syms_of_casefiddle):
10120 * callint.c (syms_of_callint):
10121 * bytecode.c (syms_of_bytecode):
10122 * buffer.c (keys_of_buffer, syms_of_buffer):
10123 * alloc.c (syms_of_alloc):
10124 * process.c (syms_of_process, init_process):
10125 * lread.c (syms_of_lread, init_obarray):
10126 * font.c (build_style_table):
10127 * emacs.c (syms_of_emacs, main): Replace calls to intern with
10128 intern_c_string, calls to make_pure_string with
10129 make_pure_c_string. Use pure_cons instead of Fcons.
10130
5e2327cf
DN
10131 * process.c (socket_options): Make it const.
10132 (set_socket_option, init_process): Use a const pointer.
10133
10134 * lread.c (intern_c_string): New function.
10135 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
10136 (defvar_int): Uset it. Make the name const char*.
10137
10138 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
10139 (defvar_int): Update prototypes.
10140 (DEFUN, EXFUN): Support for prototypes is now required.
10141 (intern_c_string): New prototype.
10142 (struct Lisp_Subr): Make symbol_name constant.
10143
10144 * font.c (struct table_entry): Remove unused member. Make NAMES
10145 constant.
10146 (weight_table, slant_table, width_table): Make constant.
10147
10148 * emacs.c (struct standard_args): Make name and longname constant.
10149
10150 * character.h (DEFSYM): Use intern_c_string.
10151
a56eaaef
DN
101522009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
10153
10154 * alloc.c (make_pure_c_string): New function.
10155
10156 * eval.c (Fautoload): Purecopy all arguments.
10157
f6a07420
KH
101582009-11-05 Kenichi Handa <handa@m17n.org>
10159
10160 * fileio.c (Finsert_file_contents): Be sure set coding-system of
10161 the buffer in case of replace.
10162
5d28d4b1
DN
101632009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
10164
10165 * puresize.h (BASE_PURESIZE): Increase to 1620000.
10166
b349d111
SM
101672009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
10168
d528b1ce
SM
10169 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
10170 when applicable (bug#4851).
10171
b349d111
SM
10172 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
10173 (P_): Support for prototypes is now required.
10174
c38eb027
CY
101752009-10-31 Chong Yidong <cyd@stupidchicken.com>
10176
10177 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
10178 (Bug#4827).
10179
0405f8d9
EZ
101802009-10-30 Eli Zaretskii <eliz@gnu.org>
10181
d528b1ce 10182 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
0405f8d9 10183
ca0a881a
DN
101842009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
10185
10186 * puresize.h (BASE_PURESIZE): Increase to 1470000.
10187
d528b1ce
SM
10188 * lread.c (Fload): Purecopy the file name when building
10189 Vpreloaded_file_list.
ca0a881a 10190
47e0e0e4
JR
101912009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
10192
10193 * w32fns.c (syms_of_w32fns): Change default value of
10194 w32-scroll-lock-modifier to nil. (Bug#2827)
10195
057bce6f
JB
101962009-10-26 Juanma Barranquero <lekktu@gmail.com>
10197
782a943e 10198 * minibuf.c (Fall_completions): Fix typos in docstring.
057bce6f 10199
242bc74c
AS
102002009-10-26 Andreas Schwab <schwab@redhat.com>
10201
10202 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
10203
522d013a
JB
102042009-10-26 Juanma Barranquero <lekktu@gmail.com>
10205
10206 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
10207 For delta < 0, skip check that only makes sense when the mini-window
10208 is going to be enlarged. (Bug#4534)
10209
18060980
CY
102102009-10-25 Chong Yidong <cyd@stupidchicken.com>
10211
10212 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
10213 string in menu maps (Bug#4471).
10214
fec8f0fe
CY
102152009-10-24 Chong Yidong <cyd@stupidchicken.com>
10216
10217 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
10218 FRAME_NS_VIEW on terminal frames (Bug#4765).
10219
10d66ec0
AS
102202009-10-24 Andreas Schwab <schwab@linux-m68k.org>
10221
1cae01f7
AS
10222 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
10223 DBUS_TYPE_UINTnn separately to get proper sign extension.
10224
58a12889
AS
10225 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
10226 can properly handle unsigned types.
d528b1ce 10227 (make_uid, make_gid): Remove.
58a12889 10228
987c9327
AS
10229 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
10230 types again.
10231
522d013a 10232 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
10d66ec0
AS
10233 (system_process_attributes): Likewise.
10234
905a9ed3
DN
102352009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
10236
10237 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
10238
10239 * eval.c (Fautoload): Purecopy the filename. Simplify.
10240
10241 * category.c (Fdefine_category): Purecopy docstring.
10242
a599b3e8
AS
102432009-10-23 Andreas Schwab <schwab@linux-m68k.org>
10244
7b792fc9
AS
10245 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
10246
a599b3e8
AS
10247 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
10248
b35ac83e
CY
102492009-10-23 Chong Yidong <cyd@stupidchicken.com>
10250
10251 * window.c (Fwindow_edges, Fwindow_pixel_edges)
10252 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
10253 (Bug#4775).
10254
e8903e00
SM
102552009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
10256
10257 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
10258 (init_fileio_once):
10259 * lisp.h (init_fileio_once): Remove.
10260 * emacs.c (main): Don't call init_fileio_once.
10261
8f43cbf3
DN
102622009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
10263
10264 * puresize.h (BASE_PURESIZE): Increase to 1430000.
10265
26898943
AS
102662009-10-21 Andreas Schwab <schwab@linux-m68k.org>
10267
10268 * doprnt.c (doprnt): Fix overflow check.
10269
5c646d5a
JD
102702009-10-21 Jan Djärv <jan.h.d@swipnet.se>
10271
3132a7ea
JD
10272 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
10273
5c646d5a
JD
10274 * xterm.h (x_wait_for_event): Declare it.
10275
10276 * xterm.c (pending_event_wait): New variable.
10277 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
10278 see pending_event_wait.eventtype.
10279 (handle_one_xevent): Don't change gravity when parent changes.
d528b1ce
SM
10280 (x_new_font): Call change_frame_size with new rows/columns before we
10281 try to resize the frame.
5c646d5a 10282 (x_wait_for_event): New function.
d528b1ce
SM
10283 (x_set_window_size_1): Don't change gravity unless change_gravity
10284 is set.
5c646d5a
JD
10285 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
10286 don't change frame size, instead wait for the ConfigureNotify.
10287 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
10288 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
10289 (x_initialize): Initialize pending_event_wait.
10290
10291 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
10292 size.
10293
10294 * widget.c (EmacsFrameSetValues): Add comment.
10295 (EmacsFrameSetCharSize): Just call x_set_window_size.
10296
10297 * gtkutil.c (xg_frame_set_char_size): Flush events and call
10298 x_wait_for_event.
d528b1ce 10299 (flush_and_sync): Remove again.
5c646d5a
JD
10300 (xg_get_font_name): Suggest monospace if no previous font is known.
10301
e9c1637d
SM
103022009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
10303
10304 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
46be764e 10305 8th bit, since that only made sense in the ASCII world (bug#4751).
e9c1637d 10306
5a72cccb
YM
103072009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10308
10309 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
10310 processing pending events when event is filtered for input method.
ab04798f 10311 (Bug#3681)
5a72cccb 10312
2629aa37
JB
103132009-10-20 Juanma Barranquero <lekktu@gmail.com>
10314
10315 * fns.c: Add #endif accidentally removed in previous change.
10316
c3417a74
DN
103172009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
10318
10319 * fns.c: Remove code for unsupported system: MAC_OS.
10320 * image.c: Likewise. Include setjmp.h.
10321
9685cef2
JD
103222009-10-19 Jan Djärv <jan.h.d@swipnet.se>
10323
10324 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
10325 pixel -1 (bug #4742).
10326
d7306fe6
DN
103272009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
10328
019d2c4c
DN
10329 * process.c (create_pty): Remove conditionals for no longer
10330 supported systems: UNIPLUS and RTU.
10331
ee6bacd4
DN
10332 * xterm.c:
10333 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
10334
d7306fe6
DN
10335 * alloc.c: Do not define struct catchtag.
10336 * eval.c: Move struct catchtag definition ...
10337 * lisp.h: ... here.
10338
10339 * image.c: Move png.h #include earlier to avoid warnings.
10340
10341 * xterm.c:
10342 * xsmfns.c:
10343 * xselect.c:
10344 * xrdb.c:
10345 * xmenu.c:
10346 * xftfont.c:
10347 * xfont.c:
10348 * xfns.c:
10349 * xfaces.c:
10350 * xdisp.c:
10351 * window.c:
10352 * widget.c:
10353 * w32xfns.c:
10354 * w32uniscribe.c:
10355 * w32term.c:
10356 * w32select.c:
10357 * w32reg.c:
10358 * w32proc.c:
10359 * w32menu.c:
10360 * w32inevt.c:
10361 * w32heap.c:
10362 * w32font.c:
10363 * w32fns.c:
10364 * w32console.c:
10365 * w32.c:
10366 * w16select.c:
10367 * vm-limit.c:
10368 * unexsol.c:
10369 * unexec.c:
10370 * unexcw.c:
10371 * unexaix.c:
10372 * undo.c:
10373 * tparam.c:
10374 * textprop.c:
10375 * terminfo.c:
10376 * terminal.c:
10377 * termcap.c:
10378 * term.c:
10379 * syntax.c:
10380 * sound.c:
10381 * sheap.c:
10382 * search.c:
10383 * scroll.c:
10384 * region-cache.c:
10385 * regex.c:
10386 * ralloc.c:
10387 * process.c:
10388 * print.c:
b024548b
DN
10389 * nsterm.m:
10390 * nsselect.m:
10391 * nsmenu.m:
10392 * nsimage.m:
10393 * nsfont.m:
10394 * nsfns.m:
d7306fe6
DN
10395 * msdos.c:
10396 * minibuf.c:
10397 * menu.c:
10398 * marker.c:
10399 * macros.c:
10400 * keymap.c:
10401 * keyboard.c:
10402 * intervals.c:
10403 * insdel.c:
10404 * indent.c:
10405 * gtkutil.c:
10406 * ftxfont.c:
10407 * ftfont.c:
10408 * fringe.c:
10409 * frame.c:
10410 * fontset.c:
10411 * font.c:
10412 * fns.c:
10413 * floatfns.c:
10414 * filelock.c:
10415 * fileio.c:
10416 * emacs.c:
10417 * editfns.c:
10418 * dosfns.c:
10419 * doprnt.c:
10420 * doc.c:
10421 * dispnew.c:
10422 * dired.c:
10423 * dbusbind.c:
10424 * data.c:
10425 * composite.c:
10426 * coding.c:
10427 * cmds.c:
10428 * cm.c:
10429 * chartab.c:
10430 * charset.c:
10431 * character.c:
10432 * ccl.c:
10433 * category.c:
10434 * casetab.c:
10435 * casefiddle.c:
10436 * callproc.c:
10437 * callint.c:
10438 * bytecode.c:
10439 * buffer.c:
10440 * atimer.c: Include setjmp.h. (Bug#4643)
10441
fd5f21e6
SM
104422009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
10443
4c0354d7
SM
10444 Remove leftover table unibyte_to_multibyte_table.
10445 * character.c (unibyte_to_multibyte_table): Remove.
10446 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
10447 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
10448 * character.h (UNIBYTE_TO_CHAR): New macro.
10449 (MAKE_CHAR_MULTIBYTE): Use it.
10450 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
10451 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
10452 (message_dolog, set_message_1):
10453 * search.c (Freplace_match):
10454 * editfns.c (Fcompare_buffer_substrings):
10455 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
10456 (concat):
10457 * insdel.c (copy_text, count_size_as_multibyte):
10458 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
10459 * term.c (produce_glyphs):
10460 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
10461 * regex.c (RE_CHAR_TO_MULTIBYTE):
10462 * cmds.c (internal_self_insert):
10463 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
10464
fd5f21e6
SM
10465 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
10466
4418646e
DN
104672009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
10468
10469 * puresize.h (BASE_PURESIZE): Increase to 1310000.
10470
35f5c1d2
JB
104712009-10-16 Juanma Barranquero <lekktu@gmail.com>
10472
10473 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
10474
a0cd8f6b
AR
104752009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
10476
10477 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
10478 still needed under Tiger.
10479
10480 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
10481
10482 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
10483 __Apple__.
10484
10485 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
10486
01a8d3fa
KH
104872009-10-15 Kenichi Handa <handa@m17n.org>
10488
10489 * print.c (print_object): Escape a symbol like "2E10" too.
10490
bf6c75c9 104912009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
6e4780c5
JB
10492
10493 Cleanups and changes for 64-bit compile under Snow Leopard.
10494 Based on suggestions by Erik Charlebois.
bf6c75c9
AR
10495
10496 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
10497
c5959062 10498 * nsfont.m (ns_char_width): Replace deprecated call.
bf6c75c9
AR
10499 (ns_findfonts, nsfont_list_family): Use long format in printf, and
10500 cast argument.
10501 (nsfont_open): Use ns_char_width() everywhere.
d528b1ce 10502 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
bf6c75c9
AR
10503
10504 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
10505
10506 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
10507 where appropriate.
10508
10509 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
10510 where appropriate.
6e4780c5
JB
10511 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
10512 Use stringWithUTF8String.
bf6c75c9
AR
10513 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
10514
6e4780c5
JB
10515 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
10516 Add formal protocol mention to inheritance.
bf6c75c9
AR
10517 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
10518
6e4780c5
JB
10519 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
10520 Fix printf format.
bf6c75c9
AR
10521 (ns_query_color): Use CGFloat where appropriate.
10522 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
ac146f82 10523 (EmacsScroller-mouseDown:): Use long format in printf, and cast
bf6c75c9
AR
10524 argument.
10525
3d87f118
AR
10526 * config.in (NS_HAVE_NSINTEGER): Drop.
10527
a95c8102
AR
10528 * dbusbind.c (dbus-method-return-internal)
10529 (dbus-method-error-internal): Use long format in printf, and cast
10530 argument.
10531
10532 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
10533 in printf, and cast argument.
10534
6873acca 10535 * process.c (list_processes_1): Use long format in printf, and
a95c8102
AR
10536 cast argument.
10537
9ec6f100
GM
105382009-10-11 Glenn Morris <rgm@gnu.org>
10539
10540 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
10541
5be883cd
JD
105422009-10-08 Jan Djärv <jan.h.d@swipnet.se>
10543
10544 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
10545 menu bar with a small width so it doesn't enlarge the frame.
10546
d7a39b51
JB
105472009-10-08 Juanma Barranquero <lekktu@gmail.com>
10548
10549 * fontset.c (Fset_fontset_font): Fix typos in error messages.
10550
0c2b6f8e
GM
105512009-10-06 Glenn Morris <rgm@gnu.org>
10552
10553 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
10554 SOME_MACHINE_LISP (this enters indirectly via DOC).
10555
e02131a2
EZ
105562009-10-05 Eli Zaretskii <eliz@gnu.org>
10557
10558 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
10559
b4744254
EZ
105602009-10-04 Eli Zaretskii <eliz@gnu.org>
10561
10562 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
10563 Doc fix.
10564
dbf64827
JB
105652009-10-03 Martin Rudalics <rudalics@gmx.at>
10566
10567 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
10568
e9a0aef8
MA
105692009-10-02 Michael Albinus <michael.albinus@gmx.de>
10570
d528b1ce 10571 * lisp.h (Qdelete_directory_internal): Remove, because it is not
e9a0aef8
MA
10572 used anymore outside fileio.c.
10573
10574 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
10575
64eb2b56
JB
105762009-10-01 Juanma Barranquero <lekktu@gmail.com>
10577
10578 * lisp.h (Qdelete_directory_internal):
10579 Declare, instead of Qdelete_directory.
10580
10581 * w32fns.c (Fsystem_move_file_to_trash): Use it.
10582
9d28c33e
SM
105832009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
10584
10585 * eval.c (Fcalled_interactively_p): Add `kind' argument.
10586
9d8f3bd9
MA
105872009-10-01 Michael Albinus <michael.albinus@gmx.de>
10588
9d28c33e 10589 * fileio.c (Fdelete_directory_internal): Rename from
9d8f3bd9
MA
10590 Fdelete_directory. It is not a command anymore. It has no file
10591 name handler.
10592
9694740b
SM
105932009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
10594
10595 * xdisp.c (get_next_display_element): Use an enum in last change.
10596
748e162f
KH
105972009-09-28 Kenichi Handa <handa@m17n.org>
10598
9694740b 10599 * xdisp.c (get_next_display_element): Pay attention to
748e162f
KH
10600 unibyte_display_via_language_environment in handling
10601 Vnobreak_char_display.
10602
17efd58d
AR
106032009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
10604
10605 * nsterm.h (ns_app_name): New extern variable.
10606
10607 * nsterm.m (ns_app_name): New variable.
10608 (ns_term_init): Set and use it.
10609 (ns_term_shutdown): Use it.
10610
10611 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
10612 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
10613
10614 * nsfns.m (ns_set_name_iconic, ns_set_name)
10615 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
10616 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
10617
9694740b
SM
10618 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
10619 Remove double-casting in client_data comparison.
31c2d412 10620
3208cb35
YM
106212009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10622
10623 * keyboard.c (make_lispy_event): Remember last wheel direction.
10624 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
10625
b7d552d6
GM
106262009-09-26 Glenn Morris <rgm@gnu.org>
10627
10628 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
10629 internal.elc. Add term/pc-win.elc.
10630 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
10631 term/x-win.elc.
10632 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
10633 term/w32-win.elc.
10634 (NS_SUPPORT): New.
10635 (lisp): Add NS_SUPPORT.
10636 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
10637
4ff670a8
DR
106382009-09-25 David Reitter <david.reitter@gmail.com>
10639
10640 * nsmenu.m (EmacsMenu-clear): Recognize application menu
10641 on Mac OS X 10.6+ (bug#4513).
10642
feabfb6c
JB
106432009-09-24 Juanma Barranquero <lekktu@gmail.com>
10644
10645 * frame.c (xrdb_get_resource): Return nil for empty string resources;
d528b1ce
SM
10646 some parts of Emacs code (like font selection) don't grok them.
10647 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
feabfb6c 10648
de59072a
AS
106492009-09-24 Andreas Schwab <schwab@redhat.com>
10650
10651 * coding.c (decode_coding_iso_2022): Fix operator precedence.
10652
a489517b
JB
106532009-09-24 Juanma Barranquero <lekktu@gmail.com>
10654
10655 * dired.c (Fdirectory_files): Fix typo in docstring.
10656
0592970c
AR
106572009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
10658
10659 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
10660 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
10661 (EmacsScroller-setPosition:portion:whole:): Remove -display call
10662 under GNUstep.
10663 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
10664
10665 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
10666 glyph advancement.
10667
48e8a88b
AR
106682009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
10669
10670 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
b3aac06a 10671 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
48e8a88b
AR
10672
10673 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
10674 deleted (bug #4492).
10675
e14f0a78
AR
10676 * nsfont.m (Vns_reg_to_script): New lisp variable.
10677 (syms_of_nsfont): Declare it.
10678 (ns_registry_to_script): New function.
10679 (ns_get_req_script): Call it.
10680 (ns_findfonts): Don't give up on non-unicode registry.
10681
10682 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
10683
5b650faa
SM
106842009-09-20 Tom Tromey <tromey@redhat.com>
10685
10686 * eval.c (find_handler_clause): Make stack-trace-on-error work in
10687 batch mode (bug#4228).
10688
a489517b 106892009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
0bae4e09
AR
10690
10691 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
a489517b 10692 carefully. (Bug #4339)
0bae4e09 10693
fcfe06f3
CY
106942009-09-18 Chong Yidong <cyd@stupidchicken.com>
10695
d798ba87 10696 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
fcfe06f3 10697
31642728
AR
106982009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
10699
10700 * emacs.c (inhibit_x_resources): Update doc string for NS.
bba3e508
SM
10701 (main) [HAVE_NS]: Don't process --no-init-file option.
10702 Remove legacy code for -NXHost. Fix error printf in daemon case.
31642728
AR
10703
10704 * nsterm.h (ns_no_defaults): Remove.
10705
10706 * nsterm.m (ns_no_defaults): Remove.
10707 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
10708 (ns_use_qd_smoothing): Remove legacy variable.
6516d10a
AR
10709 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
10710 don't update the NSWindow itself.
bba3e508
SM
10711 (EmacsView-windowWillUseStandardFrame:defaultFrame:):
10712 Improve state detection and store user rect ourselves. (Bug #3581)
31642728
AR
10713
10714 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
10715 ns_use_qd_smoothing.
10716
10717 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
10718 platform versions. Drop support for emacs-20-style face specs.
8aad0aea 10719 (x-close-connection): Drop PSFlush() under OS X.
a489517b 10720 (x-focus-frame): Activate the app first. (Bug #4180)
31642728 10721
8686ac71
JB
107222009-09-17 Juanma Barranquero <lekktu@gmail.com>
10723
10724 * emacs.c (inhibit_x_resources): New variable.
10725 (main) [HAVE_NS]: Don't process --quick command line option.
10726 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
10727
10728 * lisp.h (inhibit_x_resources): Declare it extern.
10729
10730 * w32reg.c (x_get_string_resource):
10731 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
10732
e227ba05
EZ
107332009-09-17 Eli Zaretskii <eliz@gnu.org>
10734
362654a6
JB
10735 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
10736 Add lisp/term/internal.elc.
e227ba05 10737
742d40e8
SM
107382009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
10739
10740 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
10741 (bug#4461).
10742
005bd5a2
DN
107432009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
10744
10745 * puresize.h (BASE_PURESIZE): Increase to 1290000.
10746
10747 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
10748 (OBJECTS_MACHINE): Remove, unused.
10749
f9af9719
SM
107502009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10751
10752 * frame.c (x_get_resource_string): Remove unused.
10753
0307c7d2
JD
107542009-09-15 Jan Djärv <jan.h.d@swipnet.se>
10755
10756 * xterm.c (x_new_font): Call change_frame_size before calling
10757 x_set_window_size, in case frame size won't change.
10758
10759 * frame.c (x_set_font): Remove dead code.
10760
428b13d6
SM
107612009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
10762
10763 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
10764
5766c380
SM
107652009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10766
10767 * lread.c (Fload): Don't output a message after loading an obsolete
10768 package any more (done in Lisp now).
10769
2fd0161b
CY
107702009-09-12 Chong Yidong <cyd@stupidchicken.com>
10771
10772 * fns.c (syms_of_fns): Doc fix (Bug#4227).
10773
bc5e75b6
SM
107742009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10775
10776 * keymap.c (Fwhere_is_internal): Use nconc2.
10777
c31c985e
AM
107782009-09-11 Alan Mackenzie <acm@muc.de>
10779
10780 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
10781 batch mode.
10782
78012bd2
AS
107832009-09-11 Andreas Schwab <schwab@linux-m68k.org>
10784
10785 * xdisp.c (display_mode_element): Detect cycles.
10786
9d889332
SM
107872009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
10788
10789 * keymap.c (where_is_internal): Don't erroneously return nil right after
10790 filling the cache.
10791 (where_is_internal_1): Fix up typo.
10792
7ab5d780
GM
107932009-09-11 Glenn Morris <rgm@gnu.org>
10794
10795 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
10796 share a common doc-string.
10797
5238a749
SM
107982009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
10799
66d77eda
SM
10800 * keymap.c (get_keymap): Return the actual keymap symbol rather than
10801 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
10802
5238a749
SM
10803 * keymap.c (QCadvertised_binding): New constant.
10804 (syms_of_keymap): Initialize it.
10805 (Fwhere_is_internal): Try and use bindings from :advertised-binding
10806 if applicable.
10807
19f48442
SM
108082009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
10809
50d4ba39
SM
10810 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
10811 (parse_menu_item): Streamline since bindings are recomputed all the
10812 time anyway. Don't bother checking Vdefine_key_rebound_commands any
10813 more and don't support lmenu's menu-alias any more either.
10814
a88a5372
SM
10815 * keymap.c (where_is_internal_data): Make noindirect a boolean.
10816 (where_is_internal): Strip it down to only traverse the keymaps.
10817 Move the cache handling from Fwhere_is_internal to here.
10818 (Fwhere_is_internal): Move the handling of remapping and the choice of
10819 the best binding from where_is_internal to here.
10820 Unify the cached/noncached paths, so remapping is also handled
10821 correctly when the cache is used, and so the cache can be used to
10822 speed up remap-handling when applicable.
10823 Give preference to non-remapped bindings.
10824 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
10825 non-remapped bindings.
10826 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
10827 command remapping.
10828
19f48442
SM
10829 * xdisp.c (display_mode_element): Move list length limit from 50 to
10830 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
10831
599498c3 108322009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
c1905ca3
AR
10833
10834 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
10835
f9b7b5ac
SM
108362009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
10837
a53af587
JB
10838 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
10839 (Bug#4334)
10840
f9b7b5ac
SM
10841 * keymap.c (where_is_internal): Filter out shadowed remappings.
10842 Assume that where_is_internal returns unshadowed bindings to simplify
10843 the code and get rid of the gotos. Use ASIZE.
10844
04f4b72d
JD
108452009-09-04 Jan Djärv <jan.h.d@swipnet.se>
10846
4da146f2
JD
10847 * xterm.c (x_focus_changed): If we get a focusout and pointer
10848 is invisible, make it visible.
10849
04f4b72d
JD
10850 * xterm.h: Remove condition for declaration of
10851 x_*_window_to_frame.
10852
7cef7ce3
SM
108532009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
10854
10855 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
10856 initial terminal as well.
10857
a54fa5b7
JD
108582009-09-02 Jan Djärv <jan.h.d@swipnet.se>
10859
10860 * xterm.h: Rename x_non_menubar_window_to_frame to
7cef7ce3 10861 x_menubar_window_to_frame.
a54fa5b7 10862
50426a04 10863 * xterm.c: Remove declarations also in xterm.h.
a54fa5b7
JD
10864 (XTmouse_position): Do not return valid positions
10865 for clicks in the menubar and the toolbar for Gtk+.
10866
10867 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
10868 if the widget for the event has the same top level as a frame,
10869 return the frame.
10870 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
10871 internal windows, bug #4122.
10872 (x_non_menubar_window_to_frame): Remove.
10873
5a021dd0
GM
108742009-09-02 Glenn Morris <rgm@gnu.org>
10875
10876 * buffer.c (default-major-mode): Move most of the doc from here...
10877 (major-mode): ... to here.
10878
548fe2f3
NR
108792009-08-30 Nick Roberts <nickrob@snap.net.nz>
10880
10881 * process.c (wait_reading_process_output): Keep the descriptor
10882 when pty is used by a non-child process, e.g., in I/O buffer of
10883 GDB this allows inferior to be restarted.
10884
e0840eef
EZ
108852009-08-29 Eli Zaretskii <eliz@gnu.org>
10886
10887 * xdisp.c (redisplay_internal): Remove redundant test and collapse
10888 both branches into one.
10889
82e98df4
SM
108902009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10891
10892 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
10893 (main): Use enable-multibyte-characters rather than
10894 default-enable-multibyte-characters. Output a warning message when
10895 running a unibyte session.
10896
890617cb
YM
108972009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10898
10899 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
10900 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
10901 (copy_data_segment): Also copy __program_vars section.
10902 (copy_dyld_info) [LC_DYLD_INFO]: New function.
10903 (dump_it) [LC_DYLD_INFO]: Use it.
10904
10905 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
10906
e7adeadc
EZ
109072009-08-28 Eli Zaretskii <eliz@gnu.org>
10908
10909 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
10910 $(SRC)/buildobj.h.
ef1b0ba7 10911 (buildobj.h): Rename from $(SRC)/buildobj.h.
e7adeadc
EZ
10912 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
10913 $(SRC)/buildobj.h.
10914 (clean): Add buildobj.h.
10915
3ed8bbdc
TZ
109162009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
10917
10918 * print.c (print_object): Set escapeflag to 1 when printing
10919 hashtable keys and values.
10920
155a6764
SM
109212009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
10922
10923 * lread.c (read_integer): Use doubles (and potentially return a float
10924 number) as we do in string-to-number.
10925 (read1): Use strtol to read integers, signal errors on strtol's
10926 overflow and use floats if strtol's output is too large for
10927 Elisp integers.
10928
877610de
EZ
109292009-08-27 Eli Zaretskii <eliz@gnu.org>
10930
10931 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
10932 (make-buildobj-SH): Fix last change.
10933 (SRC): Move to before where it's first used.
10934
ef73e7be
KH
109352009-08-27 Kenichi Handa <handa@m17n.org>
10936
550c8289
KH
10937 * process.c (send_process): Use encode_coding_object instead of
10938 encode_coding_string to perform eol-conversion even if the string
10939 is unibyte.
10940
60afa08d
KH
10941 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
10942 character.
10943
ef73e7be 10944 * cmds.c (Fself_insert_command): Avoid unnecessay
8a0b709a 10945 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
ef73e7be 10946
7b3a82d7
DN
109472009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
10948
5654bf63
DN
10949 * callproc.c (Fcall_process): Remove always true #if.
10950
7b3a82d7
DN
10951 * lisp.h: Replace #if 0 code for checking with text pointing to
10952 the --enable-checking configure flag.
10953
10954 * emacs.c (main): Mention the --enable-profiling configure flag
10955 instead of using CFLAGS.
10956
878bde49
KR
109572009-08-26 Ken Raeburn <raeburn@raeburn.org>
10958
10959 * Makefile.in (buildobj.h): New target.
10960 (doc.o): Depend on it.
10961 (temacs${EXEEXT}): Don't generate buildobj.lst.
10962 (mostlyclean): Delete buildobj.h, not buildobj.lst.
10963 * makefile.w32-in ($(SRC)/buildobj.h): New target.
10964 ($(BLD)/doc.$(O)): Depend on it.
10965 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
10966 provided by Eli Zaretskii.)
10967 ($(TEMACS)): Don't generate buildobj.lst.
10968 * doc.c: Include buildobj.h.
10969 (buildobj): New static variable.
10970 (Fsnarf_documentation): Use it, instead of opening and reading
10971 buildobj.lst.
10972
1574224c
MA
109732009-08-25 Michael Albinus <michael.albinus@gmx.de>
10974
10975 * dbusbind.c (Fdbus_call_method)
10976 (Fdbus_call_method_asynchronously): Use English numeric format for
10977 timeout values in doc string.
10978
d9da2f45
KH
109792009-08-25 Kenichi Handa <handa@m17n.org>
10980
ef73e7be
KH
10981 * alloc.c (mark_char_table): New function.
10982 (mark_object): Use mark_char_table for a char-table.
10983
d9da2f45
KH
10984 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
10985 (CHAR_TABLE_REF): Use it.
10986
c8edcc01
KR
109872009-08-23 Ken Raeburn <raeburn@raeburn.org>
10988
10989 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
10990 before invoking the newly build emacs to check for load-path
10991 shadowing.
10992
7763401b
GM
109932009-08-22 Glenn Morris <rgm@gnu.org>
10994
10995 * Makefile.in (bootstrap_exe): New variable.
10996 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
10997 Use ${bootstrap_exe}.
10998
729eadda
EZ
109992009-08-22 Eli Zaretskii <eliz@gnu.org>
11000
11001 * coding.h (encode_coding_string): Don't encode unibyte strings.
11002 (Bug#4047)
11003
eb4c6ace
MA
110042009-08-22 Michael Albinus <michael.albinus@gmx.de>
11005
11006 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
11007
11008 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
11009 intended as hotfix only.
11010 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
11011
36e34d1b
AR
110122009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
11013
11014 * nsterm.m (ns_get_color): Update documentation properly for last
bba3e508
SM
11015 change, and clean up loose ends in the code left by it.
11016 Fix longstanding bug with 16-bit hex parsing, and add support for
36e34d1b
AR
11017 yet another X11 format (rgb:r/g/b) for compatibility.
11018 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
11019 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
11020
f983eb8a
SM
110212009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
11022
11023 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
11024
3f56d3c6
MA
110252009-08-20 Michael Albinus <michael.albinus@gmx.de>
11026
11027 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
11028 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
11029 (xd_initialize, xd_pending_messages): Check, whether
11030 $DBUS_SESSION_BUS_ADDRESS is set.
11031
fb641d68
YM
110322009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11033
11034 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
11035
11036 * nsterm.m (ns_get_color): Remove incompatible color formats again.
11037
cf59a374
GM
110382009-08-20 Glenn Morris <rgm@gnu.org>
11039
11040 * emacs.c (system-type): Doc fix.
11041
1373f3be
SM
110422009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
11043
11044 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
11045 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
11046
058ed861
MA
110472009-08-18 Michael Albinus <michael.albinus@gmx.de>
11048
1373f3be
SM
11049 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
11050 New functions.
058ed861
MA
11051 (xd_initialize): Revert change from 2009-08-16.
11052
563a866e 110532009-08-18 Kenichi Handa <handa@m17n.org>
5fc05db0
KH
11054
11055 * fontset.c (Ffontset_font): If a nil element is found in a
563a866e 11056 font-group vector, return nil.
5fc05db0 11057
e42bdf01
CY
110582009-08-17 Chong Yidong <cyd@stupidchicken.com>
11059
11060 * process.c (status_notify): Don't perform redisplay.
11061 (Fdelete_process, list_processes_1, process_send_signal):
11062 Expliticly perform redisplay.
11063 (wait_reading_process_output): Always check process status, but
11064 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
11065
4230ab74
KR
110662009-08-17 Ken Raeburn <raeburn@raeburn.org>
11067
1373f3be 11068 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
f601cdf3
KR
11069 (XFLOAT_INIT): New macro for storing a float value.
11070 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
11071 * fns.c (sxhash): Copy out the value of a float in order to
11072 examine its bytes.
11073 * dbusbind.c (xd_append_arg): Likewise.
11074
4230ab74
KR
11075 * emacs.c (main): Don't call syms_of_data twice.
11076
a0645cdd
MA
110772009-08-16 Michael Albinus <michael.albinus@gmx.de>
11078
11079 * dbusbind.c (xd_initialize): Add connection file descriptor to
11080 input_wait_mask, in order to let select() detect, whether a new
11081 message has been arrived.
ca4f31ea 11082 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
a0645cdd 11083
485db0ba
MA
110842009-08-15 Michael Albinus <michael.albinus@gmx.de>
11085
1373f3be
SM
11086 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
11087 New functions.
485db0ba
MA
11088
11089 * lisp.h (xd_pending_messages): Declare.
11090
11091 * keyboard.c (readable_events): Call xd_pending_messages.
11092
b5b98ff4
CY
110932009-08-15 Chong Yidong <cyd@stupidchicken.com>
11094
1373f3be 11095 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
84b17ab0 11096
f8354c6e
CY
11097 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
11098
b5b98ff4
CY
11099 * buffer.c (set_buffer_internal_1)
11100 (swap_out_buffer_local_variables): Check for unbound local
11101 variables (Bug#4138).
11102
8b9fc636
EZ
111032009-08-14 Eli Zaretskii <eliz@gnu.org>
11104
11105 * process.c (create_pty): Fix last change.
11106
ce959360
CY
111072009-08-13 Chong Yidong <cyd@stupidchicken.com>
11108
11109 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
11110 (xbm_load_image): Caller changed.
64b807c9 11111 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
ce959360 11112
c7baf7e9
NR
111132009-08-13 Nick Roberts <nickrob@snap.net.nz>
11114
11115 * process.c (create_pty): New function.
11116 (Fstart_process): Use it to allow Emacs to just associate a pty
11117 with the buffer. See associated change in gdb-mi.el.
11118 (list_processes_1): Deal with no program name.
11119 (start_process_unwind): Use pid == -2 to mean no process.
11120
1ac9108a
SM
111212009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
11122
11123 * cmds.c (nonundocount): New global variable.
11124 (keys_of_cmds): Initialize it.
11125 (Fself_insert_command): Use it to combine upto 20 sequential chars
11126 into a single undo entry, just like the Qself_insert_command code in
11127 keyboard.c does.
11128 Call frame_make_pointer_invisible, also like the Qself_insert_command
11129 code in keyboard.c does.
11130 * keyboard.c (command_loop_1): Use the new global nonundocount rather
11131 than its own local replacement for it.
11132
e267324c
KR
111332009-08-10 Ken Raeburn <raeburn@raeburn.org>
11134
1ac9108a 11135 * fns.c (concat): Don't re-set string length to its current value.
77437343 11136
1ac9108a
SM
11137 * coding.h (decode_coding_string, encode_coding_string):
11138 Use SBYTES macro.
f0bed503 11139
1ac9108a 11140 * doprnt.c (doprnt_lisp): Delete unused function.
e267324c
KR
11141 (doprnt): Merge with doprnt1, discarding lispstrings code.
11142 * lisp.h (doprnt_lisp): Don't declare.
11143
416e006d
JL
111442009-08-07 Juri Linkov <juri@jurta.org>
11145
11146 * puresize.h (BASE_PURESIZE): Increase to 1270000.
11147
6f7d5780
DN
111482009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
11149
11150 * print.c (syms_of_print): Undo previous change.
11151
f19a0f5b
TZ
111522009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
11153
11154 * lread.c (read1, syms_of_lread): Read hashtables back from the
11155 readable format.
11156
11157 * print.c (print_preprocess, print_object): Print hashtables fully
11158 and readably.
11159 (syms_of_print): Provide 'hashtable-print-readable.
11160
b9173dc2
AR
111612009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
11162
11163 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
11164 no family set.
11165 (nsfont_open): Handle case when entity has no family.
11166
1586503c
AR
111672009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
11168
11169 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
11170 element, not a list, for match case.
11171
087048cd
KH
111722009-07-28 Kenichi Handa <handa@m17n.org>
11173
11174 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
11175 rigidly.
11176
11177 * xfont.c (xfont_list_pattern): Don't ignore the return value of
11178 font_parse_xlfd. Check font properties more rigidly.
11179
780c2506
DN
111802009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
11181
31fd7c5c
JB
11182 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
11183 bsd-common.h.
780c2506 11184
a8c0cc18
KH
111852009-07-27 Kenichi Handa <handa@m17n.org>
11186
11187 * xfaces.c (face_with_height): Call font_clear_prop.
11188
4fbe2306
CY
111892009-07-26 Chong Yidong <cyd@stupidchicken.com>
11190
111d9af3
CY
11191 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
11192
11193 * xterm.c (x_term_init): Use Qx.
11194
4fbe2306
CY
11195 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
11196
1ac9108a 11197 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
4fbe2306
CY
11198 (ns_get_color): Revert 2009-07-16 change.
11199
beb0b7f9
EZ
112002009-07-25 Eli Zaretskii <eliz@gnu.org>
11201
11202 * lread.c (syms_of_lread) <force_load_messages>: New variable.
1ac9108a 11203 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
beb0b7f9 11204
2baf5e76
KR
112052009-07-25 Ken Raeburn <raeburn@raeburn.org>
11206
1ac9108a
SM
11207 * coding.h (decode_coding_string, encode_coding_string):
11208 Use SCHARS macro.
8890e5f5 11209
2baf5e76 11210 * lread.c: Rewrite 2009-07-21 changes.
1ac9108a 11211 (load_depth): Delete.
2baf5e76
KR
11212 (Qload_in_progress): New variable.
11213 (load_unwind): Don't reference load_depth or load_in_progress.
11214 (Fload): Likewise; specbind Qload_in_progress instead.
11215 (init_lread): Don't initialize load_depth.
11216 (syms_of_lread): Initialize and protect Qload_in_progress.
11217
1395c6f5
AR
112182009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
11219
11220 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
11221
4e2f36cf
AR
112222009-07-23 Yavor Doganov <yavor@gnu.org>
11223
11224 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
11225
5dd9a6f7
AR
112262009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
11227
11228 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
7f6ad209
AR
11229 Bugs 3792, 3720, 2402.
11230 (ns_lookup_indexed_color): Check for bad index.
11231 (ns_index_color): Init unused slot to 0.
11232 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
11233 Bug 3714, possibly 3082.
5dd9a6f7 11234
c902b920
JR
112352009-07-22 Jason Rumney <jasonr@gnu.org>
11236
1ac9108a
SM
11237 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
11238 Position IME window at cursor (Bug#2570).
c902b920
JR
11239 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
11240 (globals_of_w32fns): Dynamically load functions required above.
11241
11242 * w32term.c (w32_draw_window_cursor): Send message to reposition
11243 any IME window.
11244
090101cf
CY
112452009-07-21 Chong Yidong <cyd@stupidchicken.com>
11246
11247 * fileio.c: Revert 2009-07-16 changes.
11248 (Vauto_save_include_big_deletions): New variable.
11249 (Fdo_auto_save): Disable auto-save only if
11250 auto-save-include-big-deletions is nil.
11251
e6583e3d
CY
112522009-07-21 Chong Yidong <cyd@stupidchicken.com>
11253
11254 * xdisp.c (move_it_to): For continued lines ending in a tab, take
11255 the overflowed pixels into account (Bug#3879).
11256
ece435a5
KR
112572009-07-21 Ken Raeburn <raeburn@raeburn.org>
11258
11259 * lread.c (load_depth): New variable.
11260 (Fload, load_unwind, init_lread): Set it to the load recursion
11261 depth; set load_in_progress as a simple boolean based on the
11262 current load_depth. (Bug#3892)
11263
40b2d973
AR
112642009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
11265
11266 * nsfont.m (ns_has_attribute): Remove.
11267 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
11268
10be7e0d
JL
112692009-07-18 Juri Linkov <juri@jurta.org>
11270
11271 * process.c (Fset_process_query_on_exit_flag): Mention killing
11272 a buffer in docstring.
11273
fa055055
KH
112742009-07-17 Kenichi Handa <handa@m17n.org>
11275
11276 * casetab.c (shuffle): Fix the logic of setting up the cycle.
11277
042f7b69
YM
112782009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11279
11280 * nsfns.m (Fns_set_alpha): Remove function.
11281 (syms_of_nsfns): Don't defsubr it.
11282
11283 * nsterm.m (ns_get_color): Remove incompatible color formats.
11284 (ns_color_to_lisp): Generate #rrggbb color format string.
11285
4be941e3
RS
112862009-07-16 Richard Stallman <rms@gnu.org>
11287
11288 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
11289 (Fset_buffer_auto_saved): Handle save_length = -2.
11290
4e6b227d
CY
112912009-07-16 Chong Yidong <cyd@stupidchicken.com>
11292
11293 * xterm.c (Qx_gtk_map_stock): New var.
11294
11295 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
11296 of calling intern each time.
11297
a1856973
YM
112982009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11299
11300 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
11301 does tiling.
11302
11303 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
11304
497e54d8
KH
113052009-07-14 Kenichi Handa <handa@m17n.org>
11306
72d36834
KH
11307 * font.c (font_vconcat_entity_vectors): New function.
11308 (struct font_sort_data): New member font_driver_preference.
11309 (font_compare): Check font_driver_preference.
11310 (font_sort_entities): The format of the first argument changed.
11311 (font_delete_unmatched): Likewise.
11312 (font_list_entities): The return type changed.
11313 (font_select_entity): The format of the second argument changed.
1ac9108a
SM
11314 (font_find_for_lface): Adjuste for the above changes.
11315 Don't suppress the checking of C even if the repertory supports it.
11316 (Flist_fonts): Adjust for the above changes.
72d36834 11317
1ac9108a
SM
11318 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
11319 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
497e54d8
KH
11320 Reject a font who has adstyle property that is different from a
11321 langname derived from registry property.
1ac9108a 11322 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
497e54d8 11323
b6046155
EZ
113242009-07-13 Eli Zaretskii <eliz@gnu.org>
11325
11326 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
11327 local copy of dirfilename.
11328
fb6b6049
KH
113292009-07-13 Kenichi Handa <handa@m17n.org>
11330
e2402a5e
KH
11331 * chartab.c (sub_char_table_ref_and_range): Fix the range check
11332 against max_char.
11333
fb6b6049
KH
11334 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
11335 calling XSYMBOL (sym).
11336
65156807
EZ
113372009-07-11 Eli Zaretskii <eliz@gnu.org>
11338
1ac9108a
SM
11339 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
11340 New function.
11341 (directory_files_internal) [WINDOWSNT]:
11342 Bind w32-get-true-file-attributes to either t or nil, depending whether
65156807
EZ
11343 the filesystem of the directory is fast or slow.
11344
11345 * w32.c (logon_network_drive): Don't assume PATH is an absolute
11346 file name.
11347 (is_slow_fs): New function.
11348 (stat): Use it to determine whether to issue more system calls to
11349 get accurate file attributes, when w32-get-true-file-attributes is
11350 `local'.
11351
e0ab5fcf
JD
113522009-07-10 Jan Djärv <jan.h.d@swipnet.se>
11353
11354 * xfns.c (Fx_select_font): Remember last font selected in
31fd7c5c 11355 x_last_font_name and use that the next time. Also try the frame
e0ab5fcf
JD
11356 parameter font-parameter as default to the font dialog.
11357
784ceded
KH
113582009-07-10 Kenichi Handa <handa@m17n.org>
11359
11360 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
11361
fb8edc0b
EZ
113622009-07-09 Eli Zaretskii <eliz@gnu.org>
11363
1ac9108a 11364 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
017dab84 11365
fb8edc0b
EZ
11366 * w32.c (stat): Treat UNC file names as residing on remote
11367 drives. (Bug#3542)
11368
635c75b1
KH
113692009-07-09 Kenichi Handa <handa@m17n.org>
11370
11371 * fontset.c (fontset_find_font): Fix previous change.
11372
c1d5ce94
MA
113732009-07-08 Michael Albinus <michael.albinus@gmx.de>
11374
11375 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
11376 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
11377 error flag.
11378
edb61b39
KH
113792009-07-08 Kenichi Handa <handa@m17n.org>
11380
374bf7e4
KH
11381 * fontset.c (fontset_find_font): Fix the logic of handling
11382 charset_matched.
11383 (font_for_char): Delete unused var.
11384 (generate_ascii_font_name): Delete it.
11385
edb61b39
KH
11386 * coding.h (JIS_TO_SJIS2): Fix the code range check.
11387
11388 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
11389 (encode_coding_sjis): Fix the code range check.
11390
0f3f018c
CY
113912009-07-07 Chong Yidong <cyd@stupidchicken.com>
11392
11393 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
11394 (Fexpand_file_name): Copy string data properly (Bug#3772).
11395
fcaf6f3a
JD
113962009-07-07 Jan Djärv <jan.h.d@swipnet.se>
11397
11398 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
11399 first MapNotify.
11400
6809ca75
KH
114012009-07-07 Kenichi Handa <handa@m17n.org>
11402
11403 * character.h (unibyte_has_multibyte_table): Delete extern.
11404 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
11405
11406 * charset.c (Fset_charset_priority): Update charset_unibyte.
11407 (syms_of_charset): Initialize charset_unibyte.
11408
11409 * character.c (unibyte_has_multibyte_table): Delete it.
11410 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
11411 charset_unibyte.
11412 (multibyte_char_to_unibyte_safe): Likewise.
11413 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
11414
1ac9108a 11415 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
6809ca75
KH
11416 (x_produce_glyphs): Likewise.
11417
11418 * .gdbinit (xcharset): Fix the treating $arg0.
11419
ad9e2d54
EZ
114202009-07-04 Eli Zaretskii <eliz@gnu.org>
11421
11422 Emulation of `getloadavg' on MS-Windows.
50426a04 11423 * w32.c: Include float.h.
ad9e2d54
EZ
11424 (g_b_init_get_native_system_info, g_b_init_get_system_times)
11425 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
11426 (get_native_system_info, get_system_times): New functions.
11427 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
11428 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
11429 (globals_of_w32): Initialize g_b_init_get_native_system_info,
11430 g_b_init_get_system_times, and num_of_processors.
11431
0a3472c7
JR
114322009-07-03 Jason Rumney <jasonr@gnu.org>
11433
11434 * w32term.c (w32_initialize): Use standard types.
11435
80904120
EZ
114362009-07-03 Eli Zaretskii <eliz@gnu.org>
11437
11438 * dired.c (Ffile_attributes): Decode user and group names by the
11439 locale's encoding. (Bug#3443)
11440
6978862d
DN
114412009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
11442
f8d23104
DN
11443 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
11444 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
11445
11446 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
11447
11448 * term.c (init_tty): Remove spurious #ifdef.
11449
6978862d
DN
11450 * m/mips.h: Mention this file is also used for netbsd.
11451 * m/pmax.h: Remove file.
11452
e044e4fc
JD
114532009-07-03 Jan Djärv <jan.h.d@swipnet.se>
11454
11455 * xterm.h (struct x_display_info): Add invisible_cursor.
11456 (struct x_output): Add current_cursor.
11457
11458 * xterm.c (XTtoggle_invisible_pointer): New function.
11459 (x_define_frame_cursor): Don't define cursor if invisible or the
11460 same as before. Set current_cursor.
11461 (x_create_terminal): Set toggle_invisible_pointer_hook.
11462
11463 * xfns.c (make_invisible_cursor): New function.
11464 (x_set_mouse_color): Call make_invisible_cursor.
11465 Set current_cursor.
11466 (x_window): Set current_cursor.
11467
11468 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
11469
11470 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
11471 inserting a character.
11472 (read_avail_input): Call frame_make_pointer_visible.
11473
11474 * frame.c (Vmake_pointer_invisible): New variable.
1ac9108a
SM
11475 (frame_make_pointer_invisible, frame_make_pointer_visible):
11476 New functions.
e044e4fc
JD
11477 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
11478
11479 * frame.h: Declare frame_make_pointer_invisible and
11480 frame_make_pointer_visible.
11481 (struct frame): Add pointer_invisible.
11482
574c8efa
JD
114832009-07-02 Jan Djärv <jan.h.d@swipnet.se>
11484
7b507248
JD
11485 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
11486 frame isn't visible.
11487 (xg_frame_resized): If width/height is -1, get size of window
11488 from X server.
11489
11490 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
11491 for MapNotify.
11492
835bdaa7 11493 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
31fd7c5c 11494 here or call change_frame_size. Just call flush_and_sync.
1ac9108a 11495 (flush_and_sync): Reintroduce.
574c8efa 11496
3f1c6666 114972009-07-01 Jan Djärv <jan.h.d@swipnet.se>
69b16610 11498
31fd7c5c 11499 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
acd51077
JD
11500
11501 * xterm.c (x_handle_net_wm_state): Also look for sticky.
11502 (x_term_init): Initialize Xatom_net_wm_state_sticky.
11503
11504 * frame.h: Declare Qsticky.
11505
cad9ef74
JD
11506 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
11507
11508 * nsfns.m (ns_frame_parm_handlers): Ditto.
11509
11510 * frame.c: Declare Qsticky.
11511 (frame_parms): Add sticky.
11512
11513 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
11514
11515 * xterm.h: Declare x_set_sticky.
11516
11517 * xterm.c (x_set_sticky): New function.
11518
69b16610
JD
11519 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
11520 (xg_tool_bar_menu_proxy): Attach enter/leave events to
11521 xg_tool_bar_proxy_help_callback.
3f1c6666
JD
11522
11523 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
11524
11525 * frame.c: Qmaximized is new.
11526 (x_set_frame_parameters): Do not handle fullscreen specially.
11527 Only set width and height if explicitly set.
11528 (x_set_fullscreen): Handle Qmaximized.
11529 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
11530 (syms_of_frame): Initialize Qmaximized.
11531
1ac9108a
SM
11532 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
11533 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
3f1c6666
JD
11534
11535 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
31fd7c5c
JB
11536 for Expose event. Add call to x_check_fullscreen for MapNotify event.
11537 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
3f1c6666
JD
11538 set gravity to NorthWestGravity when USE_GTK.
11539 (set_wm_state): New function.
31fd7c5c 11540 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
3f1c6666
JD
11541 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
11542 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
31fd7c5c 11543 or the case when no window manager is running. That means remove calls
3f1c6666
JD
11544 to x_real_positions and x_fullscreen_adjust.
11545
11546 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
11547 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
11548 flush_and_sync.
11549 (xg_height_changed): New function.
11550 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
1ac9108a
SM
11551 and gtk_window_set_policy. Set frame gravity after parsing the
11552 geometry string.
3f1c6666
JD
11553 (xg_update_frame_menubar, free_frame_menubar)
11554 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
11555 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
11556 Remove calls to xg_frame_set_char_size.
11557
fd503d99
KH
115582009-07-01 Kenichi Handa <handa@m17n.org>
11559
11560 * keyboard.c (decode_keyboard_code): New function.
11561 (tty_read_avail_input): Decode the input bytes if necessary.
11562
1ac9108a
SM
11563 * coding.c (setup_coding_system):
11564 Initialize coding->carryover_bytes to 0.
fd503d99
KH
11565 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
11566 use Qno_conversion.
11567
24ed93fb
YM
115682009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11569
11570 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
11571
99061dfc
CY
115722009-06-30 Chong Yidong <cyd@stupidchicken.com>
11573
1ac9108a 11574 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
99061dfc 11575
ff90fbde
JR
115762009-06-30 Jason Rumney <jasonr@gnu.org>
11577
11578 * w32term.c (w32_initialize): Use GetModuleHandle for library that
11579 is already loaded.
11580 Set user model ID if supported (bug#1849).
11581
5f445726
JM
115822009-06-29 Jim Meyering <meyering@redhat.com>
11583
11584 Remove useless if-before-xfree test.
11585 * nsfont.m (nsfont_close): Remove useless test.
11586 * term.c (delete_tty): Likewise.
11587 * w32.c (system_process_attributes): Likewise.
11588 * w32font.c (w32font_close): Likewise.
11589 * xfaces.c (x_free_gc): Likewise.
11590 * xselect.c (buffer): Likewise.
11591
b9607587
AS
115922009-06-28 Andreas Schwab <schwab@linux-m68k.org>
11593
11594 * process.c (send_process): Keep decoded string in a local
11595 variable and protect it from GC. (Bug#3521)
11596
89ba96f4
EZ
115972009-06-28 Eli Zaretskii <eliz@gnu.org>
11598
11599 * term.c (create_tty_output) [MSDOS]: #ifdef away.
11600 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
11601
098a1589
CY
116022009-06-28 Chong Yidong <cyd@stupidchicken.com>
11603
485422be
CY
11604 * xdisp.c (start_display, handle_face_prop)
11605 (move_it_vertically_backward, cursor_row_fully_visible_p)
1ac9108a
SM
11606 (redisplay_window, try_window_id, produce_image_glyph):
11607 Delete some #ifdef-ed out code chunks that are now obsolete.
485422be 11608
098a1589
CY
11609 * xterm.c (x_update_window_begin, x_new_focus_frame)
11610 (x_scroll_bar_handle_click, handle_one_xevent)
11611 (handle_one_xevent, XTread_socket, x_focus_on_frame)
11612 (x_make_frame_visible, x_make_frame_invisible)
11613 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
11614 code chunks that are now obsolete.
11615
78c38319
MA
116162009-06-28 Michael Albinus <michael.albinus@gmx.de>
11617
11618 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
11619 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
11620 for hours, when optimzation is enabled.
11621 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
11622 (xd_read_message): Make them static.
11623
4189ed40
CY
116242009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
11625
11626 * term.c (turn_on_face): Allow simultaneously bold and dim
11627 terminal faces (Bug#3530).
11628
cd9b5e16
CY
116292009-06-27 Chong Yidong <cyd@stupidchicken.com>
11630
4e23bedb
CY
11631 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
11632
cd9b5e16
CY
11633 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
11634 truncation glyphs (Bug#3686).
11635
07cc3c35
GM
116362009-06-27 Glenn Morris <rgm@gnu.org>
11637
11638 * m/pmax.h: Restore file, with only netbsd portions.
11639
31fd7c5c 116402009-06-26 David Reitter <david.reitter@gmail.com>
25c5550f 11641
cd9b5e16 11642 * nsterm.m (keydown): Avoid infinite loop.
25c5550f 11643
42d4a64f
KH
116442009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
11645
11646 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
11647 the arg FORCE_SYMBOL.
11648
930fe55b 116492009-06-25 Kenichi Handa <handa@m17n.org>
a71ccf3a
KH
11650
11651 * fontset.c (fontset_find_font): When a usable rfont_def is found
11652 in a fallback font-group, make it the first element of the group.
11653
57ebc3fd
CY
116542009-06-24 Chong Yidong <cyd@stupidchicken.com>
11655
11656 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
11657
f084f942
KH
116582009-06-24 Kenichi Handa <handa@m17n.org>
11659
11660 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
11661 set for C.
11662 (fontset_font): Record the availability of a font for C both in
11663 the realized fontsets of the current one and the default one.
11664
2f686c87
DN
116652009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
11666
11667 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
11668 conditional, it is always defined on AIX.
11669
666e158e
MB
116702009-06-23 Miles Bader <miles@gnu.org>
11671
11672 * window.c (Vrecenter_redisplay): New variable.
11673 (syms_of_window): Initialize it.
11674 (Qtty): New extern declaration.
11675 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
11676
c6da7cd2
JM
116772009-06-23 Jim Meyering <meyering@redhat.com>
11678
1ac9108a
SM
11679 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
11680 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
632c2030 11681 pointer dereferences are guaranteed to be valid.
c6da7cd2 11682
678dca3d
KH
116832009-06-23 Kenichi Handa <handa@m17n.org>
11684
74d75424
KH
11685 * emacs.c (main): Call init_font ().
11686
11687 * font.h (Vfont_log): Extern it.
11688 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
11689
11690 * font.c (font_sort_entities, font_list_entities)
11691 (font_matching_entity, font_open_entity)
11692 (font_close_object): Change font_add_log to FONT_ADD_LOG.
11693 (Vfont_log): Delete static.
11694 (font_log_env_checked): Delete this variable.
11695 (font_add_log): Don't check font_log_env_checked.
11696 (font_deferred_log): Check Vfont_log.
11697 (init_font): New function.
11698
678dca3d
KH
11699 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
11700
11701 * w32font.c: Change font_add_log to FONT_ADD_LOG.
11702
11703 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
11704
11705 * xfont.c: Change font_add_log to FONT_ADD_LOG.
11706
11707 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
11708 (face_for_char): Don't call font_deferred_log here.
11709 (font_for_char): Likewise.
11710
8a668709
CY
117112009-06-22 Chong Yidong <cyd@stupidchicken.com>
11712
9a01ee33
CY
11713 * w32term.c (x_draw_glyph_string): Use the glyph string's width
11714 rather than its background_width for drawing the overline and
11715 underline (Bug#489).
11716
11717 * xterm.c (x_draw_glyph_string): Use the glyph string's width
11718 rather than its background_width for drawing the overline and
11719 underline (Bug#489).
ec7c9926
CY
11720 (xg_default_icon_file): New variable.
11721 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
11722 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
9a01ee33 11723
8a668709
CY
11724 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
11725 (load_overlay_strings): Remove externs.
11726 (fast_find_position): Function deleted.
11727 (mouse_face_from_buffer_pos): New function, based on
11728 fast_find_position. Correctly handle before-strings,
11729 display-strings, and after-strings (Bug#1220).
11730 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
11731
4d4c02d8
CY
117322009-06-21 Chong Yidong <cyd@stupidchicken.com>
11733
1ac9108a 11734 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
4d4c02d8
CY
11735 (move_it_in_display_line_to, move_it_in_display_line_to)
11736 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
11737
70243478
CY
117382009-06-21 Chong Yidong <cyd@stupidchicken.com>
11739
11740 * Branch for 23.1.
11741
13087e59
JR
117422009-06-21 Jason Rumney <jasonr@gnu.org>
11743
11744 * w32term.c (keyboard_codepage): New static variable.
11745 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
11746 (w32_read_socket) [WM_CHAR]: Use it to decode character
11747 input (bug#3237).
11748 (w32_initialize): Initialize it.
11749 (codepage_for_locale): New function.
11750
4735b74e
KR
117512009-06-20 Ken Raeburn <raeburn@raeburn.org>
11752
11753 * process.c (status_message): Pass Faset index argument as a lisp
11754 object, so as to work with USE_LISP_UNION_TYPE.
11755
0e727afa
YM
117562009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11757
11758 * coding.c (Ffind_coding_systems_region_internal):
11759 Cache checked characters.
11760
cf299835
KH
117612009-06-18 Kenichi Handa <handa@m17n.org>
11762
1ac9108a 11763 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
cf299835 11764
90f20d94
AS
117652009-06-18 Andreas Schwab <aschwab@redhat.com>
11766
11767 * xdisp.c (redisplay_internal): Check that the frame is still
11768 live after redisplay of its windows.
11769 (redisplay_windows): Check that the window is still live.
11770
7f1faf1c
KH
117712009-06-17 Andreas Schwab <schwab@linux-m68k.org>
11772
11773 * coding.c (detect_coding_utf_16): Fix previous change.
11774
cc13543e
KH
117752009-06-16 Kenichi Handa <handa@m17n.org>
11776
11777 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
11778 UTF-16 by checking the dispersion of Eth and Oth bytes.
11779
977b85f4
AS
117802009-06-15 Andreas Schwab <schwab@linux-m68k.org>
11781
11782 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
11783
66bd43d1
KH
117842009-06-15 Kenichi Handa <handa@m17n.org>
11785
11786 * process.c (status_message): Fix previous change. Be sure to
11787 decode a localized string.
11788
cb5ca9c5
YM
117892009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11790
11791 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
11792 add comment explaining why.
11793
ec7709ba 117942009-06-14 Sidney Markowitz <sidney@sidney.com>
5ee6f629 11795
ec7709ba 11796 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
5ee6f629 11797
4b7f335c
AR
117982009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
11799
11800 * nsfont.m (ns_attribute_value): Remove.
11801 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
11802 (ns_has_attribute): Shrink the normal range.
11803 (ns_findfonts): Don't worry about requested spec in determining
11804 need for synthItal.
e41820ee 11805 (ns_get_covering_families): Retain scriptToFamilies.
4b7f335c 11806
73b26103
SZ
118072009-06-14 Seiji Zenitani <zenitani@mac.com>
11808
11809 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
11810
5753e4da
KH
118112009-06-11 Kenichi Handa <handa@m17n.org>
11812
11813 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
11814 overhang for the static composition case.
11815
3561b671
KH
118162009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11817
5753e4da
KH
11818 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
11819 overhang for the automatic composition case.
11820
3561b671
KH
11821 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
11822 composition case.
11823
852bbd41
CY
118242009-06-10 Chong Yidong <cyd@stupidchicken.com>
11825
11826 * xdisp.c (get_next_display_element): When handling wrap-prefix
11827 and line-prefix, treat \n as a control character (bug#3502).
11828
9903d1e6
KH
118292009-06-10 Kenichi Handa <handa@m17n.org>
11830
11831 * font.c (font_parse_family_registry): Fix for one-char foundry.
11832 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
11833
0bcbaaaa
CY
118342009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
11835
11836 * process.c (status_message): Fix handling of multibyte signal
11837 string (Bug#3499).
11838
40aa3f13
JM
118392009-06-09 Jim Meyering <meyering@redhat.com>
11840
1f80c7e2
CY
11841 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
11842 color name is missing.
40aa3f13 11843
72d51285
KH
118442009-06-09 Kenichi Handa <handa@m17n.org>
11845
11846 * charset.c (Fmap_charset_chars): In docstring, state clearly that
11847 FROM-CODE and TO-CODE are codepoints of CHARSET.
11848
c1d04d84
AR
118492009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
11850
11851 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
11852
118532009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
11854
11855 Changes to support :script/:lang/:otf in NS font driver.
11856 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
11857 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
11858 indicate not part of font driver interface, and change callers.
11859 (ns_get_family): Remove pointless null check.
11860 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
11861 ns_spec_to_descriptor, ns_descriptor_to_entity.
11862 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
11863 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
11864 (ns_spec_to_descriptor, ns_descriptor_to_entity)
11865 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
11866 (ns_get_req_script, ns_accumulate_script_ranges)
11867 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
11868 New functions.
11869 (nsfont_list, nsfont_match): Use ns_findfonts.
11870 (nsfont_open): Use font descriptor instead of traits.
11871 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
11872 (dump_glyphstring): Rename to ns_dump_glyphstring.
11873
c7eb9816
AR
11874 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
11875
c1d04d84
AR
11876 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
11877
11878 * fontset.c (fontset_from_font): Remove NS-specific code.
11879
ec7709ba 118802009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
c1d04d84
AR
11881
11882 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
11883 nonactive windows.
11884
31fd7c5c 118852009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
c1d04d84 11886
1ac9108a 11887 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
c1d04d84 11888
68852c13 118892009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
e7777236
AR
11890
11891 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
11892
6756cd1d
CY
118932009-06-07 Chong Yidong <cyd@stupidchicken.com>
11894
11895 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
11896 account for the overflowing of newlines into the last glyph on the
11897 display line (Bug#3482).
11898
28bf482a
DR
118992009-06-05 David Reitter <david.reitter@gmail.com>
11900
ec7709ba
JB
11901 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
11902 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
28bf482a
DR
11903 Fns_selection_exists_p, Fns_selection_owner_p.
11904
fdb55376
JR
119052009-06-03 Jason Rumney <jasonr@gnu.org>
11906
11907 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
11908 available. (Bug#3379)
11909
05129fbe
KH
119102009-05-29 Kenichi Handa <handa@m17n.org>
11911
1ac9108a
SM
11912 * coding.c (get_translation_table):
11913 Check Venable_character_translation.
05129fbe 11914
ec7709ba 119152009-05-26 David Reitter <david.reitter@gmail.com>
15891144 11916
ec7709ba
JB
11917 * nsterm.m (ns_raise_frame): Only raise frame if visible.
11918 (x_make_frame_visible): Move frame to front rather than calling
15891144 11919 ns_raise_frame().
ec7709ba 11920 (keyDown:): Do not swallow events that aren't re-sent if frame
15891144 11921 isn't key window.
ec7709ba 11922 (drawRect:): Do not set visibility/iconified flags because
15891144
DR
11923 drawRect may be called by NSView even if the frame is hidden.
11924
ec7709ba
JB
11925 * nsfns.m (Fx_create_frame): Follow other ports in
11926 determining visibility; default to t. Ensure async_visible is set.
15891144 11927
21f73755
EZ
119282009-05-23 Eli Zaretskii <eliz@gnu.org>
11929
11930 * dired.c (Ffile_attributes): Doc fix.
11931
34001e41
CY
119322009-05-22 Chong Yidong <cyd@stupidchicken.com>
11933
11934 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
11935
46306a17
SM
119362009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
11937
11938 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
11939 and xfont_scratch_props.
11940 (syms_of_xfont): Do it here instead.
11941 (xfont_find_ccl_program): Delete, unused.
11942 (xfont_open): Delete unused var `i'.
11943
ef6e0694
KH
119442009-05-21 Kenichi Handa <handa@m17n.org>
11945
11946 * fontset.c (Qlatin): Don't make it static.
11947
46306a17
SM
11948 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
11949 New functions.
ef6e0694
KH
11950 (xfont_scripts_cache, xfont_scratch_props): New variables.
11951 (Qlatin, Vscalable_fonts_allowed): Extern it.
46306a17
SM
11952 (xfont_list_pattern): Argument changed. Callers changed.
11953 Check Vscalable_fonts_allowed. Check the support of a script.
ef6e0694
KH
11954 (xfont_list): Don't reject a font spec with :script property.
11955 (xfont_has_char): Fix setting of encoding.
11956 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
11957 xfont_scratch_props.
11958
119592009-05-19 Kenichi Handa <handa@m17n.org>
11960
46306a17 11961 * font.c (font_sort_entities): Rename from font_sort_entites.
ef6e0694
KH
11962 Callers changed.
11963
119642009-05-18 Kenichi Handa <handa@m17n.org>
11965
11966 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
11967
ac71ced7
SM
119682009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11969
11970 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
11971 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
11972
1c6d1051
YM
119732009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11974
11975 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
11976 (x_delete_terminal): Dissociate resource database from display and
11977 then call XrmDestroyDatabase before closing display.
11978
9b9b779c
AR
119792009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
11980
11981 * nsterm.m (ns_read_socket): Remove unused variable.
1564e649
AR
11982 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
11983 whether selected frame is viable before raising it (based on patch
11984 by David Reitter), and improve commentary.
11985 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
9b9b779c 11986
cccd42d5
KH
119872009-05-15 Kenichi Handa <handa@m17n.org>
11988
11989 * font.c (Ffont_spec): Check arguments.
11990
337fbd17
CY
119912009-05-14 Chong Yidong <cyd@stupidchicken.com>
11992
11993 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
11994 weight when testing attributes (Bug#3282).
11995
47a6002f
JD
119962009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11997
11998 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
11999 what we expect to get in the next ConfigureNotify event.
12000
9cb363db
YM
12001 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
12002 before Xft one (Bug#1696).
12003
b9126609
CY
120042009-05-07 David Reitter <david.reitter@gmail.com>
12005
12006 * nsfns.m (Fx_display_planes): Compute bitplanes using
12007 NSBitsPerPixelFromDepth (Bug#3207).
12008
27a69fd9
CY
120092009-05-10 Chong Yidong <cyd@stupidchicken.com>
12010
12011 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
12012
00f37552
TTN
120132009-05-10 Ulrich Mueller <ulm@gentoo.org>
12014
12015 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
12016
2d82a920
DR
120172009-05-07 David Reitter <david.reitter@gmail.com>
12018
ec7709ba
JB
12019 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
12020 Respect mouse face background.
2d82a920 12021
46b0d52d
DR
120222009-05-07 David Reitter <david.reitter@gmail.com>
12023
ec7709ba
JB
12024 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
12025 Mouse movement/highlight: bracket drawing operations
46b0d52d
DR
12026 in ns_update_begin and ns_update_end.
12027
ce1b23bb
SM
120282009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12029
5996e1b7
SM
12030 * nsfns.m (ns_get_screen): Rewrite.
12031 Don't presume selected-frame is of type `ns'.
12032
ba98e3a0
SM
12033 * font.c (font_update_drivers): Sanity fallback to avoid disabling
12034 all drivers.
12035
ce1b23bb
SM
12036 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
12037
bcda200f
YM
120382009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12039
12040 * keyboard.h (add_user_signal): Fix typo in extern.
12041
12042 * lisp.h (add_user_signal): Remove extern.
12043
12044 * unexelf.c (unexec): Consider a section to precede the .bss section
12045 if its addresses overlap that of .bss.
12046 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
12047 instead of dumping process.
12048
864660a2
SM
120492009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
12050
12051 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
12052
50da4e56
SM
120532009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12054
12055 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
12056
51520a1a
DN
120572009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
12058
12059 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
12060 any statements.
12061
409ea3a1
AS
120622009-05-02 Andreas Schwab <schwab@linux-m68k.org>
12063
59c4c60f
AS
12064 * process.c (read_process_output): Make sure the current buffer is
12065 always restored.
12066
409ea3a1
AS
12067 * coding.c (record_conversion_result): Don't modify
12068 Vlast_code_conversion_error for successful result.
12069 (alloc_destination): Don't clobber conversion result. (Bug#1650)
12070
56f00ed2
KH
120712009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
12072
12073 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
896b1cc9 12074 (load_charset_map): Remove unnecessary code.
56f00ed2 12075
4491c9d2
DR
120762009-04-30 David Reitter <david.reitter@gmail.com>
12077
35f5b128 12078 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
4491c9d2
DR
12079 through f24.
12080
6970f632
CY
120812009-04-30 Chong Yidong <cyd@stupidchicken.com>
12082
12083 * xfaces.c (face_at_buffer_position): New arg base_face_id.
12084
12085 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
12086 face_at_buffer_position.
12087 (face_before_or_after_it_pos, get_next_display_element)
12088 (note_mouse_highlight): Update face_at_buffer_position call.
12089
12090 * term.c (term_mouse_highlight):
12091 * msdos.c (IT_note_mouse_highlight):
12092 * fontset.c (Finternal_char_font):
35f5b128 12093 * font.c (font_at, font_range): Update face_at_buffer_position call.
6970f632
CY
12094
12095 * dispextern.h (face_at_buffer_position): Update prototype.
12096
0c616f63
KH
120972009-04-30 Kenichi Handa <handa@m17n.org>
12098
35f5b128 12099 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
0c616f63 12100
ad3aaf33
AS
121012009-04-29 Andreas Schwab <schwab@linux-m68k.org>
12102
12103 * callproc.c (Fcall_process): Fix GC protection. Make sure
12104 current buffer is always restored.
12105
c3c963a0
YM
121062009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12107
12108 * atimer.c (init_atimer): Also clear stopped_atimers.
12109
12110 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
12111
7e3386cb
YM
12112 * process.c (create_process): Clean up merger residues of
12113 2008-07-17 change.
12114
91f68422
CY
121152009-04-29 Ulrich Mueller <ulm@gentoo.org>
12116
12117 * lread.c (Vread_circle): New variable.
12118 (read1): Disable recursive read if Vread_circle is nil.
12119
24b34550
KH
121202009-04-29 Kenichi Handa <handa@m17n.org>
12121
12122 * fontset.h (set_default_ascii_font): Delete extern.
12123
12124 * fontset.c (set_default_ascii_font): Delete this unused function.
12125
12126 * frame.c (x_set_font): When ARG is a font-object, check if the
12127 font-object matches with the ASCII font-spec of the frame's
9c358bda 12128 fontset. If not, create a new fontset for the frame. (Bug #3075)
24b34550 12129
77bf07e1
AS
121302009-04-28 Andreas Schwab <schwab@linux-m68k.org>
12131
12132 * fns.c (Flocale_info): Protect vector from GC during decoding.
12133
12134 * process.c (Fstart_process): Protect argv strings from GC during
12135 encoding.
12136
2c55aacf
AS
121372009-04-27 Andreas Schwab <schwab@linux-m68k.org>
12138
12139 * sysdep.c: Include <ctype.h>.
12140
b892d3c9
DR
121412009-04-27 David Reitter <david.reitter@gmail.com>
12142
35f5b128 12143 * nsfont.m (nsfont_open): Remove unused variable shrink.
b892d3c9
DR
12144 Remove commented-out code.
12145
9d0644c4
JB
121462009-04-26 Johan Bockgård <bojohan@gnu.org>
12147
12148 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
12149
b7053016
JR
121502009-04-25 Jason Rumney <jasonr@gnu.org>
12151
12152 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
12153
4e8231f3
YM
121542009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12155
12156 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
12157 Swap bytes in short integer if fringe bitmap width > 8.
12158
493dcf2c
KH
121592009-04-23 Kenichi Handa <handa@m17n.org>
12160
12161 * xfaces.c (Fx_list_fonts): If a font size is specified in
12162 PATTERN, set it in returned scalable fonts.
12163
401e9e57
CY
121642009-04-22 Chong Yidong <cyd@stupidchicken.com>
12165
708e05dc
CY
12166 * keyboard.c (Fset_input_meta_mode): Doc fix.
12167
12168 * dispnew.c (Fsend_string_to_terminal): Doc fix.
12169
1ac9108a 12170 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
708e05dc
CY
12171
12172 * coding.c (Fterminal_coding_system): Doc fix.
12173
12174 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
12175 (Fx_display_pixel_height, Fx_display_planes)
12176 (Fx_display_color_cells, Fx_server_max_request_size)
12177 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
12178 (Fx_display_mm_height, Fx_display_mm_width)
12179 (Fx_display_backing_store, Fx_display_visual_class)
1ac9108a
SM
12180 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
12181 Doc fixes, replacing "terminal id" with "terminal object".
708e05dc
CY
12182 (check_x_display_info): Handle terminal objects instead of
12183 terminal ids.
12184
401e9e57
CY
12185 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
12186 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
1ac9108a
SM
12187 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
12188 Doc fixes, replacing "terminal id" with "terminal object".
401e9e57 12189
df80c7f0
KH
121902009-04-21 Kenichi Handa <handa@m17n.org>
12191
5a8f12af 12192 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
c0a6070d 12193 (font_score): Check AVGWIDTH too.
908567ef 12194
df80c7f0
KH
12195 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
12196 worst case.
1ac9108a
SM
12197 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
12198 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
df80c7f0 12199
705af33f
JR
122002009-04-19 Jason Rumney <jasonr@gnu.org>
12201
12202 The following changes fix Bug#3005 for wide glyphs on each platform,
b71ac3dd 12203 without reintroducing Bug#1258 for stretch glyphs.
705af33f
JR
12204
12205 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
12206 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
12207 get_phys_cursor_geometry.
12208
b71ac3dd 12209 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
705af33f
JR
12210 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
12211 using get_phys_cursor_geometry.
12212
12213 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
12214 correctly calculated.
12215
dc2933eb
JD
122162009-04-19 Jan Djärv <jan.h.d@swipnet.se>
12217
1ac9108a
SM
12218 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
12219 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
dc2933eb
JD
12220 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
12221 is deprecated.
12222
973e7849
AS
122232009-04-18 Andreas Schwab <schwab@linux-m68k.org>
12224
12225 * font.c (font_put_frame_data): Use xfree instead of free.
12226
314d66f4
JB
122272009-04-17 Juanma Barranquero <lekktu@gmail.com>
12228
12229 * w32font.c (Qja, Qko): Remove declarations.
12230 (syms_of_w32font): Don't DEFSYM them.
12231
cf702558
CY
122322009-04-17 Chong Yidong <cyd@stupidchicken.com>
12233
12234 * font.c (Qja, Qko): Move definitions here from ftfont.c.
12235
12236 * font.h (Qja, Qko): Extern them.
12237
12238 * ftfont.c (Qja, Qko): Remove declarations.
12239
12240 * xfont.c (Qja, Qko): Remove declarations.
12241
b50504f5
KH
122422009-04-17 Kenichi Handa <handa@m17n.org>
12243
bde25748
KH
12244 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
12245 string from a vector to handle Latin-1 characters correctly.
12246
b50504f5
KH
12247 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
12248 entity even if the cache hits.
12249
f4646fff
AS
122502009-04-16 Andreas Schwab <schwab@linux-m68k.org>
12251
12252 * search.c (boyer_moore): Use zero as marker value for a possible
6340c70e 12253 match instead of depending on overflow behavior. (Bug#2844)
f4646fff 12254
e7deaab0
AS
12255 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
12256 * lisp.h: Adjust prototypes.
12257
0a0e7d49
CY
122582009-04-16 Chong Yidong <cyd@stupidchicken.com>
12259
12260 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
12261 change (Bug#3003).
12262
3c908a57
KH
122632009-04-16 Kenichi Handa <handa@m17n.org>
12264
1ac9108a 12265 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
bd0af90d
KH
12266
12267 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
12268 adstyle.
12269
12270 * ftfont.c (Qja, Qko): Don't make them static.
12271 (enum ftfont_cache_for): New enum.
12272 (fc_charset_table): Undo the previous change.
12273 (ftfont_get_latin1_charset): Delete it.
1ac9108a
SM
12274 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
12275 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
bd0af90d
KH
12276 non-scarable font, try to get AVERAGE_WIDTH.
12277 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
12278 Change ft_face_cache from a list of a hash-table. Don't check
12279 `ja' and `ko' adstyle here.
12280 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
12281 FTFONT_CACHE_FOR_CHARET.
12282 (ftfont_get_charset): Undo the previous change.
1ac9108a 12283 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
bd0af90d
KH
12284 (ftfont_close): Likewise.
12285 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
12286
12287 * font.c (font_sort_entites): Change the meaning of the arg
12288 BEST-ONLY. Don't optimize for VEC of lenght 1.
12289 (font_select_entity): Just return the value of font_sort_entites.
12290
12291 * xfaces.c (merge_face_vectors): Reflect font properties in
12292 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
12293 font_clear_prop if a face attribute doesn't change.
12294
3c908a57
KH
12295 * charset.h (charset_ksc5601): Extern it.
12296
12297 * charset.c (charset_ksc5601): New variable.
12298 (Fdefine_charset_internal): Set charset_ksc5601.
12299 (init_charset_once): Initialize charset_ksc5601 to -1.
12300
d65859c3
DN
123012009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
12302
12303 * fileio.c (history_delete_duplicates): Remove unused declaration.
12304
12305 * callint.c (history_delete_duplicates): New declaration.
12306 (Fcall_interactively): Remove command history duplicates when
12307 history_delete_duplicates is true.
12308
3ba010e5
EZ
123092009-04-14 Eli Zaretskii <eliz@gnu.org>
12310
12311 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
12312
06f19b91
KH
123132009-04-14 Kenichi Handa <handa@m17n.org>
12314
12315 * font.c (Ffont_info): Fix docstring. Fix the second element of
12316 the returned value (bug#2949).
12317
2cce8bfc
CY
123182009-04-14 Chong Yidong <cyd@stupidchicken.com>
12319
12320 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
12321
d156542d
KH
123222009-04-14 Kenichi Handa <handa@m17n.org>
12323
12324 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
12325 encoding charset is ascii_compatible.
12326
12327 * charset.c (Fdefine_charset_internal): Make charset
12328 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
12329 code_offset is 0, and covers all ASCII characters.
12330
86fa089e
SM
123312009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
12332
12333 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
12334 (ns_string_to_pasteboard_internal):
12335 * nsmenu.m (process_dialog):
12336 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
12337 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
12338 * lisp.h (Fx_load_color_file): Declare.
12339
a8a3728b
KH
123402009-04-13 Kenichi Handa <handa@m17n.org>
12341
1ac9108a 12342 * font.c (font_delete_unmatched): Preserve the order of list elements.
a8a3728b
KH
12343 (font_select_entity): Suppress the code to optimize for the same
12344 kind of fonts.
12345 (font_load_for_lface): Get a font that supports at least ASCII
12346 characters.
12347
12348 * ftfont.c (Qja, Qko): New variables.
12349 (fc_charset_table): Delete uniquifier data for iso8859-1.
12350 (ftfont_get_latin1_charset): New function.
12351 (get_adstyle_property): New function.
12352 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
12353 bitmap fonts.
12354 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
12355 Delete iso-8859-1 range from the charset of fonts whose adstyle is
12356 `ko' or `ja'.
12357 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
1ac9108a 12358 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
a8a3728b
KH
12359 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
12360 property.
12361 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
12362 (syms_of_ftfont): DEFSYM Qja and Qko.
12363
483670b5
KH
123642009-04-09 Kenichi Handa <handa@m17n.org>
12365
12b55765
KH
12366 * charset.c (map_charset_chars): For a charset of `superset'
12367 method, fix calculation of code range.
12368
483670b5
KH
12369 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
12370 from the list of extra properties.
12371 (font_clear_prop): Be sure to delete `:name' font property.
12372
57d3b93b
KH
123732009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12374
b4b2c2ca
YM
12375 * dispnew.c (redraw_overlapping_rows): Fix detection of
12376 overlapping for topmost and bottommost rows.
12377
1ac9108a 12378 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
57d3b93b 12379
472c3609
JR
123802009-04-06 Jason Rumney <jasonr@gnu.org>
12381
12382 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
12383
ab193662
KH
123842009-04-06 Kenichi Handa <handa@m17n.org>
12385
12386 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
12387
12388 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
12389
0c26f026
KH
123902009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12391
12392 * ftfont.c (ftfont_open): Fix checking of the return value of
12393 FT_Load_Char. Fix setting font->underline_thickness.
12394
e173bbce
CY
123952009-04-04 Chong Yidong <cyd@stupidchicken.com>
12396
12397 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
12398 (Fterminal_parameters, Fterminal_parameter)
12399 (Fset_terminal_parameter): In doc string, refer to terminal
12400 objects rather than terminal ids.
12401
693a2698
EZ
124022009-04-04 Eli Zaretskii <eliz@gnu.org>
12403
12404 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
12405 ret_lim_data. (Bug#2867)
12406
d5221487
CY
124072009-04-03 Chong Yidong <cyd@stupidchicken.com>
12408
12409 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
12410 so they don't get wider than the window, matching 2006-01-23
12411 change to the partner function in xdisp.c (Bug#2800).
12412
223509a3
KH
124132009-04-03 Kenichi Handa <handa@m17n.org>
12414
12415 * print.c (print_object): Make each lowest sub_char_table start a
12416 new line (Bug#2866).
12417
74fcd0b1
KH
124182009-04-02 Kenichi Handa <handa@m17n.org>
12419
12420 * fontset.c (fontset_font): Record no-font when a fontset
12421 explicitly tells not to try another font-specs.
12422
c542407d
SM
124232009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
12424
12425 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
12426
e3869731
KH
124272009-03-30 Kenichi Handa <handa@m17n.org>
12428
d8d2f142
KH
12429 * fontset.c (fontset_from_font): Specify only registry in a
12430 font-spec for all characters supported by that registry.
12431
e3869731
KH
12432 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
12433 even if HAVE_M17N_FLT is not defined.
12434
5da5f805
CY
124352009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
12436
12437 * ftfont.c: Conditionalize prototyping and use of
12438 ftfont_variation_glyphs.
12439
ab226c50
SM
124402009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
12441
9628fed7
SM
12442 * frame.c (delete_frame): Work around compiler bug.
12443
12444 * editfns.c (general_insert_function): Adjust to insdel.c changes.
12445 * insdel.c (prepare_to_modify_buffer, signal_before_change):
12446 Some more EMACS_INT.
12447 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
12448
12449 * xdisp.c (dump_glyph): Fix typo.
12450
ae19ba7c
SM
12451 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
12452 (adjust_markers_gap_motion, adjust_markers_for_delete)
12453 (adjust_markers_for_insert, adjust_point)
12454 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
12455 (make_gap, copy_text, count_size_as_multibyte, insert)
12456 (insert_and_inherit, insert_before_markers)
12457 (insert_before_markers_and_inherit, insert_1)
12458 (count_combining_before, count_combining_after, insert_1_both)
12459 (insert_from_string, insert_from_string_before_markers)
12460 (insert_from_string_1, insert_from_gap, insert_from_buffer)
12461 (insert_from_buffer_1, adjust_after_replace)
12462 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
12463 (replace_range_2, del_range, del_range_1, del_range_byte)
12464 (del_range_both, del_range_2, modify_region)
12465 (prepare_to_modify_buffer, signal_before_change)
12466 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
12467 for buffer positions and sizes.
12468 * lisp.h: Adjust prototypes accordingly.
12469
12470 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
12471 (non_regular_inserted, non_regular_nbytes, read_non_regular)
12472 (Finsert_file_contents): Use EMACS_INT for buffer positions.
12473
ab226c50
SM
12474 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
12475
46dfb8fb
JD
124762009-03-27 Jan Djärv <jan.h.d@swipnet.se>
12477
12478 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
12479 lines and columns so we keep the same pixel height and width.
12480
12481 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
12482 the property _NET_WM_STATE has changed.
46dfb8fb
JD
12483 (x_handle_net_wm_state): New function to update frame parameter
12484 fullscreen.
12485 (x_term_init): Initialize atoms for _NET_WM_STATE.
12486
12487 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
12488
d347e494
SM
124892009-03-27 Kevin Ryde <user42@zip.com.au>
12490
12491 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
12492 Gpm_GetEvent as an error that justifies closing the filedescriptor.
12493 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
12494 (Fgpm_mouse_stop): Pass that new parameter.
12495 * termhooks.h (close_gpm): Adjust prototype.
12496
84db11d6
SM
124972009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
12498
c95a5008
SM
12499 * lisp.h (Fx_focus_frame): Declare.
12500
84db11d6
SM
12501 * callint.c (Fcall_interactively): For '^' just delegate the work to
12502 handle-shift-selection.
12503 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
12504
0a1958d6
CY
125052009-03-24 Chong Yidong <cyd@stupidchicken.com>
12506
0bfdff23
CY
12507 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
12508
0a1958d6
CY
12509 * data.c (Qinteractive_form): New variable.
12510 (Finteractive_form): Use it.
12511
12512 * eval.c (Fcommandp): Use Qinteractive_form.
12513
58aec0d6
JR
125142009-03-24 Jason Rumney <jasonr@gnu.org>
12515
12516 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
12517 Calculate total size precisely. Decode environment variables
12518 before substituting. (Bug#38)
12519
553dd618
KH
125202009-03-24 Kenichi Handa <handa@m17n.org>
12521
12522 * font.c (find_font_encoding): Return Qnil for unsupported
639239cf 12523 encoding (Bug#2722).
553dd618 12524
c39ea606
JD
125252009-03-23 Jan Djärv <jan.h.d@swipnet.se>
12526
12527 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
12528 that gdpy is set.
12529
bc9b2b5e
AM
125302009-03-22 Alan Mackenzie <acm@muc.de>
12531
12532 * callint.c (Finteractive): Clarify the doc string - even
12533 promptless elements need \n separators.
12534
9f995a76
JR
125352009-03-22 Jason Rumney <jasonr@gnu.org>
12536
12537 * w32term.c (syms_of_w32term): Doc fix for
12538 x-use-underline-position-properties.
12539
22749e9a
EZ
125402009-03-21 Eli Zaretskii <eliz@gnu.org>
12541
12542 * w32.c (getpwuid): Change argument type to unsigned.
12543 (struct w32_id): Change type of `rid' member to unsigned.
12544 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
12545 argument ID to unsigned. All callers changed.
12546 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
12547
e00553bf
EZ
125482009-03-20 Eli Zaretskii <eliz@gnu.org>
12549
12550 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
12551 negative, produce a float value.
12552
12553 * dired.c (make_uid, make_gid): New functions.
12554 (Ffile_attributes): Use them to avoid negative UID and GID.
12555
f761d6b6
JB
125562009-03-20 Juanma Barranquero <lekktu@gmail.com>
12557
12558 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
12559 (syms_of_keyboard) <command-hook-internal, input-method-function>:
12560 Fix typos in docstrings.
12561
d507f8d7
KH
125622009-03-19 Kenichi Handa <handa@m17n.org>
12563
12564 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
f761d6b6
JB
12565 changed, use font_load_for_lface to get a new font object.
12566 Call free_realized_fontset after handling ASCII font change.
d507f8d7
KH
12567
12568 * frame.c (x_set_font): Handle the case that ARG is a cons.
12569
c68845e0
GM
125702009-03-19 Glenn Morris <rgm@gnu.org>
12571
12572 * fileio.c (Fsubstitute_in_file_name): Doc fix.
12573
bfa49dd1
CY
125742009-03-19 Chong Yidong <cyd@stupidchicken.com>
12575
12576 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
12577
8458d4c1
KH
125782009-03-19 Kenichi Handa <handa@m17n.org>
12579
12580 * charset.c (load_charset_map_from_file): When a mapfile can't be
12581 loaded, signal an error.
12582
78e7d1fe
EZ
125832009-03-18 Eli Zaretskii <eliz@gnu.org>
12584
12585 * dired.c (Ffile_attributes): Make sure UID and GID are always
12586 positive, even if the value is too large for a positive EMACS_INT.
12587 Doc fix.
12588
12589 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
12590
5da9fdfa
YM
125912009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12592
12593 * xmenu.c (xdialog_show): Move Fredisplay call ...
12594 (Fx_popup_dialog): ... here.
12595
7519c40d
SM
125962009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
12597
12598 * dired.c (file_name_completion): Disable the first optimization just
12599 installed, since it is not implemented correctly.
12600
2cd298e2
SM
126012009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12602
12603 * dired.c (file_name_completion): Check completion-ignored-extensions
c95a5008 12604 only if the entry can affect bestmatch.
2cd298e2
SM
12605 Stop the search early, as Ftry_completion already does.
12606
48d37adf
CY
126072009-03-17 Chong Yidong <cyd@stupidchicken.com>
12608
e10c9c93 12609 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
48d37adf 12610
9286b16a
CY
126112009-03-15 Chong Yidong <cyd@stupidchicken.com>
12612
12613 * keyboard.c (parse_menu_item): Don't display remappings as menu
12614 equivalent bindings (Bug#788).
12615
f7b146dc
JR
126162009-03-15 Jason Rumney <jasonr@gnu.org>
12617
12618 * w32term.h (WM_EMACS_PAINT): New message.
12619 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
12620 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
12621 before passing to lisp thread. (Bug#950)
12622
f761d6b6 126232009-03-14 David Reitter <david.reitter@gmail.com>
c6c62e78 12624
d93f9575
CY
12625 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
12626 variable as it was never reset.
12627 (ns_term_init): Remove initialization of Lisp-settable defaults
12628 and ns_expand_space.
12629 (-setPanelFromDefaultValues): Remove ns_expand_space.
12630 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
12631 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
c6c62e78
DR
12632 i.e. no additional spacing, similar to Carbon port.
12633
d93f9575
CY
12634 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
12635 * nsfns.m (ns-popup-prefs-panel): Remove.
c6c62e78 12636
305018ec
JD
126372009-03-14 Jan Djärv <jan.h.d@swipnet.se>
12638
12639 * sound.c (alsa_configure): Remove call to deprecated
12640 snd_pcm_sw_params_set_xfer_align.
12641
f761d6b6 126422009-03-14 Stephen Berman <stephen.berman@gmx.net>
4a02423f
JD
12643
12644 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
12645 after clicking in a detached tool bar.
12646 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
12647
46e722a9
SM
126482009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
12649
348db3dd
SM
12650 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
12651 int/Lisp_Object mixup).
46e722a9 12652
a3d16f39
KH
126532009-03-13 Kenichi Handa <handa@m17n.org>
12654
12655 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
fe24f56a 12656 Handle NAME nil and t correctly. Callers changed.
a3d16f39
KH
12657 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
12658 (set_fontset_font): Change ARG to a vector. Handle range_list in
12659 ARG correctly.
12660 (Fset_fontset_font): Fix the case that TARGET is both a script
fe24f56a 12661 name and charset name. Adjust the arg to set_fontset_font for
a3d16f39
KH
12662 the above change.
12663 (fontset_from_font): Fix previous change.
fe24f56a 12664 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
a3d16f39
KH
12665 entry. If FONTSET is the default fontset, don't set the extra
12666 slot of the returning char-table.
12667
b066e6b6
JB
126682009-03-12 Juanma Barranquero <lekktu@gmail.com>
12669
12670 * nsfns.m (Fx_close_connection): Doc fix.
12671 (Fns_do_applescript): Reflow docstring.
12672 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
12673 (Fx_display_pixel_width, Fx_display_pixel_height)
12674 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
12675 Fix typos in docstrings.
12676 (Fns_set_alpha): Fix typos in error messages.
12677
d472514e 126782009-03-12 David Reitter <david.reitter@gmail.com>
d6220c13 12679
d472514e 12680 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
d6220c13
DR
12681 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
12682 were used for such events.
12683
d472514e
JB
12684 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
12685 (toggleToolbar, performDragOperation, runHelp): Use it.
d6220c13 12686
d472514e 12687 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
d6220c13
DR
12688 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
12689
fb930676
KH
126902009-03-11 Kenichi Handa <handa@m17n.org>
12691
ff85581a
KH
12692 * font.h (font_open_by_spec): Extern it.
12693
c50b7e98
KH
12694 * font.c (font_open_by_spec): New function.
12695 (font_open_by_name): Use font_open_by_spec.
12696
fb930676
KH
12697 * frame.c (x_set_font): When ARG is a font-object, don't alter the
12698 fontset of the frame.
12699
12700 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
12701 modify the default font of frames that use this fontset.
12702 (num_auto_fontsets): New variable.
12703 (fontset_from_font): Use num_auto_fontsets to decide a fontset
12704 name. Be sure to set FONTSET_ASCII to the correct font name.
12705 (update_auto_fontset_alist): New function.
12706
df4e8455
JB
127072009-03-11 Juanma Barranquero <lekktu@gmail.com>
12708
12709 * makefile.w32-in: Update dependencies.
12710
0a375797
AR
127112009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
12712
12713 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
12714
61313fa3
SM
127152009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
12716
12717 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
12718
b55103fb
CY
127192009-03-10 Chong Yidong <cyd@stupidchicken.com>
12720
12721 * lread.c (Feval_buffer): Doc fix.
12722
dde2559c
KH
127232009-03-09 Kenichi Handa <handa@m17n.org>
12724
12725 * charset.c (Qfile_name_handler_alist): Extern it.
12726 (load_charset_map_from_file): Temporarily bind
12727 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
12728
df4e8455 127292009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
340e08a4 12730
47f588bb
GM
12731 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
12732 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
340e08a4 12733
4ddf94bd
AR
127342009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
12735
4c9bdfc2
AR
12736 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
12737 (x_set_window_size): Change back to calculated method of setting
12738 toolbar height under Cocoa. (Bug#2546)
4ddf94bd
AR
12739 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
12740 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
12741
fe41ae9e
AR
12742 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
12743
4c9bdfc2
AR
12744 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
12745 accelerator in parens under GNUstep.
12746
825d0875
KH
127472009-03-06 Kenichi Handa <handa@m17n.org>
12748
12749 These changes are to detect incorrect composition sequence without
f3b3be74 12750 looking ahead the source. (Bug#2370)
825d0875
KH
12751
12752 * coding.h: Include "composite.h".
12753 (enum compisition_state): New enum.
12754 (struct compisition_status): New struct.
12755 (struct iso_2022_spec): New member cmp_status.
12756 (struct emacs_mule_spec): New struct.
12757 (struct coding_system): New members ctext_extended_segment_len and
12758 embedded_utf_8. Change the union member
12759 spec.emacs_mule_full_support to spec.emacs_mule.
12760
12761 * coding.c (CODING_ISO_CMP_STATUS): New macro.
12762 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
98a326f7 12763 (MAX_ANNOTATION_LENGTH): Define to 5.
825d0875
KH
12764 (ADD_COMPOSITION_DATA): New arg nbytes.
12765 (emacs_mule_char): New arg cmp_status.
12766 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
12767 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
12768 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
12769 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
12770 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
12771 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
12772 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
12773 (EMACS_MULE_COMPOSITION_END): New macro.
12774 (emacs_mule_finish_composition): New function.
12775 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
12776 (decode_coding_emacs_mule): Avoid long looking ahead while
12777 handling composition.
12778 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
12779 (ENCODE_COMPOSITION_RULE): New macro.
12780 (finish_composition): New function.
12781 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
12782 (DECODE_COMPOSITION_START): New implementation.
12783 (DECODE_COMPOSITION_END): Likewise.
12784 (STORE_COMPOSITION_RULE): New macro.
12785 (decode_coding_iso_2022): Avoid long looking ahead while handling
12786 composition, CTEXT extended segment, and embedded UTF-8.
12787 (setup_coding_system): For a coding of type iso-2022, reset
12788 CODING_ISO_EXTSEGMENT_LEN (coding) and
12789 CODING_ISO_EMBEDDED_UTF_8 (coding).
12790 (get_translation): Delete arguments last_block, from_nchars,
12791 to_nchars. Callers changed.
12792 (produce_chars): Don't modify charbuf. Adjusted for the change of
12793 get_translation.
98a326f7 12794 (produce_composition): Adjust for the new annotation sequence.
825d0875 12795 (handle_composition_annotation): Likewise.
98a326f7 12796 (consume_chars): Adjust for the change of get_translation.
825d0875 12797
ccbc4452
AR
127982009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
12799
4ddf94bd 12800 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
ccbc4452 12801
988a7ddb
KH
128022009-03-05 Kenichi Handa <handa@m17n.org>
12803
12804 * font.c (font_select_entity): New function.
12805 (font_find_for_lface): Use font_select_entity to select a font.
12806
12807 * fontset.c (fontset_find_font): If a font found without
a8a3728b 12808 restricting to the characters C doesn't support C, try to find a
988a7ddb
KH
12809 font with C restriction.
12810
98a326f7 128112009-03-04 Nikolaj Schumacher <me@nschum.de>
2f462d73 12812
be1bce46 12813 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
2f462d73 12814
10ea2b82
JR
128152009-03-04 Jason Rumney <jasonr@gnu.org>
12816
2c93b248 12817 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
4891ba1d 12818 characters that have already been read. (Bug#2569)
2c93b248 12819
10ea2b82
JR
12820 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
12821 Log an error message if check_image_size failed.
12822 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
4891ba1d 12823 (gs_load): Mention max-image-size in size error message. (Bug#2560)
10ea2b82 12824
71a0c011
EZ
128252009-03-02 Eli Zaretskii <eliz@gnu.org>
12826
12827 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
12828 when decoding process output.
12829
2f63bba8
RS
128302009-03-01 Richard M Stallman <rms@gnu.org>
12831
12832 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
12833
12834 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
12835
0a9564cb
EZ
128362009-02-28 Eli Zaretskii <eliz@gnu.org>
12837
12838 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
12839 (decode_coding_emacs_mule, decode_coding_iso_2022)
12840 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
12841 (decode_coding_raw_text, decode_coding_charset)
12842 (setup_coding_system, decode_eol, decode_coding, consume_chars):
12843 Honor inhibit-eol-conversion. (Bug #2186)
12844
449148b3
JR
128452009-02-28 Jason Rumney <jasonr@gnu.org>
12846
12847 * coding.c (detect_coding_charset): If not checking latin extra,
12848 fail on characters between 0x80 and 0xA0. (Bug#2354)
12849
a4aee864
EZ
128502009-02-28 Eli Zaretskii <eliz@gnu.org>
12851
12852 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
2a1573ff 12853 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
a4aee864 12854
d88bee5a
GM
128552009-02-27 Glenn Morris <rgm@gnu.org>
12856
12857 * callint.c (Finteractive): Doc fix.
12858
a808f22d
KH
128592009-02-27 Kenichi Handa <handa@m17n.org>
12860
12861 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
12862
caf8d60c
CY
128632009-02-27 Chong Yidong <cyd@stupidchicken.com>
12864
12865 * font.c (font_style_to_value): Set value for unknown symbols to
12866 100 instead of 255.
b61137ea
CY
12867 (weight_table, slant_table, width_table): Treat "unspecified" as
12868 the default value.
caf8d60c 12869
1a0de25c
JB
128702009-02-26 Juanma Barranquero <lekktu@gmail.com>
12871
12872 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
12873
8fc45744
JB
128742009-02-25 Juanma Barranquero <lekktu@gmail.com>
12875
107bd7d1
JB
12876 * lread.c (Fload): Stop checking Vloads_in_progress and signal
12877 error as soon as a recursive load is detected.
8fc45744 12878
f097e223
AR
128792009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
12880
12881 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
12882 before caching.
12883
8810a12f
KH
128842009-02-24 Kenichi Handa <handa@m17n.org>
12885
12886 * fontset.c (fontset_find_font): Fix the condition for checking
12887 unavailable font.
12888
2c7d1565
GM
128892009-02-24 Glenn Morris <rgm@gnu.org>
12890
12891 * xfaces.c (Finternal_set_font_selection_order): Remove leading
12892 whitespace that confuses documentation.
12893
a20878b6
MB
128942009-02-23 Miles Bader <miles@gnu.org>
12895
12896 * process.c (Flist_system_processes, Fprocess_attributes)
12897 (syms_of_process): Rename `system-process-attributes' to
12898 `process-attributes'.
12899
b3b58c01
AS
129002009-02-22 Andreas Schwab <schwab@linux-m68k.org>
12901
1b3b981b
AS
12902 * coding.h (struct coding_system): Make safe_charsets a pointer to
12903 unsigned char.
12904 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
12905 being 255.
12906 (SAFE_CHARSET_P): Likewise.
12907 (setup_iso_safe_charsets): Properly setup safe_charsets.
12908 (Fdefine_coding_system_internal): Likewise.
12909 (setup_coding_system): Likewise. Remove unneeded casts.
12910 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
bba3e508
SM
12911 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS.
12912 Remove unneeded casts.
1b3b981b 12913
b3b58c01
AS
12914 * insdel.c (del_range_2): Don't modify gap contents when called
12915 from decode_coding_object. (Bug#1809)
12916
0b6f228c
CY
129172009-02-21 Chong Yidong <cyd@stupidchicken.com>
12918
12919 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
12920 Qfont_object.
12921 (Ftype_of): Recognize font objects.
12922
12923 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
12924
bba3e508
SM
12925 * font.c (Qfont_spec, Qfont_entity, Qfont_object):
12926 Definitions moved to data.c.
0b6f228c 12927
52f8870b
AR
129282009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
12929
12930 * nsterm.m (x_make_frame_invisible): Unset async_visible,
12931 async_iconified. Based on a patch by Christian Lynbech
12932 <christian.lynbech@tieto.com>.
12933 (EmacsView-windowDidMiniaturize:): Unset async_visible.
12934
7087d5e9
GM
129352009-02-20 Glenn Morris <rgm@gnu.org>
12936
12937 * syntax.c (Fskip_chars_forward): Fix doc typo.
12938
41d2ceef
CY
129392009-02-20 Chong Yidong <cyd@stupidchicken.com>
12940
12941 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
12942
1a3b7ca6
CY
129432009-02-19 Chong Yidong <cyd@stupidchicken.com>
12944
12945 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
12946
73cce38d
KH
129472009-02-19 Kenichi Handa <handa@m17n.org>
12948
12949 * coding.c (detect_coding): Preserve coding->mode.
2bc550cb 12950 Don't overflow coding->carryover. (Bug#2370)
73cce38d 12951
a51092ee
DN
129522009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
12953
12954 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
12955
c423ecca
KH
129562009-02-18 Kenichi Handa <handa@m17n.org>
12957
12958 * font.c (font_check_otf_features): Fix handling of `nil' element.
12959 (Ffont_spec): Describe :lang and :otf in the docstring.
12960
4c1958f4
AS
129612009-02-16 Andreas Schwab <schwab@suse.de>
12962
12963 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
12964 string.
12965
5704f39a
KH
129662009-02-16 Kenichi Handa <handa@m17n.org>
12967
12968 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
a057d86a 12969 (Bug#1723)
5704f39a 12970
8f0085aa
CY
129712009-02-14 Chong Yidong <cyd@stupidchicken.com>
12972
a057d86a 12973 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
8f0085aa
CY
12974
12975 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
12976 (handle_line_prefix): Suppress wrapping of wrap prefixes.
12977
aff01dd9
EZ
129782009-02-14 Eli Zaretskii <eliz@gnu.org>
12979
12980 * msdos.c (MAX_SCREEN_BUF): New macro.
12981 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
12982 Encode the entire run of glyphs sharing the same face, instead of
12983 doing that one glyph at a time (fixes a bug with displaying
12984 double-size characters).
12985
ba301db3
AR
129862009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
12987
12988 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
12989
12990 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
12991 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
a057d86a 12992 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
ba301db3
AR
12993
12994 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
a057d86a 12995 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
ba301db3 12996
51d861de
SM
129972009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
12998
ac146f82 12999 * keyboard.c (adjust_point_for_property): Allow stopping between two
51d861de
SM
13000 invisible areas.
13001
7fed8996
JR
130022009-02-12 Jason Rumney <jasonr@gnu.org>
13003
631ea4fb
JR
13004 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
13005 (add_font_entity_to_list): Call check_face_name even when family
13006 is unspecified.
13007
cb4a3e42
JR
13008 * w32term.c (x_display_pixel_height, x_display_pixel_width):
13009 Release DC when finished. Use NULL window to refer to desktop.
631ea4fb 13010 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
cb4a3e42 13011
7fed8996 13012 * w32font.c (add_font_entity_to_list): Fix check for substituted
631ea4fb 13013 raster fonts. (Bug#2219)
7fed8996 13014
895416e3
KH
130152009-02-12 Kenichi Handa <handa@m17n.org>
13016
13017 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
13018 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
13019 (autocmp_chars): Use fast_looking_at. Don't compose more
1dacf998 13020 characters than MAX_COMPOSITION_COMPONENTS.
895416e3
KH
13021 (find_automatic_composition): While looking forward and backward,
13022 check static composition. Fix where to stop looking forward.
13023 (composition_adjust_point): Fix checking of static composition.
13024 (Fcomposition_get_gstring): Pay attention to
1dacf998 13025 MAX_COMPOSITION_COMPONENTS.
895416e3
KH
13026
13027 * lisp.h (fast_looking_at): Extern it.
13028
13029 * search.c (fast_looking_at): New function.
13030
51d861de 13031 * term.c (encode_terminal_code): Adjust for the change of
895416e3
KH
13032 <struct glyph>.u.cmp.to.
13033 (append_composite_glyph): Likewise.
13034
51d861de 13035 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
895416e3
KH
13036 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
13037 composition.
51d861de 13038 (append_composite_glyph): Adjust for the change of
895416e3
KH
13039 <strcut glyph>.u.cmp.to.
13040
8510724d
JB
130412009-02-11 Juanma Barranquero <lekktu@gmail.com>
13042
13043 * casetab.c (init_casetab_once):
13044 * coding.c (ALLOC_CONVERSION_WORK_AREA):
13045 * font.c (font_update_lface):
13046 * fontset.c (Fnew_fontset):
13047 * ftfont.c (ftfont_drive_otf):
13048 * xfont.c (xfont_open):
13049 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
13050
294fa707
SM
130512009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
13052
13053 * fileio.c (Fwrite_region): !NILP -> CONSP.
13054
b5bfebec
AS
130552009-02-10 Andreas Schwab <schwab@suse.de>
13056
13057 * process.c (send_process): Properly relocate pointer into data
adab88bd 13058 when using encoded data. (Bug#2272)
b5bfebec 13059
cb84a2be
KH
130602009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
13061
13062 * coding.c (detect_coding_charset): Fix previous change.
13063
89e09428
JR
130642009-02-08 Jason Rumney <jasonr@gnu.org>
13065
13066 * w32fns.c (w32_hide_hourglass): Handle case where frame
adab88bd 13067 disappeared while hourglass was displayed. (Bug #2193)
89e09428 13068
4470a277
AS
130692009-02-07 Andreas Schwab <schwab@suse.de>
13070
13071 * unexelf.c (unexec): Fix error message.
13072
3175b12a
AR
130732009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
13074
13075 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
adab88bd 13076 when modal window is active. (Bug #2152)
3175b12a
AR
13077 (applicationShouldTerminate:): Remove now-unneeded while loop
13078 around NSRunAlertPanel.
13079
13080 * nsmenu.m (popupSession): New file-global variable.
13081 (pop_down_menu): End the popupSession before closing dialog.
13082 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
13083 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
13084 don't query NSApp for events (just sleep instead).
13085
8434d0b8
EZ
130862009-02-07 Eli Zaretskii <eliz@gnu.org>
13087
51d861de
SM
13088 * coding.c (syms_of_coding) <translation-table-for-input>:
13089 Modify doc string to discourage use for character code unification.
8434d0b8 13090
aa82edfd
CY
130912009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13092
13093 * atimer.c (run_timers): Update pending_atimers.
13094
2d283c7c
CY
130952009-02-06 Chong Yidong <cyd@stupidchicken.com>
13096
eb306cab
CY
13097 * image.c (svg_load_image): Fix last change.
13098
2d283c7c
CY
13099 * xfns.c (Fx_create_frame): Signal an error if no font is
13100 found (Bug#2147).
13101
4d8e170e
JB
131022009-02-05 Juanma Barranquero <lekktu@gmail.com>
13103
13104 * character.c (syms_of_character) <script-representative-chars>:
13105 Fix typo in docstring.
13106
c96169a0
AR
131072009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
13108
13109 * nsmenu.m (pop_down_menu): New function.
13110 (ns_popup_dialog): Call it on unwind.
13111 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
13112 call timer_check() (Bug#2154).
13113 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
13114 handling_signal is set.
13115 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
13116
31fd7c5c 13117 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
c96169a0
AR
13118
13119 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
13120
13121 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
13122
51d861de
SM
13123 * keyboard.c (poll_for_input_1, handle_async_input):
13124 Set handling_signal under HAVE_NS.
c96169a0 13125
aacd8ba1
GM
131262009-02-04 Glenn Morris <rgm@gnu.org>
13127
13128 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
13129
4cb75c4b
KH
131302009-02-04 Kenichi Handa <handa@m17n.org>
13131
13132 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
13133
13134 * charset.c (Fchar_charset): New optional arg restriction.
13135
13136 * coding.h (coding_system_charset_list): Extern it.
13137
13138 * coding.c (coding_system_charset_list): New function.
13139
13140 * composite.c: Include coding.h and termhooks.h.
13141 (composition_gstring_p): Fix for the terminal case.
13142 (composition_gstring_width): Likewise.
13143 (fill_gstring_body): Likewise.
13144 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
13145 the frame.
13146 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
13147 is within a composition.
867d4bb3 13148 (Fcomposition_get_gstring): Fix the terminal case.
4cb75c4b
KH
13149
13150 * term.c (encode_terminal_code): Fix handling of composition.
13151 (produce_composite_glyph): For static composition, get pixel_width
13152 from struct composition.
13153
826ba17e
AS
131542009-02-02 Andreas Schwab <schwab@suse.de>
13155
13156 * unexelf.c (unexec): Handle unaligned bss offset.
13157
8ad093db
AR
131582009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
13159
13160 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
13161 XT,w32read_socket changes to ns_read_socket.
d0a76a6e 13162
8ad093db
AR
13163 * keyboard.c (handle_interrupt): Don't call
13164 quit_throw_to_read_char() under NS.
d0a76a6e 13165
8ad093db
AR
13166 * blockinput.h: Remove NS-specific code.
13167
4d18a7a2
DN
131682009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
13169
db878925
DN
13170 * dispnew.c (window_change_signal): Don't try to get the size of a
13171 suspended tty frame.
13172 * term.c (Fresume_tty): Resize if the size has changed while the
13173 tty was suspended.
13174
4d18a7a2
DN
13175 * alloc.c (mark_stack): Properly conditionalize previous change.
13176
8984df7c
JB
131772009-01-30 Juanma Barranquero <lekktu@gmail.com>
13178
13179 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
13180 * w32term.c (w32_read_socket) [SYNC_INPUT]:
13181 Remove; this code is not used on Windows.
13182
75f4f1ac
EZ
131832009-01-30 Eli Zaretskii <eliz@gnu.org>
13184
13185 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
13186 EOLs that also has stray ^M characters.
13187
07a1e794
JB
131882009-01-30 Juanma Barranquero <lekktu@gmail.com>
13189
13190 * atimer.c (run_timers, alarm_signal_handler):
13191 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
13192 * w32inevt.c (w32_console_read_socket):
13193 * w32term.c (w32_read_socket):
13194 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
13195
a8b11cc9
CY
131962009-01-30 Chong Yidong <cyd@stupidchicken.com>
13197
13198 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
13199 Initialize it as a relative filename pattern.
13200 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
13201 (Fcall_process_region): Simplify temp file creation using
13202 temporary-file-directory.
13203
c279587b
EZ
132042009-01-29 Eli Zaretskii <eliz@gnu.org>
13205
13206 * msdos.c: Rename pending_signals to msdos_pending_signals.
13207 (sig_suspender, sigprocmask): Adjust.
13208
a8fe3242
CY
132092009-01-29 Chong Yidong <cyd@stupidchicken.com>
13210
13211 * keyboard.c (pending_signals): New var.
13212 (poll_for_input, input_available_signal, init_keyboard): Set it.
13213 (process_pending_signals): New function.
13214
13215 * lisp.h (QUIT): Check pending_signals instead of
13216 interrupt_input_pending. Use process_pending_signals.
13217
51d861de 13218 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
a8fe3242 13219
51d861de 13220 * process.c (wait_reading_process_output): Use process_pending_signals.
a8fe3242
CY
13221
13222 * sysdep.c (emacs_write): Use process_pending_signals.
13223
13224 * xterm.c (XTread_socket): Update pending_signals.
13225
13226 * w32term.c (w32_read_socket): Update pending_signals.
13227
13228 * w32inevt.c (w32_console_read_socket): Update pending_signals.
13229
6570a1c4
KH
132302009-01-29 Kenichi Handa <handa@m17n.org>
13231
13232 * xftfont.c (xftfont_has_char): New function.
13233 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
13234
d72a4afa
AR
132352009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
13236
13237 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
13238 under GNUstep.
13239 (ns_query_color): New declaration.
13240
13241 * nsterm.m (ns_confirm_quit): New variable.
13242 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
13243 (EmacsApp-applicationShouldTerminate:): Use it.
13244 (EmacsPrefsController): Let user set it.
13245 (ns_query_color): New function.
13246 (ns_defined_color): Use it.
13247 (ns_initialize): Drop.
13248 (ns_term_init): Add two lines from ns_initialize(), and set
13249 input_interrupt_mode to nil.
13250
13251 * image.c (svg_load_image): Don't right-shift background RGB when
6af84d77 13252 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
d72a4afa 13253
9fe78804
KH
132542009-01-28 Kenichi Handa <handa@m17n.org>
13255
13256 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
f088b054
KH
13257 (fontset_get_font_group): Remember that no font-group is specified
13258 for C.
9fe78804 13259
fa57de36
CY
132602009-01-27 Chong Yidong <cyd@stupidchicken.com>
13261
930600e9
CY
13262 * fns.c (concat): Check for string overflow (bug#1787).
13263
fa57de36
CY
13264 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
13265 Quadruple undo limits (bug#1501).
13266
7179ce7b
KH
132672009-01-27 Kenichi Handa <handa@m17n.org>
13268
13269 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
13270 directly use GT_Get_Char_index.
13271
13272 * xftfont.c (struct xftfont_info): New member `index'.
13273
13274 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
51d861de 13275 (Ffontset_font): Adjust for the change of fontset entry.
7179ce7b 13276
5be8fcc0
CY
132772009-01-26 Kenichi Handa <handa@m17n.org>
13278
13279 * fontset.c (fontset_find_font): Fix handling of non-cons return
13280 value of fontset_get_font_group.
13281 (fontset_font): Revert last change.
13282
19ae3e61
JR
132832009-01-26 Jason Rumney <jasonr@gnu.org>
13284
13285 * w32font.c (w32font_list_internal): Return quickly if registry is
13286 unknown. Simplify final return.
13287 (add_font_entity_to_list): Break complex logic down into more
13288 manageable chunks. Move unknown registry check to
13289 w32font_list_internal.
13290
8612b71a
AR
132912009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
13292
13293 Changes to remove Feval calls from GUI under NS.
13294
d8038940
JB
13295 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
13296 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
8612b71a
AR
13297 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
13298
13299 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
13300 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
13301 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
13302 instead of NON_ASCII_KEYSTROKE_EVENT.
13303 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
13304 (EmacsApp-applicationShouldTerminate:): Query user.
13305 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
13306 instead of Feval.
13307
13308 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
13309
13310 * keyboard.c (kbd_buffer_get_event): Check for it.
13311 (keys_of_keyboard): Define lispy keys for
13312 ns-put/unput-working-text.
13313
13314 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
13315 versions.
13316 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
13317
6288ae55
CY
133182009-01-25 Chong Yidong <cyd@stupidchicken.com>
13319
13320 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
64cc3cf6 13321 setting current_buffer directly. (Bug#2044)
6288ae55 13322
289e7f8f
CY
133232009-01-24 Chong Yidong <cyd@stupidchicken.com>
13324
5ce87308 13325 * fontset.c (fontset_font): If we know there is no font, don't do
d8038940 13326 any work. (Bug#1952, bug#1990).
5ce87308 13327
64cc3cf6 13328 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
289e7f8f 13329
b3243e6f
AR
133302009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
13331
13332 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
d900b2af
AR
13333 (ns_no_defaults): New declaration.
13334 (main): Use it.
e0d2e69a 13335
d900b2af 13336 * nsterm.h (ns_no_defaults): New declaration.
e0d2e69a 13337
d900b2af 13338 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
e0d2e69a 13339
d900b2af
AR
13340 * nsterm.m (ns_no_defaults): New variable.
13341 (ns_initialize): Don't read defaults when ns_no_defaults.
13342 (EmacsView-readSelectionFromPasteboard:)
13343 (writeSelectionToPasteboard:types:): New stubbed-out methods for
d8038940 13344 NSServicesRequests protocol. (Bug#1435)
27521ca6
AR
13345 (ns_dumpglyphs_stretch): New function.
13346 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
d8038940 13347 of 2008-11-15 to other terms. (Bug#615)
b3243e6f 13348
e0d2e69a
AR
13349 * nsimage.m (setPixmapData:): Set to ignore image DPI.
13350
3ac71f5d
CY
133512009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
13352
13353 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
13354 call for Sparc64.
13355
3fe53a83
AR
133562009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
13357
13358 * nsfns.m:
13359 * nsgui.h:
13360 * nsmenu.m:
13361 * nsselect.m:
13362 * nsterm.h:
13363 * nsterm.m: Remove '23' comments that indicated code added during
13364 update from emacs-20 -> emacs-23.
13365
10f87c6f 133662009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
a3b53a85
AR
13367
13368 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
3a88a825 13369 ns_alternate_modifier. (Bug#1217)
a3b53a85 13370
c7cef62d
AR
13371 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
13372 Display all shortcuts, including those w/o super modifier.
13373
575fb8bd
AR
13374 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
13375
918b848b
CY
133762009-01-22 Chong Yidong <cyd@stupidchicken.com>
13377
13378 * fileio.c (Vwrite_region_post_annotation_function)
13379 (Vwrite_region_annotation_buffers): New vars.
13380 (build_annotations_unwind): Just reset
13381 Vwrite_region_annotation_buffers.
13382 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
13383 Call write-region-post-annotation-function.
13384 (build_annotations): Add to Vwrite_region_annotation_buffers if
13385 buffer changes.
13386
a39e2539
AR
133872009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
13388
13389 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
13390 Tiger.
51d861de
SM
13391 * nsfns.m (ns_do_applescript):
13392 Conditionalize typeUTF16ExternalRepresentation on Tiger.
a39e2539 13393
35ed44db
AR
133942009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
13395
13396 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
13397
cbe0b5bf
AR
133982009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
13399
13400 * nsmenu.m (NSMENUPROFILE): Change #if style.
4c7077c3 13401
6049d3a0
AR
13402 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
13403
13404 * nsterm.m (x_set_frame_alpha): Add prototype.
a9b4df69
AR
13405 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
13406 handle Ctrl-tab. (Bug#1841)
13407 (ns_get_color): Use unsigned long long for scanned hex string value.
13408 (ns_term_shutdown): Abort on non SIGTERM signals.
e889fa06 13409 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
b71ac3dd 13410 (EmacsPrefsController-setPanelFromDefaultValues): New function.
3a88a825 13411 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
35ed44db 13412 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
d3810c21 13413 (ns_defined_color): Fix settings of the XColor variable fields:
3a88a825 13414 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
cbe0b5bf 13415
d3810c21 13416 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
3a88a825 13417 DPI. (Bug#1316)
d3810c21
AR
13418 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
13419 values in onTiger section.
4c7077c3 13420
e301e634
CY
134212009-01-19 Chong Yidong <cyd@stupidchicken.com>
13422
7f82490b
CY
13423 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
13424 Check return value of font_spec_from_name.
64cc3cf6 13425 (Fx_list_fonts): Doc fix. (Bug#1951)
7f82490b
CY
13426
13427 * font.c (font_spec_from_name): Return Qnil if font name could not
13428 be parsed.
13429 (font_parse_name): Treat a `?' character as part of an XLFD.
13430
e301e634
CY
13431 * fns.c (Fsubstring): Doc fix.
13432
1c0db158
KH
134332009-01-19 Kenichi Handa <handa@m17n.org>
13434
51d861de 13435 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
1c0db158
KH
13436 (ftfont_list): Likewise.
13437
acf20901
JB
134382009-01-18 Juanma Barranquero <lekktu@gmail.com>
13439
fff4e459
JB
13440 * dbusbind.c (Fdbus_register_signal):
13441 * process.c (conv_sockaddr_to_lisp):
13442 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
13443
acf20901
JB
13444 * callproc.c (Fgetenv_internal): Doc fix.
13445
e7abcdfb
CY
134462009-01-16 Chong Yidong <cyd@stupidchicken.com>
13447
13448 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
13449 it is not even used.
13450
b60861e6
GM
134512009-01-16 Glenn Morris <rgm@gnu.org>
13452
13453 * font.c (Ffont_variation_glyphs): Silence compiler.
13454
8db52afe
JB
134552009-01-15 Juanma Barranquero <lekktu@gmail.com>
13456
13457 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
13458 Reported by David Robinow <drobinow@gmail.com>.
13459
4cddb209
KH
134602009-01-15 Kenichi Handa <handa@m17n.org>
13461
51d861de 13462 * coding.c (detect_coding_system): Fix handling of null_byte_found.
4cddb209 13463
f247f67b
JR
134642009-01-14 Jason Rumney <jasonr@gnu.org>
13465
13466 * frame.c (x_set_font): Always store a font to the font parameter,
fff4e459 13467 never a fontset. (Bug#1562)
f247f67b 13468
f56a4450
KH
134692009-01-14 Kenichi Handa <handa@m17n.org>
13470
13471 * coding.c (TWO_MORE_BYTES): New macro.
fff4e459 13472 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
f56a4450 13473
4e99855e
CY
134742009-01-13 Chong Yidong <cyd@stupidchicken.com>
13475
13476 * font.c (font_clear_prop): If clearing the family, clear the font
13477 width index too.
13478
fff4e459 13479 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
4e99855e 13480
24f01470
JB
134812009-01-12 Juanma Barranquero <lekktu@gmail.com>
13482
13483 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
13484 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
13485 functions, use sizeof.
13486
a41240a3
MR
134872009-01-12 Martin Rudalics <rudalics@gmx.at>
13488
13489 * keyboard.c (read_char): Fix case where last_nonmenu_event
13490 returned a bad value with submenus. (Bug#447)
13491
944636b8
CY
134922009-01-12 Chong Yidong <cyd@stupidchicken.com>
13493
13494 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
13495 family, clear the font width index too.
13496
0dad7c6f
JR
134972009-01-11 Jason Rumney <jasonr@gnu.org>
13498
13499 * keyboard.c (cmd_error_internal): Exit when errors occur before
13500 frame creation and not in daemon mode. (Bug#1836)
13501
7c2363af
CY
135022009-01-10 Chong Yidong <cyd@stupidchicken.com>
13503
13504 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
13505 of a display vector, backtrack.
13506 (try_window_reusing_current_matrix): Check glyph type before
13507 referencing charpos member.
13508
97b1b294
EZ
135092009-01-10 Eli Zaretskii <eliz@gnu.org>
13510
13511 Fix Bug #876:
13512
13513 * coding.c (inhibit_null_byte_detection): New variable.
13514 (detect_coding, detect_coding_system): Don't pay attention to null
13515 bytes if inhibit_null_byte_detection is non-zero.
51d861de 13516 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
97b1b294
EZ
13517 <inhibit-iso-escape-detection>: Doc fix.
13518
4624b6e3
JR
135192009-01-09 Jason Rumney <jasonr@gnu.org>
13520
13521 * w32font.c (add_font_entity_to_list): Don't report unknown
fff4e459 13522 Windows charset as any unrecognized registry. (Bug#1548)
4624b6e3
JR
13523 Only report Unicode Plane 2 fonts as unicode-sip.
13524
323b840c
CY
135252009-01-09 Chong Yidong <cyd@stupidchicken.com>
13526
51d861de
SM
13527 * xfaces.c (Fx_font_family_list): Delete function.
13528 Move compatibility version to faces.el.
323b840c 13529
51d861de 13530 * font.c (Ffont_family_list): Return a list of strings, not symbols.
323b840c 13531
eba7400d
MR
135322009-01-09 Martin Rudalics <rudalics@gmx.at>
13533
13534 * frame.c (x_set_frame_parameters): Remember requested value for
13535 fullscreen before it's reset by the parameter handler.
13536
4b09796d
GM
135372009-01-09 Glenn Morris <rgm@gnu.org>
13538
13539 * keyboard.c (last_command_char): For clarity, rename to...
46e722a9 13540 (last_command_event): ... and update all users.
4b09796d
GM
13541 (last_input_char): For clarity, rename to...
13542 (last_input_event): ... and update all users.
13543 (last-command-char, last-input-char): Move to subr.el as aliases.
13544 * cmds.c, commands.h: Update for last_command_char rename.
13545
14ccea62
CY
135462009-01-08 Chong Yidong <cyd@stupidchicken.com>
13547
51d861de 13548 * font.c (font_open_for_lface): Handle unspecified height attribute.
14ccea62 13549
5f004711
JR
135502009-01-08 Jason Rumney <jasonr@gnu.org>
13551
13552 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
13553 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
13554 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
13555 Don't declare.
fff4e459 13556 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
5f004711
JR
13557 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
13558
b71f6f73
KH
135592009-01-07 Kenichi Handa <handa@m17n.org>
13560
50b06221 13561 * fileio.c (Finsert_file_contents): In the case of replace,
f56a4450 13562 remember the coding system used for decoding in
50b06221
KH
13563 coding_system (Bug#1039).
13564
b71f6f73 13565 * coding.c (decode_coding_utf_8): Check byte_after_cr before
79a97217 13566 breaking the loop. (Bug#870)
b71f6f73
KH
13567 (decode_coding_utf_16, decode_coding_emacs_mule)
13568 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
13569 (decode_coding_charset): Likewise.
13570
56f668f7
MR
135712009-01-05 Martin Rudalics <rudalics@gmx.at>
13572
13573 * frame.c (x_set_frame_parameters): Make sure height (width) get
13574 applied when fullwidth (fullheight) is set. (Bug#1522)
13575
5da9424d
JB
135762009-01-04 Juanma Barranquero <lekktu@gmail.com>
13577
13578 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
13579 (utc_base): Declare as ULONGLONG, not long double.
13580 (convert_time_raw): Delete.
13581 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
13582 (initialize_utc_base): New function.
13583 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
13584 (convert_from_time_t): Use initialize_utc_base; compute result with
13585 64-bit arithmetic.
13586 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
13587
c4605e09
EZ
135882009-01-03 Eli Zaretskii <eliz@gnu.org>
13589
9acef61c 13590 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
c4605e09
EZ
13591 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
13592 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
13593 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
13594 [!subprocesses]: Define.
13595 (syms_of_process) [!subprocesses]: Intern and staticpro them.
13596 (Flist_system_processes, Fsystem_process_attributes)
13597 [!subprocesses]: Call list_system_processes and
13598 system_process_attributes instead of returning Qnil.
13599
9acef61c
JB
13600 * dosfns.c (system_process_attributes, list_system_processes):
13601 New functions.
c4605e09
EZ
13602
13603 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
13604
13605 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
13606 Don't use the default (no-op) implementation.
13607
8b7d0a16
JR
136082009-01-03 Jason Rumney <jasonr@gnu.org>
13609
a6d46bc1
JR
13610 * keyboard.c (parse_modifiers_uncached): Wheel events are
13611 clicks (bug#687).
13612
8b7d0a16
JR
13613 * w32term.c (x_query_colors, x_query_color): New functions.
13614
13615 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
13616 (svg_load_image): Cast returned pointers from dynamically loaded
13617 functions. Eliminate W32 specific code.
13618
bfe11752
DN
136192009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
13620
89e2438a
DN
13621 * nsfns.m (x_set_foreground_color, x_set_background_color)
13622 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
13623 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
13624 x_ prefix instead of ns_. Update references.
13625 (syms_of_nsfns): Add a FIXME comment.
13626
13627 * nsterm.m (x_set_cursor_type): New prototype.
13628 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
13629
bfe11752
DN
13630 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
13631 for Solaris instead of incorrectly providing Qutime and Qcutime.
13632
031da700
EZ
136332009-01-02 Eli Zaretskii <eliz@gnu.org>
13634
13635 * w32.c (process_times): Compute sum of utime and stime.
13636 (system_process_attributes): Add Qtime to the alist.
13637
13638 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
13639 and add them to the alist.
13640
13641 * process.c (top level) <Qtime, Qctime>: New variables.
13642 (syms_of_process): staticpro them.
13643 (Fsystem_process_attributes): Add their documentation to the doc
13644 string.
13645
13646 * process.h: Declare Qtime and Qctime.
13647
df23bf08
JR
136482009-01-02 Jason Rumney <jasonr@gnu.org>
13649
9acef61c 13650 * image.c (Qgobject): New symbol.
df23bf08
JR
13651 (syms_of_image): Initialize it.
13652 (init_svg_functions): Load some functions from gobject library.
13653
5bbdf7aa
DN
136542009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
13655
13656 * frame.c (make_terminal_frame): Remove redundant code and useless
13657 block.
13658
63136da6
AS
136592009-01-01 Andreas Schwab <schwab@suse.de>
13660
13661 * process.c (conv_sockaddr_to_lisp): Add workaround for
13662 getsockname bug on BSD.
13663
9ef69046
CY
136642009-01-01 Chong Yidong <cyd@stupidchicken.com>
13665
d6fafbe0
CY
13666 * xfns.c (x_create_tip_frame): Set border width of the X window.
13667
51d861de 13668 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
9ef69046 13669
f9c34147
JR
136702009-01-01 Jason Rumney <jasonr@gnu.org>
13671
9acef61c 13672 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
f9c34147
JR
13673 Don't block input, as per earlier xterm.c changes.
13674
f5497e45
AR
136752008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
13676
13677 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
13678 (ns_appkit_version_int): New function.
13679 (x-server-version): Use ns_appkit_version_int and follow 21+
13680 convention of returning 3 integers.
13681
c19cab20
KH
136822008-12-30 Kenichi Handa <handa@m17n.org>
13683
13684 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
13685 (CHAR_SURROGATE_PAIR_P): New macro.
13686
13687 * font.h (struct font_driver): New member get_variation_glyphs.
13688
9acef61c 13689 * font.c (font_range): Don't require a font for a variation selector.
c19cab20
KH
13690 (Ffont_variation_glyphs): New function.
13691 (syms_of_font): Defsubr it.
13692
13693 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
13694 ftfont_variation_glyphs.
13695 (setup_otf_gstring): New function.
13696 (ftfont_drive_otf): Use it.
13697 (ftfont_shape_by_flt): Handle variation selector.
13698 (ftfont_variation_glyphs): New function.
13699
28cd591f
MR
137002008-12-30 Martin Rudalics <rudalics@gmx.at>
13701
13702 * frame.c (Vemacs_iconified): Remove.
13703
7f714baf
JR
137042008-12-30 Jason Rumney <jasonr@gnu.org>
13705
13706 * frame.c (store_frame_param, x_get_arg): Enable newer code on
9acef61c 13707 WINDOWSNT too, as related changes have already been synced. (Bug#117)
7f714baf 13708
9d2d22ab
CY
137092008-12-30 Chong Yidong <cyd@stupidchicken.com>
13710
13711 * indent.c (Fvertical_motion): Don't advance iterator if we have
13712 reseated to the desired position.
13713
13714 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
13715 checking for pos match.
13716
545312c2
KH
137172008-12-30 Kenichi Handa <handa@m17n.org>
13718
1ede3eb6
KH
13719 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
13720 just get the low 8-bit of the code.
13721
545312c2
KH
13722 * font.c (font_intern_prop): Validate str as multibyte.
13723
bd7bbf29
DN
137242008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
13725
31e0750e
DN
13726 * dispextern.h (struct face): Move lface and hash from the middle
13727 of bitfields.
13728
bd7bbf29
DN
13729 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
13730
b5672e7c
DN
137312008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
13732
13733 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
13734 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
13735 instead of intervals.h.
13736
d704470f
AS
137372008-12-26 Andreas Schwab <schwab@suse.de>
13738
13739 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
13740 cons.
13741
54b33868
MR
137422008-12-26 Martin Rudalics <rudalics@gmx.at>
13743
13744 * textprop.c (Qminibuffer_prompt): New variable.
13745 (syms_of_textprop): Initialize it.
13746 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
13747 in minibuffer-prompt face. (Bug#1662)
13748
40b615d6
JR
137492008-12-25 Jason Rumney <jasonr@gnu.org>
13750
13751 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
13752
baae5c2d
JR
137532008-12-24 Jason Rumney <jasonr@gnu.org>
13754
13755 * ralloc.c (r_alloc_reset_variable): New function.
13756
13757 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
9acef61c 13758 record of what points where. (Bug#716)
baae5c2d 13759
a9051c88
DN
137602008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
13761
13762 * minibuf.c (read_minibuf): Follow the non-interactive case when
13763 running as a daemon, before detaching.
13764
8b146312
AS
137652008-12-22 Andreas Schwab <schwab@suse.de>
13766
13767 * buffer.c (init_buffer): Use realloc instead of xrealloc.
13768 * gtkutil.c (free_widget_value): Use xfree instead of free.
13769
56f2de10
MR
137702008-12-22 Martin Rudalics <rudalics@gmx.at>
13771
13772 * frame.c (delete_frame): New function derived from
13773 Fdelete_frame to handle Qnoelisp value for FORCE argument.
13774 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
13775 (Fdelete_frame): Call delete_frame. Remove line from doc-string
13776 saying that FORCE non-nil doesn't run `delete-frame-functions'.
13777 * frame.h: Extern delete_frame.
13778 * window.c (window_loop):
13779 * terminal.c (delete_terminal):
13780 * xterm.c (x_connection_closed):
13781 * xfns.c (Fx_hide_tip):
9acef61c 13782 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
56f2de10 13783
1fc200d6
JR
137842008-12-21 Jason Rumney <jasonr@gnu.org>
13785
13786 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
13787 when character maps to .notdef character.
13788
5e252df2
SM
137892008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
13790
13791 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
13792
99b72cc4
JR
137932008-12-20 Jason Rumney <jasonr@gnu.org>
13794
13795 * frame.c (Fmake_terminal_frame): Raise an error when called from
9acef61c 13796 a graphical frame on Windows. (Bug#1325)
99b72cc4 13797
acc49a52
JD
137982008-12-20 Jan Djärv <jan.h.d@swipnet.se>
13799
13800 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
13801
6ea15123
CY
138022008-12-20 Chong Yidong <cyd@stupidchicken.com>
13803
13804 * minibuf.c (Fread_buffer): Doc fix.
13805
b2dab6c8
JR
138062008-12-20 Jason Rumney <jasonr@gnu.org>
13807
54ea0c87 13808 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
9acef61c 13809 server name in UNC paths. (Bug#719)
54ea0c87 13810
b2dab6c8 13811 * coding.c (decode_coding): Clear chars_at_source flag when using
9acef61c 13812 charbuf. (Bug#1035)
b2dab6c8 13813
6d1921be
DN
138142008-12-19 Daniel Engeler <engeler@gmail.com>
13815
13816 * sysdep.c (serial_configure): Fix typo.
13817
53934c98
DN
138182008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
13819
13820 * sysdep.c: Include alloca.h.
f4f634e8
DN
13821 (system_process_attributes): Add implementation for Solaris.
13822
13823 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
53934c98 13824
06e111a6
DN
138252008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
13826
13827 Reorganize implementation of Flist_system_processes and
13828 Fsystem_process_attributes. No functional changes.
13829 * process.c: Don't #include pwd.h, grp.h and limits.h.
13830 (Flist_system_processes): Just call list_system_processes.
13831 (Fsystem_process_attributes): Just call system_process_attributes.
13832 (procfs_list_system_processes, time_from_jiffies)
13833 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
13834 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
13835
13836 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
13837 (list_system_processes): Rename from
13838 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
13839 Provide a do nothing implementation.
13840 (system_process_attributes): Rename from
13841 procfs_list_system_processes.
13842 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
9acef61c 13843 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
06e111a6
DN
13844
13845 * w32.c (list_system_processes): Rename from
13846 w32_list_system_processes.
13847 (system_process_attributes): Rename from
13848 w32_system_process_attributes.
13849
13850 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
13851
13852 * process.h (w32_list_system_processes)
13853 (w32_system_process_attributes): Remove.
362654a6
JB
13854 (list_system_processes, system_process_attributes):
13855 New prototypes.
06e111a6 13856
6a705b23
KH
138572008-12-19 Kenichi Handa <handa@m17n.org>
13858
13859 * xfont.c (xfont_decode_coding_xlfd): New function.
13860 (xfont_encode_coding_xlfd): New function.
13861 (xfont_list_pattern): Decode XLFD by iso-8859-1.
13862 (xfont_list): Decode and encode XLFD by iso-8859-1.
13863 (xfont_match): Likewise.
13864 (xfont_list_family): Likewise.
13865 (xfont_open): Likewise.
13866
d66c0241 13867 * ftfont.c (ftfont_open): Generate a multibyte string if given
6a705b23
KH
13868 names are utf-8.
13869
d66c0241 13870 * xftfont.c (xftfont_open): Generate a multibyte string if given
6a705b23
KH
13871 names are utf-8.
13872
5a130941
JD
138732008-12-18 Jan Djärv <jan.h.d@swipnet.se>
13874
13875 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
13876 changed.
bfd20325
JD
13877 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
13878 clicked on a detached tool bar button.
5a130941 13879
fd95644b
DN
138802008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
13881
13882 * emacs.c (main): Print and error and exit when no data is read
13883 from the pipe.
13884
e6eee6ae
JR
138852008-12-17 Jason Rumney <jasonr@gnu.org>
13886
13887 * w32font.c (w32font_has_char): Always return -1.
13888
a35dd56b
KH
138892008-12-16 Kenichi Handa <handa@m17n.org>
13890
13891 * font.c (font_open_entity): Fix previous change.
13892
0e3635c2
DN
138932008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
13894
13895 * process.c: Include <limits.h>.
13896
d4835507 138972008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
b5356c39
CY
13898
13899 * font.c (font_update_drivers): Fix mistake in reconstructing the
13900 driver list.
13901
139022008-12-16 Chong Yidong <cyd@stupidchicken.com>
13903
13904 * font.c (font_clear_cache): Fix format of font cache data.
13905
e2cbc401
CY
139062008-12-15 Chong Yidong <cyd@stupidchicken.com>
13907
13908 * xftfont.c (xftfont_open): Free Xft font pattern if
13909 XftFontOpenPattern fails.
13910
13911 * xterm.c (x_free_frame_resources): Remove extraneous call to
13912 free_frame_faces.
13913
b131d535
CY
139142008-12-13 Chong Yidong <cyd@stupidchicken.com>
13915
13916 * xterm.c (x_delete_display): Move xim_close_dpy call to
13917 x_delete_terminal.
13918 (x_delete_terminal): Call xim_close_dpy.
13919
e6df5336
JR
139202008-12-13 Jason Rumney <jasonr@gnu.org>
13921
13922 * w32font.c (intern_font_name): New function.
13923 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
13924 (w32font_open_internal, Fx_select_font): Decode font name.
13925 (fill_in_logfont, list_all_matching_fonts): Encode font name.
13926
13927 * w32font.h (intern_font_name): Declare new function.
13928
13929 * w32uniscribe.c (add_opentype_font_name_to_list):
13930 Use intern_font_name.
13931
20d68145
CY
139322008-12-13 Chong Yidong <cyd@stupidchicken.com>
13933
9f2554de
CY
13934 * frame.c (Fdelete_frame): Call free_font_driver_list.
13935
3d9bec9a
CY
13936 * font.c (free_font_driver_list): Implement missing function.
13937
20d68145
CY
13938 * w32term.c (w32_term_init): Don't initialize the image cache
13939 here; it will be done in init_frame_faces.
13940
13941 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
bba3e508
SM
13942 (struct x_display_info): Remove unused member null_pixel.
13943 New member xim_callback_data.
20d68145
CY
13944
13945 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
13946 (xim_initialize): Save pointer to callback function data.
13947 (xim_close_dpy): Free callback function data. Call XCloseIM,
13948 reverting 2008-11-04 change by David Smith.
13949 (x_term_init): Don't initialize the image cache here; it will be
13950 done in init_frame_faces. Remove ancient "null_pixel" cruft.
13951 (x_delete_display): Free x_dnd_atoms member.
13952
96f9306b
KH
139532008-12-13 Kenichi Handa <handa@m17n.org>
13954
ef1b0ba7 13955 * font.c (font_rescale_ratio): Move from xfaces.c.
6dec9044 13956 Argument type changed. Handle a font-spec too.
96f9306b 13957 (font_score): Check Vface_font_rescale_alist.
6dec9044 13958 (font_open_entity): Likewise. (Bug#1547)
96f9306b 13959
ef1b0ba7 13960 * xfaces.c (font_rescale_ratio): Move to font.c.
96f9306b 13961
8d5b4964
CY
139622008-12-13 Chong Yidong <cyd@stupidchicken.com>
13963
13964 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
13965
e6df5336
JR
139662008-12-12 Jason Rumney <jasonr@gnu.org>
13967
bba3e508
SM
13968 * w32fns.c (x_display_info_for_name, Fx_open_connection):
13969 Set Vwindow_system_version to the real w32 major version.
e6df5336 13970
97c6058a
DN
139712008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
13972
13973 * term.c (init_tty): Move setting the terminal name before the
13974 potential user: maybe_fatal.
13975
ec4e88d7
CY
139762008-12-11 Chong Yidong <cyd@stupidchicken.com>
13977
ef1b0ba7 13978 * term.c (tty_free_frame_resources): Rename from delete_tty_output;
d4835507 13979 all callers changed. Call free_frame_faces to free the face cache.
ec4e88d7 13980
b4233ec9
JR
139812008-12-11 Jason Rumney <jasonr@gnu.org>
13982
8ec71e23 13983 * w32font.c (fill_in_logfont): Don't assume symbol script means
9acef61c 13984 SYMBOL_CHARSET. (Bug#547)
8ec71e23 13985
b4233ec9 13986 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
9acef61c 13987 size for surrogates. (Bug#1096, bug#872)
b4233ec9 13988
011a0143
JB
139892008-12-11 Juanma Barranquero <lekktu@gmail.com>
13990
13991 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
13992
3c309f34
JB
139932008-12-11 Juanma Barranquero <lekktu@gmail.com>
13994
13995 * process.c (Fsystem_process_attributes, syms_of_process):
13996 Fix typo in name of Ssystem_process_attributes.
13997 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
13998
fedc6ab5
JB
139992008-12-11 Juanma Barranquero <lekktu@gmail.com>
14000
14001 * syntax.c (Fmodify_syntax_entry): Doc fix.
14002
ba3de0e8
JB
140032008-12-10 Juanma Barranquero <lekktu@gmail.com>
14004
14005 * font.c (Ffont_spec): Move usage to end of docstring.
14006
174f1c74
JR
140072008-12-10 Jason Rumney <jasonr@gnu.org>
14008
14009 * w32font.c (Qcham): New symbol.
14010 (font_supported_scripts): Add cham, and comments for other new
14011 scripts in bitfield from OpenType spec.
9d32f818
JR
14012 (add_font_entity_to_list): Limit unicode-sip fonts to those that
14013 contain characters beyond the bmp.
174f1c74 14014
7b649478
KH
140152008-12-10 Kenichi Handa <handa@m17n.org>
14016
14017 * ftfont.c (fc_charset_table): Add "unicode-sip".
2ae37cf0 14018 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
7b649478
KH
14019 Qunicode_sip.
14020
2133e2d1
JB
140212008-12-10 Juanma Barranquero <lekktu@gmail.com>
14022
14023 * coding.c (QCdefault_char): Rename from QCdefalut_char.
14024 (Fcoding_system_put): Use QCdefault_char.
14025 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
14026
9af886ee
CY
140272008-12-09 Chong Yidong <cyd@stupidchicken.com>
14028
74d819eb
CY
14029 * xftfont.c (syms_of_xftfont): Fix typo.
14030
4ccfa1c0 14031 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
9af886ee 14032
7c19d3ae
DN
140332008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
14034
14035 * emacs.c (main): Close daemon_pipe on exec.
14036
567826bb
CY
140372008-12-08 Chong Yidong <cyd@stupidchicken.com>
14038
14039 * termchar.h (struct tty): New members termcap_term_buffer and
14040 termcap_strings_buffer.
14041
14042 * term.c (encode_terminal_code): Free any previous memory blocks
4ccfa1c0 14043 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
567826bb
CY
14044 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
14045 All callers changed.
14046 (init_tty): Store termcap data and string buffers in new struct
14047 tty members termcap_term_buffer and termcap_strings_buffer.
14048 (delete_tty): Free them.
4ccfa1c0 14049 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
567826bb 14050
aa96c42b
SZ
140512008-12-07 Seiji Zenitani <zenitani@mac.com>
14052
14053 * nsfns.m (ns_set_background_color): Remove code duplication.
4ccfa1c0 14054 It was a substitute for face-transparency on OS X 10.3.
aa96c42b 14055
b7e1d896
CY
140562008-12-06 Chong Yidong <cyd@stupidchicken.com>
14057
14058 * coding.c (make_conversion_work_buffer): Disable buffer
14059 modification hooks in the work buffer.
14060
b5ec91a5
EZ
140612008-12-05 Eli Zaretskii <eliz@gnu.org>
14062
14063 * process.c (procfs_system_process_attributes): If `nread' has a
14064 negative value, assign zero to it.
14065
a5d2a52b
CY
140662008-12-05 Chong Yidong <cyd@stupidchicken.com>
14067
68c5540b 14068 * eval.c (Vdebug_on_error): Doc fix.
a5d2a52b 14069
7bf1bb21
KH
140702008-12-05 Kenichi Handa <handa@m17n.org>
14071
14072 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
14073 second character is a combining character.
14074
2fdc7d00
EZ
140752008-12-05 Eli Zaretskii <eliz@gnu.org>
14076
14077 * process.c (procfs_system_process_attributes): Don't use cmd,
14078 cmdsize, and q without initializing them first.
14079
bf6bfba8
JR
140802008-12-04 Jason Rumney <jasonr@gnu.org>
14081
14082 * w32font.c (w32font_draw): Initialize orig_clip before getting
14083 it, and delete it when finished.
14084
a3b1a468
DN
140852008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
14086
14087 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
14088 case when running as a daemon before detaching.
14089
8b8be8eb
JB
140902008-12-03 Juanma Barranquero <lekktu@gmail.com>
14091
805f2638 14092 * w32.c (init_environment): Don't unload library shell32.dll.
8b8be8eb 14093
b1bde622
KH
140942008-12-03 Kenichi Handa <handa@m17n.org>
14095
e500c47d
KH
14096 * font.c (font_at): Set `multibyte' at first.
14097
ca516334
KH
14098 * coding.c (decode_coding_charset): Check type of an element of
14099 vector VALIDS.
7bf1bb21 14100 (encode_coding_emacs_mule): Be sure to set `code'.
ca516334 14101
4ccfa1c0 14102 * fontset.c (face_for_char): Handle invalid charset property correctly.
b1bde622
KH
14103 (font_for_char): Likewise.
14104
1e5ecd37
CY
141052008-12-03 Chong Yidong <cyd@stupidchicken.com>
14106
d5b01609 14107 * font.c (Fopen_font): Compute pixel size correctly.
ba207571
CY
14108 (font_update_lface): Handle fonts with corrupted size specs,
14109 i.e. non-int and non-float.
d5b01609 14110
11e3a6e4 14111 * ftfont.c (ftfont_match): Initialize entity variable.
9a48c8cb 14112 (ftfont_resolve_generic_family): Avoid using uninitialized var.
8adb3a3b 14113 (ftfont_list_family): Initialize list var earlier.
11e3a6e4 14114
ab06788b
CY
14115 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
14116
1e5ecd37 14117 * xterm.c (x_draw_glyph_string): Fall back on
0cff82ab 14118 underline_minimum_offset for underline position.
1e5ecd37 14119
63c125ab
DN
141202008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
14121
14122 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
14123
14124 * character.c (c_string_width): Specify the type for LEN.
14125
3a8406e1
KH
141262008-12-03 Kenichi Handa <handa@m17n.org>
14127
4ccfa1c0 14128 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
453b38f0 14129 (decode_coding_utf_8): Likewise.
4ccfa1c0 14130 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
4533845d 14131 (produce_chars): Initialize consumed_chars to 0.
3a8406e1 14132
651df7d9
CY
141332008-12-02 Chong Yidong <cyd@stupidchicken.com>
14134
14135 * keyboard.c (make_lispy_position): Only use PT if the selected
14136 window is current.
14137
1f625c6c
AS
141382008-12-02 Andreas Schwab <schwab@suse.de>
14139
f7741ce9
AS
14140 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
14141
1f625c6c
AS
14142 * doprnt.c (doprnt1): Fix size of charbuf.
14143
92bc2678
CY
141442008-12-02 Chong Yidong <cyd@stupidchicken.com>
14145
14146 * keyboard.c (timer_check): Revert last change.
14147
93b9e8cc
JB
141482008-12-02 Juanma Barranquero <lekktu@gmail.com>
14149
14150 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
14151
fd7a37d5
JB
141522008-12-01 Juanma Barranquero <lekktu@gmail.com>
14153
14154 * makefile.w32-in: Update dependencies.
14155 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
14156
c115043b
AS
141572008-12-01 Andreas Schwab <schwab@suse.de>
14158
14159 * font.c (register_font_driver): Use xmalloc.
14160 (font_put_frame_data): Likewise.
14161
f5668d2a
CY
141622008-12-01 Chong Yidong <cyd@stupidchicken.com>
14163
860d96be
CY
14164 * xfaces.c (realize_x_face): Make abort condition clearer.
14165
f5668d2a
CY
14166 * gtkutil.c (update_frame_tool_bar): Initialize variable.
14167
379c17e7
CY
141682008-11-30 Chong Yidong <cyd@stupidchicken.com>
14169
14170 * keyboard.c (timer_check): After a timer runs, ensure that the
14171 selected window's buffer is current.
14172
35f36d65
JB
141732008-11-30 Juanma Barranquero <lekktu@gmail.com>
14174
f952c61c
JB
14175 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
14176 It was accidentally restored by the Unicode merge.
14177
35f36d65
JB
14178 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
14179
b23077df
JB
141802008-11-29 Juanma Barranquero <lekktu@gmail.com>
14181
14182 * w32proc.c: Include "coding.h".
14183 (Fw32_short_file_name): Encode filename passed to Windows API.
14184 (Fw32_long_file_name): Encode filename passed to Windows API and
14185 decode back the result. (Bug#1433)
14186
b8ebe9dd
KH
141872008-11-29 Kenichi Handa <handa@m17n.org>
14188
8cc53f96
KH
14189 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
14190 not before accessing it.
14191
b8ebe9dd
KH
14192 * charset.c (Fdefine_charset_internal): After calculating
14193 min_char, max_char, and fastmap, copy the charset structure again.
14194 (encode_char): Fix the previous change.
14195
59bc82c0
SZ
141962008-11-28 Seiji Zenitani <zenitani@mac.com>
14197
14198 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
14199
14200 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
14201
14202 * nsterm.m (x_set_frame_alpha): New function.
14203
32247e3d
EZ
142042008-11-27 Eli Zaretskii <eliz@gnu.org>
14205
14206 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
14207
b003e5ff
JB
142082008-11-27 Juanma Barranquero <lekktu@gmail.com>
14209
14210 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
14211 pointer to check_face_name.
14212
708550f5
KH
142132008-11-27 Kenichi Handa <handa@m17n.org>
14214
14215 * category.h (SET_CATEGORY_SET): Call set_category_set.
14216 (set_category_set): Extern it.
14217
14218 * category.c (hash_get_category_set): New function.
bba3e508 14219 (Fmodify_category_entry): Adjust for the change of
708550f5
KH
14220 char_table_ref_and_range. Call hash_get_category_set to get a
14221 category set to store in the table.
14222
14223 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
14224 Funify_charset.
14225
2ae37cf0 14226 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
708550f5
KH
14227 (DECODE_CHAR): Check if the decoder vector is ready.
14228 (ENCODE_CHAR): Check if the encoder char-table is ready.
14229 (maybe_unify_char): Extern it.
14230
14231 * charset.c (Vchar_unified_charset_table): Delete it.
14232 (inhibit_load_charset_map): New variable.
14233 (temp_charset_work): New variable.
14234 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
14235 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
14236 New macros.
bba3e508
SM
14237 (load_charset_map): Meaning of control_flag changed.
14238 If inhibit_load_charset_map is nonzero, setup a table in
708550f5
KH
14239 temp_charset_work.
14240 (load_charset): New argument control_flag.
14241 (map_charset_for_dump): New function.
14242 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
14243 map_charset_for_dump.
14244 (Fdefine_charset_internal): If the charset method is MAP, load
14245 mapping tables by calling load_charset.
14246 (Funify_charset): Don't load a mapping table but directly set
14247 Vchar_unify_table.
14248 (maybe_unify_char): New function.
14249 (decode_char): Don't handle the deleted method MAP_DEFERRED.
14250 Handle the case of inhibit_load_charset_map being nonzero.
14251 (encode_char): Don't handle the deleted method MAP_DEFERRED.
14252 Handle the case of inhibit_load_charset_map being nonzero.
14253 (Fclear_charset_maps): Just free temp_charset_work.
14254 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
14255 variable.
14256
bba3e508 14257 * chartab.c (sub_char_table_ref_and_range): Adjust for the
708550f5
KH
14258 change of char_table_ref_and_range.
14259 (char_table_ref_and_range): Change the meaning of argument FROM
14260 and TO. Now the caller must provide initial values for *FROM
14261 and *TO.
14262
bba3e508 14263 * fontset.c (fontset_add): Adjust for the change of
708550f5
KH
14264 char_table_ref_and_range.
14265 (fontset_get_font_group): Likewise.
14266 (Ffontset_info): Likewise.
14267
bba3e508 14268 * keymap.c (describe_vector): Adjust for the change of
708550f5
KH
14269 char_table_ref_and_range. For char-table, put boundary between
14270 non-ASCII and 8-bit characters.
14271
14272 * print.c (print_object): For bool-vector, delete unnecessary
14273 check of ASCII_BYTE_P.
14274
9196133b
JR
142752008-11-26 Jason Rumney <jasonr@gnu.org>
14276
14277 * w32font.c (w32font_open_internal): Don't include external
9acef61c 14278 leading in font height. (Bug#879)
9196133b 14279
9f688acf
GM
142802008-11-26 Glenn Morris <rgm@gnu.org>
14281
14282 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
14283 redefinition with ifdef. (Bug#1383)
14284
90d19aff
AR
142852008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14286
14287 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
14288
4ccfa1c0 142892008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
90d19aff
AR
14290
14291 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
14292 New EmacsView methods.
14293 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
14294 Fixes bug #1048,1357,1414.
14295
142962008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
14297
14298 Fix bug #1362.
14299 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
14300 is not an indexed color.
14301 * nsterm.m (free_indexed_color): Add argument checking.
14302 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
14303
e7d5ecb3
CY
143042008-11-24 Chong Yidong <cyd@stupidchicken.com>
14305
14306 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
14307 Document confirm-after-completion value for
14308 minibuffer-completion-confirm.
14309
c285743c
JR
143102008-11-24 Jason Rumney <jasonr@gnu.org>
14311
14312 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
14313 warning.
14314
b0857706
JR
143152008-11-23 Jason Rumney <jasonr@gnu.org>
14316
14317 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
14318 restored before returning.
14319
14320 * w32font.c (check_face_name): New function.
14321 (add_font_entity_to_list): Use it to filter out common substituted
9acef61c 14322 fonts. (Bug#642)
b0857706 14323
ee50ff07
MR
143242008-11-22 Martin Rudalics <rudalics@gmx.at>
14325
14326 * buffer.c (Fswitch_to_buffer): Reword and mention new option
14327 confirm-nonexistent-file-or-buffer in doc-string.
14328
b8ff72fa
SM
143292008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
14330
14331 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
14332 Fix copy/paste typo. Add checks.
14333
cee53ed4
KH
143342008-11-21 Kenichi Handa <handa@m17n.org>
14335
14336 * coding.c (detect_coding_iso_2022): Reject invalid composition
14337 sequence.
14338 (DECODE_COMPOSITION_START): If the current source is the last
14339 block, and the current composition doesn't end, regard this
14340 sequence as invalid.
14341 (decode_coding_iso_2022): Handle invalid composition sequence.
14342
f6ef1e65
MR
143432008-11-20 Martin Rudalics <rudalics@gmx.at>
14344
14345 * window.c (coordinates_in_window): Don't return
14346 ON_VERTICAL_BORDER for the rightmost position of a mode/header
14347 line when the window is not the rightmost one. (Bug#1372)
14348
e08b1705
MR
143492008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
14350
14351 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
14352
ad98e89f
EZ
143532008-11-15 Eli Zaretskii <eliz@gnu.org>
14354
14355 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
14356 and bright_bg if noninteractive is non-zero.
14357
fb098a4b
CY
143582008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14359
14360 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
14361 x_draw_glyph_string_background.
14362
14363 * w32term.c (x_draw_glyph_string): Likewise.
14364
ce952b6e
CY
143652008-11-15 Chong Yidong <cyd@stupidchicken.com>
14366
14367 * xterm.c (x_draw_glyph_string): Stop drawing the background of
14368 the next glyph string once past the overhang width.
14369
14370 * nsterm.m (ns_draw_glyph_string): Likewise.
14371
14372 * w32term.c (x_draw_glyph_string): Likewise.
14373
26ea7079
CY
143742008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14375
14376 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
14377 double file close.
14378
1c33c906
MR
143792008-11-14 Martin Rudalics <rudalics@gmx.at>
14380
14381 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
14382 dedicated status of window before attempting to display another
14383 buffer in it.
14384
8fc29035
JB
143852008-11-14 Juanma Barranquero <lekktu@gmail.com>
14386
14387 * msdos.c (Fmsdos_long_file_names):
14388 (syms_of_msdos) <dos-unsupported-char-glyph>:
14389 * dosfns.c (Fint86): Fix typos in docstrings.
14390
55fb4286
EZ
143912008-11-14 Eli Zaretskii <eliz@gnu.org>
14392
14393 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
14394
3fda0315
KY
143952008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
14396
14397 * puresize.h (BASE_PURESIZE): Increase to 1260000.
14398
7e849c17
CY
143992008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
14400
14401 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
14402
14403 * frame.h: Negative alpha means "don't touch".
14404
14405 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
14406
14407 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
14408
b9fd67bd
DN
144092008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
14410
14411 * hftctl.c:
14412 * chpdef.h:
14413 * acldef.h: Remove files used only for systems no longer supported.
14414
14415 * Makefile.in: Fix .o alphabetical ordering.
14416 (hftctl.o): Remove dependency, file removed.
14417 (keymap.o, print.o): Depend on charset.h.
14418
d5998e03
KH
144192008-11-10 Kenichi Handa <handa@m17n.org>
14420
2ae37cf0 14421 * character.c (Fget_byte): Fix and make it faster for unibyte target.
d5998e03 14422
be70e183
CY
144232008-11-08 Chong Yidong <cyd@stupidchicken.com>
14424
14425 * dired.c (file_name_completion): If completion_ignore_case is
14426 enabled, ignore case when checking completion-regexp-list.
14427
7cf94eac
EZ
144282008-11-08 Eli Zaretskii <eliz@gnu.org>
14429
14430 * vm-limit.c (get_lim_data): Fix last change.
14431
ee107a89
KH
144322008-11-08 Kenichi Handa <handa@m17n.org>
14433
14434 * character.c (Fget_byte): New function.
14435 (syms_of_character): Defsubr Fget_byte.
14436
5fd15622
CY
144372008-11-07 Chong Yidong <cyd@stupidchicken.com>
14438
14439 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
14440 cursor position is valid after scrolling.
14441
13d62fad
JB
144422008-11-06 Juanma Barranquero <lekktu@gmail.com>
14443
14444 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
14445
a1dd2936
GM
144462008-11-06 Glenn Morris <rgm@gnu.org>
14447
14448 * xterm.c (handle_one_xevent): Don't let popup menus cause
14449 mouse-autoselect-window related window switching. (Bug#1261)
14450
860cd236
CY
144512008-11-04 David Smith <davidsmith@acm.org> (tiny change)
14452
14453 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
14454
653a3150
AS
144552008-11-04 Andreas Schwab <schwab@suse.de>
14456
14457 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
14458
870f5cac
CY
144592008-11-03 Chong Yidong <cyd@stupidchicken.com>
14460
14461 * xfns.c (Fx_wm_set_size_hint): New function.
14462
1e02f3cb
MR
144632008-11-03 Martin Rudalics <rudalics@gmx.at>
14464
14465 * textprop.c (Fprevious_single_char_property_change): Return 0
14466 when there's no change in a string. (Bug#1301)
14467
e630dfc6
MR
144682008-11-02 Martin Rudalics <rudalics@gmx.at>
14469
14470 * frame.c (do_switch_frame): New argument NORECORD passed to
14471 Fselect_window.
14472 (Fselect_frame): New argument NORECORD passed to
14473 do_switch_frame.
14474 (Fset_frame_selected_window): New argument NORECORD passed to
14475 Fselect_frame.
14476 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
14477 in call of do_switch_frame.
14478 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
14479 Handle NORECORD argument in call of Fselect_frame.
14480 * lisp.h (do_switch_frame, Fselect_frame)
14481 (Fset_frame_selected_window): Adjust declarations.
14482 * window.c (select_frame_norecord): New function.
14483 (run_window_configuration_change_hook): Use it and call
14484 Fselect_frame with NORECORD set.
14485 (Fselect_window): Pass NORECORD to Fselect_frame.
14486 (Fset_window_configuration): Handle NORECORD argument in call of
14487 do_switch_frame.
14488 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
14489 Fset_frame_selected_window.
14490 * keyboard.c (command_loop_1): Handle NORECORD in call of
14491 Fselect_frame (currently ifdefd).
14492
9020b223
GM
144932008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
14494
14495 * emacs.c (USAGE2): Untabify.
14496
793ffee8
SM
144972008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
14498
14499 * composite.c (fill_gstring_header): Fix copy/paste typo.
14500
ab6d1131
MR
145012008-10-31 Martin Rudalics <rudalics@gmx.at>
14502
14503 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
14504 (Fother_window): Rename argument and rewrite doc-string.
14505 (select_window_norecord): Fix return value. (Bug#1276)
14506
601a9cf1
JB
145072008-10-30 Juanma Barranquero <lekktu@gmail.com>
14508
14509 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
14510 new frames overriding foreground for tooltips. Based on similar patch
14511 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
14512
813b0652
CY
145132008-10-29 Chong Yidong <cyd@stupidchicken.com>
14514
14515 * emacs.c (Fdaemon_initialized): Initialize nfd.
14516
4414f58f
MR
145172008-10-29 Martin Rudalics <rudalics@gmx.at>
14518
14519 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
14520 (Fwindow_text_height): Clarify doc-strings.
14521 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
14522 doc-string of window-scroll-functions.
14523
ecdcaa09
RS
145242008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
14525
14526 * category.c (syms_of_category): Fix typo in docstring.
14527
23fe745a
JB
145282008-10-28 Juanma Barranquero <lekktu@gmail.com>
14529
14530 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
14531 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
14532 Fix typos in docstrings.
14533
ff808935
DN
145342008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14535
14536 * emacs.c (daemon_pipe): Make non-static.
14537 (IS_DAEMON): Move definition ...
14538 * lisp.h (IS_DAEMON): ... here.
14539 (daemon_pipe): Declare.
14540 (is_daemon): Remove.
14541 * dispnew.c (init_display): Use IS_DAEMON.
14542
fc012771
SM
145432008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14544
14545 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
14546 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
14547
14548 * emacs.c (is_daemon): Remove.
14549 (main): Don't set is_daemon.
14550 (IS_DAEMON): New macro.
14551 (Fdaemonp, Fdaemon_initialized): Use it.
601a9cf1 14552 (Fdaemon_initialized): Write a char into the pipe to make sure the
fc012771
SM
14553 parent exits.
14554 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
14555
d8bdbe6f
CY
145562008-10-27 Chong Yidong <cyd@stupidchicken.com>
14557
d1a072bf
CY
14558 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
14559 over-sized glyph, draw it with the default glyph width.
14560
e2e325aa
CY
14561 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
14562 glyph, draw it with the default glyph width.
14563
14564 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
14565 glyph, draw it with the default glyph width.
14566
d8bdbe6f
CY
14567 * xdisp.c (try_scrolling): When computing the distance from the
14568 scroll margin to PT, try moving some distance past the window
14569 bottom before giving up.
14570
7bfac547
MR
145712008-10-27 Martin Rudalics <rudalics@gmx.at>
14572
14573 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
14574 (Fset_window_buffer): Explain in doc-string that a window can be
14575 "strongly" dedicated to its buffer.
14576
4ff029f6
DN
145772008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
14578
14579 * emacs.c (daemon_name): New variable.
14580 (main): Deal with --daemon=SERVER_NAME.
14581 (Fdaemonp): Return a name if one was passed to --daemon.
14582
5790ef40
DN
145832008-10-26 Romain Francoise <romain@orebokech.com>
14584
f9bd0df9 14585 * emacs.c (daemon_pipe): New variable.
5790ef40
DN
14586 (main): Create a pipe before forking, make the parent exit only after
14587 the child has closed its end of the pipe. Move closing the
14588 descriptors ...
14589 (Fdaemon_initialized): ... here. New function.
14590
f5385255
SM
145912008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
14592
4d632321
SM
14593 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
14594 the previous unoptimized table.
14595
f5385255
SM
14596 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
14597 the distinction between non-nil and non-t value of `dedicated'.
14598
6c56a0f3
CY
145992008-10-25 Chong Yidong <cyd@stupidchicken.com>
14600
14601 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
f5385255 14602 read_char_minibuf_menu_text is large enough to hold the menu string.
6c56a0f3 14603
fec89261
MR
146042008-10-25 Martin Rudalics <rudalics@gmx.at>
14605
14606 * window.c (Fget_buffer_window, Fdelete_windows_on)
14607 (Freplace_buffer_in_windows): Make buffer argument optional and
14608 rename to buffer_or_name.
14609
34fcddd0
CY
146102008-10-24 Chong Yidong <cyd@stupidchicken.com>
14611
f5385255
SM
14612 * xdisp.c (handle_single_display_spec, handle_display_prop):
14613 Undo 2005-05-16 change.
34fcddd0
CY
14614 (handle_stop): Pop iterator if it's loaded with an empty string.
14615 (get_overlay_strings_1): Don't save iterator if it's loaded with
14616 an empty string (bug#1201).
14617
064766f2
KH
146182008-10-24 Kenichi Handa <handa@m17n.org>
14619
14620 * ftfont.c (ftfont_otf_features): Fix previous change.
14621 (ftfont_otf_capability): Check FeatureList.FeatureCount before
14622 calling ftfont_otf_features.
14623
f9bd0df9 146242008-10-24 Kenichi Handa <handa@m17n.org>
064766f2
KH
14625
14626 * font.c (font_match_p): Fix for the case that a vector of
14627 characters is in script-representative-chars.
14628
1dae9197
MA
146292008-10-24 Michael Albinus <michael.albinus@gmx.de>
14630
14631 * dbusbind.c (xd_in_read_queued_messages): New variable.
f5385255 14632 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
1dae9197
MA
14633 (xd_read_queued_messages): Catch Qdbus_error from the macros.
14634 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
777013f2 14635 macro. (Bug#1186)
1dae9197 14636
f9bd0df9 146372008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
9b3362b8
DN
14638
14639 * s/sol2-10.h: New file.
14640
878a4584
JB
146412008-10-23 Juanma Barranquero <lekktu@gmail.com>
14642
14643 * xdisp.c (fill_glyph_string): Fix typo in source (though the
14644 poor beast has survived 9+ years and the jump from xterm.c!).
14645
cd265ca6
MR
146462008-10-23 Martin Rudalics <rudalics@gmx.at>
14647
14648 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
14649 Reword doc-string.
f5385255 14650 (Fbury_buffer): In doc-string say what happens to the buffer's window.
cd265ca6 14651
472a4dc9
JB
146522008-10-23 Juanma Barranquero <lekktu@gmail.com>
14653
14654 * character.c (syms_of_character) <script-representative-chars>:
14655 <unicode-category-table>: Doc fixes.
14656
159bd5a2
NF
146572008-10-23 Noah Friedman <friedman@splode.com>
14658
14659 * coding.c (make_conversion_work_buffer): Check that
14660 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
14661 Fget_buffer_create.
14662
49f9c344
KH
146632008-10-23 Kenichi Handa <handa@m17n.org>
14664
14665 * font.c (font_add_log): Check the values of extra properties.
14666
12bb3111
MR
146672008-10-22 Martin Rudalics <rudalics@gmx.at>
14668
14669 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
14670 Reword doc-string.
14671 (Fset_window_parameter): Use NILP.
14672 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
f5385255 14673 (Frecenter): Use "selected" instead of "current" window in doc-strings.
12bb3111 14674
bbeb4e99
JB
146752008-10-22 Juanma Barranquero <lekktu@gmail.com>
14676
14677 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
14678
146792008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
cb83c00b
AR
14680
14681 * nsfns.m (ns_appkit_version): New function.
14682 (x-server-version): Use it.
14683 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
14684 (x-server-vendor): Don't check_ns().
14685
14686 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
14687
a9b555d3
JB
146882008-10-22 Juanma Barranquero <lekktu@gmail.com>
14689
14690 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
14691 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
14692
4626499f
KH
146932008-10-22 Kenichi Handa <handa@m17n.org>
14694
e3681952
KH
14695 * syntax.c (scan_words): Call word_boundary_p instead of comparing
14696 scripts.
14697
4626499f
KH
14698 * category.c (word_boundary_p): Check scripts instead of charset.
14699 Handle nil value in word-separating-categories and
14700 word-combining-categories.
14701 (syms_of_category): Fix docstrings of word-separating-categories
14702 and word-combining-categories.
14703
1560f91a
EZ
147042008-10-21 Eli Zaretskii <eliz@gnu.org>
14705
14706 * coding.c (Fencode_coding_region, Fdecode_coding_region)
14707 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
14708
f4668441
MR
147092008-10-21 Martin Rudalics <rudalics@gmx.at>
14710
14711 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
14712 Rename arg "buffer" to "buffer_or_name".
14713 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
14714 it optional.
14715 (no_switch_window): Remove since the return value is not used.
a9b555d3 14716 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
f4668441
MR
14717 Consider window as dedicated when Fwindow_dedicated_p returns a
14718 non-nil value.
14719 * lisp.h: Remove prototype for no_switch_window.
14720
fd75ddb2
JD
147212008-10-21 Jan Djärv <jan.h.d@swipnet.se>
14722
14723 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
2ae37cf0 14724 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
fd75ddb2 14725
07295713
KH
147262008-10-21 Kenichi Handa <handa@m17n.org>
14727
14728 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
14729 check Vlatin_extra_code_table.
14730
712adc82
EZ
147312008-10-20 Eli Zaretskii <eliz@gnu.org>
14732
14733 * fileio.c (Fset_file_modes): Doc fix.
14734
f549eb0b
MA
147352008-10-19 Michael Albinus <michael.albinus@gmx.de>
14736
14737 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
14738 in arrays.
14739
aac0c6e3
MR
147402008-10-19 Martin Rudalics <rudalics@gmx.at>
14741
14742 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
14743 Mention kill-buffer in doc-string.
14744 (Fset_window_buffer): Reinsert tem check removed in last commit.
14745 (Fenlarge_window, Fshrink_window): Have argument names and
14746 doc-string follow Elisp manual more closely.
14747
147482008-10-18 Eli Zaretskii <eliz@gnu.org>
14749
14750 * fileio.c (Fset_file_modes): Doc fix.
14751
147522008-10-18 Martin Rudalics <rudalics@gmx.at>
14753
14754 * window.c (Fwindow_width, Fset_window_start)
14755 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
f5385255
SM
14756 (Fdelete_windows_on, Freplace_buffer_in_windows):
14757 Make doc-strings follow code and Elisp manual more closely.
aac0c6e3
MR
14758 (Fwindow_dedicated_p): Make window argument optional.
14759 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
14760 (Fset_window_buffer): Respect any non-nil dedicated value for
14761 window. Rename "buffer" argument to "buffer_or_name".
14762
147632008-10-18 Ulrich Mueller <ulm@gentoo.org>
14764
14765 * m/sh3.h: New file, machine description for SuperH.
14766
147672008-10-17 Martin Rudalics <rudalics@gmx.at>
14768
14769 * window.c (Fsplit_window): Rename arg horflag to horizontal.
14770
147712008-10-17 Kenichi Handa <handa@m17n.org>
14772
14773 * ftfont.c (ftfont_otf_features): Fix indexing
14774 gsub_gpos->FeatureList.Feature. Check the validity of indices.
14775
147762008-10-16 Magnus Henoch <mange@freemail.hu>
14777
14778 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
14779 (Fdbus_call_method_asynchronously): Ditto.
14780 This change makes C-h f display the argument list.
14781
147822008-10-16 Chong Yidong <cyd@stupidchicken.com>
14783
14784 * fileio.c (Fexpand_file_name): Doc fix.
14785
14786 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
14787 of :foreground and :background equivalent to unspecified (20.x
14788 compatibility).
14789
147902008-10-15 Eli Zaretskii <eliz@gnu.org>
14791
14792 * buffer.c (syms_of_buffer): Doc fix.
14793
147942008-10-14 Kenichi Handa <handa@m17n.org>
14795
14796 * font.c (font_clear_prop): When clearing font width, clear the
14797 average width field too.
14798
147992008-10-12 Andreas Schwab <schwab@suse.de>
14800
14801 * ftfont.c (ftfont_shape_by_flt): Make static.
14802 * ftfont.h (ftfont_shape_by_flt): Don't declare.
14803
14804 * font.c: Don't include <m17n-flt.h>.
14805
148062008-10-10 Eli Zaretskii <eliz@gnu.org>
14807
14808 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
14809
148102008-10-09 Eli Zaretskii <eliz@gnu.org>
14811
14812 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
14813 away code.
14814
148152008-10-09 Chong Yidong <cyd@stupidchicken.com>
14816
14817 * dispnew.c (update_text_area): Avoid looping due to large glyph
14818 overhangs (bug#1070).
14819
148202008-10-09 Kenichi Handa <handa@m17n.org>
14821
14822 * fontset.c (face_for_char): If face->fontset is negative, just
14823 return ascii_face.
14824
f5385255
SM
14825 * font.c (font_delete_unmatched): Fix previous change.
14826 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
aac0c6e3
MR
14827
148282008-10-09 Martin Rudalics <rudalics@gmx.at>
14829
14830 * frame.c (Fraise_frame): On text-only terminals select frame in
14831 order to make it visible. (Bug#1061)
14832
148332008-10-08 Chong Yidong <cyd@stupidchicken.com>
14834
14835 * fontset.c (fontset_find_font): Check frame validity.
14836
148372008-10-07 Chong Yidong <cyd@stupidchicken.com>
14838
a9b555d3 14839 * gtkutil.c (xg_display_open): Reset default display if none exists.
aac0c6e3
MR
14840 (xg_display_close): Allow Emacs to close all displays (bug#985).
14841
148422008-10-06 Andreas Schwab <schwab@suse.de>
14843
f5385255 14844 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
aac0c6e3
MR
14845
148462008-10-06 Chong Yidong <cyd@stupidchicken.com>
14847
f5385255 14848 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
aac0c6e3 14849
a9b555d3 14850 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
aac0c6e3
MR
14851
14852 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
14853 during initialization.
14854
148552008-10-04 Eli Zaretskii <eliz@gnu.org>
14856
14857 * xdisp.c (redisplay_internal): If frame switched, redisplay the
14858 whole thing on MSDOS frames as well as on a TTY.
14859
14860 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
14861 well as for TTY.
14862 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
14863 well as on a TTY.
14864
14865 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
14866 as well as for TTY.
14867
14868 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
14869
14870 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
14871 MSDOS frames as well.
14872
148732008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
14874
14875 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
14876 correct arguments.
b71ac3dd 14877 * menu.c (find_and_return_menu_selection): Add cast.
aac0c6e3
MR
14878
148792008-10-03 Glenn Morris <rgm@gnu.org>
14880
14881 * emacs.c (USAGE1): Add --daemon.
14882
148832008-10-02 Eli Zaretskii <eliz@gnu.org>
14884
14885 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
14886 100, so it's in percents as advertised.
14887
148882008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
14889
14890 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
14891 (ns_output.current_cursor, ns_output.desired_cursor)
14892 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
14893 (FRAME_NEW_CURSOR_COLOR): Remove.
14894
14895 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
a9b555d3 14896 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
aac0c6e3
MR
14897 enumeration (HOLLOW_BOX_CURSOR, etc.).
14898
14899 * nsterm.m (ns_frame_rehighlight): Remove commented code.
14900 (draw_window_cursor): Simplify code.
f5385255
SM
14901 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
14902 Don't change cursor type. In latter, call rehighlight instead of doing
aac0c6e3 14903 updates manually.
a9b555d3
JB
14904 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
14905 Use core Emacs cursor types.
aac0c6e3 14906
b8ff72fa 14907 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
aac0c6e3
MR
14908
149092008-10-02 Martin Rudalics <rudalics@gmx.at>
14910
14911 * process.c (Faccept_process_output): Fix doc-string.
14912
149132008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
14914
14915 * gmalloc.c (__sbrk): Also define for uClibc.
14916
14917 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
14918 for uClibc.
14919
149202008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14921
14922 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
14923 styles.
14924 (nsfont_open): Reenable the cache.
14925
149262008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
14927
14928 * font.c (font_matching_entity): Reflect ATTRS in font selection.
14929 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
14930
149312008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
14932
14933 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
14934 a suspended terminal.
14935
149362008-09-30 Michael Albinus <michael.albinus@gmx.de>
14937
14938 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
14939
149402008-09-30 Eli Zaretskii <eliz@gnu.org>
14941
14942 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
14943
149442008-09-30 Chong Yidong <cyd@stupidchicken.com>
14945
14946 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
14947 in a continued line coincides with a line beginning.
14948
149492008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
14950
14951 * nsfont.m (nsfont_trait_distance): Fix bug.
14952 (nsfont_list): Return a list rather than a vector (syncs with Handa
14953 changes of 2008-05-14).
14954 (nsfont_open): Improve logging.
14955
149562008-09-29 Andreas Schwab <schwab@suse.de>
14957
14958 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
14959
149602008-09-28 Martin Rudalics <rudalics@gmx.at>
14961
14962 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
14963 name as char-resolve-modifiers.
14964 Reported by: Markus Triska <markus.triska@gmx.at>
14965
149662008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
14967
14968 * dispnew.c (init_display): Return earlier when running as a daemon.
14969
149702008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
14971
14972 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
14973
149742008-09-27 Eli Zaretskii <eliz@gnu.org>
14975
14976 * composite.c (Fcomposition_get_gstring)
14977 (Fcompose_region_internal, Fcompose_string_internal)
14978 (Ffind_composition_internal): Doc fix.
14979 (syms_of_composite) <compose-chars-after-function>: Doc fix.
14980 (syms_of_composite) <auto-composition-function>: Doc fix.
14981 (syms_of_composite) <composition-function-table>: Doc fix.
14982
149832008-09-25 Chong Yidong <cyd@stupidchicken.com>
14984
14985 * search.c (wordify): New argument for lax word-ends.
14986 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
14987
149882008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
14989
14990 * lisp.h (is_daemon): Declare.
14991 * dispnew.c (init_display): Do not try to initialize the terminal
14992 when running as a daemon.
14993
149942008-09-22 Chong Yidong <cyd@stupidchicken.com>
14995
14996 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
14997 x_display_pixel_height.
14998
149992008-09-22 Martin Rudalics <rudalics@gmx.at>
15000
15001 * undo.c (record_point): Don't call Fundo_boundary for first
15002 change. (Bug#731)
15003
150042008-09-22 Juanma Barranquero <lekktu@gmail.com>
15005
15006 * emacs.c (Fdaemonp): Doc fix.
15007
150082008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
15009
15010 * emacs.c (main): Place #ifdef in the proper place.
15011
150122008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
15013
15014 * emacs.c (standard_args): Add --daemon.
15015 (main): Disconnect from the terminal when --daemon is passed.
15016 (is_daemon): New variable.
15017 (Fdaemonp): New function.
15018 (syms_of_emacs): Defsubr it.
15019
150202008-09-20 Chong Yidong <cyd@stupidchicken.com>
15021
15022 * xdisp.c (get_next_display_element): Handle string display
15023 correctly when checking for the end of a box run.
15024
150252008-09-20 Glenn Morris <rgm@gnu.org>
15026
15027 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
15028 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
15029 (Frename_file): Avoid copying to trash if a rename involves
15030 a delete. (Bug#964).
15031
150322008-09-20 Eli Zaretskii <eliz@gnu.org>
15033
15034 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
15035 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
15036 frames as well as termcap frames.
15037 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
15038 get_named_tty.
15039
150402008-09-19 Eli Zaretskii <eliz@gnu.org>
15041
15042 * process.c (procfs_system_process_attributes): Fix cmdline in
15043 case /proc/PID/cmdline is empty.
15044
15045 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
15046 x_display_pixel_height.
15047
150482008-09-19 Juanma Barranquero <lekktu@gmail.com>
15049
15050 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
15051
15052 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
15053 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
15054
150552008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
15056
15057 * dispextern.h (struct it): Move line_wrap away from the middle of
15058 bitfields. Move voffset in struct iterator_stack_entry after the
15059 bitfields. Move tab_width near after another short.
15060
150612008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
15062
15063 * frame.h (struct frame): Move alpha from the middle of bitfields.
15064
15065 * window.h (struct window): Move frozen_window_start_p after the
15066 rest of the bitfields to reduce padding.
15067
150682008-09-18 Chong Yidong <cyd@stupidchicken.com>
15069
15070 * xterm.h (x_display_info): Remove `height' and `width' members.
15071
15072 * nsterm.h (ns_display_info): Remove `height' and `width' members.
15073
15074 * w32term.h (w32_display_info): Remove `height', `width',
15075 `height_in', and `width_in' members.
15076
b8ff72fa
SM
15077 * xterm.c (x_display_pixel_height, x_display_pixel_width):
15078 New functions.
aac0c6e3
MR
15079 (x_calc_absolute_position): Use them.
15080 (x_term_init): Omit removed `height' and `width' members.
15081
b8ff72fa
SM
15082 * w32term.c (x_display_pixel_height, x_display_pixel_width):
15083 New functions.
aac0c6e3
MR
15084 (w32_read_socket, x_calc_absolute_position): Use them.
15085 (w32_initialize_display_info, w32_term_init): Omit removed members
15086 of w32_display_info.
15087
b8ff72fa
SM
15088 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
15089 New functions.
15090 (ns_initialize_display_info): Omit removed members of ns_display_info.
aac0c6e3 15091
b8ff72fa
SM
15092 * xterm.c (x_display_pixel_height, x_display_pixel_width):
15093 New functions.
aac0c6e3
MR
15094 (x_calc_absolute_position): Use them.
15095 (x_term_init): Omit removed `height' and `width' members.
15096
15097 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
b8ff72fa
SM
15098 (compute_tip_xy):
15099 * frame.c (x_fullscreen_adjust):
aac0c6e3
MR
15100 * xmenu.c (menu_position_func): Use x_display_pixel_height and
15101 x_display_pixel_width.
15102
151032008-09-18 Kenichi Handa <handa@m17n.org>
15104
15105 * composite.c (fill_gstring_header): Don't check FROM and TO here.
15106 (composition_compute_stop_pos): Fix handling of static composition.
15107 (Fcomposition_get_gstring): Check FROM and TO at first.
15108
151092008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
15110
46e722a9 15111 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
aac0c6e3
MR
15112 mixup (YAILOM).
15113
151142008-09-17 Chong Yidong <cyd@stupidchicken.com>
15115
15116 * indent.c (Fvertical_motion): Use position reported by iterator
15117 instead of PT for determining screen motion (bug#943).
15118
151192008-09-17 Romain Francoise <romain@orebokech.com>
15120
15121 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
15122
151232008-09-17 Kenichi Handa <handa@m17n.org>
15124
15125 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
15126
15127 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
15128 if necessary.
15129
151302008-09-16 Kenichi Handa <handa@m17n.org>
15131
15132 * coding.c (make_conversion_work_buffer): Avoid calling
15133 Fget_buffer_create if it is not necessary.
15134
151352008-09-15 Martin Rudalics <rudalics@gmx.at>
15136
15137 * window.c (Fselect_window): Don't update window_select_count and
15138 use_time when norecord is not nil.
15139
151402008-09-14 Kenichi Handa <handa@m17n.org>
15141
15142 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
15143 specpdl_ptr.
15144
151452008-09-12 Kenichi Handa <handa@m17n.org>
15146
15147 * indent.c (scan_for_column): Don't handle automatic composition
15148 if the current buffer is not associated with a window.
15149
15150 * composite.c (composition_reseat_it): If the current buffer is
15151 not associated with a window, ignore the automatic composition.
15152 (find_automatic_composition): Likewise.
15153
151542008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15155
15156 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
15157 (Fgpm_mouse_stop): Use it.
15158 * termhooks.h (close_gpm): Declare.
15159 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
15160 connection if Gpm_GetEvent fails.
15161
15162 * window.c (set_window_buffer): Always preserve current-buffer.
15163
151642008-09-12 Glenn Morris <rgm@gnu.org>
15165
15166 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
15167
151682008-09-11 Glenn Morris <rgm@gnu.org>
15169
15170 * charset.c (charset-map-path): Doc fix.
15171
151722008-09-10 Kenichi Handa <handa@m17n.org>
15173
15174 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
15175
15176 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
15177 compose a grapheme cluster with the preceding base glyph.
15178
15179 * composite.c (composition_compute_stop_pos): Fix previous change.
15180 Reset cmp_it->id to -1 at first.
15181
151822008-09-10 Glenn Morris <rgm@gnu.org>
15183
15184 * Makefile.in (character.o, chartab.o): Fix config.h typo.
15185
151862008-09-09 Chong Yidong <cyd@stupidchicken.com>
15187
15188 * keyboard.c (read_key_sequence): Reapply translation maps when
15189 switching keyboards.
15190
151912008-09-09 Kenichi Handa <handa@m17n.org>
15192
15193 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
15194 characters.
15195
15196 * composite.c (FORWARD_CHAR): Fix calculation
15197 of (POSITION).pos_byte.
15198 (composition_compute_stop_pos): Limit the search of composition to
15199 at most 500 characters ahead. If we reach the limit or find a
15200 newline, set cmp_it->ch to -2 and return 0.
15201 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
15202
152032008-09-08 Kenichi Handa <handa@m17n.org>
15204
15205 * indent.c (Fvertical_motion): Be sure to set
15206 it_overshoot_expected if it.cmp_it.id is non-negative.
15207
152082008-09-07 Andreas Schwab <schwab@suse.de>
15209
15210 * callproc.c (Fcall_process): Don't hold references to string data
15211 across garbage collection. Move initialisation of new_argv down
15212 to avoid compiler bug.
15213
152142008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15215
15216 * process.c (Fsystem_process_attributes): Doc fix.
15217
152182008-09-07 Chong Yidong <cyd@stupidchicken.com>
15219
15220 * callproc.c (Fcall_process): Canonicalize current directory name.
15221
15222 * xdisp.c (move_it_to): When moving by vpos, ensure that the
15223 iterator advances to the next line if the current line ends in a
15224 continued tab.
15225
152262008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
15227
15228 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
15229 member to point to cmp_from.
15230
15231 * xdisp.c: Doc fix for references to gidx data member.
15232
152332008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
15234
15235 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
15236
152372008-09-07 Kenichi Handa <handa@m17n.org>
15238
15239 * composite.c (FORWARD_CHAR): Check STOP after
15240 incrementing (POSITION).pos.
15241
152422008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
15243
15244 * process.c (Fsystem_process_attributes): Doc fix.
15245
152462008-09-06 Chong Yidong <cyd@stupidchicken.com>
15247
15248 * keyboard.c (Ftop_level): Doc fix.
15249
152502008-09-06 Eli Zaretskii <eliz@gnu.org>
15251
15252 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
15253 minibuffer, don't let lower part of menu invade the echo area.
15254
15255 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
15256 "char *q" to access menu text and advance through it. Revert the
15257 change that displayed ">" instead of ASCII character 0x10.
15258
152592008-09-05 Eli Zaretskii <eliz@gnu.org>
15260
15261 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
15262 toggle boxes and radio buttons on MS-DOS as well.
15263
152642008-09-05 Kenichi Handa <handa@m17n.org>
15265
15266 * composite.c (autocmp_chars): Check lookback count.
15267 (composition_compute_stop_pos): Set cmp_it->lookback.
15268 (composition_reseat_it): Check lookback count.
15269 (struct position_record): New struct.
15270 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
15271 (find_automatic_composition): New function.
15272 (composition_adjust_point): Use find_automatic_composition.
15273
15274 * dispextern.h (struct composition_it): New member lookback.
15275
152762008-09-02 Chong Yidong <cyd@stupidchicken.com>
15277
15278 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
15279 if moving by a single line.
15280
152812008-09-02 Andreas Schwab <schwab@suse.de>
15282
15283 * xterm.c (x_delete_display): Fix merge error.
15284
15285 * fileio.c (Fexpand_file_name): Remove unused variables.
15286
152872008-09-02 Eli Zaretskii <eliz@gnu.org>
15288
15289 * fileio.c (Fexpand_file_name): Copy argument `name' into local
15290 storage on all platforms, not just on DOS_NT.
15291
152922008-09-02 Jason Rumney <jasonr@gnu.org>
15293
b8ff72fa
SM
15294 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
15295 Ensure mouse is not grabbed after menu is finished.
aac0c6e3
MR
15296
152972008-09-01 Chong Yidong <cyd@stupidchicken.com>
15298
15299 * xfaces.c (Finternal_set_alternative_font_family_alist)
15300 (Finternal_set_alternative_font_registry_alist): Properly copy
15301 entire alist structure.
15302
153032008-09-01 Kenichi Handa <handa@m17n.org>
15304
d66c0241 15305 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
aac0c6e3 15306 representative chars of the script is a vector.
d66c0241
JB
15307 (ftfont_list): Handle the case where the representative chars of
15308 the script is a vector.
aac0c6e3
MR
15309
15310 * character.c (syms_of_character): Docstring of
15311 script-representative-chars fixed.
15312
153132008-08-31 Eli Zaretskii <eliz@gnu.org>
15314
15315 * msdos.c (BUILD_CHAR_GLYPH): New macro.
15316 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
15317 the menu. Allocate larger buffer for `text', to account for
15318 possible ^C characters.
15319
153202008-08-31 Martin Rudalics <rudalics@gmx.at>
15321
15322 * xdisp.c (prepare_menu_bars): Don't call
15323 Vwindow_size_change_functions with arg Qt.
15324
153252008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
15326
15327 * font.h (font_range):
15328 * fileio.c (report_file_error):
46e722a9
SM
15329 * composite.c (composition_update_it): Yet another int/Lisp_Object
15330 mixup (YAILOM).
aac0c6e3
MR
15331
153322008-08-30 Glenn Morris <rgm@gnu.org>
15333
15334 * data.c (Fmake_variable_frame_local): Doc fix.
15335
15336 * frame.c (Fmodify_frame_parameters): Doc fix.
15337
153382008-08-30 Eli Zaretskii <eliz@gnu.org>
15339
15340 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
15341 needed by GetTokenInformation.
15342 (w32_system_process_attributes): Check return values of all system
15343 APIs.
15344
15345 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
15346 only when the state changes.
15347 (IT_update_begin, IT_update_end): Add termscript trace.
15348
15349 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
15350 clipboard is unavailable. Set dst to NULL if it doesn't point to
15351 malloc'ed data.
15352 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
15353 passing random values to xfree.
15354
15355 * dispnew.c (init_display): Set `tty's association in frame's
b8ff72fa 15356 parameters alist to the name of the terminal device, if that is known.
aac0c6e3
MR
15357
153582008-08-29 Jason Rumney <jasonr@gnu.org>
15359
15360 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
15361
153622008-08-29 Eli Zaretskii <eliz@gnu.org>
15363
15364 * composite.c (fill_gstring_body): Avoid compiler warnings.
15365
15366 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
15367 LGLYPH_SET_CODE to avoid compiler warnings.
15368
2ae37cf0 15369 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
aac0c6e3
MR
15370
15371 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
15372
15373 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
15374 LGLYPH_SET_CODE.
15375
153762008-08-29 Kenichi Handa <handa@m17n.org>
15377
15378 * fileio.c (report_file_error): Don't downcase the first character
15379 of errstring if it is still unibyte.
15380
153812008-08-29 Kenichi Handa <handa@m17n.org>
15382
15383 These changes are to re-implement the automatic composition so
15384 that it doesn't use text properties.
15385
15386 * Makefile.in (ftfont.o): Depend on composite.h.
15387 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
15388
15389 * character.h (Vunicode_category_table): Extern it.
15390
15391 * character.c (Vunicode_category_table): New variable.
15392 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
15393
15394 * chartab.c (optimize_sub_char_table): Perform more greedy
15395 optimization.
15396
b8ff72fa
SM
15397 * composite.h (enum composition_method):
15398 Delete COMPOSITION_WITH_GLYPH_STRING.
aac0c6e3
MR
15399 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
15400 (Vcomposition_function_table): Extern it.
15401 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
15402 (composition_gstring_put_cache, composition_gstring_from_id)
15403 (composition_gstring_p, composition_gstring_width)
15404 (composition_compute_stop_pos, composition_reseat_it)
15405 (composition_update_it, composition_adjust_point): Extern them.
15406 (Fcomposition_get_gstring): EXFUN it.
15407
d66c0241 15408 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
aac0c6e3
MR
15409 (Vcomposition_function_table)
15410 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
b8ff72fa
SM
15411 (gstring_hash_table, gstring_work, gstring_work_headers):
15412 New variables.
aac0c6e3
MR
15413 (gstring_lookup_cache, composition_gstring_put_cache)
15414 (composition_gstring_from_id, composition_gstring_p)
15415 (composition_gstring_width, fill_gstring_header)
15416 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
15417 (composition_reseat_it, composition_update_it)
b8ff72fa 15418 (composition_adjust_point, Fcomposition_get_gstring): New functions.
aac0c6e3
MR
15419 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
15420 and gstring_work_headers. DEFVAR_LISP composition-function-table.
a73f9c9d 15421 Defsubr composition_get_gstring.
aac0c6e3
MR
15422
15423 * dispextern.h (struct glyph): New union u.cmp. Delete the member
15424 cmp_id.
15425 (struct glyph_string): Delete the member gidx. New members
15426 cmp_id, cmp_from, and cmp_to.
15427 (enum it_method): Delete GET_FROM_COMPOSITION.
15428 (struct composition_it): New struct.
15429 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
15430 Delete c, len, cmp_id, cmp_len in u.comp.
15431
15432 * font.h (enum lgstring_indices): Delete it.
b8ff72fa 15433 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
aac0c6e3 15434 (enum lglyph_indices): Likewise.
b8ff72fa 15435 (font_range): Adjust extern.
aac0c6e3
MR
15436 (font_fill_lglyph_metrics): Extern it.
15437
15438 * font.c (QCf): New variable.
15439 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
15440 (font_prepare_composition): Delete this function.
15441 (font_range): Type and arguments changed.
15442 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
15443 (font_fill_lglyph_metrics): New function.
b8ff72fa 15444 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
aac0c6e3 15445 (syms_of_font): DEFSYM QCf. Delete defsubr for
b8ff72fa
SM
15446 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
15447 Defsubr Sfont_shape_gstring.
aac0c6e3
MR
15448
15449 * fontset.h (font_for_char): Extern it.
15450
15451 * fontset.c (font_for_char): New function.
15452
15453 * ftfont.c: Include composite.h.
15454 (ftfont_resolve_generic_family): Add langset "en" to pattern.
b8ff72fa 15455 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
aac0c6e3
MR
15456
15457 * indent.c: Include composite.h and dispextern.h.
15458 (check_composition): Delete this function.
15459 (scan_for_column): Handle composition by
15460 composition_compute_stop_pos, composition_reseat_it, and
15461 composition_update_it.
15462 (compute_motion): Likewise.
15463 (Fvertical_motion): Fix checking of composition.
15464
15465 * keyboard.c (adjust_point_for_property): Check composition by
15466 composition_adjust_point.
15467
b8ff72fa 15468 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
aac0c6e3
MR
15469 struct glyph_string.
15470
b8ff72fa
SM
15471 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
15472 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3
MR
15473 struct glyph.
15474 (produce_composite_glyph): Likewise.
15475
b8ff72fa
SM
15476 * w32term.c (x_draw_composite_glyph_string_foreground):
15477 Adjust for the change of struct glyph_string.
aac0c6e3
MR
15478 (x_draw_glyph_string): Likewise.
15479
15480 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
15481 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
15482
15483 * xdisp.c: Include font.h.
15484 (it_props): Delete the entry for Qauto_composed.
15485 (init_iterator): Initialize it->cmp_it.id to -1.
15486 (compute_stop_pos): Call composition_compute_stop_pos.
b8ff72fa 15487 (face_before_or_after_it_pos): Adjust for the change of struct it.
aac0c6e3
MR
15488 (handle_auto_composed_prop): Delete it.
15489 (handle_composition_prop): Handle only static composition.
15490 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
15491 from xassert. Initialize it->cmp_it.stop_pos.
b8ff72fa 15492 (push_it): Adjust for the change of struct it.
aac0c6e3
MR
15493 (pop_it): Likewise.
15494 (get_next_element): Delete next_element_from_composition.
15495 (CHAR_COMPOSED_P): New macro.
15496 (get_next_display_element): For automatic composition, get a face
15497 from the font in the glyph-string.
15498 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
b8ff72fa 15499 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
aac0c6e3
MR
15500 (next_element_from_string): Check if the character at the current
15501 position is composed by CHAR_COMPOSED_P.
15502 (next_element_from_buffer): Likewise.
d66c0241
JB
15503 (next_element_from_composition): Adjust for the change of struct it.
15504 Update it->cmp_it.
b8ff72fa
SM
15505 (dump_glyph): Adjust for the change of struct glyph.
15506 (fill_composite_glyph_string): Adjust for the change of struct
aac0c6e3
MR
15507 it and struct glyph. Don't handle automatic composition here.
15508 (fill_gstring_glyph_string): New function.
15509 (x_get_glyph_overhangs): Handle automatic composition.
b8ff72fa 15510 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
aac0c6e3
MR
15511 (BUILD_GSTRING_GLYPH_STRING): New macro.
15512 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
15513 automatic composition.
b8ff72fa 15514 (append_composite_glyph): Adjust for the change of struct it and
aac0c6e3 15515 struct glyph.
b8ff72fa 15516 (x_produce_glyphs): Adjust for the change of struct it.
aac0c6e3 15517
b8ff72fa 15518 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
aac0c6e3
MR
15519 the change of struct glyph_string.
15520 (x_draw_glyph_string): Likewise.
15521
155222008-08-29 Glenn Morris <rgm@gnu.org>
15523
15524 * buffer.c (word-wrap): Doc fix.
15525 * xdisp.c (truncate-partial-width-windows): Doc fix.
15526 Increase default to 50.
15527
155282008-08-29 Chong Yidong <cyd@stupidchicken.com>
15529
15530 * xdisp.c (update_tool_bar_unwind): New function.
15531 (update_tool_bar): Temporarily set selected frame before building
15532 tool-bar items.
15533
155342008-08-28 Michael Albinus <michael.albinus@gmx.de>
15535
15536 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
15537 snprintf, respectively.
15538 (xd_append_arg): Convert strings with Fstring_make_unibyte.
15539
155402008-08-28 Chong Yidong <cyd@stupidchicken.com>
15541
15542 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
15543 LDFLAGS to GNUstep CC invocation.
15544
155452008-08-27 Chong Yidong <cyd@stupidchicken.com>
15546
15547 * indent.c (Fvertical_motion): Revert last change. Handle the
15548 general case where we are moving forward, and PT spans multiple
15549 screen lines.
15550
15551 * eval.c (find_handler_clause): Temporarily increase
15552 max-lisp-eval-depth while printing the backtrace buffer, to
15553 guarantee that help-mode code can run.
15554
155552008-08-27 Eli Zaretskii <eliz@gnu.org>
15556
15557 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
15558 colors under -rv.
15559 (IT_set_frame_parameters): Don't swap foreground and background
15560 colors if `(reverse . t)' is present in the frame properties.
15561 (internal_terminal_init): Call init_frame_faces only for the
15562 initial frame.
15563
155642008-08-27 Andreas Schwab <schwab@suse.de>
15565
15566 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
15567
155682008-08-27 Andreas Schwab <schwab@suse.de>
15569
15570 * search.c (search_buffer): Set char_base to zero only at the end.
15571
155722008-08-27 Kenichi Handa <handa@m17n.org>
15573
b8ff72fa 15574 * fileio.c (report_file_error): Fix handling of multibyte error string.
aac0c6e3
MR
15575
155762008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
15577
15578 * xterm.c (x_term_init): Temporarily hide the partially
15579 initialized terminal while calling vendor-specific-keysyms.
15580
155812008-08-26 Eli Zaretskii <eliz@gnu.org>
15582
15583 * msdos.c (internal_terminal_init): Most initializations done only
15584 once, especially initial_screen_colors[] and termscript open.
15585
155862008-08-26 Chong Yidong <cyd@stupidchicken.com>
15587
15588 * eval.c (Fcondition_case): Doc fix.
15589
15590 * widgetprv.h (EmacsFramePart): Change font member to the new font
15591 struct.
15592
15593 * widget.c: Include character.h and font.h for XSETFONT.
15594 (setup_frame_gcs): Compute X font id from font struct, just once.
15595
155962008-08-26 Eli Zaretskii <eliz@gnu.org>
15597
15598 * term.c (get_named_tty): Fix last change.
15599
156002008-08-26 Chong Yidong <cyd@stupidchicken.com>
15601
15602 * indent.c (Fvertical_motion): If moving forward starting from a
b8ff72fa 15603 multi-line string, move the iterator to the last line of that string.
aac0c6e3
MR
15604
156052008-08-25 Eli Zaretskii <eliz@gnu.org>
15606
15607 * frame.c (do_switch_frame): Mark previously displayed frame as
15608 obscured for FRAME_MSDOS_P frames as well.
15609
156102008-08-24 Eli Zaretskii <eliz@gnu.org>
15611
15612 * frame.c (make_terminal_frame): Initialize f->terminal,
15613 f->terminal->reference_count, and scroll bars on MS-DOS as well.
15614 Set the top frame to newly created frame.
15615 (Fmake_terminal_frame): Reuse the_only_display_info.
15616
15617 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
15618 estimating available memory.
15619
b97439ce 156202008-08-23 David Reitter <david.reitter@gmail.com>
aac0c6e3
MR
15621
15622 * nsterm.m (ns_draw_window_cursor): Don't call
15623 NSDisableScreenUpdates and NSEnableScreenUpdates on
15624 non-NS_IMPL_COCOA systems.
15625
156262008-08-23 Andreas Schwab <schwab@suse.de>
15627
15628 * process.c (procfs_system_process_attributes): Fix use of
15629 uninitialized variables.
15630
156312008-08-23 Eli Zaretskii <eliz@gnu.org>
15632
15633 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
15634
15635 * dispnew.c (init_display): Remove MS-DOS specific conditions for
15636 calling tty-set-up-initial-frame-faces.
15637
b8ff72fa
SM
15638 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
15639 Allow MSDOS frames along with X frames.
aac0c6e3
MR
15640
15641 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
15642 addition to output_termcap.
15643
15644 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
15645
15646 * termchar.h (FRAME_TTY): Support output_msdos_raw.
15647 (struct tty_display_info) [MSDOS]: Add fields related to mouse
15648 highlight.
15649
15650 * process.c [!subprocesses]: Define QCname.
15651 (syms_of_process): Intern and staticpro it.
15652
15653 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
b8ff72fa
SM
15654 Adjust for changes in encoding/decoding routines.
15655 Use encode_coding_object and decode_coding_object instead of
aac0c6e3
MR
15656 encode_coding and decode_coding.
15657
b8ff72fa 15658 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
aac0c6e3
MR
15659
15660 * dosfns.c: Include frame.h before termhooks.h.
15661 (dos_cleanup): Use CURTTY ()->termscript instead of a global
15662 variable termscript.
15663
15664 * s/msdos.h (USER_FULL_NAME): Define.
15665 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
15666
15667 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
15668 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
15669 pw->pw_gecos.
15670
15671 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
15672 SELECTED_FRAME as additional (1st) argument.
15673 (tty_read_avail_input): Handle output_msdos_raw in
15674 addition to output_termcap.
15675
15676 * msdos.c: Include frame.h before termhooks.h.
15677 (mouse_on, mouse_off, mouse_moveto, mouse_init)
15678 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
15679 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
15680 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
15681 (IT_set_terminal_modes, IT_reset_terminal_modes)
15682 (IT_set_frame_parameters): Use tty->termscript instead of a global
15683 variable termscript.
15684 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
15685 global variable terminal_coding. Don't refer to
15686 Vnonascii_translation_table.
15687 (internal_terminal_init): Set Vwindow_system in current_kboard.
15688 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
15689 Announce date and time of session start, if termscript is open.
15690 Don't zero out the_only_display_info (it is done in
b8ff72fa
SM
15691 term.c:init_tty). Open termscript only of not already open.
15692 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
aac0c6e3
MR
15693 here instead of dos_ttraw. Don't initialize display if this is an
15694 initial tty. Don't set FRAME_FONT.
15695 (Vwindow_system_version): Bump to 23.
15696 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
15697 is available, set up mouse_position_hook.
15698 (dos_ttraw, IT_set_terminal_modes): If called with initial
15699 terminal, do nothing.
15700 (IT_set_frame_parameters): Handle the Qtty_type frame
15701 parameter by calling internal_terminal_init.
15702 (dos_set_window_size, show_mouse_face)
15703 (clear_mouse_face, IT_note_mode_line_highlight)
15704 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
15705 (dos_rawgetc): Use tty_display_info instead of x_display_info.
15706 (initialize_msdos_display): New function.
15707 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
15708 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
15709 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
15710 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
b8ff72fa 15711 Accept additional argument: a pointer to a frame. Update all callers.
aac0c6e3
MR
15712 (request_sigio, unrequest_sigio): Don't define, now defined on
15713 sysdep.c.
15714 (IT_write_glyphs): Rewrite to use encode_terminal_code.
15715
15716 * term.c [MSDOS]: Include msdos.h.
15717 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
15718 conditional to DOS_NT. Allow only one call to this function in a
15719 session. Don't allocate a new struct tty_display_info; instead,
15720 reuse the_only_display_info. Call get_tty_size to get screen
15721 dimensions. Call init_baud_rate to set bad_rate.
15722 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
15723 (Fsuspend_tty) [MSDOS]: Don't close input and output.
b8ff72fa 15724 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
aac0c6e3
MR
15725 (get_tty_terminal, get_named_tty, Ftty_type)
15726 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
15727 output_termcap.
b8ff72fa
SM
15728 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
15729 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
2ae37cf0 15730 only when subprocesses are supported.
aac0c6e3
MR
15731
15732 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
15733 f->output_data.x.
15734 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
15735 terminal devices.
15736
5582fbc7 15737 * msdos.h: Remove definition of struct x_display_info and struct
aac0c6e3
MR
15738 x_output.
15739 (FRAME_FONT): Use output_data.tty.
15740 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
b8ff72fa
SM
15741 (struct x_display_info): Rename from display_info. Update all users in
15742 msdos.c.
aac0c6e3 15743 (struct x_output): Remove background_pixel and foreground_pixel.
b8ff72fa 15744 (the_only_display_info): Rename from the_only_x_display.
aac0c6e3
MR
15745 (dos_ttraw): Update prototype.
15746
15747 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
15748 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
15749
157502008-08-23 Jason Rumney <jasonr@gnu.org>
15751
15752 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
15753 (fn_TIFFSetDirectory): New library function used.
15754 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
15755 (tiff_load): Use :index to select among multiple images. Set count
15756 property when multiple images exist.
15757 (gif_format): Use :index, not :image.
15758
157592008-08-23 Chong Yidong <cyd@stupidchicken.com>
15760
15761 * xdisp.c (try_scrolling): Check INT_MAX instead of
15762 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
15763 to obtain INT_MAX.
15764
157652008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
15766
15767 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
15768
157692008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
15770
15771 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
15772 GNUstep library location.
15773
157742008-08-21 Chong Yidong <cyd@stupidchicken.com>
15775
15776 * xfaces.c (x_update_menu_appearance): Check validity of menu font
15777 before using it.
15778
15779 * puresize.h (BASE_PURESIZE): Increase to 1250000.
15780
157812008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
15782
15783 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
15784 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
15785 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
15786 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
15787 (EmacsApp-cursor_blink_handler): Remove declaration.
15788 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
15789 match 01 Feb 2008 changes in xterm.c.
15790 (ns_read_socket): Add cast to avoid warning.
15791 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
15792 GNUstep.
15793
157942008-08-20 Chong Yidong <cyd@stupidchicken.com>
15795
15796 * xselect.c (x_get_foreign_selection): Return nil if desired
15797 selection could not be obtained, instead of signalling an error.
15798
157992008-08-20 David Reitter <david.reitter@gmail.com>
15800
15801 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
15802 * nsterm.m: Remove ns-specific code for cursor blinking.
15803 (ns_draw_window_cursor): Clear cursor properly rather than
15804 redrawing the area. Respect width of bar cursors.
15805 These changes enable the use of generic blink-cursor-mode and
15806 generic cursor types in NS and support smooth cursor movements (do
15807 not blink off after command).
15808 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
15809 Nextstep, too.
15810
158112008-08-19 Kenichi Handa <handa@m17n.org>
15812
15813 * font.c (Vfont_log_deferred): New variable.
15814 (font_add_log): Check Vfont_log_deferred.
15815 (font_deferred_log): New function.
15816
15817 * font.h (font_deferred_log): Extern it.
15818
15819 * fontset.c (reorder_font_vector): Use encoding charset of fonts
15820 for sorting.
15821 (face_for_char): Use deferred log.
15822
158232008-08-18 Kenichi Handa <handa@m17n.org>
15824
15825 * fontset.c (face_for_char): Add font log.
15826
15827 * font.c (font_add_log): Add the font properties :script, :lang,
15828 and :otf in the log.
15829
158302008-08-17 Chong Yidong <cyd@stupidchicken.com>
15831
15832 * xdisp.c: Remove dead code.
15833 (handle_invisible_prop, next_overlay_string): Defer call to
15834 setup_for_ellipsis.
15835 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
15836
158372008-08-15 Chong Yidong <cyd@stupidchicken.com>
15838
15839 * xfaces.c (lookup_derived_face): Properly handle possible zero
15840 return value of get_lface_attributes.
15841 (merge_faces): Don't tell lookup_derived_face to signal an error
15842 if face is not found.
15843
15844 * dired.c (Fdirectory_files): Doc fix.
15845
15846 * process.c (make_process): Initialize kill_without_query struct
15847 member.
15848
158492008-08-15 Eli Zaretskii <eliz@gnu.org>
15850
15851 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
15852 Alternative calculation of totphys for Visual Studio 6.
15853
15854 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
15855
15856 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
15857 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
15858 All users changed.
15859 (stat): Only root directory passed to GetDriveType. Allow RAM
15860 disk as well as local fixed disk when w32-get-true-file-attributes
15861 is set to `local'.
15862 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
15863 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
15864 (w32_cached_id, w32_add_to_cache): New functions.
15865 (get_name_and_id): Look account names in the cache before calling
15866 lookup_account_sid.
15867 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
15868 New initialization flags.
15869 (globals_of_w32): Initialize them to zero.
15870 (w32_system_process_attributes): Use w32_cached_id and
15871 w32_add_to_cache.
15872
158732008-08-14 Lawrence Mitchell <wence@gmx.li>
15874
15875 * lread.c (Fread_char, Fread_char_exclusive): If no character
15876 event is read before timeout is reached, return nil, rather than
15877 converting to a number.
15878
158792008-08-14 Chong Yidong <cyd@stupidchicken.com>
15880
15881 * fns.c (use_dialog_box): Doc fix.
15882
15883 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
15884 on OS X.
15885
158862008-08-13 Chong Yidong <cyd@stupidchicken.com>
15887
15888 * frame.c (Qns_parse_geometry): New var.
15889 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
15890
158912008-08-11 Chong Yidong <cyd@stupidchicken.com>
15892
15893 * xdisp.c (x_produce_glyphs): Handle the case when font has no
15894 space character in calculating tabs.
15895
158962008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
15897
15898 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
15899
159002008-08-10 Glenn Morris <rgm@gnu.org>
15901
15902 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
15903 silence gcc "limited range of data type" warnings in some
15904 make_fixnum_or_float calls.
15905
159062008-08-09 Eli Zaretskii <eliz@gnu.org>
15907
15908 * w32.c (w32_system_process_attributes): If the process does not
15909 exist, return nil.
15910
15911 * w32.c: Include thelp32.h, psapi.h and coding.h.
15912 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
15913 declarations.
15914 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
15915 (Process32Next_Proc): New typedefs.
15916 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
15917 (g_b_init_process32_next, g_b_init_open_thread_token)
15918 (g_b_init_impersonate_self, g_b_init_revert_to_self)
15919 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
15920 (g_b_init_get_process_working_set_size)
15921 (g_b_init_global_memory_status_ex): New static variables.
15922 (globals_of_w32): Initialize them.
15923 (create_toolhelp32_snapshot, process32_first, process32_next)
15924 (open_thread_token, impersonate_self, revert_to_self)
15925 (get_process_memory_info, get_process_working_set_size)
15926 (global_memory_status, global_memory_status_ex): New wrapper
15927 functions.
15928 (w32_list_system_processes, w32_system_process_attributes)
15929 (enable_privilege, restore_privilege, ltime, process_times):
15930 New functions.
15931 (convert_time_raw): New function.
15932 (convert_time): Remove conversion of FILETIME into time in 100
15933 nsec units, call convert_time_raw instead.
15934
15935 * process.h (w32_list_system_processes, w32_system_process_attributes):
15936 Add prototypes.
15937 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
15938 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
15939 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
15940 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
15941
15942 * process.c (Fsystem_process_attributes): Doc fix.
15943
159442008-08-08 Chong Yidong <cyd@stupidchicken.com>
15945
15946 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
15947 a continued multi-char glyph; if so, advance to the actual glyph.
15948
159492008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
15950
15951 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
15952
15953 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
15954 (.m.o): Use it.
15955 * config.in: Regenerate.
15956
159572008-08-07 Chong Yidong <cyd@stupidchicken.com>
15958
15959 * xdisp.c (redisplay_window): Revert last change.
15960 (try_window): Check bottom scroll margin too.
15961
159622008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
15963
15964 * config.in: Regenerate.
15965
15966 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
15967 -list-load-path-shadows'.
15968 (nsgui.h): Reduce number of things depending on it.
15969
159702008-08-06 Chong Yidong <cyd@stupidchicken.com>
15971
15972 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
15973 instead of window-end which does the wrong thing at eob.
15974 (try_cursor_movement): Minor optimization.
15975 (redisplay_window): If scroll margin is defined, don't assume
15976 window doesn't need scrolling.
15977
159782008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
15979
15980 * config.in: Regenerate.
15981
15982 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
15983 (mostlyclean): Don't delete *.d under NS.
15984
15985 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
15986
159872008-08-06 Kenichi Handa <handa@m17n.org>
15988
15989 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
15990
159912008-08-06 Andreas Schwab <schwab@suse.de>
15992
15993 * config.in: Regenerate.
15994
159952008-08-05 Chong Yidong <cyd@stupidchicken.com>
15996
15997 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
15998 forcing a window start.
15999
16000 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
16001 (auto_save_1): Update modtime when auto-save-list-file-name is on.
16002
160032008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
16004
16005 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
16006 argument.
16007
160082008-08-05 Juanma Barranquero <lekktu@gmail.com>
16009
16010 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
16011 <scroll-down-aggressively, before-change-functions>:
16012 <after-change-functions>: Reflow docstrings.
16013
160142008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
acd0102a 16015 Ken Raeburn <raeburn@gnu.org>
aac0c6e3
MR
16016
16017 Dock menu customization, based on a patch by Ken Raeburn, plus some
16018 other fixes.
16019 * nsmenu.m (dockMenu): New variable.
16020 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
16021
16022 * nsterm.h (dockMenu): Declare.
16023
16024 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
16025 (ns_term_init): Initialize dockMenu.
16026 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
16027 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
16028 left.
16029
16030 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
16031
160322008-08-04 Chong Yidong <cyd@stupidchicken.com>
16033
16034 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
16035
16036 * config.in: Regenerate.
16037
160382008-08-04 Seiji Zenitani <zenitani@mac.com>
16039
16040 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
16041
160422008-08-04 Chong Yidong <cyd@stupidchicken.com>
16043
16044 * nsterm.h (find_and_call_menu_selection): Fix prototype.
16045
160462008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
16047
16048 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
16049
16050 * keyboard.h: Comment an #endif.
16051
16052 * lisp.h (have_menus_p): Adjust comment.
16053
16054 * menu.c (find_and_return_menu_selection): Fix comparison with
16055 client_data.
16056
16057 * nsmenu.m (popup_activated_flag): New variable.
16058 (popup_activated): New function.
16059 (menu-or-popup-active-p): New exported lisp definition.
16060 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
16061 when popup done.
16062 (ns_popup_dialog): Set popup_activated_flag.
16063
16064 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
16065 version for GNUstep (handled by conditional typedef in nsterm.m).
16066 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
16067 in rgb.txt).
16068
16069 * process.c (init_process): Use DARWIN_OS, not DARWIN.
16070
16071 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
16072
16073 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
16074
16075 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
16076 shortcircuit if popup_activated like GTK and X toolkit.
16077
16078 * m/inter386.h: Change DARWIN to DARWIN_OS.
16079
16080 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
16081 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
bba3e508
SM
16082 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood.
16083 Expand comment on NO_SOCK_SIGIO.
aac0c6e3
MR
16084
160852008-08-03 Chong Yidong <cyd@stupidchicken.com>
16086
16087 * nsterm.m (windowDidResize): Remove stopModal call.
16088
160892008-08-03 Andreas Schwab <schwab@suse.de>
16090
16091 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
16092 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
16093
160942008-08-02 Chong Yidong <cyd@stupidchicken.com>
16095
16096 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
16097 Don't use uninitialized pointer variable when using getrlimit.
16098
160992008-08-02 Jason Rumney <jasonr@gnu.org>
16100
16101 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
16102
161032008-08-02 Eli Zaretskii <eliz@gnu.org>
16104
16105 * alloc.c (NSTATICS): Bump to 0x640.
16106
16107 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
16108
16109 * lisp.h: Add prototype for directory_files_internal.
16110
16111 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
16112 New functions.
16113 (syms_of_process): Defsubr them. Add initializations for various
16114 Q* symbols used in procfs_system_process_attributes.
16115 (procfs_list_system_processes, procfs_system_process_attributes)
16116 [HAVE_PROCFS]: New functions.
16117 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
16118 (procfs_get_total_memory): New functions.
16119
161202008-08-01 Juanma Barranquero <lekktu@gmail.com>
16121
16122 * xfaces.c (Fx_load_color_file): Fix previous change;
16123 it is #ifdef WINDOWSNT, not WINDOWS_NT.
16124
161252008-08-01 Michael Albinus <michael.albinus@gmx.de>
16126
16127 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
16128
161292008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16130
16131 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
16132
161332008-08-01 Chong Yidong <cyd@stupidchicken.com>
16134
16135 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
16136
16137 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
16138 define NSApplicationDelegateReplySuccess.
16139 (EmacsView -converstationIdentifier): Use long instead of
16140 NSInteger for GNUstep, since it doesn't have NSInteger.
16141
16142 * xmenu.c: Revert last change.
16143
16144 * keyboard.h: Fix last change.
16145
161462008-08-01 Juanma Barranquero <lekktu@gmail.com>
16147
16148 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
16149 on Windows.
16150
161512008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16152
16153 Warning clearing and clean-up in NS port.
16154 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
16155 Add prototypes.
16156 * nsgui.h (FACE_DEFAULT): Remove, unused.
16157 (XGCValues): Change colors to unsigned long.
16158 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
16159 nsterm.m.
16160 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
16161 (ns_list_fonts): Remove, unused.
16162 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
16163 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
16164 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
16165 (nsfont_draw): Compare face colors to 0, not nil.
16166 * nsmenu.m (struct widget_value): Drop unneeded declaration.
16167 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
16168 (-addSubmenuWithTitle:): Use NSMenuItem class.
16169 (ns_popup_menu): Use NO, not NULL, for enabled setting.
16170 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
16171 (ns_clip_to_row): Make gc arg a BOOL.
16172 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
16173 ns_clip_to_row() call.
16174 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
16175 used). Cast FRAME_FONT assignments.
16176 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
16177 (ns_string_to_lispmod): Change arg to const char.
16178 (ns_term_init): Use NSMenuItem class.
16179 (EmacsApp -openFile:): Move to different section of file.
16180 (EmacsApp -application:openFiles:): Don't return a value, call
16181 -replyToOpenOrPrint:.
16182 (EmacsView -keyDown:): Fix up cast.
16183 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
16184 (EmacsView -menuDown:): Cast tag in call to
16185 find_and_call_menu_selection().
16186 (ns_list_fonts): Remove, unused.
16187 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
16188 (ns_fontname_to_xlfd): Make static.
16189 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
16190 Remove prototypes (now in keyboard.h).
16191 (next_menubar_widget_id): Remove, unused.
16192 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
16193 Remove prototypes (now in keyboard.h).
16194 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
16195
161962008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
16197
16198 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
16199 (floatfns.o): Depend on syssignal.h.
16200 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
16201
16202 * systty.h: Fix previous change that removed BSD_TERMIOS.
16203 Add comments to #ifdefs.
16204
162052008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
16206
16207 * w32fns.c (w32-load-color-file): Remove.
16208 (x-open-connection): Use renamed Fx_load_color_file.
16209 * xfaces.c (x-load-color-file): Add.
16210 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
16211 Emacs.clr.
16212 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
16213
162142008-07-31 Michael Albinus <michael.albinus@gmx.de>
16215
16216 * dbusbind.c (Fdbus_call_method_asynchronously)
16217 (Fdbus_method_error_internal): New defuns.
16218 (xd_read_message): Handle also reply messages.
16219 (Vdbus_registered_functions_table): Extend docstring.
16220
162212008-07-31 Juanma Barranquero <lekktu@gmail.com>
16222
16223 * keyboard.c (gobble_input): Fix previous change.
16224
162252008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
16226
16227 * bitmaps/README:
16228 * xfns.c:
16229 * termcap.c:
16230 * term.c:
16231 * syswait.h:
16232 * systty.h:
16233 * systime.h:
16234 * syssignal.h:
16235 * sysdep.c:
16236 * process.h:
16237 * process.c:
16238 * print.c:
16239 * ndir.h:
16240 * lread.c:
16241 * keyboard.c:
16242 * getpagesize.h:
16243 * floatfns.c:
16244 * fileio.c:
16245 * emacs.c:
16246 * doc.c:
16247 * dispnew.c:
16248 * dired.c:
16249 * data.c:
16250 * callproc.c:
16251 * buffer.c:
16252 * README:
16253 * Makefile.in:
16254 * s/template.h:
16255 * s/msdos.h:
16256 * m/vax.h: Remove VMS support.
16257 * s/vms.h:
16258 * vlimit.h:
16259 * uaf.h:
16260 * temacs.opt:
16261 * param.h:
16262 * ioctl.h: Remove file.
16263
162642008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
16265
16266 * s/ms-w32.h (MULTI_KBOARD): Remove.
16267 * xterm.c:
16268 * xselect.c:
16269 * xfns.c:
16270 * window.c:
16271 * w32term.c:
16272 * w32fns.c:
16273 * terminal.c:
16274 * termhooks.h:
16275 * term.c:
16276 * sysdep.c:
16277 * keyboard.h:
16278 * keyboard.c:
16279 * frame.h:
16280 * frame.c:
16281 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
16282 * config.in: Regenerate.
16283
162842008-07-30 Jason Rumney <jasonr@gnu.org>
16285
16286 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
16287
16288 * w32font.c (w32font_encode_char): Leave as unicode if in range.
16289 (w32font_open_internal): Get unicode version of textmetrics.
16290 Don't enable or disable glyph indices here.
16291 (w32font_open): Disable use of glyph indices.
16292
16293 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
16294
162952008-07-30 Chong Yidong <cyd@stupidchicken.com>
16296
16297 * minibuf.c (Vread_buffer_function): Doc fix.
16298
162992008-07-30 John Paul Wallington <jpw@pobox.com>
16300
16301 * minibuf.c (read_buffer_completion_ignore_case): New var.
16302 (Fread_buffer): Use it.
16303
163042008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
16305
16306 * systty.h (sensemode): Remove empty #if. Remove reference to
16307 BSD_TERMIOS, unused.
16308
16309 * sysdep.c: Remove reference to DGUX.
16310 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
16311
16312 * config.in: Regenerate.
16313
163142008-07-30 Jason Rumney <jasonr@gnu.org>
16315
16316 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
16317
163182008-07-29 Jason Rumney <jasonr@gnu.org>
16319
16320 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
16321 is populated.
16322 (uniscribe_encode_char): Always use uniscribe.
16323 Avoid using context if cache is populated.
16324
163252008-07-29 Jan Djärv <jan.h.d@swipnet.se>
16326
16327 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
16328 open menu.
16329
16330 * gtkutil.c (menu_nav_ended): Remove.
16331 (create_menus): Remove signal connect for menu_nav_ended.
16332
163332008-07-28 Chong Yidong <cyd@stupidchicken.com>
16334
16335 * xdisp.c (redisplay_window): Check return value of
16336 compute_window_start_on_continuation_line before forcing a window
16337 start.
16338
163392008-07-28 Jason Rumney <jasonr@gnu.org>
16340
16341 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
16342
16343 * w32term.c (w32_enable_unicode_output, cleartype_active):
16344 Remove obsolete display options.
16345 (x_draw_glyph_string_background): Don't use old cleartype_active
16346 workaround.
16347 (w32_initialize): Remove cleartype_active initialization.
16348 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
16349
163502008-07-28 Andreas Schwab <schwab@suse.de>
16351
16352 * lisp.h (init_weak_hash_tables, syms_of_font)
16353 (xd_read_queued_messages, syms_of_dbusbind): Declare.
16354 (remove_hash_entry): Don't declare.
16355 * eval.c (maybe_call_debugger): Make static and move before use.
16356 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
16357 * xdisp.c: Include "gtkutil.h" if USE_GTK.
16358 * xterm.h (x_set_frame_alpha): Declare.
16359
163602008-07-28 Jan Djärv <jan.h.d@swipnet.se>
16361
16362 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
16363 (create_menus): Connect selection-done to menu_nav_ended.
16364
163652008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16366
16367 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
16368 Set Vx_resource_name to a fallback. Replace read of 'buffered'
16369 parameter with read of 'alpha' one.
16370 (Qns_frame_parameter): Remove.
5582fbc7 16371 * nsselect.m (selection-coding-system)
aac0c6e3
MR
16372 (next-selection-coding-system, Vselection_coding_system)
16373 (Vnext_selection_coding_system): Drop.
16374
163752008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
16376
16377 * nsfns.m (do-applescript, do_applescript): Rename to
16378 ns-do-applescript, ns_do_applescript, and move within file.
16379
163802008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
16381
16382 Remove support for Mac Carbon.
16383 * mactoolbox.c:
16384 * macterm.h:
16385 * macterm.c:
16386 * macselect.c:
16387 * macmenu.c:
16388 * macgui.h:
16389 * macfns.c:
16390 * mac.c: Remove file.
16391 * s/darwin.h:
16392 * m/intel386.h:
16393 * xfaces.c:
16394 * xdisp.c:
16395 * window.c:
16396 * tparam.c:
16397 * termhooks.h:
16398 * termcap.c:
16399 * term.c:
16400 * syssignal.h:
16401 * sysselect.h:
16402 * sysdep.c:
16403 * process.c:
16404 * lread.c:
16405 * lisp.h:
16406 * keyboard.c:
16407 * image.c:
16408 * fringe.c:
16409 * frame.h:
16410 * frame.c:
16411 * fontset.c:
16412 * font.h:
16413 * font.c:
16414 * fns.c:
16415 * fileio.c:
16416 * emacs.c:
16417 * dispnew.c:
16418 * dispextern.h:
16419 * config.in:
16420 * atimer.c:
2ae37cf0 16421 * Makefile.in: Remove code for Carbon.
aac0c6e3 16422
f0131492 164232008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3
MR
16424
16425 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
16426
164272008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16428
16429 * macterm.h (kCGBitmapByteOrder32Host): New define for
16430 non-universal SDKs.
16431
16432 * image.c (mac_create_cg_image_from_image, image_load_image_io)
16433 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
16434
16435 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
16436 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
16437
164382008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
16439
16440 * w32inevt.c: Include dispextern.h.
16441
164422008-07-26 Andreas Schwab <schwab@suse.de>
16443
16444 * print.c (print_object): Fix off-by-one in last change.
16445
164462008-07-25 Juanma Barranquero <lekktu@gmail.com>
16447
16448 * term.c (syms_of_term): Don't initialize default_orig_pair,
16449 default_set_foreground and default_set_background on Windows.
16450
164512008-07-25 Jason Rumney <jasonr@gnu.org>
16452
16453 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
16454 ScriptItemize. Clean up return value checking. Remove unused
16455 variables.
16456 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
16457 shaping engine.
16458
16459 * w32font.c (w32font_has_char): Handle the case where we can't
16460 determine the script for a character.
16461
164622008-07-25 Chong Yidong <cyd@stupidchicken.com>
16463
16464 * term.c (syms_of_term): Initialize default_orig_pair,
16465 default_set_foreground, and default_set_background.
16466
16467 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
16468 clash (bug#86).
16469 (getloadavg): Callers changed.
16470
16471 * image.c (svg_load_image): Fix last change.
16472 (svg_load_image): Use rsvg_handle_get_dimensions to check that
16473 image size is valid. Use g_object_unref instead of deprecated
16474 rsvg_handle_free to free rsvg handle.
16475 (x_from_xcolors): Don't initialize pixmap (silence compiler).
16476
164772008-07-25 Jason Rumney <jasonr@gnu.org>
16478
16479 * w32font.c (w32font_encode_char): Encode characters outside BMP as
16480 surrogates before looking up glyph index.
16481 (w32font_text_extents): Encode as surrogates if falling back to
16482 functions that need UTF-16 wide chars.
16483
16484 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
16485 BMP as surrogates before looking up glyph index.
16486
164872008-07-25 Chong Yidong <cyd@stupidchicken.com>
16488
16489 * image.c (svg_load_image): Check for failure in return value of
16490 rsvg_handle_get_pixbuf. Free rsvg handle when done.
16491
164922008-07-25 Jason Rumney <jasonr@gnu.org>
16493
16494 * w32font.c (Fx_select_font): Reverse sense of second arg.
16495
164962008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
16497
16498 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
16499 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
16500
16501 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
16502 (PURESIZE): Use it.
16503
165042008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
16505
16506 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
16507 * m/alpha.h (TEXT_END):
16508 * m/ibmrs6000.h (TEXT_END):
16509 * m/macppc.h (TEXT_END):
16510 * s/darwin.h (TEXT_END):
16511 * s/msdos.h (TEXT_END): Remove, unused.
16512 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
16513 * s/cygwin.h: Remove comment.
16514
16515 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
16516 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
16517 * m/intel386.h (DOT_GLOBAL_START):
16518 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
16519 (USG): Remove, file not used on USG platforms.
16520
16521 * Makefile.in (HAVE_X11): Remove empty #else.
16522
165232008-07-24 Andreas Schwab <schwab@suse.de>
16524
16525 * fileio.c (Finsert_file_contents): Properly adjust undo list
16526 after format conversion.
16527
165282008-07-24 Jan Djärv <jan.h.d@swipnet.se>
16529
16530 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
16531 (menu_nav_ended): Remove.
16532 (create_menus): Remove signal connect for menu_nav_ended.
16533 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
16534 create_menus.
16535 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
16536
165372008-07-23 Jason Rumney <jasonr@gnu.org>
16538
16539 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
16540 with opened font.
16541 (w32font_open): Set font type to gdi.
16542
16543 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
16544
165452008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
16546
16547 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
16548 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
16549 defines it.
16550 * unexec.c (ADDR_CORRECT): Define unconditionally.
16551
16552 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
16553
16554 * unexec.c: Remove code depending on !COFF and USG, the file is
16555 not used for such systems.
16556
16557 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
16558 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
16559 (LD_SWITCH_SYSTEM_1): Remove, update users.
16560
16561 * s/darwin.h (DATA_END):
16562 * m/intel386.h (DATA_END):
16563 * m/ibmrs6000.h (DATA_END):
16564 * m/alpha.h (DATA_END): Remove, unused.
16565
16566 * config.in: Regenerate.
16567 * s/ms-w32.h (subprocesses): Define unconditionally.
16568 * s/template.h (subprocesses): Update comment.
16569 * s/vms.h (subprocesses):
16570 * s/usg5-4.h (subprocesses):
16571 * s/hpux10-20.h (subprocesses):
16572 * s/gnu-linux.h (subprocesses):
16573 * s/cygwin.h (subprocesses):
16574 * s/bsd-common.h (subprocesses):
16575 * s/aix4-2.h (subprocesses):
16576 * s/darwin.h (subprocesses): Do not define, defined by default now.
16577
16578 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
16579 Remove all references.
16580 (temacs): Add GNUstep specific ld flags.
16581
16582 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
16583 similarly to what X does.
16584
165852008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16586
16587 * nsfns.m (x-list-fonts): Remove.
16588 (syms_of_nsfns): Drop the x-list-fonts declaration.
16589 * nsterm.m: Get rid of remaining "//" comments.
16590
165912008-07-22 Chong Yidong <cyd@stupidchicken.com>
16592
16593 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
16594
16595 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
16596 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
16597 (Fns_own_selection_internal, Fx_disown_selection_internal)
16598 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
16599
16600 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
16601 ... */' style of docstrings. Doc fixes.
16602
166032008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16604
16605 * terminfo.c (UP, BC, PC): Undo previous change.
16606
16607 * nsfns.m: Rename ns prefixed functions/variables to the
16608 corresponding x versions. Update references.
16609
166102008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
16611
16612 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
16613
166142008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
16615
16616 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
16617 Remove forwarding functions.
16618 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
16619 non-static.
16620 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
16621 non-static.
16622 (ns_frame_parm_handlers): Use the new names.
16623 (syms_of_nsfns): Move to the end of file.
16624
16625 * nsterm.m (syms_of_nsterm): Move to the end of file.
16626
16627 * dispnew.c (init_display): Remove code for X10.
16628
166292008-07-22 Jason Rumney <jasonr@gnu.org>
16630
16631 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
16632 bare drive.
16633
166342008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
16635
16636 * nsterm.m (syms_of_nsterm): Remove debugging println.
16637
166382008-07-22 David Reitter <david.reitter@gmail.com>
16639
16640 * nsfns.m (do_applescript, F_do_applescript): NS version of the
16641 Carbon implementation of the same functionality: execute arbitrary
16642 AppleScript code.
16643
166442008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
16645
16646 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
16647 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
16648 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
16649 (Fx_display_mm_height, Fx_display_mm_width)
16650 (Fx_display_backing_store, Fx_display_visual_class)
16651 (Fx_display_save_under, Fx_open_connection)
16652 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
16653 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
16654 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
16655 (Fx_display_pixel_width, Fx_display_pixel_height)
16656 (Fx_display_usable_bounds, Fx_display_planes)
16657 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
16658 ... */' style of docstrings.
16659
166602008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
16661
16662 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
16663 on this platform.
16664 (mips):
16665 * m/iris4d.h (mips): Do not define.
16666 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
16667
16668 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
16669
16670 * image.c:
16671 * nsfns.m:
16672 * nsselect.m:
16673 * nsterm.h:
16674 * nsterm.m: Rename ns prefixed functions/variables to the
16675 corresponding x versions. Update references.
16676
16677 * m/ibms390x.h (NO_REMAP): Do not undefine.
16678
16679 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
16680
166812008-07-21 Chong Yidong <cyd@stupidchicken.com>
16682
16683 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
16684 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
16685 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
16686 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
16687 (Fns_display_mm_height, Fns_display_mm_width)
16688 (Fns_display_backing_store, Fns_display_visual_class)
16689 (Fns_display_save_under, Fns_open_connection)
16690 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
16691 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
16692 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
16693 (Fns_display_pixel_width, Fns_display_pixel_height)
16694 (Fns_display_usable_bounds, Fx_display_planes)
16695 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
16696
166972008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
16698
16699 * print.c (print_object): Check print_depth before searching for
16700 circularities.
16701
167022008-07-21 Michael Albinus <michael.albinus@gmx.de>
16703
16704 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
16705 only sprintf.
16706
167072008-07-21 Kenichi Handa <handa@m17n.org>
16708
16709 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
16710
167112008-07-20 Andreas Schwab <schwab@suse.de>
16712
16713 * syntax.c (find_start_pos, find_start_value)
16714 (find_start_value_byte, find_start_begv, find_defun_start)
16715 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
16716
167172008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16718
16719 * s/sol2-3.h: Insert contents of s/sol2.h.
16720 (LD_SWITCH_SYSTEM): Remove redundant definition.
16721 * s/sol2.h: Remove, unused.
16722
167232008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
16724
16725 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
16726
167272008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
16728
16729 * Makefile.in (ns_appdir): Fix typo in find command.
16730
167312008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
16732
16733 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
16734
16735 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
16736 added not supported anymore.
16737
16738 * s/usg5-4-2.h (LIBS_SYSTEM):
16739 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
16740
16741 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
16742 * s/lynxos.h (GETPGRP_NO_ARG):
16743 * s/hpux10-20.h (NO_SIOCTL_H):
16744 * s/gnu.h (GETPGRP_NO_ARG):
16745 * s/gnu-linux.h (NO_SIOCTL_H):
16746 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
16747 * s/cygwin.h (GETPGRP_NO_ARG):
16748 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
16749 (C_DEBUG_SWITCH): Remove duplicate definition.
16750
16751 * m/ibms390.h: Remove boilerplate comments.
16752
16753 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
16754
16755 * process.c (HAVE_SERIAL): Consolidate ifdefs.
16756 (wait_reading_process_output): Remove code for SunOS, platform not
16757 supported anymore. Use SOLARIS2 instead of sun.
16758
167592008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16760
16761 * font.c (font_open_by_name): Under NS, default lface height to zero.
16762 (font_open_for_lface): Under NS, set size based on frame fontsize.
16763 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
16764 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
16765
167662008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16767
16768 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
16769 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
16770 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
16771 YES/NO.
16772 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
16773 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
16774 * Makefile.in (clean): Clear out build destination dir.
16775
167762008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16777
16778 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
16779 xterm, xselect.
16780 * lisp.h: Remove declaration of hash_remove.
16781 * nsgui.h: Remove redefinitions of hash_remove.
16782 * fns.c (hash_remove): Rename to hash_remove_from_table.
16783
167842008-07-19 Seiji Zenitani <zenitani@mac.com>
16785
16786 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
16787 strdup() the family UTF8String before modifying it.
16788
167892008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
16790
16791 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
16792 NS_FACE_BACKGROUND with 0 instead of nil.
16793 * nsfont.m (nsfont_draw): Same.
16794
167952008-07-19 Chong Yidong <cyd@stupidchicken.com>
16796
16797 * nsfns.m (ns_set_background_color): Fix crash.
16798
167992008-07-18 Chong Yidong <cyd@stupidchicken.com>
16800
16801 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
16802
168032008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
16804
16805 * puresize.h (BASE_PURESIZE): Increase to 1240000.
16806
168072008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16808
16809 * gtkutil.c: Include <config.h> instead of "config.h".
16810
16811 * lisp.h (Foverlay_buffer): Add EXFUN.
16812
16813 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
16814 child process to complete child_setup. Undo 2005-09-21 change.
16815
16816 * s/darwin.h: Mention setsid after vfork.
16817
168182008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16819
16820 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
16821 Depend on macgui.h.
16822
16823 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
16824 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
16825
16826 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
16827 and f19.
16828 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
16829
16830 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
16831 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
16832 Remove enumerators.
16833
16834 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
16835 Check if FACE_FROM_ID returns NULL.
16836
168372008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
16838
16839 * w32inevt.c (change_frame_size): Remove extern declaration.
16840 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
16841 change_frame_size.
16842
168432008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
16844
16845 * getloadavg.c: Revert last change (2008-07-15).
16846
168472008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
16848
16849 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
362654a6 16850 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
aac0c6e3
MR
16851 from configure.
16852
168532008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
16854
16855 * s/sol2.h:
16856 * s/sol2-4.h: Reorganize conditionals.
16857
16858 * ecrt0.c: Remove code depending on m68000, not used anymore.
16859
16860 * fns.c (hash_remove): Make static.
16861 * lisp.h (hash_remove): Don't prototype.
16862
16863 * m/ibmrs6000.h:
16864 * m/ibms390x.h:
16865 * m/macppc.h: Remove boilerplate comments.
16866
16867 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
16868 Solaris, which does not need them.
16869
16870 * m/vax.h: Remove comments about unsupported systems.
16871
16872 * s/darwin.h: Reorganize ifdefs.
16873
168742008-07-17 Andreas Schwab <schwab@suse.de>
16875
16876 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
16877
168782008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
16879
16880 Use SDATA. Follow coding convention of placing operators at
16881 beginning of next line rather than end of previous line, and placing
16882 spaces around infix operators.
16883
16884 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
16885 in case it was defined already.
16886 USE @GNUSTEP_MAKEFILES@ rather than envvars.
16887 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
16888 ns_default.
16889 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
16890 Lisp_Objects.
16891 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
16892 (ns_defined_color, ns_color_to_lisp): Declare.
16893 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
16894 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
16895 it's accepted even with USE_LISP_UNION_TYPE.
16896 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
16897 (update_frame_tool_bar): Remove apparently obsolete tests for
16898 non-integerness of f->tool_bar_lines.
16899 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
16900 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
16901 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
16902 (nsfont_open): Don't confuse NULL for Qnil.
16903 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
16904 * menu.h (find_and_call_menu_selection):
16905 * menu.c (find_and_call_menu_selection): Use just int for vector size.
16906 (find_and_return_menu_selection): Always return something.
16907 * frame.h: Include dispextern.h for Display_Info.
16908 (display_x_get_resource): Declare.
16909
169102008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
16911
16912 * syntax.c: Remove stdio.h include accidentally introduced in
16913 Emacs.app commit.
16914 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
16915 NS_IMPL_COCOA.
16916 * keyboard.c (handle_async_input, input_available_signal): Remove
16917 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
16918
169192008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
16920
16921 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
16922 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
16923 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
16924 Use SDATA.
16925
16926 * keymap.c: Remove all NS-specific code.
16927 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
16928 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
16929 where_is_preferred_modifier, return a different value depending on how
16930 preferred is the binding.
16931 (where_is_internal): Adjust accordingly.
16932 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
16933 Adjust to new preferred_sequence_p.
16934 (syms_of_keymap): Declare `where-is-preferred-modifier'.
16935 * keyboard.c (parse_solitary_modifier): Not static any more.
16936 * keyboard.h (parse_solitary_modifier): Declare.
16937
169382008-07-16 Andreas Schwab <schwab@suse.de>
16939
16940 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
16941 of easymenu.
16942
169432008-07-16 Chong Yidong <cyd@stupidchicken.com>
16944
16945 * xdisp.c (move_it_in_display_line): Account for word wrap, so
16946 that we don't move off the line.
16947
169482008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
16949
16950 * keyboard.c (Qsuper): Remove.
16951 (parse_menu_item): Don't call where_is_internal specially for NS.
16952
169532008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16954
16955 * s/gnu-linux.h: Remove boilerplate comments.
16956
16957 * m/alpha.h (__ELF__): Consolidate conditions.
16958
16959 * m/m68k.h (linux): Use GNU_LINUX instead.
16960 Remove boilerplate comments.
16961
16962 * m/intel386.h: Undo refactoring from previous change.
16963 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
16964 too, remove dead code.
16965 (linux): Use GNU_LINUX instead.
16966
169672008-07-16 Jason Rumney <jasonr@gnu.org>
16968
16969 * w32gui.h: Repeat 26 June changes lost by last change.
16970
169712008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
16972
16973 * systty.h: Remove code for Aix on 386, unsupported platform.
16974
16975 * s/ms-w32.h: Remove boilerplate comments.
16976 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
16977
16978 * s/gnu-linux.h (TERM): Remove support.
16979 (HAVE_SYSVIPC): Remove, unused.
16980 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
16981 for this system.
16982
16983 * process.c: Remove support for IRIS, unused.
16984 Remove support for TERM, not relevant anymore.
16985
16986 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
16987 used with the definition.
16988
16989 * s/aix4-2.h (static): Do not undef.
16990
16991 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
16992 only used on Aix.
16993 (HAVE_SYSVIPC): Remove, unused.
16994
16995 * m/hp800.h (CANNOT_DUMP): Do not undef.
16996
16997 * m/alpha.h: Fix comment.
16998
16999 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
17000 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
17001 used by this configuration.
17002 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
17003 * unexec.c: Remove code depending on HPUX and
17004 USG_SHARED_LIBRARIES, not used with this file. Remove code
17005 depending on IRIS, unused. Remove if 0-ed code.
17006
17007 * s/template.h: Remove comments about static.
17008
17009 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
17010 Remove if 0-ed code.
17011 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
17012 were the same as the default.
17013 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
17014 Remove boilerplate comments.
17015 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
17016 (HAVE_SYSVIPC): Remove, unused.
17017 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
17018
17019 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
17020 Remove boilerplate comments.
17021 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
17022 Remove boilerplate comments.
17023 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
17024 Remove boilerplate comments.
17025 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
17026
17027 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
17028 USG systems which do not use DATA_SEG_BITS.
17029 Refactor code. Remove boilerplate comments.
17030
17031 * m/ibms390.h:
17032 * m/m68k.h:
17033 * s/bsd-common.h:
17034 * s/cygwin.h:
17035 * s/darwin.h:
17036 * s/freebsd.h:
17037 * s/gnu.h:
17038 * s/msdos.h: Remove boilerplate comments.
17039
17040 * m/iris4d.h: Remove boilerplate comments and code for systems that
6873acca 17041 do not use this file.
aac0c6e3
MR
17042 (IRIS_4D): Remove, unused.
17043
17044 * m/mips.h: Remove boilerplate comments and code for systems that
6873acca 17045 do not use this file.
aac0c6e3
MR
17046 (SIGN_EXTEND_CHAR):
17047 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
17048 * unexmips.c: Remove file, unused.
17049
17050 * editfns.c (Fuser_full_name): Replace the only use of
17051 USER_FULL_NAME with its value.
17052 * config.in: Regenerate.
17053
170542008-07-16 David Reitter <david.reitter@gmail.com>
17055
17056 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
17057 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
17058
170592008-07-16 Glenn Morris <rgm@gnu.org>
17060
17061 * emacs.c (system-type): Doc fix.
17062
170632008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
17064
17065 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
17066 If the cache doesn't work, let's fix it, rather than work around it.
17067
170682008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
17069
17070 * Makefile.in: Correct additions for nsfont.o in last commit.
17071 * nsfont.m: New file (forgot last commit).
17072
170732008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
17074
bba3e508
SM
17075 * callproc.c (set_initial_environment):
17076 Initialize Vprocess_environment under CANNOT_DUMP (fixes crash when
aac0c6e3
MR
17077 batch-compiling for bootstrap).
17078
170792008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
acd0102a 17080 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3 17081
c4cc8b9a
JB
17082 * frame.c (make_initial_frame): Call init_frame_faces(f) in
17083 CANNOT_DUMP case -- fix crash due to different init order.
aac0c6e3
MR
17084
170852008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
17086
17087 Changes and additions for NeXTstep windowing system (Cocoa and
17088 GNUstep) support.
17089
17090 * Makefile.in:
17091 * config.in: Support defines and build commands for NS port.
17092 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
17093 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
17094 * dispextern.h: Include nsgui.h and add needed typedefs under NS
17095 windowing.
17096 (struct face): Add synth_ital field.
17097 * dispnew.c: Include nsterm.h when compiling under NS windowing.
17098 (init_display): Initialize Vinitial_window_system to "ns" when so
17099 compiled.
17100 * emacs.c: Include GSConfig.h when compiling under GNUstep.
17101 (display_arg): Use under NS.
17102 (main): Under NS, allocate autorelease pool and handle command line
17103 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
17104 (standard_args): Add NS-specific args.
17105 (shut_down_emacs): Shut down NS terminal if compiled under NS.
17106 * font.c (DEFAULT_ENCODING): New variable.
17107 (font_find_for_lface): Use it.
17108 (syms_of_font): Load syms_of_nsfont under NS.
17109 * font.h: Declare nsfont_driver when compiled under NS.
17110 * fontset.c: When compiling under NS, include nsterm.h.
17111 (fontset_from_font): Autoconstruct fontset under NS.
17112 * frame.c (various): Under NS, include nsterm.h, add Qns window system
17113 symbol, document and use it.
17114 (do_switch_frame): When for_deletion under Cocoa, add
17115 Fraise_frame(Qnil).
17116 (x_set_frame_parameters): Ensure font attribute changes are picked up.
17117 (x_get_arg): Allow "yes" and "no" as boolean values.
17118 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
17119 Qright under Cocoa.
17120 (focus-follows-mouse): Default to 0 under NS.
17121 * frame.h (enum output_method): Add output_ns.
17122 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
17123 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
17124 (FRAME_WINDOW_P): NS-specific definition.
17125 * fringe.c (max_used_fringe_bitmap): Make public.
17126 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
17127 (getloadavg): Use NeXT code under descendant OS's.
17128 * image.c (includes and header section, x_create_bitmap_from_data)
17129 (x_create_bitmap_from_file, free_bitmap_record, image_background)
17130 (image_background_transparent, x_clear_image_1)
17131 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
17132 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
17133 (x_to_xcolors, x_from_xcolors, x_disable_image)
17134 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
17135 other GUIs, including XPM support using code originally written for
17136 Carbon GUI.
17137 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
17138 using NS API.
17139 (image_ascent): Use font metrics macros instead of direct struct field
17140 access.
17141 * keyboard.c (includes): Add nsterm.h when compiling under NS.
17142 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
17143 Also, handle NS as GTK for menu bar purposes.
17144 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
17145 toolkit where they differ.
17146 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
17147 use cachelist, still needed under NS.
17148 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
17149 (struct widget_value): Define it here for menu.c.
17150 * keymap.c (includes): Include modifier internals.
17151 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
17152 NS.
17153 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
17154 support for preferring sequences using certain modifiers, specified by
17155 the FIRSTONLY argument.
17156 * lisp.h (hash_remove): Rename to avoid name clash when compiling
17157 under NS GNUstep implementation.
17158 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
17159 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
17160 * menu.c: Include nsterm.h under NS.
17161 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
17162 (free_menubar_widget_tree_value, update_submenu_strings)
17163 (find_and_call_menu_selection): Treat NS as X and NT.
17164 (find_and_return_menu_selection): New function, used for popup menus.
17165 * nsgui.h:
17166 * nsterm.h:
17167 * nsfns.m:
17168 * nsimage.m:
17169 * nsmenu.m:
17170 * nsselect.m:
17171 * nsterm.m: New files.
17172 * process.c (wait_reading_process_output): Under NS, call ns_select()
17173 instead of plain select().
17174 * syntax.c (char_quoted): Under NS, avoid a crash when called near
17175 beginning of buffer.
17176 * sysselect.h (init_process): Rename when compiling under Cocoa to
17177 avoid name conflict.
17178 * termhooks.h (display_info): Add ns_display_info to union.
17179 * terminal.c (Fterminal_live_p): Add ns to terminal types.
17180 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
17181 COCOA environment.
17182 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
17183 unexec() signature. (Note, this will dump, but the resulting file
17184 crashes; unexosx is used instead; keeping around for reference and
17185 possible aid in getting dump working under GNUstep.)
17186 * w32gui.h (button_type, widget_value): Remove definitions (now in
17187 keyboard.h).
17188 * window.c: Include nsterm.h when compiling under NS.
17189 * xdisp.c (includes): Include nsterm.h when compiling under NS.
17190 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
17191 other GUI windowing systems.
17192 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
17193 GTK.
17194 (x_consider_frame_title): Under NS, set icon type and frame
17195 modified-state indicator; use ns_set_name_as_filename() when using
17196 formatted title.
17197 (update_window_cursor): Make public when compiling under NS.
17198 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
17199 (hourglass_atimer, Vhourglass_delay
17200 * xfaces.c (header section, init_frame_faces, clear_font_table)
17201 (defined_color, unload_color, x_face_list_fonts)
17202 (prepare_face_for_display): Add NS support parallel to other GUIs.
17203 Emulate GCs like other non-X GUIs.
17204 (split_font_name): Don't lowercase font name under NS.
17205 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
17206 under NS.
17207 * s/darwin.h: Add support for compilation under NS.
17208
172092008-07-15 Jason Rumney <jasonr@gnu.org>
17210
17211 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
17212 (w32_show_hourglass): Rename from show_hourglass.
17213 (w32_hide_hourglass): Rename from hide_hourglass.
17214 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
17215 (Vhourglass_delay): Declare extern.
17216 (hourglass_started): Remove.
17217
17218 * xdisp.c (Vhourglass_delay): Remove static.
17219 (hourglass_started, start_hourglass, cancel_hourglass):
17220 Don't include these versions on WINDOWSNT.
17221
172222008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
17223
17224 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
17225 variables (formerly in xfns.c).
17226 (show_hourglass, hide_hourglass): New prototypes (same).
17227 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
17228 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
17229 in xfns.c).
17230 (syms_of_xdisp): Declare/initialize display-hourglass,
17231 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
17232 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
17233 formerly in xfns.c.
17234 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
17235 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
17236 (start_hourglass, cancel_hourglass): Remove.
17237 (show_hourglass, hide_hourglass): Remove prototypes and static
17238 modifiers.
17239 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
17240 hourglass_atimer, hourglass_shown_p declaration/initialization.
17241 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
17242 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
17243 (start_hourglass, cancel_hourglass): Remove.
17244 (show_hourglass, hide_hourglass): Remove prototypes and static
17245 modifiers.
17246 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
17247 hourglass_atimer, hourglass_shown_p declaration/initialization.
17248 * w32fns.c (display_hourglass_p, Vhourglass_delay)
17249 (DEFAULT_HOURGLASS_DELAY): Remove.
17250 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
17251 hourglass_shown_p declaration/initialization.
17252
172532008-07-14 Jason Rumney <jasonr@gnu.org>
17254
17255 * w32fns.c (w32_get_arg): Remove wrapper function.
17256 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
17257 directly.
17258 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
17259
172602008-07-14 Kenichi Handa <handa@m17n.org>
17261
17262 * xfont.c (xfont_open): Add workaround for X's bug.
17263
172642008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
17265
17266 * fontset.c: Include <stdio.h> unconditionally.
17267
172682008-07-13 Michael Albinus <michael.albinus@gmx.de>
17269
17270 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
17271 for filtering.
17272
172732008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
17274
17275 * s/vms.h: Use __GNUC__ instead of _GNUC_.
17276
17277 * m/macppc.h:
17278 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
17279
c4cc8b9a 17280 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default.
aac0c6e3
MR
17281 (SPECIAL_EMACS_INT):
17282 * m/ia64.h (SPECIAL_EMACS_INT):
17283 * m/amdx86-64.h (SPECIAL_EMACS_INT):
17284 * s/gnu.h (NLIST_STRUCT):
17285 * s/aix4-2.h (X11R5_INHIBIT_I18N):
17286 * s/gnu-linux.h (LINUX):
17287 * s/msdos.h (HAVE_FACES):
17288 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
17289
17290 * systty.h:
17291 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
17292 anymore.
17293
172942008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
17295
17296 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
17297 always defined as int.
17298
17299 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
17300 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
17301 * s/gnu-linux.h (HAVE_WAIT_HEADER):
17302 * s/freebsd.h (HAVE_WAIT_HEADER):
17303 * s/bsd-common.h (HAVE_UNION_WAIT):
17304 * s/aix4-2.h (HAVE_WAIT_HEADER):
17305 * m/mips.h (HAVE_UNION_WAIT):
17306 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
17307 (COFF, static): Do not define, they are undefined later in the file.
17308
17309 * process.c (update_status): Don't use a union.
17310 (status_convert):
17311 (sigchld_handler): Use int instead of WAITTYPE.
17312
173132008-07-12 Chong Yidong <cyd@stupidchicken.com>
17314
17315 * indent.c (Fvertical_motion): Restore hscroll before moving to
17316 goal column.
17317
173182008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
17319
17320 * lisp.h: Remove left over code.
17321
173222008-07-11 Andreas Schwab <schwab@suse.de>
17323
17324 * lisp.h: Fix logic in last change.
17325
17326 * menu.h: New file.
17327 * menu.c: Include it.
17328 * xmenu.c: Likewise.
17329 * Makefile.in: Update dependencies.
17330
173312008-07-11 Kenichi Handa <handa@m17n.org>
17332
17333 * fontset.c (fontset_from_font): Cancel the previous change.
17334
173352008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
17336
17337 * lisp.h:
17338 * w32heap.c:
17339 * emacs.c:
17340 * alloc.c: Replace all references of NO_UNION_TYPE with
17341 USE_LISP_UNION_TYPE.
17342
17343 * m/xtensa.h (NO_UNION_TYPE):
17344 * m/vax.h (NO_UNION_TYPE):
17345 * m/template.h (NO_UNION_TYPE):
17346 * m/sparc.h (NO_UNION_TYPE):
17347 * m/mips.h (NO_UNION_TYPE):
17348 * m/macppc.h (NO_UNION_TYPE):
17349 * m/m68k.h (NO_UNION_TYPE):
17350 * m/iris4d.h (NO_UNION_TYPE):
17351 * m/intel386.h (NO_UNION_TYPE):
17352 * m/ibms390x.h (NO_UNION_TYPE):
17353 * m/ibms390.h (NO_UNION_TYPE):
17354 * m/ibmrs6000.h (NO_UNION_TYPE):
17355 * m/ia64.h (NO_UNION_TYPE):
17356 * m/hp800.h (NO_UNION_TYPE):
17357 * m/arm.h (NO_UNION_TYPE):
17358 * m/amdx86-64.h (NO_UNION_TYPE):
17359 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
17360 defining it the same.
17361
173622008-07-10 Chong Yidong <cyd@stupidchicken.com>
17363
17364 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
17365
173662008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
17367
17368 * fileio.c:
50426a04 17369 * sysdep.c:
aac0c6e3
MR
17370 * systty.h:
17371 * m/ibmrs6000.h:
17372 * m/iris4d.h:
17373 * s/aix4-2.h:
17374 * s/freebsd.h:
17375 * s/gnu-linux.h:
17376 * s/hpux10-20.h:
17377 * s/hpux11.h:
17378 * s/netbsd.h:
17379 * s/sol2-3.h:
17380 * s/sol2-4.h:
17381 * s/sol2.h:
17382 * s/usg5-4.h:
17383 * s/vms.h: Remove references to unused variables.
17384
173852008-07-10 Andreas Schwab <schwab@suse.de>
17386
17387 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
17388 pattern before matching the generic family.
17389
173902008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
17391
17392 * unexec.c:
17393 * s/vms.h:
17394 * s/usg5-4-2.h:
17395 * s/sol2-5.h:
17396 * s/freebsd.h:
17397 * s/darwin.h: Remove dead code.
17398
17399 * m/template.h:
17400 * m/sparc.h:
17401 * m/mips.h:
17402 * m/m68k.h:
17403 * m/iris4d.h:
17404 * m/intel386.h:
17405 * m/ibms390x.h:
17406 * m/ibms390.h:
17407 * m/ia64.h:
17408 * m/hp800.h:
17409 * m/arm.h:
17410 * m/amdx86-64.h: Remove dead code and references to unused
17411 and compiler defined symbols.
17412
17413 * unexmips.c:
17414 * unexelf.c: Remove references to desupported systems.
17415
17416 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
17417
17418 * m/powermac.h: Remove boilerplate comments.
17419 (NO_REMAP): Remove unused definition.
17420
17421 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
17422 define them.
17423
174242008-07-10 Kenichi Handa <handa@m17n.org>
17425
17426 * xfont.c (xfont_open): Log the reason of failure.
17427
174282008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
17429
17430 * fontset.c (fontset_get_font_group):
17431 * font.c (font_check_otf): Specify argument types.
17432
174332008-07-09 Kenichi Handa <handa@m17n.org>
17434
17435 * coding.c (detect_coding_utf_8): Set detect_info->found only when
17436 non-ASCII char is found.
17437
17438 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
17439 (reorder_font_vector): Change the arg preferred_family to font.
17440 Prefer the spec matching with font.
17441 (fontset_get_font_group): New function.
17442 (fontset_find_font): Change the format of an element of a realized
17443 fontset. Use fontset_get_font_group.
17444 (fontset_font): Try the current fontset, the default fontset, the
17445 fallbacks of the current fontset, and the fallbacks of the default
17446 fontset in this order.
17447 (face_for_char): Delete the shortcut to use the current font.
17448 (fontset_from_font): Don't set fonts for Latin in the fontset.
17449
17450 * font.h (font_make_object, font_match_p): Adjust prototypes.
17451
17452 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
17453
17454 * font.c (font_make_object): New arg entity and pixelsize.
17455 (font_check_otf_features, font_check_otf): New functions.
17456 (font_match_p): Check :lang, :script, and :otf properties.
17457
17458 * xfont.c (xfont_open): Adjust it for the change of
17459 font_make_object.
17460 (xfont_text_extents): Fix initial setting of metrics.
17461
17462 * ftfont.c (struct ftfont_info): New member index, delete member
17463 fc_charset_idx. Make the member order compatible with struct
17464 xftfont_info.
17465 (fc_charset_table): Change charset names to registry names.
17466 (ftfont_pattern_entity): Delete the args registry and
17467 fc_charset_idx. Change the value of :font-entity property
17468 to (FONTNAME . INDEX). Always set :registry property to
17469 `iso10646-1'.
17470 (struct ftfont_cache_data): New struct.
17471 (ftfont_lookup_cache): New arg for_face.
17472 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
17473 (ftfont_driver): Set the member otf_capability.
17474 (ftfont_get_charset): Adjust it for the change of
17475 fc_charset_table.
17476 (OTF_TAG_SYM): New macro.
17477 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
17478 for the change of fc_charset_table.
17479 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
17480 ftfont_pattern_entity. Add FC_INDEX to objset.
17481 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
17482 and ftfont_pattern_entity.
17483 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
17484 font_make_object, struct ftfont_info.
17485 (ftfont_has_char): Use ftfont_get_fc_charset.
17486 (ftfont_otf_features, ftfont_otf_capability): New functions.
17487 (ftfont_shape): Use ftfont_get_otf.
17488 (ftfont_text_extents): Fix initial setting of metrics.
17489
17490 * xftfont.c (struct xftfont_info): New member ft_size. Make the
17491 member order compatible with struct ftfont_info.
bba3e508
SM
17492 (xftfont_open): Add FC_CHARSET to the pattern.
17493 Set xftfont_info->ft_size. Don't unlock the face. Check BDF
aac0c6e3
MR
17494 properties if appropriate.
17495 (xftfont_close): Unlock the face.
17496 (xftfont_anchor_point, xftfont_shape): Deleted.
17497 (syms_of_xftfont): Don't set members anchor_point and shape of
17498 xftfont_driver.
17499
17500 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
17501 font_make_object.
17502
17503 * w32font.c (w32font_open): Adjust it for the change of
17504 font_make_object.
17505 (w32font_open_internal): Don't set properties of font_object here.
17506
175072008-07-08 Chong Yidong <cyd@stupidchicken.com>
17508
17509 * macfns.c (x_create_tip_frame):
17510 * w32fns.c (x_create_tip_frame):
17511 * xfns.c (x_create_tip_frame): Pass parameter argument to
17512 face-set-after-frame-default.
17513
17514 * xfaces.c (Finternal_merge_in_global_face): Save merged
17515 attributes for the default face back into the face vector.
17516
175172008-07-08 Andreas Schwab <schwab@suse.de>
17518
17519 * fontset.h: Declare fontset_from_font. Don't declare
17520 new_fontset_from_font and fontset_from_font_name.
17521 * xterm.c: Include "fontset.h".
17522 * Makefile.in (xterm.o): Update dependencies.
17523
175242008-07-08 Glenn Morris <rgm@gnu.org>
17525
17526 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
17527 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
17528
175292008-07-07 Chong Yidong <cyd@stupidchicken.com>
17530
17531 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
17532 (x_set_frame_parameters): Don't bind it.
17533
175342008-07-07 Juanma Barranquero <lekktu@gmail.com>
17535
17536 * w32fns.c (map_w32_filename): Declare extern.
17537
175382008-07-07 Jason Rumney <jasonr@gnu.org>
17539
17540 * w32term.c (WS_EX_LAYERED): Define if not already.
17541
175422008-07-06 Chong Yidong <cyd@stupidchicken.com>
17543
17544 * xfaces.c (set_font_frame_param): Don't try to set the font
17545 parameter if it is still unspecified in the lface.
17546
175472008-07-05 Chong Yidong <cyd@stupidchicken.com>
17548
17549 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
17550 face if it didn't already exist.
17551
17552 * xdisp.c (try_window_id): Give up if word-wrapping is on.
17553
175542008-07-05 Andreas Schwab <schwab@suse.de>
17555
17556 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
17557
175582008-07-05 Chong Yidong <cyd@stupidchicken.com>
17559
17560 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
17561 word-wrapping.
17562 (IT_DISPLAYING_WHITESPACE): New macro.
17563 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
17564 when word-wrapping. Simplify word-wrapping logic. Use correct
17565 pixel positions when saving copies of the iterator.
17566 (display_line): Use proper wrap point if the last character on a
17567 line was preceded by whitespace.
17568
175692008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17570
17571 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
17572
175732008-07-04 Kenichi Handa <handa@m17n.org>
17574
17575 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
17576
17577 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
17578
175792008-07-02 Jason Rumney <jasonr@gnu.org>
17580
17581 * xfns.c (syms_of_xfns): Only define x-select-font when both
2ae37cf0 17582 HAVE_FREETYPE and USE_GTK.
aac0c6e3
MR
17583
17584 * xdisp.c (next_element_from_display_vector): Move assignment out
17585 of if statement.
17586
175872008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
17588
17589 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
17590
17591 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
17592 (syms_of_fileio): Initialize and export them.
17593 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
17594
17595 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
17596 (Fsystem_move_file_to_trash): New function.
17597 (syms_of_w32fns): Export it to lisp.
17598
175992008-07-01 Jason Rumney <jasonr@gnu.org>
17600
17601 * w32font.c (w32font_text_extents): Don't count overhang as part
17602 of width.
17603
176042008-06-30 Miles Bader <miles@gnu.org>
17605
17606 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
17607 Add `avoid_cursor_p' field.
17608
17609 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
17610 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
17611 (append_glyph, append_composite_glyph, produce_image_glyph)
17612 (append_stretch_glyph): Initialize avoid_cursor_p.
17613 (get_it_property): Rename from `get_line_height_property'.
17614 (x_produce_glyphs): Use get_it_property.
17615 (handle_line_prefix, push_display_prop): New functions.
17616 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
17617 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
17618 New variables.
17619 (syms_of_xdisp): Initialize them.
17620
176212008-06-30 Kenichi Handa <handa@m17n.org>
17622
17623 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
17624 XftDefaultSubstitute (they are called in XftFontMatch).
17625 (xftfont_open): Fix args to ftfont_font_format.
17626
17627 * ftfont.c (fc_charset_table): New member lang.
17628 (ftfont_resolve_generic_family): New arg pattern.
60612c8f 17629 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
aac0c6e3
MR
17630 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
17631 (ftfont_open): Fix args to ftfont_font_format.
17632 (ftfont_font_format): New arg filename.
17633
176342008-06-30 Chong Yidong <cyd@stupidchicken.com>
17635
17636 * xfaces.c (Finternal_merge_in_global_face): If default face was
17637 modified, realize it again. Update the font face attribute.
17638
176392008-06-29 Jason Rumney <jasonr@gnu.org>
17640
17641 * w32term.c (x_set_frame_alpha): Fix logic.
17642
176432008-06-29 Kenichi Handa <handa@m17n.org>
17644
17645 * fontset.c (Finternal_char_font): Return font-object instead of
17646 font-name.
17647
17648 * composite.c (get_composition_id): Fix the width calculation for TAB.
17649
176502008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
17651
17652 * indent.c (Fvertical_motion): Properly handle float column arg.
17653
176542008-06-28 Jason Rumney <jasonr@gnu.org>
17655
17656 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
17657 (pfnSetLayeredWindowAttributes): New function pointer.
17658 (w32_initialize): Initialize it when supported.
17659 (x_set_frame_alpha): New function.
17660
17661 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
17662 (w32_frame_parm_handlers): Set alpha handler.
17663
17664 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
17665
176662008-06-27 Jason Rumney <jasonr@gnu.org>
17667
17668 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
17669 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
17670 (w32_to_x_charset, x_to_w32_charset)
17671 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
17672 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
17673 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
17674 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
17675 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
17676 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
17677 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
17678 (Qw32_charset_unicode): Remove.
17679 (syms_of_w32fns): Update for above changes.
17680
17681 * w32font.c (w32_to_x_charset, x_to_w32_charset)
17682 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
17683 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
17684 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
17685 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
17686 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
17687 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
17688 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
17689 (syms_of_w32font): Update for above changes.
17690
176912008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
17692
17693 * s/usg5-4.h: Fix previous change: keep the correct branch of a
17694 removed #if.
17695 (USG_SHARED_LIBRARIES): Remove duplicate definition.
17696
176972008-06-26 Juanma Barranquero <lekktu@gmail.com>
acd0102a 17698 Eli Zaretskii <eliz@gnu.org>
aac0c6e3
MR
17699
17700 * makefile.w32-in (LOCAL_FLAGS):
17701 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
17702
17703 * sysdep.c (_spawnlp, _getpid):
17704 Declare with explicit _cdecl instead of _CRTAPI1.
17705
17706 * editfns.c (Fget_internal_run_time):
17707 Check for WINDOWSNT with #ifdef, not #if.
17708
177092008-06-26 Jason Rumney <jasonr@gnu.org>
17710
17711 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
17712
17713 * w32term.c (x_draw_glyph_string_foreground)
17714 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
17715 Use FONT_HANDLE macro.
17716 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
17717
17718 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
17719 (uniscribe_encode_char): Use FONT_HANDLE macro.
17720
17721 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
17722 (w32font_text_extents): Use precast w32_font.
17723 (w32font_close): Free cached metrics.
17724 (w32font_open_internal): Allocate space for name on stack.
17725
177262008-06-26 Chong Yidong <cyd@stupidchicken.com>
17727
17728 * xdisp.c (extend_face_to_end_of_line): Fix last change.
17729
177302008-06-26 Jason Rumney <jasonr@gnu.org>
17731
17732 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
17733 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
17734
177352008-06-26 Juanma Barranquero <lekktu@gmail.com>
17736
17737 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
17738
177392008-06-26 Jason Rumney <jasonr@gnu.org>
17740
17741 * w32bdf.c, w32bdf.h: Remove obsolete files.
17742
17743 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
17744
17745 * w32gui.h: Don't include w32bdf.h.
17746 (XCharStruct, enum w32_char_font_type, W32FontStruct):
17747 Remove obsolete font support.
17748
17749 * w32font.h (struct w32font_info): Remove compat_w32_font.
17750 Add hfont member.
17751 (FONT_COMPAT): Remove obsolete macro.
17752
17753 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
17754 (w32font_encode_char, w32font_text_extents): Use new hfont member.
17755 (w32font_open_internal): Remove compat code. Set new hfont member.
17756 (Fx_select_font): Use new hfont member.
17757
17758 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
17759 (uniscribe_encode_char): Use new hfont member.
17760
17761 * w32term.c (x_draw_glyph_string_foreground)
17762 (x_draw_composite_glyph_string_foreground): Use new hfont member.
17763 (x_draw_glyph_string): Use metrics in w32font_info.
17764
177652008-06-26 Kenichi Handa <handa@m17n.org>
17766
17767 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
17768
177692008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
17770
17771 * unexnext.c:
17772 * m/ews4800.h:
17773 * m/hp9000s300.h:
17774 * m/ibm370aix.h:
17775 * m/mips-siemens.h:
17776 * m/ncr386.h:
17777 * m/next.h:
17778 * m/pmax.h:
17779 * m/powerpcle.h:
17780 * m/tandem-s2.h:
17781 * s/386bsd.h:
17782 * s/bsd386.h:
17783 * s/bsd4-1.h:
17784 * s/bsd4-2.h:
17785 * s/bsdos2-1.h:
17786 * s/bsdos2.h:
17787 * s/bsdos3.h:
17788 * s/bsdos4.h:
17789 * s/nextstep.h:
17790 * s/ultrix4-3.h:
17791 * s/usg5-0.h:
17792 * s/usg5-2-2.h:
17793 * s/usg5-2.h:
17794 * s/usg5-4-3.h:
17795 * s/ux4800.h:
17796 * s/uxpds.h:
17797 * s/uxpv.h: Remove support for obsolete systems.
17798 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
8f3a3ac2 17799 Remove, insert contents in s/hpux10-20.h.
aac0c6e3
MR
17800 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
17801 Remove, insert contents in s/aix4-2.h.
17802 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
17803 * s/bsd4-3.h: Rename to ...
17804 * s/bsd-common.h: ... this.
17805 * data.c:
17806 * doc.c:
17807 * ecrt0.c:
17808 * emacs.c:
17809 * fileio.c:
17810 * floatfns.c:
17811 * keyboard.c:
17812 * mem-limits.h:
17813 * print.c:
17814 * process.c:
17815 * sysdep.c:
17816 * syssignal.h:
17817 * systty.h:
17818 * syswait.h:
17819 * term.c:
17820 * unexec.c:
17821 * unexelf.c:
17822 * unexhp9k800.c:
17823 * m/hp800.h:
17824 * m/ibmrs6000.h:
17825 * m/mips.h:
17826 * m/vax.h:
17827 * s/darwin.h:
17828 * s/freebsd.h:
17829 * s/gnu.h:
17830 * s/ms-w32.h:
17831 * s/msdos.h:
17832 * s/netbsd.h:
17833 * s/template.h: Remove references to obsolete variables.
17834
17835 * Makefile.in: Add dependencies for all unexec files.
17836 (admindir): Remove unused variable.
17837 (UNEXEC_SRC): Remove references.
17838
178392008-06-25 Chong Yidong <cyd@stupidchicken.com>
17840
17841 * xfns.c (x_default_font_parameter): If Xft is available, first
17842 try Monospace-12 for the default font.
17843
178442008-06-25 Jason Rumney <jasonr@gnu.org>
17845
17846 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
17847
178482008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
17849
17850 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
17851
17852 * buffer.c (syms_of_buffer): Remove default-word-wrap.
17853
178542008-06-25 Juanma Barranquero <lekktu@gmail.com>
17855
17856 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
17857 <scroll-conservatively>: Fix typo in docstring.
17858
17859 * xselect.c (Fx_send_client_event): Doc fix.
17860
178612008-06-25 Kenichi Handa <handa@m17n.org>
17862
17863 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
17864
17865 * font.c (font_parse_fcname): Remove unused variables.
17866 (font_sort_entites): Delete the arg SPEC. Caller changed.
17867 Fix for the case of ! best_only.
17868 (font_delete_unmatched): Check DPI and AVGWIDTH too.
17869
17870 * lisp.h (Fstring_to_unibyte): EXFUN it.
17871
17872 * character.h (str_to_unibyte): Extern it.
17873
17874 * character.c (str_to_unibyte): New function.
17875
17876 * fns.c (Fstring_to_unibyte): New function.
17877 (syms_of_fns): Defsubr it.
17878
178792008-06-24 Kenichi Handa <handa@m17n.org>
17880
17881 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
17882 DPI too.
17883 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
17884
178852008-06-24 Andreas Schwab <schwab@suse.de>
17886
17887 * Makefile.in (${lispsource}loaddefs.el): Rename from
17888 ../lisp/loaddefs.el.
17889 (bootstrap-clean): Do what distclean does but don't remove
17890 Makefile.
17891 (distclean): Depend on bootstrap-clean and remove Makefile.
17892
178932008-06-24 Chong Yidong <cyd@stupidchicken.com>
17894
17895 * buffer.h (struct buffer): New member word_wrap.
17896
17897 * buffer.c (syms_of_buffer): New variables default-word-wrap and
17898 word-wrap.
17899 (init_buffer_once): Initialize them.
17900
17901 * dispextern.h (struct it): Replace bool truncate_lines_p with a
17902 line_wrap enum possessing three possible values.
17903
17904 * termopts.h: Replace truncate_partial_width_windows with
17905 Vtruncate_partial_width_windows.
17906
17907 * dispnew.c (direct_output_for_insert): Avoid direct output when
17908 inserting a space with word wrap on.
17909
17910 * indent.c (compute_motion): Obey integer values of
17911 truncate-partial-width-windows.
17912
17913 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
17914 replacing truncate_partial_width_windows.
17915 (init_iterator): If Vtruncate_partial_width_windows is an integer,
17916 truncate only if the window width is below that integer.
17917 (start_display, resize_mini_window, produce_stretch_glyph)
17918 (display_string, move_it_in_display_line_to): Use line_wrap.
bba3e508
SM
17919 (back_to_previous_visible_line_start, reseat_1):
17920 Reset string_from_display_prop_p.
aac0c6e3
MR
17921 (display_line): Extend default face to end of line when wrapping.
17922
179232008-06-24 Kim F. Storm <storm@cua.dk>
17924
17925 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
17926 to wrap continued lines at word boundaries.
17927
179282008-06-24 Jason Rumney <jasonr@gnu.org>
17929
17930 * font.c (Ffont_face_attributes): Multiply pixel size before point
17931 conversion to avoid multiplying rounding error.
17932
179332008-06-23 Jason Rumney <jasonr@gnu.org>
17934
17935 * w32term.c (x_draw_glyph_string_background)
17936 (x_draw_glyph_string): Remove old bdf font code.
17937
17938 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
17939
179402008-06-22 Kenichi Handa <handa@m17n.org>
17941
17942 * font.c (font_find_for_lface): Try the adstyle specified in
17943 the property of LFACE_FONT of LFACE (if any).
17944
179452008-06-21 Seiji Zenitani <zenitani@mac.com>
acd0102a 17946 Ryo Yoshitake <ryo@shiftmode.net>
aac0c6e3
MR
17947
17948 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
17949
179502008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
17951
17952 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
17953 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
17954 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
17955 (witness-emacs): Remove.
17956 (lisp, shortlisp): Move loaddefs.el earlier.
17957 (mostlyclean): Forget about witness-emacs.
17958
179592008-06-22 Glenn Morris <rgm@gnu.org>
17960
17961 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
17962 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
17963
179642008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17965
17966 * Makefile.in (PRECOMP): Remove.
17967 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
17968 (witness-emacs): Run `compile-first'.
17969 (.el.elc): Use the new compile-onefile target.
17970
179712008-06-21 Kenichi Handa <handa@m17n.org>
17972
17973 * xftfont.c (xftfont_open): Handle QCembolden only when
17974 FC_EMBOLDEN is defined.
17975
179762008-06-21 Andreas Schwab <schwab@suse.de>
17977
17978 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
17979 (.el.elc): Likewise.
17980
179812008-06-21 Miles Bader <miles@gnu.org>
17982
17983 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
17984 build dir, not the lisp source dir.
17985
179862008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
17987
17988 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
17989 (bootstrapclean): Remove.
17990 (.el.elc): New rule.
17991 (PRECOMP): New var.
17992 (../lisp/subdirs.el): Remove.
17993 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
17994 (witness-emacs): New target.
17995 (mostlyclean): Remove witness-emacs as well.
17996 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
17997 Add witness-emacs dependency.
17998
179992008-06-20 Chong Yidong <cyd@stupidchicken.com>
18000
18001 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
18002 defined by the font.
18003
180042008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
18005
18006 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
18007 (bootstrap-clean): New target that keeps TAGS around.
18008 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
18009 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
18010
180112008-06-20 Jason Rumney <jasonr@gnu.org>
18012
18013 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
18014 Remove obsolete font code.
18015
18016 * w32font.c (font_matches_spec): Use csb bitfield from font signature
18017 to determine language support.
18018
180192008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
18020
18021 * sysdep.c (cfsetspeed): New fun extracted from the code.
18022 (cfmakeraw): Move before first use.
18023
180242008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
18025
18026 * sysdep.c (cfmakeraw): Provide fallback implementation.
18027 (serial_configure): Provide fallback implementation of cfsetspeed.
18028
180292008-06-20 Kenichi Handa <handa@m17n.org>
18030
18031 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
18032 the pattern.
18033
18034 * fontset.c (fontset_from_font): Copy font_spec before changing
18035 the elements.
18036
18037 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
18038
180392008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
18040
18041 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
18042 for explicit `font' parameters.
18043
18044 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
18045
180462008-06-19 Kenichi Handa <handa@m17n.org>
18047
18048 * frame.c: Include <ctype.h>.
18049 (x_set_font_backend): Allow spacing characters in the X resource
18050 for FontBackend.
18051
180522008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
18053
18054 * w32fns.c, xfns.c (Qfont_param): New var.
18055 (syms_of_w32fns): Initialize it.
18056 (x_default_font_parameter): Record explicit `font' into
18057 `font-parameter'.
18058
180592008-06-18 Kenichi Handa <handa@m17n.org>
18060
18061 * font.c (font_parse_xlfd): Fix previous change.
18062 (font_parse_fcname): Don't use :fc-unknown-spec.
18063 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
18064 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
18065 (font_add_log): Prepend the driver name to the resulting fonts.
18066
18067 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
18068 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
18069 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
18070
18071 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
18072 (QCembolden): New variables.
18073 (syms_of_xftfont): DEFSYM them.
18074 (xftfont_open): Call XftFontMatch. Don't trust the result of
18075 XftTextExtents8 if the pixel_size is less than 5.
18076
180772008-06-18 Andreas Schwab <schwab@suse.de>
18078
18079 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
18080 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
18081
180822008-06-18 Jason Rumney <jasonr@gnu.org>
18083
18084 * w32font.c (w32font_list, w32font_match): Add logging.
18085
18086 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
18087
180882008-06-17 Chong Yidong <cyd@stupidchicken.com>
18089
18090 * font.c (font_parse_fcname): Store divider characters for
18091 unknown-spec list. For known key symbols, intern using correct
18092 symbol name.
18093
180942008-06-17 Kenichi Handa <handa@m17n.org>
18095
18096 * xfaces.c (realize_default_face): If the frame is not on window
18097 system, set the fontset of face to nil.
18098
180992008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
18100
18101 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
18102
181032008-06-16 Juanma Barranquero <lekktu@gmail.com>
18104
18105 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
18106 (build_font_name_from_vector): Delete externs.
18107
18108 * xfaces.c (struct font_name): Don't declare.
18109
181102008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
18111
18112 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
18113
181142008-06-16 Chong Yidong <cyd@stupidchicken.com>
18115
18116 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
18117
181182008-06-16 Juanma Barranquero <lekktu@gmail.com>
18119
18120 * font.c (Ffont_spec): Fix usage in docstring.
18121 (Ffont_face_attributes): Doc fix.
18122
181232008-06-16 Andreas Schwab <schwab@suse.de>
18124
18125 * font.c (Ffont_face_attributes): Fix definition.
18126
181272008-06-16 Jason Rumney <jasonr@gnu.org>
18128
18129 * font.h (font_style_symbolic_from_value): Remove.
18130
18131 * font.c (font_style_symbolic_from_value): Remove.
18132 (font_style_symbolic): Revert to pre 2008-06-13 version.
18133
18134 * w32font.c (w32_to_fc_weight): New function.
18135 (w32font_full_name, logfont_to_fcname): Use it.
18136
181372008-06-16 Kenichi Handa <handa@m17n.org>
18138
18139 * font.c (font_check_object): Delete it.
18140 (font_clear_cache): Check if a font-object is alive.
18141 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
18142 font-object to nil.
18143 (font_close_object): Don't check FONT_CLOSE_OBJECT.
18144 (font_at): Don't call font_check_object.
18145 (Ffont_get): Return a symbol for :weight, :slant, and :width.
18146
181472008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
18148
18149 * puresize.h (BASE_PURESIZE): Increase to 1230000.
18150
181512008-06-16 Chong Yidong <cyd@stupidchicken.com>
18152
18153 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
18154
181552008-06-15 Chong Yidong <cyd@stupidchicken.com>
18156
18157 * font.c (font_parse_fcname): Only one decimal point.
18158 (font_unparse_fcname): Handle data in family and foundry indices
18159 as symbols, not strings.
18160 (font_unparse_gtkname, Ffont_face_attributes): New functions.
18161
18162 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
18163
18164 * font.h (font_unparse_gtkname): Add prototype.
18165
181662008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
18167
18168 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
18169
181702008-06-15 Andreas Schwab <schwab@suse.de>
18171
18172 * font.c (font_update_drivers): Fix crash when no drivers match.
18173
181742008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18175
18176 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
18177 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
18178
181792008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
18180
18181 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
18182
181832008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
18184
18185 * process.c (Fserial_process_configure, Fprocess_send_eof):
18186 Use EQ to compare Lisp_Objects.
18187
181882008-06-13 Jason Rumney <jasonr@gnu.org>
18189
18190 * w32fns.c (Fw32_select_font): Remove old font API function.
18191
18192 * w32font.c (logfont_to_fcname): New function.
18193 (Fx_select_font): New font dialog function compatible with
18194 GTK/fontconfig version.
18195
18196 * font.c (font_style_symbolic_from_value): New function.
18197 (font_style_symbolic): Use it.
18198
18199 * font.h (font_style_symbolic_from_value): Declare new function.
18200
182012008-06-13 Juanma Barranquero <lekktu@gmail.com>
18202
18203 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
18204 <font-width-table>: Fix typos in docstrings.
18205
182062008-06-13 Daniel Engeler <engeler@gmail.com>
18207
18208 These changes add serial port access.
18209 * process.c: Add HAVE_SERIAL.
18210 (Fdelete_process, Fprocess_status, Fset_process_buffer)
18211 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
18212 (list_processes_1, select_wrapper, Fstop_process)
18213 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
18214 (status_notify): Modify to handle serial processes.
18215 [HAVE_SERIAL] (Fserial_process_configure)
18216 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
18217 New functions.
18218 * process.h (struct Lisp_Process): Add `type'.
18219 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
18220 New functions.
18221 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
18222 serial ports.
b71ac3dd 18223 (serial_open, serial_configure): New functions.
aac0c6e3
MR
18224 * w32.h: Add FILE_SERIAL.
18225 (struct _child_process): Add ovl_read, ovl_write.
18226
182272008-06-13 Kenichi Handa <handa@m17n.org>
18228
18229 * dispextern.h (enum lface_attribute_index): New member
18230 LFACE_FOUNDRY_INDEX.
18231
18232 * font.c (font_score): Delete arg alternate_families. Check only
18233 weight, slant, width, and size. Ignore the difference of alias
18234 style symbols.
18235 (font_sort_entites): Adjust for the above change. Reflect the
18236 order of font-driver to scores.
18237 (font_list_entities): Don't check alternate_familes here.
18238 (font_clear_prop): Handle foundry.
18239 (font_update_lface): Don't parse "foundry-family" form here.
18240 Handle FONT_FOUNDRY_INDEX.
18241 (font_find_for_lface): Likewise. Handle alternate families here.
18242 If registry is nil, try iso8859-1 and ascii-0.
18243 (font_open_for_lface): Pay attention to size in ENTITY.
18244 (font_open_by_name): Simplify by calling font_load_for_lface.
18245 (free_font_driver_list): Delete it.
18246 (font_update_drivers): Preserve the order of backends.
18247 (syms_of_font): Setting of sort_shift_bits adjusted for the change
18248 of font_score and font_sort_entites.
18249 (font_update_sort_order): Likewise.
18250
18251 * xfaces.c (LFACE_FOUNDRY): New macro.
18252 (check_lface_attrs): Check foundry.
18253 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
18254 (merge_face_vectors): Check foundry.
18255 (merge_face_ref): Likewise.
18256 (Finternal_set_lisp_face_attribute): Likewise.
18257 (x_update_menu_appearance): Likewise.
18258 (Finternal_get_lisp_face_attribute): Likewise.
18259 (lface_hash): Likewise.
18260 (lface_same_font_attributes_p): Likewise.
18261 (x_supports_face_attributes_p): Likewise.
18262 (tty_supports_face_attributes_p): Likewise.
18263 (Finternal_set_alternative_font_family_alist): Intern strings.
18264 (Finternal_set_alternative_font_registry_alist): Downcase strings.
18265 (realize_default_face): Set LFACE_FOUNDRY (lface).
18266
18267 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
18268 font-driver at first.
18269
18270 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
18271
182722008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
18273
18274 * lread.c (Fload): Use xfree, not free on saved_doc_string.
18275
182762008-06-12 Jim Meyering <meyering@redhat.com>
18277
18278 Make unexec_free handle NULL the same way free does.
18279 * unexmacosx.c (unexec_free): Ignore a NULL argument.
18280
182812008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
18282
18283 * character.h (CHAR_TO_BYTE_SAFE): New macro.
18284 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
18285 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
18286 (WEAK_ALIAS): Simplify.
18287 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
18288 when searching a unibyte buffer.
18289
182902008-06-12 Chong Yidong <cyd@stupidchicken.com>
18291
18292 * xfns.c (Fx_select_font): Rename from x-font-dialog.
18293
182942008-06-12 Juanma Barranquero <lekktu@gmail.com>
18295
18296 * w32font.c: Include ctype.h.
18297
182982008-06-11 Jason Rumney <jasonr@gnu.org>
18299
18300 * w32font.c (w32font_encode_char): Detect missing glyphs that are
18301 misreported as space.
18302 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
18303 as aliases for registry iso10646-1.
18304
183052008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
18306
18307 * buffer.c (clone_per_buffer_values): Skip `name'.
18308
183092008-06-11 Chong Yidong <cyd@stupidchicken.com>
18310
18311 * font.c (font_parse_fcname): Fix last change; accept decimal
18312 points in font size.
18313
183142008-06-10 Jason Rumney <jasonr@gnu.org>
18315
18316 * w32uniscribe.c (add_opentype_font_name_to_list):
18317 Skip non unicode fonts.
18318
183192008-06-10 Chong Yidong <cyd@stupidchicken.com>
18320
18321 * xfns.c (Fx_font_dialog): New function.
18322
18323 * gtkutil.c (xg_dialog_response_cb): Rename from
18324 xg_file_response_callback.
18325 (pop_down_dialog): Rename from pop_down_file_dialog.
18326 (xg_get_file_name): Callers changed.
18327 (xg_get_font_name): New function.
18328
18329 * gtkutil.h (xg_get_font_name): Insert prototype.
18330
183312008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
18332
18333 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
18334 x_underline_minimum_display_offset.
18335 (syms_of_xdisp): Declare it here rather than in xterm.c.
18336 * dispextern.h (underline_minimum_offset): Declare it.
18337 * w32term.c (x_draw_glyph_string): Use it.
18338 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
18339 (syms_of_xterm): Don't declare it any more.
18340 (x_draw_glyph_string): Adjust to the new name.
18341
8719abec 183422008-06-10 David De La Harpe Golden <david@harpegolden.net>
aac0c6e3
MR
18343
18344 * xterm.c (x_underline_minimum_display_offset): New var.
18345 (x_draw_glyph_string): Use it.
18346 (syms_of_xterm): Declare it.
18347
183482008-06-10 Chong Yidong <cyd@stupidchicken.com>
18349
18350 * font.c (font_parse_fcname): Accept GTK-style font names too.
18351
183522008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
18353
18354 * dired.c (file_name_completion): Don't return t if the match is exact
18355 but with different capitalization.
18356 * minibuf.c (Ftry_completion): Simplify.
18357
18358 * window.c (Vwindow_point_insertion_type): New var.
18359 (set_window_buffer): Use it.
18360 (syms_of_window): Init and export it to Lisp.
18361
183622008-06-10 Kenichi Handa <handa@m17n.org>
18363
18364 * font.h (font_intern_prop): Prototype adjusted.
18365
18366 * font.c (font_intern_prop): New arg force_symbol.
18367 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
18368 Adjust for the change of font_intern_prop.
18369
18370 * ftfont.c (ftfont_pattern_entity):
18371 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
18372 (w32_registry):
18373 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
18374 the change of font_intern_prop.
18375
183762008-06-09 Juanma Barranquero <lekktu@gmail.com>
18377
18378 * w32menu.c (digest_single_submenu): Declare extern.
18379
183802008-06-09 Jason Rumney <jasonr@gnu.org>
18381
18382 * w32term.c (x_make_frame_visible): Use alternate restore flags.
18383
18384 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
18385 (parse_single_submenu): Remove.
18386 (digest_single_submenu): Remove.
18387 (syms_of_w32menu): Don't initialise variables that have moved
18388 to menu.c.
18389 (set_frame_menubar): Sync with version in xmenu.c.
18390 (w32_menu_show): Sync with xmenu_show in xmenu.c.
18391
18392 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
18393 Make static again.
18394
183952008-06-09 Jason Rumney <jasonr@gnu.org>
18396
18397 Changes to w32 files related to the move of common menu code
18398 to menu.c on 2008-06-08 by Chong Yidong.
18399
18400 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
18401 defs to w32gui.h.
18402 (single_keymap_panes, push_menu_item, push_menu_pane):
18403 Make globally visible.
18404
18405 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
18406 (local_free, malloc_widget_value, free_widget_value)
18407 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
18408 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
18409 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
18410 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
18411 (menu_items, menu_items_allocated, menu_items_used)
18412 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
18413 (init_menu_items, finish_menu_items, discard_menu_items)
18414 (grow_menu_items, push_submenu_start, push_submenu_end)
18415 (push_left_right_boundary, push_menu_pane, push_menu_item)
18416 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
18417 (free_menubar_widget_tree_value, parse_single_submenu)
18418 (update_submenu_strings): Remove functions.
18419 (xmalloc_widget_value): Remove and declare extern.
18420
18421 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
18422 (OBJ1): Build it.
18423
18424 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
18425 (local_heap, local_alloc, local_free, malloc_widget_value)
18426 (free_widget_value): Define here.
18427
184282008-06-09 Kenichi Handa <handa@m17n.org>
18429
18430 * font.h (Qascii_0): Extern it.
18431
18432 * font.c (Qascii_0): New variable.
18433 (syms_of_font): DEFSYM it.
18434 (font_open_by_name): If the registry "iso8859-1" fails, try also
18435 "ascii-0".
18436
18437 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
18438
184392008-06-08 Kenichi Handa <handa@m17n.org>
18440
18441 * .gdbinit (xfont): New command.
18442
184432008-06-08 Andreas Schwab <schwab@suse.de>
18444
18445 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
18446 * Makefile.in (menu.o): Update dependencies.
18447
18448 * Makefile.in (obj): Always add menu.o.
18449 * emacs.c (main): Always call syms_of_menu.
18450 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
18451
184522008-06-08 Chong Yidong <cyd@stupidchicken.com>
18453
18454 * Makefile.in: Compile menu.c.
18455
18456 * lisp.h: Declare syms_of_menu.
18457
18458 * emacs.c (main): Call syms_of_menu.
18459
18460 * keyboard.h: Relocate platform-independent menu definitions from
18461 xmenu.c.
18462
18463 * menu.c: New file. Relocate platform-independent menu
18464 definitions from xmenu.c. Suggested by Adrian Robert.
18465
18466 * xmenu.c: Remove platform-independent menu definitions.
560bb7ae 18467 (menu_items, menu_items_inuse, menu_items_allocated)
aac0c6e3
MR
18468 (menu_items_used, menu_items_n_panes)
18469 (menu_items_submenu_depth): Move to keyboard.h.
18470 (init_menu_items, finish_menu_items, unuse_menu_items)
18471 (discard_menu_items, restore_menu_items, save_menu_items)
18472 (grow_menu_items, push_submenu_start, push_submenu_end)
18473 (push_left_right_boundary, push_menu_pane, push_menu_item)
18474 (keymap_panes, single_keymap_panes, single_menu_item)
18475 (list_of_panes, list_of_items, find_and_call_menu_selection)
18476 (xmalloc_widget_value, free_menubar_widget_value_tree)
18477 (parse_single_submenu, digest_single_submenu)
18478 (update_submenu_strings): Move to menu.c.
18479
184802008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
18481
18482 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
18483
184842008-06-06 Miles Bader <miles@gnu.org>
18485
18486 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
18487 face, not frame default.
18488
184892008-06-05 Martin Rudalics <rudalics@gmx.at>
18490
18491 * window.c (pop_up_windows, pop_up_frames)
18492 (display_buffer_reuse_frames, Vpop_up_frame_function)
18493 (Vdisplay_buffer_function, Veven_window_heights)
18494 (Vspecial_display_buffer_names, Vspecial_display_regexps)
18495 (Vspecial_display_function, Vsame_window_buffer_names)
18496 (Vsame_window_regexps, split_height_threshold)
18497 (Vsplit_window_preferred_function): Move those vars to window.el.
18498 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
18499 (Fdisplay_buffer): Move those functions to window.el.
18500 (syms_of_window): Remove corresponding declarations.
18501 (display_buffer): New function.
18502 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
18503 * dispnew.c (Flast_nonminibuf_frame): New function.
18504 * buffer.c (Fpop_to_buffer): Move to window.el.
18505
185062008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
18507
18508 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
18509
185102008-06-05 Kenichi Handa <handa@m17n.org>
18511
18512 * coding.c (detect_coding): Fix previous change.
18513 (detect_coding_system): Likewise.
18514
185152008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
18516
18517 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
18518
18519 * keymap.c (Vminibuffer_local_filename_must_match_map):
18520 Rename from Vminibuffer_local_must_match_filename_map.
18521 (syms_of_keymap):
18522 * minibuf.c (Fcompleting_read): Adjust accordingly.
18523 * commands.h: Rename declaration as well.
18524
185252008-06-05 Kenichi Handa <handa@m17n.org>
18526
18527 * font.c (Ffont_spec): Don't use font_parse_family_registry for
18528 family name.
18529 (Ffont_put): Likewise.
18530
18531 * fontset.c (fontset_find_font): Call font_open_for_lface with the
18532 current font-spec.
18533
18534 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
18535 is unspecified.
18536
18537 * xfaces.c (realize_x_face): If the font-related face attributes
18538 are the same as those of default face, realize a new fontset from
18539 default->fontset.
18540 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
18541
185422008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
18543
18544 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
18545 (move_it_in_display_line): New wrapper.
18546
18547 * window.c (window_scroll_pixel_based_preserve_x)
18548 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
18549 (window_scroll_pixel_based, window_scroll_line_based):
18550 Use them to preserve column positions.
18551 (syms_of_window): Initialize them.
18552
18553 * indent.c (Fvertical_motion): Extend first arg to allow passing an
18554 (HPOS . VPOS) pair.
18555
18556 * dispextern.h (move_it_in_display_line): Declare.
18557
185582008-06-05 Juanma Barranquero <lekktu@gmail.com>
18559
18560 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
18561 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
18562 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
18563
185642008-06-04 Juanma Barranquero <lekktu@gmail.com>
18565
18566 * window.c (Fset_window_parameter): Doc fix.
18567 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
18568
185692008-06-04 Joakim Verona <joakim@verona.se>
18570
18571 * window.h (struct window): Add new member window_parameters.
18572
18573 * window.c (Fwindow_parameters, Fwindow_parameter)
18574 (Fset_window_parameter): New defuns.
18575 (syms_of_window): Defsubr the new defuns.
18576 (make_window): Initialize window_parameters to nil.
18577
185782008-06-04 John Paul Wallington <jpw@pobox.com>
18579
18580 * eval.c (Fdefmacro): Doc fix.
18581
185822008-06-04 Kenichi Handa <handa@m17n.org>
18583
18584 * coding.c (detect_coding): Fix handling of coding->head_ascii.
18585 Be sure to call setup_coding_system when we find a proper coding system.
18586 (detect_coding_system): Fix handling of coding->head_ascii.
18587
185882008-06-03 Andreas Schwab <schwab@suse.de>
18589
18590 * font.c (font_prop_validate_spacing): Fix last change.
18591
185922008-06-03 Kenichi Handa <handa@m17n.org>
18593
18594 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
18595 (font_parse_fcname): Fix handling of unknown key.
18596
18597 * xfont.c (xfont_list): Try an alias.
18598
18599 * charset.c (char_charset): Return NULL if the arg charset_list is
18600 specified and C doesn't belong to any of them.
18601
186022008-06-02 Chip Coldwell <coldwell@redhat.com>
18603
18604 * font.c (font_pixel_size): Don't take cdr of an integer.
18605
186062008-06-02 Jim Meyering <meyering@redhat.com>
18607
18608 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
18609 * alloc.c (xfree): Return right away for a NULL arg.
18610 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
18611 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
18612 * mac.c (create_apple_event_from_event_ref): Likewise.
18613 (create_apple_event_from_drag_ref, cfstring_create_normalized):
18614 Likewise.
18615 * doprnt.c (doprnt1): Likewise.
18616 * frame.c (frame): Likewise.
18617 * keyboard.c (wipe_kboard): Likewise.
18618 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
18619 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
18620 * term.c (tty_default_color_capabilities, maybe_fatal)
18621 (delete_tty): Likewise.
18622 * w16select.c (string): Likewise.
18623 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
18624 * w32bdf.c (w32_free_bdf_font): Likewise.
18625 * w32fns.c (w32_unload_font): Likewise.
18626 * w32font.c (w32font_close): Likewise.
18627 * window.c (size_window): Likewise.
18628 * xselect.c (receive_incremental_selection): Likewise.
18629 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
18630 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
18631 * w32.c (stat): Likewise.
18632
18633 Remove useless if-before-free tests.
18634 * editfns.c (Fset_time_zone_rule): Likewise.
18635 * lread.c (nosuffix): Likewise.
18636 * ralloc.c (get_bloc): Likewise.
18637 * regex.c (reg_free): Likewise.
18638 * xftfont.c (xftfont_open, xftfont_close): Likewise.
18639 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
18640 * xsmfns.c (smc_save_yourself_CB): Likewise.
18641
186422008-06-02 Kenichi Handa <handa@m17n.org>
18643
18644 * font.c (font_find_for_lface): Handle float font size.
18645 (font_open_for_lface): Likewise.
18646
18647 * xfaces.c (x_supports_face_attributes_p): Check face->font before
18648 comparing the properties.
18649
186502008-06-01 Jason Rumney <jasonr@gnu.org>
18651
18652 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
18653 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
18654 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
18655 Don't add empty script list.
18656 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
18657
186582008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
18659
18660 * Makefile.in (dot, dotdot): Remove, update users.
18661 ".." has been used elsewhere in the file for a long time.
18662 (LIBXT_STATIC): Remove conditional based on unused variable.
18663
186642008-06-01 Miles Bader <miles@gnu.org>
18665
18666 * xfaces.c (Vface_remapping_alist): New variable.
18667 (syms_of_xfaces): Initialize it.
18668 (enum named_merge_point_kind): New type.
18669 (struct named_merge_point): Add `named_merge_point_kind' field.
18670 (push_named_merge_point): Make cycle detection respect different
18671 named-merge-point kinds.
18672 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
18673 Remove face-name alias resolution.
18674 (lface_from_face_name): New definition using
18675 `lface_from_face_name_no_resolve'.
18676 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
18677 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
18678 (get_lface_attributes): New definition that layers face-remapping on
18679 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
18680 (lookup_basic_face): New function.
18681 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
18682 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
18683 `get_lface_attributes'.
18684 (face_at_buffer_position): Use `lookup_basic_face' to lookup
18685 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
18686 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
18687
18688 * xdisp.c (init_iterator): Pass base_face_id through
18689 `lookup_basic_face' when we actually use it as a face-id.
18690 (handle_single_display_prop): Use `lookup_basic_face' to lookup
18691 DEFAULT_FACE_ID.
18692
18693 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
18694 lookup the initial face-id.
18695
18696 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
18697
186982008-06-01 Juanma Barranquero <lekktu@gmail.com>
18699
18700 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
18701 (Fremove_text_properties): Fix typos in docstrings.
18702
187032008-05-31 Kenichi Handa <handa@m17n.org>
18704
18705 * font.c (font_list_entities): Fix the car part of data to be
18706 stored in the cache.
18707
18708 * ftfont.c (ftfont_font_format): Don't use strcasestr.
18709
187102008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18711
18712 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
18713 Add a `test' argument so another predicate than `equal' can be used.
18714 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
18715 (map_char_table): Remove unused vars `c' and `i'.
18716 * lisp.h (Foptimize_char_table): Adjust declaration.
18717 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
18718
187192008-05-30 Kenichi Handa <handa@m17n.org>
18720
18721 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
18722 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
18723 defined.
18724
187252008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
18726
18727 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
18728 (Fmake_variable_frame_local): Disallow mixing buffer-local and
18729 frame-local settings for the same variable.
18730
187312008-05-30 Kenichi Handa <handa@m17n.org>
18732
18733 * fontset.c (Ffont_info): Move to font.c.
18734 (syms_of_fontset): Delete defsubr of Sfont_info.
18735
18736 * font.c (font_style_to_value, font_score): Delete casting of the
18737 args to xstcasecmp.
18738 (register_font_driver): Increment num_font_drivers only when
18739 registering the driver globally.
18740 (Ffont_info): Move from fontset.c. Handle a font object too.
18741 (syms_of_font): Defsubr Sfont_info.
18742
187432008-05-29 Kenichi Handa <handa@m17n.org>
18744
18745 * coding.h (enum define_coding_utf8_arg_index): New enum.
18746 (enum coding_attr_index): Change coding_attr_utf_16_bom to
18747 coding_attr_utf_bom.
18748 (enum utf_bom_type): Rename from utf_16_bom_type.
18749 (struct utf_16_spec): Adjust for the above change.
18750 (struct coding_system): Add utf_8_bom in `spec' union.
18751
18752 * coding.c (CODING_UTF_8_BOM): New macro.
18753 (enum coding_category): Delete coding_category_utf_8, add
18754 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
18755 coding_category_utf_8_sig.
18756 (CATEGORY_MASK_UTF_8): Delete it.
18757 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
18758 (CATEGORY_MASK_UTF_8_SIG): New macros.
18759 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
18760 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
18761 CATEGORY_MASK_UTF_8_SIG.
18762 (CATEGORY_MASK_UTF_8): New macro.
18763 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
18764 (detect_coding_utf_8): Check BOM.
18765 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
18766 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
18767 (encode_coding_utf_16): Likewise.
18768 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
18769 (detect_coding, detect_coding_system): Handle utf-8-auto.
18770 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
18771 (syms_of_coding): Fix setting up of Vcoding_category_table.
18772
187732008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
18774
18775 * process.c (Faccept_process_output): If `millisec' is non-nil,
18776 `seconds' default to 0.
18777 (wait_reading_process_output): Also return non-nil if we read output
18778 from a non-running process.
18779
187802008-05-29 Jason Rumney <jasonr@gnu.org>
18781
18782 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
18783 `raster' specified.
18784 (add_font_entity_to_list): Allow non-opentype truetype fonts back
18785 in the uniscribe backend, but disallow any font that has no
18786 unicode subrange support.
18787
187882008-05-29 Juanma Barranquero <lekktu@gmail.com>
18789
18790 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
18791 Fix typos in docstrings.
18792
187932008-05-29 Kenichi Handa <handa@m17n.org>
18794
18795 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
18796 (Fx_family_fonts): Set frame correctly.
18797
187982008-05-28 Jason Rumney <jasonr@gnu.org>
18799
18800 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
18801
188022008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
18803
18804 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
18805 calling build_annotations.
18806
188072008-05-28 Juanma Barranquero <lekktu@gmail.com>
18808
18809 * coding.c (Fdecode_coding_region, Fencode_coding_region)
18810 (Fencode_coding_string):
18811 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
18812 <latin-extra-code-table>: Fix typos in docstrings.
18813 (syms_of_coding) <coding-system-alist>: Doc fix.
18814 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
18815
188162008-05-28 Kenichi Handa <handa@m17n.org>
18817
18818 * fontset.c (Ffont_info): Don't call font_close_object.
18819
18820 * font.c (font_parse_family_registry): Use Ffont_put to validate
18821 foundry and family.
18822 (font_delete_unmatched): Don't check spacing.
18823 (font_list_entities): Add spacing to the spec to list fonts.
18824
18825 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
18826 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
18827
18828 * coding.c (encode_coding_raw_text): Fix previous change.
18829 (encode_coding_object): When the dst_object is a buffer and is
18830 different from src_object, move gap to PT.
18831
188322008-05-27 Chong Yidong <cyd@stupidchicken.com>
18833
18834 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
18835
188362008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
18837
18838 * coding.c (encode_coding_raw_text): Set coding->produced_char for
18839 all branches. Compute it differently.
18840
18841 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
18842
188432008-05-27 Juanma Barranquero <lekktu@gmail.com>
18844
18845 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
18846 into "else if () ... else ...".
18847
188482008-05-27 Jason Rumney <jasonr@gnu.org>
18849
18850 * w32font.c (w32font_open_internal): Determine if glyph indices
18851 are likely to work here.
18852
188532008-05-27 Chong Yidong <cyd@stupidchicken.com>
18854
18855 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
18856 draw overlap glyphs with appropriate highlighting.
18857
188582008-05-27 Kenichi Handa <handa@m17n.org>
18859
18860 * xfont.c (xfont_open): Fix calculation of font->average_width.
18861
188622008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
18863
18864 * casefiddle.c (casify_object): Try to guess better whether the
18865 argument is a byte or a char.
18866
188672008-05-26 Andreas Schwab <schwab@suse.de>
18868
18869 * xselect.c (x_reply_selection_request): Properly handle format == 32.
18870 Always send multiples of format size.
18871
18872 * xterm.c (x_set_frame_alpha): Fix type mismatch.
18873
188742008-05-26 Jason Rumney <jasonr@gnu.org>
18875
18876 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
18877 (compute_metrics): Don't set failure if we just cleared the cache.
18878 (w32_weight_table): Remove unused variable.
18879 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
18880 backwards compatibility.
18881
188822008-05-25 Kenichi Handa <handa@m17n.org>
18883
18884 * w32term.c (x_draw_glyph_string):
18885 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
18886
18887 * xfaces.c: Delete unused function prototypes.
18888 (xstrlwr, font_frame): Delete them.
18889 (clear_face_cache): Delete unused variable.
18890
18891 * xftfont.c (xftfont_open): Delete unused variable.
18892 If underline_thickness is not 1, adjust underline_position.
18893
18894 * ftxfont.c (ftxfont_open): Delete unused variable.
18895
18896 * fontset.c (face_for_char): Optimize for the case of no charset
18897 property.
18898
18899 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
18900 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
18901 (otf_open, font_otf_capability, generate_otf_features)
18902 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
18903 Comment out by surrounding "#if 0" and "#endif" for the moment.
18904 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
18905 (syms_of_font): Codes for accessing above commented out.
18906
189072008-05-24 Eli Zaretskii <eliz@gnu.org>
18908
18909 * w32proc.c: Include dispextern.h.
18910
18911 * w32.c: Include dispextern.h.
18912
189132008-05-23 Juanma Barranquero <lekktu@gmail.com>
18914
18915 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
18916 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
18917 Fix typos in docstrings.
18918
189192008-05-23 Jason Rumney <jasonr@gnu.org>
18920
18921 * xsmfns.c: Remove includes that are already included by config.h.
18922
189232008-05-23 Kenichi Handa <handa@m17n.org>
18924
18925 * charset.c (Qemacs, charset_emacs): New variables.
18926 (char_charset): Fix for non-Unicode characters.
18927 (syms_of_charset): Define charset_emacs.
18928
18929 * w32term.c (x_draw_glyph_string): Be sure to update
18930 s->underline_thickness and s->underline_position. Be sure to draw
18931 underline within the current line area.
18932
18933 * xterm.c (x_draw_glyph_string): Be sure to update
18934 s->underline_thickness and s->underline_position. Be sure to draw
18935 underline within the current line area.
18936
18937 * fontset.c: Delete unused variables and add casting for char *
18938 throughout the file.
18939 (fontset_font): Try the fallback fonts of the current fontset
18940 before consulting the default fontset.
18941
18942 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
18943
18944 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
18945
189462008-05-22 Jason Rumney <jasonr@gnu.org>
18947
18948 * font.c: Don't include strings.h.
18949
18950 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
18951
18952 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
18953 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
18954 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
18955 to call xstrcasecmp.
18956
18957 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
18958
18959 * fontset.c (fs_query_fontset): Use xstrcasecmp.
18960
18961 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
18962
18963 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
18964
189652008-05-22 Kenichi Handa <handa@m17n.org>
18966
18967 * puresize.h (BASE_PURESIZE): Increase to 1220000.
18968
18969 * font.c (font_prop_validate_style): Adjust for the format
18970 change of font_style_table.
18971
18972 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
18973 two args.
18974
18975 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
18976 two args.
18977
189782008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
18979
18980 * minibuf.c (keys_of_minibuf): Delete.
18981 * lisp.h (keys_of_minibuf): Delete.
18982 * emacs.c (main): Don't call keys_of_minibuf.
18983
189842008-05-22 Kenichi Handa <handa@m17n.org>
18985
18986 * ftfont.c (ftfont_resolve_generic_family): Rename from
18987 ftfont_list_generic_family. Return a single family for each
18988 generic family.
18989 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
18990 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
18991 Call font_add_log.
18992 (ftfont_match): Call font_add_log.
18993
18994 * font.h (Ffont_xlfd_name): EXFUN adjusted.
18995 (FONT_DEBUG): Define it.
18996 (font_add_log): Extern it.
18997 (font_assert): Rename from xassert.
18998
18999 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
19000 (xfont_list_family): Call font_add_log.
19001 (xfont_match): Likewise.
19002 (memq_no_quit): Delete.
19003
19004 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
19005 call of Ffont_xlfd_name.
19006
19007 * xfaces.c (struct table_entry, slant_table, weight_table)
19008 (swidth_table): Move to font.c.
19009
19010 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
19011 xassert are changed to font_assert. Delete many unused variables.
19012 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
19013 New variables.
19014 (struct table_entry): Move from xfaces.c and modified.
19015 (weight_table, slant_table, width_table): Move from xfaces.c and
19016 contents adjusted for the change of struct table_entry.
19017 (font_style_to_value, font_style_symbolic): Adjust for the
19018 format change of font_style_table.
19019 (font_parse_family_registry): Don't overwrite existing foundry and
19020 family of font_spec.
19021 (font_score): Fix calculation of diff for sizes.
19022 (font_sort_entites): Call font_add_log.
19023 (font_delete_unmatched): Return a newly created list.
19024 (font_list_entities): Fix previous change. Call font_add_log.
19025 (font_matching_entity, font_open_entity, font_close_entity):
19026 Call font_add_log.
19027 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
19028 (Finternal_set_font_style_table): Delete.
19029 (BUILD_STYLE_TABLE): New macro.
19030 (build_style_table): New function.
19031 (Vfont_log, font_log_env_checked): New variables.
19032 (font_add_log): New function.
19033 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
19034 Declare Lisp variables "font-weight-table", "font-slant-table",
19035 "font-width-table", and "font-log". Initialize font_style_table.
19036
190372008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
19038
19039 * xterm.c (x_set_frame_alpha): Move declarations before statements.
19040
190412008-05-21 Seiji Zenitani <zenitani@mac.com>
acd0102a 19042 Ryo Yoshitake <ryo@shiftmode.net>
aac0c6e3
MR
19043
19044 * frame.c (Qalpha): Add a new frame parameter `alpha'.
19045 (Vframe_alpha_lower_limit): New variable.
19046 (x_set_alpha): New function.
19047
19048 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
19049
19050 * xfns.c (x-create-frame, Qalpha):
19051 Initialize the frame parameter `alpha'.
19052 * xterm.c (OPAQUE, OPACITY): New.
19053 (x_set_frame_alpha): New function.
19054 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
19055
19056 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
19057 * w32fns.c (w32_frame_parm_handlers): Likewise.
19058
190592008-05-20 Jason Rumney <jasonr@gnu.org>
19060
19061 * w32font.c (add_font_entity_to_list): Don't add non-opentype
19062 truetype fonts to opentype list.
19063
190642008-05-20 Juanma Barranquero <lekktu@gmail.com>
19065
19066 * fontset.c (Ffontset_info): Doc fix.
19067 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
19068 <ignore-relative-composition>: Fix typos in docstrings.
19069
19070 * font.c (syms-of-font) <font-encoding-alist>:
19071 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
19072 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
19073 (Ffont_otf_alternates): Doc fixes.
19074
190752008-05-20 Kenichi Handa <handa@m17n.org>
19076
19077 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
19078 font.h through out the file.
19079 (FONT_DRIVERS): Rename from FONTOBJ.
19080 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
19081 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
19082
19083 * emacs.c (main): Call syms_of_font unconditionally.
19084
19085 * font.h (find_font_encoding): Extern it.
19086
19087 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
19088 fontset.c.
194d44e7 19089 (font_pixel_size) [! HAVE_WINDOW_SYSTEM]: Return 1.
aac0c6e3
MR
19090 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
19091 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
19092 only when HAVE_WINDOW_SYSTEM is defined.
19093 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
19094 when HAVE_WINDOW_SYSTEM is defined.
19095
19096 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
19097 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
19098
19099 * xfaces.c: Include font.h unconditionally.
19100 (merge_face_ref, merge_face_vectors)
19101 (Finternal_set_lisp_face_attribute): Cancel the previous change.
19102
191032008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
19104
19105 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
19106 indirect_variable.
19107 * eval.c (lisp_indirect_variable): New fun.
19108 (Fuser_variable_p): Use it.
19109
191102008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
19111
19112 * lisp.h (indirect_variable):
19113 * data.c (indirect_variable, let_shadows_buffer_binding_p):
19114 Use Lisp_Symbol pointers rather than Lisp_Object.
19115 Adjust callers.
19116 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
19117 To this end, change calling-convention.
19118
19119 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
19120 if some non-hidden buffers are selected by string&pred.
19121
191222008-05-19 Chong Yidong <cyd@stupidchicken.com>
19123
19124 * process.c (wait_reading_process_output): Always check status
19125 when in batch mode.
19126
191272008-05-19 Kenichi Handa <handa@m17n.org>
19128
19129 * font.c (font_list_entities): Fix handling of cache.
19130 (font_matching_entity): Likewise.
19131
19132 * ftfont.c (cs_iso8859_1): Delete.
19133 (ft_face_cache): New variable.
19134 (struct ftfont_info): New member fc_charset_idx.
19135 (ftfont_build_basic_charsets): Delete.
19136 (fc_charset_table): New variable.
19137 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
19138 . FC_CHARSET_IDX) as :font-entity property in the font entity.
19139 Callers changed.
19140 (ftfont_lookup_cache, ftfont_get_charset): New functions.
19141 (ftfont_spec_pattern): New argument fc_charset_idx.
19142 Check registry more rigidly. Change callers.
19143 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
19144 change of :font-entity property of the font.
19145
19146 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
19147 property of the font.
19148
191492008-05-18 Juanma Barranquero <lekktu@gmail.com>
19150
19151 * coding.c (Fcoding_system_p): Rename argument to match docstring.
19152 (Funencodable_char_position, Fcheck_coding_systems_region)
19153 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
19154 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
19155 (Ffind_operation_coding_system, Fset_coding_system_priority)
19156 (Fcoding_system_eol_type): Doc fixes.
19157
191582008-05-17 Glenn Morris <rgm@gnu.org>
19159
19160 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
19161
191622008-05-16 Eli Zaretskii <eliz@gnu.org>
19163
19164 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
19165 and st_gid.
19166
19167 * frame.c (Fdelete_frame): Don't call font_update_drivers if
19168 HAVE_WINDOW_SYSTEM is not defined.
19169
19170 * xfaces.c (merge_face_ref, merge_face_vectors)
19171 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
19172 HAVE_WINDOW_SYSTEM is defined.
19173 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
19174
191752008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
19176
19177 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
19178
191792008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19180
19181 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
19182
191832008-05-15 Kenichi Handa <handa@m17n.org>
19184
19185 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
19186 preference.
19187
191882008-05-15 Glenn Morris <rgm@gnu.org>
19189
19190 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
19191
191922008-05-15 Chong Yidong <cyd@stupidchicken.com>
19193
19194 * fns.c (init_fns): Don't initialize weak_hash_tables here.
19195 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
19196
19197 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
19198
191992008-05-15 Kenichi Handa <handa@m17n.org>
19200
19201 * ftfont.c (ftfont_list): Downcase family name to check generic
19202 families.
19203
19204 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
19205 font-spec for QCfont value.
19206
19207 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
19208 buffer. Check the return value of it.
19209
192102008-05-14 Jason Rumney <jasonr@gnu.org>
19211
19212 * w32term.c (w32_get_glyph_overhangs): Remove.
19213 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
19214
192152008-05-14 Kenichi Handa <handa@m17n.org>
19216
19217 * font.c (font_prop_validate): Make nil a valid value.
19218 (font_clear_cache): Check if the cached vector of entities is nil
19219 or not.
19220
192212008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19222
19223 * emacs.c (main_thread): Conditionalize on
19224 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
19225 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
19226
19227 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
19228 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
19229 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
19230
192312008-05-14 Kenichi Handa <handa@m17n.org>
19232
19233 * coding.c (detect_coding_iso_2022): Ignore a coding category that
19234 has no corresponding coding system.
19235
192362008-05-14 Jason Rumney <jasonr@gnu.org>
19237
19238 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
19239
19240 * w32font.h (w32font_open_internal): Update declaration.
19241
19242 * w32font.c (w32font_open_internal): Change last argument from
19243 w32font_info struct to font object. Fill in font object from
19244 font_entity. Get Outline metrics if possible. Use them to
19245 calculate underline position and thickness. Use xlfd name as name
19246 property. Don't set codepage.
19247 (w32font_open): Pass font_object to w32font_open_internal. Don't
19248 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
19249 (w32font_draw): Use s->font.
19250 (clear_cached_metrics): Don't clear non-existent blocks.
19251
19252 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
19253 font was not found.
19254 (x_draw_glyph_string): Use underline position and thickness from font.
19255
19256 * w32uniscribe.c (uniscribe_open): Pass font_object to
19257 w32font_open_internal.
19258
192592008-05-14 Kenichi Handa <handa@m17n.org>
19260
19261 These changes are to delete all legacy font-handling codes, and
19262 make Emacs use only font-backends.
19263
19264 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
19265 (frame.o, image.o, print.o): Depend on $(FONTSRC).
19266
19267 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
19268
19269 * charset.h (Vcharset_non_preferred_head)
19270 (Vcurrent_iso639_language): Extern them.
19271
19272 * charset.c (Vcharset_non_preferred_head): New variable.
19273 (Vcurrent_iso639_language): New variable.
19274 (syms_of_charset): Declare it as a Lisp variable.
19275 (char_charset): Don't check non preferred charsets. As a last
19276 resort, return charset_unicode.
19277 (Fset_charset_priority): Update Vcharset_non_preferred_head.
19278
19279 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
19280 conditionals. Don't check enable_font_backend. Delete all codes
19281 used only when USE_FONT_BACKEND is not defined.
19282
19283 * dispextern.h (struct glyph_string): Change type of `font' to
19284 `struct font *'.
19285 (struct glyph_string): New member underline_position and
19286 underline_thickness.
19287 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
bba3e508
SM
19288 (struct face): Change type of `font' to `struct font *'.
19289 Remove members `font_name', `font_info_id'.
aac0c6e3
MR
19290 (per_char_metric, encode_char): Delete externs.
19291 (calc_pixel_width_or_height): Adjust the prototype.
19292
19293 * emacs.c (enable_font_backend): Delete extern.
19294 (main): Don't set enable_font_backend. Don't check the command
19295 line argument "-disable-font-backend".
19296
19297 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
19298 (enum font_property_index): New members FONT_DPI_INDEX,
19299 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
19300 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
19301 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
19302 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
19303 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
19304 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
19305 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
19306 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
19307 (struct font_spec, struct font_entity): New structs.
ef1b0ba7 19308 (FONT_ENCODING_NOT_DECIDED): Move from fontset.h.
aac0c6e3
MR
19309 (struct font): Many members from old "struct font_info" moved to
19310 here. Members font and entity deleted.
19311 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
19312 the new font-related objects.
19313 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
19314 (CHECK_FONT_GET_OBJECT): Likewise.
19315 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
ef1b0ba7 19316 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move from font.h.
bba3e508
SM
19317 (struct font_driver): New members case_sensitive anc check.
19318 Type of the member list and open changed.
aac0c6e3
MR
19319 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
19320 (font_symbolic_width, font_find_object, font_get_spec)
19321 (font_set_lface_from_name): Delete extern.
19322 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
19323
19324 * font.c: Include <strings.h>.
19325 (enable_font_backend): Delete it.
19326 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
19327 (CHECK_VALIDATE_FONT_SPEC): Delete it.
ef1b0ba7 19328 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Move to font.h.
aac0c6e3
MR
19329 (null_string): Delete it.
19330 (null_vector): Make it static.
19331 (font_family_alist): Delete it.
19332 (Qnormal): Extern it.
19333 (QCextra, QClanguage): Delete it.
19334 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
19335 (font_make_spec, font_make_entity, font_make_object)
ef1b0ba7 19336 (font_intern_prop): Rename from intern_downcase. Don't downcase
aac0c6e3 19337 the string. Callers changed.
bba3e508 19338 (font_pixel_size): Adjust for the format change of font-related
aac0c6e3
MR
19339 objects.
19340 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
19341 (font_style_to_value, font_style_symbolic): New function.
19342 (build_font_family_alist): Delete it.
19343 (font_registry_charsets): Use Fassoc_string instead of
19344 assq_no_quit.
19345 (font_prop_validate_symbol): Don't return null_string.
bba3e508 19346 (font_prop_validate_style): Adjust for the change of
aac0c6e3
MR
19347 style-related values in a font vector.
19348 (font_property_table): Delete entries for QClanguage and
19349 QCantialias, add entries for QCavgwidth.
19350 (get_font_prop_index): Delete the 2nd argument FROM.
19351 (font_prop_validate): Arguments changed.
bba3e508 19352 (font_put_extra): Adjust for the change of font-related objects.
aac0c6e3
MR
19353 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
19354 (font_parse_fcname, font_unparse_fcname)
19355 (font_prepare_composition): Likewise.
ef1b0ba7 19356 (font_parse_family_registry): Rename from font_merge_old_spec.
aac0c6e3 19357 (otf_open): Delete the 1st arg entity.
bba3e508 19358 (font_otf_capability): Adjust for the above change.
aac0c6e3
MR
19359 (font_score): New arg alternate_families. Adjusted for the change
19360 of font-related objects.
19361 (font_sort_entites): New arg best_only.
19362 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
19363 Delete them.
19364 (font_match_p): Check alternate families.
19365 (font_find_object): Delete it.
19366 (font_check_object): New function.
bba3e508 19367 (font_clear_cache): Adjust for the change of font-related objects.
aac0c6e3
MR
19368 (font_delete_unmatched): New arg.
19369 (font_list_entities): Call font_driver->list with a spec that
19370 doesn't specify style-related properties.
19371 (font_matching_entity): Arguments changed. Caller changed.
bba3e508 19372 (font_open_entity): Adjust for the change of font-related objects.
aac0c6e3
MR
19373 (font_close_object, font_has_char, font_encode_char)
19374 (font_get_name, font_get_spec): Likewise.
19375 (font_spec_from_name, font_clear_prop, font_update_lface):
19376 New functions.
19377 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
19378 (font_prepare_for_face, font_done_for_face, font_open_by_name)
bba3e508 19379 (font_at): Adjust for the change of font-related objects.
aac0c6e3
MR
19380 (font_range): New function.
19381 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
bba3e508 19382 (Ffont_xlfd_name): Adjust for the change of font-related objects.
aac0c6e3 19383 (Fcopy_font_spec, Fmerge_font_spec): New function.
ef1b0ba7 19384 (Ffont_family_list): Rename from list-families.
aac0c6e3
MR
19385 (Finternal_set_font_style_table): Arguments changed.
19386 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
bba3e508 19387 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjust for the
aac0c6e3
MR
19388 change of font-related objects.
19389 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
19390
19391 * fontset.h (struct font_info): Delete it. Most members go to
19392 struct font.
ef1b0ba7 19393 (FONT_ENCODING_NOT_DECIDED): Move to font.h.
aac0c6e3
MR
19394 (enum FONT_SPEC_INDEX): Delete it.
19395 (font_info, list_fonts_func, load_font_func, query_font_func)
19396 (set_frame_fontset_func, find_ccl_program_func)
bba3e508
SM
19397 (get_font_repertory_func, new_fontset_from_font_name):
19398 Delete externs.
aac0c6e3
MR
19399 (fontset_from_font_name): Extern it.
19400 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
19401 (FONT_INFO_FROM_FACE): Deleted.
19402 (face_for_font): Adjust prototype.
19403
19404 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
19405 conditionals. Don't check enable_font_backend. Delete all codes
19406 used only when USE_FONT_BACKEND is not defined.
19407 (get_font_info_func, list_font_func, load_font_func)
19408 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
19409 (get_font_repertory_func): Delete them.
19410 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
19411 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
19412 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
19413 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
19414 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
19415 (fontset_compare_rfontdef): New function.
19416 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
19417 rfont-defs by qsort. Adjusted for the change of font-group vector.
19418 (load_font_get_repertory): Deleted.
19419 (fontset_find_font): Use new macros to ref/set elements of
19420 font-def and rfont-def.
19421 (fontset_font): Fix the timing of remembering that no font for C.
19422 (free_face_fontset): Do nothing if the face has no fontset.
19423 (face_suitable_for_char_p): Use new macros to ref/set elements of
19424 rfont-def.
19425 (face_for_char): Likewise. Call face_for_char with font_object.
19426 (fs_load_font): Delete. Delete #pragma surrounding it.
19427 (fs_query_fontset): Use strcasecmp instead of strcmp.
bba3e508 19428 (generate_ascii_font_name): Adjust for the format change of
aac0c6e3
MR
19429 font-spec.
19430 (Fset_fontset_font): Likewise. Use new macros to set elements of
19431 font-def.
19432 (Fnew_fontset): Use font_unparse_xlfd to generate
19433 FONTSET_ASCII (fontset).
19434 (new_fontset_from_font_name): Deleted.
ef1b0ba7 19435 (fontset_from_font): Rename from new_fontset_from_font. Check if
aac0c6e3
MR
19436 a fontset is already created for the font. FIx updating of
19437 Vfontset_alias_alist.
19438 (fontset_ascii_font): Deleted.
bba3e508 19439 (Ffont_info): Adjust for the format change of font-spec.
aac0c6e3
MR
19440 (Finternal_char_font): Likewise.
19441 (Ffontset_info): Likewise.
19442 (syms_of_fontset): Don't check load_font_func.
19443
19444 * fns.c (internal_equal): Handle PREV_FONT.
19445
19446 * frame.h: Delete USE_FONT_BACKEND conditional.
19447
19448 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
19449 conditionals. Don't check enable_font_backend. Delete all codes
19450 used only when USE_FONT_BACKEND is not defined.
19451 (x_set_font): Call x_new_font, not x_new_fontset2.
19452 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
19453 already set for the frame.
19454
bba3e508
SM
19455 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed.
19456 Make a font-entity by font_make_entity. Use font_intern_prop instead
aac0c6e3
MR
19457 of intern_downcase. Use FONT_SET_STYLE to set a style-related
19458 font property. If a font is scalable, set avgwidth property to 0.
19459 Set font-entity property by font_put_extra.
19460 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
bba3e508 19461 (ffont_driver): Adjust for the change of struct font_driver.
aac0c6e3
MR
19462 (ftfont_spec_pattern): New function.
19463 (ftfont_list): Return a list, not vector.
19464 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
19465 (ftfont_list_family): Don't downcase names.
19466 (ftfont_free_entity): Deleted.
19467 (ftfont_open): Return a font-object. Adjusted for the change of
19468 struct font. Get underline_thickness and underline_position from
19469 font property. Don't update dpyinfo->smallest_font_height and
19470 dpyinfo->smallest_char_width.
19471 (ftfont_close): Don't free `struct font'.
bba3e508 19472 (ftfont_has_char): Adjust for the format change of font-entity.
aac0c6e3
MR
19473 (ftfont_encode_char, ftfont_text_extents): Likewise.
19474
19475 * ftxfont.c (ftxfont_list): Return a list, not vector.
19476 (ftxfont_open): Return a font-object. Adjusted for the change of
19477 struct font. Get underline_thickness and underline_position from
19478 font property. Don't update dpyinfo->smallest_font_height and
19479 dpyinfo->smallest_char_width.
19480 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
bba3e508 19481 (ftxfont_draw): Adjust for the change of struct font.
aac0c6e3 19482
bba3e508
SM
19483 * image.c (image_ascent): Don't include "charset.h".
19484 Include "character.h" and "font.h".
aac0c6e3
MR
19485
19486 * lisp.h (enum pvec_type): New member PREV_FONT.
19487 (Fassoc_string): EXFUN it.
19488
19489 * print.c: Include font.h.
19490 (print_object): Handle font-related objects.
19491
19492 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
19493 conditionals. Don't check enable_font_backend. Delete all codes
19494 used only when USE_FONT_BACKEND is not defined.
19495 (handle_auto_composed_prop): Do nothing if it->f is not on a
19496 window system. Check how many following characters can be
19497 displayed by the same font.
19498 (calc_pixel_width_or_height): Type of the 4th arg is changed to
19499 'struct font *'.
19500 (get_char_face_and_encoding): Assign the whole encoding task to
19501 the `encode-char' method of a font driver.
bba3e508 19502 (fill_composite_glyph_string): Adjust for the change of `struct
aac0c6e3
MR
19503 face' and `struct glyph_string'.
19504 (fill_glyph_string): Likewise.
19505 (get_per_char_metric): Arguments changed.
bba3e508 19506 (x_get_glyph_overhangs): Adjust for the change of `struct face'
aac0c6e3
MR
19507 and `struct glyph_string'.
19508 (produce_stretch_glyph, calc_line_height_property)
19509 (x_produce_glyphs): Likewise.
19510
19511 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
19512 conditionals. Don't check enable_font_backend. Delete all codes
bba3e508
SM
19513 used only when USE_FONT_BACKEND is not defined.
19514 Use FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
aac0c6e3
MR
19515 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
19516 (Qp): Extern them.
19517 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
19518 Deleted.
19519 (struct font_name): Deleted.
19520 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
19521 (compare_fonts_by_sort_order): New function.
19522 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
19523 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
19524 Deleted.
19525 (Fx_family_fonts): Use font_list_entities, and sort fonts by
19526 compare_fonts_by_sort_order.
19527 (Fx_font_family_list): Call Ffont_family_list.
19528 (face_numeric_value, face_numeric_weight, face_numeric_slant)
19529 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
19530 (face_symbolic_slant, face_symbolic_swidth)
19531 (split_font_name_into_vector, build_font_name_from_vector)
19532 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
19533 (font_rescale_ratio, split_font_name, build_font_name)
19534 (free_font_names, sort_fonts, x_face_list_fonts)
19535 (face_font_available_p, sorted_font_list, cmp_font_names)
19536 (font_list_1, concat_font_list, font_list, remove_duplicates):
19537 Deleted.
19538 (Fx_list_fonts): Use Ffont_list.
19539 (LFACE_AVGWIDTH): Deleted.
19540 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
19541 by FONTP.
19542 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
19543 (set_lface_from_font_name): Delete it.
ef1b0ba7 19544 (set_lface_from_font): Rename from
aac0c6e3
MR
19545 set_lface_from_font_and_fontset. Caller changed. Don't set
19546 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
19547 for face.
19548 (merge_face_vectors): Copy font-spec if necessary.
19549 Clear properties of the font-spec if necessary.
19550 (merge_face_ref): Clear properties of the font-spec if necessary.
19551 (Finternal_set_lisp_face_attribute): Likewise.
19552 (set_font_frame_param): Use font_load_for_lface to load a
19553 font-object, and call Fmodify_frame_parameters with it.
19554 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
19555 font name by Ffont_xlfd_name.
19556 (Finternal_lisp_face_attribute_values): Don't check QCweight,
19557 QCslant, and QCwidth.
19558 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
19559 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
19560 Compare fonts by EQ.
19561 (lookup_non_ascii_face): Deleted.
19562 (face_for_font): The 2nd argument changed.
19563 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
19564 Check atomic font properties by case insensitive.
19565 (realize_non_ascii_face): Set face->overstrike correctly.
19566 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
19567 (dump_realized_face): Get font name from
19568 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
19569
19570 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
19571 conditionals. Don't check enable_font_backend. Delete all codes
19572 used only when USE_FONT_BACKEND is not defined.
19573 (xic_create_xfontset): Original code deleted and renamed from
19574 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
19575 (x_make_gc): Don't set GCFont in GCs.
19576 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
19577 opened by "fixed".
19578 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
19579 find_ccl_program_func, query_font_func, set_frame_fontset_func,
19580 get_font_repertory_func.
19581
19582 * xfont.c: Include <stdlib.h> and "ccl.h".
19583 (struct xfont_info): New structure.
19584 (xfont_query_font): Deleted.
ef1b0ba7 19585 (xfont_find_ccl_program): Rename from x_find_ccl_program and
aac0c6e3 19586 moved from xterm.c.
bba3e508 19587 (xfont_driver): Adjust for the change of struct font_driver.
aac0c6e3 19588 (compare_font_names): New function.
ef1b0ba7
SM
19589 (xfont_list_pattern): Sort font names case insensitively.
19590 Make font_entity by calling font_make_entity. Avoid auto-scaled fonts.
aac0c6e3
MR
19591 (xfont_list): Return a list, not vector.
19592 (xfont_match): If the font doesn't have QCname property, generate
19593 a name from the other font properties.
19594 (xfont_open): Return a font-object. Adjusted for the change of
19595 struct font. Get underline_thickness and underline_position from
19596 font property. Don't update dpyinfo->smallest_font_height and
19597 dpyinfo->smallest_char_width.
19598 (xfont_close): Don't free struct font.
bba3e508 19599 (xfont_prepare_face): Adjust for the change of struct font.
aac0c6e3 19600 (xfont_done_face): Deleted.
bba3e508 19601 (xfont_has_char): Adjust for the change of struct font.
aac0c6e3
MR
19602 (xfont_encode_char, xfont_draw): Likewise.
19603 (xfont_check): New function.
19604
bba3e508 19605 * xftfont.c (xftfont_list): Adjust for the change of `list'
aac0c6e3 19606 callback function.
bba3e508
SM
19607 (xftfont_match): Adjust for the format change of font-entity.
19608 (xftfont_open): Adjust for the format change of font-entity and
aac0c6e3
MR
19609 font-object. Adjusted for the change of struct font. Return a
19610 font-object. Don't update dpyinfo->smallest_font_height and
19611 dpyinfo->smallest_char_width.
19612 (xftfont_close): Block input while calling XftFontClose.
19613 (xftfont_prepare_face): Don't block input while calling
19614 xftfont_get_colors. Adjusted for the change of struct font.
19615 (xftfont_shape): Return value of error case fixed.
19616
19617 * xrdb.c (x_load_resources): Don't setup a fontset resource.
19618
19619 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
19620 conditionals.
19621 (FONT_WIDTH): Return (f)->max_width.
19622 (struct x_display_info): Delete member `font'.
19623 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
19624 (x_find_ccl_program, x_get_font_repertory): Delete externs.
19625 (struct x_output): Change type of `font' to `struct font *'.
19626
19627 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
19628 conditionals. Don't check enable_font_backend. Delete all codes
19629 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
19630 (x_per_char_metric, x_encode_char): Deleted.
19631 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
bba3e508 19632 (x_compute_glyph_string_overhangs): Adjust for the change of
aac0c6e3
MR
19633 `struct face'.
19634 (x_draw_glyph_string_foreground)
19635 (x_draw_composite_glyph_string_foreground): Likewise.
19636 (x_draw_glyph_string): Likewise. Use font->underline_position and
19637 font->underline_thickness.
ef1b0ba7 19638 (x_new_font): Rename from x_new_fontset2.
aac0c6e3
MR
19639 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
19640 (x_check_font): Call `check' method of a font driver.
19641 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
19642 (x_query_font, x_get_font_repertory): Deleted.
ef1b0ba7 19643 (x_find_ccl_program): Rename and moved to xfont.c.
bba3e508 19644 (x_redisplay_interface): Adjust for the change of `struct
aac0c6e3
MR
19645 redisplay_interface'.
19646
19647 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
19648 conditionals. Don't check enable_font_backend. Delete all codes
19649 used only when USE_FONT_BACKEND is not defined. Surround non-used
19650 code by "#ifdef OLD_FONT" and "endif".
19651 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
19652
19653 * w32font.h (struct w32font_info): New member.
19654 (FONT_COMPAT): New macro.
19655 (w32font_open_internal): Prototype adjusted.
19656
19657 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
19658 OLD_FONT" and "endif".
19659
19660 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
19661 conditionals. Don't check enable_font_backend. Delete all codes
19662 used only when USE_FONT_BACKEND is not defined.
19663 (w32font_open): Return a font-object. Make a font-object by
19664 font_make_object. Adjusted for the change of struct w32font_info.
19665 (w32font_close): Don't free struct font. Adjusted for the change
19666 of struct w32font_info.
19667 (w32font_encode_char, w32font_text_extents, w32font_draw):
ef1b0ba7 19668 Adjust for the change of struct w32font_info.
aac0c6e3
MR
19669 (w32font_draw): Likewise.
19670 (w32font_list_internal): Return a list, not vector.
19671 (w32font_open_internal): Change the 4th arg to font-object.
19672 Adjusted for the change of struct w32font_info and font-object format.
19673 (add_font_name_to_list): Don't downcase names.
19674 (w32_enumfont_pattern_entity): Make a font-entity by
19675 font_make_entity. Adjusted for the format change of font-entity.
19676 Use FONT_SET_STYLE to set a style-related font property. If a
19677 font is scalable, set avgwidth property to 0. Set font-entity
19678 property by font_put_extra.
bba3e508 19679 (font_matches_spec): Adjust for the format change of font-entity.
aac0c6e3
MR
19680 (w32_weight_table, w32_decode_weight): New variables.
19681 (w32_encode_weight): New function.
bba3e508 19682 (fill_in_logfont): Adjust for the format change of font-spec.
aac0c6e3
MR
19683 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
19684 weight value.
bba3e508 19685 (w32font_driver): Adjust for the change of struct font_driver.
aac0c6e3
MR
19686
19687 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
19688 conditionals. Don't check enable_font_backend. Surround non-used
19689 code by "#ifdef OLD_FONT" and "endif".
19690 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
bba3e508 19691 (FONT_AVG_WIDTH): Adjust for the change of struct font.
aac0c6e3
MR
19692
19693 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
19694 conditionals. Don't check enable_font_backend. Delete all codes
19695 used only when USE_FONT_BACKEND is not defined. Surround non-used
19696 code by "#ifdef OLD_FONT" and "endif".
19697
19698 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
19699 (uniscribe_open): Return value changed to font-object.
19700 Adjusted for the format change of font-object.
bba3e508 19701 (uniscribe_otf_capability): Adjust for the change of struct font.
aac0c6e3 19702 (add_opentype_font_name_to_list): Don't downcase names.
bba3e508 19703 (uniscribe_font_driver): Adjust for the change of struct
aac0c6e3
MR
19704 font_driver.
19705
197062008-05-13 Chong Yidong <cyd@stupidchicken.com>
19707
19708 * dispnew.c (update_frame_1): Check if tty output is still valid
19709 before flushing it.
19710
197112008-05-13 Jan Djärv <jan.h.d@swipnet.se>
19712
19713 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
19714 to Gtk+ menus.
19715
197162008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
19717
19718 * dired.c (file_name_completion): Tweak the code so as to always do it
19719 in a single pass. Tighten the scope of some variables.
19720
19721 * dired.c (Qdefault_directory): New var.
19722 (file_name_completion): Use it instead of Fexpand_file_name.
19723 (syms_of_dired): Initialize it.
19724
197252008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
19726
19727 * fileio.c (double_dollars): Remove dead code.
19728
197292008-05-10 Eli Zaretskii <eliz@gnu.org>
19730
19731 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
19732 Mention w32-get-true-file-attributes in doc string.
19733
19734 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
19735
197362008-05-09 Glenn Morris <rgm@gnu.org>
19737
19738 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
19739 2008-04-23.
19740
197412008-05-09 Eli Zaretskii <eliz@gnu.org>
19742
19743 Support for reporting owner and group of each file on MS-Windows:
19744 * dired.c (stat_uname, stat_gname): New functions, with special
19745 implementation for w32.
19746 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
19747
19748 * w32.c: Rename the_passwd_* to dflt_passwd_*.
19749 (dflt_group_name): New static variable.
19750 (dflt_group): Rename from the_group.
19751 (init_user_info): Init dflt_group fields. Get user's group name
19752 from LookupAccountSid.
19753 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
19754 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
19755 New initialization states.
19756 (globals_of_w32): Initialize them to zero. Initialize the default
19757 group name to "None".
19758 (GetFileSecurity_Name): New global var, the name of the function
19759 to call for GetFileSecurity.
19760 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
19761 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
19762 (get_file_security, get_security_descriptor_owner)
19763 (get_security_descriptor_group, is_valid_sid)
19764 (get_file_security_desc, get_rid, get_name_and_id)
19765 (get_file_owner_and_group): New functions.
19766 (stat): Use get_file_security_desc and get_file_owner_and_group to
19767 report the owner and primary group of each file. Don't ignore the
19768 high 32 bits of file's size, now that st_size is 64-bit wide.
19769 Fix test when to get true file attributes.
19770 (init_user_info): Use get_rid instead of equivalent inline code.
19771 (fstat): Don't ignore the high 32 bits of file's size.
19772
197732008-05-09 Chong Yidong <cyd@stupidchicken.com>
19774
19775 * image.c (png_load): Use correct bit-depth for setting background
19776 color.
19777
197782008-05-08 Eli Zaretskii <eliz@gnu.org>
19779
19780 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
19781 epa-hook.elc.
19782
197832008-05-08 Juanma Barranquero <lekktu@gmail.com>
19784
19785 * font.c (Ffont_match_p): Don't use `iff' in docstring.
19786
197872008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
19788
19789 * macfns.c (Fx_create_frame): Make a copy of frame parameters
19790 because the original parameters are in pure storage now.
19791 (mac_window): Remove unused params. Update callers.
19792
197932008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
19794
19795 * lread.c (substitute_object_recurse): Use lower-level primitives.
19796 Don't signal errors when traversing sub-char-tables.
19797 Don't loop over all the possible characters when traversing char-tables.
19798
19799 * print.c (print_preprocess): Add sub-char-tables to the print-table,
19800 just like we do in print.c.
19801
198022008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
19803
19804 * minibuf.c (Ftry_completion): Remove code left over from when we used
19805 scmp instead of Fcompare_strings.
19806
198072008-05-04 Juanma Barranquero <lekktu@gmail.com>
19808
19809 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
19810
198112008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19812
19813 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
19814 Create bitmap context in native byte order.
19815
19816 * macterm.c (XDrawLine)
19817 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
19818 context in native byte order.
19819
198202008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19821
19822 * config.in: Regenerate.
19823
19824 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
19825 New definitions for Image I/O support.
19826 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
19827 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
19828 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
19829 (mac_data_provider_release_data, image_load_image_io)
19830 [USE_MAC_IMAGE_IO]: New functions.
19831 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
19832 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
19833 (init_image_func_pointer) [MAC_OSX]: Remove function.
19834 (image_load_quartz2d) [MAC_OSX]: Check availability of
19835 CGImageCreateWithPNGDataProvider at compile time.
19836 Use lowercase `false' for boolean constant.
19837 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
19838 Use image_load_image_io.
19839 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
19840 Don't check MyCGImageCreateWithPNGDataProvider.
19841 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
19842 Don't call init_image_func_pointer.
19843
19844 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
19845
19846 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
19847 Make variable non-static.
19848 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
19849 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
19850
19851 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
19852 (RED_FROM_ULONG): Mask off higher bits.
19853 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
19854
19855 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
19856 Include AvailabilityMacros.h.
19857 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
19858 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
19859
198602008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
19861
19862 * chartab.c (Fset_char_table_range): If range is t, really set all
19863 chars to that value.
19864
198652008-05-03 Eli Zaretskii <eliz@gnu.org>
19866
19867 * dired.c (Ffile_attributes): Don't allow the device number become
19868 negative.
19869
198702008-05-02 Daiki Ueno <ueno@unixuser.org>
19871
19872 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
19873
198742008-05-02 Juri Linkov <juri@jurta.org>
19875
19876 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
19877 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
19878 DEFAULT argument as a list of default values in docstrings.
19879
198802008-05-01 Chong Yidong <cyd@stupidchicken.com>
19881
19882 * puresize.h (BASE_PURESIZE): Increase to 1210000.
19883
198842008-05-01 Martin Rudalics <rudalics@gmx.at>
19885
19886 * dispnew.c (change_frame_size_1): Preserve small windows when
19887 shrinking frames by calling set_window_height|width with third
19888 arg 2.
19889
19890 * window.h (struct window): Replace field too_small_ok by field
19891 resize_proportionally.
19892
19893 * window.c (make_window): Initialize resize_proportionally.
19894 (enlarge_window): Temporarily set resize_proportionally to make
19895 sure that shrink_windows does scale the window proportionally.
19896 (shrink_windows): When window has resize_proportionally set try
19897 to shrink it proportionally by stealing from other windows.
19898 (struct saved_window, Fset_window_configuration)
19899 (compare_window_configurations): Handle resize_proportionally.
19900 (WINDOW_TOTAL_SIZE): New macro.
19901 (window_min_size, shrink_windows, size_window): Use it.
19902 (check_min_window_sizes): Remove. Invalid values of
19903 window-min-height|width are handled by window_min_size_2 now.
19904 (size_window, Fsplit_window, enlarge_window)
19905 (adjust_window_trailing_edge, grow_mini_window): Don't call
19906 check_min_window_sizes.
19907 (window_min_size_2, window_min_size_1, window_min_size):
19908 New argument safe_p for retrieving "safe" minimum sizes.
19909 (Fdisplay_buffer, Fsplit_window, enlarge_window)
19910 (adjust_window_trailing_edge, grow_mini_window):
19911 Adjust arguments of window_min_size... functions.
19912 (shrink_windows): Argument min_size removed. New argument
19913 safe_p allows shrinking windows to their safe minimum sizes.
19914 Calculate minimum size and decide whether a window shall be
19915 deleted for each window individually.
19916 (size_window): When nodelete_p equals 2, tell shrink_windows to
19917 delete windows only if their new minimum size is no more safe.
19918 (shrink_window_lowest_first): Call window_min_size_1 to make
19919 sure to preserve modeline of bottom-most window when resizing
19920 the minibuffer.
19921 (Fset_window_configuration, Fcurrent_window_configuration)
19922 (compare_window_configurations): Do not handle
19923 window-min-height|width any more.
19924 (syms_of_window): Clarify window-min-height|width doc-strings.
19925
199262008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
19927
19928 * dired.c (file_name_completion): Fix up the encoding/decoding issue
19929 some more. Copy some of the code from Ftry_completions.
19930 Remove special case code that dates back to initial revision when the
19931 slash was only added when necessary and that can't trigger nowadays.
19932
199332008-04-27 Kenichi Handa <handa@m17n.org>
19934
19935 * font.c (font_prop_validate): Signal `error' instead of `font'.
19936
199372008-04-29 Jason Rumney <jasonr@gnu.org>
19938
19939 * w32fns.c (Fw32_battery_status): New defun.
19940 (syms_of_w32fns): Defsubr it.
19941
199422008-04-28 Andreas Schwab <schwab@suse.de>
19943
19944 * dired.c (file_name_completion): Fix another mixing of encoded
19945 and decoded names.
19946
199472008-04-28 Juanma Barranquero <lekktu@gmail.com>
19948
19949 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
19950
199512008-04-27 Juanma Barranquero <lekktu@gmail.com>
19952
19953 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
19954
199552008-04-27 Andreas Schwab <schwab@suse.de>
19956
19957 * dired.c (file_name_completion): Fix inappropriate mixing of
19958 encoded and decoded names.
19959
19960 * xterm.c (XTread_socket): Fix use of uninitialized variable.
19961
19962 * puresize.h (BASE_PURESIZE): Increase to 1200000.
19963
199642008-04-26 Eli Zaretskii <eliz@gnu.org>
19965
19966 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
19967 2008-03-31, it's not needed anymore with `struct stat' definition
19968 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
19969 for the same reasons.
19970
199712008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
19972
19973 * m/sparc.h: Additional redefinitions for GNU/Linux.
19974
199752008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19976
19977 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
19978 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
19979 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
19980 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
19981 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
19982 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
19983 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
19984 Likewise.
19985
19986 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
19987 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
19988 (mac_ax_number_of_characters): Add externs.
19989 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
19990 [USE_MAC_TSM]: Likewise.
19991 (mac_handle_text_input_event) [MAC_OSX]:
19992 Handle kEventTextInputOffsetToPos for no active input area case.
19993 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
19994 (mac_handle_document_access_event)
19995 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
19996 (install_application_handler) [MAC_OSX]: Register handlers for
19997 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
19998 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
19999 Register mac_handle_document_access_event.
20000
20001 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
20002 Make functions non-static.
20003
200042008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
20005
20006 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
20007 (read_file_name_completion_ignore_case, insert_default_directory)
20008 (Qdefault_directory): Move to minibuffer.el.
20009 (Fread_file_name): Call the new `read-file-name' instead.
20010
200112008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20012
20013 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
20014 Make function non-static.
20015 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
20016 Remove function.
20017 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
20018 Move to mactoolbox.c.
20019 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
20020
20021 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
20022 (mac_rect_make): New macro.
20023
20024 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
20025 instead of float.
20026 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
20027 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
20028 (XSetBackground) [USE_CG_DRAWING]: Likewise.
20029 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
20030 CGRectMake.
20031 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
20032 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
20033 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
20034 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
20035 instead of WindowRef in argument type.
20036 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
20037 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
20038 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
20039 instead of DISPLAY. All uses changed.
20040 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
20041 (x_calc_absolute_position): Simplify so as not to use
20042 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
20043
20044 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
20045 instead of WindowRef in argument type.
20046 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
20047 [TARGET_API_MAC_CARBON]: Remove externs.
20048 (create_apple_event, mac_event_parameters_to_lisp)
20049 [TARGET_API_MAC_CARBON]: Add externs.
20050
20051 * mactoolbox.c (Vmac_ts_script_language_on_focus)
20052 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
20053 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
20054 is clicked.
20055 (x_activate_menubar): Remove extern for saved_menu_event_location.
20056 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
20057 Move from mac.c.
20058
200592008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20060
20061 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
20062 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
20063
200642008-04-23 Jason Rumney <jasonr@gnu.org>
20065
20066 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
20067 attributes only for local files.
20068
20069 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
20070 default to Qlocal.
20071
200722008-04-22 Juri Linkov <juri@jurta.org>
20073
20074 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
20075 read-buffer-to-switch instead of using the letter "B".
20076
200772008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
20078
20079 * fileio.c (Qdefault_directory): New variable.
20080 (Fread_file_name): Use it to pass `dir' to the completion functions.
20081
200822008-04-20 Chong Yidong <cyd@stupidchicken.com>
20083
20084 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
20085
200862008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
20087
20088 * keyboard.c (Vpre_help_message): Remove.
20089 (show_help_echo): Remove default C code.
20090
20091 * dired.c (directory_files_internal, file_name_completion):
20092 Only call ENCODE_FILE if the string is indeed decoded.
20093
200942008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
20095
20096 * Makefile.in (TOOLKIT_DEFINES): Remove.
20097 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
20098
200992008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20100
20101 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
20102 (mactoolbox.o): New target.
20103
20104 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
20105 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
20106
20107 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
20108 Use mac_set_frame_window_background instead of XSetWindowBackground.
20109 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
20110 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
20111 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
20112 instead of SetWindowTitleWithCFString.
20113 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
20114 Move function to mactoolbox.c.
20115 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
20116 Use mac_set_window_modified instead of SetWindowModified.
20117 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
20118 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
20119 (Fx_focus_frame): Use mac_front_non_floating_window instead of
20120 FrontNonFloatingWindow. Use mac_activate_window instead of
20121 ActivateWindow. Use mac_active_non_floating_window instead of
20122 ActiveNonFloatingWindow.
20123 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
20124 Use mac_show_hourglass and mac_hide_hourglass.
20125 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
20126 instead of GetGlobalMouse.
20127 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
20128 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
20129 Use mac_bring_window_to_front instead of BringToFront.
20130 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
20131 mactoolbox.c.
20132 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
20133 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
20134 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
20135 mactoolbox.c.
20136
20137 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
20138 (XtPointer): Move typedef from macmenu.c.
20139 (enum button_type): Move enum from macmenu.c.
20140 (widget_value): Move typedef from macmenu.c.
20141 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
20142 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
20143 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
20144 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
20145 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
20146 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
20147 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
20148 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
20149 (Selection): Move typedef from macselect.c.
20150 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
20151 macterm.c.
20152 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
20153 (mac_is_window_collapsed, mac_bring_window_to_front)
20154 (mac_send_window_behind, mac_hide_window, mac_show_window)
20155 (mac_collapse_window, mac_front_non_floating_window)
20156 (mac_active_non_floating_window, mac_activate_window)
20157 (mac_move_window_structure, mac_move_window, mac_size_window)
20158 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
20159
20160 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
20161 (enum mac_menu_kind): Move enum to mactoolbox.c.
20162 (min_menu_id): Move variable to mactoolbox.c.
20163 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
20164 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
20165 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
20166 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
20167 [TARGET_API_MAC_CARBON]: Likewise.
20168 (XtPointer): Move typedef to macgui.h.
20169 (enum button_type): Move enum to macgui.h.
20170 (widget_value): Move typedef to macgui.h.
20171 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
20172 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
20173 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
20174 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
20175 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
20176 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
20177 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
20178 (popup_activated_flag): Make variable non-static.
20179 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
20180 (add_menu_item, fill_menu, dispose_menus):
20181 Move functions to mactoolbox.c.
20182 (restore_show_help_function, menu_target_item_handler)
20183 (install_menu_target_item_handler, mac_handle_dialog_event)
20184 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
20185 [TARGET_API_MAC_CARBON]: Likewise.
20186 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
20187 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
20188 (find_and_call_menu_selection, name_is_separator): Make function
20189 non-static.
20190 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
20191 to mactoolbox.c.
20192 (set_frame_menubar): Don't call install_menu_quit_handler.
20193 (menu_item_selection): New variable.
20194 (mac_menu_show): Use create_and_show_popup_menu.
20195 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
20196 selection but set variable menu_item_selection. All uses changed.
20197 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
20198 Call install_menu_quit_handler. Move to mactoolbox.c.
20199
20200 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
20201 (Selection): Move typedef to macgui.h.
20202 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
20203 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
20204 Make variables non-static.
20205 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
20206 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
20207 Make functions non-static.
20208 (Vmac_service_selection) [MAC_OSX]: Likewise.
20209 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
20210 (mac_valid_selection_target_p, mac_clear_selection)
20211 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
20212 (mac_put_selection_value, mac_selection_has_target_p)
20213 (mac_get_selection_value, mac_get_selection_target_list)
20214 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
20215 Move functions to mactoolbox.c.
20216 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
20217 Likewise.
20218 (copy_scrap_flavor_data, mac_handle_service_event)
20219 (install_service_handler) [MAC_OSX]: Likewise.
20220 (syms_of_macselect) <Vmac_dnd_known_types>:
20221 Use mac_dnd_default_known_types.
20222
20223 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
20224 Move to mactoolbox.c.
20225 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
20226 (Fx_selection_owner_p): Add EXFUN.
20227 (install_window_handler, remove_window_handler, XSetWindowBackground):
20228 Remove externs.
20229 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
20230 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
20231 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
20232 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
20233 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
20234 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
20235 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
20236 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
20237 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
20238 (create_and_show_popup_menu, mac_get_selection_from_symbol)
20239 (mac_valid_selection_target_p, mac_clear_selection)
20240 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
20241 (mac_put_selection_value, mac_selection_has_target_p)
20242 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
20243 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
20244 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
20245 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
20246 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
20247 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
20248 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
20249 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
20250 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
20251
20252 * mactoolbox.c: New file.
20253
202542008-04-18 Jason Rumney <jasonr@gnu.org>
20255
20256 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
20257
202582008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
20259
20260 * character.c (Fmultibyte_char_to_unibyte):
20261 Return latin1 chars unchanged.
20262
20263 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
20264 relocated if it points to `name'.
20265
202662008-04-17 Kenichi Handa <handa@m17n.org>
20267
20268 * data.c (Faset): Allow setting a multibyte character in an
20269 ASCII-only unibyte string.
20270
20271 * lisp.h (STRING_SET_MULTIBYTE): New macro.
20272
202732008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
20274
20275 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
20276 done in config.h.
20277
202782008-04-16 Juanma Barranquero <lekktu@gmail.com>
20279
20280 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
20281 (Fchar_direction): Add usage in the docstring.
20282
202832008-04-15 Chong Yidong <cyd@stupidchicken.com>
20284
20285 * keyboard.c (read_key_sequence): Remove always-true checks.
20286
202872008-04-14 Jason Rumney <jasonr@gnu.org>
20288
20289 * w32font.c (w32font_open_internal): Set max_bounds.descent in
20290 compatibility struct, for better underline positioning.
20291
202922008-04-13 David Hansen <david.hansen@gmx.net>
20293
20294 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
20295 string.
20296
202972008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
20298
20299 * m/hp800.h (XUINT, XSET): Remove.
20300
203012008-04-12 Juanma Barranquero <lekktu@gmail.com>
20302
20303 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
20304 previous change.
20305
203062008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
20307
20308 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
20309 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
20310
203112008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
20312
20313 * keymap.h (map_keymap_canonical): Declare.
20314 * xmenu.c (single_keymap_panes): Use it.
20315
203162008-04-11 Glenn Morris <rgm@gnu.org>
20317
20318 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
20319 set the target's value to that of the alias.
20320
203212008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
20322
20323 * term.c (set_tty_color_mode): Left over typo.
20324
203252008-04-10 Michael Albinus <michael.albinus@gmx.de>
20326
20327 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
20328 only after check for file name handler functions. Signal, when
20329 native functionality is not supported.
20330 (syms_of_fileio): Declare it unconditionally.
20331
203322008-04-10 Jason Rumney <jasonr@gnu.org>
20333
20334 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
20335 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
20336
20337 * w32.c (logon_network_drive): Also logon to remote drives that
20338 are mapped to drive letters.
20339
203402008-04-10 Glenn Morris <rgm@gnu.org>
20341
20342 * xdisp.c (truncate-partial-width-windows): Doc fix.
20343
203442008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
20345
20346 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
20347 Move functions to minibuffer.el.
20348 (syms_of_fileio): Don't declare them.
20349
203502008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
20351
20352 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
20353 (syms_of_minibuf): Remove its initialization.
20354
20355 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
20356
203572008-04-09 Juanma Barranquero <lekktu@gmail.com>
20358
20359 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
20360
203612008-04-09 Jason Rumney <jasonr@gnu.org>
20362
20363 * makefile.w32-in (distclean): Delete makefile too.
20364 (maintainer-clean): New target.
20365
20366 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
20367
20368 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
20369 for new font backend and composite cases.
20370
203712008-04-09 Jan Djärv <jan.h.d@swipnet.se>
20372
20373 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
20374 Most of the code moved to run_timers.
20375 (do_pending_atimers): Call run_timers.
20376 (run_timers): New function.
20377
20378 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
20379 run atimers.
20380
20381 * process.c (wait_reading_process_output): The same as above.
20382
203832008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
20384
20385 * minibuf.c (last_exact_completion): Remove variable.
20386 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
20387 (complete_and_exit_1, complete_and_exit_2)
20388 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
20389 (Fdisplay_completion_list, display_completion_list_1)
20390 (Fminibuffer_completion_help, Fself_insert_and_exit)
20391 (Fexit_minibuffer, Fminibuffer_message): Move functions to
20392 minibuffer.el.
20393 (syms_of_minibuf): Remove corresponding initializations.
20394
20395 * keyboard.c (Qdeactivate_mark): New var.
20396 (command_loop_1): Use it to call `deactivate-mark'.
20397 (syms_of_keyboard): Initialize it.
20398
20399 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
20400 to another frame.
20401 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
20402 Don't call set_tty_color_mode.
20403 (store_frame_param): Reset previous_frame rather than call
20404 set_tty_color_mode.
20405 * term.c (set_tty_color_mode): Rewrite.
20406 * dispextern.h (set_tty_color_mode): New type.
20407 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
20408
204092008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
20410
20411 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
20412 for generic chars, which do not exist any more in emacs-unicode.
20413
204142008-04-08 Michael Albinus <michael.albinus@gmx.de>
20415
20416 * coding.c (detect_coding_emacs_mule)
20417 (Ffind_operation_coding_system): Fix typo.
20418
204192008-04-08 Jason Rumney <jasonr@gnu.org>
20420
20421 * w32uniscribe.c (SNAME): Extract only symbol name.
20422
20423 * w32font.h (struct w32_metric_cache): New struct.
20424 (w32font_info): Use it.
20425 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
20426 (CACHE_BLOCKSIZE): New constants.
20427
20428 * w32font.c (Qja, Qko, Qzh): New symbols.
20429 (syms_of_w32font): Initialise them.
20430 (font_matches_spec): Use them to filter by language.
20431 (recompute_cached_metrics): Remove function.
20432 (compute_metrics, clear_cached_metrics): New functions.
20433 (w32font_encode_char): Use them to manage metric cache.
20434 (w32font_text_extents): Cache metrics for all glyphs on demand.
20435 Delay converting glyph indices to WORD until needed.
20436 (w32font_open_internal): Initialize metric cache to empty.
20437 (registry_to_w32_charset): Charset should always be a symbol.
20438 (fill_in_logfont, list_all_matching_fonts): Family should
20439 always be a symbol.
20440
204412008-04-06 Jason Rumney <jasonr@gnu.org>
20442
20443 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
20444 Give up if glyph indices not supported. Use uniscribe obtained
20445 ABC widths for individual metrics. Map glyph clusters back to
20446 characters using fClusterStart flag. Return number of glyphs
20447 produced, not chars processed.
20448 (uniscribe_shape): Map char at FROM to current glyph.
20449
204502008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20451
20452 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
20453 Use SetMenuItemHierarchicalMenu.
20454
204552008-04-05 Jason Rumney <jasonr@gnu.org>
20456
20457 * image.c (pbm_load): Allow color values up to 65535.
20458 Throw an error if max_color_idx is outside the supported range.
20459 Report an error when image size is invalid.
20460 Read two bytes at a time when raw images have max_color_idx above 255.
20461
aac0c6e3
MR
204622008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
20463
20464 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
20465 append "CCL: Quitted" when the CCL program is quitted.
20466 (setup_ccl_program): Initialize ccl->quit_silently to zero.
20467
20468 * ccl.h (struct ccl_program): New member quit_silently.
20469
204702008-04-05 Chong Yidong <cyd@stupidchicken.com>
20471
20472 * search.c (compile_pattern_1): Treat non-nil and non-string of
20473 search-spaces-regexp as nil.
20474
20475 * minibuf.c (Fassoc_string): Tweak docstring.
20476
204772008-04-05 Eli Zaretskii <eliz@gnu.org>
20478
20479 * dired.c (Ffile_attributes): Support inode numbers wider than 32
20480 bits. Remove ugly WINDOWSNT-specific kludge introduced on
20481 2008-03-14 to force inode be positive.
20482
20483 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
20484 _S_* ones, since we now use our own sys/stat.h.
20485 (stat, fstat): Don't mangle the inode number.
20486 (init_user_info): Don't restrict UID and GID to 0-60000 range.
20487
204882008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
20489
20490 * frame.h (struct frame): Give one more bit to `visible' since we use
20491 values larger than 1 to indicate obscured frames on ttys.
20492
20493 * keymap.c (Qkeymap_canonicalize): New var.
20494 (Fmap_keymap_internal): New fun.
20495 (describe_map): Use keymap-canonicalize.
20496
20497 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
20498 (Fundo_boundary): Set them.
20499 (syms_of_undo): Initialize them.
20500 (record_point): Use them instead of last_point_position*.
20501 (last_undo_buffer): Change type.
20502
205032008-04-04 Jason Rumney <jasonr@gnu.org>
20504
20505 * w32font.c (w32font_text_extents): Use font's ascent and descent.
20506 (recompute_cached_metrics): Don't set ascent and descent per char.
20507
20508 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
20509 (uniscribe_check_otf): Add GC protection before consing.
20510 Rearrange loop for counting features.
20511
205122008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
20513
20514 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
20515 buffer with byte-size of source buffer.
20516
205172008-04-03 Chong Yidong <cyd@stupidchicken.com>
20518
20519 * callint.c (Fcall_interactively): Handle temporary region even
20520 when shift-select-mode is off.
20521
205222008-04-03 Jason Rumney <jasonr@gnu.org>
20523
20524 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
20525
205262008-04-03 Kenichi Handa <handa@m17n.org>
20527
20528 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
20529 (CATEGORY_MASK_UTF_16): Likewise.
20530 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
20531 binary file.
20532 (detect_coding): Add null-byte detection for a binary file.
20533 (detect_coding_system): Likewise.
20534
205352008-04-03 Jason Rumney <jasonr@gnu.org>
20536
20537 * w32uniscribe.c: New file.
20538
20539 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
20540
20541 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
20542
20543 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
20544 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
20545 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
20546 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
20547 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
20548 (Qphonetic): New symbols.
20549 (syms_of_w32font): Initialize them.
20550 (font_supported_scripts): Use them.
20551 (w32font_list_family): List all charsets.
20552 (w32font_text_extents, recompute_cached_metrics): Fix metric
20553 calculations.
20554 (w32_enumfont_pattern_entity): Make full_type a DWORD.
20555 Give opentype fonts their own format.
20556 (font_matches_spec): New arguments backend and logfont.
20557 Handle :otf spec for uniscribe backend.
20558 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
20559 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
20560
20561 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
20562 font backend.
20563 (globals_of_w32fns): Initialize uniscribe font backend.
20564
20565 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
20566 dependencies.
20567 (w32uniscribe.$(O)): New file to build.
20568 (FONT_OBJ): Include w32uniscribe.$(O).
20569 (LIBS): Add uniscribe libraries.
20570
20571 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
20572
205732008-04-02 Chong Yidong <cyd@stupidchicken.com>
20574
20575 * callint.c (Vshift_select_mode): New var.
20576 (Finteractive): Document new ^ spec.
20577 (Fcall_interactively): Call handle-shift-selection if the ^ spec
20578 is present.
20579
20580 * keyboard.c (Vthis_command_keys_shift_translated): New var.
20581 (command_loop_1): Avoid running the direct display versions of
20582 forward-char and backward-char if shift-selection may occur.
20583 (read_key_sequence): Set Vthis_command_keys_shift_translated if
20584 shift-translation takes place.
20585
20586 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
20587 avoid clobbering by define-minor-mode.
20588
20589 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
20590 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
20591
20592 * syntax.c (Fforward_word): Add ^ interactive spec.
20593
20594 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
20595 (Fscroll_right): Add ^ interactive spec.
20596
205972008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
20598
20599 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
20600
20601 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
20602
20603 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
20604
206052008-03-31 Juri Linkov <juri@jurta.org>
20606
20607 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
20608
206092008-03-30 Jan Djärv <jan.h.d@swipnet.se>
20610
20611 * gtkutil.c (xg_set_geometry): Fix indentation.
20612 (xg_resize_outer_widget): Remove.
20613 (x_wm_size_hint_off): Fix indentation.
20614 (xg_frame_set_char_size): Call flush_and_sync after
20615 gtk_window_resize.
20616 (x_wm_set_size_hint): Pass NULL as geometry window to
20617 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
20618 Add menu bar and tool bar height to base height.
20619 (xg_update_frame_menubar, free_frame_menubar)
20620 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
20621 (update_frame_tool_bar, free_frame_tool_bar):
20622 Change xg_resize_outer_widget to xg_frame_set_char_size.
20623
206242008-03-30 Michael Albinus <michael.albinus@gmx.de>
20625
20626 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
20627 (Fdbus_call_method): New parameter TIMEOUT.
20628 (dbus-send-signal): Optimize UNGCPRO call.
20629
206302008-03-29 Juri Linkov <juri@jurta.org>
20631
20632 * window.c (Fdisplay_buffer): Move call to
20633 Vsplit_window_preferred_function out of conditions that check
20634 if window is eligible for vertical splitting.
20635 When Vsplit_window_preferred_function is non-nil, call it and use
20636 its non-nil return value as window. Otherwise, continue doing
20637 vertical splitting using Fsplit_window with arg horflag=nil.
20638 (syms_of_window) <Vsplit_window_preferred_function>: Change the
20639 default value from `split-window' to nil.
20640
206412008-03-29 Juri Linkov <juri@jurta.org>
20642
20643 * callint.c (Fcall_interactively): Revert 2008-03-16 change
20644 for interactive code letters 'b' and 'B'.
20645
206462008-03-29 Eli Zaretskii <eliz@gnu.org>
20647
20648 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
20649 multibyte string.
20650
206512008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
20652
20653 * keyboard.c (pending_funcalls): New var.
20654 (timer_check): Run it.
20655 (syms_of_keyboard): Initialize it.
20656 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
20657 (Vdelete_terminal_functions): New vars.
20658 (syms_of_terminal): Initialize them.
20659 (Fdelete_terminal): Run delete-terminal-functions.
20660 * xdisp.c (safe_eval): Rewrite.
20661 (safe_call2): New fun.
20662 * frame.c (Qdelete_frame_functions): New var.
20663 (syms_of_frame): Initialize it.
20664 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
20665 * lisp.h (safe_call2, pending_funcalls): Declare.
20666
206672008-03-28 Andreas Schwab <schwab@suse.de>
20668
20669 * indent.c (Fmove_to_column): Move declaration before statements.
20670
206712008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
20672
20673 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
20674 (struct frame): Use bit fields for boolean vars.
20675
20676 * process.c (server_accept_connection): Simplify naming.
20677 (emacs_get_tty_pgrp): Use SDATA.
20678
20679 * coding.c (decode_coding_object): Fix last change.
20680
206812008-03-27 Jason Rumney <jasonr@gnu.org>
20682
20683 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
20684
206852008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
20686
20687 * charset.c (Fdefine_charset_internal): Change the way of
20688 registering charsets in Vcharset_order_list.
20689 (syms_of_charset): Make the charset `eight-bit' supplementary.
20690
206912008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
20692
20693 * regex.c (EXTEND_BUFFER): Change order of pointer addition
20694 operations, to avoid having the difference between pointers
20695 overflow.
20696
206972008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
20698
20699 * indent.c (check_display_width): New fun.
20700 (scan_for_column): Use it.
20701
20702 * data.c (syms_of_data): Mark most-positive-fixnum and
20703 most-negative-fixnum as constants.
20704
20705 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
20706
20707 * indent.c (scan_for_column): Extract from current_column_1.
20708 Merge with the same code from Fmove_to_column.
20709 (current_column_1, Fmove_to_column): Use it.
20710
207112008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
20712
20713 * keymap.c (map_keymap_internal): New fun.
20714 (map_keymap): Use it.
20715 (Fmap_keymap_internal): New fun.
20716 (Fmap_keymap): Remove left-out test from before make_save_value.
20717
20718 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
20719
20720 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
20721 Use XCAR/XCDR.
20722
20723 * process.h (struct Lisp_Process): Remove filter_multibyte.
20724 * process.c (QCfilter_multibyte): Remove.
20725 (setup_process_coding_systems): Don't use filter_multibyte.
20726 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
20727 (read_process_output): Don't adjust multibyteness to filter_multibyte.
20728 (Fset_process_filter_multibyte): Change the coding-system to
20729 approximate the previous behavior.
20730 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
20731 coding-system.
20732
20733 * coding.c (decode_coding_object): When not decoding into a buffer,
20734 obey the coding system's preference of (uni|multi)byte.
20735
207362008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
20737
20738 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
20739 every char is changed and has a different byte-length.
20740 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
20741 Fix int -> EMACS_INT.
20742
207432008-03-23 David Hansen <david.hansen@gmx.net>
20744
20745 * dbusbind.c (xd_read_message): Remove extra copying of message
20746 strings. Check for NULL `interface' or `member'.
20747
207482008-03-22 Eli Zaretskii <eliz@gnu.org>
20749
20750 * w32.c (readdir): If FindFirstFile/FindNextFile return in
20751 cFileName a file name that includes `?' characters, use the 8+3
20752 alias in cAlternateFileName instead.
20753
207542008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
20755
20756 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
20757
207582008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
20759
20760 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
20761 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
20762 work on current_buffer only instead (that was already the case
20763 for some of the code anyway).
20764 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
20765 (temp_set_point, temp_set_point_both): Use EMACS_INT.
20766 (SET_PT, SET_PT_BOTH): Adjust.
20767 * intervals.h (set_point, temp_set_point, set_point_both)
20768 (temp_set_point_both): Remove redundant declarations.
20769
207702008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
20771
20772 * fileio.c (Finsert_file_contents):
20773 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
20774 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
20775 when buffer != current_buffer anyway.
20776
207772008-03-20 Andreas Schwab <schwab@suse.de>
20778
20779 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
20780 as default.
20781
207822008-03-19 Jason Rumney <jasonr@gnu.org>
20783
20784 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
20785 (syms_of_w32fns): Initialize them.
20786 (HOURGLASS_ID): New constant.
20787 (x_window_to_frame): Don't check hourglass_window.
20788 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
20789 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
20790 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
20791 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
20792 Only change the cursor if hourglass is not active.
20793 (Fx_create_frame): Initialize frame's current_cursor.
20794 (hourglass_atimer): Remove.
20795 (hourglass_started): New function.
20796 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
20797 (show_hourglass): Adapt to w32, changing argument to frame.
20798
20799 * w32term.h (struct w32_output): Remove hourglass_window.
20800 Add current_cursor.
20801
20802 * eval.c (call_debugger, Fsignal):
20803 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
20804 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
20805 (Fexecute_extended_command, cancel_hourglass_unwind):
20806 * minibuf.c (read_minibuf):
20807 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
20808
208092008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
20810
20811 * window.c (run_funs): New fun.
20812 (run_window_configuration_change_hook): Use it to run the buffer-local
20813 and the global part of the hook.
20814
20815 * xdisp.c (format_mode_line_unwind_data): Add window argument.
20816 (unwind_format_mode_line): Restore selected window.
20817 (x_consider_frame_title, Fformat_mode_line): Set selected window.
20818
208192008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
20820
20821 * editfns.c (Fchar_equal): Check they are valid characters.
20822
20823 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
20824
208252008-03-17 Andreas Schwab <schwab@suse.de>
20826
20827 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
20828 against a charset.
20829
20830 * lisp.h (Fbuffer_list): Declare.
20831
208322008-03-17 Jan Djärv <jan.h.d@swipnet.se>
d6c952f8 20833
aac0c6e3
MR
20834 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
20835 handlebox_widget is != 0.
20836
208372008-03-16 Juri Linkov <juri@jurta.org>
20838
20839 * callint.c (Fcall_interactively): For interactive code letters
20840 'b' and 'B' put the buffer list into the list of default "future"
20841 values of the minibuffer.
20842
208432008-03-16 Andreas Schwab <schwab@suse.de>
20844
20845 * keyboard.c (read_key_sequence): Fix downcasing of letters with
20846 modifiers.
20847
20848 * regex.c (re_match_2_internal): Correct matching of a charset
20849 against latin-1 characters.
20850
208512008-03-16 Kenichi Handa <handa@m17n.org>
20852
20853 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
20854 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
20855 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
20856 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
20857 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
20858 CHAR_STRING_ADVANCE.
20859 (produce_chars): Fix for the case that the source and the
20860 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
20861 instead of CHAR_STRING_ADVANCE.
20862 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
20863 STRING_CHAR_ADVANCE.
20864
208652008-03-15 Andreas Schwab <schwab@suse.de>
20866
20867 * regex.c (re_match_2_internal): Correct matching of eight bit
20868 characters in unibyte strings.
20869
208702008-03-15 Martin Rudalics <rudalics@gmx.at>
20871
20872 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
20873 at end of range when it coincides with the end of the buffer.
20874
208752008-03-14 Eli Zaretskii <eliz@gnu.org>
20876
20877 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
20878
20879 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
20880
208812008-03-14 Jason Rumney <jasonr@gnu.org>
20882
20883 * editfns.c (initial_tz): New variable.
20884 (syms_of_editfns): Initialize it.
20885 (Fset_time_zone_rule): Set it when first called.
20886 Use it when TZSTRING is nil.
20887
20888 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
20889 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
20890 (monitor_from_point_fn, get_monitor_info_fn): New globals.
20891 (globals_of_w32fns): Initialize them.
20892 (compute_tip_xy): Use them to position tooltips.
20893
208942008-03-14 Glenn Morris <rgm@gnu.org>
20895
20896 * emacs.c (main): Revert previous change.
20897 (standard_args): Revert -internal-script back to -scriptload,
20898 and remove the long-option form.
20899
209002008-03-13 Glenn Morris <rgm@gnu.org>
20901
20902 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
20903 Remove option -enable-font-backend.
20904
209052008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
20906
20907 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
20908
209092008-03-11 Jan Djärv <jan.h.d@swipnet.se>
20910
20911 * xterm.c (x_connection_closed): For GTK: If this is the last
20912 terminal just exit without closing the display.
20913
209142008-03-11 Jason Rumney <jasonr@gnu.org>
20915
20916 * w32font.c (w32font_full_name): Use floor to round.
20917
f0131492 209182008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
aac0c6e3
MR
20919
20920 * sound.c (alsa_configure): Declare vol at beginning of block.
20921
20922 * fontset.c (Ffontset_info): Remove extra semicolon.
20923
209242008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
20925
20926 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
20927 size of resulting string.
20928
209292008-03-10 Jason Rumney <jasonr@gnu.org>
20930
20931 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
20932
209332008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20934
20935 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
20936 Don't pretend as if characters with display property haven't been
20937 consumed for string-replacing-string case.
20938
209392008-03-08 Kim F. Storm <storm@cua.dk>
20940
20941 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
20942 (get_next_display_element, next_element_from_string)
20943 (next_element_from_ellipsis, next_element_from_buffer): Use it.
20944
209452008-03-08 Andreas Schwab <schwab@suse.de>
20946
20947 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
20948
209492008-03-06 Jason Rumney <jasonr@gnu.org>
20950
20951 * w32font.c (w32_registry): Take font_type argument. Use ANSI
20952 when charset not specified. Only translate ANSI to unicode when
20953 font_type is truetype.
20954 (w32font_coverage_ok): New function.
20955 (add_font_entity_to_list): Use it to filter unsuitable fonts.
20956
209572008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
20958
20959 * lread.c (Fread_char): Resolve modifiers.
20960 (Fread_char_exclusive): Likewise.
20961
20962 * character.c (char_resolve_modifier_mask): New function.
20963 (char_string): Use char_resolve_modifier_mask.
20964 (Fchar_resolve_modifiers): New function.
20965 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
20966 function.
20967
209682008-03-04 Jason Rumney <jasonr@gnu.org>
20969
20970 * makefile.w32-in: Always include w32font.c in the build.
20971 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
20972
209732008-03-04 Andreas Schwab <schwab@suse.de>
20974
20975 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
20976 (versionclean): Likewise.
20977
209782008-03-04 Juanma Barranquero <lekktu@gmail.com>
20979
20980 * .cvsignore: Add oo.
20981
209822008-03-03 Andreas Schwab <schwab@suse.de>
20983
20984 * coding.c (decode_coding_object): Inhibit gap shrinking while
20985 decoding in place.
20986
209872008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
20988
20989 * w32term.c: Remove unused include "gnu.h".
20990 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
20991
20992 * gnu.h: Rename to ...
20993 * emacs-icon.h: ... this.
20994 * xterm.c: Use emacs-icon.h instead of gnu.h.
20995 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
20996
209972008-03-03 Juanma Barranquero <lekktu@gmail.com>
20998
20999 * w32font.c: Include math.h.
21000
210012008-03-03 Jason Rumney <jasonr@gnu.org>
21002
21003 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
21004 Compute options separately.
21005 (w32font_open_internal): Set glyph_idx before caching metrics.
21006
21007 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
21008 Define if system headers don't.
21009 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
21010 (w32font_encode_char): Don't declare here.
21011
21012 * w32font.c (Quniscribe, QCformat): New symbols.
21013 (syms_of_w32font): Define them.
21014 (w32font_has_char): Indicate uncertainty.
21015 (w32font_encode_char): Encode as glyph point. Make static.
21016 (recompute_cached_metrics): New function.
21017 (w32font_open_internal): Use it. Set font to use glyph points
21018 initially. Set format based on type of font.
21019 (w32font_text_extents, w32font_draw): Optionally use glyph points.
21020 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
21021 on it. Set format based on information available here.
21022 (add_font_entity_to_list): Identify backend based on opentype_only.
21023
210242008-03-02 Andreas Schwab <schwab@suse.de>
21025
21026 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
21027
21028 * coding.c (decode_coding_big5, produce_chars):
21029 Fix typos in last change.
21030
210312008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
21032
21033 * gnu.h: New icon.
21034
210352008-03-02 Kenichi Handa <handa@m17n.org>
21036
21037 * coding.c (decode_coding_utf_8): When eol-type of CODING is
21038 `dos', don't decode '\r' if that is the last in the source.
21039 (decode_coding_utf_16, decode_coding_emacs_mule)
21040 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21041 (decode_coding_raw_text, decode_coding_charset): Likewise.
21042 (produce_chars): Don't decode EOL here. Use EMACS_INT.
21043
210442008-03-01 Jason Rumney <jasonr@gnu.org>
21045
21046 * w32font.c (w32font_full_name): Report point size for scalable fonts.
21047
210482008-03-01 Kim F. Storm <storm@cua.dk>
21049
21050 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
21051
210522008-03-01 Jason Rumney <jasonr@gnu.org>
21053
21054 * w32font.c (w32font_full_name): New function.
21055 (w32font_open_internal): Use it.
21056
210572008-03-01 Kim F. Storm <storm@cua.dk>
21058
21059 * dispnew.c (line_draw_cost): Fix invalid glyph check.
21060
210612008-03-01 Jason Rumney <jasonr@gnu.org>
21062
21063 * font.c (font_unparse_fcname): Increase len when style is a symbol.
21064
210652008-03-01 Jan Djärv <jan.h.d@swipnet.se>
21066
21067 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
21068 xg_frame_resized when the event is for the edit widget.
21069
ef1b0ba7 21070 * gtkutil.h (xg_frame_resized): Rename from xg_resize_widgets.
aac0c6e3
MR
21071
21072 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
21073 set_char_size.
ef1b0ba7 21074 (xg_frame_resized): Rename from xg_resize_widgets. Remove all
aac0c6e3
MR
21075 operations on widgets here. Just set frame size if needed.
21076 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
21077 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
21078 (x_wm_set_size_hint): Set size hints on the edit widget only, not
21079 the whole frame.
21080 (xg_create_tool_bar): Move attachment of the tool bar to
21081 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
21082 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
21083
210842008-03-01 Jason Rumney <jasonr@gnu.org>
21085
21086 * w32fns.c (w32_msg_pump): Disable debug code.
21087
210882008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21089
21090 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
21091
210922008-02-29 Chong Yidong <cyd@stupidchicken.com>
21093
21094 * xdisp.c (next_overlay_string): Don't set
21095 overlay_strings_at_end_processed_p if we're currently reading from
21096 a display string.
21097
210982008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
21099
21100 * xdisp.c (get_overlay_strings_1): Fix typo.
21101
211022008-02-29 Chong Yidong <cyd@stupidchicken.com>
21103
21104 * xdisp.c (get_overlay_strings_1): Add missing argument type.
21105
211062008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
21107
21108 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
21109
21110 * xdisp.c (display_mode_element): Cancel the previous change.
21111 (decode_mode_spec): Likewise.
21112 (handle_auto_composed_prop): Don't make composition if it->string
21113 is a string.
21114
211152008-02-27 Kim F. Storm <storm@cua.dk>
21116
21117 * lisp.h (GLYPH): Change type from int to struct with separate char
21118 and face_id members.
21119 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
21120 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
21121 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
21122 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
21123 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
21124 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
21125 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
21126 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
21127 handle new Lisp glyph code encoding, either an integer or a cons.
21128
21129 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
21130 (GLYPH_ALIAS): Delete.
21131 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
21132 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
21133 (GLYPH_FROM_CHAR): Replace macro by ...
21134 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
21135
21136 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
21137 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
21138 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
21139 (GLYPH_INVALID_P): New macro.
21140 (spec_glyph_lookup_face): Update prototype.
21141
21142 * dispnew.c (line_draw_cost): Adapt to new glyph type.
21143 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
21144 new glyph code encoding.
21145 (spec_glyph_lookup_face): No return value; update passed glyph instead.
21146 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
21147
21148 * xdisp.c (get_next_display_element, next_element_from_display_vector):
21149 Adapt to new glyph type and new glyph code encoding.
21150
21151 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
21152
21153 * indent.c (current_column, current_column_1, Fmove_to_column)
21154 (compute_motion): Adapt to new glyph code encoding.
21155
21156 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
21157
211582008-02-27 Chong Yidong <cyd@stupidchicken.com>
21159
21160 * process.c (wait_reading_process_output): Check for window
21161 changes caused by timers.
21162 Suggested by Johan Bockgård.
21163
211642008-02-27 Glenn Morris <rgm@gnu.org>
21165
21166 * emacs.c (USAGE1): Add `--disable-font-backend'.
21167
211682008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
21169
21170 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
21171 is made to the buffer.
21172
211732008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
21174
21175 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
21176 (face_at_string_position):
21177 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
21178 (face_at_string_position):
21179 * xdisp.c (display_string, next_overlay_change):
21180 * buffer.h (overlays_at):
21181 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
21182 Update callers.
21183
211842008-02-26 Chong Yidong <cyd@stupidchicken.com>
21185
21186 * editfns.c (Fformat): Doc fix.
21187
211882008-02-26 Juanma Barranquero <lekktu@gmail.com>
21189
21190 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
21191 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
21192 (Ffont_otf_alternates, Fquery_font): Doc fixes.
21193
211942008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
21195
21196 * buffer.c (Fbuffer_swap_text): New function.
21197 (syms_of_buffer): Defsubr it.
21198
211992008-02-25 Chong Yidong <cyd@stupidchicken.com>
21200
21201 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
21202
212032008-02-25 Jason Rumney <jasonr@gnu.org>
21204
21205 * w32font.c (w32font_draw): Draw one character at a time when padding.
21206
212072008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
21208
21209 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
21210 Handle a nil arg. Use run_window_configuration_change_hook.
21211 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
21212 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
21213 Use run_window_configuration_change_hook.
21214
212152008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
21216
21217 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
21218 1-pixel width.
21219
212202008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
21221
21222 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
21223 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
21224 if the glyph in the font is zero pixel with.
21225
21226 * dispextern.h (struct glyph_string): New member padding_p.
21227
21228 * w32font.c (w32font_draw): Pay attention to s->padding_p.
21229
21230 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
21231
21232 * xfont.c (xfont_draw): Pay attention to s->padding_p.
21233
21234 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
21235
21236 * font.c: If the font driver doesn't have `shape' function, return Qnil.
21237
212382008-02-25 Jason Rumney <jasonr@gnu.org>
21239
21240 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
21241
212422008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
21243
21244 Allow fine-grained image-cache flushing.
21245 * dispextern.h (struct image): Add `dependencies' field.
21246 (clear_image_caches): Change arg to Lisp_Object.
21247 * image.c (make_image): Initialize `dependencies' field.
21248 (clear_image_cache): Change arg to allow fine-grained flushing.
21249 Perform the flush even if image-cache-eviction-delay is nil.
21250 (clear_image_caches): Change arg to Lisp_Object.
21251 (Fclear_image_cache): Expand meaning of the argument.
21252 (mark_image): Mark `dependencies' field.
21253 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
21254 (lface_hash): Use XHASH rather than XFASTINT.
21255 (face_at_buffer_position): Fix int -> EMACS_INT position.
21256 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
21257 (select_frame_for_redisplay): Remove code duplication.
21258 (redisplay_internal): Adapt arg to call to clear_image_caches.
21259
212602008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
21261
21262 * s/vms4-0.h:
21263 * s/vms4-2.h:
21264 * s/vms4-4.h:
21265 * s/vms5-5.h: Remove, unused.
21266
21267 * s/irix5-2.h:
21268 * s/irix6-0.h:
21269 * s/riscos5.h:
21270 * s/mach-bsd4-3.h:
21271 * m/mips4.h: Remove files for obsolete systems.
21272
21273 * Makefile.in:
21274 * filelock.c:
21275 * unexmips.c:
21276 * m/hp9000s300.h:
21277 * m/iris4d.h:
21278 * s/aix3-1.h:
21279 * s/hpux.h:
21280 * s/msdos.h:
21281 * s/usg5-0.h:
21282 * s/usg5-2-2.h:
21283 * s/usg5-2.h:
21284 * s/usg5-3.h: Remove references to obsolete variables.
21285
21286 * s/irix5-0.h: Remove, move all the contents ...
21287 * s/irix6-5.h: ... here. Simplify.
21288 * config.in: Regenerate.
21289
212902008-02-24 Jason Rumney <jasonr@gnu.org>
21291
21292 * w32term.c (x_draw_glyph_string_background): Clear the background
21293 manually when cleartype is in use.
21294 (x_draw_glyph_string_foreground): Draw text transparently when
21295 cleartype is in use.
21296
21297 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
21298 a font into it unless we have to.
21299
213002008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
21301
21302 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
21303 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
d6c952f8 21304
aac0c6e3
MR
213052008-02-18 Jason Rumney <jasonr@gnu.org>
21306
21307 * w32fns.c (Fw32_shell_execute): Encode parameters.
21308
213092008-02-09 Eli Zaretskii <eliz@gnu.org>
21310
21311 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
21312
213132008-02-05 Juanma Barranquero <lekktu@gmail.com>
21314
21315 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
21316
213172008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
21318
21319 * xterm.c (x_set_offset): Don't change the gravity if
21320 CHANGE_GRAVITY is -1.
21321
213222008-02-23 Chong Yidong <cyd@stupidchicken.com>
21323
21324 * fileio.c (auto_save_error_occurred): New var.
21325 (auto_save_error): Set it.
21326 (Fdo_auto_save): Don't overwrite the error message if an auto-save
21327 error occurred.
21328
213292008-02-23 Eli Zaretskii <eliz@gnu.org>
21330
21331 * w32.c (globals_of_w32): Add initializations for
21332 g_b_init_get_sid_sub_authority and
21333 g_b_init_get_sid_sub_authority_count.
21334
213352008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
21336
21337 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
21338 (font_parse_xlfd): Use them for sanity check.
21339 (Finternal_set_font_style_table): Make sure the table is bijective.
21340
21341 Consolidate the image_cache to the terminal struct.
21342 * termhooks.h (P_): Remove redundant def.
21343 (struct terminal): New field `image_cache'.
21344 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
21345 of FRAME_X_IMAGE_CACHE.
21346 * xterm.h (struct x_display_info): Remove image_cache field.
21347 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
21348 * w32term.h (struct w32_display_info): Remove image_cache field.
21349 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
21350 * macterm.h (struct mac_display_info): Remove image_cache field.
21351 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
21352 * xterm.c (x_term_init):
21353 * w32term.c (w32_term_init):
21354 * macterm.c (mac_term_init): Set the image_cache in the terminal.
21355 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
21356 Remove declarations.
21357 (clear_image_caches, mark_image_cache): New declarations.
21358 * xfaces.c (clear_face_cache):
21359 * xdisp.c (redisplay_internal): Use clear_image_caches.
21360 * image.c (clear_image_cache): Don't check that a frame is on
21361 a window-system before checking if it shares the same cache.
21362 (clear_image_caches): New function.
21363 (Fclear_image_cache): Use it.
21364 (mark_image): Move from allo.c.
21365 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
21366 * alloc.c (mark_image, mark_image_cache): Move to image.c.
21367 (mark_object): Don't call mark_image_cache for frames.
21368 (mark_terminals): Call mark_image_cache.
21369
21370 * lisp.h (Fdelete_terminal): Declare.
21371
21372 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
21373 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
21374 wrong_type_argument.
21375
213762008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
21377
21378 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
21379 malayalam.el, and tamil.el. Add sinhala.el.
21380
213812008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
21382
21383 * xterm.c (x_connection_closed): Consolidate identical tests.
21384 (x_delete_terminal): Don't crash if called via x_connection_closed.
21385
213862008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
21387
21388 * xdisp.c (decode_mode_spec): New arg string.
21389 (display_mode_element): Adjust for the above change.
21390
213912008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
21392
21393 * callint.c (Fcall_interactively): Use AREF.
21394
213952008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
21396
21397 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
21398
213992008-02-18 Jan Djärv <jan.h.d@swipnet.se>
21400
21401 * xfns.c (Fx_show_tip): Set string to " " if empty.
21402
214032008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
21404
21405 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
21406 with Qt.
21407
214082008-02-17 Kenichi Handa <handa@m17n.org>
21409
21410 * ftfont.c (ftfont_shape): Return Lispy number.
21411
21412 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
21413 for GCs.
21414 (Finternal_set_font_selection_order): Call font_update_sort_order
21415 only when enable_font_backend is set.
21416 (realize_x_face): Set face->font_info to that of default face only
21417 when enable_font_backend is set.
21418
21419 * xdisp.c (handle_composition_prop): Set it->c to the fist
21420 character of the composed region.
21421 (fill_composite_glyph_string): Set base_face->font_info to
21422 s->font_info. Get a face for ascii from base_face->ascii_face.
21423 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
21424 with a face already decided.
21425 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
21426 non-negative.
21427 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
21428 call font_prepare_composition unconditionally.
21429
21430 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
21431
21432 * xterm.h (struct x_display_info): New member font.
21433
21434 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
21435 (x_set_mouse_face_gc, x_new_font): Likewise.
21436 (x_term_init): Setup display_info->font.
21437 (x_delete_terminal): Free display_info->font.
21438
21439 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
21440
21441 * ftxfont.c (ftxfont_default_fid): Delete it.
21442 (ftxfont_open): Set xfont->fid to 0.
21443 (ftxfont_end_for_frame): Clear data specific to the frame and the
21444 font-driver.
21445
21446 * xftfont.c (xftfont_default_fid): Delete it.
21447 (xftfont_open): Set xfont->fid to 0.
21448
21449 * fontset.c (FONTSET_OBJLIST): New macro.
21450 (fontset_find_font): Update font-object list of the fontset.
21451 (free_realized_fontset): New function.
21452 (free_face_fontset): Call free_realized_fontset.
21453 (Ffont_info): Call font_close_object only when enable_font_backend
21454 is set.
21455
21456 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
21457 [HAVE_NTGUI]: Include w32term.h.
21458 [MAC_OS]: Include macterm.ch.
21459 (font_otf_ValueRecord): Use make_number.
21460 (font_finish_cache): Fix handling of reference count.
21461 (font_clear_cache): Update num_fonts.
21462 (font_open_entity): Update smallest_char_width and
21463 smallest_font_height of the frame.
21464 (font_close_object): Update num_fonts.
21465 (Fclear_font_cache): Fix finding the target cache data.
21466
214672008-02-16 Glenn Morris <rgm@gnu.org>
21468
21469 * fontset.c (Finternal_char_font): Fix compilation warning.
21470
214712008-02-16 Eli Zaretskii <eliz@gnu.org>
21472
21473 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
21474 instead of char arrays. Enlarge the size of array passed to
21475 get_token_information.
21476
21477 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
21478 warnings.
21479
214802008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
21481
21482 * .gdbinit: Don't set `args', it breaks gdb --args.
21483
214842008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
21485
21486 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
21487 within a narrowed buffer.
21488
214892008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
21490
21491 * coding.c (decode_coding_object, encode_coding_object):
21492 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
21493
214942008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
21495
21496 * coding.c (coding_set_destination): Use BEG_BYTE rather than
21497 hardcoding 1.
21498 (detect_coding_system):
21499 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
21500 (string_char_to_byte, string_byte_to_char, insert_from_gap):
21501 * insdel.c (insert_from_gap):
21502 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
21503 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
21504 (string_to_multibyte):
21505 * character.c (chars_in_text, multibyte_chars_in_text):
21506 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
21507
21508 * character.h (FETCH_STRING_CHAR_ADVANCE)
21509 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
21510 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
21511 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
21512
21513 * casefiddle.c (casify_region): Only call after-change and composition
21514 functions on the part of the region that was changed.
21515
21516 * keyboard.c (read_avail_input):
21517 * frame.c (Fdelete_frame): Call Fdelete_terminal.
21518
215192008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
21520
21521 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
21522 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
21523
215242008-02-11 Juanma Barranquero <lekktu@gmail.com>
21525
21526 * w32menu.c (push_submenu_start, push_submenu_end)
21527 (push_left_right_boundary, push_menu_pane, push_menu_item):
21528 * keyboard.c (read_key_sequence): Don't pass args with side effects
21529 to AREF, it fails when compiling with -DENABLE_CHECKING.
21530
215312008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
21532
21533 * Makefile.in (${lispsource}international/charprop.el):
21534 Delete this target.
21535
21536 * search.c (boyer_moore): Fix incorrect synching of the trunk and
21537 emacs-unicode-2.
21538
215392008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
21540
21541 * terminal.c (Fdelete_terminal): Clean up the `force' path.
21542
215432008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
21544
21545 * frame.c (Qnoelisp): New symbol.
21546 (syms_of_frame): Initialize it.
21547 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
21548 harmless Elisp code, from a strong `force' from x_connection_closed.
21549 * frame.h (Qnoelisp): Declare.
21550 * xterm.c (x_connection_closed): Pass `noelisp'.
21551
21552 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
21553 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
21554 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
21555 rather than `int' for the type of `type'.
21556
215572008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
21558
21559 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
21560
21561 * Makefile.in (GNUC): Remove support for gcc-1.x.
21562
215632008-02-10 Richard Stallman <rms@gnu.org>
21564
21565 * lisp.h (ASET): Use AREF, not ASLOT.
21566
215672008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
21568
21569 * lisp.h (ASET): Check bounds.
21570
215712008-02-10 Glenn Morris <rgm@gnu.org>
21572
21573 * buffer.c (mode-name): Doc fix.
21574
215752008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
21576
21577 * Makefile.in:
21578 * emacs.c:
21579 * gmalloc.c:
21580 * keyboard.c:
21581 * lisp.h:
21582 * m/ibm370aix.h:
21583 * process.c:
21584 * regex.c:
21585 * s/hpux.h:
21586 * sysdep.c:
21587 * sysselect.h:
21588 * systty.h:
21589 * unexec.c:
21590 * w32term.c:
21591 * xsmfns.c:
21592 * xterm.c: Remove code that deals with obsolete variables.
21593
21594 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
21595
21596 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
21597 nothing else needs it anymore.
21598
215992008-02-09 Eli Zaretskii <eliz@gnu.org>
21600
21601 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
21602 instead of unibyte_char_to_multibyte.
21603
216042008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
21605
21606 * s/gnu-linux.h: Remove commented out code.
21607
21608 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
21609
21610 * Makefile.in: Update what RMS says about using autoconf.
21611 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
21612 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
21613 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
21614 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
21615
216162008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
21617
21618 * keymap.c (Fkey_description): Move side effect outside of macro call.
21619
21620 * xfaces.c (Finternal_make_lisp_face):
21621 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
21622
21623 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
21624 (syms_of_fontset): Use ASET.
21625
21626 * fns.c (concat): Move side effect outside of macro call.
21627 (hash_clear): Use ASET.
21628
216292008-02-08 Richard Stallman <rms@gnu.org>
21630
21631 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
21632 If FORCE, and frame has a surrogate minibuffer for another frame,
21633 delete the other frame first.
21634
216352008-02-07 Timo Savola <timo.savola@iki.fi>
21636
21637 * xterm.c (x_detect_focus_change): Handle embed client message.
21638 (handle_one_xevent): Ditto.
21639 (handle_one_xevent): If embedded and we get a button press/release,
21640 request focus.
21641 (xembed_set_info, xembed_send_message): New functions.
21642 (x_make_frame_visible): Call xembed_set_info if embedded.
21643 (x_make_frame_invisible): Call xembed_set_info if embedded.
21644 (x_term_init): Initialize Xatom_XEMBED.
21645 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
21646 (x_iconify_frame): Ditto.
21647
21648 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
21649 (enum xembed_info, enum xembed_message, enum xembed_focus)
21650 (enum xembed_modifier, enum xembed_accelerator): New.
21651 (xembed_set_info, xembed_send_message): Declare.
21652 (FRAME_X_EMBEDDED_P): New.
21653
21654 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
21655 gtk_plug_new.
21656
21657 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
21658 window ID of a frame.
21659 (x_window): Reparent frame if embedded.
21660 (Fx_create_frame): Don't set border width if embedded.
21661
21662 * emacs.c (USAGE3): Add --parent-id.
21663 (standard_args): Ditto.
21664
216652008-02-07 Jan Djärv <jan.h.d@swipnet.se>
21666
21667 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
21668
216692008-02-07 Jim Meyering <meyering@redhat.com>
21670
21671 Use "do...while (0)", not "if (1)...else" in macro definitions.
21672 The latter provokes a warning from gcc about the empty else, when
21673 followed by ";". Also, without that trailing semicolon, it would
21674 silently swallow up any following statement.
21675 * syntax.h (SETUP_SYNTAX_TABLE)
21676 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
21677 * buffer.h (DECODE_POSITION): Likewise.
21678 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
21679 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
21680 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
21681 (FETCH_CHAR_ADVANCE): Likewise.
21682 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
21683
216842008-02-07 Jim Meyering <meyering@redhat.com>
21685
21686 * lread.c [lint]: Don't include <sys/inode.h>.
21687
216882008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
21689
21690 * xselect.c (x_handle_dnd_message):
21691 * xmenu.c (digest_single_submenu, xmenu_show):
21692 * xdisp.c (with_echo_area_buffer_unwind_data)
21693 (format_mode_line_unwind_data, unwind_format_mode_line)
21694 (display_menu_bar):
21695 * eval.c (Ffetch_bytecode):
21696 * doc.c (store_function_docstring):
21697 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
21698 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
21699 * buffer.c (add_overlay_mod_hooklist): Use ASET.
21700
217012008-02-07 Kenichi Handa <handa@m17n.org>
21702
21703 * ftxfont.c (ftxfont_open): Don't set
21704 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
21705
21706 * ftfont.c (ftfont_open): Fix previous change.
21707
217082008-02-06 Jason Rumney <jasonr@gnu.org>
21709
21710 * w32font.c (w32font_text_extents): Fill in lbearing metric.
21711 Use cached metrics for ASCII characters.
21712 (w32font_open_internal): Don't set font's owning_frame.
21713 Cache metrics for ASCII characters.
21714
21715 * w32font.h (struct w32font_info): Add ascii_metrics.
21716 Remove owning_frame.
21717
217182008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
21719
21720 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
21721 to negative value.
21722
21723 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
21724
21725 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
21726
21727 * charset.c (syms_of_charset): Set QCtest and Qeq.
21728
217292008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
21730
21731 * process.c (Fstart_process):
21732 * callproc.c (Fcall_process): Handle the case where
21733 Funhandled_file_name_directory returns nil.
21734
21735 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
21736 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
21737 * font.c (check_gstring): Use them and AREF to access the vector before
21738 we know it's really a gstring.
21739 (Ffont_shape_text): Fix typo.
46e722a9 21740 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
aac0c6e3
MR
21741
21742 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
21743 Declare.
21744
21745 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
21746
217472008-02-05 Jason Rumney <jasonr@gnu.org>
21748
21749 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
21750 Set smallest_font_height and smallest_char_width in display info.
21751
217522008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
21753
21754 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
21755
217562008-02-05 Miles Bader <miles@gnu.org>
21757
21758 * xfaces.c (get_lface_attributes, merge_named_face)
21759 (lookup_named_face, lookup_derived_face, realize_named_face):
21760 Revert 2008-02-01 change by cyd@stupidchicken.com.
21761
217622008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
21763
21764 * fontset.c (Ffontset_info): Handle the case of inhibitting the
21765 fallback fonts.
21766 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
21767
217682008-02-04 Jason Rumney <jasonr@gnu.org>
21769
21770 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
21771 set full_name.
21772 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
21773
217742008-02-03 Jason Rumney <jasonr@gnu.org>
21775
21776 * makefile.w32-in (OBJ1): Include font.o here.
21777 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
21778
217792008-02-02 Jason Rumney <jasonr@gnu.org>
21780
21781 * makefile.w32-in (temacs): Bump EMHEAP to 21.
21782
217832008-02-01 Jason Rumney <jasonr@gnu.org>
21784
21785 * s/cygwin.h: Define VIRT_ADDR_VARIES.
21786
21787 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
21788
217892008-02-01 Andreas Schwab <schwab@suse.de>
21790
21791 * Makefile.in (shortlisp, lisp): Update for rename of
21792 ../lisp/language/myanmar.el.
21793
217942008-02-01 Chong Yidong <cyd@stupidchicken.com>
21795
21796 * xfaces.c (get_lface_attributes): Delete function.
21797 (merge_named_face, lookup_named_face, lookup_derived_face)
21798 (realize_named_face): Call lface_from_face_name directly, and use
21799 the fact that merge_face_vectors does not alter its FROM argument.
21800
218012008-02-01 Jason Rumney <jasonr@gnu.org>
21802
21803 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
21804 input in the default locale. Handle non-Unicode multibyte input.
21805
218062008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21807
21808 * fontset.c (reorder_font_vector): Exclude nil elements from the
21809 font group. Don't try multiple fonts.
21810 (fontset_font): Adjust for the above change.
21811 (Finternal_char_font): Return nil if the found font doesn't
21812 contain the character ch.
21813
21814 * Makefile.in (lisp, shortlisp): Add cham.el.
21815
218162008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21817
21818 * font.h (FONTP): Make it return 1 also for a font-object.
21819
21820 * .gdbinit (xfontset): New function.
21821
21822 * font.c (font_find_for_lface): Check if the character C is
21823 supported or not only for the first font.
21824
21825 * fontset.c (reorder_font_vector): Fix typo.
21826 (fontset_find_font): Don't add a font-spec specifying a script.
21827 Use 0 (not Qt) for the indication of empty font-group. Change the
21828 format of RFONT-DEF. Return Qt if no font in the font-group
21829 support the character.
21830 (fontset_font): Adjust for the above change. If no font was
21831 found the character, remember that.
21832 (face_for_char): Adjust for the change of RFONT-DEF.
21833 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
21834 no font for the target.
21835 (Finternal_char_font): Adjust for the change of RFONT-DEF.
21836
218372008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21838
21839 * font.c (font_load_for_face): Handle the case that the font in
21840 face->lface is a string.
21841
218422008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21843
21844 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
21845
218462008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21847
21848 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
21849 Fix previous change. If the frame is not on a window system,
21850 signal an error.
21851
218522008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21853
bba3e508
SM
21854 * coding.c (decode_coding_object, encode_coding_object):
21855 Adjust marker positions after conversion.
aac0c6e3
MR
21856
21857 * lisp.h (struct Lisp_Marker): New member need_adjustment.
21858
218592008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21860
21861 * font.c (font_find_for_lface): Fix the handling of the return
21862 value of font_has_char.
21863 (Ffont_shape_text): Fix previous change.
21864
21865 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
21866 (fontset_ref_and_range): Delete it.
21867 (fontset_find_font): Call char_table_ref_and_range instead of
21868 FONTSET_REF_AND_RANGE.
21869 (make_fontset): Don't setup font groups of Latin here.
21870 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
21871 (new_fontset_from_font): Make the specified font the default for
21872 all Latin characters.
21873
218742008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21875
21876 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
21877 is on a window system before accessing the fontset of the frame.
21878
218792008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21880
21881 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
21882
21883 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
21884 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
21885
21886 * font.c (Ffont_shape_text): If the font driver doesn't have a
21887 shaper function, make zero-width glyphs to have at least one-pixel
21888 width. Fix setting of `to' field of glyphs.
21889
218902008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21891
21892 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
21893 glyphs.
21894
21895 * font.h (struct font_driver): Improve docstring of member `shape'.
21896
218972008-02-01 Kenichi Handa <handa@m17n.org>
21898
21899 * composite.c (syms_of_composite): Fix docstring of
21900 auto-composition-function.
21901
21902 * font.h (LGLYPH_SIZE): New macro.
21903
21904 * font.c (Ffont_fill_gstring): Stop filling when a character not
21905 supported by the font is found.
21906 (Ffont_shape_text): When a shape callback function returns nil,
21907 try at most two more times with larger gstring.
21908 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
21909
21910 * xdisp.c (handle_auto_composed_prop): Change the argument to
21911 auto-composition-function.
21912
21913 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
21914 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
21915 Lispy glyph and store it in the lgstring.
21916
21917 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
21918
21919 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
21920
219212008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21922
21923 * font.c (Ffont_shape_text): Avoid unnecessary composition.
21924
21925 * fontset.c (Vfont_encoding_charset_alist): New variable.
21926 (syms_of_fontset): DEFVAR it.
21927 (reorder_font_vector, fontset_find_font): Optimize for the case of
21928 no need of reordering.
21929 (face_for_char): Map the charset property by
21930 Vfont_encoding_charset_alist.
21931
219322008-02-01 Jason Rumney <jasonr@gnu.org>
21933
21934 * w32font.c (logfonts_match): Don't check adstyle here.
21935 (font_matches_spec): Check here against physical font instead.
21936 (add_font_entity_to_list): Avoid some substitutions.
21937
21938 * font.c (font_parse_fcname): Default weight and slant to normal.
21939 (font_score): Prefer normal fonts if weight or slant unspecified.
21940 (font_score) [WINDOWSNT]: Scale weight difference down to closer
21941 match freetype scores.
21942
219432008-02-01 Jason Rumney <jasonr@gnu.org>
21944
21945 * w32font.c (w32font_text_extents): Don't use the frame stored in the
21946 font, as it may have been deleted.
21947 (w32_enumfont_pattern_entity): Map generic family to adstyle using
21948 most common hyphenless variation.
21949 (logfonts_match): Check generic family.
21950 (font_matches_spec): Don't check generic family here.
21951 (fill_in_logfont): Set generic family based on adstyle.
21952
21953 * w32font.h (w32font_get_cache): Update declaration.
21954
219552008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21956
21957 * ftfont.c (ftfont_get_cache): Adjust the argument type.
21958
21959 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
21960 If none of the new drivers are available, call font_update_drivers
21961 with the old drivers.
21962
21963 * w32font.c (w32font_get_cache): Adjust the argument type.
21964
21965 * xfont.c (xfont_get_cache): Adjust the argument type.
21966
21967 * font.h (struct font_driver): Change argument type of get_cache.
21968
21969 * xftfont.c (xftfont_start_for_frame): Delete prototype.
21970
21971 * font.c (Ffont_get): Fix arguments to Fassoc.
21972 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
21973 (font_clear_cache): New function.
21974 (font_list_entities, font_matching_entity): Use font_get_cache.
21975 (font_update_drivers): Call font_clear_cache when finishing a driver.
21976
21977 * fontset.c (fontset_find_font): Fix previous change.
21978
219792008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21980
21981 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
21982 dpyinfo->font_table.
21983 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
21984 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
21985
21986 * font.c (font_at): Handle the case that the arg C is negative.
21987 Handle the unibyte case.
21988 (Ffont_at): Call font_at with the arg C -1.
21989
21990 * xdisp.c (handle_auto_composed_prop): Don't get a character at
21991 the position here, and call font_at with the arg C -1.
21992 Don't check the range of the existing composition at the point.
21993
219942008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
21995
21996 * fontset.c (fontset_add): New args charset_id and family.
21997 Change caller.
21998 (load_font_get_repertory, fontset_find_font): Assume that
21999 font_spec is always a font-spec object.
22000 (Fset_fontset_font): Always store a font-spec object in a fontset.
22001
22002 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
22003 instead of get_property_and_range.
22004
220052008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22006
22007 * xftfont.c (struct xftfont_info): Delete the member ft_face.
22008 (xftfont_open): Don't keep locking face.
22009 (xftfont_close): Don't unlock face.
22010 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
22011
22012 * fontset.c (fontset_find_font): Don't prefer a font of
22013 supplementary charset.
22014
220152008-02-01 Kenichi Handa <handa@m17n.org>
22016
22017 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
22018 script, langsys_tag to langsys, new member script.
22019 (OTF_TAG_STR): Terminate by '\0'.
867d4bb3 22020 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
aac0c6e3
MR
22021 listing to the script specified in that property. Fix arg to
22022 OTF_check_features.
22023
220242008-02-01 Jason Rumney <jasonr@gnu.org>
22025
22026 * w32font.h: New file.
22027
22028 * w32font.c: Include it.
22029 (struct w32font_info): Add owning_frame field. Move to w32font.h.
22030 (w32font_open): Set owning_frame.
22031 (w32font_text_extents): Use owning_frame.
22032 (struct font_callback_data): Add opentype_only field.
22033 (add_font_entity_to_list): Use it to filter fonts.
22034 Don't check against full name.
22035 (w32font_list_internal): New function.
22036 (w32font_list): Use it.
22037 (w32font_match_internal): New function.
22038 (w32font_match): Use it.
22039 (w32font_open_internal): New function.
22040 (w32font_open): Use it.
22041 (w32font_get_cache, w32font_close, w32font_has_char)
22042 (w32font_encode_char, w32font_text_extents, w32font_draw):
22043 Make non-static.
22044
22045 * makefile.w32-in (w32font.o): Depend on w32font.h.
22046
220472008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22048
22049 * charset.c (Fdefine_charset_internal): Record a supplementary
22050 charset at the tail of Vcharset_order_list.
22051
22052 * font.c (Ffont_shape_text): Fix the return value.
22053
22054 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
22055
22056 * xdisp.c (handle_auto_composed_prop): Fix previous change.
22057
220582008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22059
22060 * ftfont.c (struct OpenTypeSpec): New struct.
22061 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
22062 (ftfont_get_open_type_spec): New function.
22063 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
22064
22065 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
22066
220672008-02-01 Jason Rumney <jasonr@gnu.org>
22068
22069 * w32font.c (add_font_entity_to_list): Compare only the beginning
22070 of full name.
22071
220722008-02-01 Kenichi Handa <handa@m17n.org>
22073
22074 * xdisp.c (handle_auto_composed_prop): Simplify the code.
22075 Never return HANDLED_RECOMPUTE_PROPS.
22076
220772008-02-01 Kenichi Handa <handa@m17n.org>
22078
22079 * font.c (font_gstring_produce): Delete it.
22080
22081 * composite.h (COMPOSITION_METHOD):
22082 Handle COMPOSITION_WITH_GLYPH_STRING.
22083
220842008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22085
22086 * xfont.c (Qx): Delete.
22087 (syms_of_xfont): Don't initialize Qx.
22088
22089 * composite.h (enum composition_method):
22090 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
22091
220922008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22093
22094 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
22095 (choose_face_font): Accept new form of font-spec.
22096
22097 * frame.h (font_driver_list): Declare it unconditionally.
22098 (struct frame): Define members font_driver_list and font_data_list
22099 unconditionally.
22100
22101 * fontset.c: Include "font.h" unconditionally.
22102 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
22103 (Fset_fontset_font): Accept a font-spec object.
22104
22105 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
22106 PIXEL_SIZE part a wild card.
22107
22108 * dispextern.h (struct glyph_string): Define members clip and
22109 num_clips unconditionally.
22110 (struct face): Define members font_info and extra unconditionally.
22111
22112 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
22113 ftfont_info only when HAVE_LIBOTF is defined.
22114
221152008-02-01 Andreas Schwab <schwab@suse.de>
22116
22117 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
22118 and end.
22119
221202008-02-01 Jason Rumney <jasonr@gnu.org>
22121
22122 * w32font.c (w32font_driver): Add new fields.
22123
221242008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22125
22126 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
22127 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
22128 (LIBES): Add @M17N_FLT_CFLAGS@.
22129
22130 * composite.c (compose_text): Don't treat the new style
22131 composition specially.
22132
22133 * emacs.c (main): Call syms_of_font unconditionally.
22134
22135 * font.h (FONT_ENTITY_NOT_LOADABLE)
22136 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
22137 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
22138 (struct font_driver): New member shape.
22139 (font_registry_charsets): Extern it.
22140 (font_find_for_lface, font_prepare_composition): Adjust prototype.
22141 (font_otf_capability, font_drive_otf): Delete their externs.
22142
22143 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
22144 (font_charset_alist, font_registry_charsets): Move from xfont.c
22145 and rename.
22146 (font_prop_validate_otf): New function.
22147 (font_property_table): Register it for QCotf.
22148 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
22149 (font_drive_otf): Delete.
22150 (font_prepare_composition): New arg F. Adjust for the change of
22151 lispy gstring.
22152 (font_find_for_lface): New arg C.
22153 (font_load_for_face): Adjust for the change of font_find_for_lface.
22154 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
22155 lispy gstring.
22156 (Ffont_shape_text): New function.
22157 (Fopen_font): If the font size is not given, use 12-pixel.
22158 (Ffont_at): New arg STRING.
40b1a3a9 22159 (syms_of_font): Initialize font_charset_alist.
aac0c6e3
MR
22160 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
22161 conditionally.
22162
22163 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
22164 fonts of the same font-spec. Change the format of RFONT-DEF.
22165 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
22166 Adjust for the change of RFONT-DEF.
22167 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
22168
22169 * ftfont.h: New file.
22170
22171 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
22172 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
22173 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
22174 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
22175 font_otf_capability and font_drive_otf, set ftfont_shape.
22176 (ftfont_list): Adjust for the change of :otf property value.
22177 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
22178 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
22179 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
22180 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
22181 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
22182 (otf_gstring, gstring, m17n_flt_initialized): New variables.
22183
22184 * w32term.c (x_draw_composite_glyph_string_foreground):
22185 Adjust for the change of lispy gstring.
22186
22187 * xdisp.c (handle_composition_prop): Adjust for the change of
22188 lispy gstring. Call a function for auto-composition with the
22189 third arg it->window.
22190 (fill_composite_glyph_string): Adjust for the change of lispy string.
22191 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
22192
22193 * xfaces.c (set_font_frame_param): Adjust for the change of
22194 font_find_for_lface.
22195
22196 * xfont.c (x_font_charset_alist): Move to font.c and rename.
22197 (xfont_registry_charsets): Likewise. Change caller.
22198 (syms_of_xfont): Don't handle x_font_charset_alist.
22199
22200 * xftfont.c: Include "ftfont.h".
22201 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
22202 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
22203 (xftfont_close) [HAVE_LIBOTF]: Close otf.
22204 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
22205 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
22206 Set xftfont_driver.shape to xftfont_shape.
22207
22208 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
22209 the change of lispy gstring.
22210
222112008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22212
22213 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
22214
222152008-02-01 Jason Rumney <jasonr@gnu.org>
22216
22217 * w32font.c (w32font_draw): Fill background manually.
22218
222192008-02-01 Jason Rumney <jasonr@gnu.org>
22220
22221 * font.c (Qfontp): Remove unused symbol.
22222 (QCantialias): New symbol.
22223 (syms_of_font): Define it.
22224 (font_property_table): Set a validator for QCantialias.
22225
22226 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
22227 Define if not already.
22228 (QCfamily): Share with xfaces.c.
22229 (Qstandard, Qsubpixel, Qnatural): New symbols.
22230 (syms_of_w32font): Define them. Don't define QCfamily here.
22231 (w32_antialias_type, lispy_antialias_type): New functions.
22232 (w32_enumfont_pattern_entity): New arg requested_font.
22233 Set antialias parameter if non-default was requested.
22234 (fill_in_logfont): Fill in lfQuality if :antialias specified.
22235
222362008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22237
22238 * lread.c (read1): Undo the previous change.
22239
222402008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
22241
22242 * frame.c (Fdelete_frame): Call font_update_drivers only when
22243 USE_FONT_BACKEND is defined.
22244
222452008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22246
22247 * font.h (struct font_bitmap): New member bits_per_pixel.
22248 (struct font_driver): New members start_for_frame and end_for_frame.
22249 (struct font_data_list): New struct.
22250 (font_put_frame_data, font_get_frame_data): Extern them.
22251
22252 * frame.h (struct frame): New member font_data_list.
22253
22254 * font.c (font_update_drivers): Call driver->start_for_frame and
22255 driver->end_for_frame at proper timings.
22256 (font_put_frame_data, font_get_frame_data): New functions.
22257 (Ffont_spec): Add usage in the docstring.
22258
22259 * frame.c (make_frame): Initialize f->font_data_list to NULL.
22260 (Fdelete_frame): Call font_update_drivers.
22261
22262 * xftfont.c (struct xftface_info): Delete the member xft_draw.
22263 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
22264 (xftfont_get_xft_draw): New function.
22265 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
22266 (xftfont_end_for_frame): New function.
22267 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
22268
22269 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
22270 Change argument. Cache GCs in the per-frame data.
22271 (struct ftxfont_frame_data): New struct.
22272 (ftxfont_draw_bitmap): New arg gc_fore and flush.
22273 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
22274 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
22275 (ftxfont_end_for_frame): New function.
22276 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
22277
22278 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
22279
222802008-02-01 Kenichi Handa <handa@m17n.org>
22281
22282 * xselect.c (Vselection_coding_system)
22283 (Vnext_selection_coding_system): Delete them.
22284 (syms_of_xselect): Don't declare selection-coding-system and
22285 next-selection-coding-system. They are declared in select.el.
22286
222872008-02-01 Jason Rumney <jasonr@gnu.org>
22288
22289 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
22290
22291 * w32fns.c: Include imm.h.
22292 (get_composition_string_fn, get_ime_context_fn): New optional
22293 system functions.
22294 (globals_of_w32fns): Load them from imm32.dll.
22295 (ignore_ime_char): New flag.
22296 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
22297 WM_IME_ENDCOMPOSITION messages.
22298
22299 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
22300 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
22301
223022008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22303
22304 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
22305 (READCHAR_REPORT_MULTIBYTE): New macro.
22306 (readchar): New 2nd arg MULTIBYTE.
22307 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
22308 Make symbol's name multibyte according to the multibyteness of the
22309 source.
22310
223112008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22312
22313 * xfaces.c (face_for_overlay_string): Call lookup_face with
22314 correct arguments (fix of synching with the trunk).
22315
223162008-02-01 Kenichi Handa <handa@m17n.org>
22317
22318 * font.c (font_prop_validate_symbol, font_prop_validate_style)
22319 (font_prop_validate_non_neg, font_prop_validate_spacing):
22320 Delete argument prop_index.
22321 (font_property_table): Change arguments to validater. Change Callers.
22322 (font_lispy_object): Delete.
22323 (font_at): Use font_find_object instead fo font_lispy_object.
22324
223252008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
22326
22327 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
22328 and file names.
22329
223302008-02-01 Jason Rumney <jasonr@gnu.org>
22331
22332 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
22333 (font_matches_spec): Remove debug output.
22334 (add_font_entity_to_list): Avoid using substituted fonts.
22335
223362008-02-01 Jason Rumney <jasonr@gnu.org>
22337
22338 * doc.c (Fsnarf_documentation):
22339 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
22340
223412008-02-01 Miles Bader <miles@gnu.org>
22342
22343 * dispextern.h (struct glyph_row): Only define "clip" field if
22344 HAVE_WINDOW_SYSTEM is defined.
22345
223462008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
22347
22348 Fix up multi-tty merge.
22349
22350 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
22351 and indentation.
22352
22353 * xfaces.c (free_realized_face, clear_face_gcs):
22354 Include font_done_for_face in the input_blocked section, just in case.
22355
22356 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
22357 (get_char_face_and_encoding): Undo last change and remove the *other*
22358 duplicate definition (i.e. keep the one that's better scoped and that
22359 includes code for the font-backend).
22360
22361 * terminal.c (create_terminal): Default keyboard_coding to
22362 `no-conversion' and terminal_coding to `undecided'.
22363
22364 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
22365
22366 * fontset.c (free_realized_fontsets): Check that the table entry does
22367 contain a fontset before trying to compare it to `base'.
22368
22369 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
22370 syms_of_charset, and syms_of_coding earlier because init_window_once
22371 now needs Vcoding_system_hash_table to be setup.
22372
22373 * coding.h (default_buffer_file_coding): Remove.
22374
22375 * coding.c (default_buffer_file_coding): Remove.
22376 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
22377 than ->symbol, and use the terminal-local coding system.
22378 (syms_of_coding): Don't setup the coding-systems that are not
22379 terminal-local.
22380 (Fdefine_coding_system_internal): Use XCAR/XCDR.
22381
22382 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
22383 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
22384
22385 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
22386 in chartab.c and were re-added here by mistake.
22387 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
22388
22389 * doc.c (Fsnarf_documentation):
22390 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
22391 src to etc.
22392
22393 * ChangeLog.10: Add mistakenly removed entry.
22394
223952008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
22396
22397 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
22398
223992008-02-01 Miles Bader <miles@gnu.org>
22400
22401 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
22402 Add extra args to FACE_FOR_CHAR.
22403
224042008-02-01 Kenichi Handa <handa@m17n.org>
22405
22406 * keymap.c (where_is_internal_1): If key is a cons, store the copy
22407 in sequence.
22408
22409 * chartab.c (map_sub_char_table, map_char_table): If the range
22410 contains just one character, call the function with that character
22411 even if the depth is not 3.
22412
224132008-02-01 Jason Rumney <jasonr@gnu.org>
22414
22415 * w32font.c (w32font_text_extents): Calculate metrics for the
22416 whole string.
22417
224182008-02-01 Jason Rumney <jasonr@gnu.org>
22419
22420 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
22421
224222008-02-01 Jason Rumney <jasonr@gnu.org>
22423
bba3e508
SM
22424 * w32term.c (x_set_glyph_string_clipping):
22425 Use get_glyph_string_clip_rects.
aac0c6e3
MR
22426 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
22427 Adjust for the change of struct glyph_string.
22428
22429 * w32font.c (w32font_draw): Do clipping here.
22430
224312008-02-01 Kenichi Handa <handa@m17n.org>
22432
22433 * xftfont.c (xftfont_draw): Adjust for the change of struct
22434 glyph_string.
22435
bba3e508
SM
22436 * xterm.c (x_set_glyph_string_clipping):
22437 Use get_glyph_string_clip_rects.
aac0c6e3
MR
22438 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
22439 Adjust for the change of struct glyph_string.
22440
22441 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
22442 the resulting clip(s}.
22443 (expose_overlaps): Add arg r. Change callers. Set it to
22444 row->clip temporarily.
22445 (expose_window): Redraw rows overlapping the exposed area.
22446
22447 * dispextern.h (struct glyph_row): New member clip.
22448 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
22449 clip_height, new member clip, and num_clips.
22450
224512008-02-01 Kenichi Handa <handa@m17n.org>
22452
22453 * data.c (Fchar_or_string_p): Fix docstring.
22454
224552008-02-01 Kenichi Handa <handa@m17n.org>
22456
22457 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
22458 create a temporary XftDraw object.
22459
224602008-02-01 Kenichi Handa <handa@m17n.org>
22461
22462 * font.c (Ffontp): Fix docstring.
22463
22464 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
22465 strong evidence of ISO-2022.
22466
224672008-02-01 Kenichi Handa <handa@m17n.org>
22468
22469 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
22470 SYNTAX_ENTRY_FOLLOW_PARENT.
22471
224722008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
22473
22474 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
22475 its type.
22476 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
22477 Update to the new type of weak_hash_tables and next_weak.
22478
22479 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
22480 a plain C pointer to Lisp_Hash_Table.
22481
22482 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
22483 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
22484 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
22485 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
22486 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
22487 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
22488 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
22489 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
22490 (GC_EQ): Remove since they've been identical to their non-GC_
22491 alter-egos ever since the markbit was eradicated.
22492
22493 * alloc.c:
22494 * buffer.c:
22495 * buffer.h:
22496 * data.c:
22497 * fileio.c:
22498 * filelock.c:
22499 * fns.c:
22500 * frame.h:
22501 * lisp.h:
22502 * macterm.c:
22503 * print.c:
22504 * process.c:
22505 * w32fns.c:
22506 * w32menu.c:
22507 * w32term.c:
22508 * xfns.c:
22509 * xmenu.c:
22510 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
22511
225122008-02-01 Kenichi Handa <handa@m17n.org>
22513
22514 * chartab.c (map_sub_char_table): Make it work for the top-level
22515 char-table. Fix handling of parent char-table.
22516 (map_char_table): Adjust for the above change.
22517
225182008-02-01 Jason Rumney <jasonr@gnu.org>
22519
22520 * w32font.c (Qgdi): Rename from Qw32.
22521
225222008-02-01 Jason Rumney <jasonr@gnu.org>
22523
22524 * w32bdf.c (get_quoted_string): Make function static.
22525
225262008-02-01 Kenichi Handa <handa@m17n.org>
22527
22528 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
22529 bigger ascent and descent than those of the font, use them as
22530 font's ascent and descent.
22531
225322008-02-01 Kenichi Handa <handa@m17n.org>
22533
22534 * Makefile.in (${lispsource}international/charprop.el): Move this
22535 target within "#ifdef HAVE_UNIDATA" and "#endif".
22536
225372008-02-01 Kenichi Handa <handa@m17n.org>
22538
22539 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
22540 (shortlisp): Add ../lisp/language/tai-viet.el.
22541
225422008-02-01 Ulrich Mueller <ulm@gentoo.org>
22543
22544 * Makefile.in (${lispsource}international/charprop.el): Depend on
22545 temacs${EXEEXT}.
22546
225472008-02-01 Jason Rumney <jasonr@gnu.org>
22548
22549 * w32font.c (w32font_close): Delete the GDI font object.
22550
22551 * w32menu.c: Include character.h.
22552
22553 * w32proc.c: Likewise.
22554
22555 * w32select.c: Likewise.
22556
22557 * makefile.w32-in (w32proc.o): Depend on character.h.
22558
225592008-02-01 Jason Rumney <jasonr@gnu.org>
22560
22561 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
22562
22563 * w32menu.c (syms_of_w32menu): Likewise.
22564
22565 * w32proc.c (syms_of_ntproc): Likewise.
22566
22567 * w32select.c (syms_of_w32select): Likewise.
22568
22569 * w32term.c (syms_of_w32term): Likewise.
22570
225712008-02-01 Jason Rumney <jasonr@gnu.org>
22572
22573 * w32font.c (w32font_draw): Delete brush after using it.
22574
225752008-02-01 Jason Rumney <jasonr@gnu.org>
22576
22577 * w32font.c (w32font_open): Don't set font_idx.
22578 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
22579 to font settings.
22580 (w32font_draw): Fill background explicitly.
22581
225822008-02-01 Jason Rumney <jasonr@gnu.org>
22583
22584 * w32term.c (w32_initialize): Don't call w32font_initialize.
22585
22586 * w32font.c (w32font_info): Remove subranges.
22587 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
22588 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
22589 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
22590 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
22591 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
22592 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
22593 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
22594 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
22595 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
22596 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
22597 New symbols.
22598 (font_callback_data): New struct.
22599 (w32font_list, w32font_match): Use it.
22600 (w32font_open): Don't populate subranges.
22601 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
22602 (w32font_encode_char): Always return unicode code-point as-is.
22603 (w32font_text_extents): Supply a transformation matrix to
22604 GetGlyphOutline. Never look up by glyph index. Avoid looping
22605 twice. Use unicode version of GetTexExtentPoint32 instead of
22606 glyph index version.
22607 (set_fonts_frame): Remove.
22608 (w32_enumfont_pattern_entity): Add frame parameter, use it to
22609 set frame parameter. Use backward compatible fake foundries.
22610 Save generic family in extra slot under QCfamily. Make width slot
22611 constant. Save QCspacing value. Save list of scripts instead of
22612 binary subranges.
22613 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
bba3e508
SM
22614 (add_font_entity_to_list): Use font_callback_data struct.
22615 Filter unwanted fonts.
aac0c6e3
MR
22616 (add_one_font_entity_to_list): Use font_callback_data struct.
22617 (w32_registry): Default to iso10646_1.
22618 (fill_in_logfont): Use dpi from extra slot. Don't bother with
22619 string font registries. Don't fill in font name if it is a generic
22620 family name, fill family instead. Use spacing, family and script
22621 extra info to fill pitch, family and charset fields.
22622 (list_all_matching_fonts): Use font_callback_data struct.
22623 (unicode_range_for_char): Remove.
22624 (font_supported_scripts): New function.
22625 (w32font_initialize): Remove.
22626 (syms_of_w32font): Update which symbols are defined.
22627
226282008-02-01 Jason Rumney <jasonr@gnu.org>
22629
22630 * font.c (font_pixel_size): Reverse assq_no_quit args.
22631
22632 * w32term.h (FONT_WIDTH): Report max width, not average.
22633 (FONT_MAX_WIDTH): Remove.
22634 (FONT_AVG_WIDTH): New macro.
22635
22636 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
22637 redefinition of FONT_WIDTH.
22638
22639 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
22640 (w32_cache_char_metrics): Use FONT_WIDTH.
22641
22642 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
22643
226442008-02-01 Jason Rumney <jasonr@gnu.org>
22645
22646 * w32font.c (w32font_open): Make lfHeight negative.
22647
22648 * w32fns.c (x_default_font_parameter): Use new style font name.
22649 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
22650
226512008-02-01 Jason Rumney <jasonr@gnu.org>
22652
22653 * w32font.c (QCsubranges): New symbol.
22654 (w32font_open, w32font_has_char): Get subranges from subproperty
22655 of extra.
22656 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
22657 (syms_of_w32font): Define :subranges symbol.
22658
22659 * font.c (font_put_extra): Expose externally.
22660
22661 * font.h (font_put_extra): Move declaration from font.c.
22662
22663 * font.c (Ffont_get): Use font driver to determine otf capability.
22664 (adjust_anchor): Check if driver defines anchor_point before using.
22665
22666 * w32font.c (w32font_open): Handle size, height and pixel_size better.
22667 (w32font_draw): Use options.
22668 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
22669 Fix detection of truetype fonts.
22670 (registry_to_w32_charset): Handle charsets other than iso8859-1
22671 expressed as lisp symbols.
22672 (w32_registry): Express charset as lisp symbol.
22673 (fill_in_logfont): Reverse pixel and point height logic.
22674 Don't set width here. Set quality to default.
22675
22676 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
22677 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
22678
22679 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
22680 Remove redundant loop and allocation.
22681
22682 * makefile.w32-in (font.o, w32font.o): New objects.
22683 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
22684 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
22685
22686 * xdisp.c (fill_composite_glyph_string): Make the first arg to
22687 STORE_XCHARB a valid l-value.
22688
22689 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
22690 calculations for non-Truetype fonts.
22691 (x_draw_glyph_string): Sync with xterm.c.
22692 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
22693 Remove redundant code.
22694 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
22695
22696 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
22697 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
22698
22699 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
22700 (x_to_w32_charset, w32_to_x_charset): Expose externally.
22701
22702 * w32font.c: New file for w32 font backend.
22703
227042008-02-01 Kenichi Handa <handa@m17n.org>
22705
22706 * term.c: Don't include "buffer.h" twice.
22707
227082008-02-01 Kenichi Handa <handa@m17n.org>
22709
22710 * character.c (Funibyte_string): New function.
22711 (syms_of_character): Defsubr it.
22712
227132008-02-01 Jason Rumney <jasonr@gnu.org>
22714
22715 * w32term.c [USE_FONT_BACKEND]:
22716 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
22717 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
22718 (x_draw_glyph_string, x_draw_glyph_string_foreground)
22719 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
22720 (x_free_frame_resources): Sync with xterm.c.
22721
227222008-02-01 Andreas Schwab <schwab@suse.de>
22723
22724 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
22725 char-table size.
22726
227272008-02-01 Kenichi Handa <handa@m17n.org>
22728
22729 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
22730
227312008-02-01 Kenichi Handa <handa@m17n.org>
22732
22733 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
22734 font_otf_gpos, add font_drive_otf.
22735
22736 * fontset.c (fontset_find_font): Pay attention to font size
22737 specified for a font.
22738 (reorder_font_vector): Check contents of font_def.
22739
22740 * font.c (struct otf_list): Delete it.
22741 (otf_list): Make it a lisp variable.
22742 (otf_open): Use lispy otf_list.
22743 (generate_otf_features): Rename from parse_gsub_gpos_spec.
22744 (check_otf_features): New function.
22745 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
22746 New functions.
22747 (font_drive_otf): New function merging font_otf_gsub and
22748 font_otf_gpos.
22749 (font_open_for_lface): New arg spec. Change argument order.
22750 (font_load_for_face): Adjust for the change of font_open_for_lface.
22751 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
22752 Ffont_otf_gpos.
22753 (syms_of_font): Staticpro otf_list. Delete defsubr of
22754 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
22755
22756 * xfaces.c (set_font_frame_param): Adjust for the change of
22757 font_open_for_lface.
22758
22759 * font.h (font_open_for_lface): Adjust prototype.
22760 (struct font_driver): Delete members otf_gsub and otf_gpos, add
22761 member otf_drive.
22762 (font_otf_gsub, font_otf_gpos): Delete externs.
22763 (font_drive_otf): Extern it.
22764
227652008-02-01 Kenichi Handa <handa@m17n.org>
22766
22767 * font.c (font_at): If the window W is not on a window system,
22768 return Qnil.
22769
22770 * coding.c (produce_chars, encode_coding): Don't call
22771 insert_from_gap if no characters to produce.
22772
227732008-02-01 Kenichi Handa <handa@m17n.org>
22774
22775 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
22776 Fclear_face_cache.
22777
22778 * xfaces.c (face_for_font): Check also face->font==font->font.font.
22779
227802008-02-01 Miles Bader <miles@gnu.org>
22781
22782 * emacs.c (main): Change default value of `enable_font_backend' to 1.
22783 Parse "--disable-font-backend" option.
22784 (standard_args): Add "--disable-font-backend" option.
22785
227862008-02-01 Kenichi Handa <handa@m17n.org>
22787
22788 * fontset.c (fontset_find_font): New function.
22789 (fontset_font): Use fontset_find_font.
22790 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
22791 Register the specified font for all Latin characters.
22792 (new_fontset_from_font): Register the specified font for all Latin
22793 characters.
22794 (dump_fontset): For a realized fontset, include the base fontset
22795 name in the returned vector.
22796
227972008-02-01 Kenichi Handa <handa@m17n.org>
22798
22799 * character.h (CHAR_STRING): Cast C to unsigned on calling
22800 char_string.
22801
22802 * character.c (char_string): Type of arg C changed to unsigned.
22803 Signal an error if C is an invalid character code.
22804
22805 * editfns.c (general_insert_function, Fchar_to_string):
22806 Use CHARACTERP, not INTEGERP.
22807
228082008-02-01 Kenichi Handa <handa@m17n.org>
22809
22810 * character.h (MIN_MULTIBYTE_LEADING_CODE)
22811 (MAX_MULTIBYTE_LEADING_CODE): New macros.
22812
22813 * regex.c (analyse_first): Fix for multibyte characters in "case
22814 charset:" and "case categoryspec:".
22815
228162008-02-01 Andreas Schwab <schwab@suse.de>
22817
22818 * Makefile.in (LIBES): Move standard libraries to the end.
22819
228202008-02-01 Kenichi Handa <handa@m17n.org>
22821
22822 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
22823 nonzero, don't shrink the buffer nextb.
22824
22825 * buffer.h (struct buffer_text): New member inhibit_shrinking.
22826
22827 * coding.c (coding_alloc_by_making_gap): New arg offset.
22828 (alloc_destination): Call coding_alloc_by_making_gap with the arg
22829 offset.
22830 (decode_coding_iso_2022): Update coding->safe_charsets.
22831 (decode_coding_gap): Temporarily set
22832 current_buffer->text->inhibit_shrinking to 1.
22833
228342008-02-01 Kenichi Handa <handa@m17n.org>
22835
bba3e508
SM
22836 * xterm.c (x_draw_composite_glyph_string_foreground):
22837 Fix indexing into elements of s->cmp and s->char2b.
aac0c6e3
MR
22838
228392008-02-01 Juanma Barranquero <lekktu@gmail.com>
22840
22841 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
22842
228432008-02-01 Kenichi Handa <handa@m17n.org>
22844
22845 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
22846 target_multibyte instead of multibyte.
22847 (re_match_2_internal): Call bcmp_translate with target_multibyte.
22848 (bcmp_translate): Change the argument name from multibyte to
22849 target_multibyte.
22850
228512008-02-01 Kenichi Handa <handa@m17n.org>
22852
22853 These changes are to compile a regexp into a pattern that can be
22854 used both for multibyte and unibyte targets.
22855
22856 * Makefile.in (search.o): Depend on charset.h.
22857
22858 * character.c (multibyte_char_to_unibyte_safe): New function.
22859
22860 * search.c: Include "charset.h".
22861 (compile_pattern_1): Delete argument multibyte. Don't set
22862 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
22863 (compile_pattern): Don't compare cp->buf.target_multibyte.
22864 Compare cp->buf.charset_unibyte.
22865 (compile_pattern): Set cp->buf.target_multibyte.
22866
22867 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
22868
22869 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
22870
22871 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
22872 multibyte. Change callers.
22873 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
22874 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
22875 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
22876 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
22877 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
22878 (regex_compile): Make the compiled pattern usable both for
22879 multibyte and unibyte targets.
22880 (analyse_first): Make the fastmap usable both for multibyte and
22881 unibyte targets.
22882 (TRANSLATE_VIA_MULTIBYTE): Delete.
22883 (re_match_2_internal): Pay attention to the case that the
22884 multibyteness of bufp and target may be different.
22885
228862008-02-01 Kenichi Handa <handa@m17n.org>
22887
22888 * xdisp.c (x_produce_glyphs): When a font is not found, make the
22889 empty box occupy at least one column width.
22890
228912008-02-01 Miles Bader <miles@gnu.org>
22892
22893 * Makefile.in: Remove redundant HAVE_XFT clause.
22894
228952008-02-01 Kenichi Handa <handa@m17n.org>
22896
22897 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
22898
228992008-02-01 Kenichi Handa <handa@m17n.org>
22900
22901 * fontset.c (Finternal_char_font): Fix for the case of POSITION
22902 being nil.
22903
229042008-02-01 Kenichi Handa <handa@m17n.org>
22905
22906 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
22907
229082008-02-01 Kenichi Handa <handa@m17n.org>
22909
22910 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
22911
229122008-02-01 Kenichi Handa <handa@m17n.org>
22913
22914 * search.c (simple_search): Fix previous change.
22915
229162008-02-01 Kenichi Handa <handa@m17n.org>
22917
22918 * xftfont.c (ftfont_font_format): Extern declaration.
22919
22920 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
22921
22922 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
22923 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
22924
22925 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
22926 (ftfont_font_format): Fix previous change.
22927
22928 * font.h (Ffont_xlfd_name): EXFUN it.
22929
22930 * font.c (font_parse_xlfd): Fix the array size of `f'.
22931 (register_font_driver): Use EQ to compare driver->type.
22932
22933 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
22934 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
22935 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
22936
229372008-02-01 Kenichi Handa <handa@m17n.org>
22938
22939 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
22940 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
22941
229422008-02-01 Kenichi Handa <handa@m17n.org>
22943
22944 * xfont.c (xfont_open): Set font->format.
22945
22946 * xftfont.c (xftfont_open): Set font->format.
22947
22948 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
22949 (ftfont_list): Include FC_FONTFORMAT in FcObject.
22950 (ftfont_open): Set font->format.
22951 (ftfont_font_format): New function.
22952
22953 * font.h (struct font): New member format.
22954
22955 * font.c (Qopentype): New variable.
22956 (syms_of_font): Defsym it.
22957 (Fquery_font): Change the format of the last element of the return
22958 value.
22959
229602008-02-01 Kenichi Handa <handa@m17n.org>
22961
22962 * xfns.c (xic_create_xfontset): Try the default fontset name as a
22963 last resort.
22964
229652008-02-01 Kenichi Handa <handa@m17n.org>
22966
22967 * coding.c (detect_coding_charset): Fix detection of multi-byte
22968 charset.
22969
229702008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
22971
22972 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
22973
229742008-02-01 Kenichi Handa <handa@m17n.org>
22975
22976 * xdisp.c (get_next_display_element): Set it->face_id for the
22977 first component of a composition.
22978 (x_produce_glyphs): Check if the font is changed or not for composition.
22979
229802008-02-01 Kenichi Handa <handa@m17n.org>
22981
22982 * fontset.c (Qlatin): New variable.
22983 (syms_of_fontset): Define it as a lisp symbol.
22984 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
22985
229862008-02-01 Kenichi Handa <handa@m17n.org>
22987
22988 * font.c (font_unparse_fcname): Pay attention to the case that
22989 some of font property is a null string.
22990
229912008-02-01 Kenichi Handa <handa@m17n.org>
22992
22993 * term.c: Include "composite.h".
22994 (encode_terminal_code): Output all components of composition.
22995 Check the size of encode_terminal_src.
22996 (produce_glyphs): For composition, call produce_composite_glyph.
22997 (append_composite_glyph, produce_composite_glyph): New functions.
22998
22999 * xdisp.c (x_produce_glyphs): In handling composition, if a font
23000 is not found, get font_info from the current ascii face.
23001
230022008-02-01 Kenichi Handa <handa@m17n.org>
23003
23004 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
23005 buffer-file-name to Qnil before calling insert_from_buffer.
23006
23007 * font.c (font_unparse_fcname): Pay attention to the case that
23008 foundry is a null string.
23009
230102008-02-01 Kenichi Handa <handa@m17n.org>
23011
23012 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
23013
23014 * font.c (Qunicode_sip): New variable.
23015 (syms_of_font): Declare it as a Lisp symbol.
23016
23017 * font.h (Qunicode_sip): Extern it.
23018
230192008-02-01 Kenichi Handa <handa@m17n.org>
23020
23021 * composite.c (get_composition_id): Pay attention to TAB component.
23022
23023 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
23024 TAB. Adjust for the change of s->char2b which always points to
23025 the first element of allocated memory.
23026
23027 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
23028
23029 * xdisp.c (handle_composition_prop): Set it->c to the first
23030 non-TAB component.
23031 (fill_composite_glyph_string): Change argument.
23032 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
23033 (x_produce_glyphs): Fix handling of left/right padding.
23034
230352008-02-01 Kenichi Handa <handa@m17n.org>
23036
23037 * coding.c (detect_coding_system): Fix for handling off
23038 inhibit_iso_escape_detection. Fix for the case that no coding
23039 system is defined for a specific coding category.
23040
230412008-02-01 Kenichi Handa <handa@m17n.org>
23042
23043 * font.c (font_matching_entity): Delete unused local var.
23044
23045 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
23046 opening a font.
23047
23048 * fileio.c (Finsert_file_contents): On recovering a file, assume
23049 Unix-like eol.
23050 (choose_write_coding_system): On auto-saving a file, force
23051 Unix-like eol.
23052
23053 * coding.c (setup_coding_system): Fix setting of
23054 coding->common_flags based on eol_type.
23055 (coding_inherit_eol_type): If PARENT is not nil, be sure to
23056 inherit from it.
23057
230582008-02-01 Kenichi Handa <handa@m17n.org>
23059
23060 * alloc.c (NSTATICS): Increas to 0x600.
23061
230622008-02-01 Kenichi Handa <handa@m17n.org>
23063
23064 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
23065 (ftfont_list): Don't check :name property.
23066 (ftfont_match): New function.
23067 (ftfont_pattern_entity): If the pattern doesn't contain
23068 FC_SPACING, don't assume FC_MONO.
23069
23070 * font.h (struct font_driver): New member `match'.
23071 (font_update_drivers): Adjust prototype.
23072
23073 * font.c (font_parse_fcname, font_parse_name): Don't change :name
23074 property of FONT.
bba3e508
SM
23075 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring):
23076 Define them unconditionally.
aac0c6e3
MR
23077 (font_matching_entity): New function.
23078 (font_open_by_name): Try font_matching_entity if exact match is
23079 not found.
23080 (font_update_drivers): Delete the arg FONT. Return a list of
23081 actually used backends. Don't free faces, font caches here.
23082 Don't store data in frame parameters. Don't call x_set_font.
23083 (Ffont_spec): Store :name property as is.
23084 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
23085 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
23086 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
23087 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
23088 Call font->driver->otf_gsub instead of font_otf_gsub.
23089
23090 * frame.c (x_set_font_backend): Do more works that were done in
23091 font_update_drivers before.
23092
23093 * xfont.c (xfont_match): New function.
23094 (xfont_driver): Set xfont_driver.match to xfont_match.
23095 (xfont_draw): Set font in GC if necessary.
23096
23097 * ftxfont.c (ftxfont_match): New function.
23098 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
23099
23100 * xftfont.c (xftfont_match): New function.
23101 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
23102
231032008-02-01 Kenichi Handa <handa@m17n.org>
23104
23105 * font.h (struct font): New member scalable.
23106 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
23107 (font_otf_gsub): Adjust prototype.
23108
23109 * font.c (font_otf_capability): Fix handling of the default langsys.
23110 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
23111 Check the contents of SPEC.
23112 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
23113 (check_gstring): New function.
23114 (REPLACEMENT_CHARACTER): New macro.
23115 (font_otf_gsub): New arg alternate_subst. Be sure to set all
23116 glyph codes of GSTRING.
23117 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
23118 (font_prepare_composition): Set cmp->glyph_len.
23119 (font_open_entity): Set font->scalable.
23120 (Ffont_get): Handle :otf property.
bba3e508
SM
23121 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates):
23122 New functions.
aac0c6e3
MR
23123 (Fquery_font): Use font->font.full_name.
23124 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
23125 Sfont_otf_alternates.
23126
23127 * ftfont.c (ftfont_open): Set font->font.full_name and
23128 font->font.name properly. Fix calculation of font->font.height
23129 and font->min_width.
23130
23131 * ftxfont.c (ftxfont_create_gcs): New function.
23132 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
23133 (ftxfont_draw_backgrond): Fix filling region.
23134 (ftxfont_default_fid): New function.
23135 (ftxfont_open): Set xfont->fid to the return value of
23136 ftxfont_default_fid.
23137 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
23138 (ftxfont_done_face): Free only GCs that are created by
23139 ftxfont_create_gcs.
23140 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
23141
23142 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
23143 Clip to src->width, etc (not src->clip_XXX).
23144
23145 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
23146 FontBackend frame parameter.
23147
231482008-02-01 Kenichi Handa <handa@m17n.org>
23149
23150 * font.h (struct font_driver_list): New member `on'.
23151 (Fclear_font_cache): EXFUN it.
23152 (font_update_drivers): Extern it.
23153
23154 * font.c (font_unparse_fcname): Fix typo (swidth->width).
23155 (font_list_entities): Check driver_list->on.
40b1a3a9 23156 (register_font_driver): Initialize `on' member to 0.
aac0c6e3
MR
23157 (font_update_drivers): New function.
23158 (Fclear_font_cache): Check driver_list->on.
23159
23160 * frame.h (Qfont_backend): Extern it.
23161 (x_set_font_backend): Extern it.
23162
23163 * frame.c (Qfont_backend): New variable.
23164 (frame_parms): New element for font-backend.
23165 (x_set_font_backend): New function.
23166
23167 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
23168 FontBackend frame parameter.
23169 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
23170 x_set_font_backend.
23171
23172 * xfont.c (xfont_list): Don't try listing by :name property if the
23173 name is not for XLFD.
23174
231752008-02-01 Kenichi Handa <handa@m17n.org>
23176
23177 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
23178 (LGLYPH_SET_TO): New macros.
23179 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
23180 element of G is vector or not.
23181 (font_at): Extern it.
23182
23183 * font.c: Include window.h.
23184 (font_lispy_object): New function.
23185 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
23186 end of valid glyph.
23187 (font_close_object): Fix getting (struct font *).
23188 (font_at): New function.
23189 (Ffont_get): If FONT is a font-object, get entity from it.
23190 (Ffont_make_gstring): Initialize elements of glyphs with nil.
bba3e508
SM
23191 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX.
23192 Fix range check.
aac0c6e3
MR
23193 (Ffont_at): New function.
23194 (syms_of_font): Defsubr Sfont_at.
23195
23196 * xdisp.c (it_props): Move the entry for Qauto_composed to just
23197 before the entry for Qcomposition.
23198 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
23199 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
23200 the font in gstring.
23201 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
23202 LGLYPH_FORM (g) to detect the end of valid glyph.
23203 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
23204 we are composing with gstring.
23205
23206 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
23207 Check if adjustment is vector or not.
23208
23209 * Makefile.in (font.o): Make it depends on window.h.
23210
232112008-02-01 Kenichi Handa <handa@m17n.org>
23212
23213 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
23214 adjustment is vector or not.
23215
232162008-02-01 Miles Bader <miles@gnu.org>
23217
23218 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
23219
232202008-02-01 Kenichi Handa <handa@m17n.org>
23221
23222 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
bba3e508 23223 (LGLYPH_SET_WIDTH): Adjust for the change of LGLYPH format.
aac0c6e3
MR
23224 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
23225
23226 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
23227 (DEVICE_DELTA): Fix typo.
23228 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
23229 LGLYPH format.
23230
23231 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
23232 the change of LGLYPH format.
23233
232342008-02-01 Kenichi Handa <handa@m17n.org>
23235
23236 * ftfont.c (ftfont_list): Fix typo.
23237 (ftfont_build_basic_charsets): Don't include letters with diacritics.
23238
232392008-02-01 Jan Djärv <jan.h.d@swipnet.se>
23240
23241 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
23242
23243 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
23244 xftface_info is non-NULL.
23245
232462008-02-01 Jan Djärv <jan.h.d@swipnet.se>
23247
23248 * ftfont.c (ftfont_list): Move misplaced #endif.
23249
232502008-02-01 Kenichi Handa <handa@m17n.org>
23251
23252 * ftfont.c (ftfont_list): Pay attention to the case that
23253 FC_CAPABILITY is not defined.
23254
232552008-02-01 Kenichi Handa <handa@m17n.org>
23256
23257 * xftfont.c (xftfont_open): Set charset related members to -1.
23258
23259 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
23260 QCname.
23261 (ftfont_open): Set charset related members to -1.
23262
23263 * fontset.c (Votf_script_alist): New variable.
23264 (syms_of_fontset): Initialize it.
23265 (fontset_font): Delete unused variable.
23266
23267 * fontset.h (Votf_script_alist): Extern it.
23268
23269 * font.c (font_find_for_lface): Optimize code.
23270
23271 * font.h (font_close_object, font_merge_old_spec): Extern them.
23272
232732008-02-01 Kenichi Handa <handa@m17n.org>
23274
23275 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
23276 (syms_of_font): Initialize them.
23277 (font_pixel_size): Allow float value in dpi.
23278 (font_prop_validate_type): Delete.
23279 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
23280 Change caller.
23281 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
23282 (font_prop_validate_extra): Delete.
23283 (font_prop_validate_spacing): New function.
23284 (font_property_table): Add elements for all known properties.
bba3e508
SM
23285 (get_font_prop_index): Rename from check_font_prop_name.
23286 New argument FROM. Change caller.
aac0c6e3
MR
23287 (font_prop_validate): Validate all known properties.
23288 (font_put_extra): Delete argument force. Change caller.
23289 (font_expand_wildcards): Make it static. Fix the way of shrinking
23290 the possible range.
23291 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
23292 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
23293 Change caller.
23294 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
23295 (font_parse_fcname): Delete argument merge. Fix parsing of point
23296 size. Don't validate properties values here. Change caller.
23297 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
23298 (font_open_by_name): Delete unused variable.
23299 (Ffont_spec): Likewise. Validate property values.
23300 (Ffont_match_p): New function.
23301
23302 * font.h (QCscalable): Extern it.
23303 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
23304
23305 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
23306
23307 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
23308 (xfont_list_pattern): New function.
23309 (xfont_list): Use xfont_list_pattern.
23310
233112008-02-01 Kenichi Handa <handa@m17n.org>
23312
23313 * font.h (Flist_fonts): EXFUN it.
23314
233152008-02-01 Jason Rumney <jasonr@gnu.org>
23316
23317 * w32term.c (w32_initialize): Add back smoothing_type and
23318 smoothing_enabled definitions.
23319
233202008-02-01 Kenichi Handa <handa@m17n.org>
23321
23322 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
23323 s->face->font on determining underline position.
23324
233252008-02-01 Kenichi Handa <handa@m17n.org>
23326
23327 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
23328 (font_has_char): Accept font-object too.
23329 (font_find_for_lface): Try at first with a size specified in face.
23330
233312008-02-01 Kenichi Handa <handa@m17n.org>
23332
23333 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
23334 font_open_by_name.
23335
233362008-02-01 Kenichi Handa <handa@m17n.org>
23337
23338 * font.h (QCspacing, QCdpi): Extern them.
23339 (enum font_spacing): New enum.
23340 (FONT_PIXEL_SIZE_QUANTUM): New macro.
23341
23342 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
23343 (QCspacing, QCdpi): New variables.
23344 (syms_of_font): Initialize them.
23345 (font_pixel_size): New function.
23346 (font_put_extra): New function.
23347 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
23348 in FONT_EXTRA.
23349 (font_parse_fcname): Handle enumerated values (e.g. bold).
23350 Fix handling font size. Add QCname property that contains only
23351 unknown properties.
23352 (font_score): Change argument. Change caller. Pay attention to
23353 FONT_PIXEL_SIZE_QUANTUM.
23354 (font_sort_entites, font_list_entities, font_find_for_lface)
23355 (font_open_for_lface, font_open_by_name): Fix handling of font size.
23356 (Ffont_spec): Add QCname property that contains only unknown properties.
23357
bba3e508
SM
23358 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq.
23359 Don't include weight in listing pattern, instead check weight of each
aac0c6e3
MR
23360 listed font. Don't include scalable in pattern. Pay attention to
23361 FONT_PIXEL_SIZE_QUANTUM.
23362
233632008-02-01 Kenichi Handa <handa@m17n.org>
23364
23365 * font.c (font_parse_fcname): Fix parsing of point-size.
23366 (font_unparse_fcname): Produce symbolic names for style properties.
23367 (font_list_entities): Handle float size correctly.
23368 (font_open_by_name): Prefer `normal' property values if the name
23369 doesn't specify them.
23370
23371 * fontset.c (Finternal_char_font): Use font_get_name, not
23372 Ffont_xlfd_name.
23373
23374 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
23375 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
23376 pattern. Don't force scalable.
23377
23378 * xftfont.c (xftfont_open): For generating a name, start from
23379 96-byte buffer.
23380
233812008-02-01 Jan Djärv <jan.h.d@swipnet.se>
23382
23383 * frame.h (x_new_fontset2): Fix prototype.
23384
233852008-02-01 Kenichi Handa <handa@m17n.org>
23386
23387 * font.h (struct font_driver): Delete member parse_name.
23388 (font_match_p, font_get_spec, font_parse_fcname)
23389 (font_unparse_fcname): Extern them.
23390 (font_get_name): Adjust prototype.
23391
23392 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
23393 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
bba3e508
SM
23394 (font_expand_wildcards): Fix handling ENCODING field.
23395 Avoid unnecessary checks for weight, slant, and swidth.
aac0c6e3
MR
23396 (font_parse_fcname): New function.
23397 (font_unparse_fcname): New function.
23398 (font_parse_name): New function.
23399 (font_match_p): New function.
23400 (font_get_name): Change return value to Lisp string.
23401 (font_get_spec): New function.
23402 (Qunspecified, Qignore_defface): Don't extern them.
23403 (font_find_for_lface): Assume that LFACE is fully specified.
23404 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
23405 object, use it for FACE.
23406 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
23407 driver->parse_name.
23408 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
23409
23410 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
23411 prototype.
23412
23413 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
23414 argument F. Don't call Fnew_fontset. Instead, directly call
23415 make_fontset.
23416
23417 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
23418
23419 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
23420 of x_new_fontset2.
23421
23422 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
23423 (Qsans__serif): New variables.
23424 (ftfont_generic_family_list): New variable.
23425 (syms_of_ftfont): Initialize the above variables.
23426 (ftfont_pattern_entity): Delete argument NAME.
23427 (ftfont_list_generic_family): New function.
23428 (ftfont_parse_name): Delete this function.
23429 (ftfont_list): Try generic family only when FcFontList found no font.
23430 (ftfont_list_family): Fix args to FcObjectSetBuild.
23431
23432 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
23433 object in attrs[LFACE_FONT_INDEX].
23434 (set_lface_from_font_name): Cancel all changes for font-backend.
23435 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
23436 function.
23437 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
23438 font object in QCfont attribute.
23439 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
23440 (realize_default_face) [USE_FONT_BACKEND]: Call
23441 set_lface_from_font_and_fontset.
23442
23443 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
23444 "fixed", and signal error here if no suitable font was found.
23445
23446 * xfont.c (xfont_parse_name): Delete this function.
23447
23448 * xftfont.c (xftfont_open): Change coding style of error
23449 handling. Generate fontconfig's fontname pattern.
23450
23451 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
23452 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
23453
23454 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
23455 Both args FONTSET and FONT_OBJECT must be existing ones.
23456
234572008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23458
23459 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
23460
234612008-02-01 Kenichi Handa <handa@m17n.org>
23462
23463 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
23464
23465 * font.h (struct font): Fix typo.
23466
23467 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
23468 XLFD_XXX_INDEX.
23469 (enum xlfd_field_mask): New enum.
ef1b0ba7 23470 (intern_font_field): Change argument. Change caller. If digits
aac0c6e3
MR
23471 are followed by non-digits, return a symbol.
23472 (font_expand_wildcards): New function.
23473 (font_parse_xlfd): Fix wildcard handling.
23474 (Ffont_spec): If :name is specified, reflect the info in the other
23475 properties.
23476
23477 * ftfont.c (ftfont_pattern_entity): Fix typo.
23478 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
23479 locale.
23480
234812008-02-01 Kenichi Handa <handa@m17n.org>
23482
23483 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
23484
23485 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
23486 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
23487 registry doesn't specify encoding part.
23488 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
23489 (font_open_by_name): At first try parsing the name.
23490 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
23491 as Lisp symbols.
23492
23493 * fontset.c (reorder_font_vector): Pay attention to the case that
23494 the 3rd element of font_def is nil.
23495 (fontset_font): For the default fontset, append one more fontset
23496 elements for a script-based font specification. Don't add script
23497 attribute on finding a font.
23498 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
23499 font name.
23500 (fontset_ascii_font): If a font can't be opened, return nil.
23501
23502 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
23503 (ftfont_pattern_entity): New function.
23504 (ftfont_get_cache): Assume that freetype_font_cache is already
23505 initialized.
23506 (ftfont_list): Handle the case that a file is specified in font
23507 name. Use ftfont_pattern_entity to generate entities.
23508 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
23509 (syms_of_ftfont): Initialize freetype_font_cache.
23510
23511 * xftfont.c (xftfont_open): Make the font name fontconfig's
23512 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
23513 (xftfont_close): Free font->font.name if not NULL.
23514
23515 * xfont.c (xfont_list): If script is specified for a font, return
23516 null_vector.
23517 (xfont_list_family): Declare argument type.
23518
23519 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
23520 name, set LFACE_FONT (lface) to nil.
23521
23522 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
23523 return Qnil.
23524
235252008-02-01 Kenichi Handa <handa@m17n.org>
23526
23527 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
23528 (standard_args): Add "-enable-font-backend".
23529
235302008-02-01 Kenichi Handa <handa@m17n.org>
23531
23532 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
23533 (struct xftdraw_list, xftdraw_list): Delete them.
23534 (register_xftdraw, check_xftdraw): Delete them.
23535 (xftfont_prepare_face): Don't call register_xftdraw.
23536 (xftfont_done_face): Don't call check_xftdraw.
23537 (xftfont_draw): Get background color only when with_background is
23538 nonzero.
23539
23540 * xfont.c (xfont_encode_char): Fix calculation of char2b.
23541
235422008-02-01 Kenichi Handa <handa@m17n.org>
23543
23544 These changes are for the new font handling codes.
23545
23546 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
23547 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
23548 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
23549 (FONTSRC, FONTOBJ): New variables.
23550 (obj): Add $(FONTOBJ).
23551 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
23552 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
23553 @LIBOTF_LIBS@.
23554 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
23555 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
23556
23557 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
23558
23559 * character.h (Vscript_representative_chars): Extern it.
23560
23561 * character.c (Vscript_representative_chars): New variable.
23562 (syms_of_character): Declare it as a Lisp variable.
23563
23564 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
23565 enable_font_backend is nonzero, accept the composition method
23566 COMPOSITION_WITH_GLYPH_STRING.
23567
23568 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
23569 enumeration COMPOSITION_WITH_GLYPH_STRING.
23570
23571 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
23572 members clip_x, clip_y, clip_width, and clip_height.
23573 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
23574
23575 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
23576 --enable-font-backend. Call syms_of_font.
23577
23578 * fns.c (assoc_no_quit): New function.
23579
23580 * fontset.h (FONT_INFO_FROM_FACE): New macro.
23581 (face_for_font, new_fontset_from_font)
23582 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
23583
23584 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
23585 (fontset_font, fontset_ascii, face_for_char)
23586 (make_fontset_for_ascii_face, Ffont_info)
23587 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
23588 is nonzero, use font-backend mechanism.
23589 (find_font_encoding): Make it non-static.
23590 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
23591 New functions.
23592
23593 * frame.h (struct frame): New members resx and resy.
23594 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
23595 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
23596
23597 * frame.c [USE_FONT_BACKEND]: Include "font.h".
23598 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
23599
23600 * lisp.h (assoc_no_quit): Extern it.
23601
23602 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
23603 Through out the file, use FONT_INFO_FROM_FACE instead of
23604 FONT_INFO_FROM_ID, use get_per_char_metric instead of
23605 rif->per_char_metric.
23606 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
23607 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
23608 (get_glyph_face_and_encoding, fill_composite_glyph_string)
23609 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
23610 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
23611 nonzero, use font-backend mechanism.
23612 (get_per_char_metric): New function.
23613
23614 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
23615 (set_lface_from_font_name)
23616 (set_font_frame_param, free_realized_face)
23617 (prepare_face_for_display, clear_face_gcs)
23618 (Finternal_set_font_selection_order, realize_x_face)
23619 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
23620 font-backend mechanism.
23621 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
23622 (load_face_font) [USE_FONT_BACKEND]: Abort.
23623 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
23624 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
23625
23626 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
23627 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
23628 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
bba3e508
SM
23629 nonzero, register all available font drivers.
23630 Call x_default_font_parameter for deciding a font.
aac0c6e3
MR
23631 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
23632
23633 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
23634 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
23635 (x_set_glyph_string_clipping_exactly)
23636 (x_compute_glyph_string_overhangs)
23637 (x_draw_glyph_string_foreground)
23638 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
23639 (x_free_frame_resources) [USE_FONT_BACKEND]: If
23640 enable_font_backend is nonzero, use font-backend mechanism.
23641 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
23642
236432008-02-01 Kenichi Handa <handa@m17n.org>
23644
23645 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
23646 system_eol_type.
23647 (syms_of_coding): Initialize system_eol_type.
23648
23649 * process.c (Fset_process_coding_system): Inherit system's eol
23650 format if necessary.
23651
236522008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23653
23654 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
23655
236562008-02-01 Kenichi Handa <handa@m17n.org>
23657
23658 * coding.c (decode_eol): Pay attention to buffer relocation in
23659 del_range_2.
23660 (decode_coding): Call decode_eol before restoring undo_list.
23661
236622008-02-01 Kenichi Handa <handa@m17n.org>
23663
23664 * charset.c (Fdefine_charset_internal): Fix setting of
23665 emacs_mule_bytes.
23666
236672008-02-01 Kenichi Handa <handa@m17n.org>
23668
23669 * keyboard.c (read_char): Check if C is a character or not before
23670 looking up Vkeyboard_translate_table.
23671
236722008-02-01 Kenichi Handa <handa@m17n.org>
23673
bba3e508
SM
23674 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION):
23675 Fix condition to terminate the loop.
aac0c6e3
MR
23676
236772008-02-01 Kenichi Handa <handa@m17n.org>
23678
23679 * coding.c (produce_composition): Compare charbuf[i] instead of
23680 args[i] against 0.
23681 (Fterminal_coding_system): Use EQ to compare Lisp objects.
23682
236832008-02-01 Kenichi Handa <handa@m17n.org>
23684
23685 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
23686 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
23687 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
23688 detect_coding.
23689 (emacs_mule_char): Handle old style (Emacs 20) component character
23690 of a composition.
23691 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
23692 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
23693 composition rule.
23694 (decode_coding_emacs_mule): Handle invalid bytes correctly.
23695
236962008-02-01 Kenichi Handa <handa@m17n.org>
23697
23698 * coding.c (encode_coding_ccl): Allocate destination dynamically
23699 when necessary.
23700
237012008-02-01 Kenichi Handa <handa@m17n.org>
23702
23703 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
23704 the loop. When quitted, show a proper error message.
23705
237062008-02-01 Kenichi Handa <handa@m17n.org>
23707
bba3e508
SM
23708 * xterm.c (x_set_glyph_string_clipping_exactly):
23709 Set src->clip_head and src->clip_tail temporarily instead of src->hl.
aac0c6e3
MR
23710
23711 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
23712 character sequence.
23713 (Fccl_execute_on_string): Use ASET, not XSET.
23714
237152008-02-01 Kenichi Handa <handa@m17n.org>
23716
23717 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
23718
237192008-02-01 Kenichi Handa <handa@m17n.org>
23720
23721 * coding.c (decode_coding): Fix the condition of terminating the
23722 decoding loop.
23723
237242008-02-01 Kenichi Handa <handa@m17n.org>
23725
23726 * data.c (Faset): On setting a character bigger than 255 in a
23727 unibyte string, signal an error instead of make the string multibyte.
23728
237292008-02-01 Kenichi Handa <handa@m17n.org>
23730
23731 * charset.c (map_charset_chars): Fix for ascii-compatible charset
23732 made by a mapping table.
23733
237342008-02-01 Kenichi Handa <handa@m17n.org>
23735
23736 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
23737 not.
23738 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
23739 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
23740
bba3e508
SM
23741 * xterm.c (x_draw_composite_glyph_string_foreground):
23742 Check s->face is NULL or not.
aac0c6e3
MR
23743
237442008-02-01 Kenichi Handa <handa@m17n.org>
23745
23746 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
23747 (x_draw_glyph_string): Fix drawing of right_overhang and
23748 left_overhang around/on cursor.
23749
23750 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
23751
237522008-02-01 Kenichi Handa <handa@m17n.org>
23753
23754 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
23755
237562008-02-01 Kenichi Handa <handa@m17n.org>
23757
23758 * coding.c (Fdefine_coding_system_internal)
23759 (Fdefine_coding_system_alias): Avoid a duplicated element in
23760 Vcoding_system_alist.
23761
237622008-02-01 Kenichi Handa <handa@m17n.org>
23763
23764 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
23765
23766 * coding.c (Qcoding_system_define_form): New variable.
23767 (syms_of_coding): Intern and staticpro it.
23768 (Fcoding_system_p): Check Qcoding_system_define_form.
23769 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
23770
23771 * coding.h (CODING_SYSTEM_P): If ID is not available, call
23772 Fcoding_system_p.
23773 (CHECK_CODING_SYSTEM): If ID is not available, call
23774 Fcheck_coding_system.
23775 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
23776 Try also Fcheck_coding_system.
23777
237782008-02-01 Kenichi Handa <handa@m17n.org>
23779
23780 * coding.c (code_conversion_restore): GCPRO arg.
23781
237822008-02-01 Kenichi Handa <handa@m17n.org>
23783
23784 * character.c (lisp_string_width): Check multibyteness of STRING.
23785
237862008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23787
23788 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
23789 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
23790 (decode_mac_font_name): Use decode_coding_c_string instead of
23791 decode_coding.
bba3e508
SM
23792 (x_load_font): Initialize fontp->fontset to -1.
23793 Set fontp->encoding_type.
aac0c6e3
MR
23794
237952008-02-01 Kenichi Handa <handa@m17n.org>
23796
23797 * search.c (search_buffer): Give up BM search on case-fold-search
23798 if one of a target character has a case-equivalence of different
3b59c351 23799 byte length even if that target character is an ASCII.
aac0c6e3
MR
23800 (simple_search): Fix calculation of byte length of matched text.
23801 (boyer_moore): Fix handling of case-equivalent multibyte characters.
23802
238032008-02-01 Kenichi Handa <handa@m17n.org>
23804
23805 * coding.c (decode_coding): Fix handling of invalid bytes.
23806
238072008-02-01 Kenichi Handa <handa@m17n.org>
23808
23809 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
23810 Unicode characters.
23811
238122008-02-01 Kenichi Handa <handa@m17n.org>
23813
23814 * coding.c (encode_coding_object): If a pre-write-conversion
23815 function makes a new buffer, kill it.
23816
238172008-02-01 Kenichi Handa <handa@m17n.org>
23818
23819 * coding.c (QCascii_compatible_p): New variable.
23820 (syms_of_coding): Initialize it.
23821 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
23822 calling string_char.
23823 (record_conversion_result): Add `default:' case.
23824 (coding_charset_list): Delete unused variable `coding_type'.
23825 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
23826 property in the plist of the coding system.
23827 (Fcoding_system_put): Check QCascii_compatible_p.
23828
238292008-02-01 Miles Bader <miles@gnu.org>
23830
23831 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
23832 removed calculation of frame `f', as it's now used.
23833
238342008-02-01 Kenichi Handa <handa@m17n.org>
23835
23836 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
23837 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
23838 (UNIDATA): New variable.
23839 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
bba3e508
SM
23840 (bootstrap-emacs${EXEEXT}): Depends on charprop.el.
23841 Run $(RUN_TEMACS) unconditionally.
aac0c6e3
MR
23842
238432008-02-01 Kenichi Handa <handa@m17n.org>
23844
23845 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
23846 (admindir): New variable.
23847 ($(lispsource)international/charprop.el): New target.
23848
238492008-02-01 Miles Bader <miles@gnu.org>
23850
23851 * character.c (chars-in-region): Remove obsolete function.
23852 (syms_of_character): Remove its initialization.
23853
238542008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
23855
23856 * w32select.c (validate_coding_system)
23857 (setup_windows_coding_system): New functions.
bba3e508
SM
23858 (convert_to_handle_as_coded, Fw32_get_clipboard_data):
23859 Use setup_windows_coding_system.
23860 (setup_config, Fw32_get_clipboard_data):
23861 Use validate_coding_system.
aac0c6e3
MR
23862 (Fx_selection_exists): Move call to setup_config to a place
23863 where signals are allowed.
23864
23865 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
23866 (Fcheck_coding_system): Add declarations.
23867
238682008-02-01 Kenichi Handa <handa@m17n.org>
23869
23870 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
23871
238722008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23873
23874 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
23875 string as the second argument for x_new_fontset.
23876
238772008-02-01 Kenichi Handa <handa@m17n.org>
23878
23879 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
23880 (encode_coding_object): Use safe_call instead of call2.
23881
238822008-02-01 Kenichi Handa <handa@m17n.org>
23883
23884 * fontset.c (Fset_fontset_font): Check family element of a given vector.
23885
23886 * Makefile.in (lisp): Include charprop.el.
23887
238882008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23889
23890 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
23891 Not sure if it's unnecessary.
23892
238932008-02-01 Steven Tamm <steventamm@mac.com>
23894
23895 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
23896 some possibly unnecessary fontset checking code that crashed
23897 when creating a new frame.
23898
238992008-02-01 Kenichi Handa <handa@m17n.org>
23900
23901 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
23902 lookup_face.
23903
23904 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
23905
23906 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
23907
239082008-02-01 Kenichi Handa <handa@m17n.org>
23909
23910 * coding.c: Cancel the change done in HEAD on 2008-02-01.
23911 (coding_charset_list): New function.
23912
23913 * coding.h (coding_charset_list): Extern it.
23914
239152008-02-01 Kenichi Handa <handa@m17n.org>
23916
23917 * fontset.c (Fset_fontset_font): Call find_font_encoding with
23918 concatenation of family and registry.
23919
239202008-02-01 Kenichi Handa <handa@m17n.org>
23921
23922 * character.h (BYTE8_STRING): Fix typo.
23923
23924 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
23925 string to multibyte (sync to HEAD).
23926
23927 * casefiddle.c (casify_region): Handle changes in byte-length
23928 using replace_range_2 (sync to HEAD).
23929
239302008-02-01 Andreas Schwab <schwab@suse.de>
23931
23932 * chartab.c (map_char_table): GCPRO table and arg.
23933
239342008-02-01 Kenichi Handa <handa@m17n.org>
23935
23936 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
23937 already at limit.
23938
239392008-02-01 Kenichi Handa <handa@m17n.org>
23940
23941 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
23942 instead of fast_c_string_match_ignore_case.
bba3e508
SM
23943 (find_font_encoding): Change argument to Lisp_Object.
23944 Use fast_string_match_ignore_case instead of
aac0c6e3
MR
23945 fast_c_string_match_ignore_case. Change caller.
23946
239472008-02-01 Kenichi Handa <handa@m17n.org>
23948
23949 * xdisp.c (get_next_display_element): In unibyte case, decide to
23950 display in octal form by checking a character by
23951 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
23952
23953 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
23954
23955 * character.c (unibyte_has_multibyte_table): New variable.
23956
23957 * character.h (unibyte_has_multibyte_table): Extern it.
23958 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
23959
239602008-02-01 Kenichi Handa <handa@m17n.org>
23961
23962 * coding.c (encode_coding_iso_2022): Fix handling of charset
23963 annotation.
23964
239652008-02-01 Kenichi Handa <handa@m17n.org>
23966
23967 * coding.c (setup_coding_system): If coding_system is nil, use
23968 Qundecided.
23969 (Fterminal_coding_system): Return nil if terminal coding system is
23970 `undecided'.
bba3e508
SM
23971 (syms_of_coding): Define coding-system `undecided' here.
23972 Setup terminal_coding as `undecided'.
aac0c6e3
MR
23973
239742008-02-01 Kenichi Handa <handa@m17n.org>
23975
bba3e508
SM
23976 * xdisp.c (message_dolog, set_message_1):
23977 Call unibyte_char_to_multibyte with arg type int.
aac0c6e3
MR
23978
23979 * lread.c (read1): Fix reading of a char-table.
23980
23981 * print.c (print_object): Include sub char-table in circularities
23982 detection.
23983
239842008-02-01 Kenichi Handa <handa@m17n.org>
23985
23986 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
23987 Append the found sequences in car of ARGS instead of prepending.
23988
239892008-02-01 Kenichi Handa <handa@m17n.org>
23990
23991 * fileio.c (report_file_error): Make a unibyte string from
23992 strerror (errorno).
23993 (Fsubstitute_in_file_name): Fix the arg to
23994 unibyte_char_to_multibyte. It is evaluated twice.
23995
239962008-02-01 Kenichi Handa <handa@m17n.org>
23997
23998 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
23999
240002008-02-01 Kenichi Handa <handa@m17n.org>
24001
24002 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
24003 BOM is not found.
24004 (detect_coding, detect_coding_system): Optimization for ISO-2022
24005 when no 8-bit data is found.
24006
240072008-02-01 Jason Rumney <jasonr@gnu.org>
24008
24009 * w32fns.c (x_to_w32_font): Update to use new coding struct.
24010
240112008-02-01 Kenichi Handa <handa@m17n.org>
24012
24013 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
24014 CHARS.
24015
240162008-02-01 Steven Tamm <steventamm@mac.com>
24017
24018 * macterm.c (mac_encode_char): Add charset argument and update
24019 to use encoding_type.
24020 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
24021 switch to pure fontset.
24022 (decode_mac_font_name): Temporarily remove decoding.
24023 (x_font_name_to_mac_font_name): Temporarily remove encoding.
24024 (x_load_font): Temporarily remove encoding.
24025
240262008-02-01 Kenichi Handa <handa@m17n.org>
24027
24028 * xfaces.c (Fface_font): If frame is not on a window system,
24029 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
24030 refer to face->font.
24031 (split_font_name_into_vector, build_font_name_from_vector)
24032 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
24033 when HAVE_WINDOW_SYSTEM is defined.
24034
240352008-02-01 Kenichi Handa <handa@m17n.org>
24036
24037 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
24038 (x_produce_glyphs): Fix setting of members of cmp in case
24039 cmp->glyph_len is zero.
24040
24041 * fontset.c (Fset_fontset_font): Fix docstring.
24042 (Ffontset_info): Make it backward compatible. New arg ALL.
24043
240442008-02-01 Kim F. Storm <storm@cua.dk>
24045
24046 * process.c (read_process_output): Grow decoding_buf when needed;
24047 this could cause a crash in allocate_string and compact_small_strings.
24048
240492008-02-01 Kenichi Handa <handa@m17n.org>
24050
24051 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
24052
240532008-02-01 Kenichi Handa <handa@m17n.org>
24054
24055 * coding.c (setup_coding_system): Set coding->common_flags
24056 correctly for raw-text.
24057 (consume_chars): On encoding unibyte text by raw-text, don't check
24058 multibyte form.
24059 (encode_coding): On encoding by raw-text, never use translation tables.
24060
24061 * fileio.c (e_write): Short cut for the case of no encoding.
24062
240632008-02-01 Kenichi Handa <handa@m17n.org>
24064
24065 * coding.c (detect_coding, detect_coding_system): Delete unused
24066 variables.
24067
240682008-02-01 Kenichi Handa <handa@m17n.org>
24069
24070 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
24071 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
24072
240732008-02-01 Kenichi Handa <handa@m17n.org>
24074
bba3e508
SM
24075 * coding.c (Ffind_coding_systems_region_internal):
24076 Include raw-text and no-conversion in the result.
aac0c6e3
MR
24077
240782008-02-01 Kenichi Handa <handa@m17n.org>
24079
24080 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
24081 (load_font_get_repertory): Delete unnecessary check of ENCODING of
24082 FONT_DEF.
24083 (font_def_arg, add_arg, from_arg, to_arg): New args.
24084 (set_fontset_font): Change argument.
24085 (Fset_fontset_font): Fix for the case that TARGET is a script
24086 name and charset name.
24087 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
24088
240892008-02-01 Kenichi Handa <handa@m17n.org>
24090
24091 * fontset.c (fontset_font): Rename from fontset_face. Change return
24092 value.
24093 (face_suitable_for_char_p, face_for_char): Adjust for the change
24094 of fontset_font.
24095 (make_fontset_for_ascii_face): Fix setting of the fontset element
24096 for ASCII.
24097 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
24098 to get a font name.
24099 (Ffontset_info): Adjust for the change of fontset_font.
24100
24101 * coding.c (emacs_mule_char): Check invalid code more rigidly.
24102
24103 * character.h (LEADING_CODE_LATIN_1_MIN)
24104 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
24105
241062008-02-01 Kenichi Handa <handa@m17n.org>
24107
24108 * editfns.c (check_translation): New function.
24109 (Ftranslate_region_internal): Handle M:N mapping.
24110
241112008-02-01 Kenichi Handa <handa@m17n.org>
24112
24113 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
24114
241152008-02-01 Kenichi Handa <handa@m17n.org>
24116
24117 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
24118 goto invalid_code.
24119 (decode_coding_iso_2022): Fix handling of invalid designation.
24120
24121 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
24122 after calling code_conversion_save.
24123
241242008-02-01 Kenichi Handa <handa@m17n.org>
24125
24126 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
24127
24128 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
24129
24130 * fontset.c: Include "intervals.h".
24131 (fontset_face): Fix comparing of Lisp_Objects.
bba3e508
SM
24132 (free_face_fontset, new_fontset_from_font_name):
24133 Fix Lisp_Object/int mixup.
aac0c6e3
MR
24134
24135 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
24136
24137 * coding.c: Add many prototypes for static functions.
24138 (get_translation_table): Allow max_lookup to be NULL.
24139 (decode_coding, Ffind_coding_systems_region_internal)
bba3e508
SM
24140 (Funencodable_char_position, Fcheck_coding_systems_region):
24141 Call get_translation_table with max_lookup NULL.
aac0c6e3
MR
24142
241432008-02-01 Kenichi Handa <handa@m17n.org>
24144
24145 * coding.c (get_translation_table): Declare it as Lisp_Object.
24146 (LOOKUP_TRANSLATION_TABLE): New macro.
24147 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
24148 instead of CHAR_TABLE_REF.
24149
241502008-02-01 Kenichi Handa <handa@m17n.org>
24151
24152 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
24153 annotation data format.
24154 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
24155 Change arguments FROM and TO to single argument NCHARS. Change caller.
24156 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
24157 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
24158 (decode_coding_ccl, decode_coding_charset): Pay attention to
24159 coding->charbuf_used.
24160 (get_translation): New function.
24161 (produce_chars): New arguments translation_table and last_block.
24162 Translate characters here. Return number of carryover chars.
24163 Change caller.
24164 (produce_composition): New argument pos. Change caller.
24165 Adjust for the change of annotation data format.
24166 (produce_charset, produce_annotation): Likewise.
24167 (decode_coding, encode_coding): Don't call translate_chars.
24168 (consume_chars): New arg translation_table. Change caller.
24169 (translate_chars): Delete.
24170 (syms_of_coding): Make translation-table's number of extra slots 2.
24171
241722008-02-01 Kenichi Handa <handa@m17n.org>
24173
24174 * search.c (simple_search): Fix setting this_pos_byte in backward
24175 search.
24176
24177 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
24178 byte sequence.
24179 (detect_coding_ccl): Fix setting of the variable valids.
24180
241812008-02-01 Kenichi Handa <handa@m17n.org>
24182
24183 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
24184
24185 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
24186
24187 * editfns.c (Ftranslate_region_internal): Rename from
24188 Ftranslate_region. Accept a char-table in TABLE.
24189 (syms_of_editfns): Defsubr Stranslate_region_internal.
24190
24191 * xfaces.c (set_lface_from_font_name): If a font is specified for
24192 a frame, generate a fontset from the font.
24193 (build_scalable_font_name): If the scalable font is requested for
24194 a specific size, don't change that size.
24195 (try_font_list): Try a scalable font also in the case that a
24196 pattern string is specified.
24197
241982008-02-01 Kenichi Handa <handa@m17n.org>
24199
24200 * xfaces.c (Fface_font): New optional arg CHARACTER.
24201
242022008-02-01 Kenichi Handa <handa@m17n.org>
24203
24204 * charset.h (CHARSET_OFFSET): New macro.
24205
242062008-02-01 Kenichi Handa <handa@m17n.org>
24207
24208 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
24209
24210 * fontset.c (fontset_face): Handle the case that repertory is a
24211 char-table.
24212 (find_font_encoding): Return nil for unknown encoding.
24213 (Fset_fontset_font): Ignore a font of unknown encoding.
24214
242152008-02-01 Kenichi Handa <handa@m17n.org>
24216
24217 * keymap.c (describe_vector): Handle default value of a char table.
24218
24219 * fontset.c (fontset_face): Handle fallback fonts correctly.
24220 (Ffontset_info): Return infomation about fallback fonts.
24221
242222008-02-01 Kenichi Handa <handa@m17n.org>
24223
24224 * fontset.c (FONTSET_DEFAULT): New macro.
24225 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
24226 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
24227 the case that it is nil.
24228 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
24229 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
24230
24231 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
24232 subset or superset.
24233
242342008-02-01 Kenichi Handa <handa@m17n.org>
24235
24236 * emacs.c (main): Call init_charset after syms_of_XXX.
24237
24238 * charset.c (Vcharset_map_directory): Delete.
24239 (Vcharset_map_path): New variable.
24240 (load_charset_map_from_file): Use Vcharset_map_path instead.
24241 (init_charset): Initialize Vcharset_map_path.
24242 (syms_of_charset): Delete declaration of "charset-map-directory",
24243 add declaration of "charset-map-path".
24244
242452008-02-01 Kenichi Handa <handa@m17n.org>
24246
24247 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
24248 ASCII only string.
24249
24250 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
24251
24252 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
24253 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
24254
242552008-02-01 Kenichi Handa <handa@m17n.org>
24256
24257 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
24258
24259 * coding.c (QCmnemonic, QCdefalut_char)
24260 (QCdecode_translation_table, QCencode_translation_table)
24261 (QCpost_read_conversion, QCpre_write_conversion): New variables.
24262 (get_translation_table): Return a list of translation tables if
24263 necessary.
24264 (decode_coding): Call get_translation_table with ENCODEP 0.
24265 (char_encodable_p): If translation_table is non-nil, always call
24266 translate_char.
24267 (Fdefine_coding_system_internal): Accept list of translation
24268 tables as :encode-translation-table and :decode-translation-table.
24269 (Fcoding_system_put): New function.
bba3e508
SM
24270 (syms_of_coding): Declare new symbols.
24271 Defsubr Scoding_system_put.
aac0c6e3
MR
24272 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
24273 typically JISX0212.
24274
24275 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
24276 when the charset is superset type.
24277
24278 * character.c (translate_char): Accept list of translation tables.
24279
242802008-02-01 Kenichi Handa <handa@m17n.org>
24281
24282 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
24283 (CODING_ATTR_TRANS_TBL): New macro.
24284
24285 * coding.c (get_translation_table): New function.
24286 (translate_chars): Fix the bug of skipping annotation data.
24287 (decode_coding, encode_coding): Utilize get_translation_table.
24288 (char_encodable_p, Funencodable_char_position): Translate char if
24289 necessary.
24290 (Ffind_coding_systems_region_internal)
24291 (Fcheck_coding_systems_region): Setup translation table for encode
24292 in a coding system attribute vector in advance.
24293 (Fdefine_coding_system_internal): Allow a symbol as translation
24294 table. For shift-jis type coding system, allow 4th charset.
24295
242962008-02-01 Kenichi Handa <handa@m17n.org>
24297
24298 * coding.c (decode_coding_sjis): Check the first byte rigidly.
24299
24300 * xdisp.c (get_next_display_element): Pass -1 as POS to
24301 FACE_FOR_CHAR if displaying a C-string.
24302
243032008-02-01 Kenichi Handa <handa@m17n.org>
24304
24305 * composite.c (get_composition_id): Handle xoff and yoff in a
24306 composition rule.
24307
24308 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
24309 (struct composition): New member lbearing and rbearing.
24310
24311 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
24312 (x_get_glyph_overhangs): Handle a composition glyph.
24313 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
24314
24315 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
24316 composition glyph.
24317
243182008-02-01 Kenichi Handa <handa@m17n.org>
24319
24320 * print.c: Include charset.h.
24321 (Vprint_charset_text_property): New variable.
24322 (Qdefault): Extern it.
24323 (PRINT_STRING_NON_CHARSET_FOUND)
24324 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
24325 (print_check_string_result): New variable.
24326 (print_check_string_charset_prop): New function.
24327 (print_prune_charset_plist): New variable.
24328 (print_prune_string_charset): New function.
24329 (print_object): Call print_prune_string_charset if
24330 Vprint_charset_text_property is not t.
24331 (print_interval): Print nothing if interval->plist is nil.
24332 (syms_of_print): Declare Vprint_charset_text_property as a lisp
24333 variable. Init and staticpro print_prune_charset_plist.
24334
243352008-02-01 Kenichi Handa <handa@m17n.org>
24336
24337 * fontset.c (new_fontset_from_font_name): Use the specified font
24338 for all characters in the new fontset.
24339
24340 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
24341 OBJECT args.
24342
24343 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
24344 OBJECT args for composition too.
24345
24346 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
24347 OBJECT args.
24348
243492008-02-01 Kenichi Handa <handa@m17n.org>
24350
24351 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
24352
24353 * fontset.c (reorder_font_vector): Adjust for the change of
24354 FONT_DEF format.
24355 (fontset_face): New arg id. Change caller.
24356 (face_for_char): New args pos and object.
24357 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
24358 (fs_query_fontset): Check NAME by Fassoc too.
24359 (Fset_fontset_font): Allow non-XLFD font name.
24360 (Ffontset_info): Adjust for the change of FONT_DEF format.
24361
24362 * fontset.h (face_for_char): Adjust prototype.
24363
24364 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
24365 (append_space, extend_face_to_end_of_line)
24366 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
24367 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
24368
24369 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
24370 POS and OBJECT args.
24371
24372 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
24373 POS and OBJECT args.
24374
243752008-02-01 Jason Rumney <jasonr@gnu.org>
24376
24377 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
24378 of GlobalAlloc'ed memory.
24379
243802008-02-01 Kenichi Handa <handa@m17n.org>
24381
24382 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
24383
24384 * charset.h (charset_table_used): Delete extern.
24385
24386 * charset.c (charset_table_used): Make it static.
24387 (map_charset_chars): Fix args to c_function with.
24388
24389 * chartab.c (map_sub_char_table_for_charset): Fix args to
24390 c_function with.
24391
bba3e508
SM
24392 * coding.h (enum coding_result_code):
24393 Delete CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
aac0c6e3
MR
24394
24395 * coding.c (Qinsufficient_source, Qinconsistent_eol)
24396 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
24397 (Vlast_code_conversion_error): New variables.
24398 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
24399 (ONE_MORE_BYTE): Record error if any instead of signaling an
24400 error. If non-ASCII multibyte char is found, return the negative
24401 value of the code. All callers changed to check it.
24402 (ONE_MORE_BYTE_NO_CHECK): Likewise.
24403 (record_conversion_result): New function. Change all codes setting
24404 coding->result to call this function.
24405 (detect_coding_utf_8, decode_coding_utf_8)
24406 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
24407 Don't use the local variable incomplete.
24408 (emacs_mule_char): Change the second arg to `const'.
24409 (decode_coding): Fix of flushing out unprocessed data.
24410 (make_conversion_work_buffer): Fix making of a work buffer.
24411 (decode_coding_object): Return coding->dst_object.
24412
24413 * fontset.c (set_fontset_font): Fix args.
24414
24415 * lisp.h (CHARACTERBITS): Define as 22.
24416
24417 * process.c (send_process): Be sure to set coding->src_multibyte.
24418
24419 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
24420
244212008-02-01 Kenichi Handa <handa@m17n.org>
24422
24423 * xdisp.c (handle_auto_composed_prop): Give limit to
24424 Fnext_single_char_property_change.
24425
244262008-02-01 Kenichi Handa <handa@m17n.org>
24427
24428 * composite.c (syms_of_composite): Don't make the composition hash
24429 table weak.
24430
24431 * fontset.c (Fset_fontset_font): Fix docstring.
24432
24433 * lisp.h (detect_coding_system): Adjust prototype.
24434
24435 * fileio.c (kill_workbuf_unwind): Delete this function.
24436 (Finsert_file_contents): Adjust the call of detect_coding_system.
24437 Get conversion_buffer by code_conversion_save. Use the macro
24438 CODING_MAY_REQUIRE_DECODING. After decoding, update
24439 coding_system.
24440
24441 * coding.h (make_conversion_work_buffer): Delete extern.
24442 (code_conversion_save): Extern it.
24443
24444 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
24445 (CODING_GET_INFO): Delete argument eol_type. Change callers.
24446 (decode_coding_utf_8): Don't do eol converion.
24447 (detect_coding_utf_16): Check coding->src_chars, not
24448 coding->src_bytes. Add heuristics for those that have no signature.
24449 (decode_coding_emacs_mule, decode_coding_iso_2022)
24450 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
24451 Don't do eol converion.
24452 (adjust_coding_eol_type): Return a new coding system.
24453 (detect_coding): Don't detect eol. Fix for utf-16 detection.
24454 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
24455 each change.
24456 (decode_coding): Pay attention to undo_list. Do eol conversion for
24457 all types of coding-systems (if necessary).
24458 (Vcode_conversion_work_buf_list): Delete it.
24459 (Vcode_conversion_reused_workbuf): Rename from
24460 Vcode_conversion_reused_work_buf.
24461 (Vcode_conversion_workbuf_name): New variable.
24462 (reused_workbuf_in_use): New variable.
24463 (make_conversion_work_buffer): Delete the arg DEPTH.
24464 (code_conversion_restore): Change argument to cons.
24465 (code_conversion_save): Delete the argument BUFFER. Change callers.
24466 (detect_coding_system): New argument src_chars. Change callers.
24467 Fix for utf-16 detection.
24468 (init_coding_once): Don't use ISO_carriage_return.
24469 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
24470 reused_workbuf_in_use.
24471
244722008-02-01 Kenichi Handa <handa@m17n.org>
24473
24474 * keymap.c (store_in_keymap): Pay attention to the case that idx
24475 is a cons specifying a character range.
24476
244772008-02-01 Kenichi Handa <handa@m17n.org>
24478
24479 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
24480 HANDLED_RECOMPUTE_PROPS.
24481
24482 * coding.c (Fdefine_coding_system_internal): Fix checking of
24483 ascii compatibility.
24484
244852008-02-01 Kenichi Handa <handa@m17n.org>
24486
24487 * charset.c (find_charsets_in_text): Delete unused locale variable.
24488 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
24489
24490 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
24491 Resync charset_list to Vemacs_mule_charset_list.
24492
24493 * keymap.c (store_in_keymap): Pay attention to the case that idx
24494 is a cons specifying a character range.
24495
244962008-02-01 Kenichi Handa <handa@m17n.org>
24497
24498 * composite.c (update_compositions): Bind inhibit-read-only, etc
24499 to t before calling remove-list-of-text-properties.
24500
24501 * print.c (print_object): Always print ASCII chars as is.
24502
245032008-02-01 Kenichi Handa <handa@m17n.org>
24504
24505 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
24506
24507 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
24508 is a char table.
24509
245102008-02-01 Kenichi Handa <handa@m17n.org>
24511
24512 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
24513
245142008-02-01 Kenichi Handa <handa@m17n.org>
24515
24516 * xfaces.c (set_lface_from_font_name): Fix for the case that
24517 FONTNAME is not fontset name.
24518
245192008-02-01 Kenichi Handa <handa@m17n.org>
24520
24521 * fns.c (base64_encode_1): Fix previous change.
24522
245232008-02-01 Kenichi Handa <handa@m17n.org>
24524
24525 * fontset.c (set_fontset_font): New function.
24526 (Fset_fontset_font): If a font is specified for a charset, use
24527 map_charset_chars to store the font spec in a fontset.
24528
245292008-02-01 Kenichi Handa <handa@m17n.org>
24530
24531 * fontset.c (fontset_face): Create a fallback fontset on demand.
24532 (make_fontset): Don't create a fallback fontset here.
24533 (free_face_fontset): Free a fallback fontset (if any) too.
24534 (n_auto_fontsets): Delete this variable.
24535 (auto_fontset_alist): New variable.
24536 (new_fontset_from_font_name): Check auto_fontset_alist.
24537 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
24538 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
24539 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
24540 Defsubr Sfontset_list_all.
24541
245422008-02-01 Kenichi Handa <handa@m17n.org>
24543
24544 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
24545
245462008-02-01 Kenichi Handa <handa@m17n.org>
24547
24548 * fontset.c (Fnew_fontset): Check NAME more rigidly.
24549
245502008-02-01 Kenichi Handa <handa@m17n.org>
24551
24552 * editfns.c (Fgoto_char): Fix docstring.
24553
245542008-02-01 Kenichi Handa <handa@m17n.org>
24555
24556 * insdel.c (insert_from_gap): Adjust intervals correctly.
24557
245582008-02-01 Jason Rumney <jasonr@gnu.org>
24559
24560 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
24561 (pfnGetFontUnicodeRanges): New dynamically loaded function.
24562 (w32_initialize): Try to load it.
24563 (x_get_font_repertory): Use it if available.
24564 (w32_encode_char): Add shortcut for unicode output.
24565
24566 * w32fns.c (w32_load_system_font): Default charset to -1.
24567 (x_to_w32_charset): Match all fonts for unicode.
24568 (w32_to_x_charset): New parameter matching. Don't return partial
24569 or wildcard charsets.
24570 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
24571 (w32_codepage_for_font): Return CP_UNICODE for unicode.
24572 (w32_to_x_font): Match charset to real charset.
24573 (enum_font_cb2): Always list unicode versions.
24574
24575 * makefile.w32-in (temacs): Increase EMHEAP.
24576
245772008-02-01 Jason Rumney <jasonr@gnu.org>
24578
24579 * w32term.c (w32_encode_char): New charset parameter.
24580 font_info.encoding becomes encoding_type.
24581 (x_get_font_repertory): New function. Warning: stub only!
24582 (x_new_font): Return quickly if font already set.
24583 (x_new_fontset): fontsetname parameter is Lisp_Object.
24584 Use new fs_query_fontset. Try new_fontset_from_font_name.
24585 Use fontset_name for return value.
24586
24587 * w32term.h: Declare x_get_font_repertory.
24588
24589 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
24590 place of find_charset_in_text. Use encode_coding_object in place
24591 of encode_coding.
24592 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
24593 decode_coding.
24594
24595 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
24596 of x_new_fontset.
24597 (w32_load_system_font): Initialize charset as unicode.
24598 font_info.encoding becomes encoding_type.
24599 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
24600 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
24601 (syms_of_w32fns): Set get_font_repertory_func.
24602
24603 * w32console.c: Include character.h. Use terminal_encode_buffer
24604 from term.c.
bba3e508
SM
24605 (write_glyphs): Use new version of encode_terminal_code.
24606 Use encode_coding_object in place of encode_coding.
aac0c6e3
MR
24607
24608 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
24609 encoding becomes encoding_type.
24610
24611 * term.c (terminal_encode_buffer): Make externally visible.
24612
24613 * makefile.w32-in: Add character.h dependancies.
24614 (character.o, chartab.o): New targets.
24615
246162008-02-01 Kenichi Handa <handa@m17n.org>
24617
24618 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
24619 CODING_ID_EOL_TYPE.
24620
246212008-02-01 Andreas Schwab <schwab@suse.de>
24622
24623 * coding.c (produce_chars): Revert last change.
24624
246252008-02-01 Kenichi Handa <handa@m17n.org>
24626
24627 * charset.h (charset_unicode): Extern it.
24628
24629 * charset.c (string_xstring_p): Check by (C >= 0x100).
bba3e508
SM
24630 (find_charsets_in_text): Change format of the arc CHARSETS.
24631 New arg MULTIBYTE.
aac0c6e3
MR
24632 (Ffind_charset_region, Ffind_charset_string): Adjust for the
24633 change of find_charsets_in_text.
24634 (Fsplit_char): Fix doc. Never return unknown.
24635
24636 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
24637
bba3e508
SM
24638 * coding.c (Fdefine_coding_system_alias):
24639 Update Vcoding_system_list.
aac0c6e3
MR
24640
24641 * fontset.c (load_font_get_repertory): Pay attention to the case
24642 that ENCODING of a font is specified by a char-table.
24643
24644 * xterm.c (x_get_font_repertory): Handle the case that the
24645 encoding of font is other than Unicode.
24646
246472008-02-01 Kenichi Handa <handa@m17n.org>
24648
bba3e508
SM
24649 * term.c (encode_terminal_code): Don't handle glyph-table.
24650 Check if a character is encodable by the terminal coding system.
24651 If not, produces proper number of `?'s. Update
aac0c6e3
MR
24652 terminal_encode_buffer and terminal_encode_buf_size if necessary.
24653 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
24654
246552008-02-01 Kenichi Handa <handa@m17n.org>
24656
bba3e508
SM
24657 * term.c (terminal_encode_buffer, terminal_encode_buf_size):
24658 New variables.
aac0c6e3
MR
24659 (encode_terminal_code): Change argument. Encode multiple
24660 characters at once. Store the result of encoding in
24661 terminal_encode_buffer.
24662 (write_glyphs, insert_glyphs): Adjust for the change of
24663 encode_terminal_code.
24664 (term_init): Initialize terminal_encode_buffer and
24665 terminal_encode_buf_size.
24666
24667 * coding.c (consume_chars): If coding->src_object is nil, don't
24668 check annotation.
24669
246702008-02-01 Kenichi Handa <handa@m17n.org>
24671
24672 * character.c (char_string): Use ASCII_CHAR_P instead of
24673 SINGLE_BYTE_CHAR_P.
24674
246752008-02-01 Kenichi Handa <handa@m17n.org>
24676
24677 * xdisp.c (handle_auto_composed_prop): Check if the last
24678 characters of auto-composed region is newly composed with the
24679 following characters.
24680 (handle_composition_prop): Fix checking of point being inside
24681 composition.
24682
246832008-02-01 Kenichi Handa <handa@m17n.org>
24684
24685 * fns.c (concat): Don't change multibyteness of the result by
24686 concatenating an 8-bit character.
24687
24688 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
24689 multibyteness of the result when newelt is an 8-bit character.
24690
246912008-02-01 Dave Love <fx@gnu.org>
24692
24693 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
24694 EMACS_INT.
24695
24696 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
24697
24698 * xfaces.c (face_numeric_value): Declare dim size_t.
24699 (Finternal_lisp_face_equal_p): Remove unused f.
24700
24701 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
24702 (MATRIX_ROW): Remove unused vars.
24703 (draw_glyphs, x_insert_glyphs, fast_find_position)
24704 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
24705 byte/char counts.
24706
24707 * regex.c (regex_compile): Remove unused var.
24708
24709 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
24710
24711 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
24712 (Faccessible_keymaps, where_is_internal): Remove unused vars.
24713
24714 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
24715
24716 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
24717
24718 * fileio.c (Fwrite_region): Remove unused var.
24719
24720 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
24721 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
24722
24723 * composite.c (Fremove_list_of_text_properties): Declare.
24724
24725 * coding.c (inhibit_pre_post_conversion): Remove (unused).
24726 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
24727 (coding_inherit_eol_type): Remove unused attrs.
24728 (detect_coding): Cast arg of detect_eol.
24729
24730 * charset.c (syms_of_charset): Remove unused var p.
24731 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
24732 byte/char counts.
24733
24734 * casetab.c (set_case_table): Remove unused var.
24735
bba3e508
SM
24736 * window.c (Fdisplay_buffer, Fframe_selected_window):
24737 Remove unused vars.
aac0c6e3
MR
24738
247392008-02-01 Dave Love <fx@gnu.org>
24740
24741 * xterm.c (x_bitmap_mask): Declare.
24742
247432008-02-01 Dave Love <fx@gnu.org>
24744
24745 * xterm.c (x_term_init): Fix type error.
24746
24747 * lisp.h: Add Funibyte_char_to_multibyte.
24748
24749 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
24750 (Fset_coding_system_priority): Doc fix.
24751
24752 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
24753
24754 * indent.c (check_composition): Make start and end EMACS_INT.
24755
24756 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
24757
24758 * xdisp.c (handle_composition_prop, check_point_in_composition):
24759 Make buffer positions EMACS_INT.
24760
24761 * composite.c (find_composition, run_composition_function)
24762 (update_compositions, Ffind_composition_internal): Make buffer
24763 positions EMACS_INT.
24764
bba3e508
SM
24765 * composite.h (find_composition, update_compositions):
24766 Make position args EMACS_INT.
aac0c6e3
MR
24767
24768 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
24769
24770 * intervals.c (get_property_and_range):
24771 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
24772
24773 * unexalpha.c: Don't include varargs.h.
24774
247752008-02-01 Dave Love <fx@gnu.org>
24776
24777 * coding.h (ENCODE_UTF_8): New.
24778
24779 * Makefile.in (gtkutil.o): Depend on coding.h.
24780
24781 * coding.c (Fset_coding_system_priority): Doc fix.
24782
247832008-02-01 Kenichi Handa <handa@m17n.org>
24784
24785 * fileio.c (Finsert_file_contents): Call setup_coding_system in
24786 the case of auto saving.
24787
247882008-02-01 Andreas Schwab <schwab@suse.de>
24789
bba3e508
SM
24790 * chartab.c (map_char_table, map_char_table_for_charset):
24791 Protect `range' from GC.
aac0c6e3
MR
24792
247932008-02-01 Kenichi Handa <handa@m17n.org>
24794
24795 * coding.c (decode_coding_sjis): Check bytes more rigidly.
24796
247972008-02-01 Kenichi Handa <handa@m17n.org>
24798
24799 * fileio.c (choose_write_coding_system): Return a decided coding system.
24800 (Fwrite_region): Set Vlast_coding_system_used to the return value
24801 of choose_write_coding_system.
24802
248032008-02-01 Kenichi Handa <handa@m17n.org>
24804
24805 * charset.c (Fset_charset_priority): Pay attention to duplicated
24806 arguments.
24807
24808 * coding.c (QCcategory): New variable.
24809 (syms_of_coding): Defsym it. Set all elements of
24810 Vcoding_category_table and their symbol values.
24811 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
24812 coding-category-XXX, and coding-category-list.
24813 (Fdefine_coding_system_internal): Add category in the plist.
24814
248152008-02-01 Kenichi Handa <handa@m17n.org>
24816
24817 * callproc.c (Fcall_process): Handle carryover correctly.
24818
24819 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
24820 (raw_text_coding_system): Check NILP (coding_system).
24821 (coding_inherit_eol_type): Check NILP (coding_system) and
24822 NILP (parent).
24823 (consume_chars): Fix for the case of raw-text.
24824
24825 * process.c (read_process_output): Handle carryover correctly.
24826
248272008-02-01 Dave Love <fx@gnu.org>
24828
24829 * regex.c (re_search_2): Fix last change.
24830
248312008-02-01 Kenichi Handa <handa@m17n.org>
24832
24833 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
24834 target_multibyte. Even in a unibyte case, return a converted
24835 multibyte char.
24836 (GET_CHAR_AFTER): New macro.
24837 (PATFETCH): Translate via multibyte char.
24838 (HANDLE_UNIBYTE_RANGE): Delete this macro.
24839 (SETUP_MULTIBYTE_RANGE): New macro.
24840 (regex_compile): Setup compiled code so that its multibyteness
24841 matches that of a target. Fix the handling of "[X-YZ]" using
24842 SETUP_MULTIBYTE_RANGE.
24843 (analyse_first) <charset>: For filling fastmap for all multibyte
24844 characters, don't check by BASE_LEADING_CODE_P.
24845 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
24846 the same as RE_MULTIBYTE_P (bufp) now.
24847 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
24848 (TARGET_CHAR_AND_LENGTH): Delete this macro.
24849 (TRANSLATE_VIA_MULTIBYTE): New macro.
24850 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
24851 It is the same as RE_MULTIBYTE_P (bufp) now.
24852 <exactn>: Translate via multibyte.
bba3e508
SM
24853 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH.
24854 Don't translate it.
aac0c6e3
MR
24855 <charset, charset_not>: Fetch a character by
24856 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
24857 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
24858 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
24859 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
24860 by GET_CHAR_AFTER.
24861 (bcmp_translate): Likewise.
24862
24863 * search.c (compile_pattern): Check the member target_multibyte,
24864 not the member multibyte of buf.
24865
24866 * lread.c (read1): While reading a string, set force_singlebyte
24867 and force_multibyte correctly.
24868
24869 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
24870 up of unibyte_to_multibyte_table.
24871
248722008-02-01 Kenichi Handa <handa@m17n.org>
24873
24874 * coding.c (setup_coding_system): If coding has
24875 post-read-conversion or pre-write-conversion, set
24876 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
24877 respectively.
24878 (decode_coding_gap): Run post-read-conversion if any.
24879
24880 * fileio.c (Finsert_file_contents): Even if we read into a
24881 unibyte buffer, check if we must decode the result or not.
24882
248832008-02-01 Kenichi Handa <handa@m17n.org>
24884
24885 * coding.c (make_conversion_work_buffer): Change the work buffer
24886 name to the same one as that of Emacs 21.
24887
248882008-02-01 Kenichi Handa <handa@m17n.org>
24889
24890 * coding.h (make_conversion_work_buffer): Adjust prototype.
24891 (code_conversion_restore): Don't extern it.
24892
24893 * coding.c (detected_mask): Delete unused variable.
24894 (decode_coding_iso_2022): Pay attention to the byte sequence of
24895 CTEXT extended segment, and retain those bytes as is.
24896 (decode_coding_ccl): Delete unused variable `valids'.
24897 (setup_coding_system): Delete unused variable `category'.
24898 (consume_chars): Delete unused variable `category'. Make it work
24899 for non-multibyte case.
24900 (make_conversion_work_buffer): Change argument.
24901 (saved_coding): Delete unused variable.
24902 (code_conversion_restore): Don't check saved_coding->destination.
24903 (code_conversion_save): New function.
24904 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
24905 instead of record_unwind_protect.
24906 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
24907 (detect_coding_system): Delete unused variable `mask'.
24908 (Fdefine_coding_system_internal): Delete unused variable id.
24909
24910 * fileio.c (kill_workbuf_unwind): New function.
24911 (Finsert_file_contents): On replacing, call
24912 make_conversion_work_buffer with correct args, and call
24913 record_unwind_protect with the first arg kill_workbuf_unwind.
24914
24915 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
24916
249172008-02-01 Kenichi Handa <handa@m17n.org>
24918
24919 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
24920 (fontset_add): Fix for the case that TO is less than TO1.
24921 (Ffontset_info): Don't use fallback fontset on checking the
24922 default fontset.
24923 (dump_fontset): New function for debugging.
24924
24925 * coding.c (Fdefine_coding_system_internal): Fix for the case that
24926 coding_type is Qcharset.
24927
249282008-02-01 Kenichi Handa <handa@m17n.org>
24929
24930 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
24931 (map_char_table): Don't inherit the value from the parent on
24932 initializing VAL. Adjust for the above change.
24933
249342008-02-01 Kenichi Handa <handa@m17n.org>
24935
24936 * coding.c (Qsignature, Qendian): Delete these variables.
24937 (syms_of_coding): Don't initialize them.
24938 (CATEGORY_MASK_UTF_16_AUTO): New macro.
24939 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
24940 detect_info->found.
24941 (decode_coding_utf_16): Don't detect BOM here.
24942 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
24943 is NOT utf_16_without_bom.
24944 (setup_coding_system): For a coding system of type utf-16, check
24945 if the attribute :endian is Qbig or not (not nil or not), and set
24946 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
24947 (detect_coding): If coding type is utf-16 and BOM detection is
24948 required, detect it.
24949 (Fdefine_coding_system_internal): For a coding system of type
24950 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
24951
249522008-02-01 Kenichi Handa <handa@m17n.org>
24953
24954 * coding.c (coding_set_source): Fix for the case that the current
24955 buffer is different from coding->src_object.
24956 (decode_coding_object): Don't use the conversion work buffer if
24957 DST_OBJECT is a buffer.
24958
249592008-02-01 Dave Love <fx@gnu.org>
24960
24961 * lread.c (read_emacs_mule_char) [len==2]: Index
24962 emacs_mule_charset correctly.
24963
249642008-02-01 Dave Love <fx@gnu.org>
24965
24966 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
24967 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
24968 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
24969 treated specially.)
24970 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
24971 (detected_mask): Remove Big5 bits.
24972
249732008-02-01 Kenichi Handa <handa@m17n.org>
24974
24975 The following changes are to make the font rescaling facility
24976 compatible with Emacs 21.
24977
24978 * xfaces.c (Vface_font_rescale_alist): Rename from
24979 Vface_resizing_fonts.
24980 (struct font_name): Rename member resizing_ratio to rescale_ratio.
24981 (font_rescale_ratio): Rename from font_resizing_ratio.
24982 (split_font_name): Set font->rescale_ratio.
24983 (better_font_p): Pay attention to font->rescale_ratio.
24984 (build_scalable_font_name): Likewise. Change RESX, and RESY
24985 fields.
24986 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
24987
249882008-02-01 Kenichi Handa <handa@m17n.org>
24989
24990 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
24991 (Qutf_16_le): Remove these variables.
24992 (syms_of_coding): Don't DEFSYM them.
24993 (decode_coding_utf_16): Fix handling of BOM.
24994 (encode_coding_utf_16): Fix handling of BOM.
24995
249962008-02-01 Kenichi Handa <handa@m17n.org>
24997
24998 * fileio.c (Finsert_file_contents): On replacing, before decoding
24999 the file into the work buffer, set point of the work buffer to the end.
25000
250012008-02-01 Dave Love <fx@gnu.org>
25002
25003 * coding.c (Fcheck_coding_systems_region): Fix type errors.
25004
250052008-02-01 Dave Love <fx@gnu.org>
25006
25007 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
25008 and fix C types.
25009
250102008-02-01 Kenichi Handa <handa@m17n.org>
25011
25012 * xdisp.c (SKIP_GLYPHS): New macro.
25013 (set_cursor_from_row): Pay attention to string display properties.
25014
25015 * category.c (copy_category_entry): Fix for the case that RANGE
25016 is an integer.
25017
25018 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
25019
25020 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
25021
250222008-02-01 Kenichi Handa <handa@m17n.org>
25023
25024 * charset.c (Fcharset_id_internal): New function.
25025 (syms_of_charset): Defsubr it.
25026
25027 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
25028 with the last arg charset_list acquired from coding.
25029 (Fdefine_coding_system_internal): For ccl-based coding system, fix
25030 the attribute coding_attr_ccl_valids.
25031
25032 * coding.h (enum define_coding_ccl_arg_index): Set the first
25033 member coding_arg_ccl_decoder to coding_arg_max.
25034
25035 * ccl.h (ccl_driver): Adjust prototype.
25036
25037 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
25038 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
60612c8f 25039 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
aac0c6e3
MR
25040 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
25041 last arg Qnil.
25042
250432008-02-01 Kenichi Handa <handa@m17n.org>
25044
25045 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
25046 call encode_char.
25047
25048 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
25049
250502008-02-01 Dave Love <fx@gnu.org>
25051
25052 * composite.c (syms_of_composite): Make composition_hash_table weak.
25053
250542008-02-01 Kenichi Handa <handa@m17n.org>
25055
25056 * dispextern.h (check_face_attributes, generate_ascii_font_name)
25057 (font_name_registry): Don't extern them.
25058 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
25059
25060 * fontset.h (Qfontset): Don't extern it.
25061 (new_fontset_from_font_name): Extern it.
25062
25063 * fontset.c: Give 8 extra slots to fontset objects.
25064 (Qfontset_info): New variable.
25065 (syms_of_fontset): Defsym it.
25066 (FONTSET_FALLBACK): New macro.
25067 (fontset_face): Try also the default fontset.
25068 (make_fontset): Realize a fallback fontset from the default fontset.
25069 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
25070 using split_font_name_into_vector and build_font_name_from_vector.
25071 (Fset_fontset_font): Access the elements of font_spec by enum
25072 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
25073 name by using split_font_name_into_vector.
25074 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
bba3e508
SM
25075 generate a proper font name from the fontset name.
25076 Update Vfontset_alias_alist.
aac0c6e3
MR
25077 (n_auto_fontsets): New variable.
25078 (new_fontset_from_font_name): New function.
25079 (Ffont_info): Store the information about fonts generated from the
25080 default fontset in the first extra slot of the returned char-table.
25081
25082 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
25083 (font_name_registry): Delete function.
25084 (split_font_name_into_vector): New function.
25085 (build_font_name_from_vector): New function.
25086 (font_list): The argument REGISTRY is now a list of registry names.
25087 (choose_face_font): If we are choosing an ASCII font, and ATTRS
25088 specifies an explicit font name, return the name as is. Make a
25089 list of registy names.
25090
25091 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
25092 of x_new_fontset.
25093 (Fx_create_frame): Don't call x_new_fontset here. Just use
25094 x_list_fonts to check the existence of fonts.
25095
25096 * xterm.h (x_new_fontset): Adjust prototype.
25097
25098 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
25099 string. Use new_fontset_from_font_name to create a fontset from a
25100 font name.
25101
251022008-02-01 Kenichi Handa <handa@m17n.org>
25103
25104 * syntax.c (Vfind_word_boundary_function_table): New name for
25105 Vnext_word_boundary_function_table.
25106 (find-word-boundary-function-table): New name for
25107 next-word-boundary-function-table.
25108
251092008-02-01 Dave Love <fx@gnu.org>
25110
25111 * Makefile.in: Fix some dependencies.
25112
25113 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
25114 set it to nil before returning.
25115
25116 * composite.c (update_compositions): Fix type error.
25117
25118 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
25119
251202008-02-01 Kenichi Handa <handa@m17n.org>
25121
25122 * xterm.c (x_new_font): Optimize for the case that the font is
25123 already set for the frame.
25124
251252008-02-01 Kenichi Handa <handa@m17n.org>
25126
25127 * chartab.c (char_table_ascii): Check if the char table contents
25128 is sub-char-table or not.
25129 (char_table_set, char_table_set_range): Fix argument to
25130 char_table_ascii.
25131
25132 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
25133 (detect_coding_utf_8, detect_coding_utf_16)
25134 (detect_coding_emacs_mule, detect_coding_iso_2022)
25135 (detect_coding_sjis, detect_coding_big5)
25136 (detect_coding_ccl, detect_coding_charset): Change argument MASK
25137 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
25138 sequence is valid in this coding system. Change callers.
25139 (MAX_ANNOTATION_LENGTH): New macro.
25140 (ADD_ANNOTATION_DATA): New macro.
bba3e508
SM
25141 (ADD_COMPOSITION_DATA): Change argument. Change callers.
25142 Call ADD_ANNOTATION_DATA. Change the format of annotation data.
aac0c6e3
MR
25143 (ADD_CHARSET_DATA): New macro.
25144 (emacs_mule_char): New argument ID. Change callers.
25145 (decode_coding_emacs_mule, decode_coding_iso_2022)
25146 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
25147 Produce charset annotation data in coding->charbuf.
25148 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
25149 to charset annotation data in coding->charbuf.
25150 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
25151 coding->common_flags if the coding system is iso-2022 based and
25152 uses designation.
25153 (produce_composition): Adjust for the new annotation data format.
25154 (produce_charset): New function.
25155 (produce_annotation): Handle charset annotation.
bba3e508
SM
25156 (handle_composition_annotation, handle_charset_annotation):
25157 New functions.
aac0c6e3
MR
25158 (consume_chars): Handle charset annotation. Utilize the above two
25159 functions.
25160 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
25161 buffer, get the deleted text as a string and set
25162 coding->src_object to that string.
25163 (detect_coding, detect_coding_system): Use the new struct
25164 coding_detection_info.
25165
25166 * coding.h (struct coding_detection_info): New structure.
25167 (struct coding_system): Adjust prototype of the member `detector'.
25168 (CODING_ANNOTATE_CHARSET_MASK): New macro.
25169
251702008-02-01 Kenichi Handa <handa@m17n.org>
25171
25172 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
25173
251742008-02-01 Dave Love <fx@gnu.org>
25175
25176 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
25177 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
25178 to new local and nullify apropos_accumulate before returning.
25179 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
25180
251812008-02-01 Kenichi Handa <handa@m17n.org>
25182
25183 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
25184 correctly.
e3eea1fc 25185
aac0c6e3
MR
251862008-02-01 Dave Love <fx@gnu.org>
25187
25188 * fns.c (Flanginfo): Call synchronize_system_time_locale.
25189
251902008-02-01 Kenichi Handa <handa@m17n.org>
25191
25192 The following changes are to make character composition happen
25193 automatically on displaying.
25194
25195 * Makefile.in (lisp, shortlisp): Add composite.elc.
25196
25197 * composite.h (Qauto_composed, Vauto_composition_function)
25198 (Qauto_composition_function): Extern them.
25199
25200 * composite.c (Vcomposition_function_table)
25201 (Qcomposition_function_table): Delete variables.
25202 (Qauto_composed, Vauto_composition_function)
25203 (Qauto_composition_function): New variables.
25204 (run_composition_function): Don't call
25205 compose-chars-after-function.
25206 (update_compositions): Clear `auto-composed' text property.
25207 (compose_chars_in_text): Delete this function.
25208 (syms_of_composite): Staticpro Qauto_composed and
25209 Qauto_composition_function. Declare Vauto_composition_function as
25210 a Lisp variable.
25211
25212 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
25213
25214 * xdisp.c (it_props): Add an entry for Qauto_composed.
25215 (handle_auto_composed_prop): New function.
25216
25217 * xselect.c (selection_data_to_lisp_data): Don't call
25218 compose_chars_in_text.
25219
252202008-02-01 Dave Love <fx@gnu.org>
25221
25222 * keyboard.c (read_char): Modify checking around use of
25223 Vkeyboard_translate_table.
25224
25225 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
25226 and fix C types.
25227
252282008-02-01 Kenichi Handa <handa@m17n.org>
25229
25230 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
25231 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
25232 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
25233 the case that the last byte is '\r' correctly.
25234 (decode_coding): Flush out the unprocessed data correctly.
25235 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
25236
252372008-02-01 Dave Love <fx@gnu.org>
25238
25239 * xterm.c (XTread_socket): Fix changes for defined keysyms.
25240 Add XK_ISO... case.
25241 (xaw_scroll_callback): Revert last change.
25242
252432008-02-01 Kenichi Handa <handa@m17n.org>
25244
25245 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
25246
252472008-02-01 Kenichi Handa <handa@m17n.org>
25248
25249 * xfaces.c (Vface_resizing_fonts): New variable.
25250 (struct font_name): New member `resizing_ratio'.
25251 (font_resizing_ratio): New function.
25252 (split_font_name): Set font->resizing_ratio.
25253 (better_font_p): Pay attention to font->resizing_ratio.
25254 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
25255 RESX, and RESY fields.
25256 (try_alternative_families): Try scalable fonts if
25257 Vscalable_fonts_allowed is not Qt.
25258 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
25259
252602008-02-01 Dave Love <fx@gnu.org>
25261
25262 * xterm.c (xaw_scroll_callback): Cast correctly.
25263
252642008-02-01 Dave Love <fx@gnu.org>
25265
25266 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
25267 (lispy_kana_keys): Comment out.
25268 (make_lispy_event) [XK_kana_A]: Comment out.
25269
25270 * xterm.c (xaw_scroll_callback): Cast call_data.
25271 (XTread_socket): Deal with ASCII keysyms.
25272 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
25273
252742008-02-01 Dave Love <fx@gnu.org>
25275
25276 * xterm.c (Vx_keysym_table): New.
25277 (syms_of_xterm): Initialize it.
25278 (XTread_socket): Use it.
25279 From head: Eliminate incorrect optimization that tried to avoid
25280 decoding the output of X*LookupString.
25281 (x_get_font_repertory): Delete charset declaration.
25282
252832008-02-01 Kenichi Handa <handa@m17n.org>
25284
25285 * coding.c (detect_coding_charset): If only ASCII bytes are found,
25286 return 0.
bba3e508
SM
25287 (Fdefine_coding_system_internal):
25288 Setup CODING_ATTR_ASCII_COMPAT (attrs) correctly.
aac0c6e3
MR
25289
252902008-02-01 Dave Love <fx@gnu.org>
25291
25292 * coding.c (Fcheck_coding_system): Doc fix.
25293
25294 * editfns.c (Finsert_byte): Return a proper value.
25295
252962008-02-01 Kenichi Handa <handa@m17n.org>
25297
bba3e508
SM
25298 * coding.c (decode_coding): Fix args to translate_chars.
25299 Pay attention to Vstandard_translation_table_for_decode.
aac0c6e3
MR
25300 (encode_coding): Fix args to translate_chars. Pay attention to
25301 Vstandard_translation_table_for_encode.
25302
25303 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
25304 SINGLE_BYTE_CHAR_P.
25305
25306 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
25307 not by SINGLE_BYTE_CHAR_P.
25308
25309 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
25310 SINGLE_BYTE_CHAR_P.
25311
25312 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
25313 SINGLE_BYTE_CHAR_P.
25314
25315 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
25316 by SINGLE_BYTE_CHAR_P.
25317
25318 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
25319 SINGLE_BYTE_CHAR_P.
25320
253212008-02-01 Dave Love <fx@gnu.org>
25322
25323 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
25324
253252008-02-01 Dave Love <fx@gnu.org>
25326
25327 * fns.c (Flanginfo): Fix typo.
25328
25329 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
25330
253312008-02-01 Kenichi Handa <handa@m17n.org>
25332
25333 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
25334 (detect_coding_emacs_mule, detect_coding_iso_2022)
25335 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
25336 incomplete byte sequence. Don't update *mask when correctly detected.
25337 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
25338 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
25339 (detect_coding, detect_coding_system): Adjust for the changes above.
25340
253412008-02-01 Kenichi Handa <handa@m17n.org>
25342
25343 * character.c (char_string): Rename from
25344 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
25345 (string_char): Rename from string_char.
25346
25347 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
25348 if C is greater than MAX_3_BYTE_CHAR.
bba3e508
SM
25349 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE):
25350 Call string_char instead of string_char_with_unification.
aac0c6e3
MR
25351
253522008-02-01 Dave Love <fx@gnu.org>
25353
25354 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
25355
253562008-02-01 Kenichi Handa <handa@m17n.org>
25357
25358 * keymap.c (push_key_description): Pay attention to force_multibyte.
25359
25360 * regex.c (re_search_2): Fix for the case of unibyte buffer.
25361
253622008-02-01 Dave Love <fx@gnu.org>
25363
25364 * charset.c (define_charset_internal): Rename `supprementary'.
25365
25366 * Makefile.in (lisp, shortlisp): Remove latin-N.
25367
253682008-02-01 Dave Love <fx@gnu.org>
25369
25370 * xfns.c (x_window, x_window): Use use_xim.
25371
25372 * xterm.c (use_xim): Initialize.
25373 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
25374 (x_term_init): Maybe set use_xim.
25375
25376 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
25377
253782008-02-01 Kenichi Handa <handa@m17n.org>
25379
25380 * search.c (search_buffer): Fix case-fold-search of multibyte
25381 characters.
25382 (boyer_moore): Rename the last argument to char_high_bits.
25383
253842008-02-01 Kenichi Handa <handa@m17n.org>
25385
25386 * xdisp.c (display_string): Fix for the case of zero width glyph.
25387
25388 * xfns.c (x_set_font): Change the error message of the case that
25389 x_new_fontset returns Qt.
25390
25391 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
25392 (Finternal_set_lisp_face_attribute): Use signal_error for the
25393 error of invalid fontset.
25394
25395 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
25396 fontset, return Qt.
25397
253982008-02-01 Dave Love <fx@gnu.org>
25399
25400 * unexelf.c (unexec): Make .got handling not SGI-specific.
25401
25402 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
25403
25404 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
25405
25406 * keyboard.c (read_key_sequence): Fix type error.
25407
bba3e508
SM
25408 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte):
25409 Fix type error.
aac0c6e3
MR
25410
25411 * fontset.c (fontset_add): Return Lisp_Object.
25412
254132008-02-01 Dave Love <fx@gnu.org>
25414
25415 * charset.h (charset_ordered_list_tick): Declare extern.
25416
254172008-02-01 Kenichi Handa <handa@m17n.org>
25418
25419 The following changes (and some of 2008-02-01 changes of mine) are
25420 for handling syntax, category, and case conversion for unibyte
25421 characters by converting them to multibyte on the fly. With these
25422 changes, we don't have to setup syntax and case tables for unibyte
25423 characters in each language environment.
25424
25425 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
25426 multibyte if necessary.
25427
25428 * bytecode.c (Fbyte_code): Likewise.
25429
25430 * character.h (LEADING_CODE_LATIN_1_MIN)
25431 (LEADING_CODE_LATIN_1_MAX): New macros.
25432 (unibyte_to_multibyte_table): Extern it.
25433 (unibyte_char_to_multibyte): New macro.
25434 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
25435 (CHAR_LEADING_CODE): New macro.
25436 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
25437
25438 * character.c (unibyte_to_multibyte_table): New variable.
25439 (unibyte_char_to_multibyte): Move to character.h and define as macro.
25440 (multibyte_char_to_unibyte): If C is an eight-bit character,
25441 convert it to the corresponding byte value.
25442
25443 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
25444 not 1, signals an error. Update the elements of
25445 unibyte_to_multibyte_table.
25446 (init_charset_once): Initialize unibyte_to_multibyte_table.
25447 (syms_of_charset): Define the charset `iso-8859-1'.
25448
25449 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
25450 as is without converting it to unibyte. In a unibyte buffer,
25451 convert C to multibyte before checking the syntax.
25452
25453 * lisp.h (unibyte_char_to_multibyte): Delete extern.
25454
25455 * minibuf.c (Fminibuffer_complete_word): Use the macro
25456 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
25457
25458 * regex.h (struct re_pattern_buffer): New member target_multibyte.
25459
25460 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
bba3e508
SM
25461 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte.
25462 If that is zero, convert an eight-bit char to multibyte.
aac0c6e3
MR
25463 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
25464 non-emacs case.
25465 (PATFETCH): Convert an eight-bit char to multibyte.
25466 (HANDLE_UNIBYTE_RANGE): New macro.
25467 (regex_compile): Setup the compiled pattern for multibyte chars
25468 even if the given regex string is unibyte. Use PATFETCH_RAW
25469 instead of PATFETCH in many places. To handle `charset'
25470 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
25471 only for ASCII chars.
25472 (analyse_first) <exactn>: Simplify because the compiled pattern
25473 is multibyte.
25474 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
25475 <charset>: Use CHAR_LEADING_CODE to get leading codes.
25476 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
25477 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
25478 multibyte always 1.
25479 (re_search_2): In emacs, set the locale variable multibyte to 1,
25480 otherwise to 0. New local variable target_multibyte. Check it
bba3e508
SM
25481 to decide the multibyteness of STR1 and STR2.
25482 If target_multibyte is zero, convert unibyte chars to multibyte
aac0c6e3
MR
25483 before translating and checking fastmap.
25484 (TARGET_CHAR_AND_LENGTH): New macro.
25485 (re_match_2_internal): In emacs, set the locale variable multibyte
bba3e508
SM
25486 to 1, otherwise to 0. New local variable target_multibyte.
25487 Check it to decide the multibyteness of STR1 and STR2.
25488 Use TARGET_CHAR_AND_LENGTH to fetch a character from D.
aac0c6e3
MR
25489 <charset, charset_not>: If multibyte is nonzero, check fastmap
25490 only for ASCII chars. Call bcmp_translate with
25491 target_multibyte, not with multibyte.
25492 <begline>: Declare the local variable C as `unsigned'.
25493 (bcmp_translate): Change the last arg name to target_multibyte.
25494
25495 * search.c (compile_pattern_1): Don't adjust the multibyteness of
25496 the regexp pattern and the matching target. Set cp->buf.multibyte
25497 to the multibyteness of the regexp pattern. Set
25498 cp->but.target_multibyte to the multibyteness of the matching target.
25499 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
25500 FETCH_STRING_CHAR_ADVANCE.
25501 (Freplace_match): Convert unibyte chars to multibyte.
25502
25503 * syntax.c (char_quoted, back_comment, scan_words)
25504 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
25505 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
25506 unibyte chars to multibyte.
25507 (skip_chars): Delete the arg syntaxp, and move the code for
25508 handling syntaxes to skip_syntaxes. Change callers.
25509 Fix the case that the multibyteness of STRING and the current
25510 buffer doesn't match.
25511 (skip_syntaxes): New function.
25512 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
25513 SINGLE_BYTE_CHAR_P.
25514
255152008-02-01 Kenichi Handa <handa@m17n.org>
25516
25517 * xfaces.c (QCfontset): New variable.
25518 (LFACE_FONTSET): New macro.
25519 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
25520 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
25521 (Finternal_set_lisp_face_attribute)
25522 (Finternal_get_lisp_face_attribute): Handle QCfontset.
25523 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
25524 check also LFACE_FONTSET_INDEX.
25525 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
25526 attrs[LFACE_FONT_INDEX].
25527 (syms_of_xfaces): Intern and staticpro QCfontset.
25528
25529 * dispextern.h (enum lface_attribute_index): New member
25530 LFACE_FONTSET_INDEX.
25531
25532 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
25533
255342008-02-01 Kenichi Handa <handa@m17n.org>
25535
25536 * coding.c (coding_set_destination): Fix coding->destination for
25537 the case converting a region.
25538 (encode_coding_utf_8): Encode eight-bit chars as single byte.
25539 (encode_coding_object): Fix coding->dst_pos and
25540 coding->dst_pos_byte for the case converting a region.
25541
25542 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
25543
25544 * character.h (BYTE8_STRING): New macro.
25545
25546 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
25547
255482008-02-01 Kenichi Handa <handa@m17n.org>
25549
25550 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
25551 characters by octal form.
25552
25553 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
25554
25555 * buffer.h (_fetch_multibyte_char_len): Delete extern.
25556 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
25557 _fetch_multibyte_char_len.
25558 (FETCH_CHAR_AS_MULTIBYTE): New macro.
25559
25560 * casetab.c (set_canon, set_identity, shuffle): Simplify.
25561
25562 * casefiddle.c (casify_object): Simplify. Handle the case that
25563 the case conversion change the byte length.
25564 (casify_region): Likewise.
25565
25566 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
25567
25568 * character.c (_fetch_multibyte_char_len): Delete this variable.
25569 (syms_of_character): Setup Vprintable_chars.
25570
25571 * editfns.c (Fchar_equal): Fix for the unibyte case.
25572 (Finsert_byte): New function.
25573 (syms_of_editfns): Defsubr it.
25574
25575 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
25576 of direct code 0x3ffff.
25577
25578 * search.c (Freplace_match): Fix for the unibyte case.
25579
255802008-02-01 Kenichi Handa <handa@m17n.org>
25581
25582 * lread.c (safe_to_load_p): Fix the logic.
25583
25584 * syntax.c (scan_words): Don't treat characters belonging to
25585 different scripts as constituting a word.
25586
25587 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
25588
25589 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
25590
25591 * emacs.c (main): In the case of --unibyte, instead of aborting on
25592 finding non-empty buffer, make it unibyte.
25593
255942008-02-01 Kenichi Handa <handa@m17n.org>
25595
25596 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
25597 to create a fontset.
25598
255992008-02-01 Dave Love <fx@gnu.org>
25600
25601 * character.c (Funibyte_char_to_multibyte): Doc fix.
25602
25603 * xfns.c [HAVE_STDLIB_H]: Fix last change.
25604
256052008-02-01 Kenichi Handa <handa@m17n.org>
25606
25607 * fontset.c (fontset_add): Make the type `int'.
25608 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
25609
25610 * character.c (unibyte_char_to_multibyte)
25611 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
25612 charset_unibyte, not charset_primary.
25613
25614 * charset.h (charset_unibyte): Extern it instead of charset_primary.
25615
25616 * charset.c (charset_unibyte): Rename from charset_primary.
25617 (Funibyte_charset): Rename from Fprimary_charset.
25618 (Fset_unibyte_charset): Rename from Fset_primary_charset.
25619 (syms_of_charset): Adjust for the above changes.
25620
25621 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
25622 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
25623 it->multibyte_p is zero.
25624
25625 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
25626 Delete extern.
25627
256282008-02-01 Kenichi Handa <handa@m17n.org>
25629
25630 * coding.c (Fdefine_coding_system_internal): Fix category setting
25631 for a coding system of type iso-2022.
25632
256332008-02-01 Kenichi Handa <handa@m17n.org>
25634
25635 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
25636
256372008-02-01 Kenichi Handa <handa@m17n.org>
25638
25639 * syntax.c (Vnext_word_boundary_function_table): New variable.
25640 (next-word-boundary-function-table): Declare it as a Lisp variable
25641 in syms_of_syntax.
25642 (scan_words): Call functions in Vnext_word_boundary_function_table
25643 if any.
25644
25645 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
25646
25647 * fontset.c (fs_load_font): If fontp->charset is not negative,
25648 return fontp without setting its members.
25649
256502008-02-01 Dave Love <fx@gnu.org>
25651
25652 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
25653
25654 * m/sparc.h (HAVE_ALLOCA): Delete.
25655
25656 * s/irix6-5.h: Don't include strings.h.
25657 (bcopy, bzero, bcmp): Don't undef.
25658
25659 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
25660
25661 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
25662 (TIOCSIGSEND): Don't test IRIX6.
25663 (bcopy, bzero, bcmp): Define conditionally.
25664
256652008-02-01 Kenichi Handa <handa@m17n.org>
25666
25667 * buffer.c (Qas, Qmake, Qto): New variables.
25668 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
25669 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
25670
25671 * callproc.c (Fcall_process): Don't call insert_1_both directly if
25672 we are inserting a process output into a multibyte buffer.
25673
25674 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
25675 multibyte_char_to_unibyte.
25676
25677 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
25678 by the primary charset, make it eight-bit char.
25679 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
25680
25681 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
25682 (charset_8_bit__control, charset_8_bit_graphic)
25683 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
25684 (define_charset_internal): New function.
25685 (syms_of_charset): Call define_charset_internal for pre-defined
25686 charsets.
25687
25688 * charset.h (charset_8_bit): Extern it.
25689
25690 * coding.c (make_conversion_work_buffer): Adjust for the change
25691 of Fset_buffer_multibyte.
25692 (encode_coding_raw_text): Increment p0 in the loop.
25693
25694 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
25695
bba3e508
SM
25696 * xdisp.c (setup_echo_area_for_printing, set_message_1):
25697 Adjust for the change of Fset_buffer_multibyte.
aac0c6e3
MR
25698
25699 * fns.c (Fstring_to_multibyte): New function.
25700 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
25701
257022008-02-01 Dave Love <fx@gnu.org>
25703
25704 * xfns.c (x_put_x_image): Declare args.
25705
25706 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
25707 (try_font_list): Declare an arg.
25708
25709 * xdisp.c (message2_nolog, set_message): Declare an arg.
25710
25711 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
25712
25713 * syntax.c (scan_sexps_forward): Declare an arg.
25714
25715 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
25716 Declare an arg.
25717
25718 * lisp.h (Fnew_fontset): Declare.
25719
25720 * keymap.c (push_key_description): Call CHARACTERP correctly.
25721
25722 * fontset.c (fontset_add): Declare args. Call make_number correctly.
25723 (face_for_char): Delete unused vars.
25724 (Fset_fontset_font): Doc fix. Delete unused vars.
25725
25726 * doc.c (Fsubstitute_command_keys): Delete unused vars.
25727
25728 * composite.c (update_compositions): Declare arg.
25729
25730 * cm.c (calccost, cmgoto): Declare args.
25731
25732 * charset.c: Remove `emacs' conditional. Doc fixes.
25733 (map_char_table_for_charset): Declare.
25734
25735 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
25736
25737 * ccl.c: Remove `emacs' conditional.
25738
257392008-02-01 Kenichi Handa <handa@m17n.org>
25740
25741 The following changes are to allow specifying multiple font
25742 patterns for a character range (specified by script or charset).
25743
25744 * Makefile.in (abbrev.o): Depend on syntax.h.
25745 (xfaces.o): Depend on charset.h.
25746
25747 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
25748 SINGLE_BYTE_CHAR_P.
25749
25750 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
25751
25752 * character.h (Vchar_script_table): Extern it.
25753
25754 * character.c (Vscript_alist): Delete.
25755 (Vchar_script_table, Qchar_script_table): New variable.
25756 (syms_of_character): Declare Vchar_script_table as a lisp variable
25757 and initialize it.
25758
25759 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
25760 have property char-table-extra-slots, make no extra slot.
25761
25762 * dispextern.h (struct face): Delete member `charset'.
25763 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
25764 SINGLE_BYTE_CHAR_P.
25765 (choose_face_font, lookup_non_ascii_face, font_name_registry):
25766 Add prototypes.
25767 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
25768 (generate_ascii_font_name): Rename from generate_ascii_font.
25769
25770 * fontset.h (get_font_repertory_func): New prototype.
25771 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
25772 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
25773
25774 * fontset.c (Qprepend, Qappend): New variables.
25775 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
25776 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
25777 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
25778 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
25779 (fontset_ref_and_range, fontset_add, reorder_font_vector)
25780 (load_font_get_repertory): New functions.
25781 (fontset_set): Delete.
25782 (fontset_face): New arg FACE. Return face ID, not face.
25783 Complete re-write to handle new fontset structure. Change caller.
25784 (free_face_fontset): Use ASET istead of AREF (X) = Y.
25785 (face_for_char): Don't call lookup_face.
25786 (make_fontset_for_ascii_face): New arg FACE.
25787 (fs_load_font): New arg CHARSET_ID. Don't check
25788 Vfont_encoding_alist here.
25789 (find_font_encoding): New function.
25790 (list_fontsets): Use STRINGP, not ! NILP.
25791 (accumulate_script_ranges): New function.
bba3e508
SM
25792 (Fset_fontset_font, Fnew_fontset, Ffontset_info):
25793 Completely re-written to handle new fontset structure.
aac0c6e3 25794 (Ffontset_font): Return a copy of element.
bba3e508
SM
25795 (syms_of_fontset): Define symbols Qprepend and Qappend.
25796 Fix docstring of font-encoding-alist.
aac0c6e3
MR
25797
25798 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
25799 (Fset_fotset_font): Fix arguments to 5.
25800
25801 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
25802
25803 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
25804 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
25805 (highlight_trailing_whitespace): Adjust for the change of
25806 lookup_named_face.
25807
25808 * xfaces.c: Include charset.h.
25809 (load_face_font): Delete argument C. Change caller.
25810 (generate_ascii_font_name): Rename from generate_ascii_font.
25811 (font_name_registry): New function.
25812 (cache_face): Store ascii faces before non-ascii faces in buckets.
25813 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
25814 Lookup only ascii faces.
25815 (lookup_non_ascii_face): New function.
25816 (lookup_named_face): Delete argument C. Change caller.
25817 (lookup_derived_face): Delete argument C. Change caller.
25818 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
25819 a string, just call font_list with it.
25820 (choose_face_font): Delete arguments FACE and C. New arg
25821 FONT_SPEC. Change caller.
25822 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
25823 Change caller.
25824 (realize_non_ascii_face): New function.
25825 (realize_x_face): Call load_face_font here.
25826 (realize_tty_face): Delete argument C. Change caller.
25827 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
25828 get a face ID.
25829 (dump_realized_face): Don't print charset of FACE.
25830
25831 * xfns.c (x_set_font): Always call x_new_fontset and
25832 store_frame_parameter.
25833 (Fx_create_frame): Call x_new_fontset, not x_new_font.
25834 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
25835
25836 * xterm.h (x_get_font_repertory): Extern it.
25837
25838 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
25839 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
25840 it->multibyte_p is zero.
25841 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
25842 (x_new_fontset): If FONTSETNAME doesn't match any existing
25843 fontsets, create a new one.
25844 (x_get_font_repertory): New function.
25845
258462008-02-01 Kenichi Handa <handa@m17n.org>
25847
25848 * coding.c (Ffind_coding_systems_region_internal): Detect an
25849 ASCII only string correctly.
25850
25851 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
25852 version is 0.
25853
258542008-02-01 Kenichi Handa <handa@m17n.org>
25855
25856 * lread.c: Include "coding.h".
25857 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
25858 (load_each_byte, unread_char): New variables.
25859 (readchar_backlog): Delete.
25860 (readchar): Return a character unless load_each_byte is nonzero.
25861 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
25862 cons. If unread_char is not -1, simply return it.
25863 (unreadchar): Handle the case that readcharfun is
25864 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
25865 (read_multibyte): Delete.
25866 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
25867 (read_emacs_mule_char): New functions.
25868 (Fload): Even if the file doesn't have the extension ".elc", if
25869 safe_to_load_p returns a positive version number, assume that the
25870 file contains bytecompiled code. If the version is less than 22,
25871 load the file while decoding multibyte sequences by emacs-mule.
25872 (readevalloop): Don't use readchar_backlog.
25873 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
25874 (Fread_from_string): Pay attention to the case that STREAM is a cons.
25875 (read_escape): Delete the arg BYTEREP.
25876 (read1): Set load_each_byte to 1 temporarily while handling
25877 #@NUMBER. Don't call read_multibyte.
25878 (read_vector): Call Fread with a cons. If readcharfun is
25879 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
25880 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
25881 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
25882 and Qload_force_doc_strings.
25883
258842008-02-01 Kenichi Handa <handa@m17n.org>
25885
bba3e508
SM
25886 * xdisp.c (face_before_or_after_it_pos):
25887 Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
aac0c6e3
MR
25888
258892008-02-01 Kenichi Handa <handa@m17n.org>
25890
25891 * character.h (TRAILING_CODE_P): New macro.
25892 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
25893 (string_char_with_unification): Fix prototype.
25894 (Vscript_alist): Extern it.
25895
25896 * character.c (Vscript_alist): New variable.
25897 (string_char_with_unification, str_as_unibyte)
25898 (string_escape_byte8): Add `const' to local variables.
25899 (syms_of_character): Declare script-alist as a Lisp variable.
25900
25901 * charset.h (Vcharset_ordered_list): Extern it.
25902 (charset_ordered_list_tick): Extern it.
25903 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
25904 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
25905 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
25906 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
25907 (Funify_charset): Adjust for the change of Funify_charset.
25908
25909 * charset.c (charset_ordered_list_tick): New variable.
25910 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
25911 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
6e051c0a 25912 deunify instead of unify a charset.
aac0c6e3
MR
25913 (string_xstring_p): Add `const' to local variables.
25914 (find_charsets_in_text): Add `const' to arguments and local variables.
bba3e508
SM
25915 (encode_char): Adjust for the change of Funify_charset.
25916 Fix detecting of invalid code.
aac0c6e3
MR
25917 (Fset_charset_priority): Increment charset_ordered_list_tick.
25918 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
25919 and TO_CODE.
25920
25921 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
25922 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
25923 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
25924 (decode_coding_ccl, consume_chars)
25925 (Ffind_coding_systems_region_internal)
25926 (Fcheck_coding_systems_region): Add `const' to local variables.
25927
25928 * print.c (print_object): Use octal form for printing the
25929 contents of a bool vector.
25930
259312008-02-01 Dave Love <fx@gnu.org>
25932
25933 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
25934 <version == 20>: Refuse to load.
25935
259362008-02-01 Dave Love <fx@gnu.org>
25937
25938 * fns.c: Move coding.h.
25939 (Qcodeset, Qdays, Qmonths): New.
25940 (concat): Use CHARACTERP instead of INTEGERP.
25941 (Flocale_codeset): Delete.
25942 (Flanginfo): New function.
25943 (syms_of_fns): Change accordingly.
25944
25945 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
25946
259472008-02-01 Dave Love <fx@gnu.org>
25948
bba3e508
SM
25949 * casetab.c (init_casetab_once, init_casetab_once):
25950 Fix CHAR_TABLE_SET call.
aac0c6e3
MR
25951
25952 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
25953
25954 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
25955
25956 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
25957 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
25958 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
25959
25960 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
25961
25962 * coding.c (ENCODE_DESIGNATION, decode_eol)
25963 (make_conversion_work_buffer, code_conversion_restore)
25964 (Fdefine_coding_system_internal): Convert Lisp types.
25965 (code_conversion_restore): Use EQ, not ==.
25966 (Fencode_coding_string): Fix code_convert_string call.
25967
25968 * coding.h (code_convert_region): Fix prototype.
25969
25970 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
25971
25972 * fontset.c (fontset_ref, fontset_set, fs_load_font)
25973 (Ffontset_info): Convert Lisp types.
25974
25975 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
25976
25977 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
25978
25979 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
25980
25981 * chartab.c: Include "...h", not <...h> in some cases.
25982
25983 * callproc.c (Fcall_process): Remove unused variables.
25984
259852008-02-01 Dave Love <fx@gnu.org>
25986
25987 * coding.c (Fset_coding_system_priority): Allow null arg list.
25988
259892008-02-01 Dave Love <fx@gnu.org>
25990
25991 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
25992 (Fself_insert_and_exit): Use CHARACTERP.
25993
25994 * callproc.c (Fcall_process): Remove unused vars.
25995
25996 * xterm.c (XTread_socket): Add extra dead keysyms.
25997
25998 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
25999
26000 * dispextern.h: Remove prototypes for redraw_frame,
26001 redraw_garbaged_frames.
26002
26003 * cmds.c (Fself_insert_command): Use CHARACTERP.
26004
26005 * chartab.c (make_sub_char_table): Remove unused var.
26006 (Fset_char_table_default, Fmap_char_table): Doc fix.
26007
26008 * keymap.c (access_keymap): Remove generic char code.
26009 (push_key_description): Use CHARACTERP.
26010
260112008-02-01 Dave Love <fx@gnu.org>
26012
26013 * charset.c: Doc fixes.
26014 (Funify_charset): Extra checking.
26015
260162008-02-01 Dave Love <fx@gnu.org>
26017
26018 * lread.c: Remove some unused variables.
26019 (safe_to_load_p): If safe, return the magic number version byte.
26020 (Fload): Maybe use load-with-code-conversion.
26021
260222008-02-01 Kenichi Handa <handa@m17n.org>
26023
26024 * category.c (Fmodify_category_entry): Don't modify the contents
bba3e508
SM
26025 of category_set for characters out of the range.
26026 Avoid unnecessary modification.
aac0c6e3
MR
26027
26028 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
26029 Vchar_unify_table. The default value of the table is now nil.
26030
26031 * character.c (syms_of_character): Setup Vchar_width_table for
26032 eight-bit-control and raw-byte chars.
26033
bba3e508
SM
26034 * charset.h (enum define_charset_arg_index):
26035 Delete charset_arg_parents and add charset_arg_subset and
aac0c6e3
MR
26036 charset_arg_superset.
26037 (enum charset_attr_index): Delete charset_parents and add
26038 charset_subset and charset_superset.
26039 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
26040 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
26041 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
26042 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
26043 (CHARSET_SUPERSET): New macros.
26044 (charset_work): Extern it.
26045 (ENCODE_CHAR): Use charset_work.
26046 (CHAR_CHARSET_P): Adjust for the change of encoder format.
26047 (map_charset_chars): Extern it.
26048
26049 * charset.c (load_charset_map): Set the default value of encoder
26050 and deunifier char-tables to nil.
bba3e508
SM
26051 (map_charset_chars): Change argument. Change callers.
26052 Use map_char_table_for_charset instead of map_char_table.
aac0c6e3
MR
26053 (Fmap_charset_chars): New optional args from_code and to_code.
26054 (Fdefine_charset_internal): Adjust for the change of
26055 `define-charset' (:parents -> :subset or :superset).
26056 (charset_work): New variable.
26057 (encode_char, syms_of_charset): Adjust for the change of
26058 Fdefine_charset_internal.
26059 (Ffind_charset_string): Setup the vector `charsets' correctly.
26060
bba3e508
SM
26061 * chartab.c (sub_char_table_ref_and_range): New arg default.
26062 Fix the previous change.
aac0c6e3
MR
26063 (char_table_ref_and_range): Adjust for the above change.
26064 (map_sub_char_table_for_charset): New function.
26065 (map_char_table_for_charset): New function.
26066
26067 * keymap.c (describe_vector): Handle a char-table directly here.
26068 (describe_char_table): Delete.
26069
26070 * lisp.h (map_charset_chars): Delete.
26071
260722008-02-01 Dave Love <fx@gnu.org>
26073
26074 * fns.c (count_combining): Comment out (unused).
26075 (Flocale_codeset): New.
26076 (syms_of_fns): Defsubr it.
26077
26078 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
26079 (size_t): Remove.
26080
260812008-02-01 Dave Love <fx@gnu.org>
26082
26083 * Makefile.in (chartab.o): Depend on charset.h.
26084
260852008-02-01 Kenichi Handa <handa@m17n.org>
26086
26087 * character.c (syms_of_character): Set the default value of
26088 Vprintable_chars to Qnil.
26089
260902008-02-01 Dave Love <fx@gnu.org>
26091
26092 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
26093
260942008-02-01 Kenichi Handa <handa@m17n.org>
26095
26096 * charset.c (load_charset_map): Handle the case that from < to
26097 correctly.
26098
26099 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
26100 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
26101 Pay attention to raw-8-bit chars.
26102
261032008-02-01 Kenichi Handa <handa@m17n.org>
26104
26105 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
26106 It is not bytecompiled now.
26107
26108 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
26109 (charset_jisx0208): New variables.
26110 (Fdefine_charset_internal): Setup them if appropriate.
26111 (init_charset_once): Initialize them to -1.
26112
26113 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
26114 (charset_jisx0208): Extern them.
26115
26116 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
26117 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
26118 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
26119 (setup_iso_safe_charsets): Fix arguments to Fassq.
26120 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
26121 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
26122 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
26123 (encode_coding_iso_2022): Change the 1st arg to
26124 ENCODE_ISO_CHARACTER to a variable.
26125
261262008-02-01 Kenichi Handa <handa@m17n.org>
26127
26128 * charset.h (enum define_charset_arg_index): New enums
26129 charset_arg_min_code and charset_arg_max_code.
26130 (struct charset): New member char_index_offset.
26131
26132 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
26133 Take charset->char_index_offset into account.
26134 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
26135 args[charset_arg_max_code]. Setup charset.char_index_offset.
26136 (syms_of_charset): Fix args to Fdefine_charset_internal.
26137
261382008-02-01 Dave Love <fx@gnu.org>
26139
26140 * coding.c (decode_coding_utf_8): Reject overlong sequences.
26141
261422008-02-01 Dave Love <fx@gnu.org>
26143
26144 * coding.c: Doc fixes.
26145 (Fcoding_system_aliases): Fix return value.
26146 (Qmac): Remove (duplicated) definition.
26147
261482008-02-01 Dave Love <fx@gnu.org>
26149
362654a6
JB
26150 * charset.c (Fcharset_priority_list, Fset_charset_priority):
26151 New functions.
aac0c6e3
MR
26152
26153 * character.c (Fstring): Doc fix.
26154
26155 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
26156
362654a6 26157 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
aac0c6e3
MR
26158 (font-encoding-alist): Doc fix.
26159
261602008-02-01 Dave Love <fx@gnu.org>
26161
26162 * term.c (costs_set): Declare static, non-initialized for pcc.
26163 (encode_terminal_code): Remove unused var.
26164
26165 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
26166 for K&R.
26167
26168 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
26169
26170 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
26171 (suffixes): Move out of make_subsidiaries for K&R.
26172
26173 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
26174
26175 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
26176
261772008-02-01 Dave Love <fx@gnu.org>
26178
26179 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
26180
26181 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
26182
261832008-02-01 Yong Lu <lyongu@asia-infonet.com>
26184
26185 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
26186
26187 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
26188
261892008-02-01 Kenichi Handa <handa@m17n.org>
26190
26191 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
26192 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
26193
261942008-02-01 Kenichi Handa <handa@m17n.org>
26195
26196 * coding.c (decode_coding_charset): Adjust for the change of
26197 Fdefine_coding_system_internal.
26198 (Fdefine_coding_system_internal): For a coding system of
26199 `charset' type, store a list of charset IDs in
26200 `charset_attr_charset_valids' element of coding attributes.
26201
262022008-02-01 Kenichi Handa <handa@m17n.org>
26203
26204 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
bba3e508
SM
26205 (emacs_mule_char): New arg src. Delete arg `composition'.
26206 Change caller. Handle 2-byte and 3-byte charsets correctly.
aac0c6e3
MR
26207 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
26208 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
26209 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
ef1b0ba7
SM
26210 (DECODE_EMACS_MULE_21_COMPOSITION):
26211 Call DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
aac0c6e3
MR
26212 sequence.
26213 (decode_coding_emacs_mule): Handle composition correctly. Rewind
26214 `src' and `consumed_chars' correctly before calling emacs_mule_char.
26215 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
26216 and alt&rule composition.
26217 (decode_coding_iso_2022): Handle composition correctly.
26218 (init_coding_once): Setup emacs_mule_bytes for private charsets.
26219
26220 * charset.c (Fdefine_charset_internal): Fix bug for the case of
26221 re-defining a charset. If the charset has :emacs-mule-id, setup
26222 emacs_mule_bytes.
26223 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
26224
262252008-02-01 Kenichi Handa <handa@m17n.org>
26226
26227 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
26228 (encode_coding_big5, encode_coding_charset): If coding requires safe
26229 encoding, produce a character specified by
26230 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
26231
262322008-02-01 Dave Love <fx@gnu.org>
26233
26234 * xterm.c (XSetIMValues): Declare.
26235
26236 * process.c: Conditionally include sys/wait.h, pty.h.
26237
26238 * print.c (print_object): Fix print format for 64-bit systems.
26239
26240 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
26241
26242 * buffer.c (emacs_strerror): Declare.
26243
26244 * fontset.c (Fclear_face_cache): Declare.
26245 (accumulate_font_info): Comment-out (unused).
26246 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
26247 variables.
26248
26249 * character.h (string_escape_byte8): Declare.
26250
bba3e508
SM
26251 * charset.c (load_charset_map, load_charset_map_from_file):
26252 Remove unused vars.
aac0c6e3
MR
26253 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
26254 (Fmap_charset_chars): Doc fix.
26255
26256 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
26257 (Fset_coding_system_priority, Fset_coding_system_priority)
26258 (Fdefine_coding_system_internal): Doc fix.
26259
262602008-02-01 Dave Love <fx@gnu.org>
26261
26262 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
26263
262642008-02-01 Kenichi Handa <handa@m17n.org>
26265
26266 * character.c (string_escape_byte8): Make multibyte string with
26267 correct size.
26268
26269 * charset.c (Fmake_char): Delete unnecessary code.
26270
262712008-02-01 Kenichi Handa <handa@m17n.org>
26272
26273 * xfns.c (x_encode_text): Allocate coding.destination here, and
26274 call encode_coding_object with dst_object Qnil.
26275
26276 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
26277 multibyte form correctly.
26278
26279 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
26280 against Vfont_encoding_alist.
26281
26282 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
26283 handling of charset list.
26284 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
26285 (decode_coding_object): Move point to coding->dst_pos before
26286 calling post-read-conversion function.
26287 (encode_coding_object): Give correct arguments to
26288 pre-write-conversion. Ignore the return value of
26289 pre-write-conversion function. Pay attention to the case that
26290 pre-write-conversion changes the current buffer. If dst_object is
26291 Qt, even if coding->src_bytes is zero, allocate at least one byte
26292 to coding->destination.
26293
26294 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
26295
26296 * charset.c (Fmake_char): Make it more backward compatible.
26297 (Fmap_charset_chars): Fix docstring.
26298
262992008-02-01 Dave Love <fx@gnu.org>
26300
26301 * coding.c: Doc fixes.
26302 (Fdefine_coding_system_alias): Use names, not symbols, in
26303 coding-system-alist.
26304
263052008-02-01 Kenichi Handa <handa@m17n.org>
26306
26307 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
26308 of calling free_realized_face.
26309
263102008-02-01 Yong Lu <lyongu@asia-infonet.com>
26311
26312 * charset.c (read_hex): Don't treat SPC as a comment starter.
26313 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
26314 (Fdecode_char): Fix typo.
26315
263162008-02-01 Kenichi Handa <handa@m17n.org>
26317
26318 * charset.h (struct charset): New member `code_space_mask'.
26319
26320 * coding.c (coding_set_source): Delete the local variable beg_byte.
26321 (encode_coding_charset, Fdefine_coding_system_internal):
26322 Delete the local variable charset.
bba3e508
SM
26323 (Fdefine_coding_system_internal):
26324 Setup attrs[coding_attr_charset_valids] correctly.
aac0c6e3
MR
26325
26326 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
26327 member to check if CODE is valid or not.
26328 (Fdefine_charset_internal): Initialize `code_space_mask' member.
26329 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
26330 is within the range of charset->min_code and carset->max_code.
26331
263322008-02-01 Dave Love <fx@gnu.org>
26333
26334 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
26335
26336 * dispextern.h (generate_ascii_font): Fix return type.
26337
26338 * xfaces.c (generate_ascii_font): Fix arg declaration.
26339
26340 * coding.c (coding_inherit_eol_type)
26341 (Fset_terminal_coding_system_internal)
26342 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
26343
263442008-02-01 Kenichi Handa <handa@m17n.org>
26345
bba3e508
SM
26346 * coding.c (decode_coding_charset, encode_coding_charset):
26347 Handle multiple charsets correctly.
aac0c6e3
MR
26348
263492008-02-01 Kenichi Handa <handa@m17n.org>
26350
26351 * search.c (boyer_moore): Fix handling of multibyte character
26352 translation.
26353
26354 * xdisp.c (display_mode_element): When the variable `elt' is
26355 changed, update `this' and `lisp_string'.
26356
263572008-02-01 Kenichi Handa <handa@m17n.org>
26358
26359 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
26360
26361 * callproc.c (Fcall_process): Be sure to give the current buffer
26362 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
26363
26364 * charset.c (struct charset_map_entries): New struct.
26365 (load_charset_map): Rename from parse_charset_map. New args
26366 entries and n_entries. Change caller.
26367 (load_charset_map_from_file): Rename from load_charset_map.
26368 Change caller. New arg control_flag. Call load_charset_map at
26369 the tail.
26370 (load_charset_map_from_vector): New function.
26371 (Fdefine_charset_internal): Setup charset.compact_codes_p.
26372 (encode_char): If the charset is compact, change a character index
26373 to a code point.
26374
26375 * coding.c (coding_alloc_by_making_gap): Check the case that the
26376 source and destination are the same correctly.
26377 (decode_coding_raw_text): Set coding->consumed_char and
26378 coding->consumed to 0.
26379 (produce_chars): If coding->chars_at_source is nonzero, update
26380 coding->consumed_char and coding->consumed before calling
26381 alloc_destination.
26382 (Fdefine_coding_system_alias): Register ALIAS in
26383 Vcoding_system_alist.
26384 (syms_of_coding): Define `no-conversion' coding system at the tail.
26385
26386 * fileio.c (Finsert_file_contents): Set coding_system instead of
26387 val. If the current buffer is multibyte, always call
26388 decode_coding_gap.
26389
26390 * xfaces.c (try_font_list): Give higher priority to fontset's
26391 family than face's family.
26392
263932008-02-01 Kenichi Handa <handa@m17n.org>
26394
26395 * callproc.c (Fcall_process): Be sure to give the current buffer
26396 to decode_coding_c_string.
26397
26398 * xfaces.c (try_font_list): Give a family specified in a fontset
26399 higher priority than a family specified in a face.
26400
264012008-02-01 Kenichi Handa <handa@m17n.org>
26402
26403 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
26404 Fix arguments to insert_from_buffer.
26405
26406 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
26407
264082008-02-01 Kenichi Handa <handa@m17n.org>
26409
26410 * coding.c (produce_chars): Set the variable `multibytep' correctly.
26411 (decode_coding_gap): Set coding->dst_multibyte correctly.
26412
264132008-02-01 Kenichi Handa <handa@m17n.org>
26414
26415 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
26416 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
26417 (encode_coding_utf_16): Substitute coding->default_char for
26418 non-Unicode characters.
26419 (decode_coding): Don't call record_insert here.
26420 (setup_coding_system): Initialize `surrogate' of
26421 coding->spec.utf_16 to 0.
26422 (EMIT_ONE_BYTE): Fix for multibyte case.
26423
26424 * insdel.c (insert_from_gap): Call record_insert.
26425
264262008-02-01 Kenichi Handa <handa@m17n.org>
26427
26428 * casefiddle.c (casify_region): Fix multibyte case.
26429
26430 * character.c (c_string_width): Add return type `int'.
26431 (char_string_with_unification): Delete arg ADVANCED.
26432
26433 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
26434 (CHAR_STRING): Adjust for the change of char_string_with_unification.
26435 (CHAR_STRING_ADVANCE): Make it do-while statement.
26436
26437 * chartab.c (sub_char_table_set_range): Optimize for the case
26438 DEPTH == 3. Add workaround code for a GCC optimization bug.
26439
26440 * charset.c (parse_charset_map): Remove an unused variable.
26441
26442 * coding.c: Delete unused variables.
26443
26444 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
26445 earlier. If inserted is zero and the coding system doesn't
26446 require flushing, don't call decode_coding_gap.
26447
26448 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
26449
264502008-02-01 Kenichi Handa <handa@m17n.org>
26451
26452 The following changes are for using Unicode as an internal
26453 character model, and use UTF-8 format for buffer/string
26454 representation.
26455
26456 * .gdbinit (xchartable): Adjust for the change of char table structure.
26457 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
26458
26459 * Makefile.in (obj): Add character.o and chartab.o.
26460 (lisp, shortlisp): Remove utf-8.elc.
26461 (*.o): For many files, change dependency on charset.h to
26462 character.h, and add dependency on character.h.
26463 (character.o, chartab.o): New targets.
26464
26465 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
26466 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
26467 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
26468 of "charset.h".
26469
26470 * dired.c, filelock.c: Include "character.h".
26471
26472 * alloc.c: Include "character.h" instead of "charset.h".
26473 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
26474 (syms_of_alloc): Remove defsubr for Smake_char_table.
26475
26476 * buffer.c: Include "character.h" instead of "charset.h", don't
26477 include "coding.h".
26478 (Fset_buffer_multibyte): Adjust for UTF-8.
26479
26480 * buffer.h: EXFUN Fbuffer_live_p.
26481
26482 * callproc.c: Include "character.h" instead of "charset.h".
26483 (Fcall_process): Big change for the new code-conversion APIs.
26484
26485 * casetab.c: Include "character.h" instead of "charset.h".
26486 (set_canon, set_identity, shuffle): Adjust for the new
26487 map_char_table spec.
26488 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
26489 accessing the char table structure.
26490
26491 * chartab.c: New file that implements char table.
26492
26493 * category.c: Include "character.h".
26494 (copy_category_entry): New function.
26495 (copy_category_table): Call map_char_table and copy_category_entry.
26496 (Fmake_category_table): Initialize all top-level slots.
26497 (char_category_set): New function.
26498 (modify_lower_category_set): Delete.
26499 (Fmodify_category_entry): Call char_table_ref_and_range.
26500
26501 * category.h (CATEGORY_SET): Just call char_category_set.
26502
26503 * ccl.c: Include "character.h".
26504 (Qccl, Qcclp): New variables.
26505 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
26506 it's less than 256.
26507 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
26508 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
26509 and DST type.
26510 (ccl_driver): Change types of argument, adjust code accordingly.
26511 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
26512 ccl_driver.
26513 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
26514
26515 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
26516 New members src_multibyte, dst_multibyte, consumed, and produced.
26517 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
26518 (CODING_SPEC_CCL_PROGRAM): New macro.
26519 (ccl_driver): Update prototype.
26520 (Qccl, Qcclp, Fccl_program_p): Extern them.
26521 (CHECK_CCL_PROGRAM): New macro.
26522
26523 * character.c, character.h, chartab.c: New files.
26524
26525 * charset.c: Mostly re-written. Move character and multibyte sequence
26526 handling codes to character.c.
26527
26528 * charset.h: Mostly re-written. Move character and multibyte sequence
26529 handling codes to character.h.
26530
26531 * coding.c, coding.h: Mostly re-written.
26532
26533 * composite.c: Include "character.h" instead of "charset.h".
26534 (CHAR_WIDTH): Move to character.h.
26535 (HASH_KEY, HASH_VALUE): Delete.
26536
26537 * composite.h (enum composition_method): Change order of enumeration
26538 symbols.
26539
26540 * data.c: Include "character.h" instead of "charset.h".
26541 (Faref): Call CHAR_TABLE_REF for a char table.
26542 (Faset): Call CHAR_TABLE_SET for a char table.
26543
26544 * dispextern.h (free_realized_face, check_face_attribytes)
26545 (generate_ascii_font): Extern them.
26546 (free_realized_multibyte_face): Delete extern.
26547
26548 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
26549 table structure.
26550
26551 * editfns.c: Include "character.h" instead of "charset.h".
26552 (Fchar_to_string): Always call CHAR_STRING.
26553
26554 * emacs.c (main): Call init_charset_once, init_charset,
26555 syms_of_chartab, and syms_of_character.
26556
26557 * fileio.c: Include "character.h" instead of "charset.h".
26558 (Finsert_file_contents): Big change for the new code-conversion API.
26559 (choose_write_coding_system, Fwrite_region): Likewise.
26560 (build_annotations_2): Delete.
26561 (e_write): Big change for the new code-conversion API.
26562
26563 * fns.c: Include "character.h" instead of "charset.h".
26564 (copy_sub_char_table): Move to chartab.c.
26565 (Fcopy_sequence): Call copy_char_table for a char table.
26566 (concat): Delete codes calling count_multibyte.
26567 (string_char_to_byte, string_byte_to_char): Adjust for the new
26568 multibyte form.
26569 (internal_equal): Adjust for the change of char table structure.
26570 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
26571 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
26572 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
26573 (char_table_translate, optimize_sub_char_table)
26574 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
26575 chartab.c.
26576 (char_table_ref_and_index): Delete.
26577 (HASH_KEY, HASH_VALUE): Move to lisp.h.
26578 (Fmd5): Call preferred_coding_system instead of accessing
26579 Vcoding_category_list. Adjust for the new code-conversion API.
26580 (syms_of_fns): Move defsubr for char table related functions to
26581 chartab.c.
26582
26583 * fontset.c: Mostly re-written.
26584
26585 * fontset.h (struct font_info): Change type of the member encoding_type.
26586 (enum FONT_SPEC_INDEX): New enum.
26587 (fontset_font_pattern, fs_load_font): Update prototype.
26588 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
26589
26590 * indent.c: Include "character.h" instead of "charset.h".
26591 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
26592
26593 * insdel.c: Include "character.h" instead of "charset.h".
26594 (copy_text): Don't refer to Vnonascii_translation_table.
26595 (insert_from_gap): New function.
26596
26597 * keyboard.c: Include "character.h" instead of "charset.h".
26598 (command_loop_1): Never call direct_output_forward_char before
26599 a non-ASCII character.
26600 (read_char): If Vkeyboard_translate_table is a char table, always
26601 translate a character.
26602
26603 * keymap.c: Include "character.h".
26604 (store_in_keymap): Handle the case that IDX is a cons.
26605 (Fdefine_key): Handle the case that KEY is a cons and the car part
26606 is also a cons (range).
26607 (push_key_description): Adjust for the new character code.
26608 (describe_vector): Call describe_char_table for a char table.
26609 (describe_char_table): New function.
26610
26611 * keymap.h (describe_char_table): Extern it.
26612
26613 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
26614 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
26615 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
26616 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
26617 Delete.
26618 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
26619 structure.
26620 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
26621 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
26622 (CHARTAB_SIZE_BITS_3): New macros.
26623 (chartab_size): Extern it.
26624 (struct Lisp_Char_Table): Re-design.
26625 (struct Lisp_Sub_Char_Table): New structure.
26626 (HASH_KEY, HASH_VALUE): Move from fns.c.
26627 (CHARACTERBITS): Define as 22.
26628 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
26629 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
26630 (GC_SUB_CHAR_TABLE_P): New macro.
26631 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
ef1b0ba7 26632 (code_convert_string_norecord): Delete extern.
aac0c6e3
MR
26633 (init_character_once, syms_of_character, init_charset)
26634 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
26635
26636 * lread.c: Include "character.h".
26637 (read_multibyte): New arg NBYTES.
26638 (read_escape): Change the meaning of returned *BYTEREP.
26639 (to_multibyte): Delete.
26640 (read1): Adjust the handling of char table and string.
26641
26642 * print.c: Include "character.h" instead of "charset.h".
26643 (print_string): Convert 8-bit raw bytes to octal form by
26644 string_escape_byte8.
26645 (print_object): Adjust for the new multibyte form. Print 8-bit
26646 raw bytes always in octal form. Handle sub char table correctly.
26647
26648 * process.c: Include "character.h" instead of "charset.h".
26649 (read_process_output, send_process): Adjust for the new
26650 code-conversion API.
26651
26652 * puresize.h (BASE_PURESIZE): Increase.
26653
26654 * regex.c: Include "character.h" instead of "charset.h".
26655 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
26656 (regex_compile): Accept a range whose starting and ending
26657 character have different leading bytes.
26658 (analyse_first): Adjust for the above change.
26659
26660 * search.c: Include "character.h" instead of "charset.h".
26661 (search_buffer, boyer_moore): Adjust for the new multibyte form.
26662 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
26663
26664 * syntax.c: Include "character.h" instead of "charset.h".
26665 (syntax_parent_lookup): Delete.
26666 (Fmodify_syntax_entry): Accept a cons as CHAR.
26667 (skip_chars): Adjust for the new multibyte form.
26668 (init_syntax_once): Call char_table_set_range instead of directly
26669 accessing the structure of a char table.
26670
26671 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
26672 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
26673 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
26674 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
26675
26676 * term.c: Include "buffer.h" and "character.h".
26677 (encode_terminal_code, write_glyphs): Adjust for the new
26678 code-conversion API.
26679 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
26680
26681 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
26682
26683 * xdisp.c: Include "character.h".
26684 (get_next_display_element): Adjust for the new multibyte form.
26685 (disp_char_vector): Adjust for the new char table structure.
26686 (decode_mode_spec_coding): Adjust for the new structure of
26687 coding system.
26688 (decode_mode_spec): Adjust for the new code-conversion API.
26689
26690 * xfaces.c: Include "character.h" instead of "charset.h".
26691 (load_face_font): Adjust for the change of choose_face_font and
26692 FS_LOAD_FONT.
26693 (generate_ascii_font): New function.
26694 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
26695 (set_font_frame_param): Adjust for the change of choose_face_font.
26696 (free_realized_face): Make it public.
26697 (free_realized_faces_for_fontset): Rename from
26698 free_realized_multibyte_face. Free also faces realized for ASCII.
26699 (choose_face_font): Change arguments. Adjust for the change of
26700 fontset_font_pattern and FS_LOAD_FONT.
26701
26702 * xfns.c: Include "character.h".
26703 (x_encode_text): Adjust for the new code-conversion API.
26704
26705 * xselect.c: Don't include "charset.h".
26706 (selection_data_to_lisp_data): Adjust for the new code conversion API.
26707
26708 * xterm.c: Include "character.h".
26709 (x_encode_char): New argument CHARSET. Change caller.
26710 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
26711 Call ENCODE_CHAR instead of SPLIT_CHAR.
26712 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
26713 CHAR_WIDTH instead of CHARSET_WIDTH.
26714 (XTread_socket): Adjust for the new code-conversion API.
26715 (x_new_font): Adjust for the change of FS_LOAD_FONT.
26716 (x_load_font): Adjust for the change of struct font.
26717
267182008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
26719
26720 * xfaces.c (face_at_buffer_position): Remove unused vars.
26721
267222008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
26723
26724 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
26725 Fix overflow checking.
26726
267272008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
26728
26729 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
26730 Cancel previous change.
26731
267322008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
26733
26734 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
26735 ccl->eight_bit_control. Fix check for buffer overflow.
26736 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
26737 (ccl_driver): Initialize extra_bytes to 0.
26738
267392008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
26740
26741 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
26742 return it ORed with ctrl_modifier.
26743
267442008-01-29 Miles Bader <miles@gnu.org>
26745
26746 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
26747
267482008-01-28 Jason Rumney <jasonr@gnu.org>
26749
26750 * w32.c (stat): Don't double check for networked drive.
26751
267522008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
26753
26754 * window.c (run_window_configuration_change_hook): New function.
26755 Code extracted from set_window_buffer. Set the selected frame.
26756 (set_window_buffer): Use it.
26757 * window.h (run_window_configuration_change_hook): Declare.
26758 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
26759
26760 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
26761
267622008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
26763
26764 * Makefile.in: Remove references to unused macros.
26765
267662008-01-26 Eli Zaretskii <eliz@gnu.org>
26767
26768 * w32.c (g_b_init_get_sid_sub_authority)
26769 (g_b_init_get_sid_sub_authority_count): New static variables.
26770 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
26771 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
26772 (init_user_info): Use them to retrieve uid and gid.
26773 Use 500/513, the Windows defaults, as Administrator's uid/gid.
26774 (fstat): Use pw_uid and pw_gid from the_passwd structure for
26775 st_uid and st_gid of the file.
26776
267772008-01-26 Jason Rumney <jasonr@gnu.org>
26778
26779 * w32.c (logon_network_drive): New function.
26780 (stat): Use it.
26781
267822008-01-26 Chong Yidong <cyd@stupidchicken.com>
26783
26784 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
26785 invisible text covered with an ellipsis.
26786
267872008-01-25 Richard Stallman <rms@gnu.org>
26788
26789 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
26790 jump back to beginning. Move some other initializations after that.
26791 (Qwindow_text_change_functions, Vwindow_text_change_functions):
26792 New variables.
26793 (syms_of_xdisp): Init them.
26794
26795 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
26796
26797 * buffer.c (reset_buffer_local_variables):
26798 Implement `permanent-local-hook'.
26799 (Qpermanent_local_hook): New variable.
26800 (syms_of_buffer): Init and staticpro it.
26801
268022008-01-25 Michael Albinus <michael.albinus@gmx.de>
26803
26804 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
26805
268062008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
26807
26808 * fns.c (Fclrhash): Return TABLE.
26809
268102008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26811
26812 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
26813 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
26814 is set even without positional changes.
26815 (x_scroll_bar_clear): Set bar->redraw_needed_p.
26816
26817 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
26818
268192008-01-23 Jason Rumney <jasonr@gnu.org>
26820
26821 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
26822
26823 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
26824 the unicode range available in MULE by locale-coding-system.
26825 Improve dbcs lead byte detection. Set event timestamp and modifiers
26826 earlier.
26827
268282008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26829
26830 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
26831 [MAC_OSX] (init_mac_osx_environment): Initialize it.
26832 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
26833 when used on child processes.
26834
268352008-01-21 Michael Albinus <michael.albinus@gmx.de>
26836
26837 * dbusbind.c (Fdbus_method_return_internal): Rename from
26838 Fdbus_method_return.
26839 (Fdbus_unregister_object): Move to dbus.el.
26840 (Fdbus_call_method, Fdbus_method_return_internal)
26841 (Fdbus_send_signal): Improve debug messages.
26842
268432008-01-20 Martin Rudalics <rudalics@gmx.at>
26844
26845 * undo.c (undo_inhibit_record_point): New variable.
26846 (syms_of_undo): Initialize it.
26847 (record_point): Don't record point when undo_inhibit_record_point
26848 is set.
26849
268502008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
26851
26852 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
26853
26854 * xdisp.c (Qauto_hscroll_mode): New var.
26855 (syms_of_xdisp): Initialize it.
26856 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
26857 window's buffer.
26858 (hscroll_windows): Don't check automatic_hscrolling_p here.
26859
26860 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
26861 vscroll if we're setting window-buffer to the value it already has.
26862
268632008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
26864
26865 * m/intel386.h: Remove references to XENIX.
26866
268672008-01-17 Andreas Schwab <schwab@suse.de>
26868
26869 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
26870 instead of HAVE_X86_64_LIB64_DIR.
26871 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
26872
268732008-01-17 Glenn Morris <rgm@gnu.org>
26874
26875 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
26876 to HAVE_X86_64_LIB64_DIR.
26877
268782008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
26879
26880 * s/irix3-3.h:
26881 * s/irix4-0.h:
26882 * s/386-ix.h:
26883 * s/domain.h:
26884 * s/hpux9-x11r4.h:
26885 * s/hpux9shxr4.h: Remove files for systems no longer supported.
26886
26887 * sysdep.c: Remove code containing references to symbols defined
26888 by unsupported systems.
26889
268902008-01-16 Glenn Morris <rgm@gnu.org>
26891
26892 * coding.c (select-safe-coding-system-function): Doc fix.
26893
268942008-01-15 Glenn Morris <rgm@gnu.org>
26895
26896 * config.in: Revert 2008-01-13 change: this is a generated file.
26897
268982008-01-13 Tom Tromey <tromey@redhat.com>
26899
26900 * lisp.h: Fix typo.
26901
269022008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
26903
26904 * m/sequent-ptx.h:
26905 * m/sequent.h:
26906 * s/ptx.h:
26907 * s/ptx4-2.h:
26908 * s/ptx4.h: Remove files for systems no longer supported.
26909
26910 * callproc.c (Fcall_process): Fix previous change.
26911
269122008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
26913
26914 * unexsunos4.c: Remove file, system not supported anymore.
26915
26916 * m/mips.h:
26917 * m/intel386.h:
26918 * callproc.c:
26919 * config.in:
26920 * ecrt0.c:
26921 * emacs.c:
26922 * fileio.c:
26923 * frame.c:
26924 * getpagesize.h:
26925 * keyboard.c:
26926 * lread.c:
26927 * process.c:
26928 * puresize.h:
26929 * sysdep.c:
26930 * systty.h:
26931 * syswait.h:
26932 * unexec.c:
26933 * xdisp.c:
26934 * alloc.c: Remove code containing references to symbols defined by
26935 unsupported systems.
26936
269372008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
26938
26939 * coding.c (detect_coding_mask): Fix previous change.
26940
269412008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
26942
26943 * coding.c (detect_coding_iso2022): New arg
26944 latin_extra_code_state. Allow Latin extra codes only
26945 when *latin_extra_code_state is nonzero.
26946 (detect_coding_mask): If there is a NULL byte, detect the encoding
26947 as UTF-16 or binary. If Latin extra codes exist, detect the
26948 encoding as ISO-2022 only when there's no other proper encoding is
26949 found.
26950
269512008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
26952
26953 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
26954 #ifdef MAC_OS.
26955
269562008-01-08 Richard Stallman <rms@gnu.org>
26957
26958 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
26959
269602008-01-06 Nick Roberts <nickrob@snap.net.nz>
26961
26962 * keyboard.c (parse_menu_item): Don't enclose key bindings on
26963 menu bar in parentheses.
26964
269652008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
26966
26967 * m/7300.h:
26968 * m/acorn.h:
26969 * m/alliant-2800.h:
26970 * m/alliant.h:
26971 * m/alliant1.h:
26972 * m/alliant4.h:
26973 * m/altos.h:
26974 * m/amdahl.h:
26975 * m/apollo.h:
26976 * m/att3b.h:
26977 * m/aviion-intel.h:
26978 * m/aviion.h:
26979 * m/celerity.h:
26980 * m/clipper.h:
26981 * m/cnvrgnt.h:
26982 * m/convex.h:
26983 * m/cydra5.h:
26984 * m/delta88k.h:
26985 * m/dpx2.h:
26986 * m/dual.h:
26987 * m/elxsi.h:
26988 * m/f301.h:
26989 * m/gould-np1.h:
26990 * m/gould.h:
26991 * m/i860.h:
26992 * m/ibmps2-aix.h:
26993 * m/ibmrt-aix.h:
26994 * m/ibmrt.h:
26995 * m/irist.h:
26996 * m/is386.h:
26997 * m/isi-ov.h:
26998 * m/mega68.h:
26999 * m/mg1.h:
27000 * m/news-r6.h:
27001 * m/news-risc.h:
27002 * m/news.h:
27003 * m/nh3000.h:
27004 * m/nh4000.h:
27005 * m/ns16000.h:
27006 * m/ns32000.h:
27007 * m/nu.h:
27008 * m/orion.h:
27009 * m/orion105.h:
27010 * m/paragon.h:
27011 * m/pfa50.h:
27012 * m/plexus.h:
27013 * m/pyramid.h:
27014 * m/pyrmips.h:
27015 * m/sh3el.h:
27016 * m/sps7.h:
27017 * m/sr2k.h:
27018 * m/stride.h:
27019 * m/sun1.h:
27020 * m/sun2.h:
27021 * m/sun3-68881.h:
27022 * m/sun3-fpa.h:
27023 * m/sun3-soft.h:
27024 * m/sun3.h:
27025 * m/sun386.h:
27026 * m/symmetry.h:
27027 * m/tad68k.h:
27028 * m/tahoe.h:
27029 * m/targon31.h:
27030 * m/tek4300.h:
27031 * m/tekxd88.h:
27032 * m/tower32.h:
27033 * m/tower32v3.h:
27034 * m/ustation.h:
27035 * m/wicat.h:
27036 * m/xps100.h:
27037 * s/cxux.h:
27038 * s/cxux7.h:
27039 * s/dgux.h:
27040 * s/dgux4.h:
27041 * s/dgux5-4-3.h:
27042 * s/dgux5-4r2.h:
27043 * s/esix.h:
27044 * s/esix5r4.h:
27045 * s/hiuxmpp.h:
27046 * s/hiuxwe2.h:
27047 * s/iris3-5.h:
27048 * s/iris3-6.h:
27049 * s/isc2-2.h:
27050 * s/isc3-0.h:
27051 * s/isc4-0.h:
27052 * s/isc4-1.h:
27053 * s/newsos5.h:
27054 * s/newsos6.h:
27055 * s/osf1.h:
27056 * s/osf5-0.h:
27057 * s/riscix1-1.h:
27058 * s/riscix12.h:
27059 * s/sco4.h:
27060 * s/sco5.h:
27061 * s/sunos4-0.h:
27062 * s/sunos4-1.h:
27063 * s/sunos413.h:
27064 * s/sunos4shr.h:
27065 * s/umax.h:
27066 * s/unipl5-2.h:
27067 * s/xenix.h:
27068 * cxux-crt0.s:
27069 * unexapollo.c:
27070 * unexconvex.c:
27071 * unexenix.c:
27072 * unexsni.c: Remove files for systems no longer supported.
27073
27074 * m/intel386.h: Remove references to unsupported systems.
27075
27076 * w32.c (get_emacs_configuration): Remove reference to i860.
27077
27078 * sysdep.c: Remove dead code.
27079
270802008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
27081
27082 * s/rtu.h:
27083 * m/masscomp.h: Remove files. Platform is obsolete.
27084
270852008-01-04 Michael Albinus <michael.albinus@gmx.de>
27086
27087 * dbusbind.c (Fdbus_method_return): New function.
27088 (xd_read_message): Add the serial number to the event.
27089 (Fdbus_register_method): Activate the function.
27090
270912008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
27092
27093 * keyboard.c (read_key_sequence): Fix typo.
27094
270952008-01-03 Michael Albinus <michael.albinus@gmx.de>
27096
27097 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
27098 (xd_signature, xd_append_arg): Handle element type detection for
27099 empty arrays.
27100 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
27101 SDATA () calls; this must be solved more general.
27102 (Fdbus_register_signal): Use SBYTES instead of strlen.
27103
271042008-01-03 Magnus Henoch <magnus@zemdatav>
27105
27106 * dbusbind.c (xd_append_arg): Use unsigned char instead of
27107 unsigned int for byte values (necessary for big-endian platform).
27108 (Fdbus_call_method): Handle the case of no returned arguments.
27109
271102007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
27111
27112 * dbusbind.c (xd_read_message): Use non-static input_event struct.
27113
271142007-12-31 Magnus Henoch <mange@freemail.hu>
27115
27116 * dbusbind.c (xd_signature): Signature of variant is just "v".
27117
271182007-12-30 Michael Albinus <michael.albinus@gmx.de>
27119
27120 * dbusbind.c: Fix several errors and compiler warnings.
27121 Reported by Tom Tromey <tromey@redhat.com>.
27122 (XD_ERROR, XD_DEBUG_MESSAGE)
27123 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
27124 (xd_append_arg): Part for basic D-Bus types rewritten.
27125 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
27126 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
27127 appropriate.
27128 (xd_read_message): Return Qnil. Don't signal an error; it is not
27129 useful during event reading.
27130 (Fdbus_register_signal): Signal an error if the check for
27131 FUNCTIONP fails.
27132 (Fdbus_register_method): New function. The implementation is not
27133 complete, the call of the function signals an error therefore.
27134 (Fdbus_unregister_object): New function, renamed from
27135 Fdbus_unregister_signal. The initial check signals an error, if
27136 the object is not well formed.
27137
271382007-12-30 Richard Stallman <rms@gnu.org>
27139
27140 * textprop.c (get_char_property_and_overlay):
27141 Signal error if POSITION is out of range in a buffer.
27142
271432007-12-29 Martin Rudalics <rudalics@gmx.at>
27144
27145 * w32fns.c (Fx_create_frame): Make copy of frame parameters
27146 because the original parameters are in pure storage now.
27147
271482007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27149
27150 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
27151
271522007-12-22 Eli Zaretskii <eliz@gnu.org>
27153
27154 * callint.c (syms_of_callint) <command-history>: Add reference to
27155 history-length in the doc string.
27156
271572007-12-17 Jason Rumney <jasonr@gnu.org>
27158
27159 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
27160 before passing as wParam.
27161
271622007-12-22 Michael Albinus <michael.albinus@gmx.de>
27163
27164 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
27165 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
27166 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
27167 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
27168 as number.
27169 (Fdbus_call_method): Fix docstring.
27170
271712007-12-21 Michael Albinus <michael.albinus@gmx.de>
27172
27173 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
27174 New macros.
27175 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
27176 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
27177 Simplify.
27178 (xd_signature): New function.
27179 (xd_append_arg): Compute also signatures. Major rewrite.
27180 (xd_retrieve_arg): Make debug messages friendly.
27181 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
27182 Check for signatures of arguments.
27183
271842007-12-19 Michael Albinus <michael.albinus@gmx.de>
27185
27186 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
27187 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
27188 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
27189 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
27190 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
27191 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
27192 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
27193 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
27194 (xd_retrieve_value): Remove. Functionality included in ...
27195 (xd_append_arg): New function.
27196 (Fdbus_call_method, Fdbus_send_signal): Apply it.
27197
271982007-12-16 Michael Albinus <michael.albinus@gmx.de>
27199
27200 * dbusbind.c (top): Include <stdio.h>.
27201 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
27202 dbus_message_new_method_call and dbus_message_new_signal.
27203 (Fdbus_register_signal): Rename unique_name to uname.
27204 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
27205 non-existing unique name. Fix typos in matching rule. Return an
27206 object which is useful in Fdbus_unregister_signal.
27207 (Fdbus_unregister_signal): Reimplementation, in order to remove
27208 only the corresponding entry.
27209 (Vdbus_registered_functions_table): Change the order of entries.
27210 Apply these changes in xd_read_message and Fdbus_register_signal.
27211
272122007-12-16 Andreas Schwab <schwab@suse.de>
27213
27214 * fileio.c (Finsert_file_contents): Fix overflow check to not
27215 depend on undefined integer overflow.
27216
272172007-12-14 Jason Rumney <jasonr@gnu.org>
27218
27219 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
27220 for characters above 127.
27221
272222007-12-13 Jason Rumney <jasonr@gnu.org>
27223
27224 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
27225 before dereferencing array.
27226 (lookup_vk_code): Remove zero comparison.
27227
272282007-12-14 Michael Albinus <michael.albinus@gmx.de>
27229
27230 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
27231 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
27232 Use `unsigned int' instead of `uint'.
27233 (xd_read_message, Fdbus_register_signal): Split expressions into
27234 multiple lines before operators "&&" and "||", according to the
27235 GNU Coding Standards.
27236
272372007-12-14 Eli Zaretskii <eliz@gnu.org>
27238
27239 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
27240
272412007-12-12 Juri Linkov <juri@jurta.org>
27242
27243 * buffer.c (Frename_buffer): In interactive spec replace
27244 `read-buffer' with `read-string' that uses `buffer-name-history'
27245 as history, and the current buffer's name as default.
27246
272472007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
27248
27249 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
27250 manipulating the backtrace manually.
27251 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
27252 (struct backtrace, backtrace_list): Remove.
27253 (command_loop_1): Remove dead var `no_direct'.
27254
27255 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
27256 preserve non-built-in buffer-local variables.
27257 (Fkill_all_local_variables): Don't re-create&re-set permanent
27258 buffer-local variables.
27259
272602007-12-09 Juri Linkov <juri@jurta.org>
27261
27262 * buffer.c (Frename_buffer): Change interactive spec from "s" to
27263 Lisp code that uses `read-buffer' with current buffer as default.
27264
272652007-12-08 Michael Albinus <michael.albinus@gmx.de>
27266
27267 * dbusbind.c (xd_read_message): Generate an event for every
27268 registered handler. There might be several handlers registered
27269 for the same signal.
27270 (Fdbus_register_signal): Don't overwrite a registration for the
27271 same signal. Add a new registration if handlers are different.
27272 (Vdbus_registered_functions_table): Rework doc string.
27273
272742007-12-07 Michael Albinus <michael.albinus@gmx.de>
27275
27276 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
27277 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
27278 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
27279 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
27280 Unify argument lists.
27281 (xd_read_message, Fdbus_register_signal): Reorder and extend event
27282 arguments and hash table keys. Use unique name for service.
27283 (Fdbus_unregister_signal): Remove checks.
27284 (Vdbus_registered_functions_table): Fix doc string.
27285
272862007-12-05 Magnus Henoch <mange@freemail.hu>
27287
27288 * process.c (make_process): Initialize pty_flag to 0.
27289
272902007-12-05 Jason Rumney <jasonr@gnu.org>
27291
27292 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
27293 specified XBMs.
27294
272952007-12-05 Richard Stallman <rms@gnu.org>
27296
27297 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
27298
272992007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27300
27301 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
27302 New variable.
27303 (mac_try_close_socket) [MAC_OSX]: New function.
27304 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
27305 Update cfsockets_for_select. Replace invalid CFRunLoop source.
27306
27307 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
27308 Use mac_try_close_socket.
27309
273102007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27311
27312 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
27313 reloc_base.
27314 (copy_dysymtab): Compute relocation base here.
27315 (rebase_reloc_address) [__ppc64__]: New function.
27316 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
27317 changed.
27318
273192007-12-05 Jason Rumney <jasonr@gnu.org>
27320
27321 * w32proc.c (sys_spawnve): Quote args with wildcards.
27322
273232007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27324
27325 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
27326 __objc_* sections.
27327 (unrelocate) [_LP64]: Set relocation base to address of data segment.
27328
273292007-12-05 Michael Albinus <michael.albinus@gmx.de>
27330
27331 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
27332 Move check for Vdbus_registered_functions_table to
27333 xd_read_queued_messages.
27334 (xd_read_queued_messages): Protect xd_read_message calls by
27335 internal_condition_case_1.
27336
273372007-12-04 Michael Albinus <michael.albinus@gmx.de>
27338
27339 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
27340 Qdbus_system_bus and Qdbus_session_bus, respectively.
27341 (Vdbus_intern_symbols): Remove.
27342 (Vdbus_registered_functions_table): New hash table.
27343 (XD_SYMBOL_INTERN_SYMBOL): Remove.
27344 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
27345 Rewrite in order to manage registered functions by hash table
27346 Vdbus_registered_functions_table.
27347
273482007-12-03 Jan Djärv <jan.h.d@swipnet.se>
27349
27350 * xterm.c: Update URL to Window Manager Specification in comment.
27351
273522007-12-02 Michael Albinus <michael.albinus@gmx.de>
27353
27354 * config.in (HAVE_DBUS): Add.
27355
27356 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
27357 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
27358 (obj): Add $(DBUS_OBJ).
27359 (LIBES): Add $(DBUS_LIBS).
27360 (dbusbind.o): New target.
27361
27362 * dbusbind.c: New file.
27363
27364 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
27365
27366 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
27367 (Qdbus_event): New Lisp symbol.
27368 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
27369 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
b97439ce 27370 (keys_of_keyboard): Define dbus-event.
aac0c6e3
MR
27371
27372 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
27373
273742007-12-01 Richard Stallman <rms@gnu.org>
27375
27376 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
27377
273782007-11-30 Jason Rumney <jasonr@gnu.org>
27379
27380 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
27381 (w32con_reset_terminal_modes): Clear screen buffer.
27382 (w32_face_attributes): Don't use color indexes that are out of range.
27383 Only reverse the default colors.
27384
27385 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
27386 WINDOWSNT.
27387
27388 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
27389
273902007-11-29 Jason Rumney <jasonr@gnu.org>
27391
27392 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
27393 (w32_face_attributes): Use Vtty_defined_color_alist to determine
27394 if the terminal colors are initialized.
27395 (unspecified_fg, unspecified_bg): Remove unused declarations.
27396
273972007-11-29 Andreas Schwab <schwab@suse.de>
27398
27399 * keyboard.c (apply_modifiers): Fix typo.
27400
274012007-11-29 Richard Stallman <rms@gnu.org>
27402
27403 * keymap.c (Fcurrent_local_map): Doc fix.
27404
274052007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
27406
27407 * s/gnu-kfreebsd.h: New file.
27408
274092007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
27410
27411 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
27412 Don't cast redundantly.
27413
27414 * keyboard.c (KEY_TO_CHAR): New macro.
27415 (parse_modifiers, apply_modifiers): Accept integer arguments.
27416 (read_key_sequence): Use them to unify the "shift->unshift" mapping
27417 for chars and symbol keys.
27418 After doing such remapping, apply function-key-map again.
27419
274202007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
27421
27422 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
27423 compiled anymore.
27424
274252007-11-26 Andreas Schwab <schwab@suse.de>
27426
27427 * process.c (list_processes_1): Fix indentation level of the
27428 command column.
27429
274302007-11-23 Andreas Schwab <schwab@suse.de>
27431
27432 * editfns.c (Fformat): Handle %c specially since it requires the
27433 argument to be of type int.
27434
274352007-11-23 Markus Triska <markus.triska@gmx.at>
27436
27437 * emacs.c (main): Call init_editfns before init_process, since
27438 init_process sets Vprocess_connection_type depending on OS release.
27439
274402007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
27441
27442 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
27443 (find_symbol_value): Use do_symval_forwarding.
27444
27445 * data.c (set_internal): Set the value in the `cons-cell' (for
27446 Buffer_Local_values) not only for frame-local variables.
27447
274482007-11-22 Andreas Schwab <schwab@suse.de>
27449
27450 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
27451 values to sprintf.
27452 * keymap.c (Fsingle_key_description): Likewise.
27453 * print.c (print_object): Likewise.
27454
274552007-11-22 Jan Djärv <jan.h.d@swipnet.se>
27456
27457 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
27458 file for image is nil.
27459
274602007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
27461
27462 * term.c: Include stdarg.h.
27463 (fatal): Implement using varargs.
27464 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
27465
274662007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
27467
27468 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
27469 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
27470 Update call to buffer_slot_type_mismatch.
27471 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
27472 (buffer_slot_type_mismatch): Update.
27473 * buffer.c (buffer_local_types): Remove.
27474 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
27475 (defvar_per_buffer): Set the type in the buffer_objfwd.
27476
274772007-11-21 Jason Rumney <jasonr@gnu.org>
27478
27479 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
27480 CreateFileMapping returns NULL on failure.
27481
274822007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
27483
27484 * search.c (Fset_match_data): Remove the `evaporate' feature.
27485 (unwind_set_match_data): Don't use the `evaporate' feature.
27486
274872007-11-21 Jason Rumney <jasonr@gnu.org>
27488
27489 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
27490
27491 * w32console.c (w32con_write_glyphs): Remove unused variables.
27492
274932007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
27494
27495 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
27496
27497 * s/darwin.h (MULTI_KBOARD): Remove.
27498
27499 * macfns.c (x_create_tip_frame, Fx_create_frame)
27500 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
27501
275022007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
27503
27504 * buffer.c (Fbuffer_local_value): Remove redundant test.
27505 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
27506 than in `current-buffer' to match the comment.
27507 Do the swap using swap_in_global_binding.
27508
27509 * data.c (store_symval_forwarding, set_internal):
27510 * eval.c (specbind): Remove dead code.
27511
27512 * coding.c (detect_coding, Fupdate_coding_systems_internal):
27513 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
27514 Since we do not want to see internal Lisp_*fwd objects here.
27515
275162007-11-18 Jan Djärv <jan.h.d@swipnet.se>
27517
27518 * sysdep.c (init_system_name): Use getaddrinfo if available.
27519
27520 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
27521 (x_scroll_bar_note_movement): start, end, with, height in struct
27522 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
27523
275242007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
27525
27526 * puresize.h (BASE_PURESIZE): Increase to 1190000.
27527
275282007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
27529
27530 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
27531 This undoes Richard's change of 14-Oct-2002.
27532
27533 * alloc.c (allocate_other_vector):
27534 * lisp.h (allocate_other_vector): Remove.
27535
27536 * window.c (struct save_window_data): Move non-lisp data to the end
27537 and make it `int' rather than Lisp_Object.
27538 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
27539 Done wrap/unwrap integer values.
27540 (Fset_window_configuration, compare_window_configurations):
27541 Update use of fields to their new types.
27542
27543 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
27544 Turn integer fields into `int'. Merge x_window_low and x_window_high.
27545 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
27546 (SET_SCROLL_BAR_X_WINDOW): Remove.
27547 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
27548 Access the new x_window field directly.
27549 * xterm.c (x_scroll_bar_create): Use a pseudovector.
27550 Don't wrap/unwrap integers into Lisp_Objects.
27551 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
27552 (x_scroll_bar_report_motion):
27553 Don't wrap/unwrap integers into Lisp_Objects.
27554 (x_term_init): Use SDATA.
27555 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
27556 (x_scroll_bar_set_handle, x_scroll_bar_remove)
27557 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
27558 (x_scroll_bar_report_motion, x_scroll_bar_clear):
27559 * xfns.c (x_set_background_color):
27560 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
27561 Access the new x_window field directly.
27562
27563 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
27564 (allocate_pseudovector): Make non-static.
27565
27566 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
27567 (allocate_pseudovector): Declare.
27568 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
27569
275702007-11-15 Andreas Schwab <schwab@suse.de>
27571
27572 * editfns.c (Fformat): Correctly format EMACS_INT values.
27573 Also take precision into account when formatting an integer.
27574
27575 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
27576
275772007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
27578
27579 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
27580 (syms_of_keyboard): Defsubr it.
27581
27582 * data.c (swap_in_global_binding): Fix longstanding bug where
27583 store_symval_forwarding was not called with the right second argument,
27584 thus causing objfwd-ing from being dropped.
27585
275862007-11-14 Juanma Barranquero <lekktu@gmail.com>
27587
27588 * macfns.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_visual_class, Fx_display_save_under):
27593 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
27594 (Fx_display_pixel_height, Fx_display_planes)
27595 (Fx_display_color_cells, Fx_server_max_request_size)
27596 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
27597 (Fx_display_mm_height, Fx_display_mm_width)
27598 (Fx_display_backing_store, Fx_display_visual_class)
27599 (Fw32_select_font, Fx_display_save_under):
27600 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
27601 (Fx_display_pixel_height, Fx_display_planes)
27602 (Fx_display_color_cells, Fx_server_max_request_size)
27603 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
27604 (Fx_display_save_under): Fix typos in docstrings.
27605
276062007-11-14 Juanma Barranquero <lekktu@gmail.com>
27607
27608 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
27609 corresponding to deleted entries; they are an implementation detail.
27610 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
27611 Remove variables.
27612 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
27613 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
27614 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
27615 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
27616 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
27617 (Fw32_define_rgb_color, Fw32_load_color_file)
27618 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
27619 Fix typos in docstrings.
27620 (Fx_server_version): Reflow docstring.
27621 (Fw32_shell_execute): Doc fixes.
27622
276232007-11-13 Juanma Barranquero <lekktu@gmail.com>
27624
27625 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
27626 if w32_parse_hot_key returned nil.
27627
276282007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
27629
27630 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
27631
276322007-11-09 Jason Rumney <jasonr@gnu.org>
d6c952f8 27633
aac0c6e3
MR
27634 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
27635
27636 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
27637
27638 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
27639 Remove W32_SCROLL_BAR_CLICK_EVENT.
27640
27641 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
27642 Add MULTIMEDIA_KEY_EVENT.
27643
27644 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
27645 (lispy_multimedia_keys) [WINDOWSNT]: New array.
27646 (make_lispy_event) [WINDOWSNT]: Use it to translate
27647 MULTIMEDIA_KEY_EVENT.
27648
27649 * w32term.h (WM_APPCOMMAND): Define if not already.
27650 (GET_APPCOMMAND_LPARAM): Likewise.
27651
27652 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
27653 WM_APPCOMMAND.
27654
27655 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
27656 (syms_of_w32fns): Export and initialize it.
27657 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
27658
276592007-11-09 Chong Yidong <cyd@stupidchicken.com>
27660
27661 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
27662 twice.
27663
27664 * xdisp.c (handle_face_prop): Fix last change.
27665
276662007-11-09 Richard Stallman <rms@gnu.org>
27667
27668 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
27669 not just for after-strings and before-strings.
27670 Call face_for_overlay_string and pass the overlay to it.
27671 (handle_display_prop): Determine whether property came from an overlay.
27672 Pass OVERLAY arg to handle_single_display_spec.
27673 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
27674 (load_overlay_strings): Fill in it->string_overlays.
27675 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
27676
27677 * xfaces.c (face_for_overlay_string): Function renamed from
27678 face_at_buffer_position_no_overlays, and add arg OVERLAY.
27679
27680 * dispextern.h (struct it): New elt string_overlays.
27681 New elt from_overlay, also in stack.
27682 Rearrange a few elements.
27683 (face_for_overlay_string): Decl renamed from
27684 face_at_buffer_position_no_overlays, and add argument.
27685
276862007-11-09 Richard Stallman <rms@gnu.org>
27687
27688 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
27689 to get the base face for an overlay string.
27690
27691 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
27692
27693 * xfaces.c (face_at_buffer_position_no_overlays): New function.
27694
27695 * xdisp.c (handle_stop): Move some code out of loop.
27696
276972007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27698
27699 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
27700 Fix conversion from Lisp object to ATSUFontID.
27701
277022007-11-09 Jason Rumney <jasonr@gnu.org>
27703
27704 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
27705
277062007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27707
27708 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
27709 Don't assume regions are aligned to page boundary.
27710 (print_load_command_name): Add LC_UUID if defined.
27711
277122007-11-09 Richard Stallman <rms@gnu.org>
27713
27714 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
27715
277162007-11-07 Jason Rumney <jasonr@gnu.org>
27717
27718 * s/windows95.h: Remove.
27719
277202007-11-06 Jan Djärv <jan.h.d@swipnet.se>
27721
27722 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
27723 abort with a message on unhandled store_type values.
27724
277252007-11-01 Jan Djärv <jan.h.d@swipnet.se>
27726
27727 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
27728 Remove HAVE_X11R5 and HAVE_X11R4.
27729
277302007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
27731
27732 * Makefile.in: Remove references to sunfns.c and sunfns.o.
27733
277342007-11-01 Johan Bockgård <bojohan@gnu.org>
27735
27736 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
27737 Don't set s->stippled_p here, since it has already been set by
27738 x_set_glyph_string_gc from x_draw_glyph_string.
27739
277402007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
27741
27742 * sunfns.c: Remove file.
27743
27744 * m/sun386.h:
27745 * m/sun2.h:
27746 * m/sparc.h: Remove Sun windows code.
27747
277482007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
27749
27750 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
27751 (init_keyboard): Set current_kboard's window-system to nil.
27752 (tty_read_avail_input): Typo.
27753 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
27754
277552007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
27756
27757 * s/usg5-4.h:
27758 * s/usg5-3.h:
27759 * s/ptx.h:
27760 * m/is386.h:
27761 * m/ibmps2-aix.h:
27762 * Makefile.in: Remove all mentions of X10.
27763
27764 * dispnew.c (syms_of_display): Don't mention version 10.
27765
277662007-10-28 Juanma Barranquero <lekktu@gmail.com>
27767
27768 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
27769 ($(BLD)/abbrev.$(O)): Remove.
27770
277712007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
27772
27773 Rewrite abbrev.c in Elisp.
27774 * image.c (Qcount): Don't declare as extern.
27775 (syms_of_image): Initialize and staticpro `Qcount'.
27776 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
27777 * emacs.c (main): Don't call syms_of_abbrev.
27778 * Makefile.in (obj): Remove abbrev.o.
27779 (abbrev.o): Remove.
27780 * abbrev.c: Remove.
27781
277822007-10-26 Martin Rudalics <rudalics@gmx.at>
27783
27784 * window.c (window_min_size_2): Don't count header-line.
27785
277862007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
27787
27788 * frame.h (struct frame): Move all bit fields after the first bit
27789 field to take advantage of the available space. Group all the
27790 chars together to reduce wasted space due to padding.
27791
277922007-10-26 Juanma Barranquero <lekktu@gmail.com>
27793
27794 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
27795
27796 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
27797 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
27798 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
27799 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
27800 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
27801 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
27802 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
27803 (last_marked, mark_object_loop_halt): Make static.
27804
27805 * frame.c (syms_of_frame) <delete-frame-functions>:
27806 Fix typo in docstring.
27807
278082007-10-25 Juanma Barranquero <lekktu@gmail.com>
27809
27810 * w32.c (init_environment): Fix tiny memory leak.
27811 (w32_get_resource): Remove unused variable `ok'.
27812
278132007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
27814
27815 Make `window-system' into a keyboard-local variable (rather than
27816 frame-local as done originally by multi-tty).
27817
27818 * keyboard.h (struct kboard): Add Vwindow_system.
27819 * keyboard.c (init_kboard): Set a default for Vwindow_system.
27820 (mark_kboards): Mark Vwindow_system.
27821
27822 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
27823 (init_display): Don't set the obsolete `window-system' frame-param.
27824
27825 * xterm.c (x_term_init):
27826 * w32term.c (w32_create_terminal):
27827 * term.c (init_tty): Set Vwindow_system.
27828 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
27829 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
27830
27831 * xfns.c (Fx_create_frame, x_create_tip_frame):
27832 * w32fns.c (Fx_create_frame, x_create_tip_frame):
27833 * macfns.c (Fx_create_frame):
27834 Don't set the obsolete `window-system' frame-param.
27835
27836 * frame.h (Qwindow_system): Remove.
27837 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
27838 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
27839
278402007-10-24 Richard Stallman <rms@gnu.org>
27841
27842 * frame.c (x_figure_window_size): For fullscreen case,
27843 set USPosition | PPosition without clobbering rest of window_prompting.
27844
27845 * keyboard.c (Fcurrent_idle_time): Doc fix.
27846
27847 * print.c (Fwith_output_to_temp_buffer): Doc fix.
27848
278492007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
27850
27851 * process.c (unwind_request_sigio): Only define if __ultrix__.
27852
27853 * callproc.c (child_setup): Remove spurious *.
27854
27855 * lisp.h (Fget_text_property): Declare.
27856 (have_menus_p): Declare it here rather than in sys-dep header files.
27857 * macterm.h (have_menus_p):
27858 * msdos.h (have_menus_p):
27859 * xterm.h (have_menus_p): Remove.
27860
27861 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
27862 (Fmake_variable_frame_local): Just check the variable's const-ness
27863 rather than checking nil or t.
27864
278652007-10-22 Jason Rumney <jasonr@gnu.org>
27866
27867 * w32fns.c: Include math.h.
27868 (w32_abort): Declaration moved to nt/config.nt.
27869
27870 * s/ms-w32.h (HAVE_STDLIB_H): Define.
27871 (abort): Redefinition moved to nt/config.nt.
27872
27873 * m/windowsnt.h: Remove.
27874
278752007-10-22 Juanma Barranquero <lekktu@gmail.com>
27876
27877 * emacs.c (Fdump_emacs): Fix typo in message.
27878 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
27879 <installation-directory>: Reflow docstring.
27880
278812007-10-22 Juri Linkov <juri@jurta.org>
27882
27883 * minibuf.c: Allow minibuffer default to be a list of default values.
27884 With empty input use the first element of this list as returned default.
27885 (string_to_object)
27886 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
27887 (read_minibuf): If defalt is cons, set histstring to its car.
27888 (Fread_string): If default_value is cons, set val to its car.
27889 (Fread_buffer): If def is cons, use its car.
27890 (Fcompleting_read): If defalt is cons, set val to its car.
27891
278922007-10-21 Michael Albinus <michael.albinus@gmx.de>
27893
27894 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
27895
278962007-10-20 Juanma Barranquero <lekktu@gmail.com>
27897
27898 * doc.c (Fdocumentation): Check for advice in all cases.
27899
279002007-10-19 Chong Yidong <cyd@stupidchicken.com>
27901
27902 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
27903
279042007-10-19 Richard Stallman <rms@gnu.org>
27905
27906 * doc.c (Fdocumentation): Check for and handle an advised function.
27907
279082007-10-19 Juanma Barranquero <lekktu@gmail.com>
27909
27910 * process.c (Fset_process_filter): Doc fix.
27911
279122007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
27913
27914 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
27915 which caused key-translation-map to applied repeatedly (thus breaking
27916 double-mode).
27917
279182007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
27919
27920 * xselect.c (x_own_selection, x_handle_selection_clear)
27921 (x_clear_frame_selections):
27922 * w32menu.c (list_of_panes, list_of_items):
27923 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
27924 * textprop.c (validate_plist, interval_has_all_properties)
27925 (interval_has_some_properties, interval_has_some_properties_list)
27926 (add_properties, text_property_list):
27927 * process.c (Fget_buffer_process, list_processes_1, status_notify):
27928 * minibuf.c (Fassoc_string):
27929 * macselect.c (x_own_selection, x_clear_frame_selections)
27930 (Fx_disown_selection_internal):
27931 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
27932 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
27933
279342007-10-17 Chong Yidong <cyd@stupidchicken.com>
27935
27936 * process.c: Link to libs for calling res_init() if available.
27937 (Fmake_network_process): Call res_init() before getaddrinfo or
27938 gethostbyname, if possible.
27939
279402007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
27941
27942 * lread.c (read1): Set pvectype for char_tables.
27943
27944 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
27945 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
27946 Add type checks.
27947 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
27948
27949 * alloc.c (free_misc): Use XMISCTYPE.
27950 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
27951
279522007-10-17 Glenn Morris <rgm@gnu.org>
27953
27954 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
27955 (syms_of_minibuf): Add Qcompletion_ignore_case.
27956 * dired.c (Qcompletion_ignore_case): Change to external.
27957 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
27958 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
27959 (Fread_file_name): Use it rather than intern'ing.
27960
27961 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
27962 (Fread_coding_system): Ignore case of user input.
27963
279642007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
27965
27966 * xdisp.c (handle_display_prop): Ignore display specs after
27967 replacing one when string text is being replaced.
27968 (handle_single_display_spec): Pretend as if characters with display
27969 property haven't been consumed only when buffer text is being replaced.
27970
279712007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
27972
27973 * xfns.c (Fx_create_frame, Fx_display_list):
27974 * window.c (window_fixed_size_p, enlarge_window)
27975 (shrink_window_lowest_first):
27976 * macterm.c (init_font_name_table):
27977 * macfns.c (Fx_create_frame, Fx_display_list):
27978 * lread.c (close_load_descs):
27979 * keyboard.c (read_char_x_menu_prompt):
27980 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
27981 * coding.c (code_convert_region_unwind): Test the type of an object
27982 rather than just !NILP before extracting data from it.
27983
27984 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
27985
27986 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
27987 (XMISCANY): New macro.
27988 (XMISCTYPE): Use it.
27989 (struct Lisp_Misc_Any): New type.
27990 (union Lisp_Misc): Use it.
27991 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
27992 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
27993 (find_symbol_value, set_internal, default_value, Fset_default)
27994 (Fmake_variable_buffer_local, Fmake_local_variable)
27995 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
27996 (Flocal_variable_if_set_p, Fvariable_binding_locus):
27997 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
27998 * alloc.c (allocate_buffer): Set the size and tag.
27999 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
28000 Use XMISCANY.
28001 (die): Follow the GNU convention for error messages.
28002 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
28003 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
28004 tag any more.
28005 (set_buffer_internal_1):
28006 * frame.c (store_frame_param):
28007 * eval.c (specbind):
28008 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
28009
28010 * doc.c (Fsnarf_documentation): Simplify.
28011
280122007-10-14 Juanma Barranquero <lekktu@gmail.com>
28013
28014 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
28015 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
28016
280172007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
28018
28019 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
28020
280212007-10-14 Juanma Barranquero <lekktu@gmail.com>
28022
28023 * eval.c (do_autoload): Don't save autoloads.
28024
28025 * data.c (Ffset): Save autoload of the function being set.
28026
280272007-10-07 John Paul Wallington <jpw@pobox.com>
28028
28029 * xfns.c (x_create_tip_frame): Set the `display-type' frame
28030 parameter before setting up faces.
28031
280322007-10-13 Eli Zaretskii <eliz@gnu.org>
28033
28034 * ccl.c (Fregister_code_conversion_map):
28035 * keyboard.c (append_tool_bar_item): Reformat last change.
28036
28037 * lisp.h (eabs): Rename from `abs'. All callers changed.
28038
280392007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
28040
28041 * buffer.c (add_overlay_mod_hooklist):
28042 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
28043 * fontset.c (make_fontset):
28044 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
28045 (append_tool_bar_item):
28046 * macmenu.c (grow_menu_items):
28047 * w32menu.c (grow_menu_items):
28048 * xmenu.c (grow_menu_items): Use larger_vector.
28049
280502007-10-13 Eli Zaretskii <eliz@gnu.org>
28051
28052 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
28053 selected frame'' on MSDOS).
28054
280552007-10-12 Martin Rudalics <rudalics@gmx.at>
28056
28057 * frame.c (Qexplicit_name): New variable.
28058 (x_report_frame_params): Report it in parameter alist.
28059 (syms_of_frame): Intern and staticpro it.
28060
280612007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
28062
28063 * macfns.c (x_create_tip_frame): Set terminal for frame.
28064
280652007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
28066
28067 * frame.c (Qenvironment): Remove.
28068 (syms_of_frame) <Qenvironment>: Don't initialize.
28069 (Fdelete_frame): Don't treat the `environment' param specially.
28070 * frame.h (Qenvironment): Don't declare.
28071 * callproc.c (set_initial_environment): Don't set unused frame param.
28072
28073 * frame.c (Fframe_with_environment): Remove.
28074 (syms_of_frame) <Sframe_with_environment>: Don't declare.
28075
28076 * lisp.h (Fframe_with_environment): Don't declare.
28077
280782007-10-10 Juanma Barranquero <lekktu@gmail.com>
28079
28080 * indent.c (indent_tabs_mode, last_known_column)
28081 (last_known_column_modified): Make static.
28082 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
28083
280842007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
28085
28086 * puresize.h (BASE_PURESIZE): Increase to 1170000.
28087
280882007-10-09 Jason Rumney <jasonr@gnu.org>
28089
28090 * w32term.c (x_set_window_size): Disable code that attempts to tell
28091 Lisp code about a size change before it actually happens.
28092
280932007-10-09 Richard Stallman <rms@gnu.org>
28094
28095 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
28096 return HANDLED_RETURN.
28097
280982007-10-08 Martin Rudalics <rudalics@gmx.at>
28099
28100 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
28101 when there's an unread command event.
28102
28103 * frame.c (focus_follows_mouse): Move here from frame.el to allow
28104 window autoselection act appropriately when leaving selected frame.
28105 (syms_of_frame): Initialize focus_follows_mouse.
28106 * frame.h (focus_follows_mouse): Extern it.
28107 * macterm.c (XTread_socket): When focus_follows_mouse is nil
28108 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
28109 * msdos.c (dos_rawgetc): Likewise.
28110 * w32term.c (w32_read_socket): Likewise.
28111 * xterm.c (handle_one_xevent): Likewise.
28112 * xdisp.c (syms_of_xdisp): In doc-string of
28113 mouse-autoselect-window mention focus-follows-mouse.
28114
281152007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
28116
28117 * macterm.c (mac_load_query_font): Fix missing return value.
28118 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
28119 Add BLOCK_INPUT.
28120
281212007-10-08 Richard Stallman <rms@gnu.org>
28122
28123 * xdisp.c (get_window_cursor_type): Implement documented behavior
28124 for cursor-in-non-selected-windows = t.
28125
281262007-10-08 Jason Rumney <jasonr@gnu.org>
28127
28128 * w32.c (w32_get_resource): Always close registry keys.
28129
281302007-10-08 Jason Rumney <jasonr@gnu.org>
28131
28132 * makefile.w32-in (LIBS): Add COMCTL32.
28133
28134 * w32fns.c (globals_of_w32fns): Init common controls.
28135
281362007-10-08 Richard Stallman <rms@gnu.org>
28137
28138 * image.c (our_memory_buffer): Rename from omfib_buffer.
28139
281402007-10-08 Richard Stallman <rms@gnu.org>
28141
28142 * buffer.c (Foverlays_at): Doc fix.
28143
281442007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
28145
28146 * fns.c (Fplist_put): Preserve uneven tail data.
28147
281482007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
28149
28150 * termhooks.h (enum event_kind): Remove trailing comma.
28151
28152 * frame.h (enum): Remove trailing comma.
28153
281542007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
28155
28156 * w32proc.c (delete_child): Don't terminate threads of zombies.
28157
281582007-10-08 Martin Rudalics <rudalics@gmx.at>
28159
28160 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
28161
28162 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
28163 last-repeatable-command.
28164 (init_kboard): Initialize Vlast_repeatable_command.
28165 (command_loop_1): Set it to real_this_command unless that was
28166 bound to an input event.
28167 (mark_kboards): Mark it.
28168
281692007-10-08 Richard Stallman <rms@gnu.org>
28170
28171 * eval.c (condition-case): Doc fix.
28172
281732007-10-08 Masatake YAMATO <jet@gyve.org>
28174
28175 * xfaces.c (tty_supports_face_attributes_p): Fix code
28176 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
28177 was copied and not edited.
28178
281792007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
28180
28181 Add new `input-decode-map' keymap and use it for terminal
28182 escape sequences.
28183 * keyboard.h (struct kboard): Add Vinput_decode_map.
28184 Remove Vlocal_key_translation_map.
28185 * keyboard.c (read_key_sequence): Add support for input-decode-map.
28186 (init_kboard): Init input-decode-map.
28187 Replace local-key-translation-map back with key-translation-map.
28188 (syms_of_keyboard): Declare input-decode-map.
28189 Remove local-key-translation-map. Update docstrings.
28190 (mark_kboards): Mark Vinput_decode_map.
28191 Don't mark Vlocal_key_translation_map.
28192 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
28193 Replace local-key-translation-map back with key-translation-map.
28194 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
28195 Bind in input-decode-map rather than function-key-map.
28196
28197 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
28198 This was made redundant by the previous introduction of XSETPVECTYPE.
28199
282002007-10-09 Richard Stallman <rms@gnu.org>
28201
28202 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
28203
282042007-09-29 Richard Stallman <rms@gnu.org>
28205
28206 * eval.c (internal_condition_case_2, internal_condition_case_1)
28207 (internal_condition_case): Reenable abort if x_catching_errors ()
28208 to see if that really happens and why.
28209
282102007-10-06 Andreas Schwab <schwab@suse.de>
28211
28212 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
28213
282142007-10-04 Juanma Barranquero <lekktu@gmail.com>
28215
28216 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
28217
282182007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
28219
28220 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
28221
282222007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
28223
28224 * window.h (struct window):
28225 * window.c (struct save_window_data, struct saved_window):
28226 * termhooks.h (struct terminal):
28227 * process.h (struct Lisp_Process):
28228 * frame.h (struct frame):
28229 * buffer.h (struct buffer):
28230 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
28231 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
28232 The size field of (pseudo)vectors is now unsigned.
28233 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
28234
28235 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
28236 Turn `count' into an integer.
28237
28238 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
28239 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
28240 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
28241 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
28242 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
28243
28244 * alloc.c (allocate_pseudovector): New fun.
28245 (ALLOCATE_PSEUDOVECTOR): New macro.
28246 (allocate_window, allocate_terminal, allocate_frame)
28247 (allocate_process): Use it.
28248 (mark_vectorlike): New function.
28249 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
28250 (mark_terminals): Use it.
28251 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
28252 (Fmake_byte_code): Use XSETPVECTYPE.
28253
28254 * frame.c (Fframe_parameters): Minor simplification.
28255
28256 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
28257
28258 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
28259
28260 * buffer.c (Fget_buffer_create, init_buffer_once):
28261 * lread.c (defsubr):
28262 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
28263
28264 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
28265 defined differently in the m/*.h files.
28266 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
28267 (XSETPVECTYPE): New macro.
28268 (XSETPSEUDOVECTOR): Use it.
28269
28270 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
28271 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
28272
28273 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
28274 * lread.c (defvar_per_buffer):
28275 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
28276
28277 * window.c (candidate_window_p): Only consider as visible frames that
28278 are on the same terminal.
28279
28280 * m/ibms390x.h (MARKBIT): Remove unused macro.
28281
282822007-10-01 Juanma Barranquero <lekktu@gmail.com>
28283
28284 * lread.c (Fload): Fix typo in docstring.
28285
282862007-10-01 Michaël Cadilhac <michael@cadilhac.name>
28287
28288 * floatfns.c (Fexpt): Manually check for overflows, so that a power
28289 of a non-zero value can't yield zero.
28290
282912007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
28292
28293 * term.c (term_clear_mouse_face, term_mouse_highlight)
28294 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
28295
28296 * print.c (safe_debug_print): Use XHASH.
28297
28298 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
28299 Lisp elements such as tags.
28300 (XHASH): New macro.
28301 (EQ): Use it.
28302 (SREF, SSET, STRING_COPYIN): Use SDATA.
28303 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
28304
28305 * alloc.c (mark_terminal): Remove left-over declaration.
28306 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
28307 (allocate_vectorlike): Remove type argument. Adjust callers.
28308 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
28309 Only handle the one remaining MEM_TYPE_VECTORLIKE.
28310
28311 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
28312 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
28313 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
28314 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
28315 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
28316 Use them.
28317
28318 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
28319 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
28320 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
28321
283222007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
28323
28324 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
28325 loaded by default.
28326
283272007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
28328
28329 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
28330 on this tty.
28331 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
28332
28333 * term.c (mouse_face_window): Rename from Qmouse_face_window.
28334 Update all users.
28335 (handle_one_term_event): Use Gpm_DrawPointer.
28336 (Fgpm_mouse_start): Rename from Fterm_open_connection.
28337 Signal errors instead of returning nil. Always return nil.
28338 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
28339 Make it a noop if gpm-mouse was not activated.
28340 (syms_of_term): Update names.
28341
283422007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
28343
28344 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
28345 (init_sys_modes): Check that gpm_tty is the current tty.
28346
28347 * alloc.c (allocate_terminal): Set the vector size to only count the
28348 lisp fields. Initialize those to nil.
28349 (mark_object): Don't treat terminals specially.
28350 (mark_terminal): Remove.
28351 (mark_terminals): Use mark_object instead.
28352
28353 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
28354 the GC to the beginning.
28355
28356 * indent.h:
28357 * indent.c: Use EMACS_INT for ints coming from Elisp data.
28358
28359 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
28360
283612007-09-25 Jason Rumney <jasonr@gnu.org>
28362
28363 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
28364
28365 * w32console.c (create_w32cons_output): Remove.
28366
28367 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
28368
28369 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
28370 (reset_sys_modes): Use reset_terminal_modes_hook.
28371
283722007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
28373
28374 * eval.c (do_autoload): Don't output any message.
28375
283762007-09-24 Juri Linkov <juri@jurta.org>
28377
28378 * emacs.c (standard_args): Change priority of "--no-splash"
28379 from 40 to 3. Add "--no-desktop" with the same priority.
28380
283812007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
28382
28383 * alloc.c (gc_sweep): Check cons cell mark bits word by word
28384 and optimize the case where they are all 1.
28385
283862007-09-23 Johannes Weiner <hannes@saeurebad.de>
28387
28388 * lisp.h (abs): Define if not defined.
28389 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
28390 Don't define `abs', since it's defined in lisp.h.
28391
283922007-09-22 Eli Zaretskii <eliz@gnu.org>
28393
28394 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
28395 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
28396 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
28397 (init_tty): Use DEV_TTY instead of "/dev/tty".
28398 [WINDOWSNT]: No need to protect from NAME arg being null.
28399
284002007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
28401
28402 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
28403 up the tty state.
28404
284052007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
28406
28407 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
28408 (gpm_tty): Change its type.
28409 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
28410 (gpm_tty): Change its type and initialize it.
28411 (Fterm_open_connection): Check the frame is indeed a tty.
28412 Use the new gpm_tty.
28413 (Fterm_close_connection): Use the new gpm_tty.
28414 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
28415 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
28416
284172007-09-21 Juanma Barranquero <lekktu@gmail.com>
28418
28419 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
28420 underline_color, to draw strike-through.
28421
284222007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
28423
28424 * lisp.h (allocate_terminal): Declare.
28425
28426 * window.c (candidate_window_p): Consider frames that are being placed
28427 by the user as somewhere between visible and iconified.
28428 (window_loop): Prefer windows on the current frame.
28429 (Fselect_window): Move the use of select-frame to the beginning so we
28430 can just delegate all the work (it'll call us back anyway).
28431
28432 * frame.c (Qdisplay_environment_variable):
28433 * frame.h (Qdisplay_environment_variable): Delete.
28434
28435 * .gdbinit (xbacktrace): Print the arg's address rather than the value
28436 of the first arg, since that value may be a union.
28437
28438 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
28439 parameter rather than Qdisplay_environment_variable. If all else
28440 fails, look for DISPLAY in initial-environment.
28441
284422007-09-21 Glenn Morris <rgm@gnu.org>
28443
28444 * Makefile.in (emacstool): Remove target.
28445 (lisp, shortlisp): Remove termdev.elc.
28446
284472007-09-21 Markus Triska <markus.triska@gmx.at>
28448
28449 * xterm.c (x_delete_display): Compile session management conditionally.
28450
284512007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
28452
28453 * callproc.c (getenv_internal_1): New function.
28454 (getenv_internal): Use it.
28455 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
28456
28457 * terminal.c (get_terminal): Don't accept ints to represent terminals.
28458 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
28459 (Fset_terminal_parameter): Work with dead terminals as well.
28460 (Fmodify_terminal_parameters): Remove.
28461
28462 * terminal.c (get_terminal): Handle terminals.
28463 Make sure the terminal returned is live.
28464 (create_terminal): Use allocate_terminal.
28465 (mark_terminals): Move to alloc.c.
28466 (delete_terminal): Use terminal->name as liveness status.
28467 NULL out fields after freeing their contents.
28468 Don't deallocate the object.
28469 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
28470 rather than an int.
28471 (Fterminal_live_p): Accept non-integer arguments.
28472 (Fterminal_list): Return terminal objects rather than an ints.
28473
28474 * alloc.c (enum mem_type): New member for `terminal' objects.
28475 (allocate_terminal): New function.
28476 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
28477 Handle terminals.
28478 (mark_terminal): New fun.
28479 (mark_terminals): Move from terminal.c.
28480
28481 * term.c (get_tty_terminal): Don't treat output_initial specially.
28482 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
28483 (delete_tty): Use terminal->name as liveness status.
28484
28485 * termhooks.h (struct terminal): Make it into a pseudovector.
28486 Remove `deleted' replaced by checking `name's nullness.
28487
28488 * print.c (print_object): Handle terminals.
28489
28490 * lisp.h (enum pvec_type): New `terminal' pseudovector.
28491 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
28492
28493 * frame.c (make_terminal_frame):
28494 * keyboard.c (tty_read_avail_input):
28495 * w32term.c (x_delete_terminal):
28496 * xfns.c (Fx_create_frame, x_create_tip_frame):
28497 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
28498
284992007-09-20 Glenn Morris <rgm@gnu.org>
28500
28501 * process.c (Fmake_network_process): Doc fix.
28502
285032007-09-19 Jason Rumney <jasonr@gnu.org>
28504
28505 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
28506
285072007-09-19 Michaël Cadilhac <michael@cadilhac.name>
28508
28509 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
28510 Fix a C warning regarding variable constness.
28511
28512 * xterm.c (handle_one_xevent): Fix a C warning.
28513
285142007-09-18 Jason Rumney <jasonr@gnu.org>
28515
28516 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
28517
285182007-09-17 Jan Djärv <jan.h.d@swipnet.se>
28519
28520 * gtkutil.c (gdpy_def): New variable.
28521 (xg_initialize): Initialize gdpy_def.
28522 (xg_display_close): If no other display exists, set gdpy_def to a
28523 new connection.
28524
285252007-09-16 Jan Djärv <jan.h.d@swipnet.se>
28526
28527 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
28528 when we have no file name for the icon.
28529 (xg_tool_bar_expose_callback): Remove.
28530 (xg_create_tool_bar): Don't connect expose signal to
28531 xg_tool_bar_expose_callback.
28532 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
28533
285342007-09-16 Andreas Schwab <schwab@suse.de>
28535
28536 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
28537 values instead of zapping them.
28538
285392007-09-14 Glenn Morris <rgm@gnu.org>
28540
28541 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
28542 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
28543 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
28544 scope and rename to omfib_buffer for clarity.
28545 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
28546
285472007-09-14 Kenichi Handa <handa@m17n.org>
28548
28549 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
28550
285512007-09-13 Jason Rumney <jasonr@gnu.org>
28552
28553 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
28554
28555 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
28556
28557 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
28558 (mac_term_init): Call here instead, passing rif.
28559
285602007-09-13 Glenn Morris <rgm@gnu.org>
28561
28562 * s/hpux.h: No longer define `static' as nothing.
28563
285642007-09-13 Johan Bockgård <bojohan@gnu.org>
28565
28566 * callint.c (Fcall_interactively): Remove unused var `fun'.
28567
285682007-09-12 Romain Francoise <romain@orebokech.com>
28569
28570 * window.c (prefer_window_split_horizontally, display_buffer):
28571 Revert 2007-09-08 change.
28572
285732007-09-12 Glenn Morris <rgm@gnu.org>
28574
28575 * alloca.c: Remove file.
28576 * Makefile.in (alloca): Do not undef.
28577 (allocaobj, alloca.o): Remove.
28578 (otherobj): Remove allocaobj.
28579 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
28580 * regex.c (C_ALLOCA): Remove all references and code that was only
28581 used when this was defined.
28582 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
28583 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
28584 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
28585
28586 * Makefile.in (SOURCES, unlock, relock): Delete.
28587
28588 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
28589 (menu_grab_callback): All uses changed.
28590
28591 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
28592 (x_reply_selection_request): All uses changed.
28593
285942007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
28595
28596 * lread.c (load_warn_old_style_backquotes): Change message to look
28597 better when it appears in the middle of byte-compiler messages.
28598
285992007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
28600
28601 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
28602
28603 * xterm.c (x_create_terminal): Add comment.
28604
28605 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
28606
286072007-09-10 Richard Stallman <rms@gnu.org>
28608
28609 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
28610
286112007-09-10 Michaël Cadilhac <michael@cadilhac.name>
28612
28613 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
28614 (DEFUN): Document `intspec', use it instead of `prompt'.
28615
28616 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
28617
28618 * data.c (Finteractive_form): If the interactive specification starts
28619 with a `(', use it as a Lisp form.
28620
28621 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
28622 name and file modes.
28623
28624 * callint.c (Fcall_interactively): Comment fixes.
28625
286262007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
28627
28628 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
28629 and compiled functions.
28630
286312007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
28632
28633 * window.c (prefer_window_split_horizontally): New variable.
28634 (display_buffer): Consider splitting window horizontally depending
28635 on prefer_window_split_horizontally.
28636
286372007-09-08 Eli Zaretskii <eliz@gnu.org>
28638
28639 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
28640
286412007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
28642
28643 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
28644
28645 * frame.c (x_set_frame_parameters): Check number is positive before
28646 using XFASTINT.
28647
28648 * window.c (freeze_window_start): Don't presume selected_window holds
28649 a window object.
28650 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
28651
286522007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
28653
28654 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
28655
286562007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
28657
28658 * window.c (Vsplit_window_preferred_function): New var.
28659 (Fdisplay_buffer): Use it.
28660 (syms_of_window): Export, and initialize it.
28661
286622007-09-06 Pixel <pixel@mandriva.com> (tiny change)
28663
28664 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
28665
286662007-09-06 Glenn Morris <rgm@gnu.org>
28667
28668 * gtkutil.c (menu_grab_callback) <cnt>:
28669 * xselect.c (x_reply_selection_request) <cnt>: Move static
28670 variable to file scope.
28671
286722007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
28673
28674 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
28675 consistent values of selected_frame and selected_window.
28676
286772007-09-04 Jason Rumney <jasonr@gnu.org>
28678
28679 * w32console.c (initialize_w32_display): Zero unused hooks.
28680
286812007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
28682
28683 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
28684 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
28685
286862007-09-04 Jason Rumney <jasonr@gnu.org>
28687
28688 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
28689 in w32console.c. Set up input. Remove XXX comments that have been
28690 confirmed as correct.
28691
28692 * s/ms-w32.h (MULTI_KBOARD): Define.
28693
28694 * w32console.c (one_and_only_w32cons): Remove.
28695 (initialize_w32_display): Take terminal argument.
28696
28697 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
28698 initialize_w32_display.
28699 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
28700
28701 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
28702
28703 * keyboard.c (discard_mouse_events): Discard it.
28704 (make_lispy_event): Translate it to a lisp event.
28705 (lispy_wheel_names): Add wheel-left and right events.
28706 (syms_of_keyboard): Enlarge wheel_syms.
28707
28708 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
28709 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
28710
28711 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
28712
28713 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
28714 from WM_MOUSEHWHEEL.
28715 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
28716
28717 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
28718 terminal.
28719
28720 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
28721 keyboard for the terminal.
28722
287232007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
28724
28725 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
28726 (Vresume_tty_hook): Rename from Vresume_tty_functions.
28727 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
28728 and resume-tty-function to resume-tty-hook.
28729 (Fsuspend_tty, Fresume_tty): Use new names.
28730
287312007-09-02 Jan Djärv <jan.h.d@swipnet.se>
28732
28733 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
28734 if it starts with "n:".
28735
287362007-08-31 Jan Djärv <jan.h.d@swipnet.se>
28737
28738 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
28739
287402007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
28741
28742 * frame.h:
28743 * frame.c (Qterm_environment_variable): Remove.
28744 (syms_of_frame): Don't init and staticpro it.
28745
28746 * callproc.c (getenv_internal): Remove special case for $TERM.
28747
28748 * callproc.c (Vinitial_environment): New variable.
28749 (set_initial_environment): Initialize it.
28750 (syms_of_callproc): Declare it.
28751 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
28752 TERM under which a process runs is never related to the TERM in which
28753 Emacs is running.
28754
287552007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
28756
28757 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
28758 * s/darwin.h: ... do it here.
28759
287602007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
28761
28762 * lisp.h (set_initial_environment): Rename from set_global_environment.
28763
28764 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
28765 removed by mistake on the multi-tty branch.
28766
28767 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
28768 (Fmodify_frame_parameters): Return a value.
28769
28770 * image.c (png_load): Comment-out var only used in commented-out code.
28771
28772 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
28773 before passing it to mark_object.
28774
28775 * xfaces.c (internal_resolve_face_name): Return a value.
28776 (internal_resolve_face_name, resolve_face_name_error): Comment out.
28777
28778 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
28779 (x_icon): Comment-out var only used in commented-out code.
28780
287812007-08-29 Romain Francoise <romain@orebokech.com>
28782
28783 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
28784 QUIT hasn't been provided.
28785
287862007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
28787
28788 * callproc.c (child_setup, getenv_internal): Use the
28789 display-environment-variable and term-environment-variable frame params.
28790 (set_initial_environment): Initialise Vprocess_environment.
28791
28792 * config.in: Disable multi-keyboard support on a mac.
28793
28794 * frame.c (Qterm_environment_variable)
28795 (Qdisplay_environment_variable): New variables.
28796 (syms_of_frame): Intern and staticpro them.
28797 (Fmake_terminal_frame): Disable output method test.
28798
28799 * frame.h: Declare them here.
28800
28801 * macfns.c (x_set_mouse_color): Get rif from the frame.
28802 (x_set_tool_bar_lines): Don't use updating_frame.
28803 (mac_window): Add 2 new parameters for consistency with other systems.
28804 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
28805 frame parameters following what is done in X11 and w32. Don't use
28806 FRAME_MAC_DISPLAY_INFO.
28807 (Fx_open_connection, start_hourglass): Remove window-system check.
28808 (x_create_tip_frame): Get the keyboard from the terminal.
28809
28810 * macmenu.c: Reorder includes.
28811 (Fx_popup_menu): Use terminal specific mouse_position_hook.
28812
28813 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
28814 terminal parameter.
28815 (x_clear_frame): Add a frame parameter.
28816 (note_mouse_movement): Get rif from the frame.
28817 (mac_term_init): Initialize the terminal.
28818 (mac_initialize): Make static and move terminal initialization ...
28819 (mac_create_terminal): ... to this new function.
28820
28821 * macterm.h (struct mac_display_info): Add terminal.
28822 (mac_initialize): Delete declaration.
28823
28824 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
28825
28826 * sysdep.c: Comment out text after #endif.
28827
28828 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
28829 is defined. Better initialize ttys in windows. Use terminal
28830 specific mouse_position_hook.
28831
28832 * termhooks.h (union display_info): Add mac_display_info.
28833
28834 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
28835 Set the default minibuffer frame, window_system and the rest of the
28836 frame parameters following what is done in X11.
28837
28838 * w32term.c (w32_initialize): Make static.
28839
28840 * xselect.c (x_handle_selection_clear): Only access
28841 terminal->kboard when MULTI_KBOARD is defined.
28842
28843 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
28844 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
28845
288462007-08-29 Jason Rumney <jasonr@gnu.org>
28847
28848 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
28849 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
28850
28851 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
28852 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
28853
28854 * keyboard.c (restore_kboard_configuration): Only define when
28855 MULTI_KBOARD defined.
28856
28857 * makefile.w32-in: Update dependancies from Makefile.in.
28858 (OBJ1): Add terminal.$(O)
28859
28860 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
28861 Don't define function body.
28862 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
28863
28864 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
28865
28866 * w32.c (request_sigio, unrequest_sigio): Remove.
28867
28868 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
28869 (w32con_clear_frame, w32con_clear_end_of_line)
28870 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
28871 (w32con_delete_glyphs, w32con_set_terminal_window)
28872 (scroll_line, w32_sys_ring_bell): Add frame arg.
28873 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
28874 Add terminal arg.
28875 (PICK_FRAME): Remove.
28876 (w32con_write_glyphs): Use frame specific terminal coding.
28877 (one_and_only_w32cons): New global variable.
28878 (initialize_w32_display): Use it for storing hooks.
28879 (create_w32cons_output): New function.
28880
28881 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
28882 arg a frame.
28883
28884 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
28885 Set window_system.
28886 (x_set_tool_bar_lines): Don't use updating_frame.
28887 (Fx_create_frame): Set terminal and ref count.
28888 (Fx_open_connection): Remove window-system check.
28889
28890 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
28891
28892 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
28893 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
28894 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
28895 Add frame arg.
28896 (x_delete_terminal, w32_create_terminal): New functions.
28897 (w32_term_init): Create a terminal.
28898 (w32_initialize): Move terminal specific initialization to
28899 w32_create_terminal.
28900
28901 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
28902 (w32_clear_rect, w32_clear_area): Use background from frame.
28903 (w32_display_info): Add terminal.
28904 (w32_sys_ring_bell, x_delete_display): Declare here.
28905
28906 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
28907
28908 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
28909
289102007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
28911
28912 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
28913 Fix get_named_tty calls for the controlling tty.
28914
289152007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
28916
194d44e7 28917 * term.c (dissociate_if_controlling_tty) [USG]: Fix parse error.
aac0c6e3
MR
28918
289192007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
28920
28921 * term.c (tty_insert_glyphs): Add missing first parameter.
28922
289232007-08-29 Károly Lőrentey <karoly@lorentey.hu>
28924
28925 * buffer.c (Fbuffer_list, Fbury_buffer):
28926 Take frame->buried_buffer_list into account.
28927
28928 * cm.c (current_tty): New variable, for cmputc().
28929 (cmputc): Use it.
28930 (cmcheckmagic): Add tty parameter, look up terminal streams there.
28931 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
28932 (cmgoto): Add tty parameter. Pass it on to calccost().
28933 Use emacs_tputs() instead of tputs().
28934
28935 * cm.h (emacs_tputs): New macro to set current_tty, and then call
28936 tputs().
28937 (current_tty): New variable, for cmputc().
28938 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
28939
28940 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
28941 (internal_condition_case, internal_condition_case_1)
28942 (internal_condition_case_2): Don't abort when x_catching_errors.
28943
28944 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
28945 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
28946 prevent crashes caused by bogus longjmps in read_char.
28947
28948 * keymap.h (Fset_keymap_parent): Add EXFUN.
28949
28950 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
28951 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
28952 Remove redundant definition.
28953
28954 * macfns.c (x_set_mouse_color, x_make_gc):
28955 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28956
28957 * w32term.c (x_free_frame_resources):
28958 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28959 (w32_initialize): Use the accessor macros for terminal characteristics.
28960
28961 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
28962 Use the accessor macros for terminal characteristics.
28963 * msdos.c (internal_terminal_init): Use the accessor macros for
28964 terminal characteristics.
28965 (ScreenVisualBell, internal_terminal_init):
28966 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28967
28968 * termopts.h (no_redraw_on_reenter): Declare.
28969
28970 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
28971 (mark_terminals, mark_ttys): Declare.
28972 (Fgarbage_collect): Call them.
28973 (mark_object): Mark buried_buffer_list.
28974
28975 * prefix-args.c: Include stdlib.h for exit.
28976
28977 * syssignal.h: Add comment.
28978
28979 * indent.c: Include stdio.h.
28980
28981 * window.h (Vinitial_window_system): Declare.
28982 (Vwindow_system): Delete declaration.
28983
28984 * fontset.c (Finternal_char_font): Use FRAME_RIF.
28985
28986 * image.c (lookup_image): Don't initialize `c' until the xasserts
28987 have been run.
28988
28989 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
28990 FRAME_FOREGROUND_PIXEL.
28991
28992 * print.c (print_preprocess): Don't lose print_depth levels while
28993 iterating.
28994
28995 * widget.c (update_from_various_frame_slots):
28996 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
28997
28998 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
28999 frames.
29000 (window_internal_height): Remove bogus make_number call.
29001 (init_window_once): Call make_terminal_frame with two zero parameters.
29002
29003 * fileio.c (Fread_file_name): Update comment.
29004
29005 * callint.c (Fcall_interactively):
29006 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
29007 Make sure it is correctly unwound.
29008
29009 * xsmfns.c (x_session_close): New function.
29010
29011 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
29012 Delete declarations.
29013
29014 * xterm.h: Remove declaration for x_fully_uncatch_errors.
29015 (x_output): Remove background_pixel and foreground_pixel fields.
29016 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
29017 (x_delete_device, x_session_close): Declare.
29018
29019 * lread.c: Include setjmp.h. Update declaration of `read_char'.
29020 (read_filtered_event): Call `read_char' with a local
29021 `wrong_kboard_jmpbuf'.
29022
29023 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
29024 Don't call single_kboard_state. Use FRAME_RIF.
29025
29026 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
29027 systems.
29028
29029 * lisp.h (set_process_environment): Rename to `set_global_environment'.
29030 (Fframe_with_environment, Fset_input_meta_mode)
29031 (Fset_quit_char): EXFUN.
29032 (x_create_device, tty_output, terminal, tty_display_info): Declare.
29033 (init_sys_modes, reset_sys_modes): Update prototypes.
29034 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
29035
29036 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
29037 Vlocal_key_translation_map, and Vkeyboard_translate_table.
29038 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
29039 Delete declarations.
29040 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
29041 (temporarily_switch_to_single_kboard, tty_read_avail_input):
29042 New declarations.
29043
29044 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
29045 already does that during init_display(). Call syms_of_keymap
29046 before syms_of_keyboard. Call `syms_of_terminal'.
29047 Call set_initial_environment, not set_process_environment.
29048 (shut_down_emacs): Call reset_all_sys_modes() instead of
29049 reset_sys_modes().
29050
29051 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
29052 (internal_resolve_face_name, resolve_face_name_error): New functions.
29053 (resolve_face_name): Protect against loops and errors thrown by Fget.
29054 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
29055 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
29056
29057 * scroll.c: Replace CURTTY() with local variables throughout the
29058 file (where applicable).
29059 (calculate_scrolling, calculate_direct_scrolling)
29060 (scrolling_1, scroll_cost): Use the accessor macros for terminal
29061 characteristics.
29062
29063 * keymap.c (Vfunction_key_map): Remove.
29064 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
29065 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
29066 (Vkey_translation_map): Remove.
29067 (syms_of_keymap): Remove DEFVAR for key-translation-map.
29068 (Fdescribe_buffer_bindings)
29069 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
29070 Update for terminal-local key-translation-map.
29071
29072 * Makefile.in (callproc.o): Update dependencies.
29073 (lisp, shortlisp): Add termdev.elc.
29074 (obj): Add terminal.o.
29075 (terminal.o): Add dependencies.
29076 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
29077 (data.o, fns.o): Add termhooks.h dependency.
29078 (SOME_MACHINE_LISP): Add dnd.elc.
29079 (minibuf.o): Fix typo.
29080 Update dependencies.
29081
29082 * data.c (do_symval_forwarding, store_symval_forwarding)
29083 (find_symbol_value): Use the selected frame's keyboard, not
29084 current_kboard.
29085
29086 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
29087 Vwindow_system.
29088
29089 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
29090 Fmenu_bar_open.
29091 (syms_of_xmenu): Update defsubr.
29092 (mouse_position_for_popup, Fx_popup_menu)
29093 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
29094 (set_frame_menubar, free_frame_menubar)
b97439ce 29095 (create_and_show_popup_menu, xmenu_show)
aac0c6e3
MR
29096 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
29097 an X frame.
29098
29099 * xselect.c (x_own_selection): Abort if not an X frame.
29100 (some_frame_on_display): Check if it is an X frame.
29101 (x_handle_selection_clear): Deal with MULTI_KBOARD.
29102
29103 * coding.c: Include frame.h and termhooks.h.
29104 (terminal_coding, keyboard_coding): Delete.
29105 (Fset_terminal_coding_system_internal)
29106 (Fset_keyboard_coding_system_internal)
29107 (Fkeyboard_coding_system)
29108 (Fterminal_coding_system): Add a terminal parameter.
29109 Get terminal_coding from the terminal.
29110 (init_coding_once): Don't call setup_coding_system here.
29111
29112 * dispextern.h (set_scroll_region, turn_off_insert)
29113 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
29114 (tty_clear_end_of_line, tty_setup_colors)
29115 (delete_tty, updating_frame)
29116 (produce_special_glyphs, produce_glyphs, write_glyphs)
29117 (insert_glyphs): Remove.
29118 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
29119 (tty_turn_off_highlight, get_tty_size): Add declaration.
29120 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
29121
29122 * frame.h (enum output_method): Add output_initial.
29123 (struct x_output): Delete.
29124 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
29125 Access foreground_pixel and background_pixel directly from the frame.
29126 (tty_display): Delete.
29127 (struct frame): Add buried_buffer_list, foreground_pixel,
29128 background_pixel and terminal. Delete kboard.
29129 (union output_data): Add tty.
29130 (FRAME_KBOARD): Get the kboard from the terminal.
29131 (FRAME_INITIAL_P): New macro.
29132 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
29133 (Qterm_environment_variable, Qdisplay_environment_variable)
29134 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
29135 New declarations.
29136
29137 * termchar.h (tty_output, tty_display_info): New structures.
29138 (tty_list): Declare.
29139 (FRAME_TTY, CURTTY): New macros.
29140 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
29141 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
29142 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
29143 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
29144
29145 * callproc.c: Include frame.h and termhooks.h, for terminal
29146 parameters.
29147 (add_env): New function.
29148 (child_setup): Use it.
29149 (child_setup, getenv_internal): Handle the new Vprocess_environment.
29150 (getenv_internal): Fix get_terminal_param call.
29151 (Fgetenv_internal, egetenv): Update doc.
29152 (syms_of_callproc): Initialize Vprocess_environment to nil.
29153 Register and initialize them. Remove obsolete defvars. Update doc
29154 strings.
29155 (child_setup): Handle Vlocal_environment_variables.
29156 (getenv_internal): Add terminal parameter.
29157 Handle Vlocal_environment_variables.
29158 (Fgetenv_internal): Add terminal parameter.
29159 (child_setup, getenv_internal, Fgetenv_internal): Store the local
29160 environment in a frame (not terminal) parameter. Update doc strings.
29161 (set_initial_environment): Rename from set_global_environment.
29162 Store Emacs environment in initial frame parameter.
29163
29164 * xdisp.c (redisplay_internal): Update references to
29165 `previous_terminal_frame'.
29166 (display_mode_line, Fformat_mode_line): Replace calls to
29167 `push_frame_kboard' with `push_kboard'.
29168 (get_glyph_string_clip_rects): Add extra parentheses and
29169 braces to prevent compiler warnings.
29170 (calc_pixel_width_or_height): Add xassert to check that the
29171 frame is alive. Don't call `lookup_image' on a termcap frame.
29172 (message2_nolog, message3_nolog, redisplay_internal)
29173 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
29174 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
29175 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
29176 (Fx_display_pixel_width, Fx_display_pixel_height)
29177 (Fx_display_planes, Fx_display_color_cells)
29178 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
29179 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
29180 (Fx_display_backing_store, Fx_display_visual_class)
29181 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
29182 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
29183
29184 * xfns.c (x_set_foreground_color x_set_background_color)
29185 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
29186 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
29187 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
29188 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
29189 terminal that is being deleted.
29190 (Fx_create_frame): Use `store_frame_param' to set `window-system'
29191 frame parameter, and make sure it overrides any user-supplied setting.
29192 (Fx_close_connection, Fx_synchronize): Unify argument names with
29193 the rest of the DEFUNs.
29194
29195 * dispnew.c (Fsend_string_to_terminal): Update call to
29196 `get_tty_terminal'.
29197 (Fredraw_frame, Fsend_string_to_terminal)
29198 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
29199 FRAME_TERMCAP_P and FRAME_TTY.
29200 (window_change_signal): Don't believe width/height values that are
29201 impossibly small.
29202 (Vinitial_window_system): Rename from Vwindow_system.
29203 (termscript, Wcm, rif): Delete.
29204
29205 * termhooks.h (struct terminal): New struct containing the
29206 previously global text display hooks and new members NAME,
29207 DELETED and PARAM_ALIST.
29208 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
29209 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
29210 (FRAME_RIF): New macros.
29211 (get_terminal_param, get_device): New declarations.
29212 (termscript): Delete declaration.
29213
29214 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
29215 (XTflash, x_free_frame_resources, x_scroll_bar_create)
29216 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
29217 FRAME_FOREGROUND_PIXEL.
29218 (x_fully_uncatch_errors): Disable definition.
29219 (x_scroll_bar_expose): Fix reference to foreground pixel.
29220 (XTread_socket): Disable loop on all X displays.
29221 (x_delete_terminal): Don't set terminal->deleted and let
29222 delete_terminal delete the frames on the terminal.
29223 (x_delete_display): Doc update to reflect changes in
29224 delete_terminal.
29225 (x_display_info) <terminal>: Move member earlier in the struct.
29226 (deleting_tty): Remove old variable.
29227 (Fsuspend_tty): Call clear_tty_hooks.
29228 (Fresume_tty, init_tty): Call set_tty_hooks.
29229 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
29230 errors on X frames.
29231 (x_catch_errors_unwind): Abort if x_error_message is NULL.
29232 (handle_one_xevent): Initialize `f' to NULL.
29233 (x_delete_terminal, x_create_terminal): New functions.
29234 (XTset_terminal_modes, XTreset_terminal_modes)
29235 (XTread_socket, x_connection_closed, x_term_init)
29236 (x_term_init, x_delete_display): Add terminal parameter.
29237 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
29238 X connections.
29239
29240 * frame.c: Include termchar.h.
29241 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
29242 (Qwindow_system, Qenvironment, Qterm_environment_variable)
29243 (Qdisplay_environment_variable): New vars.
29244 (Fframep): Deal with output_initial.
29245 (Fframe-live-p): Doc fix.
29246 (Fwindow-system): New function.
29247 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
29248 (make_terminal_frame): Don't create frames on a terminal that is
29249 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
29250 (store_frame_param): Check for found_for_frame before calling XFRAME.
29251 (Fmake_terminal_frame): Handle NULL tty names correctly.
29252 (syms_of_frame): Enhance doc string of `default-frame-alist'.
29253 (Fdelete_frame): Remove unused variable `count'. Don't allow other
29254 frames to refer to a deleted frame in their 'environment parameter.
29255 (Fframe_with_environment): New function.
29256 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
29257 (get_future_frame_param): New function.
29258 (Fmake_terminal_frame): Use it.
29259 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
29260
29261 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
29262 * sysdep.c (reset_sys_modes): Update for renames.
29263
29264 * keyboard.c (tty_read_avail_input): New function.
29265 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
29266 (syms_of_keyboard): Defsubr them.
29267 (Fset_input_meta_mode, Fset_quit_char): New functions.
29268 (Fset_input_mode): Split to above functions.
29269 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
29270 parameter. Use it in call to `read_char'.
29271 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
29272 Set wrong_kboard_jmpbuf correctly in recursive calls.
29273 Use current_kboard to access Vkeyboard_translate_table.
29274 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
29275 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
29276 Update longjmp invocations. Remember the original current_kboard,
29277 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
29278 changes it. Comment out unnecessary calls to
29279 `record_single_kboard_state' and `any_kboard_state'.
29280 Update recursive calls.
29281 (wrong_kboard_jmpbuf): Remove global variable.
29282 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
29283 Handle deleted interrupted_kboards correctly; that is a legal
29284 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
29285 and read_char calls. Abort if interrupted_kboard died in read_char.
29286 (any_kboard_state, single_kboard_state)
29287 (push_frame_kboard): Remove function.
29288 (pop_kboard): Switch out of single_kboard mode if the kboard has
29289 been deleted. Remove unused variable. Help debugging by not
29290 changing current_kboard unnecessarily. Set current_kboard to the
29291 kboard of the selected frame when the stored kboard object has
29292 been deleted before pop_kboard.
29293 (temporarily_switch_to_single_kboard): Change first parameter to a
29294 frame pointer. Throw an error when caller wants to change kboards
29295 while in single_kboard mode. Don't push_kboard if we weren't in
29296 single kboard state. Don't pop_kboard if we popped into any
29297 kboard state.
29298 (restore_kboard_configuration): Abort if pop_kboard changed the
29299 kboard in single_kboard mode. Call pop_kboard only after setting
29300 up single_kboard mode.
29301 (Frecursive_edit): Switch to single_kboard mode only in nested
29302 command loops.
29303 (cmd_error, command_loop, command_loop_1, timer_check):
29304 Comment out unnecessary call to `any_kboard_state' and
29305 `record_single_kboard_state'.
29306 (delete_kboard): Exit single_kboard mode if we have just deleted
29307 that kboard. Use FRAME_KBOARD.
29308 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
29309 `fatal_error_signal'.
29310 (record_single_kboard_state): Don't push_kboard if we weren't in
29311 single kboard state. Don't pop_kboard if we popped into any
29312 kboard state.
29313 (push_frame_kboard): Rename to push_kboard.
29314 (kbd_buffer_get_event): Use FRAME_TERMINAL.
29315 (read_avail_input): Read input from all terminals.
29316 (mark_kboards): Also mark Vkeyboard_translate_table.
29317 (kbd_buffer_store_event_hold): Simplify condition.
29318 (read_key_sequence): Reinitialize fkey and keytran at each replay.
29319 (Vkeyboard_translate_table): Move to struct kboard.
29320 (init_kboard): Initialize Vkeyboard_translate_table.
29321 (syms_of_keyboard): Use DEFVAR_KBOARD to define
29322 Vkeyboard_translate_table. Update doc strings. Update docs of
29323 local-function-key-map and function-key-map.
29324
29325 * terminal.c: New file.
29326
29327 * term.c: Include errno.h.
29328 (Vring_bell_function, device_list, initial_device)
29329 (next_device_id, ring_bell, update_begin, update_end)
29330 (set_terminal_window, cursor_to, raw_cursor_to)
29331 (clear_to_end, clear_frame, clear_end_of_line)
29332 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
29333 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
29334 (syms_of_term): Move their initialization to terminal.c.
29335 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
29336 (Ftty_display_color_cells)
29337 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
29338 (clear_tty_hooks, set_tty_hooks)
29339 (init_tty, maybe_fatal): New functions.
29340 (Ftty_type): Return nil if terminal is not on a tty instead of
29341 throwing an error. Doc update.
29342 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
29343 Doc update. Initialize new subrs and variables.
29344 (delete_tty): Use terminal->deleted.
29345 (tty_set_terminal_modes): Rename from set_terminal_modes.
29346 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
29347 (set_scroll_region): Rename to `tty_set_scroll_region'.
29348 (turn_on_insert): Rename to `tty_turn_on_insert'.
29349 (turn_off_insert): Rename to `tty_turn_off_insert'.
29350 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
29351 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
29352 (toggle_highligh): Rename to `tty_toggle_highlight'.
29353 (background_highlight): Rename to `tty_background_highlight'.
29354 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
29355 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
29356 (tty_set_scroll_region, tty_background_highlight)
29357 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
29358 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
29359 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
29360 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
29361 Add static modifier.
29362 (tty_reset_terminal_modes, tty_set_terminal_window)
29363 (tty_set_scroll_region, tty_background_highlight)
29364 (tty_highlight_if_desired, tty_cursor_to)
29365 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
29366 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
29367 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
29368 renames.
29369
293702007-08-28 Jan Djärv <jan.h.d@swipnet.se>
29371
29372 * keyboard.c: Qrtl is new.
29373 (parse_tool_bar_item): Handle :rtl keyword.
29374 (syms_of_keyboard): Intern :rtl keyword.
29375
29376 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
29377
29378 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
29379 so no Lisp code is executed.
29380 (file_for_image, find_rtl_image): New functions.
29381 (xg_get_image_for_pixmap): Use file_for_image.
29382 (update_frame_tool_bar): If direction is RTL, use RTL image if
29383 defined. Use Gtk stock images if defined.
29384
293852007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29386
29387 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
29388 for nonexistent or zero-width glyph in composition glyph.
29389
293902007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
29391
29392 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
29393
29394 * xdisp.c (Finvisible_p): New function.
29395 (syms_of_xdisp): defsubr it.
29396
293972007-08-24 Juanma Barranquero <lekktu@gmail.com>
29398
29399 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
29400 Doc fixes.
29401
294022007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29403
29404 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
29405
294062007-08-24 Martin Rudalics <rudalics@gmx.at>
29407
29408 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
29409 whether decoding has modified buffer contents.
29410
294112007-08-24 Jason Rumney <jasonr@gnu.org>
29412
29413 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
29414 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
29415 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
29416 (init_svg_functions) [HAVE_NTGUI]: New function.
29417 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
29418 (svg_load_image): Use them.
29419 (svg_load_image) [HAVE_NTGUI]: Implement background.
29420
294212007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29422
29423 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
29424 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
29425 (LIBX): Remove @RSVG_LIBS@.
29426 (LIBES): Add $(RSVG_LIBS).
29427
29428 * image.c (svg_load_image): Blend with specified background if exists.
29429 Use IMAGE_BACKGROUND. Add Mac OS Support.
29430
29431 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
29432 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
29433 Remove macros.
29434 [MAC_OSX] (socket_callback): Do nothing.
29435 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
29436 ReceiveNextEvent.
29437 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
29438 socket_callback.
29439 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
29440
294412007-08-22 Glenn Morris <rgm@gnu.org>
29442
29443 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
29444
294452007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
29446
29447 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
29448
29449 * image.c: Add support for SVG images. Some additional comments
29450 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
29451 (svg_image_p): New function to test for SVG image.
29452 (svg_load): New function to load SVG image.
29453 (svg_load_image): New function, helper for svg_load.
29454 (Qsvg): New Lisp_object.
29455 (svg_keyword_index): New enum.
29456 (svg_format): New static `image_keyword' struct.
29457 (svg_type): New static `image_type' struct.
29458 (librsvg/rsvg.h): Include it.
29459
294602007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
29461
29462 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
29463
294642007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
29465
29466 * lread.c (Qold_style_backquotes): New var.
29467 (syms_of_lread): Init and staticpro it.
29468 (load_warn_old_style_backquotes): New fun.
29469 (Fload): Use them to warn about old style backquotes.
29470 (end_of_file_error, Fload): Remove unused vars.
29471
29472 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
29473
29474 * lread.c (Vold_style_backquotes): New var.
29475 (syms_of_lread): Init and export it to Elisp.
29476 (read1): Set it when we find an old-style (back)quote.
29477
294782007-08-22 Jason Rumney <jasonr@gnu.org>
29479
29480 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
29481
294822007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
29483
29484 * puresize.h (BASE_PURESIZE): Increase to 1140000.
29485
294862007-08-19 Richard Stallman <rms@gnu.org>
29487
29488 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
29489
294902007-08-19 Andreas Schwab <schwab@suse.de>
29491
29492 * alloc.c (pure): Round PURESIZE up.
29493
294942007-08-17 Jan Djärv <jan.h.d@swipnet.se>
29495
29496 * xterm.c (handle_one_xevent): Remove check that mouse click is in
29497 active frame.
29498
294992007-08-16 Richard Stallman <rms@gnu.org>
29500
29501 * eval.c (Fcommandp): Add parens to clarify.
29502
29503 * minibuf.c (Fall_completions): Use enum for type of table.
29504
29505 * emacs.c (USAGE2): Improve text.
29506
295072007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
29508
29509 * term.c (tty_default_color_capabilities): Declare static
29510 variables in file scope, to avoid HPUX compiler problem.
29511
295122007-08-13 Jan Djärv <jan.h.d@swipnet.se>
29513
29514 * gtkutil.c (update_frame_tool_bar): Use -1 as index
29515 to gtk_toolbar_insert.
29516
295172007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
29518
29519 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
29520
29521 * insdel.c (reset_var_on_error): New fun.
29522 (signal_before_change, signal_after_change):
29523 Use it to reset (after|before)-change-functions to nil in case of error.
29524 Bind inhibit-modification-hooks to t.
29525 Don't bind (after|before)-change-functions to nil while they run.
29526
295272007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29528
29529 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
29530 filling pixmap with stippled background.
29531
295322007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29533
29534 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
29535 Don't use invisible frame as parent window for repositioning.
29536
295372007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
29538
29539 * print.c (new_backquote_output): Rename from old_backquote_output.
29540 (print): Inverse its logic (according to its name) so as to match the
29541 behavior of new_backquote_flag in lread.c.
29542
295432007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29544
29545 * gmalloc.c (posix_memalign): New function.
29546
29547 * macterm.c (frame_highlight, frame_unhighlight): Don't call
29548 ActivateControl/DeactivateControl here.
29549 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
29550 frame-notice-user-settings is non-nil.
29551 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
29552 for kEventParamFMFontStyle.
29553 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
29554 mac_pass_command_to_system and mac_pass_control_to_system here.
29555 (XTread_socket): Call ActivateControl/DeactivateControl here.
29556 (XTread_socket) [TARGET_API_MAC_CARBON]:
29557 Check mac_pass_command_to_system and mac_pass_control_to_system here.
29558 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
29559 for window repositioning.
29560
295612007-08-08 Glenn Morris <rgm@gnu.org>
29562
29563 * Replace `iff' in doc-strings and comments.
29564
295652007-08-07 Chong Yidong <cyd@stupidchicken.com>
29566
29567 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
29568
295692007-08-07 Martin Rudalics <rudalics@gmx.at>
29570
29571 * fileio.c (Finsert_file_contents): Run format-decode and
29572 after_insert_file_functions on entire buffer when REPLACE is
29573 non-nil and inhibit modification_hooks and point_motion_hooks.
29574 For consistency, run after_insert_file_functions iff something
29575 got inserted. Move signal_after_change and update_compositions
29576 after code running after_insert_file_functions. Make sure that
29577 undo_list doesn't record intermediate steps of the decoding process.
29578
295792007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29580
29581 * emacs.c (main)
29582 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
29583 Call malloc_enable_thread on interactive startup.
29584
29585 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
29586 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
29587 [USE_PTHREAD]: Conditionalize with it.
29588 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
29589 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
29590 New functions.
29591
295922007-08-06 Chong Yidong <cyd@stupidchicken.com>
29593
29594 * xdisp.c (redisplay_window): When restoring original buffer
29595 position, make sure it is still valid.
29596
29597 * image.c (png_load): Ignore png-supplied background color.
29598
295992007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29600
29601 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
29602 Use kCFAbsoluteTimeIntervalSince1970.
29603
29604 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
29605 New variable.
29606 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
29607 event loop should be quit.
29608 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
29609 Quit dialog event loop if quit_dialog_event_loop is set.
29610
29611 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
29612 (Selection): New typedef. Use instead of ScrapRef.
29613 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
29614 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
29615 (mac_clear_selection): Rename from clear_scrap.
29616 (get_flavor_type_from_symbol): New argument SEL and subsume function of
29617 scrap_has_target_type. All uses changed.
29618 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
29619 (mac_selection_has_target_p): New functions.
29620 (mac_put_selection_value): Rename from put_scrap_string.
29621 (mac_get_selection_value): Rename from get_scrap_string.
29622 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
29623 (put_scrap_private_timestamp, scrap_has_target_type)
29624 (get_scrap_private_timestamp): Remove functions.
29625 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
29626 (x_own_selection, x_get_local_selection):
29627 Use mac_valid_selection_value_p.
29628 (x_own_selection): Don't use put_scrap_private_timestamp.
29629 Record OWNERSHIP-INFO into Vselection_alist instead.
29630 (x_get_local_selection): Don't check type if request is local.
29631 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
29632 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
29633
296342007-08-04 Jan Djärv <jan.h.d@swipnet.se>
29635
29636 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
29637 add comment explaining why.
29638
296392007-08-03 Richard Stallman <rms@gnu.org>
29640
29641 * fileio.c (Fvisited_file_modtime): Use make_time.
29642
296432007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
29644
29645 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
29646 build.
29647
296482007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
29649
29650 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
29651
296522007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
29653
29654 * puresize.h (BASE_PURESIZE): Increase to 1130000.
29655
296562007-07-30 Richard Stallman <rms@gnu.org>
29657
29658 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
29659
296602007-07-29 Jan Djärv <jan.h.d@swipnet.se>
29661
29662 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
29663
296642007-07-28 Nick Roberts <nickrob@snap.net.nz>
29665
29666 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
29667 remote default-directory.
29668
29669 * buffer.c (mode-line-format): Update doc string.
29670
296712007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29672
29673 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
29674 scroll bar gap.
29675 (x_scroll_bar_create): Set bar->fringe_extended_p.
29676 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
29677 on frame edge. Check fringe background extension. Don't clear
29678 extended fringe background area.
29679
29680 * w32term.h (struct scroll_bar): New member fringe_extended_p.
29681 (w32_fill_area): Enclose multiple statements with do ... while (0).
29682
29683 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
29684 Extend fringe background to scroll bar gap.
29685 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
29686 Set bar->fringe_extended_p.
29687 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
29688 Put leftmost/rightmost scroll bars on frame edge. Check fringe
29689 background extension. Don't clear extended fringe background area.
29690
29691 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
29692 New member fringe_extended_p.
29693
296942007-07-25 Glenn Morris <rgm@gnu.org>
29695
29696 * Relicense all FSF files to GPLv3 or later.
29697
29698 * COPYING: Switch to GPLv3.
29699
297002007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
29701
29702 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
29703
29704 * data.c (Finteractive_form): Check for the presence of an
29705 `interactive-form' symbol property more thoroughly.
29706
29707 * data.c (Finteractive_form): Use an `interactive-form' property if
29708 present, analogous to the function-documentation property.
29709
297102007-07-24 Jason Rumney <jasonr@gnu.org>
29711
29712 * w32fns.c (x_real_positions): Get real position from OS instead of
29713 calculating it.
29714
297152007-07-23 Jason Rumney <jasonr@gnu.org>
29716
29717 * filelock.c (current_lock_owner): Allow for @ sign in username.
29718
297192007-07-22 Nick Roberts <nickrob@snap.net.nz>
29720
29721 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
29722 remote default-directory.
29723
29724 * buffer.c (mode-line-format): Describe above case in doc string.
29725
297262007-07-20 Eli Zaretskii <eliz@gnu.org>
29727
29728 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
29729 Define if not defined.
29730
297312007-07-18 Jason Rumney <jasonr@gnu.org>
29732
29733 * w32proc.c (w32_executable_type): Handle 64 bit executables.
29734
297352007-07-18 Richard Stallman <rms@gnu.org>
29736
29737 * data.c (Fsetq_default): Doc fix.
29738
29739 * eval.c (Fsetq): Doc fix.
29740
297412007-07-18 Juanma Barranquero <lekktu@gmail.com>
29742
29743 * coding.c (Ffind_operation_coding_system):
29744 * eval.c (For, Fand): Doc fixes.
29745 Reported by Johan Bockgård.
29746
297472007-07-18 Jan Djärv <jan.h.d@swipnet.se>
29748
29749 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
29750
29751 * xterm.h: Declare x_ewmh_activate_frame.
29752
29753 * xterm.c (x_ewmh_activate_frame): New function.
29754 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
29755
297562007-07-17 Martin Rudalics <rudalics@gmx.at>
29757
29758 * window.c (Fdisplay_buffer): If largest or LRU window is the
29759 only window, split it even if it is not eligible for splitting.
29760 This restores the original behavior broken by the 2007-07-15
29761 change.
29762
297632007-07-17 Glenn Morris <rgm@gnu.org>
29764
29765 * abbrev.c (abbrev_check_chars): New function.
29766 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
29767 Call abbrev_check_chars to check abbrev characters are word
29768 constituents. Doc fix.
29769
297702007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
29771
29772 * process.c (Fstart_process, Fmake_network_process)
29773 (read_process_output): Fix up last changes.
29774
297752007-07-16 Eli Zaretskii <eliz@gnu.org>
29776
29777 * makefile.w32-in (clean): Don't delete *~.
29778
297792007-07-16 Andreas Schwab <schwab@suse.de>
29780
29781 * window.c (Fdisplay_buffer): Use NILP.
29782 (Fset_window_scroll_bars): Likewise.
29783
297842007-07-15 Martin Rudalics <rudalics@gmx.at>
29785
29786 * window.c (window_min_size_2): New function.
29787 (window_min_size_1, size_window, Fdisplay_buffer)
29788 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
29789 windows without mode- or header-lines when window-min-height is
29790 too small.
29791 (size_window): Reset nodelete_p after testing it, following an
29792 earlier note by Kim F. Storm.
29793 (display_buffer): Do not set split_height_threshold to twice the
29794 value of window_min_height to avoid changing the value of a
29795 customizable variable. Rather explicitly check whether the
29796 height of the window that shall be splitted is at least as large
29797 as split_height_threshold.
29798 (Fwindow_full_width_p): New defun.
29799 (syms_of_window): Defsubr it.
29800
29801 * window.h: Add EXFUN for Fwindow_full_width_p.
29802
298032007-07-14 Jason Rumney <jasonr@gnu.org>
29804
29805 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
29806
298072007-07-14 Richard Stallman <rms@gnu.org>
29808
29809 * eval.c (maybe_call_debugger): New function.
29810 (find_handler_clause): Use maybe_call_debugger.
29811 Call it when the handler says `debug'.
29812 Eliminate DEBUGGER_VALUE_PTR.
29813 (Fsignal): Eliminate debugger_value.
29814 (Qdebug): New variable.
29815 (syms_of_eval): Initialize it.
29816
298172007-07-14 Juanma Barranquero <lekktu@gmail.com>
29818
29819 * eval.c (Fprogn):
29820 * keyboard.c (Ftrack_mouse):
29821 * print.c (Fwith_output_to_temp_buffer):
29822 * window.c (Fsave_window_excursion): Doc fix.
29823
298242007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
29825
29826 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
29827
298282007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
29829
29830 * process.h (struct Lisp_Process): Turn slots infd, outfd,
29831 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
29832 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
29833 read_output_delay, and read_output_skip from Lisp_Objects to ints.
29834 Remove unused encoding_carryover.
29835 * process.c: Adjust all functions accordingly.
29836
298372007-07-12 Richard Stallman <rms@gnu.org>
29838
29839 * term.c: Include unistd.h only if HAVE_UNISTD_H.
29840
298412007-07-11 Jason Rumney <jasonr@gnu.org>
29842
29843 * makefile.w32-in (LIBS): Include OLE32.
29844
29845 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
29846 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
29847
298482007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
29849
29850 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
29851 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
29852 from a Lisp_Object into a bare pointer.
29853 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
29854 Adjust the code correspondingly.
29855
29856 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
29857
29858 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
29859 (term_show_mouse_face): Remove unused var `j'.
29860 (handle_one_term_event): Remove unused vars `i' and `j'.
29861 Don't cast return value of ttyname since it's not necessary.
29862
298632007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
29864
29865 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
29866 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
29867
29868 * fns.c (map_char_table): Use an array of int for `indices' rather than
29869 an array of Lisp_Objects (which are only ever integers anyway).
29870 (Fmap_char_table): Update caller.
29871 * lisp.h: Update prototype.
29872 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
29873 * fontset.c (Ffontset_info):
29874 * casetab.c (set_case_table): Update callers.
29875
29876 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
29877
29878 * keymap.c (struct accessible_keymaps_data)
29879 (struct where_is_internal_data): New structures.
29880 (accessible_keymaps_1, where_is_internal_1): Use them to change
29881 interface to adhere to the one used by map_keymap.
29882 (Faccessible_keymaps, where_is_internal): Use map_keymap.
29883 (accessible_keymaps_char_table, where_is_internal_2): Remove.
29884
29885 * keymap.h (map_keymap_function_t): More informative prototype.
29886
298872007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
29888
29889 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
29890 (looking_at_1): Don't change search_regs and last_thing_searched
29891 if `inhibit-changing-match-data' is non-nil.
29892 (string_match_1, search_buffer, set_search_regs): Likewise.
29893 (syms_of_search): Add Lisp level definition for
29894 `inhibit-changing-match-data' and set it to nil.
29895 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
29896 start and end of the match, instead of using values in search_regs.
29897
298982007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
29899
29900 * minibuf.c (Fcompleting_read): New value `confirm-only'
29901 for `require-match'.
29902
299032007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
29904
29905 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
29906 part of the 2007-06-27 change to syms_of_fileio.
29907
299082007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29909
29910 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
29911 Check WINDOWP before using XWINDOW. Consolidate return statements.
29912
299132007-06-27 Richard Stallman <rms@gnu.org>
29914
29915 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
29916
299172007-06-27 Juanma Barranquero <lekktu@gmail.com>
29918
29919 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
29920
299212007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29922
29923 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
29924 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
29925 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
29926 (_free_internal, memalign): Use them.
29927 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
29928 Initialize to PTHREAD_MUTEX_INITIALIZER.
29929 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
29930 (morecore_nolock): Rename from morecore. All uses changed.
29931 Use only nolock versions of internal allocation functions.
29932 (_malloc_internal_nolock, _realloc_internal_nolock)
29933 (_free_internal_nolock): New functions created from
29934 _malloc_internal, _realloc_internal, and _free_internal.
29935 (_malloc_internal, _realloc_internal, _free_internal): Use them.
29936 Copy hook value to automatic variable before its use.
29937 (memalign): Copy hook value to automatic variable before its use.
29938
299392007-06-26 Kenichi Handa <handa@m17n.org>
29940
29941 * coding.c (Ffind_operation_coding_system): Docstring improved.
29942 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
29943
299442007-06-25 David Kastrup <dak@gnu.org>
29945
29946 * keymap.c (Fcurrent_active_maps): Add `position' argument.
29947 (Fwhere_is_internal): Adjust call to `current-active-maps' to
29948 cater for additional parameter.
29949
29950 * keymap.h: Adjust number of parameters to `current-active-maps'.
29951
29952 * doc.c (Fsubstitute_command_keys): Adjust call of
29953 `current-active-maps'.
29954
299552007-06-25 David Kastrup <dak@gnu.org>
29956
29957 * callint.c (Fcall_interactively): Make the parsing of interactive
29958 specs somewhat more readable.
29959
299602007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29961
29962 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
29963 to scroll bar gap also when bitmap fills fringe. Draw only foreground
29964 if extended background has already been filled.
29965
299662007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
29967
29968 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
29969 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
29970
29971 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
29972 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
29973 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
29974 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
29975 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
29976 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
29977 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
29978 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
29979 Run timers during dialog popup.
29980 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
29981
299822007-06-21 Jason Rumney <jasonr@gnu.org>
29983
29984 * image.c (convert_mono_to_color_image): Swap fore and background.
29985
299862007-06-20 Jason Rumney <jasonr@gnu.org>
29987
29988 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
29989 (w32_free_bdf_font): Unmap memory not handle.
29990
299912007-06-20 Sam Steingold <sds@gnu.org>
29992
29993 * gmalloc.c (__morecore): Fix the declaration to comply with the
29994 definition.
29995
299962007-06-20 Juanma Barranquero <lekktu@gmail.com>
29997
29998 * w32term.c (w32_delete_display): Remove leftover declaration.
29999 (w32_define_cursor, w32_initialize): Make static.
30000
30001 * w32.c (_wsa_errlist): Fix typo in error message.
30002 (init_environment): Ignore any environment variable from the
30003 registry having a null value.
30004
300052007-06-20 Glenn Morris <rgm@gnu.org>
30006
30007 * Makefile.in (LIBGIF): Default to -lgif.
30008
300092007-06-17 Jason Rumney <jasonr@gnu.org>
30010
30011 * w32menu.c (add_menu_item): Don't use multibyte string functions on
30012 unicode strings.
30013
300142007-06-16 Juanma Barranquero <lekktu@gmail.com>
30015
30016 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
30017 Fix typo in docstring.
30018
300192007-06-16 Eli Zaretskii <eliz@gnu.org>
30020
30021 * w32menu.c (add_menu_item): Escape `&' characters in menu items
30022 and their keybindings.
30023
300242007-06-15 Chong Yidong <cyd@stupidchicken.com>
30025
30026 * composite.c (update_compositions): Fix last fix.
30027
300282007-06-14 Jason Rumney <jasonr@gnu.org>
30029
30030 * w32.c (get_process_times_fn): New function pointer.
30031 (globals_of_w32): Intialize it if present in kernel32.dll.
30032 (w32_get_internal_run_time): New function.
30033
30034 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
30035
300362007-06-14 Kenichi Handa <handa@etlken.m17n.org>
30037
30038 * composite.c (update_compositions): Check the validness of
30039 compositions.
30040
300412007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30042
30043 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
30044 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
30045
30046 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
30047 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
30048
30049 * macgui.h (USE_MAC_TOOLBAR): New define.
30050
30051 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
30052 Return immediately unless popup is activated.
30053
30054 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
30055 background to scroll bar gap.
30056 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
30057 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
30058 scroll bars on frame edge. Check fringe background extension.
30059 Don't clear extended fringe background area.
30060 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
30061 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
30062 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
30063 [USE_MAC_TOOLBAR]: New macros.
30064 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
30065 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
30066 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
30067 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
30068 [USE_MAC_TOOLBAR]: New functions.
30069 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
30070 manually if previous repositioning has failed.
30071 (mac_handle_keyboard_event): Use precomputed event kind.
30072 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
30073 as tool bar item click. Handle mouse movement over tool bar items.
30074
30075 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
30076 toolbar_win_gravity.
30077 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
30078 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
30079 Add externs.
30080
30081 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
30082 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
30083
300842007-06-14 Chong Yidong <cyd@stupidchicken.com>
30085
30086 * image.c (search_image_cache): Remove unused variable.
30087
300882007-06-13 Chong Yidong <cyd@stupidchicken.com>
30089
30090 * xfns.c, xmenu.c: Link to xaw3d if available.
30091
300922007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30093
30094 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
30095 frame_foreground and frame_background.
30096
30097 * image.c (lookup_image): Save frame foreground and background colors.
30098 (search_image_cache): Check if saved and current frame colors match.
30099
301002007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
30101
30102 * regex.c (regex_compile): Remove the `regnum' counter.
30103 Use bufp->re_nsub instead. Add support for \(?N:RE\).
30104
301052007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
30106
30107 * term.c: Include intervals.h to declare Fget_text_property.
30108
301092007-06-10 Jason Rumney <jasonr@gnu.org>
30110
30111 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
30112
301132007-06-08 Juanma Barranquero <lekktu@gmail.com>
30114
30115 * callint.c (Fcall_interactively):
30116 * editfns.c (Fdelete_and_extract_region):
30117 * fileio.c (Fread_file_name):
30118 * fns.c (Fmapconcat):
30119 * keyboard.c (cmd_error_internal):
30120 * keymap.c (Fkey_description):
30121 * lread.c (openp):
30122 * minibuf.c (read_minibuf):
30123 * search.c (wordify):
30124 * sunfns.c (sel_read):
30125 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
30126 * xfns.c (x_default_scroll_bar_color_parameter):
30127 * xmenu.c (menu_help_callback):
30128 * xselect.c (Fx_get_atom_name):
30129 * xterm.c (x_term_init): Use empty_unibyte_string.
30130
301312007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
30132
30133 * alloc.c (init_strings): Initialize canonical empty strings.
30134 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
30135 canonical empty string when the requested size is 0.
30136
30137 * emacs.c (empty_unibyte_string): Rename from empty_string.
30138 (empty_multibyte_string): New canonical empty string.
30139 (syms_of_emacs): Don't initialize empty_string.
30140
30141 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
30142 string, if appropriate.
30143 (empty_unibyte_string, empty_multibyte_string): New externs.
30144 (empty_string): Remove extern.
30145
30146 * lread.c (syms_of_lread): Use empty_unibyte_string.
30147
301482007-06-07 Jason Rumney <jasonr@gnu.org>
30149
30150 * s/ms-w32.h: Don't define HAVE_TZNAME.
30151
30152 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
30153
301542007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30155
30156 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
30157
30158 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
30159 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
30160
30161 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
30162 Don't call next handler.
30163 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
30164 Remove argument. Install handler to application.
30165 (set_frame_menubar): Don't change deep_p.
30166 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
30167 FRAME_OUTER_TO_INNER_DIFF_Y.
30168 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
30169 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
30170 [HAVE_DIALOGS]: New macros.
30171 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
30172 Use them.
30173 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
30174
30175 * macselect.c [MAC_OSX] (install_service_handler): Rename from
30176 init_service_handler. All callers changed. Return OSStatus value.
30177
30178 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
30179 All callers changed so as not to call SetPortWindowPort.
30180 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
30181 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
30182 mac_draw_string_common.
30183 (mac_draw_image_string_qd): Likewise.
30184 (mac_draw_string_common): Use them. Add INLINE.
30185 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
30186 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
30187 GetGlobalMouse.
30188 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
30189 and FRAME_OUTER_TO_INNER_DIFF_Y.
30190 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
30191 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
30192 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
30193 repositioning window to mac_handle_window_event.
30194 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
30195 saving window location to mac_handle_window_event
30196 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
30197 (install_menu_target_item_handler): Remove argument in extern.
30198 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
30199 Also accept command events.
30200 (do_keystroke): New function created from XTread_socket.
30201 (init_command_handler): Remove functions.
30202 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
30203 and save window location by kEventWindowShowing and kEventWindowHiding
30204 handlers here. Don't call next handler for window state change and
30205 focus events.
30206 (mac_handle_application_event, mac_handle_keyboard_event)
30207 [TARGET_API_MAC_CARBON]: New functions.
30208 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
30209 kEventWindowShowing and kEventWindowHiding events. Move installation
30210 of mouse, font, text input and menu target item handlers to
30211 install_application_handler.
30212 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
30213 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
30214 New function.
30215 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
30216 Register it.
30217 (XTread_socket) [TARGET_API_MAC_CARBON]:
30218 Consolidate SendEventToEventTarget calls.
30219 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
30220 Move application activation handler to mac_handle_application_event.
30221 Move keyboard handler to mac_handle_keyboard_event.
30222 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
30223 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
30224 init_command_handler. Call install_application_handler.
30225
30226 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
30227 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
30228
302292007-06-07 Glenn Morris <rgm@gnu.org>
30230
30231 * emacs.c (main): Use `emacs-copyright' in --version output.
30232
302332007-06-06 Chong Yidong <cyd@stupidchicken.com>
30234
30235 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
30236
302372007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30238
30239 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
30240
30241 * macgui.h: Replace WindowPtr with WindowRef.
30242
30243 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
30244 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
30245 Replace ControlHandle with ControlRef.
30246 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
30247
30248 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
30249 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
30250 Replace ControlHandle with ControlRef.
30251 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
30252 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
30253
30254 * macterm.h (struct scroll_bar): Rename member control_handle_low
30255 and control_handle_high to control_ref_low and control_ref_high.
30256 All uses changed.
30257 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
30258 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
30259 respectively. All uses changed.
30260 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
30261 (install_window_handler, remove_window_handler): Replace WindowPtr
30262 with WindowRef in externs.
30263
302642007-06-05 Juanma Barranquero <lekktu@gmail.com>
30265
30266 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
30267
302682007-06-03 Nick Roberts <nickrob@snap.net.nz>
30269
30270 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
30271
30272 * frame.c (Fmouse_position, Fmouse_pixel_position):
30273 Condition on HAVE_GPM too.
30274
30275 * term.c (term_mouse_highlight): Remove unused variables.
30276 (Fterm_open_connection): Set gpm_zerobased to 1.
30277 (term_mouse_movement, term_mouse_click, handle_one_term_event):
30278 Use zero based co-ordinates.
30279 (handle_one_term_event): Report a drag as mouse movement too.
30280
30281 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
30282
302832007-06-03 Chong Yidong <cyd@stupidchicken.com>
30284
30285 * image.c (search_image_cache): New function. Require background
30286 color match if background color is unspecified in the image spec.
30287 (uncache_image, lookup_image): Use it.
30288
302892007-06-01 Juanma Barranquero <lekktu@gmail.com>
30290
30291 * window.c (Fshrink_window): Reflow docstring.
30292
302932007-06-02 Chong Yidong <cyd@stupidchicken.com>
30294
30295 * Version 22.1 released.
30296
302972007-06-01 Richard Stallman <rms@gnu.org>
30298
30299 * xfns.c (x_encode_text): Add GCPRO.
30300
303012007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30302
30303 * xfns.c (x_set_name_internal): Save encoded name before
30304 x_encode_text in case string data is relocated.
30305
303062007-05-31 Richard Stallman <rms@gnu.org>
30307
30308 * buffer.c (syms_of_buffer): Doc fix.
30309
303102007-05-30 Nick Roberts <nickrob@snap.net.nz>
30311
30312 * sysdep.c (init_sys_modes): Add rather than replace with
30313 O_NONBLOCK.
30314
30315 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
30316 term_mouse_moveto.
30317
30318 * termhooks.h (term_mouse_moveto): New extern.
30319
30320 * term.c (mouse_face_window): Rename...
30321 (Qmouse_face_window): ...to this.
30322 (term_show_mouse_face, term_clear_mouse_face)
30323 (term_mouse_highlight): Use Qmouse_face_window.
30324 (term_mouse_moveto): New function.
30325 (term_mouse_position): Make it work.
30326 (syms_of_term): Uncomment assignment to mouse_position_hook.
30327 Staticpro Qmouse_face_window.
30328
303292007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30330
30331 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
30332 around current_column call.
30333
303342007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
30335
30336 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
30337 * xdisp.c (next_element_from_buffer):
30338 * window.c (delete_window):
30339 * term.c (term_mouse_highlight):
30340 * msdos.c (getdefdir):
30341 * macterm.c (mac_create_bitmap_from_bitmap_data)
30342 (init_font_name_table):
30343 * fns.c (Fsxhash):
30344 * data.c (Fmake_local_variable):
30345 * ccl.c (ccl_driver): Likewise.
30346
303472007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30348
30349 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
30350 Call mac_wakeup_from_rne on window size change.
30351
303522007-05-25 Chong Yidong <cyd@stupidchicken.com>
30353
30354 * image.c (uncache_image): Fix typo.
30355
303562007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
30357
30358 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
30359
303602007-05-22 Richard Stallman <rms@gnu.org>
30361
30362 * xterm.c (x_connection_closed): Remove NO_RETURN.
30363
303642007-05-22 Martin Rudalics <rudalics@gmx.at>
30365
30366 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
30367
303682007-05-21 Chong Yidong <cyd@stupidchicken.com>
30369
30370 * image.c (uncache_image): New function.
30371 (Fimage_refresh): New function.
30372
303732007-05-20 Jan Djärv <jan.h.d@swipnet.se>
30374
30375 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
30376
303772007-05-20 Nick Roberts <nickrob@snap.net.nz>
30378
30379 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
30380 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
30381
303822007-05-20 Nick Roberts <nickrob@snap.net.nz>
30383
30384 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
30385 conditional on [HAVE_GPM_H].
30386
303872007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
30388
30389 * syntax.c (skip_chars): Update syntax-table only after we checked that
30390 the new location is valid.
30391
303922007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30393
30394 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
30395 mac_get_window_bounds.
30396
303972007-05-20 Nick Roberts <nickrob@snap.net.nz>
30398
30399 * Makefile.in (LIBGPM): Allow it to be set from configure.
30400 If set then link Emacs with it.
30401
30402 * config.in: Regenerate.
30403
30404 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
30405 New externs.
30406
30407 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
30408 Include gpm.h.
30409 (handle_one_term_event, term_gpm): New externs.
30410
30411 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
30412 and allow it to be interrupted by SIGIO.
30413
30414 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
30415 (wait_reading_process_output): Wait on gpm_fd too.
30416 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
30417 (add_gpm_wait_descriptor_called_flag): New variable.
30418 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
30419
30420 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
30421 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
30422 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
30423 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
30424 (make_lispy_event): Add case GPM_CLICK_EVENT.
30425 (read_avail_input): Handle mouse input.
30426
30427 * term.c (write_glyphs_with_face): New function.
30428 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
30429 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
30430 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
30431 (mouse_face_face_id, term_gpm, pos_x, pos_y)
30432 (last_mouse_x, last_mouse_y): New variables.
30433 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
30434 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
30435 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
30436 (Fterm_close_connection): New functions.
30437 (term_init): Initialise mouse_face_window.
30438
304392007-05-19 Chong Yidong <cyd@stupidchicken.com>
30440
30441 * xdisp.c (redisplay_window): If first window line is a
30442 continuation line, recompute the new window start instead of
30443 recentering.
30444
304452007-05-18 Glenn Morris <rgm@gnu.org>
30446
30447 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
30448 Suggested by Alfred M. Szmidt <ams@gnu.org>.
30449
304502007-05-17 Glenn Morris <rgm@gnu.org>
30451
30452 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
30453
304542007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30455
30456 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
30457 dead key repeat and up events.
30458
304592007-05-14 Chong Yidong <cyd@stupidchicken.com>
30460
30461 * image.c (pbm_load): Check image size for monochrome pbm.
30462
304632007-05-13 Chong Yidong <cyd@stupidchicken.com>
30464
30465 * xterm.c (XTread_socket): Revert last change.
30466
304672007-05-12 Chong Yidong <cyd@stupidchicken.com>
30468
30469 * image.c (pbm_load): Correctly check image size for greyscale pbm.
30470
30471 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
30472
304732007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
30474
30475 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
30476 mixup (YAILOM).
30477
304782007-05-07 Andreas Schwab <schwab@suse.de>
30479
30480 * keymap.c (Flookup_key): Fix typo in last change.
30481
304822007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
30483
30484 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
30485 mapping for unibyte strings.
30486
304872007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30488
30489 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
30490 (Fx_popup_dialog) [MAC_OSX]: Likewise.
30491
304922007-04-29 Richard Stallman <rms@gnu.org>
30493
30494 * insdel.c (replace_range): For undo, record insertion first.
30495
304962007-04-29 Andreas Schwab <schwab@suse.de>
30497
30498 * lisp.h (VECSIZE): Use OFFSETOF.
30499
305002007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
30501
30502 * xdisp.c (try_window_reusing_current_matrix): Fix number of
30503 disabled lines.
30504
305052007-04-28 Richard Stallman <rms@gnu.org>
30506
30507 * lread.c (read_escape): In a string, \s is always space.
30508
305092007-04-27 Jan Djärv <jan.h.d@swipnet.se>
30510
30511 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
30512
30513 * gtkutil.c (xg_update_menubar, create_menus): Create empty
30514 submenu for menu bar items.
30515
30516See ChangeLog.10 for earlier changes.
30517
30518;; Local Variables:
30519;; coding: utf-8
aac0c6e3
MR
30520;; End:
30521
73b0cd50 30522 Copyright (C) 2007-2011 Free Software Foundation, Inc.
aac0c6e3
MR
30523
30524 This file is part of GNU Emacs.
30525
30526 GNU Emacs is free software: you can redistribute it and/or modify
30527 it under the terms of the GNU General Public License as published by
30528 the Free Software Foundation, either version 3 of the License, or
30529 (at your option) any later version.
30530
30531 GNU Emacs is distributed in the hope that it will be useful,
30532 but WITHOUT ANY WARRANTY; without even the implied warranty of
30533 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30534 GNU General Public License for more details.
30535
30536 You should have received a copy of the GNU General Public License
30537 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.