]> code.delx.au - gnu-emacs/blob - src/ChangeLog
Fix last changelog entry.
[gnu-emacs] / src / ChangeLog
1 2009-06-09 Jim Meyering <meyering@redhat.com>
2
3 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
4 color name is missing.
5
6 2009-06-09 Kenichi Handa <handa@m17n.org>
7
8 * charset.c (Fmap_charset_chars): In docstring, state clearly that
9 FROM-CODE and TO-CODE are codepoints of CHARSET.
10
11 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
12
13 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
14
15 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
16
17 Changes to support :script/:lang/:otf in NS font driver.
18 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
19 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
20 indicate not part of font driver interface, and change callers.
21 (ns_get_family): Remove pointless null check.
22 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
23 ns_spec_to_descriptor, ns_descriptor_to_entity.
24 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
25 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
26 (ns_spec_to_descriptor, ns_descriptor_to_entity)
27 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
28 (ns_get_req_script, ns_accumulate_script_ranges)
29 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
30 New functions.
31 (nsfont_list, nsfont_match): Use ns_findfonts.
32 (nsfont_open): Use font descriptor instead of traits.
33 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
34 (dump_glyphstring): Rename to ns_dump_glyphstring.
35
36 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
37
38 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
39
40 * fontset.c (fontset_from_font): Remove NS-specific code.
41
42 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
43
44 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
45 nonactive windows.
46
47 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
48
49 * nsterm.m (ns_init_paths): Append path separator to INFOPATH
50 variable.
51
52 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
53
54 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
55 account for the overflowing of newlines into the last glyph on the
56 display line (Bug#3482).
57
58 2009-06-05 David Reitter <david.reitter@gmail.com>
59
60 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p,
61 Fx_selection_owner_p): rename from Fns_own_selection_internal,
62 Fns_selection_exists_p, Fns_selection_owner_p.
63
64 2009-06-03 Jason Rumney <jasonr@gnu.org>
65
66 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
67 available. (Bug#3379)
68
69 2009-05-29 Kenichi Handa <handa@m17n.org>
70
71 * coding.c (get_translation_table): Check
72 Venable_character_translation.
73
74 2009-05-25 David Reitter <david.reitter@gmail.com>
75
76 * nsterm.m (ns_raise_frame): only raise frame if visible.
77 (x_make_frame_visible): move frame to front rather than calling
78 ns_raise_frame().
79 (keyDown:) do not swallow events that aren't re-sent if frame
80 isn't key window.
81 (drawRect:) do not set visibility/iconified flags because
82 drawRect may be called by NSView even if the frame is hidden.
83
84 * nsfns.m (Fx_create_frame): follow other ports in
85 determining visibility; default to t. Ensure async_visible is set.
86
87 2009-05-23 Eli Zaretskii <eliz@gnu.org>
88
89 * dired.c (Ffile_attributes): Doc fix.
90
91 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
92
93 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
94
95 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
96
97 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
98 and xfont_scratch_props.
99 (syms_of_xfont): Do it here instead.
100 (xfont_find_ccl_program): Delete, unused.
101 (xfont_open): Delete unused var `i'.
102
103 2009-05-21 Kenichi Handa <handa@m17n.org>
104
105 * fontset.c (Qlatin): Don't make it static.
106
107 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
108 New functions.
109 (xfont_scripts_cache, xfont_scratch_props): New variables.
110 (Qlatin, Vscalable_fonts_allowed): Extern it.
111 (xfont_list_pattern): Argument changed. Callers changed.
112 Check Vscalable_fonts_allowed. Check the support of a script.
113 (xfont_list): Don't reject a font spec with :script property.
114 (xfont_has_char): Fix setting of encoding.
115 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
116 xfont_scratch_props.
117
118 2009-05-19 Kenichi Handa <handa@m17n.org>
119
120 * font.c (font_sort_entities): Rename from font_sort_entites.
121 Callers changed.
122
123 2009-05-18 Kenichi Handa <handa@m17n.org>
124
125 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
126
127 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
128
129 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
130 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
131
132 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
133
134 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
135 (x_delete_terminal): Dissociate resource database from display and
136 then call XrmDestroyDatabase before closing display.
137
138 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
139
140 * nsterm.m (ns_read_socket): Remove unused variable.
141 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
142 whether selected frame is viable before raising it (based on patch
143 by David Reitter), and improve commentary.
144 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
145
146 2009-05-15 Kenichi Handa <handa@m17n.org>
147
148 * font.c (Ffont_spec): Check arguments.
149
150 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
151
152 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
153 weight when testing attributes (Bug#3282).
154
155 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
156
157 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
158 what we expect to get in the next ConfigureNotify event.
159
160 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
161 before Xft one (Bug#1696).
162
163 2009-05-07 David Reitter <david.reitter@gmail.com>
164
165 * nsfns.m (Fx_display_planes): Compute bitplanes using
166 NSBitsPerPixelFromDepth (Bug#3207).
167
168 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
169
170 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
171
172 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
173
174 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
175
176 2009-05-07 David Reitter <david.reitter@gmail.com>
177
178 * nsterm.m (ns_dumpglyphs_stretch,ns_dumpglyphs_image):
179 respect mouse face background.
180
181 2009-05-07 David Reitter <david.reitter@gmail.com>
182
183 * nsterm.m (note_mouse_movement,ns_frame_up_to_date):
184 mouse movement/highlight: bracket drawing operations
185 in ns_update_begin and ns_update_end.
186
187 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
188
189 * nsfns.m (ns_get_screen): Rewrite.
190 Don't presume selected-frame is of type `ns'.
191
192 * font.c (font_update_drivers): Sanity fallback to avoid disabling
193 all drivers.
194
195 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
196
197 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
198
199 * keyboard.h (add_user_signal): Fix typo in extern.
200
201 * lisp.h (add_user_signal): Remove extern.
202
203 * unexelf.c (unexec): Consider a section to precede the .bss section
204 if its addresses overlap that of .bss.
205 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
206 instead of dumping process.
207
208 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
209
210 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
211
212 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
213
214 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
215
216 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
217
218 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
219 any statements.
220
221 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
222
223 * process.c (read_process_output): Make sure the current buffer is
224 always restored.
225
226 * coding.c (record_conversion_result): Don't modify
227 Vlast_code_conversion_error for successful result.
228 (alloc_destination): Don't clobber conversion result. (Bug#1650)
229
230 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
231
232 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
233 (load_charset_map): Remove unnecessary code.
234
235 2009-04-30 David Reitter <david.reitter@gmail.com>
236
237 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
238 through f24.
239
240 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
241
242 * xfaces.c (face_at_buffer_position): New arg base_face_id.
243
244 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
245 face_at_buffer_position.
246 (face_before_or_after_it_pos, get_next_display_element)
247 (note_mouse_highlight): Update face_at_buffer_position call.
248
249 * term.c (term_mouse_highlight):
250 * msdos.c (IT_note_mouse_highlight):
251 * fontset.c (Finternal_char_font):
252 * font.c (font_at, font_range): Update face_at_buffer_position call.
253
254 * dispextern.h (face_at_buffer_position): Update prototype.
255
256 2009-04-30 Kenichi Handa <handa@m17n.org>
257
258 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
259
260 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
261
262 * callproc.c (Fcall_process): Fix GC protection. Make sure
263 current buffer is always restored.
264
265 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
266
267 * atimer.c (init_atimer): Also clear stopped_atimers.
268
269 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
270
271 * process.c (create_process): Clean up merger residues of
272 2008-07-17 change.
273
274 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
275
276 * lread.c (Vread_circle): New variable.
277 (read1): Disable recursive read if Vread_circle is nil.
278
279 2009-04-29 Kenichi Handa <handa@m17n.org>
280
281 * fontset.h (set_default_ascii_font): Delete extern.
282
283 * fontset.c (set_default_ascii_font): Delete this unused function.
284
285 * frame.c (x_set_font): When ARG is a font-object, check if the
286 font-object matches with the ASCII font-spec of the frame's
287 fontset. If not, create a new fontset for the frame. (Bug #3075)
288
289 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
290
291 * fns.c (Flocale_info): Protect vector from GC during decoding.
292
293 * process.c (Fstart_process): Protect argv strings from GC during
294 encoding.
295
296 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
297
298 * sysdep.c: Include <ctype.h>.
299
300 2009-04-27 David Reitter <david.reitter@gmail.com>
301
302 * nsfont.m (nsfont_open): Remove unused variable shrink.
303 Remove commented-out code.
304
305 2009-04-26 Johan Bockgård <bojohan@gnu.org>
306
307 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
308
309 2009-04-25 Jason Rumney <jasonr@gnu.org>
310
311 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
312
313 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
314
315 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
316 Swap bytes in short integer if fringe bitmap width > 8.
317
318 2009-04-23 Kenichi Handa <handa@m17n.org>
319
320 * xfaces.c (Fx_list_fonts): If a font size is specified in
321 PATTERN, set it in returned scalable fonts.
322
323 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
324
325 * keyboard.c (Fset_input_meta_mode): Doc fix.
326
327 * dispnew.c (Fsend_string_to_terminal): Doc fix.
328
329 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc
330 fixes.
331
332 * coding.c (Fterminal_coding_system): Doc fix.
333
334 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
335 (Fx_display_pixel_height, Fx_display_planes)
336 (Fx_display_color_cells, Fx_server_max_request_size)
337 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
338 (Fx_display_mm_height, Fx_display_mm_width)
339 (Fx_display_backing_store, Fx_display_visual_class)
340 (Fx_display_save_under, Fx_close_connection, Fx_synchronize): Doc
341 fixes, replacing "terminal id" with "terminal object".
342 (check_x_display_info): Handle terminal objects instead of
343 terminal ids.
344
345 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
346 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
347 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions): Doc
348 fixes, replacing "terminal id" with "terminal object".
349
350 2009-04-21 Kenichi Handa <handa@m17n.org>
351
352 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
353 (font_score): Check AVGWIDTH too.
354
355 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
356 worst case.
357 (decode_coding_emacs_mule, decode_coding_iso_2022)
358 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
359 Likewise.
360
361 2009-04-19 Jason Rumney <jasonr@gnu.org>
362
363 The following changes fix Bug#3005 for wide glyphs on each platform,
364 without reintroducing Bug#1258 for stretch glyphs.
365
366 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
367 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
368 get_phys_cursor_geometry.
369
370 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
371 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
372 using get_phys_cursor_geometry.
373
374 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
375 correctly calculated.
376
377 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
378
379 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar): Use
380 G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
381 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
382 is deprecated.
383
384 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
385
386 * font.c (font_put_frame_data): Use xfree instead of free.
387
388 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
389
390 * w32font.c (Qja, Qko): Remove declarations.
391 (syms_of_w32font): Don't DEFSYM them.
392
393 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
394
395 * font.c (Qja, Qko): Move definitions here from ftfont.c.
396
397 * font.h (Qja, Qko): Extern them.
398
399 * ftfont.c (Qja, Qko): Remove declarations.
400
401 * xfont.c (Qja, Qko): Remove declarations.
402
403 2009-04-17 Kenichi Handa <handa@m17n.org>
404
405 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
406 string from a vector to handle Latin-1 characters correctly.
407
408 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
409 entity even if the cache hits.
410
411 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
412
413 * search.c (boyer_moore): Use zero as marker value for a possible
414 match instead of depending on overflow behavior. (Bug#2844)
415
416 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
417 * lisp.h: Adjust prototypes.
418
419 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
420
421 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
422 change (Bug#3003).
423
424 2009-04-16 Kenichi Handa <handa@m17n.org>
425
426 * xfont.c (xfont_has_char): Special handling of `ja' and `ko'
427 adstyle.
428
429 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
430 adstyle.
431
432 * ftfont.c (Qja, Qko): Don't make them static.
433 (enum ftfont_cache_for): New enum.
434 (fc_charset_table): Undo the previous change.
435 (ftfont_get_latin1_charset): Delete it.
436 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache. Set
437 FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
438 non-scarable font, try to get AVERAGE_WIDTH.
439 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
440 Change ft_face_cache from a list of a hash-table. Don't check
441 `ja' and `ko' adstyle here.
442 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
443 FTFONT_CACHE_FOR_CHARET.
444 (ftfont_get_charset): Undo the previous change.
445 (ftfont_open): Call ftfont_lookup_cache with
446 FTFONT_CACHE_FOR_FACE.
447 (ftfont_close): Likewise.
448 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
449
450 * font.c (font_sort_entites): Change the meaning of the arg
451 BEST-ONLY. Don't optimize for VEC of lenght 1.
452 (font_select_entity): Just return the value of font_sort_entites.
453
454 * xfaces.c (merge_face_vectors): Reflect font properties in
455 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
456 font_clear_prop if a face attribute doesn't change.
457
458 * charset.h (charset_ksc5601): Extern it.
459
460 * charset.c (charset_ksc5601): New variable.
461 (Fdefine_charset_internal): Set charset_ksc5601.
462 (init_charset_once): Initialize charset_ksc5601 to -1.
463
464 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
465
466 * fileio.c (history_delete_duplicates): Remove unused declaration.
467
468 * callint.c (history_delete_duplicates): New declaration.
469 (Fcall_interactively): Remove command history duplicates when
470 history_delete_duplicates is true.
471
472 2009-04-14 Eli Zaretskii <eliz@gnu.org>
473
474 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
475
476 2009-04-14 Kenichi Handa <handa@m17n.org>
477
478 * font.c (Ffont_info): Fix docstring. Fix the second element of
479 the returned value (bug#2949).
480
481 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
482
483 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
484
485 2009-04-14 Kenichi Handa <handa@m17n.org>
486
487 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
488 encoding charset is ascii_compatible.
489
490 * charset.c (Fdefine_charset_internal): Make charset
491 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
492 code_offset is 0, and covers all ASCII characters.
493
494 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
495
496 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
497 (ns_string_to_pasteboard_internal):
498 * nsmenu.m (process_dialog):
499 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
500 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
501 * lisp.h (Fx_load_color_file): Declare.
502
503 2009-04-13 Kenichi Handa <handa@m17n.org>
504
505 * font.c (font_delete_unmatched): Preserve the order of list
506 elements.
507 (font_select_entity): Suppress the code to optimize for the same
508 kind of fonts.
509 (font_load_for_lface): Get a font that supports at least ASCII
510 characters.
511
512 * ftfont.c (Qja, Qko): New variables.
513 (fc_charset_table): Delete uniquifier data for iso8859-1.
514 (ftfont_get_latin1_charset): New function.
515 (get_adstyle_property): New function.
516 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
517 bitmap fonts.
518 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
519 Delete iso-8859-1 range from the charset of fonts whose adstyle is
520 `ko' or `ja'.
521 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
522 (ftfont_get_charset): For iso8859-1, call
523 ftfont_get_latin1_charset.
524 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
525 property.
526 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
527 (syms_of_ftfont): DEFSYM Qja and Qko.
528
529 2009-04-09 Kenichi Handa <handa@m17n.org>
530
531 * charset.c (map_charset_chars): For a charset of `superset'
532 method, fix calculation of code range.
533
534 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
535 from the list of extra properties.
536 (font_clear_prop): Be sure to delete `:name' font property.
537
538 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
539
540 * dispnew.c (redraw_overlapping_rows): Fix detection of
541 overlapping for topmost and bottommost rows.
542
543 * ftfont.c (ftfont_text_extents): Fix calculation of
544 metrics->descent.
545
546 2009-04-06 Jason Rumney <jasonr@gnu.org>
547
548 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
549
550 2009-04-06 Kenichi Handa <handa@m17n.org>
551
552 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
553
554 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
555
556 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
557
558 * ftfont.c (ftfont_open): Fix checking of the return value of
559 FT_Load_Char. Fix setting font->underline_thickness.
560
561 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
562
563 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
564 (Fterminal_parameters, Fterminal_parameter)
565 (Fset_terminal_parameter): In doc string, refer to terminal
566 objects rather than terminal ids.
567
568 2009-04-04 Eli Zaretskii <eliz@gnu.org>
569
570 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
571 ret_lim_data. (Bug#2867)
572
573 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
574
575 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
576 so they don't get wider than the window, matching 2006-01-23
577 change to the partner function in xdisp.c (Bug#2800).
578
579 2009-04-03 Kenichi Handa <handa@m17n.org>
580
581 * print.c (print_object): Make each lowest sub_char_table start a
582 new line (Bug#2866).
583
584 2009-04-02 Kenichi Handa <handa@m17n.org>
585
586 * fontset.c (fontset_font): Record no-font when a fontset
587 explicitly tells not to try another font-specs.
588
589 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
590
591 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
592
593 2009-03-30 Kenichi Handa <handa@m17n.org>
594
595 * fontset.c (fontset_from_font): Specify only registry in a
596 font-spec for all characters supported by that registry.
597
598 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
599 even if HAVE_M17N_FLT is not defined.
600
601 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
602
603 * ftfont.c: Conditionalize prototyping and use of
604 ftfont_variation_glyphs.
605
606 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
607
608 * frame.c (delete_frame): Work around compiler bug.
609
610 * editfns.c (general_insert_function): Adjust to insdel.c changes.
611 * insdel.c (prepare_to_modify_buffer, signal_before_change):
612 Some more EMACS_INT.
613 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
614
615 * xdisp.c (dump_glyph): Fix typo.
616
617 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
618 (adjust_markers_gap_motion, adjust_markers_for_delete)
619 (adjust_markers_for_insert, adjust_point)
620 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
621 (make_gap, copy_text, count_size_as_multibyte, insert)
622 (insert_and_inherit, insert_before_markers)
623 (insert_before_markers_and_inherit, insert_1)
624 (count_combining_before, count_combining_after, insert_1_both)
625 (insert_from_string, insert_from_string_before_markers)
626 (insert_from_string_1, insert_from_gap, insert_from_buffer)
627 (insert_from_buffer_1, adjust_after_replace)
628 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
629 (replace_range_2, del_range, del_range_1, del_range_byte)
630 (del_range_both, del_range_2, modify_region)
631 (prepare_to_modify_buffer, signal_before_change)
632 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
633 for buffer positions and sizes.
634 * lisp.h: Adjust prototypes accordingly.
635
636 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
637 (non_regular_inserted, non_regular_nbytes, read_non_regular)
638 (Finsert_file_contents): Use EMACS_INT for buffer positions.
639
640 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
641
642 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
643
644 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
645 lines and columns so we keep the same pixel height and width.
646
647 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
648 the property _NET_WM_STATE has changed.
649 (x_handle_net_wm_state): New function to update frame parameter
650 fullscreen.
651 (x_term_init): Initialize atoms for _NET_WM_STATE.
652
653 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
654
655 2009-03-27 Kevin Ryde <user42@zip.com.au>
656
657 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
658 Gpm_GetEvent as an error that justifies closing the filedescriptor.
659 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
660 (Fgpm_mouse_stop): Pass that new parameter.
661 * termhooks.h (close_gpm): Adjust prototype.
662
663 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
664
665 * lisp.h (Fx_focus_frame): Declare.
666
667 * callint.c (Fcall_interactively): For '^' just delegate the work to
668 handle-shift-selection.
669 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
670
671 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
672
673 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
674
675 * data.c (Qinteractive_form): New variable.
676 (Finteractive_form): Use it.
677
678 * eval.c (Fcommandp): Use Qinteractive_form.
679
680 2009-03-24 Jason Rumney <jasonr@gnu.org>
681
682 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
683 Calculate total size precisely. Decode environment variables
684 before substituting. (Bug#38)
685
686 2009-03-24 Kenichi Handa <handa@m17n.org>
687
688 * font.c (find_font_encoding): Return Qnil for unsupported
689 encoding (Bug#2722).
690
691 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
692
693 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
694 that gdpy is set.
695
696 2009-03-22 Alan Mackenzie <acm@muc.de>
697
698 * callint.c (Finteractive): Clarify the doc string - even
699 promptless elements need \n separators.
700
701 2009-03-22 Jason Rumney <jasonr@gnu.org>
702
703 * w32term.c (syms_of_w32term): Doc fix for
704 x-use-underline-position-properties.
705
706 2009-03-21 Eli Zaretskii <eliz@gnu.org>
707
708 * w32.c (getpwuid): Change argument type to unsigned.
709 (struct w32_id): Change type of `rid' member to unsigned.
710 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
711 argument ID to unsigned. All callers changed.
712 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
713
714 2009-03-20 Eli Zaretskii <eliz@gnu.org>
715
716 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
717 negative, produce a float value.
718
719 * dired.c (make_uid, make_gid): New functions.
720 (Ffile_attributes): Use them to avoid negative UID and GID.
721
722 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
723
724 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
725 (syms_of_keyboard) <command-hook-internal, input-method-function>:
726 Fix typos in docstrings.
727
728 2009-03-19 Kenichi Handa <handa@m17n.org>
729
730 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
731 changed, use font_load_for_lface to get a new font object.
732 Call free_realized_fontset after handling ASCII font change.
733
734 * frame.c (x_set_font): Handle the case that ARG is a cons.
735
736 2009-03-19 Glenn Morris <rgm@gnu.org>
737
738 * fileio.c (Fsubstitute_in_file_name): Doc fix.
739
740 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
741
742 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
743
744 2009-03-19 Kenichi Handa <handa@m17n.org>
745
746 * charset.c (load_charset_map_from_file): When a mapfile can't be
747 loaded, signal an error.
748
749 2009-03-18 Eli Zaretskii <eliz@gnu.org>
750
751 * dired.c (Ffile_attributes): Make sure UID and GID are always
752 positive, even if the value is too large for a positive EMACS_INT.
753 Doc fix.
754
755 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
756
757 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
758
759 * xmenu.c (xdialog_show): Move Fredisplay call ...
760 (Fx_popup_dialog): ... here.
761
762 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
763
764 * dired.c (file_name_completion): Disable the first optimization just
765 installed, since it is not implemented correctly.
766
767 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
768
769 * dired.c (file_name_completion): Check completion-ignored-extensions
770 only if the entry can affect bestmatch.
771 Stop the search early, as Ftry_completion already does.
772
773 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
774
775 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
776
777 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
778
779 * keyboard.c (parse_menu_item): Don't display remappings as menu
780 equivalent bindings (Bug#788).
781
782 2009-03-15 Jason Rumney <jasonr@gnu.org>
783
784 * w32term.h (WM_EMACS_PAINT): New message.
785 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
786 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
787 before passing to lisp thread. (Bug#950)
788
789 2009-03-14 David Reitter <david.reitter@gmail.com>
790
791 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
792 variable as it was never reset.
793 (ns_term_init): Remove initialization of Lisp-settable defaults
794 and ns_expand_space.
795 (-setPanelFromDefaultValues): Remove ns_expand_space.
796 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
797 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
798 i.e. no additional spacing, similar to Carbon port.
799
800 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
801 * nsfns.m (ns-popup-prefs-panel): Remove.
802
803 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
804
805 * sound.c (alsa_configure): Remove call to deprecated
806 snd_pcm_sw_params_set_xfer_align.
807
808 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
809
810 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
811 after clicking in a detached tool bar.
812 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
813
814 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
815
816 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
817 int/Lisp_Object mixup).
818
819 2009-03-13 Kenichi Handa <handa@m17n.org>
820
821 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
822 Handle NAME nil and t correctly. Callers changed.
823 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
824 (set_fontset_font): Change ARG to a vector. Handle range_list in
825 ARG correctly.
826 (Fset_fontset_font): Fix the case that TARGET is both a script
827 name and charset name. Adjust the arg to set_fontset_font for
828 the above change.
829 (fontset_from_font): Fix previous change.
830 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
831 entry. If FONTSET is the default fontset, don't set the extra
832 slot of the returning char-table.
833
834 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
835
836 * nsfns.m (Fx_close_connection): Doc fix.
837 (Fns_do_applescript): Reflow docstring.
838 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
839 (Fx_display_pixel_width, Fx_display_pixel_height)
840 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
841 Fix typos in docstrings.
842 (Fns_set_alpha): Fix typos in error messages.
843
844 2009-03-12 David Reitter <david.reitter@gmail.com>
845
846 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
847 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
848 were used for such events.
849
850 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
851 (toggleToolbar, performDragOperation, runHelp): Use it.
852
853 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
854 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
855
856 2009-03-11 Kenichi Handa <handa@m17n.org>
857
858 * font.h (font_open_by_spec): Extern it.
859
860 * font.c (font_open_by_spec): New function.
861 (font_open_by_name): Use font_open_by_spec.
862
863 * frame.c (x_set_font): When ARG is a font-object, don't alter the
864 fontset of the frame.
865
866 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
867 modify the default font of frames that use this fontset.
868 (num_auto_fontsets): New variable.
869 (fontset_from_font): Use num_auto_fontsets to decide a fontset
870 name. Be sure to set FONTSET_ASCII to the correct font name.
871 (update_auto_fontset_alist): New function.
872
873 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
874
875 * makefile.w32-in: Update dependencies.
876
877 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
878
879 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
880
881 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
882
883 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
884
885 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
886
887 * lread.c (Feval_buffer): Doc fix.
888
889 2009-03-09 Kenichi Handa <handa@m17n.org>
890
891 * charset.c (Qfile_name_handler_alist): Extern it.
892 (load_charset_map_from_file): Temporarily bind
893 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
894
895 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
896
897 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
898 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
899
900 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
901
902 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
903 (x_set_window_size): Change back to calculated method of setting
904 toolbar height under Cocoa. (Bug#2546)
905 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
906 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
907
908 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
909
910 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
911 accelerator in parens under GNUstep.
912
913 2009-03-06 Kenichi Handa <handa@m17n.org>
914
915 These changes are to detect incorrect composition sequence without
916 looking ahead the source. (Bug#2370)
917
918 * coding.h: Include "composite.h".
919 (enum compisition_state): New enum.
920 (struct compisition_status): New struct.
921 (struct iso_2022_spec): New member cmp_status.
922 (struct emacs_mule_spec): New struct.
923 (struct coding_system): New members ctext_extended_segment_len and
924 embedded_utf_8. Change the union member
925 spec.emacs_mule_full_support to spec.emacs_mule.
926
927 * coding.c (CODING_ISO_CMP_STATUS): New macro.
928 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
929 (MAX_ANNOTATION_LENGTH): Define to 5.
930 (ADD_COMPOSITION_DATA): New arg nbytes.
931 (emacs_mule_char): New arg cmp_status.
932 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
933 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
934 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
935 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
936 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
937 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
938 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
939 (EMACS_MULE_COMPOSITION_END): New macro.
940 (emacs_mule_finish_composition): New function.
941 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
942 (decode_coding_emacs_mule): Avoid long looking ahead while
943 handling composition.
944 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
945 (ENCODE_COMPOSITION_RULE): New macro.
946 (finish_composition): New function.
947 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
948 (DECODE_COMPOSITION_START): New implementation.
949 (DECODE_COMPOSITION_END): Likewise.
950 (STORE_COMPOSITION_RULE): New macro.
951 (decode_coding_iso_2022): Avoid long looking ahead while handling
952 composition, CTEXT extended segment, and embedded UTF-8.
953 (setup_coding_system): For a coding of type iso-2022, reset
954 CODING_ISO_EXTSEGMENT_LEN (coding) and
955 CODING_ISO_EMBEDDED_UTF_8 (coding).
956 (get_translation): Delete arguments last_block, from_nchars,
957 to_nchars. Callers changed.
958 (produce_chars): Don't modify charbuf. Adjusted for the change of
959 get_translation.
960 (produce_composition): Adjust for the new annotation sequence.
961 (handle_composition_annotation): Likewise.
962 (consume_chars): Adjust for the change of get_translation.
963
964 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
965
966 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
967
968 2009-03-05 Kenichi Handa <handa@m17n.org>
969
970 * font.c (font_select_entity): New function.
971 (font_find_for_lface): Use font_select_entity to select a font.
972
973 * fontset.c (fontset_find_font): If a font found without
974 restricting to the characters C doesn't support C, try to find a
975 font with C restriction.
976
977 2009-03-04 Nikolaj Schumacher <me@nschum.de>
978
979 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
980
981 2009-03-04 Jason Rumney <jasonr@gnu.org>
982
983 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
984 characters that have already been read. (Bug#2569)
985
986 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
987 Log an error message if check_image_size failed.
988 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
989 (gs_load): Mention max-image-size in size error message. (Bug#2560)
990
991 2009-03-02 Eli Zaretskii <eliz@gnu.org>
992
993 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
994 when decoding process output.
995
996 2009-03-01 Richard M Stallman <rms@gnu.org>
997
998 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
999
1000 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
1001
1002 2009-02-28 Eli Zaretskii <eliz@gnu.org>
1003
1004 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
1005 (decode_coding_emacs_mule, decode_coding_iso_2022)
1006 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
1007 (decode_coding_raw_text, decode_coding_charset)
1008 (setup_coding_system, decode_eol, decode_coding, consume_chars):
1009 Honor inhibit-eol-conversion. (Bug #2186)
1010
1011 2009-02-28 Jason Rumney <jasonr@gnu.org>
1012
1013 * coding.c (detect_coding_charset): If not checking latin extra,
1014 fail on characters between 0x80 and 0xA0. (Bug#2354)
1015
1016 2009-02-28 Eli Zaretskii <eliz@gnu.org>
1017
1018 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
1019 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
1020
1021 2009-02-27 Glenn Morris <rgm@gnu.org>
1022
1023 * callint.c (Finteractive): Doc fix.
1024
1025 2009-02-27 Kenichi Handa <handa@m17n.org>
1026
1027 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
1028
1029 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
1030
1031 * font.c (font_style_to_value): Set value for unknown symbols to
1032 100 instead of 255.
1033 (weight_table, slant_table, width_table): Treat "unspecified" as
1034 the default value.
1035
1036 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
1037
1038 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
1039
1040 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
1041
1042 * lread.c (Fload): Stop checking Vloads_in_progress and signal
1043 error as soon as a recursive load is detected.
1044
1045 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
1046
1047 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
1048 before caching.
1049
1050 2009-02-24 Kenichi Handa <handa@m17n.org>
1051
1052 * fontset.c (fontset_find_font): Fix the condition for checking
1053 unavailable font.
1054
1055 2009-02-24 Glenn Morris <rgm@gnu.org>
1056
1057 * xfaces.c (Finternal_set_font_selection_order): Remove leading
1058 whitespace that confuses documentation.
1059
1060 2009-02-23 Miles Bader <miles@gnu.org>
1061
1062 * process.c (Flist_system_processes, Fprocess_attributes)
1063 (syms_of_process): Rename `system-process-attributes' to
1064 `process-attributes'.
1065
1066 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
1067
1068 * coding.h (struct coding_system): Make safe_charsets a pointer to
1069 unsigned char.
1070 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
1071 being 255.
1072 (SAFE_CHARSET_P): Likewise.
1073 (setup_iso_safe_charsets): Properly setup safe_charsets.
1074 (Fdefine_coding_system_internal): Likewise.
1075 (setup_coding_system): Likewise. Remove unneeded casts.
1076 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
1077 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
1078 unneeded casts.
1079
1080 * insdel.c (del_range_2): Don't modify gap contents when called
1081 from decode_coding_object. (Bug#1809)
1082
1083 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
1084
1085 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
1086 Qfont_object.
1087 (Ftype_of): Recognize font objects.
1088
1089 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
1090
1091 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
1092 moved to data.c.
1093
1094 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
1095
1096 * nsterm.m (x_make_frame_invisible): Unset async_visible,
1097 async_iconified. Based on a patch by Christian Lynbech
1098 <christian.lynbech@tieto.com>.
1099 (EmacsView-windowDidMiniaturize:): Unset async_visible.
1100
1101 2009-02-20 Glenn Morris <rgm@gnu.org>
1102
1103 * syntax.c (Fskip_chars_forward): Fix doc typo.
1104
1105 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
1106
1107 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
1108
1109 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
1110
1111 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
1112
1113 2009-02-19 Kenichi Handa <handa@m17n.org>
1114
1115 * coding.c (detect_coding): Preserve coding->mode.
1116 Don't overflow coding->carryover. (Bug#2370)
1117
1118 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
1119
1120 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
1121
1122 2009-02-18 Kenichi Handa <handa@m17n.org>
1123
1124 * font.c (font_check_otf_features): Fix handling of `nil' element.
1125 (Ffont_spec): Describe :lang and :otf in the docstring.
1126
1127 2009-02-16 Andreas Schwab <schwab@suse.de>
1128
1129 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
1130 string.
1131
1132 2009-02-16 Kenichi Handa <handa@m17n.org>
1133
1134 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
1135 (Bug#1723)
1136
1137 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
1138
1139 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
1140
1141 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
1142 (handle_line_prefix): Suppress wrapping of wrap prefixes.
1143
1144 2009-02-14 Eli Zaretskii <eliz@gnu.org>
1145
1146 * msdos.c (MAX_SCREEN_BUF): New macro.
1147 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
1148 Encode the entire run of glyphs sharing the same face, instead of
1149 doing that one glyph at a time (fixes a bug with displaying
1150 double-size characters).
1151
1152 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
1153
1154 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
1155
1156 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
1157 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
1158 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
1159
1160 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
1161 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
1162
1163 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
1164
1165 * keyboard.c (adjust_point_for_property): Allow stopping betwen two
1166 invisible areas.
1167
1168 2009-02-12 Jason Rumney <jasonr@gnu.org>
1169
1170 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
1171 (add_font_entity_to_list): Call check_face_name even when family
1172 is unspecified.
1173
1174 * w32term.c (x_display_pixel_height, x_display_pixel_width):
1175 Release DC when finished. Use NULL window to refer to desktop.
1176 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
1177
1178 * w32font.c (add_font_entity_to_list): Fix check for substituted
1179 raster fonts. (Bug#2219)
1180
1181 2009-02-12 Kenichi Handa <handa@m17n.org>
1182
1183 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
1184 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
1185 (autocmp_chars): Use fast_looking_at. Don't compose more
1186 characters than MAX_COMPOSITION_COMPONENTS.
1187 (find_automatic_composition): While looking forward and backward,
1188 check static composition. Fix where to stop looking forward.
1189 (composition_adjust_point): Fix checking of static composition.
1190 (Fcomposition_get_gstring): Pay attention to
1191 MAX_COMPOSITION_COMPONENTS.
1192
1193 * lisp.h (fast_looking_at): Extern it.
1194
1195 * search.c (fast_looking_at): New function.
1196
1197 * term.c (encode_terminal_code): Adjust for the change of
1198 <struct glyph>.u.cmp.to.
1199 (append_composite_glyph): Likewise.
1200
1201 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
1202 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
1203 composition.
1204 (append_composite_glyph): Adjust for the change of
1205 <strcut glyph>.u.cmp.to.
1206
1207 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
1208
1209 * casetab.c (init_casetab_once):
1210 * coding.c (ALLOC_CONVERSION_WORK_AREA):
1211 * font.c (font_update_lface):
1212 * fontset.c (Fnew_fontset):
1213 * ftfont.c (ftfont_drive_otf):
1214 * xfont.c (xfont_open):
1215 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
1216
1217 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1218
1219 * fileio.c (Fwrite_region): !NILP -> CONSP.
1220
1221 2009-02-10 Andreas Schwab <schwab@suse.de>
1222
1223 * process.c (send_process): Properly relocate pointer into data
1224 when using encoded data. (Bug#2272)
1225
1226 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
1227
1228 * coding.c (detect_coding_charset): Fix previous change.
1229
1230 2009-02-08 Jason Rumney <jasonr@gnu.org>
1231
1232 * w32fns.c (w32_hide_hourglass): Handle case where frame
1233 disappeared while hourglass was displayed. (Bug #2193)
1234
1235 2009-02-07 Andreas Schwab <schwab@suse.de>
1236
1237 * unexelf.c (unexec): Fix error message.
1238
1239 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
1240
1241 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
1242 when modal window is active. (Bug #2152)
1243 (applicationShouldTerminate:): Remove now-unneeded while loop
1244 around NSRunAlertPanel.
1245
1246 * nsmenu.m (popupSession): New file-global variable.
1247 (pop_down_menu): End the popupSession before closing dialog.
1248 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
1249 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
1250 don't query NSApp for events (just sleep instead).
1251
1252 2009-02-07 Eli Zaretskii <eliz@gnu.org>
1253
1254 * coding.c (syms_of_coding) <translation-table-for-input>:
1255 Modify doc string to discourage use for character code unification.
1256
1257 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1258
1259 * atimer.c (run_timers): Update pending_atimers.
1260
1261 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
1262
1263 * image.c (svg_load_image): Fix last change.
1264
1265 * xfns.c (Fx_create_frame): Signal an error if no font is
1266 found (Bug#2147).
1267
1268 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
1269
1270 * character.c (syms_of_character) <script-representative-chars>:
1271 Fix typo in docstring.
1272
1273 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
1274
1275 * nsmenu.m (pop_down_menu): New function.
1276 (ns_popup_dialog): Call it on unwind.
1277 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
1278 call timer_check() (Bug#2154).
1279 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
1280 handling_signal is set.
1281 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
1282
1283 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G
1284
1285 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
1286
1287 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
1288
1289 * keyboard.c (poll_for_input_1, handle_async_input):
1290 Set handling_signal under HAVE_NS.
1291
1292 2009-02-04 Glenn Morris <rgm@gnu.org>
1293
1294 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
1295
1296 2009-02-04 Kenichi Handa <handa@m17n.org>
1297
1298 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
1299
1300 * charset.c (Fchar_charset): New optional arg restriction.
1301
1302 * coding.h (coding_system_charset_list): Extern it.
1303
1304 * coding.c (coding_system_charset_list): New function.
1305
1306 * composite.c: Include coding.h and termhooks.h.
1307 (composition_gstring_p): Fix for the terminal case.
1308 (composition_gstring_width): Likewise.
1309 (fill_gstring_body): Likewise.
1310 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
1311 the frame.
1312 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
1313 is within a composition.
1314 (Fcomposition_get_gstring): Fix the terminal case.
1315
1316 * term.c (encode_terminal_code): Fix handling of composition.
1317 (produce_composite_glyph): For static composition, get pixel_width
1318 from struct composition.
1319
1320 2009-02-02 Andreas Schwab <schwab@suse.de>
1321
1322 * unexelf.c (unexec): Handle unaligned bss offset.
1323
1324 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
1325
1326 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
1327 XT,w32read_socket changes to ns_read_socket.
1328
1329 * keyboard.c (handle_interrupt): Don't call
1330 quit_throw_to_read_char() under NS.
1331
1332 * blockinput.h: Remove NS-specific code.
1333
1334 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
1335
1336 * dispnew.c (window_change_signal): Don't try to get the size of a
1337 suspended tty frame.
1338 * term.c (Fresume_tty): Resize if the size has changed while the
1339 tty was suspended.
1340
1341 * alloc.c (mark_stack): Properly conditionalize previous change.
1342
1343 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
1344
1345 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
1346 * w32term.c (w32_read_socket) [SYNC_INPUT]:
1347 Remove; this code is not used on Windows.
1348
1349 2009-01-30 Eli Zaretskii <eliz@gnu.org>
1350
1351 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
1352 EOLs that also has stray ^M characters.
1353
1354 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
1355
1356 * atimer.c (run_timers, alarm_signal_handler):
1357 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
1358 * w32inevt.c (w32_console_read_socket):
1359 * w32term.c (w32_read_socket):
1360 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
1361
1362 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
1363
1364 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
1365 Initialize it as a relative filename pattern.
1366 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
1367 (Fcall_process_region): Simplify temp file creation using
1368 temporary-file-directory.
1369
1370 2009-01-29 Eli Zaretskii <eliz@gnu.org>
1371
1372 * msdos.c: Rename pending_signals to msdos_pending_signals.
1373 (sig_suspender, sigprocmask): Adjust.
1374
1375 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
1376
1377 * keyboard.c (pending_signals): New var.
1378 (poll_for_input, input_available_signal, init_keyboard): Set it.
1379 (process_pending_signals): New function.
1380
1381 * lisp.h (QUIT): Check pending_signals instead of
1382 interrupt_input_pending. Use process_pending_signals.
1383
1384 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
1385
1386 * process.c (wait_reading_process_output): Use process_pending_signals.
1387
1388 * sysdep.c (emacs_write): Use process_pending_signals.
1389
1390 * xterm.c (XTread_socket): Update pending_signals.
1391
1392 * w32term.c (w32_read_socket): Update pending_signals.
1393
1394 * w32inevt.c (w32_console_read_socket): Update pending_signals.
1395
1396 2009-01-29 Kenichi Handa <handa@m17n.org>
1397
1398 * xftfont.c (xftfont_has_char): New function.
1399 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
1400
1401 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
1402
1403 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
1404 under GNUstep.
1405 (ns_query_color): New declaration.
1406
1407 * nsterm.m (ns_confirm_quit): New variable.
1408 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
1409 (EmacsApp-applicationShouldTerminate:): Use it.
1410 (EmacsPrefsController): Let user set it.
1411 (ns_query_color): New function.
1412 (ns_defined_color): Use it.
1413 (ns_initialize): Drop.
1414 (ns_term_init): Add two lines from ns_initialize(), and set
1415 input_interrupt_mode to nil.
1416
1417 * image.c (svg_load_image): Don't right-shift background RGB when
1418 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
1419
1420 2009-01-28 Kenichi Handa <handa@m17n.org>
1421
1422 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
1423 (fontset_get_font_group): Remember that no font-group is specified
1424 for C.
1425
1426 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
1427
1428 * fns.c (concat): Check for string overflow (bug#1787).
1429
1430 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
1431 Quadruple undo limits (bug#1501).
1432
1433 2009-01-27 Kenichi Handa <handa@m17n.org>
1434
1435 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
1436 directly use GT_Get_Char_index.
1437
1438 * xftfont.c (struct xftfont_info): New member `index'.
1439
1440 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
1441 (Ffontset_font): Adjust for the change of fontset entry.
1442
1443 2009-01-26 Kenichi Handa <handa@m17n.org>
1444
1445 * fontset.c (fontset_find_font): Fix handling of non-cons return
1446 value of fontset_get_font_group.
1447 (fontset_font): Revert last change.
1448
1449 2009-01-26 Jason Rumney <jasonr@gnu.org>
1450
1451 * w32font.c (w32font_list_internal): Return quickly if registry is
1452 unknown. Simplify final return.
1453 (add_font_entity_to_list): Break complex logic down into more
1454 manageable chunks. Move unknown registry check to
1455 w32font_list_internal.
1456
1457 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
1458
1459 Changes to remove Feval calls from GUI under NS.
1460
1461 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
1462 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
1463 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
1464
1465 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
1466 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
1467 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
1468 instead of NON_ASCII_KEYSTROKE_EVENT.
1469 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
1470 (EmacsApp-applicationShouldTerminate:): Query user.
1471 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
1472 instead of Feval.
1473
1474 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
1475
1476 * keyboard.c (kbd_buffer_get_event): Check for it.
1477 (keys_of_keyboard): Define lispy keys for
1478 ns-put/unput-working-text.
1479
1480 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
1481 versions.
1482 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
1483
1484 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
1485
1486 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
1487 setting current_buffer directly. (Bug#2044)
1488
1489 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
1490
1491 * fontset.c (fontset_font): If we know there is no font, don't do
1492 any work. (Bug#1952, bug#1990).
1493
1494 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
1495
1496 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
1497
1498 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
1499 (ns_no_defaults): New declaration.
1500 (main): Use it.
1501
1502 * nsterm.h (ns_no_defaults): New declaration.
1503
1504 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
1505
1506 * nsterm.m (ns_no_defaults): New variable.
1507 (ns_initialize): Don't read defaults when ns_no_defaults.
1508 (EmacsView-readSelectionFromPasteboard:)
1509 (writeSelectionToPasteboard:types:): New stubbed-out methods for
1510 NSServicesRequests protocol. (Bug#1435)
1511 (ns_dumpglyphs_stretch): New function.
1512 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
1513 of 2008-11-15 to other terms. (Bug#615)
1514
1515 * nsimage.m (setPixmapData:): Set to ignore image DPI.
1516
1517 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
1518
1519 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
1520 call for Sparc64.
1521
1522 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1523
1524 * nsfns.m:
1525 * nsgui.h:
1526 * nsmenu.m:
1527 * nsselect.m:
1528 * nsterm.h:
1529 * nsterm.m: Remove '23' comments that indicated code added during
1530 update from emacs-20 -> emacs-23.
1531
1532 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1533
1534 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
1535 ns_alternate_modifier. (Bug#1217)
1536
1537 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
1538 Display all shortcuts, including those w/o super modifier.
1539
1540 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
1541
1542 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
1543
1544 * fileio.c (Vwrite_region_post_annotation_function)
1545 (Vwrite_region_annotation_buffers): New vars.
1546 (build_annotations_unwind): Just reset
1547 Vwrite_region_annotation_buffers.
1548 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
1549 Call write-region-post-annotation-function.
1550 (build_annotations): Add to Vwrite_region_annotation_buffers if
1551 buffer changes.
1552
1553 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
1554
1555 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
1556 Tiger.
1557 * nsfns.m (ns_do_applescript):
1558 Conditionalize typeUTF16ExternalRepresentation on Tiger.
1559
1560 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
1561
1562 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
1563
1564 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
1565
1566 * nsmenu.m (NSMENUPROFILE): Change #if style.
1567
1568 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
1569
1570 * nsterm.m (x_set_frame_alpha): Add prototype.
1571 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
1572 handle Ctrl-tab. (Bug#1841)
1573 (ns_get_color): Use unsigned long long for scanned hex string value.
1574 (ns_term_shutdown): Abort on non SIGTERM signals.
1575 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
1576 (EmacsPrefsController-setPanelFromDefaultValues): New function.
1577 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
1578 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
1579 (ns_defined_color): Fix settings of the XColor variable fields:
1580 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
1581
1582 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
1583 DPI. (Bug#1316)
1584 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
1585 values in onTiger section.
1586
1587 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
1588
1589 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
1590 Check return value of font_spec_from_name.
1591 (Fx_list_fonts): Doc fix. (Bug#1951)
1592
1593 * font.c (font_spec_from_name): Return Qnil if font name could not
1594 be parsed.
1595 (font_parse_name): Treat a `?' character as part of an XLFD.
1596
1597 * fns.c (Fsubstring): Doc fix.
1598
1599 2009-01-19 Kenichi Handa <handa@m17n.org>
1600
1601 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
1602 (ftfont_list): Likewise.
1603
1604 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
1605
1606 * dbusbind.c (Fdbus_register_signal):
1607 * process.c (conv_sockaddr_to_lisp):
1608 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
1609
1610 * callproc.c (Fgetenv_internal): Doc fix.
1611
1612 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
1613
1614 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
1615 it is not even used.
1616
1617 2009-01-16 Glenn Morris <rgm@gnu.org>
1618
1619 * font.c (Ffont_variation_glyphs): Silence compiler.
1620
1621 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
1622
1623 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
1624 Reported by David Robinow <drobinow@gmail.com>.
1625
1626 2009-01-15 Kenichi Handa <handa@m17n.org>
1627
1628 * coding.c (detect_coding_system): Fix handling of null_byte_found.
1629
1630 2009-01-14 Jason Rumney <jasonr@gnu.org>
1631
1632 * frame.c (x_set_font): Always store a font to the font parameter,
1633 never a fontset. (Bug#1562)
1634
1635 2009-01-14 Kenichi Handa <handa@m17n.org>
1636
1637 * coding.c (TWO_MORE_BYTES): New macro.
1638 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
1639
1640 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
1641
1642 * font.c (font_clear_prop): If clearing the family, clear the font
1643 width index too.
1644
1645 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
1646
1647 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
1648
1649 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
1650 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
1651 functions, use sizeof.
1652
1653 2009-01-12 Martin Rudalics <rudalics@gmx.at>
1654
1655 * keyboard.c (read_char): Fix case where last_nonmenu_event
1656 returned a bad value with submenus. (Bug#447)
1657
1658 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
1659
1660 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
1661 family, clear the font width index too.
1662
1663 2009-01-11 Jason Rumney <jasonr@gnu.org>
1664
1665 * keyboard.c (cmd_error_internal): Exit when errors occur before
1666 frame creation and not in daemon mode. (Bug#1836)
1667
1668 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
1669
1670 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
1671 of a display vector, backtrack.
1672 (try_window_reusing_current_matrix): Check glyph type before
1673 referencing charpos member.
1674
1675 2009-01-10 Eli Zaretskii <eliz@gnu.org>
1676
1677 Fix Bug #876:
1678
1679 * coding.c (inhibit_null_byte_detection): New variable.
1680 (detect_coding, detect_coding_system): Don't pay attention to null
1681 bytes if inhibit_null_byte_detection is non-zero.
1682 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
1683 <inhibit-iso-escape-detection>: Doc fix.
1684
1685 2009-01-09 Jason Rumney <jasonr@gnu.org>
1686
1687 * w32font.c (add_font_entity_to_list): Don't report unknown
1688 Windows charset as any unrecognized registry. (Bug#1548)
1689 Only report Unicode Plane 2 fonts as unicode-sip.
1690
1691 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
1692
1693 * xfaces.c (Fx_font_family_list): Delete function.
1694 Move compatibility version to faces.el.
1695
1696 * font.c (Ffont_family_list): Return a list of strings, not symbols.
1697
1698 2009-01-09 Martin Rudalics <rudalics@gmx.at>
1699
1700 * frame.c (x_set_frame_parameters): Remember requested value for
1701 fullscreen before it's reset by the parameter handler.
1702
1703 2009-01-09 Glenn Morris <rgm@gnu.org>
1704
1705 * keyboard.c (last_command_char): For clarity, rename to...
1706 (last_command_event): ... and update all users.
1707 (last_input_char): For clarity, rename to...
1708 (last_input_event): ... and update all users.
1709 (last-command-char, last-input-char): Move to subr.el as aliases.
1710 * cmds.c, commands.h: Update for last_command_char rename.
1711
1712 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
1713
1714 * font.c (font_open_for_lface): Handle unspecified height attribute.
1715
1716 2009-01-08 Jason Rumney <jasonr@gnu.org>
1717
1718 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
1719 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
1720 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
1721 Don't declare.
1722 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
1723 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
1724
1725 2009-01-07 Kenichi Handa <handa@m17n.org>
1726
1727 * fileio.c (Finsert_file_contents): In the case of replace,
1728 remember the coding system used for decoding in
1729 coding_system (Bug#1039).
1730
1731 * coding.c (decode_coding_utf_8): Check byte_after_cr before
1732 breaking the loop. (Bug#870)
1733 (decode_coding_utf_16, decode_coding_emacs_mule)
1734 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
1735 (decode_coding_charset): Likewise.
1736
1737 2009-01-05 Martin Rudalics <rudalics@gmx.at>
1738
1739 * frame.c (x_set_frame_parameters): Make sure height (width) get
1740 applied when fullwidth (fullheight) is set. (Bug#1522)
1741
1742 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
1743
1744 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
1745 (utc_base): Declare as ULONGLONG, not long double.
1746 (convert_time_raw): Delete.
1747 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
1748 (initialize_utc_base): New function.
1749 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
1750 (convert_from_time_t): Use initialize_utc_base; compute result with
1751 64-bit arithmetic.
1752 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
1753
1754 2009-01-03 Eli Zaretskii <eliz@gnu.org>
1755
1756 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
1757 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
1758 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
1759 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
1760 [!subprocesses]: Define.
1761 (syms_of_process) [!subprocesses]: Intern and staticpro them.
1762 (Flist_system_processes, Fsystem_process_attributes)
1763 [!subprocesses]: Call list_system_processes and
1764 system_process_attributes instead of returning Qnil.
1765
1766 * dosfns.c (system_process_attributes, list_system_processes):
1767 New functions.
1768
1769 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
1770
1771 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
1772 Don't use the default (no-op) implementation.
1773
1774 2009-01-03 Jason Rumney <jasonr@gnu.org>
1775
1776 * keyboard.c (parse_modifiers_uncached): Wheel events are
1777 clicks (bug#687).
1778
1779 * w32term.c (x_query_colors, x_query_color): New functions.
1780
1781 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
1782 (svg_load_image): Cast returned pointers from dynamically loaded
1783 functions. Eliminate W32 specific code.
1784
1785 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
1786
1787 * nsfns.m (x_set_foreground_color, x_set_background_color)
1788 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
1789 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
1790 x_ prefix instead of ns_. Update references.
1791 (syms_of_nsfns): Add a FIXME comment.
1792
1793 * nsterm.m (x_set_cursor_type): New prototype.
1794 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
1795
1796 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
1797 for Solaris instead of incorrectly providing Qutime and Qcutime.
1798
1799 2009-01-02 Eli Zaretskii <eliz@gnu.org>
1800
1801 * w32.c (process_times): Compute sum of utime and stime.
1802 (system_process_attributes): Add Qtime to the alist.
1803
1804 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
1805 and add them to the alist.
1806
1807 * process.c (top level) <Qtime, Qctime>: New variables.
1808 (syms_of_process): staticpro them.
1809 (Fsystem_process_attributes): Add their documentation to the doc
1810 string.
1811
1812 * process.h: Declare Qtime and Qctime.
1813
1814 2009-01-02 Jason Rumney <jasonr@gnu.org>
1815
1816 * image.c (Qgobject): New symbol.
1817 (syms_of_image): Initialize it.
1818 (init_svg_functions): Load some functions from gobject library.
1819
1820 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
1821
1822 * frame.c (make_terminal_frame): Remove redundant code and useless
1823 block.
1824
1825 2009-01-01 Andreas Schwab <schwab@suse.de>
1826
1827 * process.c (conv_sockaddr_to_lisp): Add workaround for
1828 getsockname bug on BSD.
1829
1830 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
1831
1832 * xfns.c (x_create_tip_frame): Set border width of the X window.
1833
1834 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
1835
1836 2009-01-01 Jason Rumney <jasonr@gnu.org>
1837
1838 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
1839 Don't block input, as per earlier xterm.c changes.
1840
1841 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
1842
1843 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
1844 (ns_appkit_version_int): New function.
1845 (x-server-version): Use ns_appkit_version_int and follow 21+
1846 convention of returning 3 integers.
1847
1848 2008-12-30 Kenichi Handa <handa@m17n.org>
1849
1850 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
1851 (CHAR_SURROGATE_PAIR_P): New macro.
1852
1853 * font.h (struct font_driver): New member get_variation_glyphs.
1854
1855 * font.c (font_range): Don't require a font for a variation selector.
1856 (Ffont_variation_glyphs): New function.
1857 (syms_of_font): Defsubr it.
1858
1859 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
1860 ftfont_variation_glyphs.
1861 (setup_otf_gstring): New function.
1862 (ftfont_drive_otf): Use it.
1863 (ftfont_shape_by_flt): Handle variation selector.
1864 (ftfont_variation_glyphs): New function.
1865
1866 2008-12-30 Martin Rudalics <rudalics@gmx.at>
1867
1868 * frame.c (Vemacs_iconified): Remove.
1869
1870 2008-12-30 Jason Rumney <jasonr@gnu.org>
1871
1872 * frame.c (store_frame_param, x_get_arg): Enable newer code on
1873 WINDOWSNT too, as related changes have already been synced. (Bug#117)
1874
1875 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
1876
1877 * indent.c (Fvertical_motion): Don't advance iterator if we have
1878 reseated to the desired position.
1879
1880 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
1881 checking for pos match.
1882
1883 2008-12-30 Kenichi Handa <handa@m17n.org>
1884
1885 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
1886 just get the low 8-bit of the code.
1887
1888 * font.c (font_intern_prop): Validate str as multibyte.
1889
1890 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
1891
1892 * dispextern.h (struct face): Move lface and hash from the middle
1893 of bitfields.
1894
1895 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
1896
1897 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
1898
1899 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
1900 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
1901 instead of intervals.h.
1902
1903 2008-12-26 Andreas Schwab <schwab@suse.de>
1904
1905 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
1906 cons.
1907
1908 2008-12-26 Martin Rudalics <rudalics@gmx.at>
1909
1910 * textprop.c (Qminibuffer_prompt): New variable.
1911 (syms_of_textprop): Initialize it.
1912 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
1913 in minibuffer-prompt face. (Bug#1662)
1914
1915 2008-12-25 Jason Rumney <jasonr@gnu.org>
1916
1917 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
1918
1919 2008-12-24 Jason Rumney <jasonr@gnu.org>
1920
1921 * ralloc.c (r_alloc_reset_variable): New function.
1922
1923 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
1924 record of what points where. (Bug#716)
1925
1926 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
1927
1928 * minibuf.c (read_minibuf): Follow the non-interactive case when
1929 running as a daemon, before detaching.
1930
1931 2008-12-22 Andreas Schwab <schwab@suse.de>
1932
1933 * buffer.c (init_buffer): Use realloc instead of xrealloc.
1934 * gtkutil.c (free_widget_value): Use xfree instead of free.
1935
1936 2008-12-22 Martin Rudalics <rudalics@gmx.at>
1937
1938 * frame.c (delete_frame): New function derived from
1939 Fdelete_frame to handle Qnoelisp value for FORCE argument.
1940 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
1941 (Fdelete_frame): Call delete_frame. Remove line from doc-string
1942 saying that FORCE non-nil doesn't run `delete-frame-functions'.
1943 * frame.h: Extern delete_frame.
1944 * window.c (window_loop):
1945 * terminal.c (delete_terminal):
1946 * xterm.c (x_connection_closed):
1947 * xfns.c (Fx_hide_tip):
1948 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
1949
1950 2008-12-21 Jason Rumney <jasonr@gnu.org>
1951
1952 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
1953 when character maps to .notdef character.
1954
1955 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
1956
1957 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
1958
1959 2008-12-20 Jason Rumney <jasonr@gnu.org>
1960
1961 * frame.c (Fmake_terminal_frame): Raise an error when called from
1962 a graphical frame on Windows. (Bug#1325)
1963
1964 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
1965
1966 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
1967
1968 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
1969
1970 * minibuf.c (Fread_buffer): Doc fix.
1971
1972 2008-12-20 Jason Rumney <jasonr@gnu.org>
1973
1974 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
1975 server name in UNC paths. (Bug#719)
1976
1977 * coding.c (decode_coding): Clear chars_at_source flag when using
1978 charbuf. (Bug#1035)
1979
1980 2008-12-19 Daniel Engeler <engeler@gmail.com>
1981
1982 * sysdep.c (serial_configure): Fix typo.
1983
1984 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
1985
1986 * sysdep.c: Include alloca.h.
1987 (system_process_attributes): Add implementation for Solaris.
1988
1989 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
1990
1991 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
1992
1993 Reorganize implementation of Flist_system_processes and
1994 Fsystem_process_attributes. No functional changes.
1995 * process.c: Don't #include pwd.h, grp.h and limits.h.
1996 (Flist_system_processes): Just call list_system_processes.
1997 (Fsystem_process_attributes): Just call system_process_attributes.
1998 (procfs_list_system_processes, time_from_jiffies)
1999 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
2000 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
2001
2002 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
2003 (list_system_processes): Rename from
2004 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
2005 Provide a do nothing implementation.
2006 (system_process_attributes): Rename from
2007 procfs_list_system_processes.
2008 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
2009 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
2010
2011 * w32.c (list_system_processes): Rename from
2012 w32_list_system_processes.
2013 (system_process_attributes): Rename from
2014 w32_system_process_attributes.
2015
2016 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
2017
2018 * process.h (w32_list_system_processes)
2019 (w32_system_process_attributes): Remove.
2020 (list_system_processes, system_process_attributes): New
2021 prototypes.
2022
2023 2008-12-19 Kenichi Handa <handa@m17n.org>
2024
2025 * xfont.c (xfont_decode_coding_xlfd): New function.
2026 (xfont_encode_coding_xlfd): New function.
2027 (xfont_list_pattern): Decode XLFD by iso-8859-1.
2028 (xfont_list): Decode and encode XLFD by iso-8859-1.
2029 (xfont_match): Likewise.
2030 (xfont_list_family): Likewise.
2031 (xfont_open): Likewise.
2032
2033 * ftfont.c (ftfont_open): Generate a multibyte string if given
2034 names are utf-8.
2035
2036 * xftfont.c (xftfont_open): Generate a multibyte string if given
2037 names are utf-8.
2038
2039 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
2040
2041 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
2042 changed.
2043 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
2044 clicked on a detached tool bar button.
2045
2046 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
2047
2048 * emacs.c (main): Print and error and exit when no data is read
2049 from the pipe.
2050
2051 2008-12-17 Jason Rumney <jasonr@gnu.org>
2052
2053 * w32font.c (w32font_has_char): Always return -1.
2054
2055 2008-12-16 Kenichi Handa <handa@m17n.org>
2056
2057 * font.c (font_open_entity): Fix previous change.
2058
2059 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
2060
2061 * process.c: Include <limits.h>.
2062
2063 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
2064
2065 * font.c (font_update_drivers): Fix mistake in reconstructing the
2066 driver list.
2067
2068 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
2069
2070 * font.c (font_clear_cache): Fix format of font cache data.
2071
2072 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
2073
2074 * xftfont.c (xftfont_open): Free Xft font pattern if
2075 XftFontOpenPattern fails.
2076
2077 * xterm.c (x_free_frame_resources): Remove extraneous call to
2078 free_frame_faces.
2079
2080 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
2081
2082 * xterm.c (x_delete_display): Move xim_close_dpy call to
2083 x_delete_terminal.
2084 (x_delete_terminal): Call xim_close_dpy.
2085
2086 2008-12-13 Jason Rumney <jasonr@gnu.org>
2087
2088 * w32font.c (intern_font_name): New function.
2089 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
2090 (w32font_open_internal, Fx_select_font): Decode font name.
2091 (fill_in_logfont, list_all_matching_fonts): Encode font name.
2092
2093 * w32font.h (intern_font_name): Declare new function.
2094
2095 * w32uniscribe.c (add_opentype_font_name_to_list):
2096 Use intern_font_name.
2097
2098 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
2099
2100 * frame.c (Fdelete_frame): Call free_font_driver_list.
2101
2102 * font.c (free_font_driver_list): Implement missing function.
2103
2104 * w32term.c (w32_term_init): Don't initialize the image cache
2105 here; it will be done in init_frame_faces.
2106
2107 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
2108 (struct x_display_info): Remove unused member null_pixel. New
2109 member xim_callback_data.
2110
2111 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
2112 (xim_initialize): Save pointer to callback function data.
2113 (xim_close_dpy): Free callback function data. Call XCloseIM,
2114 reverting 2008-11-04 change by David Smith.
2115 (x_term_init): Don't initialize the image cache here; it will be
2116 done in init_frame_faces. Remove ancient "null_pixel" cruft.
2117 (x_delete_display): Free x_dnd_atoms member.
2118
2119 2008-12-13 Kenichi Handa <handa@m17n.org>
2120
2121 * font.c (font_rescale_ratio): Moved from xfaces.c.
2122 Argument type changed. Handle a font-spec too.
2123 (font_score): Check Vface_font_rescale_alist.
2124 (font_open_entity): Likewise. (Bug#1547)
2125
2126 * xfaces.c (font_rescale_ratio): Moved to font.c.
2127
2128 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
2129
2130 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
2131
2132 2008-12-12 Jason Rumney <jasonr@gnu.org>
2133
2134 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
2135 Vwindow_system_version to the real w32 major version.
2136
2137 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
2138
2139 * term.c (init_tty): Move setting the terminal name before the
2140 potential user: maybe_fatal.
2141
2142 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
2143
2144 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
2145 all callers changed. Call free_frame_faces to free the face cache.
2146
2147 2008-12-11 Jason Rumney <jasonr@gnu.org>
2148
2149 * w32font.c (fill_in_logfont): Don't assume symbol script means
2150 SYMBOL_CHARSET. (Bug#547)
2151
2152 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
2153 size for surrogates. (Bug#1096, bug#872)
2154
2155 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
2156
2157 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
2158
2159 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
2160
2161 * process.c (Fsystem_process_attributes, syms_of_process):
2162 Fix typo in name of Ssystem_process_attributes.
2163 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
2164
2165 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
2166
2167 * syntax.c (Fmodify_syntax_entry): Doc fix.
2168
2169 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
2170
2171 * font.c (Ffont_spec): Move usage to end of docstring.
2172
2173 2008-12-10 Jason Rumney <jasonr@gnu.org>
2174
2175 * w32font.c (Qcham): New symbol.
2176 (font_supported_scripts): Add cham, and comments for other new
2177 scripts in bitfield from OpenType spec.
2178 (add_font_entity_to_list): Limit unicode-sip fonts to those that
2179 contain characters beyond the bmp.
2180
2181 2008-12-10 Kenichi Handa <handa@m17n.org>
2182
2183 * ftfont.c (fc_charset_table): Add "unicode-sip".
2184 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
2185 Qunicode_sip.
2186
2187 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
2188
2189 * coding.c (QCdefault_char): Rename from QCdefalut_char.
2190 (Fcoding_system_put): Use QCdefault_char.
2191 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
2192
2193 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
2194
2195 * xftfont.c (syms_of_xftfont): Fix typo.
2196
2197 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
2198
2199 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
2200
2201 * emacs.c (main): Close daemon_pipe on exec.
2202
2203 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
2204
2205 * termchar.h (struct tty): New members termcap_term_buffer and
2206 termcap_strings_buffer.
2207
2208 * term.c (encode_terminal_code): Free any previous memory blocks
2209 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
2210 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
2211 All callers changed.
2212 (init_tty): Store termcap data and string buffers in new struct
2213 tty members termcap_term_buffer and termcap_strings_buffer.
2214 (delete_tty): Free them.
2215 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
2216
2217 2008-12-07 Seiji Zenitani <zenitani@mac.com>
2218
2219 * nsfns.m (ns_set_background_color): Remove code duplication.
2220 It was a substitute for face-transparency on OS X 10.3.
2221
2222 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
2223
2224 * coding.c (make_conversion_work_buffer): Disable buffer
2225 modification hooks in the work buffer.
2226
2227 2008-12-05 Eli Zaretskii <eliz@gnu.org>
2228
2229 * process.c (procfs_system_process_attributes): If `nread' has a
2230 negative value, assign zero to it.
2231
2232 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
2233
2234 * eval.c (Vdebug_on_error): Doc fix.
2235
2236 2008-12-05 Kenichi Handa <handa@m17n.org>
2237
2238 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
2239 second character is a combining character.
2240
2241 2008-12-05 Eli Zaretskii <eliz@gnu.org>
2242
2243 * process.c (procfs_system_process_attributes): Don't use cmd,
2244 cmdsize, and q without initializing them first.
2245
2246 2008-12-04 Jason Rumney <jasonr@gnu.org>
2247
2248 * w32font.c (w32font_draw): Initialize orig_clip before getting
2249 it, and delete it when finished.
2250
2251 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
2252
2253 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
2254 case when running as a daemon before detaching.
2255
2256 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
2257
2258 * w32.c (init_environment): Don't unload library shell32.dll.
2259
2260 2008-12-03 Kenichi Handa <handa@m17n.org>
2261
2262 * font.c (font_at): Set `multibyte' at first.
2263
2264 * coding.c (decode_coding_charset): Check type of an element of
2265 vector VALIDS.
2266 (encode_coding_emacs_mule): Be sure to set `code'.
2267
2268 * fontset.c (face_for_char): Handle invalid charset property correctly.
2269 (font_for_char): Likewise.
2270
2271 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
2272
2273 * font.c (Fopen_font): Compute pixel size correctly.
2274 (font_update_lface): Handle fonts with corrupted size specs,
2275 i.e. non-int and non-float.
2276
2277 * ftfont.c (ftfont_match): Initialize entity variable.
2278 (ftfont_resolve_generic_family): Avoid using uninitialized var.
2279 (ftfont_list_family): Initialize list var earlier.
2280
2281 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
2282
2283 * xterm.c (x_draw_glyph_string): Fall back on
2284 underline_minimum_offset for underline position.
2285
2286 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
2287
2288 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
2289
2290 * character.c (c_string_width): Specify the type for LEN.
2291
2292 2008-12-03 Kenichi Handa <handa@m17n.org>
2293
2294 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
2295 (decode_coding_utf_8): Likewise.
2296 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
2297 (produce_chars): Initialize consumed_chars to 0.
2298
2299 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
2300
2301 * keyboard.c (make_lispy_position): Only use PT if the selected
2302 window is current.
2303
2304 2008-12-02 Andreas Schwab <schwab@suse.de>
2305
2306 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
2307
2308 * doprnt.c (doprnt1): Fix size of charbuf.
2309
2310 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
2311
2312 * keyboard.c (timer_check): Revert last change.
2313
2314 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
2315
2316 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
2317
2318 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
2319
2320 * makefile.w32-in: Update dependencies.
2321 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
2322
2323 2008-12-01 Andreas Schwab <schwab@suse.de>
2324
2325 * font.c (register_font_driver): Use xmalloc.
2326 (font_put_frame_data): Likewise.
2327
2328 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
2329
2330 * xfaces.c (realize_x_face): Make abort condition clearer.
2331
2332 * gtkutil.c (update_frame_tool_bar): Initialize variable.
2333
2334 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
2335
2336 * keyboard.c (timer_check): After a timer runs, ensure that the
2337 selected window's buffer is current.
2338
2339 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
2340
2341 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
2342 It was accidentally restored by the Unicode merge.
2343
2344 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
2345
2346 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
2347
2348 * w32proc.c: Include "coding.h".
2349 (Fw32_short_file_name): Encode filename passed to Windows API.
2350 (Fw32_long_file_name): Encode filename passed to Windows API and
2351 decode back the result. (Bug#1433)
2352
2353 2008-11-29 Kenichi Handa <handa@m17n.org>
2354
2355 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
2356 not before accessing it.
2357
2358 * charset.c (Fdefine_charset_internal): After calculating
2359 min_char, max_char, and fastmap, copy the charset structure again.
2360 (encode_char): Fix the previous change.
2361
2362 2008-11-28 Seiji Zenitani <zenitani@mac.com>
2363
2364 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
2365
2366 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
2367
2368 * nsterm.m (x_set_frame_alpha): New function.
2369
2370 2008-11-27 Eli Zaretskii <eliz@gnu.org>
2371
2372 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
2373
2374 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
2375
2376 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
2377 pointer to check_face_name.
2378
2379 2008-11-27 Kenichi Handa <handa@m17n.org>
2380
2381 * category.h (SET_CATEGORY_SET): Call set_category_set.
2382 (set_category_set): Extern it.
2383
2384 * category.c (hash_get_category_set): New function.
2385 (Fmodify_category_entry): Adjusted for the change of
2386 char_table_ref_and_range. Call hash_get_category_set to get a
2387 category set to store in the table.
2388
2389 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
2390 Funify_charset.
2391
2392 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
2393 (DECODE_CHAR): Check if the decoder vector is ready.
2394 (ENCODE_CHAR): Check if the encoder char-table is ready.
2395 (maybe_unify_char): Extern it.
2396
2397 * charset.c (Vchar_unified_charset_table): Delete it.
2398 (inhibit_load_charset_map): New variable.
2399 (temp_charset_work): New variable.
2400 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
2401 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
2402 New macros.
2403 (load_charset_map): Meaning of control_flag changed. If
2404 inhibit_load_charset_map is nonzero, setup a table in
2405 temp_charset_work.
2406 (load_charset): New argument control_flag.
2407 (map_charset_for_dump): New function.
2408 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
2409 map_charset_for_dump.
2410 (Fdefine_charset_internal): If the charset method is MAP, load
2411 mapping tables by calling load_charset.
2412 (Funify_charset): Don't load a mapping table but directly set
2413 Vchar_unify_table.
2414 (maybe_unify_char): New function.
2415 (decode_char): Don't handle the deleted method MAP_DEFERRED.
2416 Handle the case of inhibit_load_charset_map being nonzero.
2417 (encode_char): Don't handle the deleted method MAP_DEFERRED.
2418 Handle the case of inhibit_load_charset_map being nonzero.
2419 (Fclear_charset_maps): Just free temp_charset_work.
2420 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
2421 variable.
2422
2423 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
2424 change of char_table_ref_and_range.
2425 (char_table_ref_and_range): Change the meaning of argument FROM
2426 and TO. Now the caller must provide initial values for *FROM
2427 and *TO.
2428
2429 * fontset.c (fontset_add): Adjusted for the change of
2430 char_table_ref_and_range.
2431 (fontset_get_font_group): Likewise.
2432 (Ffontset_info): Likewise.
2433
2434 * keymap.c (describe_vector): Adjusted for the change of
2435 char_table_ref_and_range. For char-table, put boundary between
2436 non-ASCII and 8-bit characters.
2437
2438 * print.c (print_object): For bool-vector, delete unnecessary
2439 check of ASCII_BYTE_P.
2440
2441 2008-11-26 Jason Rumney <jasonr@gnu.org>
2442
2443 * w32font.c (w32font_open_internal): Don't include external
2444 leading in font height. (Bug#879)
2445
2446 2008-11-26 Glenn Morris <rgm@gnu.org>
2447
2448 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
2449 redefinition with ifdef. (Bug#1383)
2450
2451 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
2452
2453 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
2454
2455 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
2456
2457 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
2458 New EmacsView methods.
2459 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
2460 Fixes bug #1048,1357,1414.
2461
2462 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
2463
2464 Fix bug #1362.
2465 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
2466 is not an indexed color.
2467 * nsterm.m (free_indexed_color): Add argument checking.
2468 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
2469
2470 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
2471
2472 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
2473 Document confirm-after-completion value for
2474 minibuffer-completion-confirm.
2475
2476 2008-11-24 Jason Rumney <jasonr@gnu.org>
2477
2478 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
2479 warning.
2480
2481 2008-11-23 Jason Rumney <jasonr@gnu.org>
2482
2483 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
2484 restored before returning.
2485
2486 * w32font.c (check_face_name): New function.
2487 (add_font_entity_to_list): Use it to filter out common substituted
2488 fonts. (Bug#642)
2489
2490 2008-11-22 Martin Rudalics <rudalics@gmx.at>
2491
2492 * buffer.c (Fswitch_to_buffer): Reword and mention new option
2493 confirm-nonexistent-file-or-buffer in doc-string.
2494
2495 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2496
2497 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
2498 Fix copy/paste typo. Add checks.
2499
2500 2008-11-21 Kenichi Handa <handa@m17n.org>
2501
2502 * coding.c (detect_coding_iso_2022): Reject invalid composition
2503 sequence.
2504 (DECODE_COMPOSITION_START): If the current source is the last
2505 block, and the current composition doesn't end, regard this
2506 sequence as invalid.
2507 (decode_coding_iso_2022): Handle invalid composition sequence.
2508
2509 2008-11-20 Martin Rudalics <rudalics@gmx.at>
2510
2511 * window.c (coordinates_in_window): Don't return
2512 ON_VERTICAL_BORDER for the rightmost position of a mode/header
2513 line when the window is not the rightmost one. (Bug#1372)
2514
2515 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
2516
2517 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
2518
2519 2008-11-15 Eli Zaretskii <eliz@gnu.org>
2520
2521 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
2522 and bright_bg if noninteractive is non-zero.
2523
2524 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2525
2526 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
2527 x_draw_glyph_string_background.
2528
2529 * w32term.c (x_draw_glyph_string): Likewise.
2530
2531 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
2532
2533 * xterm.c (x_draw_glyph_string): Stop drawing the background of
2534 the next glyph string once past the overhang width.
2535
2536 * nsterm.m (ns_draw_glyph_string): Likewise.
2537
2538 * w32term.c (x_draw_glyph_string): Likewise.
2539
2540 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
2541
2542 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
2543 double file close.
2544
2545 2008-11-14 Martin Rudalics <rudalics@gmx.at>
2546
2547 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
2548 dedicated status of window before attempting to display another
2549 buffer in it.
2550
2551 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
2552
2553 * msdos.c (Fmsdos_long_file_names):
2554 (syms_of_msdos) <dos-unsupported-char-glyph>:
2555 * dosfns.c (Fint86): Fix typos in docstrings.
2556
2557 2008-11-14 Eli Zaretskii <eliz@gnu.org>
2558
2559 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
2560
2561 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
2562
2563 * puresize.h (BASE_PURESIZE): Increase to 1260000.
2564
2565 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
2566
2567 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
2568
2569 * frame.h: Negative alpha means "don't touch".
2570
2571 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
2572
2573 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
2574
2575 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
2576
2577 * hftctl.c:
2578 * chpdef.h:
2579 * acldef.h: Remove files used only for systems no longer supported.
2580
2581 * Makefile.in: Fix .o alphabetical ordering.
2582 (hftctl.o): Remove dependency, file removed.
2583 (keymap.o, print.o): Depend on charset.h.
2584
2585 2008-11-10 Kenichi Handa <handa@m17n.org>
2586
2587 * character.c (Fget_byte): Fix and make it faster for unibyte target.
2588
2589 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
2590
2591 * dired.c (file_name_completion): If completion_ignore_case is
2592 enabled, ignore case when checking completion-regexp-list.
2593
2594 2008-11-08 Eli Zaretskii <eliz@gnu.org>
2595
2596 * vm-limit.c (get_lim_data): Fix last change.
2597
2598 2008-11-08 Kenichi Handa <handa@m17n.org>
2599
2600 * character.c (Fget_byte): New function.
2601 (syms_of_character): Defsubr Fget_byte.
2602
2603 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
2604
2605 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
2606 cursor position is valid after scrolling.
2607
2608 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
2609
2610 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
2611
2612 2008-11-06 Glenn Morris <rgm@gnu.org>
2613
2614 * xterm.c (handle_one_xevent): Don't let popup menus cause
2615 mouse-autoselect-window related window switching. (Bug#1261)
2616
2617 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
2618
2619 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
2620
2621 2008-11-04 Andreas Schwab <schwab@suse.de>
2622
2623 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
2624
2625 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
2626
2627 * xfns.c (Fx_wm_set_size_hint): New function.
2628
2629 2008-11-03 Martin Rudalics <rudalics@gmx.at>
2630
2631 * textprop.c (Fprevious_single_char_property_change): Return 0
2632 when there's no change in a string. (Bug#1301)
2633
2634 2008-11-02 Martin Rudalics <rudalics@gmx.at>
2635
2636 * frame.c (do_switch_frame): New argument NORECORD passed to
2637 Fselect_window.
2638 (Fselect_frame): New argument NORECORD passed to
2639 do_switch_frame.
2640 (Fset_frame_selected_window): New argument NORECORD passed to
2641 Fselect_frame.
2642 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
2643 in call of do_switch_frame.
2644 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
2645 Handle NORECORD argument in call of Fselect_frame.
2646 * lisp.h (do_switch_frame, Fselect_frame)
2647 (Fset_frame_selected_window): Adjust declarations.
2648 * window.c (select_frame_norecord): New function.
2649 (run_window_configuration_change_hook): Use it and call
2650 Fselect_frame with NORECORD set.
2651 (Fselect_window): Pass NORECORD to Fselect_frame.
2652 (Fset_window_configuration): Handle NORECORD argument in call of
2653 do_switch_frame.
2654 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
2655 Fset_frame_selected_window.
2656 * keyboard.c (command_loop_1): Handle NORECORD in call of
2657 Fselect_frame (currently ifdefd).
2658
2659 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
2660
2661 * emacs.c (USAGE2): Untabify.
2662
2663 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
2664
2665 * composite.c (fill_gstring_header): Fix copy/paste typo.
2666
2667 2008-10-31 Martin Rudalics <rudalics@gmx.at>
2668
2669 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
2670 (Fother_window): Rename argument and rewrite doc-string.
2671 (select_window_norecord): Fix return value. (Bug#1276)
2672
2673 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
2674
2675 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
2676 new frames overriding foreground for tooltips. Based on similar patch
2677 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
2678
2679 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
2680
2681 * emacs.c (Fdaemon_initialized): Initialize nfd.
2682
2683 2008-10-29 Martin Rudalics <rudalics@gmx.at>
2684
2685 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
2686 (Fwindow_text_height): Clarify doc-strings.
2687 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
2688 doc-string of window-scroll-functions.
2689
2690 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
2691
2692 * category.c (syms_of_category): Fix typo in docstring.
2693
2694 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
2695
2696 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
2697 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
2698 Fix typos in docstrings.
2699
2700 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
2701
2702 * emacs.c (daemon_pipe): Make non-static.
2703 (IS_DAEMON): Move definition ...
2704 * lisp.h (IS_DAEMON): ... here.
2705 (daemon_pipe): Declare.
2706 (is_daemon): Remove.
2707 * dispnew.c (init_display): Use IS_DAEMON.
2708
2709 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
2710
2711 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
2712 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
2713
2714 * emacs.c (is_daemon): Remove.
2715 (main): Don't set is_daemon.
2716 (IS_DAEMON): New macro.
2717 (Fdaemonp, Fdaemon_initialized): Use it.
2718 (Fdaemon_initialized): Write a char into the pipe to make sure the
2719 parent exits.
2720 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
2721
2722 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
2723
2724 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
2725 over-sized glyph, draw it with the default glyph width.
2726
2727 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
2728 glyph, draw it with the default glyph width.
2729
2730 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
2731 glyph, draw it with the default glyph width.
2732
2733 * xdisp.c (try_scrolling): When computing the distance from the
2734 scroll margin to PT, try moving some distance past the window
2735 bottom before giving up.
2736
2737 2008-10-27 Martin Rudalics <rudalics@gmx.at>
2738
2739 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
2740 (Fset_window_buffer): Explain in doc-string that a window can be
2741 "strongly" dedicated to its buffer.
2742
2743 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
2744
2745 * emacs.c (daemon_name): New variable.
2746 (main): Deal with --daemon=SERVER_NAME.
2747 (Fdaemonp): Return a name if one was passed to --daemon.
2748
2749 2008-10-26 Romain Francoise <romain@orebokech.com>
2750
2751 * emacs.c (daemon_pipe): New variable.
2752 (main): Create a pipe before forking, make the parent exit only after
2753 the child has closed its end of the pipe. Move closing the
2754 descriptors ...
2755 (Fdaemon_initialized): ... here. New function.
2756
2757 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
2758
2759 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
2760 the previous unoptimized table.
2761
2762 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
2763 the distinction between non-nil and non-t value of `dedicated'.
2764
2765 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
2766
2767 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
2768 read_char_minibuf_menu_text is large enough to hold the menu string.
2769
2770 2008-10-25 Martin Rudalics <rudalics@gmx.at>
2771
2772 * window.c (Fget_buffer_window, Fdelete_windows_on)
2773 (Freplace_buffer_in_windows): Make buffer argument optional and
2774 rename to buffer_or_name.
2775
2776 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
2777
2778 * xdisp.c (handle_single_display_spec, handle_display_prop):
2779 Undo 2005-05-16 change.
2780 (handle_stop): Pop iterator if it's loaded with an empty string.
2781 (get_overlay_strings_1): Don't save iterator if it's loaded with
2782 an empty string (bug#1201).
2783
2784 2008-10-24 Kenichi Handa <handa@m17n.org>
2785
2786 * ftfont.c (ftfont_otf_features): Fix previous change.
2787 (ftfont_otf_capability): Check FeatureList.FeatureCount before
2788 calling ftfont_otf_features.
2789
2790 2008-10-24 Kenichi Handa <handa@m17n.org>
2791
2792 * font.c (font_match_p): Fix for the case that a vector of
2793 characters is in script-representative-chars.
2794
2795 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
2796
2797 * dbusbind.c (xd_in_read_queued_messages): New variable.
2798 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
2799 (xd_read_queued_messages): Catch Qdbus_error from the macros.
2800 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
2801 macro. (Bug#1186).
2802
2803 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
2804
2805 * s/sol2-10.h: New file.
2806
2807 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
2808
2809 * xdisp.c (fill_glyph_string): Fix typo in source (though the
2810 poor beast has survived 9+ years and the jump from xterm.c!).
2811
2812 2008-10-23 Martin Rudalics <rudalics@gmx.at>
2813
2814 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
2815 Reword doc-string.
2816 (Fbury_buffer): In doc-string say what happens to the buffer's window.
2817
2818 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
2819
2820 * character.c (syms_of_character) <script-representative-chars>:
2821 <unicode-category-table>: Doc fixes.
2822
2823 2008-10-23 Noah Friedman <friedman@splode.com>
2824
2825 * coding.c (make_conversion_work_buffer): Check that
2826 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
2827 Fget_buffer_create.
2828
2829 2008-10-23 Kenichi Handa <handa@m17n.org>
2830
2831 * font.c (font_add_log): Check the values of extra properties.
2832
2833 2008-10-22 Martin Rudalics <rudalics@gmx.at>
2834
2835 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
2836 Reword doc-string.
2837 (Fset_window_parameter): Use NILP.
2838 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
2839 (Frecenter): Use "selected" instead of "current" window in doc-strings.
2840
2841 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
2842
2843 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
2844
2845 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
2846
2847 * nsfns.m (ns_appkit_version): New function.
2848 (x-server-version): Use it.
2849 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
2850 (x-server-vendor): Don't check_ns().
2851
2852 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
2853
2854 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
2855
2856 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
2857 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
2858
2859 2008-10-22 Kenichi Handa <handa@m17n.org>
2860
2861 * syntax.c (scan_words): Call word_boundary_p instead of comparing
2862 scripts.
2863
2864 * category.c (word_boundary_p): Check scripts instead of charset.
2865 Handle nil value in word-separating-categories and
2866 word-combining-categories.
2867 (syms_of_category): Fix docstrings of word-separating-categories
2868 and word-combining-categories.
2869
2870 2008-10-21 Eli Zaretskii <eliz@gnu.org>
2871
2872 * coding.c (Fencode_coding_region, Fdecode_coding_region)
2873 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
2874
2875 2008-10-21 Martin Rudalics <rudalics@gmx.at>
2876
2877 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
2878 Rename arg "buffer" to "buffer_or_name".
2879 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
2880 it optional.
2881 (no_switch_window): Remove since the return value is not used.
2882 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
2883 Consider window as dedicated when Fwindow_dedicated_p returns a
2884 non-nil value.
2885 * lisp.h: Remove prototype for no_switch_window.
2886
2887 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
2888
2889 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
2890 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
2891
2892 2008-10-21 Kenichi Handa <handa@m17n.org>
2893
2894 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
2895 check Vlatin_extra_code_table.
2896
2897 2008-10-20 Eli Zaretskii <eliz@gnu.org>
2898
2899 * fileio.c (Fset_file_modes): Doc fix.
2900
2901 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
2902
2903 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
2904 in arrays.
2905
2906 2008-10-19 Martin Rudalics <rudalics@gmx.at>
2907
2908 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
2909 Mention kill-buffer in doc-string.
2910 (Fset_window_buffer): Reinsert tem check removed in last commit.
2911 (Fenlarge_window, Fshrink_window): Have argument names and
2912 doc-string follow Elisp manual more closely.
2913
2914 2008-10-18 Eli Zaretskii <eliz@gnu.org>
2915
2916 * fileio.c (Fset_file_modes): Doc fix.
2917
2918 2008-10-18 Martin Rudalics <rudalics@gmx.at>
2919
2920 * window.c (Fwindow_width, Fset_window_start)
2921 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
2922 (Fdelete_windows_on, Freplace_buffer_in_windows):
2923 Make doc-strings follow code and Elisp manual more closely.
2924 (Fwindow_dedicated_p): Make window argument optional.
2925 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
2926 (Fset_window_buffer): Respect any non-nil dedicated value for
2927 window. Rename "buffer" argument to "buffer_or_name".
2928
2929 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
2930
2931 * m/sh3.h: New file, machine description for SuperH.
2932
2933 2008-10-17 Martin Rudalics <rudalics@gmx.at>
2934
2935 * window.c (Fsplit_window): Rename arg horflag to horizontal.
2936
2937 2008-10-17 Kenichi Handa <handa@m17n.org>
2938
2939 * ftfont.c (ftfont_otf_features): Fix indexing
2940 gsub_gpos->FeatureList.Feature. Check the validity of indices.
2941
2942 2008-10-16 Magnus Henoch <mange@freemail.hu>
2943
2944 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
2945 (Fdbus_call_method_asynchronously): Ditto.
2946 This change makes C-h f display the argument list.
2947
2948 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
2949
2950 * fileio.c (Fexpand_file_name): Doc fix.
2951
2952 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
2953 of :foreground and :background equivalent to unspecified (20.x
2954 compatibility).
2955
2956 2008-10-15 Eli Zaretskii <eliz@gnu.org>
2957
2958 * buffer.c (syms_of_buffer): Doc fix.
2959
2960 2008-10-14 Kenichi Handa <handa@m17n.org>
2961
2962 * font.c (font_clear_prop): When clearing font width, clear the
2963 average width field too.
2964
2965 2008-10-12 Andreas Schwab <schwab@suse.de>
2966
2967 * ftfont.c (ftfont_shape_by_flt): Make static.
2968 * ftfont.h (ftfont_shape_by_flt): Don't declare.
2969
2970 * font.c: Don't include <m17n-flt.h>.
2971
2972 2008-10-10 Eli Zaretskii <eliz@gnu.org>
2973
2974 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
2975
2976 2008-10-09 Eli Zaretskii <eliz@gnu.org>
2977
2978 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
2979 away code.
2980
2981 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
2982
2983 * dispnew.c (update_text_area): Avoid looping due to large glyph
2984 overhangs (bug#1070).
2985
2986 2008-10-09 Kenichi Handa <handa@m17n.org>
2987
2988 * fontset.c (face_for_char): If face->fontset is negative, just
2989 return ascii_face.
2990
2991 * font.c (font_delete_unmatched): Fix previous change.
2992 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
2993
2994 2008-10-09 Martin Rudalics <rudalics@gmx.at>
2995
2996 * frame.c (Fraise_frame): On text-only terminals select frame in
2997 order to make it visible. (Bug#1061)
2998
2999 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
3000
3001 * fontset.c (fontset_find_font): Check frame validity.
3002
3003 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
3004
3005 * gtkutil.c (xg_display_open): Reset default display if none exists.
3006 (xg_display_close): Allow Emacs to close all displays (bug#985).
3007
3008 2008-10-06 Andreas Schwab <schwab@suse.de>
3009
3010 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
3011
3012 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
3013
3014 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
3015
3016 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
3017
3018 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
3019 during initialization.
3020
3021 2008-10-04 Eli Zaretskii <eliz@gnu.org>
3022
3023 * xdisp.c (redisplay_internal): If frame switched, redisplay the
3024 whole thing on MSDOS frames as well as on a TTY.
3025
3026 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
3027 well as for TTY.
3028 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
3029 well as on a TTY.
3030
3031 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
3032 as well as for TTY.
3033
3034 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
3035
3036 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
3037 MSDOS frames as well.
3038
3039 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
3040
3041 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
3042 correct arguments.
3043 * menu.c (find_and_return_menu_selection): Add cast.
3044
3045 2008-10-03 Glenn Morris <rgm@gnu.org>
3046
3047 * emacs.c (USAGE1): Add --daemon.
3048
3049 2008-10-02 Eli Zaretskii <eliz@gnu.org>
3050
3051 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
3052 100, so it's in percents as advertised.
3053
3054 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
3055
3056 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
3057 (ns_output.current_cursor, ns_output.desired_cursor)
3058 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
3059 (FRAME_NEW_CURSOR_COLOR): Remove.
3060
3061 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
3062 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
3063 enumeration (HOLLOW_BOX_CURSOR, etc.).
3064
3065 * nsterm.m (ns_frame_rehighlight): Remove commented code.
3066 (draw_window_cursor): Simplify code.
3067 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
3068 Don't change cursor type. In latter, call rehighlight instead of doing
3069 updates manually.
3070 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
3071 Use core Emacs cursor types.
3072
3073 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
3074
3075 2008-10-02 Martin Rudalics <rudalics@gmx.at>
3076
3077 * process.c (Faccept_process_output): Fix doc-string.
3078
3079 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
3080
3081 * gmalloc.c (__sbrk): Also define for uClibc.
3082
3083 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
3084 for uClibc.
3085
3086 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
3087
3088 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
3089 styles.
3090 (nsfont_open): Reenable the cache.
3091
3092 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
3093
3094 * font.c (font_matching_entity): Reflect ATTRS in font selection.
3095 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
3096
3097 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
3098
3099 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
3100 a suspended terminal.
3101
3102 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
3103
3104 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
3105
3106 2008-09-30 Eli Zaretskii <eliz@gnu.org>
3107
3108 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
3109
3110 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
3111
3112 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
3113 in a continued line coincides with a line beginning.
3114
3115 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
3116
3117 * nsfont.m (nsfont_trait_distance): Fix bug.
3118 (nsfont_list): Return a list rather than a vector (syncs with Handa
3119 changes of 2008-05-14).
3120 (nsfont_open): Improve logging.
3121
3122 2008-09-29 Andreas Schwab <schwab@suse.de>
3123
3124 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
3125
3126 2008-09-28 Martin Rudalics <rudalics@gmx.at>
3127
3128 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
3129 name as char-resolve-modifiers.
3130 Reported by: Markus Triska <markus.triska@gmx.at>
3131
3132 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
3133
3134 * dispnew.c (init_display): Return earlier when running as a daemon.
3135
3136 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
3137
3138 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
3139
3140 2008-09-27 Eli Zaretskii <eliz@gnu.org>
3141
3142 * composite.c (Fcomposition_get_gstring)
3143 (Fcompose_region_internal, Fcompose_string_internal)
3144 (Ffind_composition_internal): Doc fix.
3145 (syms_of_composite) <compose-chars-after-function>: Doc fix.
3146 (syms_of_composite) <auto-composition-function>: Doc fix.
3147 (syms_of_composite) <composition-function-table>: Doc fix.
3148
3149 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
3150
3151 * search.c (wordify): New argument for lax word-ends.
3152 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
3153
3154 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
3155
3156 * lisp.h (is_daemon): Declare.
3157 * dispnew.c (init_display): Do not try to initialize the terminal
3158 when running as a daemon.
3159
3160 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
3161
3162 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
3163 x_display_pixel_height.
3164
3165 2008-09-22 Martin Rudalics <rudalics@gmx.at>
3166
3167 * undo.c (record_point): Don't call Fundo_boundary for first
3168 change. (Bug#731)
3169
3170 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
3171
3172 * emacs.c (Fdaemonp): Doc fix.
3173
3174 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
3175
3176 * emacs.c (main): Place #ifdef in the proper place.
3177
3178 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
3179
3180 * emacs.c (standard_args): Add --daemon.
3181 (main): Disconnect from the terminal when --daemon is passed.
3182 (is_daemon): New variable.
3183 (Fdaemonp): New function.
3184 (syms_of_emacs): Defsubr it.
3185
3186 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
3187
3188 * xdisp.c (get_next_display_element): Handle string display
3189 correctly when checking for the end of a box run.
3190
3191 2008-09-20 Glenn Morris <rgm@gnu.org>
3192
3193 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
3194 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
3195 (Frename_file): Avoid copying to trash if a rename involves
3196 a delete. (Bug#964).
3197
3198 2008-09-20 Eli Zaretskii <eliz@gnu.org>
3199
3200 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
3201 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
3202 frames as well as termcap frames.
3203 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
3204 get_named_tty.
3205
3206 2008-09-19 Eli Zaretskii <eliz@gnu.org>
3207
3208 * process.c (procfs_system_process_attributes): Fix cmdline in
3209 case /proc/PID/cmdline is empty.
3210
3211 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
3212 x_display_pixel_height.
3213
3214 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
3215
3216 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
3217
3218 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
3219 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
3220
3221 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
3222
3223 * dispextern.h (struct it): Move line_wrap away from the middle of
3224 bitfields. Move voffset in struct iterator_stack_entry after the
3225 bitfields. Move tab_width near after another short.
3226
3227 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
3228
3229 * frame.h (struct frame): Move alpha from the middle of bitfields.
3230
3231 * window.h (struct window): Move frozen_window_start_p after the
3232 rest of the bitfields to reduce padding.
3233
3234 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
3235
3236 * xterm.h (x_display_info): Remove `height' and `width' members.
3237
3238 * nsterm.h (ns_display_info): Remove `height' and `width' members.
3239
3240 * w32term.h (w32_display_info): Remove `height', `width',
3241 `height_in', and `width_in' members.
3242
3243 * xterm.c (x_display_pixel_height, x_display_pixel_width):
3244 New functions.
3245 (x_calc_absolute_position): Use them.
3246 (x_term_init): Omit removed `height' and `width' members.
3247
3248 * w32term.c (x_display_pixel_height, x_display_pixel_width):
3249 New functions.
3250 (w32_read_socket, x_calc_absolute_position): Use them.
3251 (w32_initialize_display_info, w32_term_init): Omit removed members
3252 of w32_display_info.
3253
3254 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
3255 New functions.
3256 (ns_initialize_display_info): Omit removed members of ns_display_info.
3257
3258 * xterm.c (x_display_pixel_height, x_display_pixel_width):
3259 New functions.
3260 (x_calc_absolute_position): Use them.
3261 (x_term_init): Omit removed `height' and `width' members.
3262
3263 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
3264 (compute_tip_xy):
3265 * frame.c (x_fullscreen_adjust):
3266 * xmenu.c (menu_position_func): Use x_display_pixel_height and
3267 x_display_pixel_width.
3268
3269 2008-09-18 Kenichi Handa <handa@m17n.org>
3270
3271 * composite.c (fill_gstring_header): Don't check FROM and TO here.
3272 (composition_compute_stop_pos): Fix handling of static composition.
3273 (Fcomposition_get_gstring): Check FROM and TO at first.
3274
3275 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
3276
3277 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
3278 mixup (YAILOM).
3279
3280 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
3281
3282 * indent.c (Fvertical_motion): Use position reported by iterator
3283 instead of PT for determining screen motion (bug#943).
3284
3285 2008-09-17 Romain Francoise <romain@orebokech.com>
3286
3287 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
3288
3289 2008-09-17 Kenichi Handa <handa@m17n.org>
3290
3291 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
3292
3293 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
3294 if necessary.
3295
3296 2008-09-16 Kenichi Handa <handa@m17n.org>
3297
3298 * coding.c (make_conversion_work_buffer): Avoid calling
3299 Fget_buffer_create if it is not necessary.
3300
3301 2008-09-15 Martin Rudalics <rudalics@gmx.at>
3302
3303 * window.c (Fselect_window): Don't update window_select_count and
3304 use_time when norecord is not nil.
3305
3306 2008-09-14 Kenichi Handa <handa@m17n.org>
3307
3308 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
3309 specpdl_ptr.
3310
3311 2008-09-12 Kenichi Handa <handa@m17n.org>
3312
3313 * indent.c (scan_for_column): Don't handle automatic composition
3314 if the current buffer is not associated with a window.
3315
3316 * composite.c (composition_reseat_it): If the current buffer is
3317 not associated with a window, ignore the automatic composition.
3318 (find_automatic_composition): Likewise.
3319
3320 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
3321
3322 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
3323 (Fgpm_mouse_stop): Use it.
3324 * termhooks.h (close_gpm): Declare.
3325 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
3326 connection if Gpm_GetEvent fails.
3327
3328 * window.c (set_window_buffer): Always preserve current-buffer.
3329
3330 2008-09-12 Glenn Morris <rgm@gnu.org>
3331
3332 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
3333
3334 2008-09-11 Glenn Morris <rgm@gnu.org>
3335
3336 * charset.c (charset-map-path): Doc fix.
3337
3338 2008-09-10 Kenichi Handa <handa@m17n.org>
3339
3340 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
3341
3342 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
3343 compose a grapheme cluster with the preceding base glyph.
3344
3345 * composite.c (composition_compute_stop_pos): Fix previous change.
3346 Reset cmp_it->id to -1 at first.
3347
3348 2008-09-10 Glenn Morris <rgm@gnu.org>
3349
3350 * Makefile.in (character.o, chartab.o): Fix config.h typo.
3351
3352 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
3353
3354 * keyboard.c (read_key_sequence): Reapply translation maps when
3355 switching keyboards.
3356
3357 2008-09-09 Kenichi Handa <handa@m17n.org>
3358
3359 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
3360 characters.
3361
3362 * composite.c (FORWARD_CHAR): Fix calculation
3363 of (POSITION).pos_byte.
3364 (composition_compute_stop_pos): Limit the search of composition to
3365 at most 500 characters ahead. If we reach the limit or find a
3366 newline, set cmp_it->ch to -2 and return 0.
3367 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
3368
3369 2008-09-08 Kenichi Handa <handa@m17n.org>
3370
3371 * indent.c (Fvertical_motion): Be sure to set
3372 it_overshoot_expected if it.cmp_it.id is non-negative.
3373
3374 2008-09-07 Andreas Schwab <schwab@suse.de>
3375
3376 * callproc.c (Fcall_process): Don't hold references to string data
3377 across garbage collection. Move initialisation of new_argv down
3378 to avoid compiler bug.
3379
3380 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3381
3382 * process.c (Fsystem_process_attributes): Doc fix.
3383
3384 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
3385
3386 * callproc.c (Fcall_process): Canonicalize current directory name.
3387
3388 * xdisp.c (move_it_to): When moving by vpos, ensure that the
3389 iterator advances to the next line if the current line ends in a
3390 continued tab.
3391
3392 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
3393
3394 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
3395 member to point to cmp_from.
3396
3397 * xdisp.c: Doc fix for references to gidx data member.
3398
3399 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
3400
3401 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
3402
3403 2008-09-07 Kenichi Handa <handa@m17n.org>
3404
3405 * composite.c (FORWARD_CHAR): Check STOP after
3406 incrementing (POSITION).pos.
3407
3408 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
3409
3410 * process.c (Fsystem_process_attributes): Doc fix.
3411
3412 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
3413
3414 * keyboard.c (Ftop_level): Doc fix.
3415
3416 2008-09-06 Eli Zaretskii <eliz@gnu.org>
3417
3418 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
3419 minibuffer, don't let lower part of menu invade the echo area.
3420
3421 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
3422 "char *q" to access menu text and advance through it. Revert the
3423 change that displayed ">" instead of ASCII character 0x10.
3424
3425 2008-09-05 Eli Zaretskii <eliz@gnu.org>
3426
3427 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
3428 toggle boxes and radio buttons on MS-DOS as well.
3429
3430 2008-09-05 Kenichi Handa <handa@m17n.org>
3431
3432 * composite.c (autocmp_chars): Check lookback count.
3433 (composition_compute_stop_pos): Set cmp_it->lookback.
3434 (composition_reseat_it): Check lookback count.
3435 (struct position_record): New struct.
3436 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
3437 (find_automatic_composition): New function.
3438 (composition_adjust_point): Use find_automatic_composition.
3439
3440 * dispextern.h (struct composition_it): New member lookback.
3441
3442 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
3443
3444 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
3445 if moving by a single line.
3446
3447 2008-09-02 Andreas Schwab <schwab@suse.de>
3448
3449 * xterm.c (x_delete_display): Fix merge error.
3450
3451 * fileio.c (Fexpand_file_name): Remove unused variables.
3452
3453 2008-09-02 Eli Zaretskii <eliz@gnu.org>
3454
3455 * fileio.c (Fexpand_file_name): Copy argument `name' into local
3456 storage on all platforms, not just on DOS_NT.
3457
3458 2008-09-02 Jason Rumney <jasonr@gnu.org>
3459
3460 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
3461 Ensure mouse is not grabbed after menu is finished.
3462
3463 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
3464
3465 * xfaces.c (Finternal_set_alternative_font_family_alist)
3466 (Finternal_set_alternative_font_registry_alist): Properly copy
3467 entire alist structure.
3468
3469 2008-09-01 Kenichi Handa <handa@m17n.org>
3470
3471 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
3472 representative chars of the script is a vector.
3473 (ftfont_list): Handle the case where the representative chars of
3474 the script is a vector.
3475
3476 * character.c (syms_of_character): Docstring of
3477 script-representative-chars fixed.
3478
3479 2008-08-31 Eli Zaretskii <eliz@gnu.org>
3480
3481 * msdos.c (BUILD_CHAR_GLYPH): New macro.
3482 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
3483 the menu. Allocate larger buffer for `text', to account for
3484 possible ^C characters.
3485
3486 2008-08-31 Martin Rudalics <rudalics@gmx.at>
3487
3488 * xdisp.c (prepare_menu_bars): Don't call
3489 Vwindow_size_change_functions with arg Qt.
3490
3491 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
3492
3493 * font.h (font_range):
3494 * fileio.c (report_file_error):
3495 * composite.c (composition_update_it): Yet another int/Lisp_Object
3496 mixup (YAILOM).
3497
3498 2008-08-30 Glenn Morris <rgm@gnu.org>
3499
3500 * data.c (Fmake_variable_frame_local): Doc fix.
3501
3502 * frame.c (Fmodify_frame_parameters): Doc fix.
3503
3504 2008-08-30 Eli Zaretskii <eliz@gnu.org>
3505
3506 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
3507 needed by GetTokenInformation.
3508 (w32_system_process_attributes): Check return values of all system
3509 APIs.
3510
3511 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
3512 only when the state changes.
3513 (IT_update_begin, IT_update_end): Add termscript trace.
3514
3515 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
3516 clipboard is unavailable. Set dst to NULL if it doesn't point to
3517 malloc'ed data.
3518 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
3519 passing random values to xfree.
3520
3521 * dispnew.c (init_display): Set `tty's association in frame's
3522 parameters alist to the name of the terminal device, if that is known.
3523
3524 2008-08-29 Jason Rumney <jasonr@gnu.org>
3525
3526 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
3527
3528 2008-08-29 Eli Zaretskii <eliz@gnu.org>
3529
3530 * composite.c (fill_gstring_body): Avoid compiler warnings.
3531
3532 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
3533 LGLYPH_SET_CODE to avoid compiler warnings.
3534
3535 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
3536
3537 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
3538
3539 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
3540 LGLYPH_SET_CODE.
3541
3542 2008-08-29 Kenichi Handa <handa@m17n.org>
3543
3544 * fileio.c (report_file_error): Don't downcase the first character
3545 of errstring if it is still unibyte.
3546
3547 2008-08-29 Kenichi Handa <handa@m17n.org>
3548
3549 These changes are to re-implement the automatic composition so
3550 that it doesn't use text properties.
3551
3552 * Makefile.in (ftfont.o): Depend on composite.h.
3553 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
3554
3555 * character.h (Vunicode_category_table): Extern it.
3556
3557 * character.c (Vunicode_category_table): New variable.
3558 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
3559
3560 * chartab.c (optimize_sub_char_table): Perform more greedy
3561 optimization.
3562
3563 * composite.h (enum composition_method):
3564 Delete COMPOSITION_WITH_GLYPH_STRING.
3565 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
3566 (Vcomposition_function_table): Extern it.
3567 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
3568 (composition_gstring_put_cache, composition_gstring_from_id)
3569 (composition_gstring_p, composition_gstring_width)
3570 (composition_compute_stop_pos, composition_reseat_it)
3571 (composition_update_it, composition_adjust_point): Extern them.
3572 (Fcomposition_get_gstring): EXFUN it.
3573
3574 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
3575 (Vcomposition_function_table)
3576 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
3577 (gstring_hash_table, gstring_work, gstring_work_headers):
3578 New variables.
3579 (gstring_lookup_cache, composition_gstring_put_cache)
3580 (composition_gstring_from_id, composition_gstring_p)
3581 (composition_gstring_width, fill_gstring_header)
3582 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
3583 (composition_reseat_it, composition_update_it)
3584 (composition_adjust_point, Fcomposition_get_gstring): New functions.
3585 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
3586 and gstring_work_headers. DEFVAR_LISP composition-function-table.
3587 Defsubr compostion_get_gstring.
3588
3589 * dispextern.h (struct glyph): New union u.cmp. Delete the member
3590 cmp_id.
3591 (struct glyph_string): Delete the member gidx. New members
3592 cmp_id, cmp_from, and cmp_to.
3593 (enum it_method): Delete GET_FROM_COMPOSITION.
3594 (struct composition_it): New struct.
3595 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
3596 Delete c, len, cmp_id, cmp_len in u.comp.
3597
3598 * font.h (enum lgstring_indices): Delete it.
3599 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
3600 (enum lglyph_indices): Likewise.
3601 (font_range): Adjust extern.
3602 (font_fill_lglyph_metrics): Extern it.
3603
3604 * font.c (QCf): New variable.
3605 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
3606 (font_prepare_composition): Delete this function.
3607 (font_range): Type and arguments changed.
3608 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
3609 (font_fill_lglyph_metrics): New function.
3610 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
3611 (syms_of_font): DEFSYM QCf. Delete defsubr for
3612 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
3613 Defsubr Sfont_shape_gstring.
3614
3615 * fontset.h (font_for_char): Extern it.
3616
3617 * fontset.c (font_for_char): New function.
3618
3619 * ftfont.c: Include composite.h.
3620 (ftfont_resolve_generic_family): Add langset "en" to pattern.
3621 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
3622
3623 * indent.c: Include composite.h and dispextern.h.
3624 (check_composition): Delete this function.
3625 (scan_for_column): Handle composition by
3626 composition_compute_stop_pos, composition_reseat_it, and
3627 composition_update_it.
3628 (compute_motion): Likewise.
3629 (Fvertical_motion): Fix checking of composition.
3630
3631 * keyboard.c (adjust_point_for_property): Check composition by
3632 composition_adjust_point.
3633
3634 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
3635 struct glyph_string.
3636
3637 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
3638 (append_composite_glyph): Adjust for the change of struct it and
3639 struct glyph.
3640 (produce_composite_glyph): Likewise.
3641
3642 * w32term.c (x_draw_composite_glyph_string_foreground):
3643 Adjust for the change of struct glyph_string.
3644 (x_draw_glyph_string): Likewise.
3645
3646 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
3647 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
3648
3649 * xdisp.c: Include font.h.
3650 (it_props): Delete the entry for Qauto_composed.
3651 (init_iterator): Initialize it->cmp_it.id to -1.
3652 (compute_stop_pos): Call composition_compute_stop_pos.
3653 (face_before_or_after_it_pos): Adjust for the change of struct it.
3654 (handle_auto_composed_prop): Delete it.
3655 (handle_composition_prop): Handle only static composition.
3656 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
3657 from xassert. Initialize it->cmp_it.stop_pos.
3658 (push_it): Adjust for the change of struct it.
3659 (pop_it): Likewise.
3660 (get_next_element): Delete next_element_from_composition.
3661 (CHAR_COMPOSED_P): New macro.
3662 (get_next_display_element): For automatic composition, get a face
3663 from the font in the glyph-string.
3664 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
3665 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
3666 (next_element_from_string): Check if the character at the current
3667 position is composed by CHAR_COMPOSED_P.
3668 (next_element_from_buffer): Likewise.
3669 (next_element_from_composition): Adjust for the change of struct it.
3670 Update it->cmp_it.
3671 (dump_glyph): Adjust for the change of struct glyph.
3672 (fill_composite_glyph_string): Adjust for the change of struct
3673 it and struct glyph. Don't handle automatic composition here.
3674 (fill_gstring_glyph_string): New function.
3675 (x_get_glyph_overhangs): Handle automatic composition.
3676 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
3677 (BUILD_GSTRING_GLYPH_STRING): New macro.
3678 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
3679 automatic composition.
3680 (append_composite_glyph): Adjust for the change of struct it and
3681 struct glyph.
3682 (x_produce_glyphs): Adjust for the change of struct it.
3683
3684 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
3685 the change of struct glyph_string.
3686 (x_draw_glyph_string): Likewise.
3687
3688 2008-08-29 Glenn Morris <rgm@gnu.org>
3689
3690 * buffer.c (word-wrap): Doc fix.
3691 * xdisp.c (truncate-partial-width-windows): Doc fix.
3692 Increase default to 50.
3693
3694 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
3695
3696 * xdisp.c (update_tool_bar_unwind): New function.
3697 (update_tool_bar): Temporarily set selected frame before building
3698 tool-bar items.
3699
3700 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
3701
3702 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
3703 snprintf, respectively.
3704 (xd_append_arg): Convert strings with Fstring_make_unibyte.
3705
3706 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
3707
3708 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
3709 LDFLAGS to GNUstep CC invocation.
3710
3711 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
3712
3713 * indent.c (Fvertical_motion): Revert last change. Handle the
3714 general case where we are moving forward, and PT spans multiple
3715 screen lines.
3716
3717 * eval.c (find_handler_clause): Temporarily increase
3718 max-lisp-eval-depth while printing the backtrace buffer, to
3719 guarantee that help-mode code can run.
3720
3721 2008-08-27 Eli Zaretskii <eliz@gnu.org>
3722
3723 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
3724 colors under -rv.
3725 (IT_set_frame_parameters): Don't swap foreground and background
3726 colors if `(reverse . t)' is present in the frame properties.
3727 (internal_terminal_init): Call init_frame_faces only for the
3728 initial frame.
3729
3730 2008-08-27 Andreas Schwab <schwab@suse.de>
3731
3732 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
3733
3734 2008-08-27 Andreas Schwab <schwab@suse.de>
3735
3736 * search.c (search_buffer): Set char_base to zero only at the end.
3737
3738 2008-08-27 Kenichi Handa <handa@m17n.org>
3739
3740 * fileio.c (report_file_error): Fix handling of multibyte error string.
3741
3742 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
3743
3744 * xterm.c (x_term_init): Temporarily hide the partially
3745 initialized terminal while calling vendor-specific-keysyms.
3746
3747 2008-08-26 Eli Zaretskii <eliz@gnu.org>
3748
3749 * msdos.c (internal_terminal_init): Most initializations done only
3750 once, especially initial_screen_colors[] and termscript open.
3751
3752 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
3753
3754 * eval.c (Fcondition_case): Doc fix.
3755
3756 * widgetprv.h (EmacsFramePart): Change font member to the new font
3757 struct.
3758
3759 * widget.c: Include character.h and font.h for XSETFONT.
3760 (setup_frame_gcs): Compute X font id from font struct, just once.
3761
3762 2008-08-26 Eli Zaretskii <eliz@gnu.org>
3763
3764 * term.c (get_named_tty): Fix last change.
3765
3766 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
3767
3768 * indent.c (Fvertical_motion): If moving forward starting from a
3769 multi-line string, move the iterator to the last line of that string.
3770
3771 2008-08-25 Eli Zaretskii <eliz@gnu.org>
3772
3773 * frame.c (do_switch_frame): Mark previously displayed frame as
3774 obscured for FRAME_MSDOS_P frames as well.
3775
3776 2008-08-24 Eli Zaretskii <eliz@gnu.org>
3777
3778 * frame.c (make_terminal_frame): Initialize f->terminal,
3779 f->terminal->reference_count, and scroll bars on MS-DOS as well.
3780 Set the top frame to newly created frame.
3781 (Fmake_terminal_frame): Reuse the_only_display_info.
3782
3783 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
3784 estimating available memory.
3785
3786 2008-08-23 David Reitter <david.reitter@gmail.com>
3787
3788 * nsterm.m (ns_draw_window_cursor): Don't call
3789 NSDisableScreenUpdates and NSEnableScreenUpdates on
3790 non-NS_IMPL_COCOA systems.
3791
3792 2008-08-23 Andreas Schwab <schwab@suse.de>
3793
3794 * process.c (procfs_system_process_attributes): Fix use of
3795 uninitialized variables.
3796
3797 2008-08-23 Eli Zaretskii <eliz@gnu.org>
3798
3799 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
3800
3801 * dispnew.c (init_display): Remove MS-DOS specific conditions for
3802 calling tty-set-up-initial-frame-faces.
3803
3804 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
3805 Allow MSDOS frames along with X frames.
3806
3807 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
3808 addition to output_termcap.
3809
3810 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
3811
3812 * termchar.h (FRAME_TTY): Support output_msdos_raw.
3813 (struct tty_display_info) [MSDOS]: Add fields related to mouse
3814 highlight.
3815
3816 * process.c [!subprocesses]: Define QCname.
3817 (syms_of_process): Intern and staticpro it.
3818
3819 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
3820 Adjust for changes in encoding/decoding routines.
3821 Use encode_coding_object and decode_coding_object instead of
3822 encode_coding and decode_coding.
3823
3824 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
3825
3826 * dosfns.c: Include frame.h before termhooks.h.
3827 (dos_cleanup): Use CURTTY ()->termscript instead of a global
3828 variable termscript.
3829
3830 * s/msdos.h (USER_FULL_NAME): Define.
3831 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
3832
3833 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
3834 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
3835 pw->pw_gecos.
3836
3837 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
3838 SELECTED_FRAME as additional (1st) argument.
3839 (tty_read_avail_input): Handle output_msdos_raw in
3840 addition to output_termcap.
3841
3842 * msdos.c: Include frame.h before termhooks.h.
3843 (mouse_on, mouse_off, mouse_moveto, mouse_init)
3844 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
3845 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
3846 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
3847 (IT_set_terminal_modes, IT_reset_terminal_modes)
3848 (IT_set_frame_parameters): Use tty->termscript instead of a global
3849 variable termscript.
3850 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
3851 global variable terminal_coding. Don't refer to
3852 Vnonascii_translation_table.
3853 (internal_terminal_init): Set Vwindow_system in current_kboard.
3854 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
3855 Announce date and time of session start, if termscript is open.
3856 Don't zero out the_only_display_info (it is done in
3857 term.c:init_tty). Open termscript only of not already open.
3858 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
3859 here instead of dos_ttraw. Don't initialize display if this is an
3860 initial tty. Don't set FRAME_FONT.
3861 (Vwindow_system_version): Bump to 23.
3862 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
3863 is available, set up mouse_position_hook.
3864 (dos_ttraw, IT_set_terminal_modes): If called with initial
3865 terminal, do nothing.
3866 (IT_set_frame_parameters): Handle the Qtty_type frame
3867 parameter by calling internal_terminal_init.
3868 (dos_set_window_size, show_mouse_face)
3869 (clear_mouse_face, IT_note_mode_line_highlight)
3870 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
3871 (dos_rawgetc): Use tty_display_info instead of x_display_info.
3872 (initialize_msdos_display): New function.
3873 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
3874 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
3875 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
3876 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
3877 Accept additional argument: a pointer to a frame. Update all callers.
3878 (request_sigio, unrequest_sigio): Don't define, now defined on
3879 sysdep.c.
3880 (IT_write_glyphs): Rewrite to use encode_terminal_code.
3881
3882 * term.c [MSDOS]: Include msdos.h.
3883 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
3884 conditional to DOS_NT. Allow only one call to this function in a
3885 session. Don't allocate a new struct tty_display_info; instead,
3886 reuse the_only_display_info. Call get_tty_size to get screen
3887 dimensions. Call init_baud_rate to set bad_rate.
3888 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
3889 (Fsuspend_tty) [MSDOS]: Don't close input and output.
3890 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
3891 (get_tty_terminal, get_named_tty, Ftty_type)
3892 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
3893 output_termcap.
3894 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
3895 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
3896 only when subprocesses are supported.
3897
3898 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
3899 f->output_data.x.
3900 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
3901 terminal devices.
3902
3903 * msdos.h: Remove definition of struct x_display_info and struct
3904 x_output.
3905 (FRAME_FONT): Use output_data.tty.
3906 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
3907 (struct x_display_info): Rename from display_info. Update all users in
3908 msdos.c.
3909 (struct x_output): Remove background_pixel and foreground_pixel.
3910 (the_only_display_info): Rename from the_only_x_display.
3911 (dos_ttraw): Update prototype.
3912
3913 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
3914 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
3915
3916 2008-08-23 Jason Rumney <jasonr@gnu.org>
3917
3918 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
3919 (fn_TIFFSetDirectory): New library function used.
3920 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
3921 (tiff_load): Use :index to select among multiple images. Set count
3922 property when multiple images exist.
3923 (gif_format): Use :index, not :image.
3924
3925 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
3926
3927 * xdisp.c (try_scrolling): Check INT_MAX instead of
3928 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
3929 to obtain INT_MAX.
3930
3931 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
3932
3933 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
3934
3935 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
3936
3937 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
3938 GNUstep library location.
3939
3940 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
3941
3942 * xfaces.c (x_update_menu_appearance): Check validity of menu font
3943 before using it.
3944
3945 * puresize.h (BASE_PURESIZE): Increase to 1250000.
3946
3947 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
3948
3949 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
3950 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
3951 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
3952 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
3953 (EmacsApp-cursor_blink_handler): Remove declaration.
3954 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
3955 match 01 Feb 2008 changes in xterm.c.
3956 (ns_read_socket): Add cast to avoid warning.
3957 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
3958 GNUstep.
3959
3960 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
3961
3962 * xselect.c (x_get_foreign_selection): Return nil if desired
3963 selection could not be obtained, instead of signalling an error.
3964
3965 2008-08-20 David Reitter <david.reitter@gmail.com>
3966
3967 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
3968 * nsterm.m: Remove ns-specific code for cursor blinking.
3969 (ns_draw_window_cursor): Clear cursor properly rather than
3970 redrawing the area. Respect width of bar cursors.
3971 These changes enable the use of generic blink-cursor-mode and
3972 generic cursor types in NS and support smooth cursor movements (do
3973 not blink off after command).
3974 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
3975 Nextstep, too.
3976
3977 2008-08-19 Kenichi Handa <handa@m17n.org>
3978
3979 * font.c (Vfont_log_deferred): New variable.
3980 (font_add_log): Check Vfont_log_deferred.
3981 (font_deferred_log): New function.
3982
3983 * font.h (font_deferred_log): Extern it.
3984
3985 * fontset.c (reorder_font_vector): Use encoding charset of fonts
3986 for sorting.
3987 (face_for_char): Use deferred log.
3988
3989 2008-08-18 Kenichi Handa <handa@m17n.org>
3990
3991 * fontset.c (face_for_char): Add font log.
3992
3993 * font.c (font_add_log): Add the font properties :script, :lang,
3994 and :otf in the log.
3995
3996 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
3997
3998 * xdisp.c: Remove dead code.
3999 (handle_invisible_prop, next_overlay_string): Defer call to
4000 setup_for_ellipsis.
4001 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
4002
4003 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
4004
4005 * xfaces.c (lookup_derived_face): Properly handle possible zero
4006 return value of get_lface_attributes.
4007 (merge_faces): Don't tell lookup_derived_face to signal an error
4008 if face is not found.
4009
4010 * dired.c (Fdirectory_files): Doc fix.
4011
4012 * process.c (make_process): Initialize kill_without_query struct
4013 member.
4014
4015 2008-08-15 Eli Zaretskii <eliz@gnu.org>
4016
4017 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
4018 Alternative calculation of totphys for Visual Studio 6.
4019
4020 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
4021
4022 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
4023 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
4024 All users changed.
4025 (stat): Only root directory passed to GetDriveType. Allow RAM
4026 disk as well as local fixed disk when w32-get-true-file-attributes
4027 is set to `local'.
4028 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
4029 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
4030 (w32_cached_id, w32_add_to_cache): New functions.
4031 (get_name_and_id): Look account names in the cache before calling
4032 lookup_account_sid.
4033 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
4034 New initialization flags.
4035 (globals_of_w32): Initialize them to zero.
4036 (w32_system_process_attributes): Use w32_cached_id and
4037 w32_add_to_cache.
4038
4039 2008-08-14 Lawrence Mitchell <wence@gmx.li>
4040
4041 * lread.c (Fread_char, Fread_char_exclusive): If no character
4042 event is read before timeout is reached, return nil, rather than
4043 converting to a number.
4044
4045 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
4046
4047 * fns.c (use_dialog_box): Doc fix.
4048
4049 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
4050 on OS X.
4051
4052 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
4053
4054 * frame.c (Qns_parse_geometry): New var.
4055 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
4056
4057 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
4058
4059 * xdisp.c (x_produce_glyphs): Handle the case when font has no
4060 space character in calculating tabs.
4061
4062 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
4063
4064 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
4065
4066 2008-08-10 Glenn Morris <rgm@gnu.org>
4067
4068 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
4069 silence gcc "limited range of data type" warnings in some
4070 make_fixnum_or_float calls.
4071
4072 2008-08-09 Eli Zaretskii <eliz@gnu.org>
4073
4074 * w32.c (w32_system_process_attributes): If the process does not
4075 exist, return nil.
4076
4077 * w32.c: Include thelp32.h, psapi.h and coding.h.
4078 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
4079 declarations.
4080 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
4081 (Process32Next_Proc): New typedefs.
4082 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
4083 (g_b_init_process32_next, g_b_init_open_thread_token)
4084 (g_b_init_impersonate_self, g_b_init_revert_to_self)
4085 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
4086 (g_b_init_get_process_working_set_size)
4087 (g_b_init_global_memory_status_ex): New static variables.
4088 (globals_of_w32): Initialize them.
4089 (create_toolhelp32_snapshot, process32_first, process32_next)
4090 (open_thread_token, impersonate_self, revert_to_self)
4091 (get_process_memory_info, get_process_working_set_size)
4092 (global_memory_status, global_memory_status_ex): New wrapper
4093 functions.
4094 (w32_list_system_processes, w32_system_process_attributes)
4095 (enable_privilege, restore_privilege, ltime, process_times):
4096 New functions.
4097 (convert_time_raw): New function.
4098 (convert_time): Remove conversion of FILETIME into time in 100
4099 nsec units, call convert_time_raw instead.
4100
4101 * process.h (w32_list_system_processes, w32_system_process_attributes):
4102 Add prototypes.
4103 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
4104 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
4105 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
4106 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
4107
4108 * process.c (Fsystem_process_attributes): Doc fix.
4109
4110 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
4111
4112 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
4113 a continued multi-char glyph; if so, advance to the actual glyph.
4114
4115 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
4116
4117 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
4118
4119 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
4120 (.m.o): Use it.
4121 * config.in: Regenerate.
4122
4123 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
4124
4125 * xdisp.c (redisplay_window): Revert last change.
4126 (try_window): Check bottom scroll margin too.
4127
4128 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4129
4130 * config.in: Regenerate.
4131
4132 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
4133 -list-load-path-shadows'.
4134 (nsgui.h): Reduce number of things depending on it.
4135
4136 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
4137
4138 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
4139 instead of window-end which does the wrong thing at eob.
4140 (try_cursor_movement): Minor optimization.
4141 (redisplay_window): If scroll margin is defined, don't assume
4142 window doesn't need scrolling.
4143
4144 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
4145
4146 * config.in: Regenerate.
4147
4148 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
4149 (mostlyclean): Don't delete *.d under NS.
4150
4151 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
4152
4153 2008-08-06 Kenichi Handa <handa@m17n.org>
4154
4155 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
4156
4157 2008-08-06 Andreas Schwab <schwab@suse.de>
4158
4159 * config.in: Regenerate.
4160
4161 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
4162
4163 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
4164 forcing a window start.
4165
4166 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
4167 (auto_save_1): Update modtime when auto-save-list-file-name is on.
4168
4169 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4170
4171 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
4172 argument.
4173
4174 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
4175
4176 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
4177 <scroll-down-aggressively, before-change-functions>:
4178 <after-change-functions>: Reflow docstrings.
4179
4180 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4181 Ken Raeburn <raeburn@gnu.org>
4182
4183 Dock menu customization, based on a patch by Ken Raeburn, plus some
4184 other fixes.
4185 * nsmenu.m (dockMenu): New variable.
4186 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
4187
4188 * nsterm.h (dockMenu): Declare.
4189
4190 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
4191 (ns_term_init): Initialize dockMenu.
4192 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
4193 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
4194 left.
4195
4196 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
4197
4198 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
4199
4200 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
4201
4202 * config.in: Regenerate.
4203
4204 2008-08-04 Seiji Zenitani <zenitani@mac.com>
4205
4206 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
4207
4208 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
4209
4210 * nsterm.h (find_and_call_menu_selection): Fix prototype.
4211
4212 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4213
4214 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
4215
4216 * keyboard.h: Comment an #endif.
4217
4218 * lisp.h (have_menus_p): Adjust comment.
4219
4220 * menu.c (find_and_return_menu_selection): Fix comparison with
4221 client_data.
4222
4223 * nsmenu.m (popup_activated_flag): New variable.
4224 (popup_activated): New function.
4225 (menu-or-popup-active-p): New exported lisp definition.
4226 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
4227 when popup done.
4228 (ns_popup_dialog): Set popup_activated_flag.
4229
4230 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
4231 version for GNUstep (handled by conditional typedef in nsterm.m).
4232 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
4233 in rgb.txt).
4234
4235 * process.c (init_process): Use DARWIN_OS, not DARWIN.
4236
4237 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
4238
4239 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
4240
4241 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
4242 shortcircuit if popup_activated like GTK and X toolkit.
4243
4244 * m/inter386.h: Change DARWIN to DARWIN_OS.
4245
4246 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
4247 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
4248 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
4249 comment on NO_SOCK_SIGIO.
4250
4251 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
4252
4253 * nsterm.m (windowDidResize): Remove stopModal call.
4254
4255 2008-08-03 Andreas Schwab <schwab@suse.de>
4256
4257 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
4258 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
4259
4260 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
4261
4262 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
4263 Don't use uninitialized pointer variable when using getrlimit.
4264
4265 2008-08-02 Jason Rumney <jasonr@gnu.org>
4266
4267 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
4268
4269 2008-08-02 Eli Zaretskii <eliz@gnu.org>
4270
4271 * alloc.c (NSTATICS): Bump to 0x640.
4272
4273 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
4274
4275 * lisp.h: Add prototype for directory_files_internal.
4276
4277 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
4278 New functions.
4279 (syms_of_process): Defsubr them. Add initializations for various
4280 Q* symbols used in procfs_system_process_attributes.
4281 (procfs_list_system_processes, procfs_system_process_attributes)
4282 [HAVE_PROCFS]: New functions.
4283 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
4284 (procfs_get_total_memory): New functions.
4285
4286 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
4287
4288 * xfaces.c (Fx_load_color_file): Fix previous change;
4289 it is #ifdef WINDOWSNT, not WINDOWS_NT.
4290
4291 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
4292
4293 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
4294
4295 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
4296
4297 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
4298
4299 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
4300
4301 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
4302
4303 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
4304 define NSApplicationDelegateReplySuccess.
4305 (EmacsView -converstationIdentifier): Use long instead of
4306 NSInteger for GNUstep, since it doesn't have NSInteger.
4307
4308 * xmenu.c: Revert last change.
4309
4310 * keyboard.h: Fix last change.
4311
4312 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
4313
4314 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
4315 on Windows.
4316
4317 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
4318
4319 Warning clearing and clean-up in NS port.
4320 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
4321 Add prototypes.
4322 * nsgui.h (FACE_DEFAULT): Remove, unused.
4323 (XGCValues): Change colors to unsigned long.
4324 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
4325 nsterm.m.
4326 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
4327 (ns_list_fonts): Remove, unused.
4328 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
4329 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
4330 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
4331 (nsfont_draw): Compare face colors to 0, not nil.
4332 * nsmenu.m (struct widget_value): Drop unneeded declaration.
4333 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
4334 (-addSubmenuWithTitle:): Use NSMenuItem class.
4335 (ns_popup_menu): Use NO, not NULL, for enabled setting.
4336 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
4337 (ns_clip_to_row): Make gc arg a BOOL.
4338 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
4339 ns_clip_to_row() call.
4340 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
4341 used). Cast FRAME_FONT assignments.
4342 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
4343 (ns_string_to_lispmod): Change arg to const char.
4344 (ns_term_init): Use NSMenuItem class.
4345 (EmacsApp -openFile:): Move to different section of file.
4346 (EmacsApp -application:openFiles:): Don't return a value, call
4347 -replyToOpenOrPrint:.
4348 (EmacsView -keyDown:): Fix up cast.
4349 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
4350 (EmacsView -menuDown:): Cast tag in call to
4351 find_and_call_menu_selection().
4352 (ns_list_fonts): Remove, unused.
4353 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
4354 (ns_fontname_to_xlfd): Make static.
4355 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
4356 Remove prototypes (now in keyboard.h).
4357 (next_menubar_widget_id): Remove, unused.
4358 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
4359 Remove prototypes (now in keyboard.h).
4360 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
4361
4362 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
4363
4364 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
4365 (floatfns.o): Depend on syssignal.h.
4366 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
4367
4368 * systty.h: Fix previous change that removed BSD_TERMIOS.
4369 Add comments to #ifdefs.
4370
4371 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
4372
4373 * w32fns.c (w32-load-color-file): Remove.
4374 (x-open-connection): Use renamed Fx_load_color_file.
4375 * xfaces.c (x-load-color-file): Add.
4376 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
4377 Emacs.clr.
4378 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
4379
4380 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
4381
4382 * dbusbind.c (Fdbus_call_method_asynchronously)
4383 (Fdbus_method_error_internal): New defuns.
4384 (xd_read_message): Handle also reply messages.
4385 (Vdbus_registered_functions_table): Extend docstring.
4386
4387 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
4388
4389 * keyboard.c (gobble_input): Fix previous change.
4390
4391 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
4392
4393 * bitmaps/README:
4394 * xfns.c:
4395 * termcap.c:
4396 * term.c:
4397 * syswait.h:
4398 * systty.h:
4399 * systime.h:
4400 * syssignal.h:
4401 * sysdep.c:
4402 * process.h:
4403 * process.c:
4404 * print.c:
4405 * ndir.h:
4406 * lread.c:
4407 * keyboard.c:
4408 * getpagesize.h:
4409 * floatfns.c:
4410 * fileio.c:
4411 * emacs.c:
4412 * doc.c:
4413 * dispnew.c:
4414 * dired.c:
4415 * data.c:
4416 * callproc.c:
4417 * buffer.c:
4418 * README:
4419 * Makefile.in:
4420 * s/template.h:
4421 * s/msdos.h:
4422 * m/vax.h: Remove VMS support.
4423 * s/vms.h:
4424 * vlimit.h:
4425 * uaf.h:
4426 * temacs.opt:
4427 * param.h:
4428 * ioctl.h: Remove file.
4429
4430 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
4431
4432 * s/ms-w32.h (MULTI_KBOARD): Remove.
4433 * xterm.c:
4434 * xselect.c:
4435 * xfns.c:
4436 * window.c:
4437 * w32term.c:
4438 * w32fns.c:
4439 * terminal.c:
4440 * termhooks.h:
4441 * term.c:
4442 * sysdep.c:
4443 * keyboard.h:
4444 * keyboard.c:
4445 * frame.h:
4446 * frame.c:
4447 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
4448 * config.in: Regenerate.
4449
4450 2008-07-30 Jason Rumney <jasonr@gnu.org>
4451
4452 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
4453
4454 * w32font.c (w32font_encode_char): Leave as unicode if in range.
4455 (w32font_open_internal): Get unicode version of textmetrics.
4456 Don't enable or disable glyph indices here.
4457 (w32font_open): Disable use of glyph indices.
4458
4459 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
4460
4461 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
4462
4463 * minibuf.c (Vread_buffer_function): Doc fix.
4464
4465 2008-07-30 John Paul Wallington <jpw@pobox.com>
4466
4467 * minibuf.c (read_buffer_completion_ignore_case): New var.
4468 (Fread_buffer): Use it.
4469
4470 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
4471
4472 * systty.h (sensemode): Remove empty #if. Remove reference to
4473 BSD_TERMIOS, unused.
4474
4475 * sysdep.c: Remove reference to DGUX.
4476 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
4477
4478 * config.in: Regenerate.
4479
4480 2008-07-30 Jason Rumney <jasonr@gnu.org>
4481
4482 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
4483
4484 2008-07-29 Jason Rumney <jasonr@gnu.org>
4485
4486 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
4487 is populated.
4488 (uniscribe_encode_char): Always use uniscribe.
4489 Avoid using context if cache is populated.
4490
4491 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
4492
4493 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
4494 open menu.
4495
4496 * gtkutil.c (menu_nav_ended): Remove.
4497 (create_menus): Remove signal connect for menu_nav_ended.
4498
4499 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
4500
4501 * xdisp.c (redisplay_window): Check return value of
4502 compute_window_start_on_continuation_line before forcing a window
4503 start.
4504
4505 2008-07-28 Jason Rumney <jasonr@gnu.org>
4506
4507 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
4508
4509 * w32term.c (w32_enable_unicode_output, cleartype_active):
4510 Remove obsolete display options.
4511 (x_draw_glyph_string_background): Don't use old cleartype_active
4512 workaround.
4513 (w32_initialize): Remove cleartype_active initialization.
4514 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
4515
4516 2008-07-28 Andreas Schwab <schwab@suse.de>
4517
4518 * lisp.h (init_weak_hash_tables, syms_of_font)
4519 (xd_read_queued_messages, syms_of_dbusbind): Declare.
4520 (remove_hash_entry): Don't declare.
4521 * eval.c (maybe_call_debugger): Make static and move before use.
4522 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
4523 * xdisp.c: Include "gtkutil.h" if USE_GTK.
4524 * xterm.h (x_set_frame_alpha): Declare.
4525
4526 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
4527
4528 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
4529 (create_menus): Connect selection-done to menu_nav_ended.
4530
4531 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
4532
4533 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
4534 Set Vx_resource_name to a fallback. Replace read of 'buffered'
4535 parameter with read of 'alpha' one.
4536 (Qns_frame_parameter): Remove.
4537 * nsselect.m (selection-coding-system)
4538 (next-selection-coding-system, Vselection_coding_system)
4539 (Vnext_selection_coding_system): Drop.
4540
4541 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
4542
4543 * nsfns.m (do-applescript, do_applescript): Rename to
4544 ns-do-applescript, ns_do_applescript, and move within file.
4545
4546 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
4547
4548 Remove support for Mac Carbon.
4549 * mactoolbox.c:
4550 * macterm.h:
4551 * macterm.c:
4552 * macselect.c:
4553 * macmenu.c:
4554 * macgui.h:
4555 * macfns.c:
4556 * mac.c: Remove file.
4557 * s/darwin.h:
4558 * m/intel386.h:
4559 * xfaces.c:
4560 * xdisp.c:
4561 * window.c:
4562 * tparam.c:
4563 * termhooks.h:
4564 * termcap.c:
4565 * term.c:
4566 * syssignal.h:
4567 * sysselect.h:
4568 * sysdep.c:
4569 * process.c:
4570 * lread.c:
4571 * lisp.h:
4572 * keyboard.c:
4573 * image.c:
4574 * fringe.c:
4575 * frame.h:
4576 * frame.c:
4577 * fontset.c:
4578 * font.h:
4579 * font.c:
4580 * fns.c:
4581 * fileio.c:
4582 * emacs.c:
4583 * dispnew.c:
4584 * dispextern.h:
4585 * config.in:
4586 * atimer.c:
4587 * Makefile.in: Remove code for Carbon.
4588
4589 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4590
4591 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
4592
4593 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4594
4595 * macterm.h (kCGBitmapByteOrder32Host): New define for
4596 non-universal SDKs.
4597
4598 * image.c (mac_create_cg_image_from_image, image_load_image_io)
4599 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
4600
4601 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
4602 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
4603
4604 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
4605
4606 * w32inevt.c: Include dispextern.h.
4607
4608 2008-07-26 Andreas Schwab <schwab@suse.de>
4609
4610 * print.c (print_object): Fix off-by-one in last change.
4611
4612 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
4613
4614 * term.c (syms_of_term): Don't initialize default_orig_pair,
4615 default_set_foreground and default_set_background on Windows.
4616
4617 2008-07-25 Jason Rumney <jasonr@gnu.org>
4618
4619 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
4620 ScriptItemize. Clean up return value checking. Remove unused
4621 variables.
4622 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
4623 shaping engine.
4624
4625 * w32font.c (w32font_has_char): Handle the case where we can't
4626 determine the script for a character.
4627
4628 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
4629
4630 * term.c (syms_of_term): Initialize default_orig_pair,
4631 default_set_foreground, and default_set_background.
4632
4633 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
4634 clash (bug#86).
4635 (getloadavg): Callers changed.
4636
4637 * image.c (svg_load_image): Fix last change.
4638 (svg_load_image): Use rsvg_handle_get_dimensions to check that
4639 image size is valid. Use g_object_unref instead of deprecated
4640 rsvg_handle_free to free rsvg handle.
4641 (x_from_xcolors): Don't initialize pixmap (silence compiler).
4642
4643 2008-07-25 Jason Rumney <jasonr@gnu.org>
4644
4645 * w32font.c (w32font_encode_char): Encode characters outside BMP as
4646 surrogates before looking up glyph index.
4647 (w32font_text_extents): Encode as surrogates if falling back to
4648 functions that need UTF-16 wide chars.
4649
4650 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
4651 BMP as surrogates before looking up glyph index.
4652
4653 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
4654
4655 * image.c (svg_load_image): Check for failure in return value of
4656 rsvg_handle_get_pixbuf. Free rsvg handle when done.
4657
4658 2008-07-25 Jason Rumney <jasonr@gnu.org>
4659
4660 * w32font.c (Fx_select_font): Reverse sense of second arg.
4661
4662 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
4663
4664 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
4665 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
4666
4667 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
4668 (PURESIZE): Use it.
4669
4670 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
4671
4672 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
4673 * m/alpha.h (TEXT_END):
4674 * m/ibmrs6000.h (TEXT_END):
4675 * m/macppc.h (TEXT_END):
4676 * s/darwin.h (TEXT_END):
4677 * s/msdos.h (TEXT_END): Remove, unused.
4678 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
4679 * s/cygwin.h: Remove comment.
4680
4681 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
4682 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
4683 * m/intel386.h (DOT_GLOBAL_START):
4684 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
4685 (USG): Remove, file not used on USG platforms.
4686
4687 * Makefile.in (HAVE_X11): Remove empty #else.
4688
4689 2008-07-24 Andreas Schwab <schwab@suse.de>
4690
4691 * fileio.c (Finsert_file_contents): Properly adjust undo list
4692 after format conversion.
4693
4694 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
4695
4696 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
4697 (menu_nav_ended): Remove.
4698 (create_menus): Remove signal connect for menu_nav_ended.
4699 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
4700 create_menus.
4701 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
4702
4703 2008-07-23 Jason Rumney <jasonr@gnu.org>
4704
4705 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
4706 with opened font.
4707 (w32font_open): Set font type to gdi.
4708
4709 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
4710
4711 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
4712
4713 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
4714 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
4715 defines it.
4716 * unexec.c (ADDR_CORRECT): Define unconditionally.
4717
4718 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
4719
4720 * unexec.c: Remove code depending on !COFF and USG, the file is
4721 not used for such systems.
4722
4723 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
4724 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
4725 (LD_SWITCH_SYSTEM_1): Remove, update users.
4726
4727 * s/darwin.h (DATA_END):
4728 * m/intel386.h (DATA_END):
4729 * m/ibmrs6000.h (DATA_END):
4730 * m/alpha.h (DATA_END): Remove, unused.
4731
4732 * config.in: Regenerate.
4733 * s/ms-w32.h (subprocesses): Define unconditionally.
4734 * s/template.h (subprocesses): Update comment.
4735 * s/vms.h (subprocesses):
4736 * s/usg5-4.h (subprocesses):
4737 * s/hpux10-20.h (subprocesses):
4738 * s/gnu-linux.h (subprocesses):
4739 * s/cygwin.h (subprocesses):
4740 * s/bsd-common.h (subprocesses):
4741 * s/aix4-2.h (subprocesses):
4742 * s/darwin.h (subprocesses): Do not define, defined by default now.
4743
4744 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
4745 Remove all references.
4746 (temacs): Add GNUstep specific ld flags.
4747
4748 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
4749 similarly to what X does.
4750
4751 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4752
4753 * nsfns.m (x-list-fonts): Remove.
4754 (syms_of_nsfns): Drop the x-list-fonts declaration.
4755 * nsterm.m: Get rid of remaining "//" comments.
4756
4757 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
4758
4759 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
4760
4761 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
4762 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
4763 (Fns_own_selection_internal, Fx_disown_selection_internal)
4764 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
4765
4766 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
4767 ... */' style of docstrings. Doc fixes.
4768
4769 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
4770
4771 * terminfo.c (UP, BC, PC): Undo previous change.
4772
4773 * nsfns.m: Rename ns prefixed functions/variables to the
4774 corresponding x versions. Update references.
4775
4776 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
4777
4778 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
4779
4780 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
4781
4782 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
4783 Remove forwarding functions.
4784 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
4785 non-static.
4786 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
4787 non-static.
4788 (ns_frame_parm_handlers): Use the new names.
4789 (syms_of_nsfns): Move to the end of file.
4790
4791 * nsterm.m (syms_of_nsterm): Move to the end of file.
4792
4793 * dispnew.c (init_display): Remove code for X10.
4794
4795 2008-07-22 Jason Rumney <jasonr@gnu.org>
4796
4797 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
4798 bare drive.
4799
4800 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4801
4802 * nsterm.m (syms_of_nsterm): Remove debugging println.
4803
4804 2008-07-22 David Reitter <david.reitter@gmail.com>
4805
4806 * nsfns.m (do_applescript, F_do_applescript): NS version of the
4807 Carbon implementation of the same functionality: execute arbitrary
4808 AppleScript code.
4809
4810 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4811
4812 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
4813 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
4814 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
4815 (Fx_display_mm_height, Fx_display_mm_width)
4816 (Fx_display_backing_store, Fx_display_visual_class)
4817 (Fx_display_save_under, Fx_open_connection)
4818 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
4819 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
4820 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
4821 (Fx_display_pixel_width, Fx_display_pixel_height)
4822 (Fx_display_usable_bounds, Fx_display_planes)
4823 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
4824 ... */' style of docstrings.
4825
4826 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
4827
4828 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
4829 on this platform.
4830 (mips):
4831 * m/iris4d.h (mips): Do not define.
4832 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
4833
4834 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
4835
4836 * image.c:
4837 * nsfns.m:
4838 * nsselect.m:
4839 * nsterm.h:
4840 * nsterm.m: Rename ns prefixed functions/variables to the
4841 corresponding x versions. Update references.
4842
4843 * m/ibms390x.h (NO_REMAP): Do not undefine.
4844
4845 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
4846
4847 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
4848
4849 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
4850 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
4851 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
4852 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
4853 (Fns_display_mm_height, Fns_display_mm_width)
4854 (Fns_display_backing_store, Fns_display_visual_class)
4855 (Fns_display_save_under, Fns_open_connection)
4856 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
4857 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
4858 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
4859 (Fns_display_pixel_width, Fns_display_pixel_height)
4860 (Fns_display_usable_bounds, Fx_display_planes)
4861 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
4862
4863 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
4864
4865 * print.c (print_object): Check print_depth before searching for
4866 circularities.
4867
4868 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
4869
4870 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
4871 only sprintf.
4872
4873 2008-07-21 Kenichi Handa <handa@m17n.org>
4874
4875 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
4876
4877 2008-07-20 Andreas Schwab <schwab@suse.de>
4878
4879 * syntax.c (find_start_pos, find_start_value)
4880 (find_start_value_byte, find_start_begv, find_defun_start)
4881 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
4882
4883 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
4884
4885 * s/sol2-3.h: Insert contents of s/sol2.h.
4886 (LD_SWITCH_SYSTEM): Remove redundant definition.
4887 * s/sol2.h: Remove, unused.
4888
4889 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4890
4891 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
4892
4893 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4894
4895 * Makefile.in (ns_appdir): Fix typo in find command.
4896
4897 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
4898
4899 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
4900
4901 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
4902 added not supported anymore.
4903
4904 * s/usg5-4-2.h (LIBS_SYSTEM):
4905 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
4906
4907 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
4908 * s/lynxos.h (GETPGRP_NO_ARG):
4909 * s/hpux10-20.h (NO_SIOCTL_H):
4910 * s/gnu.h (GETPGRP_NO_ARG):
4911 * s/gnu-linux.h (NO_SIOCTL_H):
4912 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
4913 * s/cygwin.h (GETPGRP_NO_ARG):
4914 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
4915 (C_DEBUG_SWITCH): Remove duplicate definition.
4916
4917 * m/ibms390.h: Remove boilerplate comments.
4918
4919 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
4920
4921 * process.c (HAVE_SERIAL): Consolidate ifdefs.
4922 (wait_reading_process_output): Remove code for SunOS, platform not
4923 supported anymore. Use SOLARIS2 instead of sun.
4924
4925 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
4926
4927 * font.c (font_open_by_name): Under NS, default lface height to zero.
4928 (font_open_for_lface): Under NS, set size based on frame fontsize.
4929 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
4930 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
4931
4932 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
4933
4934 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
4935 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
4936 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
4937 YES/NO.
4938 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
4939 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
4940 * Makefile.in (clean): Clear out build destination dir.
4941
4942 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
4943
4944 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
4945 xterm, xselect.
4946 * lisp.h: Remove declaration of hash_remove.
4947 * nsgui.h: Remove redefinitions of hash_remove.
4948 * fns.c (hash_remove): Rename to hash_remove_from_table.
4949
4950 2008-07-19 Seiji Zenitani <zenitani@mac.com>
4951
4952 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
4953 strdup() the family UTF8String before modifying it.
4954
4955 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
4956
4957 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
4958 NS_FACE_BACKGROUND with 0 instead of nil.
4959 * nsfont.m (nsfont_draw): Same.
4960
4961 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
4962
4963 * nsfns.m (ns_set_background_color): Fix crash.
4964
4965 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
4966
4967 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
4968
4969 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
4970
4971 * puresize.h (BASE_PURESIZE): Increase to 1240000.
4972
4973 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4974
4975 * gtkutil.c: Include <config.h> instead of "config.h".
4976
4977 * lisp.h (Foverlay_buffer): Add EXFUN.
4978
4979 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
4980 child process to complete child_setup. Undo 2005-09-21 change.
4981
4982 * s/darwin.h: Mention setsid after vfork.
4983
4984 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4985
4986 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
4987 Depend on macgui.h.
4988
4989 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
4990 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
4991
4992 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
4993 and f19.
4994 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
4995
4996 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
4997 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
4998 Remove enumerators.
4999
5000 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
5001 Check if FACE_FROM_ID returns NULL.
5002
5003 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
5004
5005 * w32inevt.c (change_frame_size): Remove extern declaration.
5006 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
5007 change_frame_size.
5008
5009 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
5010
5011 * getloadavg.c: Revert last change (2008-07-15).
5012
5013 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
5014
5015 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
5016 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc) set
5017 from configure.
5018
5019 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
5020
5021 * s/sol2.h:
5022 * s/sol2-4.h: Reorganize conditionals.
5023
5024 * ecrt0.c: Remove code depending on m68000, not used anymore.
5025
5026 * fns.c (hash_remove): Make static.
5027 * lisp.h (hash_remove): Don't prototype.
5028
5029 * m/ibmrs6000.h:
5030 * m/ibms390x.h:
5031 * m/macppc.h: Remove boilerplate comments.
5032
5033 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
5034 Solaris, which does not need them.
5035
5036 * m/vax.h: Remove comments about unsupported systems.
5037
5038 * s/darwin.h: Reorganize ifdefs.
5039
5040 2008-07-17 Andreas Schwab <schwab@suse.de>
5041
5042 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
5043
5044 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
5045
5046 Use SDATA. Follow coding convention of placing operators at
5047 beginning of next line rather than end of previous line, and placing
5048 spaces around infix operators.
5049
5050 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
5051 in case it was defined already.
5052 USE @GNUSTEP_MAKEFILES@ rather than envvars.
5053 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
5054 ns_default.
5055 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
5056 Lisp_Objects.
5057 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
5058 (ns_defined_color, ns_color_to_lisp): Declare.
5059 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
5060 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
5061 it's accepted even with USE_LISP_UNION_TYPE.
5062 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
5063 (update_frame_tool_bar): Remove apparently obsolete tests for
5064 non-integerness of f->tool_bar_lines.
5065 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
5066 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
5067 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
5068 (nsfont_open): Don't confuse NULL for Qnil.
5069 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
5070 * menu.h (find_and_call_menu_selection):
5071 * menu.c (find_and_call_menu_selection): Use just int for vector size.
5072 (find_and_return_menu_selection): Always return something.
5073 * frame.h: Include dispextern.h for Display_Info.
5074 (display_x_get_resource): Declare.
5075
5076 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
5077
5078 * syntax.c: Remove stdio.h include accidentally introduced in
5079 Emacs.app commit.
5080 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
5081 NS_IMPL_COCOA.
5082 * keyboard.c (handle_async_input, input_available_signal): Remove
5083 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
5084
5085 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
5086
5087 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
5088 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
5089 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
5090 Use SDATA.
5091
5092 * keymap.c: Remove all NS-specific code.
5093 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
5094 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
5095 where_is_preferred_modifier, return a different value depending on how
5096 preferred is the binding.
5097 (where_is_internal): Adjust accordingly.
5098 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
5099 Adjust to new preferred_sequence_p.
5100 (syms_of_keymap): Declare `where-is-preferred-modifier'.
5101 * keyboard.c (parse_solitary_modifier): Not static any more.
5102 * keyboard.h (parse_solitary_modifier): Declare.
5103
5104 2008-07-16 Andreas Schwab <schwab@suse.de>
5105
5106 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
5107 of easymenu.
5108
5109 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
5110
5111 * xdisp.c (move_it_in_display_line): Account for word wrap, so
5112 that we don't move off the line.
5113
5114 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
5115
5116 * keyboard.c (Qsuper): Remove.
5117 (parse_menu_item): Don't call where_is_internal specially for NS.
5118
5119 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
5120
5121 * s/gnu-linux.h: Remove boilerplate comments.
5122
5123 * m/alpha.h (__ELF__): Consolidate conditions.
5124
5125 * m/m68k.h (linux): Use GNU_LINUX instead.
5126 Remove boilerplate comments.
5127
5128 * m/intel386.h: Undo refactoring from previous change.
5129 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
5130 too, remove dead code.
5131 (linux): Use GNU_LINUX instead.
5132
5133 2008-07-16 Jason Rumney <jasonr@gnu.org>
5134
5135 * w32gui.h: Repeat 26 June changes lost by last change.
5136
5137 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
5138
5139 * systty.h: Remove code for Aix on 386, unsupported platform.
5140
5141 * s/ms-w32.h: Remove boilerplate comments.
5142 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
5143
5144 * s/gnu-linux.h (TERM): Remove support.
5145 (HAVE_SYSVIPC): Remove, unused.
5146 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
5147 for this system.
5148
5149 * process.c: Remove support for IRIS, unused.
5150 Remove support for TERM, not relevant anymore.
5151
5152 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
5153 used with the definition.
5154
5155 * s/aix4-2.h (static): Do not undef.
5156
5157 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
5158 only used on Aix.
5159 (HAVE_SYSVIPC): Remove, unused.
5160
5161 * m/hp800.h (CANNOT_DUMP): Do not undef.
5162
5163 * m/alpha.h: Fix comment.
5164
5165 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
5166 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
5167 used by this configuration.
5168 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
5169 * unexec.c: Remove code depending on HPUX and
5170 USG_SHARED_LIBRARIES, not used with this file. Remove code
5171 depending on IRIS, unused. Remove if 0-ed code.
5172
5173 * s/template.h: Remove comments about static.
5174
5175 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
5176 Remove if 0-ed code.
5177 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
5178 were the same as the default.
5179 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
5180 Remove boilerplate comments.
5181 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
5182 (HAVE_SYSVIPC): Remove, unused.
5183 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
5184
5185 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
5186 Remove boilerplate comments.
5187 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
5188 Remove boilerplate comments.
5189 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
5190 Remove boilerplate comments.
5191 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
5192
5193 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
5194 USG systems which do not use DATA_SEG_BITS.
5195 Refactor code. Remove boilerplate comments.
5196
5197 * m/ibms390.h:
5198 * m/m68k.h:
5199 * s/bsd-common.h:
5200 * s/cygwin.h:
5201 * s/darwin.h:
5202 * s/freebsd.h:
5203 * s/gnu.h:
5204 * s/msdos.h: Remove boilerplate comments.
5205
5206 * m/iris4d.h: Remove boilerplate comments and code for systems that
5207 do not use this file.
5208 (IRIS_4D): Remove, unused.
5209
5210 * m/mips.h: Remove boilerplate comments and code for systems that
5211 do not use this file.
5212 (SIGN_EXTEND_CHAR):
5213 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
5214 * unexmips.c: Remove file, unused.
5215
5216 * editfns.c (Fuser_full_name): Replace the only use of
5217 USER_FULL_NAME with its value.
5218 * config.in: Regenerate.
5219
5220 2008-07-16 David Reitter <david.reitter@gmail.com>
5221
5222 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
5223 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
5224
5225 2008-07-16 Glenn Morris <rgm@gnu.org>
5226
5227 * emacs.c (system-type): Doc fix.
5228
5229 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
5230
5231 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
5232 If the cache doesn't work, let's fix it, rather than work around it.
5233
5234 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5235
5236 * Makefile.in: Correct additions for nsfont.o in last commit.
5237 * nsfont.m: New file (forgot last commit).
5238
5239 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
5240
5241 * callproc.c (set_initial_environment): Initialize
5242 Vprocess_environment under CANNOT_DUMP (fixes crash when
5243 batch-compiling for bootstrap).
5244
5245 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
5246 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5247
5248 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
5249 fix crash due to different init order.
5250
5251 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5252
5253 Changes and additions for NeXTstep windowing system (Cocoa and
5254 GNUstep) support.
5255
5256 * Makefile.in:
5257 * config.in: Support defines and build commands for NS port.
5258 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
5259 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
5260 * dispextern.h: Include nsgui.h and add needed typedefs under NS
5261 windowing.
5262 (struct face): Add synth_ital field.
5263 * dispnew.c: Include nsterm.h when compiling under NS windowing.
5264 (init_display): Initialize Vinitial_window_system to "ns" when so
5265 compiled.
5266 * emacs.c: Include GSConfig.h when compiling under GNUstep.
5267 (display_arg): Use under NS.
5268 (main): Under NS, allocate autorelease pool and handle command line
5269 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
5270 (standard_args): Add NS-specific args.
5271 (shut_down_emacs): Shut down NS terminal if compiled under NS.
5272 * font.c (DEFAULT_ENCODING): New variable.
5273 (font_find_for_lface): Use it.
5274 (syms_of_font): Load syms_of_nsfont under NS.
5275 * font.h: Declare nsfont_driver when compiled under NS.
5276 * fontset.c: When compiling under NS, include nsterm.h.
5277 (fontset_from_font): Autoconstruct fontset under NS.
5278 * frame.c (various): Under NS, include nsterm.h, add Qns window system
5279 symbol, document and use it.
5280 (do_switch_frame): When for_deletion under Cocoa, add
5281 Fraise_frame(Qnil).
5282 (x_set_frame_parameters): Ensure font attribute changes are picked up.
5283 (x_get_arg): Allow "yes" and "no" as boolean values.
5284 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
5285 Qright under Cocoa.
5286 (focus-follows-mouse): Default to 0 under NS.
5287 * frame.h (enum output_method): Add output_ns.
5288 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
5289 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
5290 (FRAME_WINDOW_P): NS-specific definition.
5291 * fringe.c (max_used_fringe_bitmap): Make public.
5292 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
5293 (getloadavg): Use NeXT code under descendant OS's.
5294 * image.c (includes and header section, x_create_bitmap_from_data)
5295 (x_create_bitmap_from_file, free_bitmap_record, image_background)
5296 (image_background_transparent, x_clear_image_1)
5297 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
5298 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
5299 (x_to_xcolors, x_from_xcolors, x_disable_image)
5300 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
5301 other GUIs, including XPM support using code originally written for
5302 Carbon GUI.
5303 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
5304 using NS API.
5305 (image_ascent): Use font metrics macros instead of direct struct field
5306 access.
5307 * keyboard.c (includes): Add nsterm.h when compiling under NS.
5308 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
5309 Also, handle NS as GTK for menu bar purposes.
5310 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
5311 toolkit where they differ.
5312 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
5313 use cachelist, still needed under NS.
5314 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
5315 (struct widget_value): Define it here for menu.c.
5316 * keymap.c (includes): Include modifier internals.
5317 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
5318 NS.
5319 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
5320 support for preferring sequences using certain modifiers, specified by
5321 the FIRSTONLY argument.
5322 * lisp.h (hash_remove): Rename to avoid name clash when compiling
5323 under NS GNUstep implementation.
5324 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
5325 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
5326 * menu.c: Include nsterm.h under NS.
5327 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
5328 (free_menubar_widget_tree_value, update_submenu_strings)
5329 (find_and_call_menu_selection): Treat NS as X and NT.
5330 (find_and_return_menu_selection): New function, used for popup menus.
5331 * nsgui.h:
5332 * nsterm.h:
5333 * nsfns.m:
5334 * nsimage.m:
5335 * nsmenu.m:
5336 * nsselect.m:
5337 * nsterm.m: New files.
5338 * process.c (wait_reading_process_output): Under NS, call ns_select()
5339 instead of plain select().
5340 * syntax.c (char_quoted): Under NS, avoid a crash when called near
5341 beginning of buffer.
5342 * sysselect.h (init_process): Rename when compiling under Cocoa to
5343 avoid name conflict.
5344 * termhooks.h (display_info): Add ns_display_info to union.
5345 * terminal.c (Fterminal_live_p): Add ns to terminal types.
5346 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
5347 COCOA environment.
5348 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
5349 unexec() signature. (Note, this will dump, but the resulting file
5350 crashes; unexosx is used instead; keeping around for reference and
5351 possible aid in getting dump working under GNUstep.)
5352 * w32gui.h (button_type, widget_value): Remove definitions (now in
5353 keyboard.h).
5354 * window.c: Include nsterm.h when compiling under NS.
5355 * xdisp.c (includes): Include nsterm.h when compiling under NS.
5356 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
5357 other GUI windowing systems.
5358 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
5359 GTK.
5360 (x_consider_frame_title): Under NS, set icon type and frame
5361 modified-state indicator; use ns_set_name_as_filename() when using
5362 formatted title.
5363 (update_window_cursor): Make public when compiling under NS.
5364 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
5365 (hourglass_atimer, Vhourglass_delay
5366 * xfaces.c (header section, init_frame_faces, clear_font_table)
5367 (defined_color, unload_color, x_face_list_fonts)
5368 (prepare_face_for_display): Add NS support parallel to other GUIs.
5369 Emulate GCs like other non-X GUIs.
5370 (split_font_name): Don't lowercase font name under NS.
5371 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
5372 under NS.
5373 * s/darwin.h: Add support for compilation under NS.
5374
5375 2008-07-15 Jason Rumney <jasonr@gnu.org>
5376
5377 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
5378 (w32_show_hourglass): Rename from show_hourglass.
5379 (w32_hide_hourglass): Rename from hide_hourglass.
5380 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
5381 (Vhourglass_delay): Declare extern.
5382 (hourglass_started): Remove.
5383
5384 * xdisp.c (Vhourglass_delay): Remove static.
5385 (hourglass_started, start_hourglass, cancel_hourglass):
5386 Don't include these versions on WINDOWSNT.
5387
5388 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
5389
5390 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
5391 variables (formerly in xfns.c).
5392 (show_hourglass, hide_hourglass): New prototypes (same).
5393 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
5394 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
5395 in xfns.c).
5396 (syms_of_xdisp): Declare/initialize display-hourglass,
5397 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
5398 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
5399 formerly in xfns.c.
5400 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
5401 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
5402 (start_hourglass, cancel_hourglass): Remove.
5403 (show_hourglass, hide_hourglass): Remove prototypes and static
5404 modifiers.
5405 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
5406 hourglass_atimer, hourglass_shown_p declaration/initialization.
5407 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
5408 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
5409 (start_hourglass, cancel_hourglass): Remove.
5410 (show_hourglass, hide_hourglass): Remove prototypes and static
5411 modifiers.
5412 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
5413 hourglass_atimer, hourglass_shown_p declaration/initialization.
5414 * w32fns.c (display_hourglass_p, Vhourglass_delay)
5415 (DEFAULT_HOURGLASS_DELAY): Remove.
5416 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
5417 hourglass_shown_p declaration/initialization.
5418
5419 2008-07-14 Jason Rumney <jasonr@gnu.org>
5420
5421 * w32fns.c (w32_get_arg): Remove wrapper function.
5422 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
5423 directly.
5424 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
5425
5426 2008-07-14 Kenichi Handa <handa@m17n.org>
5427
5428 * xfont.c (xfont_open): Add workaround for X's bug.
5429
5430 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
5431
5432 * fontset.c: Include <stdio.h> unconditionally.
5433
5434 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
5435
5436 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
5437 for filtering.
5438
5439 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
5440
5441 * s/vms.h: Use __GNUC__ instead of _GNUC_.
5442
5443 * m/macppc.h:
5444 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
5445
5446 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
5447 (SPECIAL_EMACS_INT):
5448 * m/ia64.h (SPECIAL_EMACS_INT):
5449 * m/amdx86-64.h (SPECIAL_EMACS_INT):
5450 * s/gnu.h (NLIST_STRUCT):
5451 * s/aix4-2.h (X11R5_INHIBIT_I18N):
5452 * s/gnu-linux.h (LINUX):
5453 * s/msdos.h (HAVE_FACES):
5454 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
5455
5456 * systty.h:
5457 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
5458 anymore.
5459
5460 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
5461
5462 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
5463 always defined as int.
5464
5465 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
5466 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
5467 * s/gnu-linux.h (HAVE_WAIT_HEADER):
5468 * s/freebsd.h (HAVE_WAIT_HEADER):
5469 * s/bsd-common.h (HAVE_UNION_WAIT):
5470 * s/aix4-2.h (HAVE_WAIT_HEADER):
5471 * m/mips.h (HAVE_UNION_WAIT):
5472 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
5473 (COFF, static): Do not define, they are undefined later in the file.
5474
5475 * process.c (update_status): Don't use a union.
5476 (status_convert):
5477 (sigchld_handler): Use int instead of WAITTYPE.
5478
5479 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
5480
5481 * indent.c (Fvertical_motion): Restore hscroll before moving to
5482 goal column.
5483
5484 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
5485
5486 * lisp.h: Remove left over code.
5487
5488 2008-07-11 Andreas Schwab <schwab@suse.de>
5489
5490 * lisp.h: Fix logic in last change.
5491
5492 * menu.h: New file.
5493 * menu.c: Include it.
5494 * xmenu.c: Likewise.
5495 * Makefile.in: Update dependencies.
5496
5497 2008-07-11 Kenichi Handa <handa@m17n.org>
5498
5499 * fontset.c (fontset_from_font): Cancel the previous change.
5500
5501 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
5502
5503 * lisp.h:
5504 * w32heap.c:
5505 * emacs.c:
5506 * alloc.c: Replace all references of NO_UNION_TYPE with
5507 USE_LISP_UNION_TYPE.
5508
5509 * m/xtensa.h (NO_UNION_TYPE):
5510 * m/vax.h (NO_UNION_TYPE):
5511 * m/template.h (NO_UNION_TYPE):
5512 * m/sparc.h (NO_UNION_TYPE):
5513 * m/mips.h (NO_UNION_TYPE):
5514 * m/macppc.h (NO_UNION_TYPE):
5515 * m/m68k.h (NO_UNION_TYPE):
5516 * m/iris4d.h (NO_UNION_TYPE):
5517 * m/intel386.h (NO_UNION_TYPE):
5518 * m/ibms390x.h (NO_UNION_TYPE):
5519 * m/ibms390.h (NO_UNION_TYPE):
5520 * m/ibmrs6000.h (NO_UNION_TYPE):
5521 * m/ia64.h (NO_UNION_TYPE):
5522 * m/hp800.h (NO_UNION_TYPE):
5523 * m/arm.h (NO_UNION_TYPE):
5524 * m/amdx86-64.h (NO_UNION_TYPE):
5525 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
5526 defining it the same.
5527
5528 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
5529
5530 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
5531
5532 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
5533
5534 * fileio.c:
5535 * sysdep.c
5536 * systty.h:
5537 * m/ibmrs6000.h:
5538 * m/iris4d.h:
5539 * s/aix4-2.h:
5540 * s/freebsd.h:
5541 * s/gnu-linux.h:
5542 * s/hpux10-20.h:
5543 * s/hpux11.h:
5544 * s/netbsd.h:
5545 * s/sol2-3.h:
5546 * s/sol2-4.h:
5547 * s/sol2.h:
5548 * s/usg5-4.h:
5549 * s/vms.h: Remove references to unused variables.
5550
5551 2008-07-10 Andreas Schwab <schwab@suse.de>
5552
5553 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
5554 pattern before matching the generic family.
5555
5556 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
5557
5558 * unexec.c:
5559 * s/vms.h:
5560 * s/usg5-4-2.h:
5561 * s/sol2-5.h:
5562 * s/freebsd.h:
5563 * s/darwin.h: Remove dead code.
5564
5565 * m/template.h:
5566 * m/sparc.h:
5567 * m/mips.h:
5568 * m/m68k.h:
5569 * m/iris4d.h:
5570 * m/intel386.h:
5571 * m/ibms390x.h:
5572 * m/ibms390.h:
5573 * m/ia64.h:
5574 * m/hp800.h:
5575 * m/arm.h:
5576 * m/amdx86-64.h: Remove dead code and references to unused
5577 and compiler defined symbols.
5578
5579 * unexmips.c:
5580 * unexelf.c: Remove references to desupported systems.
5581
5582 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
5583
5584 * m/powermac.h: Remove boilerplate comments.
5585 (NO_REMAP): Remove unused definition.
5586
5587 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
5588 define them.
5589
5590 2008-07-10 Kenichi Handa <handa@m17n.org>
5591
5592 * xfont.c (xfont_open): Log the reason of failure.
5593
5594 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
5595
5596 * fontset.c (fontset_get_font_group):
5597 * font.c (font_check_otf): Specify argument types.
5598
5599 2008-07-09 Kenichi Handa <handa@m17n.org>
5600
5601 * coding.c (detect_coding_utf_8): Set detect_info->found only when
5602 non-ASCII char is found.
5603
5604 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
5605 (reorder_font_vector): Change the arg preferred_family to font.
5606 Prefer the spec matching with font.
5607 (fontset_get_font_group): New function.
5608 (fontset_find_font): Change the format of an element of a realized
5609 fontset. Use fontset_get_font_group.
5610 (fontset_font): Try the current fontset, the default fontset, the
5611 fallbacks of the current fontset, and the fallbacks of the default
5612 fontset in this order.
5613 (face_for_char): Delete the shortcut to use the current font.
5614 (fontset_from_font): Don't set fonts for Latin in the fontset.
5615
5616 * font.h (font_make_object, font_match_p): Adjust prototypes.
5617
5618 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
5619
5620 * font.c (font_make_object): New arg entity and pixelsize.
5621 (font_check_otf_features, font_check_otf): New functions.
5622 (font_match_p): Check :lang, :script, and :otf properties.
5623
5624 * xfont.c (xfont_open): Adjust it for the change of
5625 font_make_object.
5626 (xfont_text_extents): Fix initial setting of metrics.
5627
5628 * ftfont.c (struct ftfont_info): New member index, delete member
5629 fc_charset_idx. Make the member order compatible with struct
5630 xftfont_info.
5631 (fc_charset_table): Change charset names to registry names.
5632 (ftfont_pattern_entity): Delete the args registry and
5633 fc_charset_idx. Change the value of :font-entity property
5634 to (FONTNAME . INDEX). Always set :registry property to
5635 `iso10646-1'.
5636 (struct ftfont_cache_data): New struct.
5637 (ftfont_lookup_cache): New arg for_face.
5638 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
5639 (ftfont_driver): Set the member otf_capability.
5640 (ftfont_get_charset): Adjust it for the change of
5641 fc_charset_table.
5642 (OTF_TAG_SYM): New macro.
5643 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
5644 for the change of fc_charset_table.
5645 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
5646 ftfont_pattern_entity. Add FC_INDEX to objset.
5647 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
5648 and ftfont_pattern_entity.
5649 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
5650 font_make_object, struct ftfont_info.
5651 (ftfont_has_char): Use ftfont_get_fc_charset.
5652 (ftfont_otf_features, ftfont_otf_capability): New functions.
5653 (ftfont_shape): Use ftfont_get_otf.
5654 (ftfont_text_extents): Fix initial setting of metrics.
5655
5656 * xftfont.c (struct xftfont_info): New member ft_size. Make the
5657 member order compatible with struct ftfont_info.
5658 (xftfont_open): Add FC_CHARSET to the pattern. Set
5659 xftfont_info->ft_size. Don't unlock the face. Check BDF
5660 properties if appropriate.
5661 (xftfont_close): Unlock the face.
5662 (xftfont_anchor_point, xftfont_shape): Deleted.
5663 (syms_of_xftfont): Don't set members anchor_point and shape of
5664 xftfont_driver.
5665
5666 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
5667 font_make_object.
5668
5669 * w32font.c (w32font_open): Adjust it for the change of
5670 font_make_object.
5671 (w32font_open_internal): Don't set properties of font_object here.
5672
5673 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
5674
5675 * macfns.c (x_create_tip_frame):
5676 * w32fns.c (x_create_tip_frame):
5677 * xfns.c (x_create_tip_frame): Pass parameter argument to
5678 face-set-after-frame-default.
5679
5680 * xfaces.c (Finternal_merge_in_global_face): Save merged
5681 attributes for the default face back into the face vector.
5682
5683 2008-07-08 Andreas Schwab <schwab@suse.de>
5684
5685 * fontset.h: Declare fontset_from_font. Don't declare
5686 new_fontset_from_font and fontset_from_font_name.
5687 * xterm.c: Include "fontset.h".
5688 * Makefile.in (xterm.o): Update dependencies.
5689
5690 2008-07-08 Glenn Morris <rgm@gnu.org>
5691
5692 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
5693 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
5694
5695 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
5696
5697 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
5698 (x_set_frame_parameters): Don't bind it.
5699
5700 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
5701
5702 * w32fns.c (map_w32_filename): Declare extern.
5703
5704 2008-07-07 Jason Rumney <jasonr@gnu.org>
5705
5706 * w32term.c (WS_EX_LAYERED): Define if not already.
5707
5708 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
5709
5710 * xfaces.c (set_font_frame_param): Don't try to set the font
5711 parameter if it is still unspecified in the lface.
5712
5713 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
5714
5715 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
5716 face if it didn't already exist.
5717
5718 * xdisp.c (try_window_id): Give up if word-wrapping is on.
5719
5720 2008-07-05 Andreas Schwab <schwab@suse.de>
5721
5722 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
5723
5724 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
5725
5726 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
5727 word-wrapping.
5728 (IT_DISPLAYING_WHITESPACE): New macro.
5729 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
5730 when word-wrapping. Simplify word-wrapping logic. Use correct
5731 pixel positions when saving copies of the iterator.
5732 (display_line): Use proper wrap point if the last character on a
5733 line was preceded by whitespace.
5734
5735 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5736
5737 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
5738
5739 2008-07-04 Kenichi Handa <handa@m17n.org>
5740
5741 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
5742
5743 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
5744
5745 2008-07-02 Jason Rumney <jasonr@gnu.org>
5746
5747 * xfns.c (syms_of_xfns): Only define x-select-font when both
5748 HAVE_FREETYPE and USE_GTK.
5749
5750 * xdisp.c (next_element_from_display_vector): Move assignment out
5751 of if statement.
5752
5753 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
5754
5755 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
5756
5757 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
5758 (syms_of_fileio): Initialize and export them.
5759 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
5760
5761 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
5762 (Fsystem_move_file_to_trash): New function.
5763 (syms_of_w32fns): Export it to lisp.
5764
5765 2008-07-01 Jason Rumney <jasonr@gnu.org>
5766
5767 * w32font.c (w32font_text_extents): Don't count overhang as part
5768 of width.
5769
5770 2008-06-30 Miles Bader <miles@gnu.org>
5771
5772 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
5773 Add `avoid_cursor_p' field.
5774
5775 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
5776 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
5777 (append_glyph, append_composite_glyph, produce_image_glyph)
5778 (append_stretch_glyph): Initialize avoid_cursor_p.
5779 (get_it_property): Rename from `get_line_height_property'.
5780 (x_produce_glyphs): Use get_it_property.
5781 (handle_line_prefix, push_display_prop): New functions.
5782 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
5783 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
5784 New variables.
5785 (syms_of_xdisp): Initialize them.
5786
5787 2008-06-30 Kenichi Handa <handa@m17n.org>
5788
5789 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
5790 XftDefaultSubstitute (they are called in XftFontMatch).
5791 (xftfont_open): Fix args to ftfont_font_format.
5792
5793 * ftfont.c (fc_charset_table): New member lang.
5794 (ftfont_resolve_generic_family): New arg pattern.
5795 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
5796 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
5797 (ftfont_open): Fix args to ftfont_font_format.
5798 (ftfont_font_format): New arg filename.
5799
5800 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
5801
5802 * xfaces.c (Finternal_merge_in_global_face): If default face was
5803 modified, realize it again. Update the font face attribute.
5804
5805 2008-06-29 Jason Rumney <jasonr@gnu.org>
5806
5807 * w32term.c (x_set_frame_alpha): Fix logic.
5808
5809 2008-06-29 Kenichi Handa <handa@m17n.org>
5810
5811 * fontset.c (Finternal_char_font): Return font-object instead of
5812 font-name.
5813
5814 * composite.c (get_composition_id): Fix the width calculation for TAB.
5815
5816 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
5817
5818 * indent.c (Fvertical_motion): Properly handle float column arg.
5819
5820 2008-06-28 Jason Rumney <jasonr@gnu.org>
5821
5822 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
5823 (pfnSetLayeredWindowAttributes): New function pointer.
5824 (w32_initialize): Initialize it when supported.
5825 (x_set_frame_alpha): New function.
5826
5827 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
5828 (w32_frame_parm_handlers): Set alpha handler.
5829
5830 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
5831
5832 2008-06-27 Jason Rumney <jasonr@gnu.org>
5833
5834 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
5835 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
5836 (w32_to_x_charset, x_to_w32_charset)
5837 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
5838 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
5839 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
5840 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
5841 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
5842 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
5843 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
5844 (Qw32_charset_unicode): Remove.
5845 (syms_of_w32fns): Update for above changes.
5846
5847 * w32font.c (w32_to_x_charset, x_to_w32_charset)
5848 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
5849 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
5850 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
5851 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
5852 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
5853 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
5854 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
5855 (syms_of_w32font): Update for above changes.
5856
5857 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
5858
5859 * s/usg5-4.h: Fix previous change: keep the correct branch of a
5860 removed #if.
5861 (USG_SHARED_LIBRARIES): Remove duplicate definition.
5862
5863 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
5864 Eli Zaretskii <eliz@gnu.org>
5865
5866 * makefile.w32-in (LOCAL_FLAGS):
5867 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
5868
5869 * sysdep.c (_spawnlp, _getpid):
5870 Declare with explicit _cdecl instead of _CRTAPI1.
5871
5872 * editfns.c (Fget_internal_run_time):
5873 Check for WINDOWSNT with #ifdef, not #if.
5874
5875 2008-06-26 Jason Rumney <jasonr@gnu.org>
5876
5877 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
5878
5879 * w32term.c (x_draw_glyph_string_foreground)
5880 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
5881 Use FONT_HANDLE macro.
5882 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
5883
5884 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
5885 (uniscribe_encode_char): Use FONT_HANDLE macro.
5886
5887 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
5888 (w32font_text_extents): Use precast w32_font.
5889 (w32font_close): Free cached metrics.
5890 (w32font_open_internal): Allocate space for name on stack.
5891
5892 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
5893
5894 * xdisp.c (extend_face_to_end_of_line): Fix last change.
5895
5896 2008-06-26 Jason Rumney <jasonr@gnu.org>
5897
5898 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
5899 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
5900
5901 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
5902
5903 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
5904
5905 2008-06-26 Jason Rumney <jasonr@gnu.org>
5906
5907 * w32bdf.c, w32bdf.h: Remove obsolete files.
5908
5909 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
5910
5911 * w32gui.h: Don't include w32bdf.h.
5912 (XCharStruct, enum w32_char_font_type, W32FontStruct):
5913 Remove obsolete font support.
5914
5915 * w32font.h (struct w32font_info): Remove compat_w32_font.
5916 Add hfont member.
5917 (FONT_COMPAT): Remove obsolete macro.
5918
5919 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
5920 (w32font_encode_char, w32font_text_extents): Use new hfont member.
5921 (w32font_open_internal): Remove compat code. Set new hfont member.
5922 (Fx_select_font): Use new hfont member.
5923
5924 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
5925 (uniscribe_encode_char): Use new hfont member.
5926
5927 * w32term.c (x_draw_glyph_string_foreground)
5928 (x_draw_composite_glyph_string_foreground): Use new hfont member.
5929 (x_draw_glyph_string): Use metrics in w32font_info.
5930
5931 2008-06-26 Kenichi Handa <handa@m17n.org>
5932
5933 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
5934
5935 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
5936
5937 * unexnext.c:
5938 * m/ews4800.h:
5939 * m/hp9000s300.h:
5940 * m/ibm370aix.h:
5941 * m/mips-siemens.h:
5942 * m/ncr386.h:
5943 * m/next.h:
5944 * m/pmax.h:
5945 * m/powerpcle.h:
5946 * m/tandem-s2.h:
5947 * s/386bsd.h:
5948 * s/bsd386.h:
5949 * s/bsd4-1.h:
5950 * s/bsd4-2.h:
5951 * s/bsdos2-1.h:
5952 * s/bsdos2.h:
5953 * s/bsdos3.h:
5954 * s/bsdos4.h:
5955 * s/nextstep.h:
5956 * s/ultrix4-3.h:
5957 * s/usg5-0.h:
5958 * s/usg5-2-2.h:
5959 * s/usg5-2.h:
5960 * s/usg5-4-3.h:
5961 * s/ux4800.h:
5962 * s/uxpds.h:
5963 * s/uxpv.h: Remove support for obsolete systems.
5964 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
5965 Remove, insert contents in s/hpux10-20.h.
5966 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
5967 Remove, insert contents in s/aix4-2.h.
5968 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
5969 * s/bsd4-3.h: Rename to ...
5970 * s/bsd-common.h: ... this.
5971 * data.c:
5972 * doc.c:
5973 * ecrt0.c:
5974 * emacs.c:
5975 * fileio.c:
5976 * floatfns.c:
5977 * keyboard.c:
5978 * mem-limits.h:
5979 * print.c:
5980 * process.c:
5981 * sysdep.c:
5982 * syssignal.h:
5983 * systty.h:
5984 * syswait.h:
5985 * term.c:
5986 * unexec.c:
5987 * unexelf.c:
5988 * unexhp9k800.c:
5989 * m/hp800.h:
5990 * m/ibmrs6000.h:
5991 * m/mips.h:
5992 * m/vax.h:
5993 * s/darwin.h:
5994 * s/freebsd.h:
5995 * s/gnu.h:
5996 * s/ms-w32.h:
5997 * s/msdos.h:
5998 * s/netbsd.h:
5999 * s/template.h: Remove references to obsolete variables.
6000
6001 * Makefile.in: Add dependencies for all unexec files.
6002 (admindir): Remove unused variable.
6003 (UNEXEC_SRC): Remove references.
6004
6005 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
6006
6007 * xfns.c (x_default_font_parameter): If Xft is available, first
6008 try Monospace-12 for the default font.
6009
6010 2008-06-25 Jason Rumney <jasonr@gnu.org>
6011
6012 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
6013
6014 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
6015
6016 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
6017
6018 * buffer.c (syms_of_buffer): Remove default-word-wrap.
6019
6020 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
6021
6022 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
6023 <scroll-conservatively>: Fix typo in docstring.
6024
6025 * xselect.c (Fx_send_client_event): Doc fix.
6026
6027 2008-06-25 Kenichi Handa <handa@m17n.org>
6028
6029 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
6030
6031 * font.c (font_parse_fcname): Remove unused variables.
6032 (font_sort_entites): Delete the arg SPEC. Caller changed.
6033 Fix for the case of ! best_only.
6034 (font_delete_unmatched): Check DPI and AVGWIDTH too.
6035
6036 * lisp.h (Fstring_to_unibyte): EXFUN it.
6037
6038 * character.h (str_to_unibyte): Extern it.
6039
6040 * character.c (str_to_unibyte): New function.
6041
6042 * fns.c (Fstring_to_unibyte): New function.
6043 (syms_of_fns): Defsubr it.
6044
6045 2008-06-24 Kenichi Handa <handa@m17n.org>
6046
6047 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
6048 DPI too.
6049 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
6050
6051 2008-06-24 Andreas Schwab <schwab@suse.de>
6052
6053 * Makefile.in (${lispsource}loaddefs.el): Rename from
6054 ../lisp/loaddefs.el.
6055 (bootstrap-clean): Do what distclean does but don't remove
6056 Makefile.
6057 (distclean): Depend on bootstrap-clean and remove Makefile.
6058
6059 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
6060
6061 * buffer.h (struct buffer): New member word_wrap.
6062
6063 * buffer.c (syms_of_buffer): New variables default-word-wrap and
6064 word-wrap.
6065 (init_buffer_once): Initialize them.
6066
6067 * dispextern.h (struct it): Replace bool truncate_lines_p with a
6068 line_wrap enum possessing three possible values.
6069
6070 * termopts.h: Replace truncate_partial_width_windows with
6071 Vtruncate_partial_width_windows.
6072
6073 * dispnew.c (direct_output_for_insert): Avoid direct output when
6074 inserting a space with word wrap on.
6075
6076 * indent.c (compute_motion): Obey integer values of
6077 truncate-partial-width-windows.
6078
6079 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
6080 replacing truncate_partial_width_windows.
6081 (init_iterator): If Vtruncate_partial_width_windows is an integer,
6082 truncate only if the window width is below that integer.
6083 (start_display, resize_mini_window, produce_stretch_glyph)
6084 (display_string, move_it_in_display_line_to): Use line_wrap.
6085 (back_to_previous_visible_line_start, reseat_1): Reset
6086 string_from_display_prop_p.
6087 (display_line): Extend default face to end of line when wrapping.
6088
6089 2008-06-24 Kim F. Storm <storm@cua.dk>
6090
6091 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
6092 to wrap continued lines at word boundaries.
6093
6094 2008-06-24 Jason Rumney <jasonr@gnu.org>
6095
6096 * font.c (Ffont_face_attributes): Multiply pixel size before point
6097 conversion to avoid multiplying rounding error.
6098
6099 2008-06-23 Jason Rumney <jasonr@gnu.org>
6100
6101 * w32term.c (x_draw_glyph_string_background)
6102 (x_draw_glyph_string): Remove old bdf font code.
6103
6104 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
6105
6106 2008-06-22 Kenichi Handa <handa@m17n.org>
6107
6108 * font.c (font_find_for_lface): Try the adstyle specified in
6109 the property of LFACE_FONT of LFACE (if any).
6110
6111 2008-06-21 Seiji Zenitani <zenitani@mac.com>
6112 Ryo Yoshitake <ryo@shiftmode.net>
6113
6114 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
6115
6116 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
6117
6118 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
6119 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
6120 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
6121 (witness-emacs): Remove.
6122 (lisp, shortlisp): Move loaddefs.el earlier.
6123 (mostlyclean): Forget about witness-emacs.
6124
6125 2008-06-22 Glenn Morris <rgm@gnu.org>
6126
6127 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
6128 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
6129
6130 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6131
6132 * Makefile.in (PRECOMP): Remove.
6133 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
6134 (witness-emacs): Run `compile-first'.
6135 (.el.elc): Use the new compile-onefile target.
6136
6137 2008-06-21 Kenichi Handa <handa@m17n.org>
6138
6139 * xftfont.c (xftfont_open): Handle QCembolden only when
6140 FC_EMBOLDEN is defined.
6141
6142 2008-06-21 Andreas Schwab <schwab@suse.de>
6143
6144 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
6145 (.el.elc): Likewise.
6146
6147 2008-06-21 Miles Bader <miles@gnu.org>
6148
6149 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
6150 build dir, not the lisp source dir.
6151
6152 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
6153
6154 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
6155 (bootstrapclean): Remove.
6156 (.el.elc): New rule.
6157 (PRECOMP): New var.
6158 (../lisp/subdirs.el): Remove.
6159 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
6160 (witness-emacs): New target.
6161 (mostlyclean): Remove witness-emacs as well.
6162 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
6163 Add witness-emacs dependency.
6164
6165 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
6166
6167 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
6168 defined by the font.
6169
6170 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
6171
6172 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
6173 (bootstrap-clean): New target that keeps TAGS around.
6174 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
6175 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
6176
6177 2008-06-20 Jason Rumney <jasonr@gnu.org>
6178
6179 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
6180 Remove obsolete font code.
6181
6182 * w32font.c (font_matches_spec): Use csb bitfield from font signature
6183 to determine language support.
6184
6185 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
6186
6187 * sysdep.c (cfsetspeed): New fun extracted from the code.
6188 (cfmakeraw): Move before first use.
6189
6190 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
6191
6192 * sysdep.c (cfmakeraw): Provide fallback implementation.
6193 (serial_configure): Provide fallback implementation of cfsetspeed.
6194
6195 2008-06-20 Kenichi Handa <handa@m17n.org>
6196
6197 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
6198 the pattern.
6199
6200 * fontset.c (fontset_from_font): Copy font_spec before changing
6201 the elements.
6202
6203 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
6204
6205 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
6206
6207 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
6208 for explicit `font' parameters.
6209
6210 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
6211
6212 2008-06-19 Kenichi Handa <handa@m17n.org>
6213
6214 * frame.c: Include <ctype.h>.
6215 (x_set_font_backend): Allow spacing characters in the X resource
6216 for FontBackend.
6217
6218 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
6219
6220 * w32fns.c, xfns.c (Qfont_param): New var.
6221 (syms_of_w32fns): Initialize it.
6222 (x_default_font_parameter): Record explicit `font' into
6223 `font-parameter'.
6224
6225 2008-06-18 Kenichi Handa <handa@m17n.org>
6226
6227 * font.c (font_parse_xlfd): Fix previous change.
6228 (font_parse_fcname): Don't use :fc-unknown-spec.
6229 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
6230 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
6231 (font_add_log): Prepend the driver name to the resulting fonts.
6232
6233 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
6234 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
6235 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
6236
6237 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
6238 (QCembolden): New variables.
6239 (syms_of_xftfont): DEFSYM them.
6240 (xftfont_open): Call XftFontMatch. Don't trust the result of
6241 XftTextExtents8 if the pixel_size is less than 5.
6242
6243 2008-06-18 Andreas Schwab <schwab@suse.de>
6244
6245 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
6246 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
6247
6248 2008-06-18 Jason Rumney <jasonr@gnu.org>
6249
6250 * w32font.c (w32font_list, w32font_match): Add logging.
6251
6252 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
6253
6254 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
6255
6256 * font.c (font_parse_fcname): Store divider characters for
6257 unknown-spec list. For known key symbols, intern using correct
6258 symbol name.
6259
6260 2008-06-17 Kenichi Handa <handa@m17n.org>
6261
6262 * xfaces.c (realize_default_face): If the frame is not on window
6263 system, set the fontset of face to nil.
6264
6265 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
6266
6267 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
6268
6269 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
6270
6271 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
6272 (build_font_name_from_vector): Delete externs.
6273
6274 * xfaces.c (struct font_name): Don't declare.
6275
6276 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
6277
6278 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
6279
6280 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
6281
6282 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
6283
6284 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
6285
6286 * font.c (Ffont_spec): Fix usage in docstring.
6287 (Ffont_face_attributes): Doc fix.
6288
6289 2008-06-16 Andreas Schwab <schwab@suse.de>
6290
6291 * font.c (Ffont_face_attributes): Fix definition.
6292
6293 2008-06-16 Jason Rumney <jasonr@gnu.org>
6294
6295 * font.h (font_style_symbolic_from_value): Remove.
6296
6297 * font.c (font_style_symbolic_from_value): Remove.
6298 (font_style_symbolic): Revert to pre 2008-06-13 version.
6299
6300 * w32font.c (w32_to_fc_weight): New function.
6301 (w32font_full_name, logfont_to_fcname): Use it.
6302
6303 2008-06-16 Kenichi Handa <handa@m17n.org>
6304
6305 * font.c (font_check_object): Delete it.
6306 (font_clear_cache): Check if a font-object is alive.
6307 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
6308 font-object to nil.
6309 (font_close_object): Don't check FONT_CLOSE_OBJECT.
6310 (font_at): Don't call font_check_object.
6311 (Ffont_get): Return a symbol for :weight, :slant, and :width.
6312
6313 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
6314
6315 * puresize.h (BASE_PURESIZE): Increase to 1230000.
6316
6317 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
6318
6319 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
6320
6321 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
6322
6323 * font.c (font_parse_fcname): Only one decimal point.
6324 (font_unparse_fcname): Handle data in family and foundry indices
6325 as symbols, not strings.
6326 (font_unparse_gtkname, Ffont_face_attributes): New functions.
6327
6328 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
6329
6330 * font.h (font_unparse_gtkname): Add prototype.
6331
6332 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
6333
6334 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
6335
6336 2008-06-15 Andreas Schwab <schwab@suse.de>
6337
6338 * font.c (font_update_drivers): Fix crash when no drivers match.
6339
6340 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
6341
6342 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
6343 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
6344
6345 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
6346
6347 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
6348
6349 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
6350
6351 * process.c (Fserial_process_configure, Fprocess_send_eof):
6352 Use EQ to compare Lisp_Objects.
6353
6354 2008-06-13 Jason Rumney <jasonr@gnu.org>
6355
6356 * w32fns.c (Fw32_select_font): Remove old font API function.
6357
6358 * w32font.c (logfont_to_fcname): New function.
6359 (Fx_select_font): New font dialog function compatible with
6360 GTK/fontconfig version.
6361
6362 * font.c (font_style_symbolic_from_value): New function.
6363 (font_style_symbolic): Use it.
6364
6365 * font.h (font_style_symbolic_from_value): Declare new function.
6366
6367 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
6368
6369 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
6370 <font-width-table>: Fix typos in docstrings.
6371
6372 2008-06-13 Daniel Engeler <engeler@gmail.com>
6373
6374 These changes add serial port access.
6375 * process.c: Add HAVE_SERIAL.
6376 (Fdelete_process, Fprocess_status, Fset_process_buffer)
6377 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
6378 (list_processes_1, select_wrapper, Fstop_process)
6379 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
6380 (status_notify): Modify to handle serial processes.
6381 [HAVE_SERIAL] (Fserial_process_configure)
6382 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
6383 New functions.
6384 * process.h (struct Lisp_Process): Add `type'.
6385 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
6386 New functions.
6387 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
6388 serial ports.
6389 (serial_open, serial_configure): New functions.
6390 * w32.h: Add FILE_SERIAL.
6391 (struct _child_process): Add ovl_read, ovl_write.
6392
6393 2008-06-13 Kenichi Handa <handa@m17n.org>
6394
6395 * dispextern.h (enum lface_attribute_index): New member
6396 LFACE_FOUNDRY_INDEX.
6397
6398 * font.c (font_score): Delete arg alternate_families. Check only
6399 weight, slant, width, and size. Ignore the difference of alias
6400 style symbols.
6401 (font_sort_entites): Adjust for the above change. Reflect the
6402 order of font-driver to scores.
6403 (font_list_entities): Don't check alternate_familes here.
6404 (font_clear_prop): Handle foundry.
6405 (font_update_lface): Don't parse "foundry-family" form here.
6406 Handle FONT_FOUNDRY_INDEX.
6407 (font_find_for_lface): Likewise. Handle alternate families here.
6408 If registry is nil, try iso8859-1 and ascii-0.
6409 (font_open_for_lface): Pay attention to size in ENTITY.
6410 (font_open_by_name): Simplify by calling font_load_for_lface.
6411 (free_font_driver_list): Delete it.
6412 (font_update_drivers): Preserve the order of backends.
6413 (syms_of_font): Setting of sort_shift_bits adjusted for the change
6414 of font_score and font_sort_entites.
6415 (font_update_sort_order): Likewise.
6416
6417 * xfaces.c (LFACE_FOUNDRY): New macro.
6418 (check_lface_attrs): Check foundry.
6419 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
6420 (merge_face_vectors): Check foundry.
6421 (merge_face_ref): Likewise.
6422 (Finternal_set_lisp_face_attribute): Likewise.
6423 (x_update_menu_appearance): Likewise.
6424 (Finternal_get_lisp_face_attribute): Likewise.
6425 (lface_hash): Likewise.
6426 (lface_same_font_attributes_p): Likewise.
6427 (x_supports_face_attributes_p): Likewise.
6428 (tty_supports_face_attributes_p): Likewise.
6429 (Finternal_set_alternative_font_family_alist): Intern strings.
6430 (Finternal_set_alternative_font_registry_alist): Downcase strings.
6431 (realize_default_face): Set LFACE_FOUNDRY (lface).
6432
6433 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
6434 font-driver at first.
6435
6436 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
6437
6438 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
6439
6440 * lread.c (Fload): Use xfree, not free on saved_doc_string.
6441
6442 2008-06-12 Jim Meyering <meyering@redhat.com>
6443
6444 Make unexec_free handle NULL the same way free does.
6445 * unexmacosx.c (unexec_free): Ignore a NULL argument.
6446
6447 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
6448
6449 * character.h (CHAR_TO_BYTE_SAFE): New macro.
6450 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
6451 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
6452 (WEAK_ALIAS): Simplify.
6453 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
6454 when searching a unibyte buffer.
6455
6456 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
6457
6458 * xfns.c (Fx_select_font): Rename from x-font-dialog.
6459
6460 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
6461
6462 * w32font.c: Include ctype.h.
6463
6464 2008-06-11 Jason Rumney <jasonr@gnu.org>
6465
6466 * w32font.c (w32font_encode_char): Detect missing glyphs that are
6467 misreported as space.
6468 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
6469 as aliases for registry iso10646-1.
6470
6471 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6472
6473 * buffer.c (clone_per_buffer_values): Skip `name'.
6474
6475 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
6476
6477 * font.c (font_parse_fcname): Fix last change; accept decimal
6478 points in font size.
6479
6480 2008-06-10 Jason Rumney <jasonr@gnu.org>
6481
6482 * w32uniscribe.c (add_opentype_font_name_to_list):
6483 Skip non unicode fonts.
6484
6485 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
6486
6487 * xfns.c (Fx_font_dialog): New function.
6488
6489 * gtkutil.c (xg_dialog_response_cb): Rename from
6490 xg_file_response_callback.
6491 (pop_down_dialog): Rename from pop_down_file_dialog.
6492 (xg_get_file_name): Callers changed.
6493 (xg_get_font_name): New function.
6494
6495 * gtkutil.h (xg_get_font_name): Insert prototype.
6496
6497 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6498
6499 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
6500 x_underline_minimum_display_offset.
6501 (syms_of_xdisp): Declare it here rather than in xterm.c.
6502 * dispextern.h (underline_minimum_offset): Declare it.
6503 * w32term.c (x_draw_glyph_string): Use it.
6504 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
6505 (syms_of_xterm): Don't declare it any more.
6506 (x_draw_glyph_string): Adjust to the new name.
6507
6508 2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
6509
6510 * xterm.c (x_underline_minimum_display_offset): New var.
6511 (x_draw_glyph_string): Use it.
6512 (syms_of_xterm): Declare it.
6513
6514 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
6515
6516 * font.c (font_parse_fcname): Accept GTK-style font names too.
6517
6518 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
6519
6520 * dired.c (file_name_completion): Don't return t if the match is exact
6521 but with different capitalization.
6522 * minibuf.c (Ftry_completion): Simplify.
6523
6524 * window.c (Vwindow_point_insertion_type): New var.
6525 (set_window_buffer): Use it.
6526 (syms_of_window): Init and export it to Lisp.
6527
6528 2008-06-10 Kenichi Handa <handa@m17n.org>
6529
6530 * font.h (font_intern_prop): Prototype adjusted.
6531
6532 * font.c (font_intern_prop): New arg force_symbol.
6533 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
6534 Adjust for the change of font_intern_prop.
6535
6536 * ftfont.c (ftfont_pattern_entity):
6537 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
6538 (w32_registry):
6539 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
6540 the change of font_intern_prop.
6541
6542 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
6543
6544 * w32menu.c (digest_single_submenu): Declare extern.
6545
6546 2008-06-09 Jason Rumney <jasonr@gnu.org>
6547
6548 * w32term.c (x_make_frame_visible): Use alternate restore flags.
6549
6550 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
6551 (parse_single_submenu): Remove.
6552 (digest_single_submenu): Remove.
6553 (syms_of_w32menu): Don't initialise variables that have moved
6554 to menu.c.
6555 (set_frame_menubar): Sync with version in xmenu.c.
6556 (w32_menu_show): Sync with xmenu_show in xmenu.c.
6557
6558 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
6559 Make static again.
6560
6561 2008-06-09 Jason Rumney <jasonr@gnu.org>
6562
6563 Changes to w32 files related to the move of common menu code
6564 to menu.c on 2008-06-08 by Chong Yidong.
6565
6566 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
6567 defs to w32gui.h.
6568 (single_keymap_panes, push_menu_item, push_menu_pane):
6569 Make globally visible.
6570
6571 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
6572 (local_free, malloc_widget_value, free_widget_value)
6573 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
6574 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
6575 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
6576 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
6577 (menu_items, menu_items_allocated, menu_items_used)
6578 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
6579 (init_menu_items, finish_menu_items, discard_menu_items)
6580 (grow_menu_items, push_submenu_start, push_submenu_end)
6581 (push_left_right_boundary, push_menu_pane, push_menu_item)
6582 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
6583 (free_menubar_widget_tree_value, parse_single_submenu)
6584 (update_submenu_strings): Remove functions.
6585 (xmalloc_widget_value): Remove and declare extern.
6586
6587 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
6588 (OBJ1): Build it.
6589
6590 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
6591 (local_heap, local_alloc, local_free, malloc_widget_value)
6592 (free_widget_value): Define here.
6593
6594 2008-06-09 Kenichi Handa <handa@m17n.org>
6595
6596 * font.h (Qascii_0): Extern it.
6597
6598 * font.c (Qascii_0): New variable.
6599 (syms_of_font): DEFSYM it.
6600 (font_open_by_name): If the registry "iso8859-1" fails, try also
6601 "ascii-0".
6602
6603 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
6604
6605 2008-06-08 Kenichi Handa <handa@m17n.org>
6606
6607 * .gdbinit (xfont): New command.
6608
6609 2008-06-08 Andreas Schwab <schwab@suse.de>
6610
6611 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
6612 * Makefile.in (menu.o): Update dependencies.
6613
6614 * Makefile.in (obj): Always add menu.o.
6615 * emacs.c (main): Always call syms_of_menu.
6616 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
6617
6618 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
6619
6620 * Makefile.in: Compile menu.c.
6621
6622 * lisp.h: Declare syms_of_menu.
6623
6624 * emacs.c (main): Call syms_of_menu.
6625
6626 * keyboard.h: Relocate platform-independent menu definitions from
6627 xmenu.c.
6628
6629 * menu.c: New file. Relocate platform-independent menu
6630 definitions from xmenu.c. Suggested by Adrian Robert.
6631
6632 * xmenu.c: Remove platform-independent menu definitions.
6633 (menu_items menu_items_inuse, menu_items_allocated)
6634 (menu_items_used, menu_items_n_panes)
6635 (menu_items_submenu_depth): Move to keyboard.h.
6636 (init_menu_items, finish_menu_items, unuse_menu_items)
6637 (discard_menu_items, restore_menu_items, save_menu_items)
6638 (grow_menu_items, push_submenu_start, push_submenu_end)
6639 (push_left_right_boundary, push_menu_pane, push_menu_item)
6640 (keymap_panes, single_keymap_panes, single_menu_item)
6641 (list_of_panes, list_of_items, find_and_call_menu_selection)
6642 (xmalloc_widget_value, free_menubar_widget_value_tree)
6643 (parse_single_submenu, digest_single_submenu)
6644 (update_submenu_strings): Move to menu.c.
6645
6646 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
6647
6648 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
6649
6650 2008-06-06 Miles Bader <miles@gnu.org>
6651
6652 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
6653 face, not frame default.
6654
6655 2008-06-05 Martin Rudalics <rudalics@gmx.at>
6656
6657 * window.c (pop_up_windows, pop_up_frames)
6658 (display_buffer_reuse_frames, Vpop_up_frame_function)
6659 (Vdisplay_buffer_function, Veven_window_heights)
6660 (Vspecial_display_buffer_names, Vspecial_display_regexps)
6661 (Vspecial_display_function, Vsame_window_buffer_names)
6662 (Vsame_window_regexps, split_height_threshold)
6663 (Vsplit_window_preferred_function): Move those vars to window.el.
6664 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
6665 (Fdisplay_buffer): Move those functions to window.el.
6666 (syms_of_window): Remove corresponding declarations.
6667 (display_buffer): New function.
6668 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
6669 * dispnew.c (Flast_nonminibuf_frame): New function.
6670 * buffer.c (Fpop_to_buffer): Move to window.el.
6671
6672 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6673
6674 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
6675
6676 2008-06-05 Kenichi Handa <handa@m17n.org>
6677
6678 * coding.c (detect_coding): Fix previous change.
6679 (detect_coding_system): Likewise.
6680
6681 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6682
6683 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
6684
6685 * keymap.c (Vminibuffer_local_filename_must_match_map):
6686 Rename from Vminibuffer_local_must_match_filename_map.
6687 (syms_of_keymap):
6688 * minibuf.c (Fcompleting_read): Adjust accordingly.
6689 * commands.h: Rename declaration as well.
6690
6691 2008-06-05 Kenichi Handa <handa@m17n.org>
6692
6693 * font.c (Ffont_spec): Don't use font_parse_family_registry for
6694 family name.
6695 (Ffont_put): Likewise.
6696
6697 * fontset.c (fontset_find_font): Call font_open_for_lface with the
6698 current font-spec.
6699
6700 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
6701 is unspecified.
6702
6703 * xfaces.c (realize_x_face): If the font-related face attributes
6704 are the same as those of default face, realize a new fontset from
6705 default->fontset.
6706 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
6707
6708 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
6709
6710 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
6711 (move_it_in_display_line): New wrapper.
6712
6713 * window.c (window_scroll_pixel_based_preserve_x)
6714 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
6715 (window_scroll_pixel_based, window_scroll_line_based):
6716 Use them to preserve column positions.
6717 (syms_of_window): Initialize them.
6718
6719 * indent.c (Fvertical_motion): Extend first arg to allow passing an
6720 (HPOS . VPOS) pair.
6721
6722 * dispextern.h (move_it_in_display_line): Declare.
6723
6724 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
6725
6726 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
6727 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
6728 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
6729
6730 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
6731
6732 * window.c (Fset_window_parameter): Doc fix.
6733 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
6734
6735 2008-06-04 Joakim Verona <joakim@verona.se>
6736
6737 * window.h (struct window): Add new member window_parameters.
6738
6739 * window.c (Fwindow_parameters, Fwindow_parameter)
6740 (Fset_window_parameter): New defuns.
6741 (syms_of_window): Defsubr the new defuns.
6742 (make_window): Initialize window_parameters to nil.
6743
6744 2008-06-04 John Paul Wallington <jpw@pobox.com>
6745
6746 * eval.c (Fdefmacro): Doc fix.
6747
6748 2008-06-04 Kenichi Handa <handa@m17n.org>
6749
6750 * coding.c (detect_coding): Fix handling of coding->head_ascii.
6751 Be sure to call setup_coding_system when we find a proper coding system.
6752 (detect_coding_system): Fix handling of coding->head_ascii.
6753
6754 2008-06-03 Andreas Schwab <schwab@suse.de>
6755
6756 * font.c (font_prop_validate_spacing): Fix last change.
6757
6758 2008-06-03 Kenichi Handa <handa@m17n.org>
6759
6760 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
6761 (font_parse_fcname): Fix handling of unknown key.
6762
6763 * xfont.c (xfont_list): Try an alias.
6764
6765 * charset.c (char_charset): Return NULL if the arg charset_list is
6766 specified and C doesn't belong to any of them.
6767
6768 2008-06-02 Chip Coldwell <coldwell@redhat.com>
6769
6770 * font.c (font_pixel_size): Don't take cdr of an integer.
6771
6772 2008-06-02 Jim Meyering <meyering@redhat.com>
6773
6774 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
6775 * alloc.c (xfree): Return right away for a NULL arg.
6776 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
6777 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
6778 * mac.c (create_apple_event_from_event_ref): Likewise.
6779 (create_apple_event_from_drag_ref, cfstring_create_normalized):
6780 Likewise.
6781 * doprnt.c (doprnt1): Likewise.
6782 * frame.c (frame): Likewise.
6783 * keyboard.c (wipe_kboard): Likewise.
6784 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
6785 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
6786 * term.c (tty_default_color_capabilities, maybe_fatal)
6787 (delete_tty): Likewise.
6788 * w16select.c (string): Likewise.
6789 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
6790 * w32bdf.c (w32_free_bdf_font): Likewise.
6791 * w32fns.c (w32_unload_font): Likewise.
6792 * w32font.c (w32font_close): Likewise.
6793 * window.c (size_window): Likewise.
6794 * xselect.c (receive_incremental_selection): Likewise.
6795 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
6796 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
6797 * w32.c (stat): Likewise.
6798
6799 Remove useless if-before-free tests.
6800 * editfns.c (Fset_time_zone_rule): Likewise.
6801 * lread.c (nosuffix): Likewise.
6802 * ralloc.c (get_bloc): Likewise.
6803 * regex.c (reg_free): Likewise.
6804 * xftfont.c (xftfont_open, xftfont_close): Likewise.
6805 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
6806 * xsmfns.c (smc_save_yourself_CB): Likewise.
6807
6808 2008-06-02 Kenichi Handa <handa@m17n.org>
6809
6810 * font.c (font_find_for_lface): Handle float font size.
6811 (font_open_for_lface): Likewise.
6812
6813 * xfaces.c (x_supports_face_attributes_p): Check face->font before
6814 comparing the properties.
6815
6816 2008-06-01 Jason Rumney <jasonr@gnu.org>
6817
6818 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
6819 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
6820 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
6821 Don't add empty script list.
6822 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
6823
6824 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
6825
6826 * Makefile.in (dot, dotdot): Remove, update users.
6827 ".." has been used elsewhere in the file for a long time.
6828 (LIBXT_STATIC): Remove conditional based on unused variable.
6829
6830 2008-06-01 Miles Bader <miles@gnu.org>
6831
6832 * xfaces.c (Vface_remapping_alist): New variable.
6833 (syms_of_xfaces): Initialize it.
6834 (enum named_merge_point_kind): New type.
6835 (struct named_merge_point): Add `named_merge_point_kind' field.
6836 (push_named_merge_point): Make cycle detection respect different
6837 named-merge-point kinds.
6838 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
6839 Remove face-name alias resolution.
6840 (lface_from_face_name): New definition using
6841 `lface_from_face_name_no_resolve'.
6842 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
6843 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
6844 (get_lface_attributes): New definition that layers face-remapping on
6845 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
6846 (lookup_basic_face): New function.
6847 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
6848 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
6849 `get_lface_attributes'.
6850 (face_at_buffer_position): Use `lookup_basic_face' to lookup
6851 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
6852 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
6853
6854 * xdisp.c (init_iterator): Pass base_face_id through
6855 `lookup_basic_face' when we actually use it as a face-id.
6856 (handle_single_display_prop): Use `lookup_basic_face' to lookup
6857 DEFAULT_FACE_ID.
6858
6859 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
6860 lookup the initial face-id.
6861
6862 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
6863
6864 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
6865
6866 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
6867 (Fremove_text_properties): Fix typos in docstrings.
6868
6869 2008-05-31 Kenichi Handa <handa@m17n.org>
6870
6871 * font.c (font_list_entities): Fix the car part of data to be
6872 stored in the cache.
6873
6874 * ftfont.c (ftfont_font_format): Don't use strcasestr.
6875
6876 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6877
6878 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
6879 Add a `test' argument so another predicate than `equal' can be used.
6880 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
6881 (map_char_table): Remove unused vars `c' and `i'.
6882 * lisp.h (Foptimize_char_table): Adjust declaration.
6883 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
6884
6885 2008-05-30 Kenichi Handa <handa@m17n.org>
6886
6887 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
6888 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
6889 defined.
6890
6891 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6892
6893 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
6894 (Fmake_variable_frame_local): Disallow mixing buffer-local and
6895 frame-local settings for the same variable.
6896
6897 2008-05-30 Kenichi Handa <handa@m17n.org>
6898
6899 * fontset.c (Ffont_info): Move to font.c.
6900 (syms_of_fontset): Delete defsubr of Sfont_info.
6901
6902 * font.c (font_style_to_value, font_score): Delete casting of the
6903 args to xstcasecmp.
6904 (register_font_driver): Increment num_font_drivers only when
6905 registering the driver globally.
6906 (Ffont_info): Move from fontset.c. Handle a font object too.
6907 (syms_of_font): Defsubr Sfont_info.
6908
6909 2008-05-29 Kenichi Handa <handa@m17n.org>
6910
6911 * coding.h (enum define_coding_utf8_arg_index): New enum.
6912 (enum coding_attr_index): Change coding_attr_utf_16_bom to
6913 coding_attr_utf_bom.
6914 (enum utf_bom_type): Rename from utf_16_bom_type.
6915 (struct utf_16_spec): Adjust for the above change.
6916 (struct coding_system): Add utf_8_bom in `spec' union.
6917
6918 * coding.c (CODING_UTF_8_BOM): New macro.
6919 (enum coding_category): Delete coding_category_utf_8, add
6920 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
6921 coding_category_utf_8_sig.
6922 (CATEGORY_MASK_UTF_8): Delete it.
6923 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
6924 (CATEGORY_MASK_UTF_8_SIG): New macros.
6925 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
6926 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
6927 CATEGORY_MASK_UTF_8_SIG.
6928 (CATEGORY_MASK_UTF_8): New macro.
6929 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
6930 (detect_coding_utf_8): Check BOM.
6931 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
6932 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
6933 (encode_coding_utf_16): Likewise.
6934 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
6935 (detect_coding, detect_coding_system): Handle utf-8-auto.
6936 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
6937 (syms_of_coding): Fix setting up of Vcoding_category_table.
6938
6939 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
6940
6941 * process.c (Faccept_process_output): If `millisec' is non-nil,
6942 `seconds' default to 0.
6943 (wait_reading_process_output): Also return non-nil if we read output
6944 from a non-running process.
6945
6946 2008-05-29 Jason Rumney <jasonr@gnu.org>
6947
6948 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
6949 `raster' specified.
6950 (add_font_entity_to_list): Allow non-opentype truetype fonts back
6951 in the uniscribe backend, but disallow any font that has no
6952 unicode subrange support.
6953
6954 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
6955
6956 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
6957 Fix typos in docstrings.
6958
6959 2008-05-29 Kenichi Handa <handa@m17n.org>
6960
6961 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
6962 (Fx_family_fonts): Set frame correctly.
6963
6964 2008-05-28 Jason Rumney <jasonr@gnu.org>
6965
6966 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
6967
6968 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
6969
6970 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
6971 calling build_annotations.
6972
6973 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
6974
6975 * coding.c (Fdecode_coding_region, Fencode_coding_region)
6976 (Fencode_coding_string):
6977 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
6978 <latin-extra-code-table>: Fix typos in docstrings.
6979 (syms_of_coding) <coding-system-alist>: Doc fix.
6980 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
6981
6982 2008-05-28 Kenichi Handa <handa@m17n.org>
6983
6984 * fontset.c (Ffont_info): Don't call font_close_object.
6985
6986 * font.c (font_parse_family_registry): Use Ffont_put to validate
6987 foundry and family.
6988 (font_delete_unmatched): Don't check spacing.
6989 (font_list_entities): Add spacing to the spec to list fonts.
6990
6991 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
6992 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
6993
6994 * coding.c (encode_coding_raw_text): Fix previous change.
6995 (encode_coding_object): When the dst_object is a buffer and is
6996 different from src_object, move gap to PT.
6997
6998 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
6999
7000 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
7001
7002 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7003
7004 * coding.c (encode_coding_raw_text): Set coding->produced_char for
7005 all branches. Compute it differently.
7006
7007 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
7008
7009 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
7010
7011 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
7012 into "else if () ... else ...".
7013
7014 2008-05-27 Jason Rumney <jasonr@gnu.org>
7015
7016 * w32font.c (w32font_open_internal): Determine if glyph indices
7017 are likely to work here.
7018
7019 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
7020
7021 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
7022 draw overlap glyphs with appropriate highlighting.
7023
7024 2008-05-27 Kenichi Handa <handa@m17n.org>
7025
7026 * xfont.c (xfont_open): Fix calculation of font->average_width.
7027
7028 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
7029
7030 * casefiddle.c (casify_object): Try to guess better whether the
7031 argument is a byte or a char.
7032
7033 2008-05-26 Andreas Schwab <schwab@suse.de>
7034
7035 * xselect.c (x_reply_selection_request): Properly handle format == 32.
7036 Always send multiples of format size.
7037
7038 * xterm.c (x_set_frame_alpha): Fix type mismatch.
7039
7040 2008-05-26 Jason Rumney <jasonr@gnu.org>
7041
7042 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
7043 (compute_metrics): Don't set failure if we just cleared the cache.
7044 (w32_weight_table): Remove unused variable.
7045 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
7046 backwards compatibility.
7047
7048 2008-05-25 Kenichi Handa <handa@m17n.org>
7049
7050 * w32term.c (x_draw_glyph_string):
7051 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
7052
7053 * xfaces.c: Delete unused function prototypes.
7054 (xstrlwr, font_frame): Delete them.
7055 (clear_face_cache): Delete unused variable.
7056
7057 * xftfont.c (xftfont_open): Delete unused variable.
7058 If underline_thickness is not 1, adjust underline_position.
7059
7060 * ftxfont.c (ftxfont_open): Delete unused variable.
7061
7062 * fontset.c (face_for_char): Optimize for the case of no charset
7063 property.
7064
7065 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
7066 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
7067 (otf_open, font_otf_capability, generate_otf_features)
7068 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
7069 Comment out by surrounding "#if 0" and "#endif" for the moment.
7070 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
7071 (syms_of_font): Codes for accessing above commented out.
7072
7073 2008-05-24 Eli Zaretskii <eliz@gnu.org>
7074
7075 * w32proc.c: Include dispextern.h.
7076
7077 * w32.c: Include dispextern.h.
7078
7079 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
7080
7081 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
7082 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
7083 Fix typos in docstrings.
7084
7085 2008-05-23 Jason Rumney <jasonr@gnu.org>
7086
7087 * xsmfns.c: Remove includes that are already included by config.h.
7088
7089 2008-05-23 Kenichi Handa <handa@m17n.org>
7090
7091 * charset.c (Qemacs, charset_emacs): New variables.
7092 (char_charset): Fix for non-Unicode characters.
7093 (syms_of_charset): Define charset_emacs.
7094
7095 * w32term.c (x_draw_glyph_string): Be sure to update
7096 s->underline_thickness and s->underline_position. Be sure to draw
7097 underline within the current line area.
7098
7099 * xterm.c (x_draw_glyph_string): Be sure to update
7100 s->underline_thickness and s->underline_position. Be sure to draw
7101 underline within the current line area.
7102
7103 * fontset.c: Delete unused variables and add casting for char *
7104 throughout the file.
7105 (fontset_font): Try the fallback fonts of the current fontset
7106 before consulting the default fontset.
7107
7108 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
7109
7110 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
7111
7112 2008-05-22 Jason Rumney <jasonr@gnu.org>
7113
7114 * font.c: Don't include strings.h.
7115
7116 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
7117
7118 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
7119 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
7120 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
7121 to call xstrcasecmp.
7122
7123 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
7124
7125 * fontset.c (fs_query_fontset): Use xstrcasecmp.
7126
7127 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
7128
7129 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
7130
7131 2008-05-22 Kenichi Handa <handa@m17n.org>
7132
7133 * puresize.h (BASE_PURESIZE): Increase to 1220000.
7134
7135 * font.c (font_prop_validate_style): Adjust for the format
7136 change of font_style_table.
7137
7138 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
7139 two args.
7140
7141 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
7142 two args.
7143
7144 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
7145
7146 * minibuf.c (keys_of_minibuf): Delete.
7147 * lisp.h (keys_of_minibuf): Delete.
7148 * emacs.c (main): Don't call keys_of_minibuf.
7149
7150 2008-05-22 Kenichi Handa <handa@m17n.org>
7151
7152 * ftfont.c (ftfont_resolve_generic_family): Rename from
7153 ftfont_list_generic_family. Return a single family for each
7154 generic family.
7155 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
7156 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
7157 Call font_add_log.
7158 (ftfont_match): Call font_add_log.
7159
7160 * font.h (Ffont_xlfd_name): EXFUN adjusted.
7161 (FONT_DEBUG): Define it.
7162 (font_add_log): Extern it.
7163 (font_assert): Rename from xassert.
7164
7165 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
7166 (xfont_list_family): Call font_add_log.
7167 (xfont_match): Likewise.
7168 (memq_no_quit): Delete.
7169
7170 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
7171 call of Ffont_xlfd_name.
7172
7173 * xfaces.c (struct table_entry, slant_table, weight_table)
7174 (swidth_table): Move to font.c.
7175
7176 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
7177 xassert are changed to font_assert. Delete many unused variables.
7178 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
7179 New variables.
7180 (struct table_entry): Move from xfaces.c and modified.
7181 (weight_table, slant_table, width_table): Move from xfaces.c and
7182 contents adjusted for the change of struct table_entry.
7183 (font_style_to_value, font_style_symbolic): Adjust for the
7184 format change of font_style_table.
7185 (font_parse_family_registry): Don't overwrite existing foundry and
7186 family of font_spec.
7187 (font_score): Fix calculation of diff for sizes.
7188 (font_sort_entites): Call font_add_log.
7189 (font_delete_unmatched): Return a newly created list.
7190 (font_list_entities): Fix previous change. Call font_add_log.
7191 (font_matching_entity, font_open_entity, font_close_entity):
7192 Call font_add_log.
7193 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
7194 (Finternal_set_font_style_table): Delete.
7195 (BUILD_STYLE_TABLE): New macro.
7196 (build_style_table): New function.
7197 (Vfont_log, font_log_env_checked): New variables.
7198 (font_add_log): New function.
7199 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
7200 Declare Lisp variables "font-weight-table", "font-slant-table",
7201 "font-width-table", and "font-log". Initialize font_style_table.
7202
7203 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
7204
7205 * xterm.c (x_set_frame_alpha): Move declarations before statements.
7206
7207 2008-05-21 Seiji Zenitani <zenitani@mac.com>
7208 Ryo Yoshitake <ryo@shiftmode.net>
7209
7210 * frame.c (Qalpha): Add a new frame parameter `alpha'.
7211 (Vframe_alpha_lower_limit): New variable.
7212 (x_set_alpha): New function.
7213
7214 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
7215
7216 * xfns.c (x-create-frame, Qalpha):
7217 Initialize the frame parameter `alpha'.
7218 * xterm.c (OPAQUE, OPACITY): New.
7219 (x_set_frame_alpha): New function.
7220 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
7221
7222 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
7223 * w32fns.c (w32_frame_parm_handlers): Likewise.
7224
7225 2008-05-20 Jason Rumney <jasonr@gnu.org>
7226
7227 * w32font.c (add_font_entity_to_list): Don't add non-opentype
7228 truetype fonts to opentype list.
7229
7230 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
7231
7232 * fontset.c (Ffontset_info): Doc fix.
7233 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
7234 <ignore-relative-composition>: Fix typos in docstrings.
7235
7236 * font.c (syms-of-font) <font-encoding-alist>:
7237 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
7238 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
7239 (Ffont_otf_alternates): Doc fixes.
7240
7241 2008-05-20 Kenichi Handa <handa@m17n.org>
7242
7243 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
7244 font.h through out the file.
7245 (FONT_DRIVERS): Rename from FONTOBJ.
7246 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
7247 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
7248
7249 * emacs.c (main): Call syms_of_font unconditionally.
7250
7251 * font.h (find_font_encoding): Extern it.
7252
7253 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
7254 fontset.c.
7255 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
7256 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
7257 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
7258 only when HAVE_WINDOW_SYSTEM is defined.
7259 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
7260 when HAVE_WINDOW_SYSTEM is defined.
7261
7262 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
7263 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
7264
7265 * xfaces.c: Include font.h unconditionally.
7266 (merge_face_ref, merge_face_vectors)
7267 (Finternal_set_lisp_face_attribute): Cancel the previous change.
7268
7269 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
7270
7271 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
7272 indirect_variable.
7273 * eval.c (lisp_indirect_variable): New fun.
7274 (Fuser_variable_p): Use it.
7275
7276 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
7277
7278 * lisp.h (indirect_variable):
7279 * data.c (indirect_variable, let_shadows_buffer_binding_p):
7280 Use Lisp_Symbol pointers rather than Lisp_Object.
7281 Adjust callers.
7282 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
7283 To this end, change calling-convention.
7284
7285 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
7286 if some non-hidden buffers are selected by string&pred.
7287
7288 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
7289
7290 * process.c (wait_reading_process_output): Always check status
7291 when in batch mode.
7292
7293 2008-05-19 Kenichi Handa <handa@m17n.org>
7294
7295 * font.c (font_list_entities): Fix handling of cache.
7296 (font_matching_entity): Likewise.
7297
7298 * ftfont.c (cs_iso8859_1): Delete.
7299 (ft_face_cache): New variable.
7300 (struct ftfont_info): New member fc_charset_idx.
7301 (ftfont_build_basic_charsets): Delete.
7302 (fc_charset_table): New variable.
7303 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
7304 . FC_CHARSET_IDX) as :font-entity property in the font entity.
7305 Callers changed.
7306 (ftfont_lookup_cache, ftfont_get_charset): New functions.
7307 (ftfont_spec_pattern): New argument fc_charset_idx.
7308 Check registry more rigidly. Change callers.
7309 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
7310 change of :font-entity property of the font.
7311
7312 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
7313 property of the font.
7314
7315 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
7316
7317 * coding.c (Fcoding_system_p): Rename argument to match docstring.
7318 (Funencodable_char_position, Fcheck_coding_systems_region)
7319 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
7320 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
7321 (Ffind_operation_coding_system, Fset_coding_system_priority)
7322 (Fcoding_system_eol_type): Doc fixes.
7323
7324 2008-05-17 Glenn Morris <rgm@gnu.org>
7325
7326 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
7327
7328 2008-05-16 Eli Zaretskii <eliz@gnu.org>
7329
7330 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
7331 and st_gid.
7332
7333 * frame.c (Fdelete_frame): Don't call font_update_drivers if
7334 HAVE_WINDOW_SYSTEM is not defined.
7335
7336 * xfaces.c (merge_face_ref, merge_face_vectors)
7337 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
7338 HAVE_WINDOW_SYSTEM is defined.
7339 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
7340
7341 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
7342
7343 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
7344
7345 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7346
7347 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
7348
7349 2008-05-15 Kenichi Handa <handa@m17n.org>
7350
7351 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
7352 preference.
7353
7354 2008-05-15 Glenn Morris <rgm@gnu.org>
7355
7356 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
7357
7358 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
7359
7360 * fns.c (init_fns): Don't initialize weak_hash_tables here.
7361 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
7362
7363 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
7364
7365 2008-05-15 Kenichi Handa <handa@m17n.org>
7366
7367 * ftfont.c (ftfont_list): Downcase family name to check generic
7368 families.
7369
7370 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
7371 font-spec for QCfont value.
7372
7373 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
7374 buffer. Check the return value of it.
7375
7376 2008-05-14 Jason Rumney <jasonr@gnu.org>
7377
7378 * w32term.c (w32_get_glyph_overhangs): Remove.
7379 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
7380
7381 2008-05-14 Kenichi Handa <handa@m17n.org>
7382
7383 * font.c (font_prop_validate): Make nil a valid value.
7384 (font_clear_cache): Check if the cached vector of entities is nil
7385 or not.
7386
7387 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7388
7389 * emacs.c (main_thread): Conditionalize on
7390 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
7391 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
7392
7393 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
7394 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
7395 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
7396
7397 2008-05-14 Kenichi Handa <handa@m17n.org>
7398
7399 * coding.c (detect_coding_iso_2022): Ignore a coding category that
7400 has no corresponding coding system.
7401
7402 2008-05-14 Jason Rumney <jasonr@gnu.org>
7403
7404 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
7405
7406 * w32font.h (w32font_open_internal): Update declaration.
7407
7408 * w32font.c (w32font_open_internal): Change last argument from
7409 w32font_info struct to font object. Fill in font object from
7410 font_entity. Get Outline metrics if possible. Use them to
7411 calculate underline position and thickness. Use xlfd name as name
7412 property. Don't set codepage.
7413 (w32font_open): Pass font_object to w32font_open_internal. Don't
7414 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
7415 (w32font_draw): Use s->font.
7416 (clear_cached_metrics): Don't clear non-existent blocks.
7417
7418 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
7419 font was not found.
7420 (x_draw_glyph_string): Use underline position and thickness from font.
7421
7422 * w32uniscribe.c (uniscribe_open): Pass font_object to
7423 w32font_open_internal.
7424
7425 2008-05-14 Kenichi Handa <handa@m17n.org>
7426
7427 These changes are to delete all legacy font-handling codes, and
7428 make Emacs use only font-backends.
7429
7430 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
7431 (frame.o, image.o, print.o): Depend on $(FONTSRC).
7432
7433 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
7434
7435 * charset.h (Vcharset_non_preferred_head)
7436 (Vcurrent_iso639_language): Extern them.
7437
7438 * charset.c (Vcharset_non_preferred_head): New variable.
7439 (Vcurrent_iso639_language): New variable.
7440 (syms_of_charset): Declare it as a Lisp variable.
7441 (char_charset): Don't check non preferred charsets. As a last
7442 resort, return charset_unicode.
7443 (Fset_charset_priority): Update Vcharset_non_preferred_head.
7444
7445 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
7446 conditionals. Don't check enable_font_backend. Delete all codes
7447 used only when USE_FONT_BACKEND is not defined.
7448
7449 * dispextern.h (struct glyph_string): Change type of `font' to
7450 `struct font *'.
7451 (struct glyph_string): New member underline_position and
7452 underline_thickness.
7453 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
7454 (struct face): Change type of `font' to `struct font *'. Remove
7455 members `font_name', `font_info_id'.
7456 (per_char_metric, encode_char): Delete externs.
7457 (calc_pixel_width_or_height): Adjust the prototype.
7458
7459 * emacs.c (enable_font_backend): Delete extern.
7460 (main): Don't set enable_font_backend. Don't check the command
7461 line argument "-disable-font-backend".
7462
7463 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
7464 (enum font_property_index): New members FONT_DPI_INDEX,
7465 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
7466 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
7467 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
7468 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
7469 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
7470 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
7471 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
7472 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
7473 (struct font_spec, struct font_entity): New structs.
7474 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
7475 (struct font): Many members from old "struct font_info" moved to
7476 here. Members font and entity deleted.
7477 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
7478 the new font-related objects.
7479 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
7480 (CHECK_FONT_GET_OBJECT): Likewise.
7481 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
7482 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
7483 (struct font_driver): New members case_sensitive anc check. Type
7484 of the member list and open changed.
7485 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
7486 (font_symbolic_width, font_find_object, font_get_spec)
7487 (font_set_lface_from_name): Delete extern.
7488 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
7489
7490 * font.c: Include <strings.h>.
7491 (enable_font_backend): Delete it.
7492 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
7493 (CHECK_VALIDATE_FONT_SPEC): Delete it.
7494 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
7495 (null_string): Delete it.
7496 (null_vector): Make it static.
7497 (font_family_alist): Delete it.
7498 (Qnormal): Extern it.
7499 (QCextra, QClanguage): Delete it.
7500 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
7501 (font_make_spec, font_make_entity, font_make_object)
7502 (font_intern_prop): Renamed from intern_downcase. Don't downcase
7503 the string. Callers changed.
7504 (font_pixel_size): Adjusted for the format change of font-related
7505 objects.
7506 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
7507 (font_style_to_value, font_style_symbolic): New function.
7508 (build_font_family_alist): Delete it.
7509 (font_registry_charsets): Use Fassoc_string instead of
7510 assq_no_quit.
7511 (font_prop_validate_symbol): Don't return null_string.
7512 (font_prop_validate_style): Adjusted for the change of
7513 style-related values in a font vector.
7514 (font_property_table): Delete entries for QClanguage and
7515 QCantialias, add entries for QCavgwidth.
7516 (get_font_prop_index): Delete the 2nd argument FROM.
7517 (font_prop_validate): Arguments changed.
7518 (font_put_extra): Adjusted for the change of font-related objects.
7519 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
7520 (font_parse_fcname, font_unparse_fcname)
7521 (font_prepare_composition): Likewise.
7522 (font_parse_family_registry): Renamed from font_merge_old_spec.
7523 (otf_open): Delete the 1st arg entity.
7524 (font_otf_capability): Adjusted for the above change.
7525 (font_score): New arg alternate_families. Adjusted for the change
7526 of font-related objects.
7527 (font_sort_entites): New arg best_only.
7528 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
7529 Delete them.
7530 (font_match_p): Check alternate families.
7531 (font_find_object): Delete it.
7532 (font_check_object): New function.
7533 (font_clear_cache): Adjusted for the change of font-related objects.
7534 (font_delete_unmatched): New arg.
7535 (font_list_entities): Call font_driver->list with a spec that
7536 doesn't specify style-related properties.
7537 (font_matching_entity): Arguments changed. Caller changed.
7538 (font_open_entity): Adjusted for the change of font-related objects.
7539 (font_close_object, font_has_char, font_encode_char)
7540 (font_get_name, font_get_spec): Likewise.
7541 (font_spec_from_name, font_clear_prop, font_update_lface):
7542 New functions.
7543 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
7544 (font_prepare_for_face, font_done_for_face, font_open_by_name)
7545 (font_at): Adjusted for the change of font-related objects.
7546 (font_range): New function.
7547 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
7548 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
7549 (Fcopy_font_spec, Fmerge_font_spec): New function.
7550 (Ffont_family_list): Renamed from list-families.
7551 (Finternal_set_font_style_table): Arguments changed.
7552 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
7553 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
7554 change of font-related objects.
7555 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
7556
7557 * fontset.h (struct font_info): Delete it. Most members go to
7558 struct font.
7559 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
7560 (enum FONT_SPEC_INDEX): Delete it.
7561 (font_info, list_fonts_func, load_font_func, query_font_func)
7562 (set_frame_fontset_func, find_ccl_program_func)
7563 (get_font_repertory_func, new_fontset_from_font_name): Delete
7564 externs.
7565 (fontset_from_font_name): Extern it.
7566 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
7567 (FONT_INFO_FROM_FACE): Deleted.
7568 (face_for_font): Adjust prototype.
7569
7570 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
7571 conditionals. Don't check enable_font_backend. Delete all codes
7572 used only when USE_FONT_BACKEND is not defined.
7573 (get_font_info_func, list_font_func, load_font_func)
7574 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
7575 (get_font_repertory_func): Delete them.
7576 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
7577 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
7578 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
7579 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
7580 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
7581 (fontset_compare_rfontdef): New function.
7582 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
7583 rfont-defs by qsort. Adjusted for the change of font-group vector.
7584 (load_font_get_repertory): Deleted.
7585 (fontset_find_font): Use new macros to ref/set elements of
7586 font-def and rfont-def.
7587 (fontset_font): Fix the timing of remembering that no font for C.
7588 (free_face_fontset): Do nothing if the face has no fontset.
7589 (face_suitable_for_char_p): Use new macros to ref/set elements of
7590 rfont-def.
7591 (face_for_char): Likewise. Call face_for_char with font_object.
7592 (fs_load_font): Delete. Delete #pragma surrounding it.
7593 (fs_query_fontset): Use strcasecmp instead of strcmp.
7594 (generate_ascii_font_name): Adjusted for the format change of
7595 font-spec.
7596 (Fset_fontset_font): Likewise. Use new macros to set elements of
7597 font-def.
7598 (Fnew_fontset): Use font_unparse_xlfd to generate
7599 FONTSET_ASCII (fontset).
7600 (new_fontset_from_font_name): Deleted.
7601 (fontset_from_font): Renamed from new_fontset_from_font. Check if
7602 a fontset is already created for the font. FIx updating of
7603 Vfontset_alias_alist.
7604 (fontset_ascii_font): Deleted.
7605 (Ffont_info): Adjusted for the format change of font-spec.
7606 (Finternal_char_font): Likewise.
7607 (Ffontset_info): Likewise.
7608 (syms_of_fontset): Don't check load_font_func.
7609
7610 * fns.c (internal_equal): Handle PREV_FONT.
7611
7612 * frame.h: Delete USE_FONT_BACKEND conditional.
7613
7614 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
7615 conditionals. Don't check enable_font_backend. Delete all codes
7616 used only when USE_FONT_BACKEND is not defined.
7617 (x_set_font): Call x_new_font, not x_new_fontset2.
7618 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
7619 already set for the frame.
7620
7621 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
7622 a font-entity by font_make_entity. Use font_intern_prop instead
7623 of intern_downcase. Use FONT_SET_STYLE to set a style-related
7624 font property. If a font is scalable, set avgwidth property to 0.
7625 Set font-entity property by font_put_extra.
7626 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
7627 (ffont_driver): Adjusted for the change of struct font_driver.
7628 (ftfont_spec_pattern): New function.
7629 (ftfont_list): Return a list, not vector.
7630 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
7631 (ftfont_list_family): Don't downcase names.
7632 (ftfont_free_entity): Deleted.
7633 (ftfont_open): Return a font-object. Adjusted for the change of
7634 struct font. Get underline_thickness and underline_position from
7635 font property. Don't update dpyinfo->smallest_font_height and
7636 dpyinfo->smallest_char_width.
7637 (ftfont_close): Don't free `struct font'.
7638 (ftfont_has_char): Adjusted for the format change of font-entity.
7639 (ftfont_encode_char, ftfont_text_extents): Likewise.
7640
7641 * ftxfont.c (ftxfont_list): Return a list, not vector.
7642 (ftxfont_open): Return a font-object. Adjusted for the change of
7643 struct font. Get underline_thickness and underline_position from
7644 font property. Don't update dpyinfo->smallest_font_height and
7645 dpyinfo->smallest_char_width.
7646 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
7647 (ftxfont_draw): Adjusted for the change of struct font.
7648
7649 * image.c (image_ascent): Don't include "charset.h". Include
7650 "character.h" and "font.h".
7651
7652 * lisp.h (enum pvec_type): New member PREV_FONT.
7653 (Fassoc_string): EXFUN it.
7654
7655 * print.c: Include font.h.
7656 (print_object): Handle font-related objects.
7657
7658 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
7659 conditionals. Don't check enable_font_backend. Delete all codes
7660 used only when USE_FONT_BACKEND is not defined.
7661 (handle_auto_composed_prop): Do nothing if it->f is not on a
7662 window system. Check how many following characters can be
7663 displayed by the same font.
7664 (calc_pixel_width_or_height): Type of the 4th arg is changed to
7665 'struct font *'.
7666 (get_char_face_and_encoding): Assign the whole encoding task to
7667 the `encode-char' method of a font driver.
7668 (fill_composite_glyph_string): Adjusted for the change of `struct
7669 face' and `struct glyph_string'.
7670 (fill_glyph_string): Likewise.
7671 (get_per_char_metric): Arguments changed.
7672 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
7673 and `struct glyph_string'.
7674 (produce_stretch_glyph, calc_line_height_property)
7675 (x_produce_glyphs): Likewise.
7676
7677 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
7678 conditionals. Don't check enable_font_backend. Delete all codes
7679 used only when USE_FONT_BACKEND is not defined. Use
7680 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
7681 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
7682 (Qp): Extern them.
7683 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
7684 Deleted.
7685 (struct font_name): Deleted.
7686 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
7687 (compare_fonts_by_sort_order): New function.
7688 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
7689 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
7690 Deleted.
7691 (Fx_family_fonts): Use font_list_entities, and sort fonts by
7692 compare_fonts_by_sort_order.
7693 (Fx_font_family_list): Call Ffont_family_list.
7694 (face_numeric_value, face_numeric_weight, face_numeric_slant)
7695 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
7696 (face_symbolic_slant, face_symbolic_swidth)
7697 (split_font_name_into_vector, build_font_name_from_vector)
7698 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
7699 (font_rescale_ratio, split_font_name, build_font_name)
7700 (free_font_names, sort_fonts, x_face_list_fonts)
7701 (face_font_available_p, sorted_font_list, cmp_font_names)
7702 (font_list_1, concat_font_list, font_list, remove_duplicates):
7703 Deleted.
7704 (Fx_list_fonts): Use Ffont_list.
7705 (LFACE_AVGWIDTH): Deleted.
7706 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
7707 by FONTP.
7708 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
7709 (set_lface_from_font_name): Delete it.
7710 (set_lface_from_font): Renamed from
7711 set_lface_from_font_and_fontset. Caller changed. Don't set
7712 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
7713 for face.
7714 (merge_face_vectors): Copy font-spec if necessary.
7715 Clear properties of the font-spec if necessary.
7716 (merge_face_ref): Clear properties of the font-spec if necessary.
7717 (Finternal_set_lisp_face_attribute): Likewise.
7718 (set_font_frame_param): Use font_load_for_lface to load a
7719 font-object, and call Fmodify_frame_parameters with it.
7720 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
7721 font name by Ffont_xlfd_name.
7722 (Finternal_lisp_face_attribute_values): Don't check QCweight,
7723 QCslant, and QCwidth.
7724 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
7725 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
7726 Compare fonts by EQ.
7727 (lookup_non_ascii_face): Deleted.
7728 (face_for_font): The 2nd argument changed.
7729 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
7730 Check atomic font properties by case insensitive.
7731 (realize_non_ascii_face): Set face->overstrike correctly.
7732 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
7733 (dump_realized_face): Get font name from
7734 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
7735
7736 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
7737 conditionals. Don't check enable_font_backend. Delete all codes
7738 used only when USE_FONT_BACKEND is not defined.
7739 (xic_create_xfontset): Original code deleted and renamed from
7740 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
7741 (x_make_gc): Don't set GCFont in GCs.
7742 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
7743 opened by "fixed".
7744 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
7745 find_ccl_program_func, query_font_func, set_frame_fontset_func,
7746 get_font_repertory_func.
7747
7748 * xfont.c: Include <stdlib.h> and "ccl.h".
7749 (struct xfont_info): New structure.
7750 (xfont_query_font): Deleted.
7751 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
7752 moved from xterm.c.
7753 (xfont_driver): Adjusted for the change of struct font_driver.
7754 (compare_font_names): New function.
7755 (xfont_list_pattern): Sort font names case insensitively. Make
7756 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
7757 (xfont_list): Return a list, not vector.
7758 (xfont_match): If the font doesn't have QCname property, generate
7759 a name from the other font properties.
7760 (xfont_open): Return a font-object. Adjusted for the change of
7761 struct font. Get underline_thickness and underline_position from
7762 font property. Don't update dpyinfo->smallest_font_height and
7763 dpyinfo->smallest_char_width.
7764 (xfont_close): Don't free struct font.
7765 (xfont_prepare_face): Adjusted for the change of struct font.
7766 (xfont_done_face): Deleted.
7767 (xfont_has_char): Adjusted for the change of struct font.
7768 (xfont_encode_char, xfont_draw): Likewise.
7769 (xfont_check): New function.
7770
7771 * xftfont.c (xftfont_list): Adjusted for the change of `list'
7772 callback function.
7773 (xftfont_match): Adjusted for the format change of font-entity.
7774 (xftfont_open): Adjusted for the format change of font-entity and
7775 font-object. Adjusted for the change of struct font. Return a
7776 font-object. Don't update dpyinfo->smallest_font_height and
7777 dpyinfo->smallest_char_width.
7778 (xftfont_close): Block input while calling XftFontClose.
7779 (xftfont_prepare_face): Don't block input while calling
7780 xftfont_get_colors. Adjusted for the change of struct font.
7781 (xftfont_shape): Return value of error case fixed.
7782
7783 * xrdb.c (x_load_resources): Don't setup a fontset resource.
7784
7785 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
7786 conditionals.
7787 (FONT_WIDTH): Return (f)->max_width.
7788 (struct x_display_info): Delete member `font'.
7789 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
7790 (x_find_ccl_program, x_get_font_repertory): Delete externs.
7791 (struct x_output): Change type of `font' to `struct font *'.
7792
7793 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
7794 conditionals. Don't check enable_font_backend. Delete all codes
7795 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
7796 (x_per_char_metric, x_encode_char): Deleted.
7797 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
7798 (x_compute_glyph_string_overhangs): Adjusted for the change of
7799 `struct face'.
7800 (x_draw_glyph_string_foreground)
7801 (x_draw_composite_glyph_string_foreground): Likewise.
7802 (x_draw_glyph_string): Likewise. Use font->underline_position and
7803 font->underline_thickness.
7804 (x_new_font): Renamed from x_new_fontset2.
7805 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
7806 (x_check_font): Call `check' method of a font driver.
7807 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
7808 (x_query_font, x_get_font_repertory): Deleted.
7809 (x_find_ccl_program): Renamed and moved to xfont.c.
7810 (x_redisplay_interface): Adjusted for the change of `struct
7811 redisplay_interface'.
7812
7813 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
7814 conditionals. Don't check enable_font_backend. Delete all codes
7815 used only when USE_FONT_BACKEND is not defined. Surround non-used
7816 code by "#ifdef OLD_FONT" and "endif".
7817 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
7818
7819 * w32font.h (struct w32font_info): New member.
7820 (FONT_COMPAT): New macro.
7821 (w32font_open_internal): Prototype adjusted.
7822
7823 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
7824 OLD_FONT" and "endif".
7825
7826 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
7827 conditionals. Don't check enable_font_backend. Delete all codes
7828 used only when USE_FONT_BACKEND is not defined.
7829 (w32font_open): Return a font-object. Make a font-object by
7830 font_make_object. Adjusted for the change of struct w32font_info.
7831 (w32font_close): Don't free struct font. Adjusted for the change
7832 of struct w32font_info.
7833 (w32font_encode_char, w32font_text_extents, w32font_draw):
7834 Adjusted for the change of struct w32font_info.
7835 (w32font_draw): Likewise.
7836 (w32font_list_internal): Return a list, not vector.
7837 (w32font_open_internal): Change the 4th arg to font-object.
7838 Adjusted for the change of struct w32font_info and font-object format.
7839 (add_font_name_to_list): Don't downcase names.
7840 (w32_enumfont_pattern_entity): Make a font-entity by
7841 font_make_entity. Adjusted for the format change of font-entity.
7842 Use FONT_SET_STYLE to set a style-related font property. If a
7843 font is scalable, set avgwidth property to 0. Set font-entity
7844 property by font_put_extra.
7845 (font_matches_spec): Adjusted for the format change of font-entity.
7846 (w32_weight_table, w32_decode_weight): New variables.
7847 (w32_encode_weight): New function.
7848 (fill_in_logfont): Adjusted for the format change of font-spec.
7849 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
7850 weight value.
7851 (w32font_driver): Adjusted for the change of struct font_driver.
7852
7853 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
7854 conditionals. Don't check enable_font_backend. Surround non-used
7855 code by "#ifdef OLD_FONT" and "endif".
7856 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
7857 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
7858
7859 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
7860 conditionals. Don't check enable_font_backend. Delete all codes
7861 used only when USE_FONT_BACKEND is not defined. Surround non-used
7862 code by "#ifdef OLD_FONT" and "endif".
7863
7864 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
7865 (uniscribe_open): Return value changed to font-object.
7866 Adjusted for the format change of font-object.
7867 (uniscribe_otf_capability): Adjusted for the change of struct font.
7868 (add_opentype_font_name_to_list): Don't downcase names.
7869 (uniscribe_font_driver): Adjusted for the change of struct
7870 font_driver.
7871
7872 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
7873
7874 * dispnew.c (update_frame_1): Check if tty output is still valid
7875 before flushing it.
7876
7877 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
7878
7879 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
7880 to Gtk+ menus.
7881
7882 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
7883
7884 * dired.c (file_name_completion): Tweak the code so as to always do it
7885 in a single pass. Tighten the scope of some variables.
7886
7887 * dired.c (Qdefault_directory): New var.
7888 (file_name_completion): Use it instead of Fexpand_file_name.
7889 (syms_of_dired): Initialize it.
7890
7891 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
7892
7893 * fileio.c (double_dollars): Remove dead code.
7894
7895 2008-05-10 Eli Zaretskii <eliz@gnu.org>
7896
7897 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
7898 Mention w32-get-true-file-attributes in doc string.
7899
7900 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
7901
7902 2008-05-09 Glenn Morris <rgm@gnu.org>
7903
7904 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
7905 2008-04-23.
7906
7907 2008-05-09 Eli Zaretskii <eliz@gnu.org>
7908
7909 Support for reporting owner and group of each file on MS-Windows:
7910 * dired.c (stat_uname, stat_gname): New functions, with special
7911 implementation for w32.
7912 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
7913
7914 * w32.c: Rename the_passwd_* to dflt_passwd_*.
7915 (dflt_group_name): New static variable.
7916 (dflt_group): Rename from the_group.
7917 (init_user_info): Init dflt_group fields. Get user's group name
7918 from LookupAccountSid.
7919 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
7920 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
7921 New initialization states.
7922 (globals_of_w32): Initialize them to zero. Initialize the default
7923 group name to "None".
7924 (GetFileSecurity_Name): New global var, the name of the function
7925 to call for GetFileSecurity.
7926 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
7927 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
7928 (get_file_security, get_security_descriptor_owner)
7929 (get_security_descriptor_group, is_valid_sid)
7930 (get_file_security_desc, get_rid, get_name_and_id)
7931 (get_file_owner_and_group): New functions.
7932 (stat): Use get_file_security_desc and get_file_owner_and_group to
7933 report the owner and primary group of each file. Don't ignore the
7934 high 32 bits of file's size, now that st_size is 64-bit wide.
7935 Fix test when to get true file attributes.
7936 (init_user_info): Use get_rid instead of equivalent inline code.
7937 (fstat): Don't ignore the high 32 bits of file's size.
7938
7939 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
7940
7941 * image.c (png_load): Use correct bit-depth for setting background
7942 color.
7943
7944 2008-05-08 Eli Zaretskii <eliz@gnu.org>
7945
7946 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
7947 epa-hook.elc.
7948
7949 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
7950
7951 * font.c (Ffont_match_p): Don't use `iff' in docstring.
7952
7953 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
7954
7955 * macfns.c (Fx_create_frame): Make a copy of frame parameters
7956 because the original parameters are in pure storage now.
7957 (mac_window): Remove unused params. Update callers.
7958
7959 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
7960
7961 * lread.c (substitute_object_recurse): Use lower-level primitives.
7962 Don't signal errors when traversing sub-char-tables.
7963 Don't loop over all the possible characters when traversing char-tables.
7964
7965 * print.c (print_preprocess): Add sub-char-tables to the print-table,
7966 just like we do in print.c.
7967
7968 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
7969
7970 * minibuf.c (Ftry_completion): Remove code left over from when we used
7971 scmp instead of Fcompare_strings.
7972
7973 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
7974
7975 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
7976
7977 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7978
7979 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
7980 Create bitmap context in native byte order.
7981
7982 * macterm.c (XDrawLine)
7983 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
7984 context in native byte order.
7985
7986 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7987
7988 * config.in: Regenerate.
7989
7990 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
7991 New definitions for Image I/O support.
7992 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
7993 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
7994 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
7995 (mac_data_provider_release_data, image_load_image_io)
7996 [USE_MAC_IMAGE_IO]: New functions.
7997 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
7998 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
7999 (init_image_func_pointer) [MAC_OSX]: Remove function.
8000 (image_load_quartz2d) [MAC_OSX]: Check availability of
8001 CGImageCreateWithPNGDataProvider at compile time.
8002 Use lowercase `false' for boolean constant.
8003 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
8004 Use image_load_image_io.
8005 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
8006 Don't check MyCGImageCreateWithPNGDataProvider.
8007 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
8008 Don't call init_image_func_pointer.
8009
8010 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
8011
8012 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
8013 Make variable non-static.
8014 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
8015 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
8016
8017 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
8018 (RED_FROM_ULONG): Mask off higher bits.
8019 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
8020
8021 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
8022 Include AvailabilityMacros.h.
8023 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
8024 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
8025
8026 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
8027
8028 * chartab.c (Fset_char_table_range): If range is t, really set all
8029 chars to that value.
8030
8031 2008-05-03 Eli Zaretskii <eliz@gnu.org>
8032
8033 * dired.c (Ffile_attributes): Don't allow the device number become
8034 negative.
8035
8036 2008-05-02 Daiki Ueno <ueno@unixuser.org>
8037
8038 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
8039
8040 2008-05-02 Juri Linkov <juri@jurta.org>
8041
8042 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
8043 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
8044 DEFAULT argument as a list of default values in docstrings.
8045
8046 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
8047
8048 * puresize.h (BASE_PURESIZE): Increase to 1210000.
8049
8050 2008-05-01 Martin Rudalics <rudalics@gmx.at>
8051
8052 * dispnew.c (change_frame_size_1): Preserve small windows when
8053 shrinking frames by calling set_window_height|width with third
8054 arg 2.
8055
8056 * window.h (struct window): Replace field too_small_ok by field
8057 resize_proportionally.
8058
8059 * window.c (make_window): Initialize resize_proportionally.
8060 (enlarge_window): Temporarily set resize_proportionally to make
8061 sure that shrink_windows does scale the window proportionally.
8062 (shrink_windows): When window has resize_proportionally set try
8063 to shrink it proportionally by stealing from other windows.
8064 (struct saved_window, Fset_window_configuration)
8065 (compare_window_configurations): Handle resize_proportionally.
8066 (WINDOW_TOTAL_SIZE): New macro.
8067 (window_min_size, shrink_windows, size_window): Use it.
8068 (check_min_window_sizes): Remove. Invalid values of
8069 window-min-height|width are handled by window_min_size_2 now.
8070 (size_window, Fsplit_window, enlarge_window)
8071 (adjust_window_trailing_edge, grow_mini_window): Don't call
8072 check_min_window_sizes.
8073 (window_min_size_2, window_min_size_1, window_min_size):
8074 New argument safe_p for retrieving "safe" minimum sizes.
8075 (Fdisplay_buffer, Fsplit_window, enlarge_window)
8076 (adjust_window_trailing_edge, grow_mini_window):
8077 Adjust arguments of window_min_size... functions.
8078 (shrink_windows): Argument min_size removed. New argument
8079 safe_p allows shrinking windows to their safe minimum sizes.
8080 Calculate minimum size and decide whether a window shall be
8081 deleted for each window individually.
8082 (size_window): When nodelete_p equals 2, tell shrink_windows to
8083 delete windows only if their new minimum size is no more safe.
8084 (shrink_window_lowest_first): Call window_min_size_1 to make
8085 sure to preserve modeline of bottom-most window when resizing
8086 the minibuffer.
8087 (Fset_window_configuration, Fcurrent_window_configuration)
8088 (compare_window_configurations): Do not handle
8089 window-min-height|width any more.
8090 (syms_of_window): Clarify window-min-height|width doc-strings.
8091
8092 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
8093
8094 * dired.c (file_name_completion): Fix up the encoding/decoding issue
8095 some more. Copy some of the code from Ftry_completions.
8096 Remove special case code that dates back to initial revision when the
8097 slash was only added when necessary and that can't trigger nowadays.
8098
8099 2008-04-27 Kenichi Handa <handa@m17n.org>
8100
8101 * font.c (font_prop_validate): Signal `error' instead of `font'.
8102
8103 2008-04-29 Jason Rumney <jasonr@gnu.org>
8104
8105 * w32fns.c (Fw32_battery_status): New defun.
8106 (syms_of_w32fns): Defsubr it.
8107
8108 2008-04-28 Andreas Schwab <schwab@suse.de>
8109
8110 * dired.c (file_name_completion): Fix another mixing of encoded
8111 and decoded names.
8112
8113 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
8114
8115 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
8116
8117 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
8118
8119 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
8120
8121 2008-04-27 Andreas Schwab <schwab@suse.de>
8122
8123 * dired.c (file_name_completion): Fix inappropriate mixing of
8124 encoded and decoded names.
8125
8126 * xterm.c (XTread_socket): Fix use of uninitialized variable.
8127
8128 * puresize.h (BASE_PURESIZE): Increase to 1200000.
8129
8130 2008-04-26 Eli Zaretskii <eliz@gnu.org>
8131
8132 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
8133 2008-03-31, it's not needed anymore with `struct stat' definition
8134 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
8135 for the same reasons.
8136
8137 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
8138
8139 * m/sparc.h: Additional redefinitions for GNU/Linux.
8140
8141 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8142
8143 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
8144 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
8145 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
8146 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
8147 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
8148 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
8149 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
8150 Likewise.
8151
8152 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
8153 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
8154 (mac_ax_number_of_characters): Add externs.
8155 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
8156 [USE_MAC_TSM]: Likewise.
8157 (mac_handle_text_input_event) [MAC_OSX]:
8158 Handle kEventTextInputOffsetToPos for no active input area case.
8159 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
8160 (mac_handle_document_access_event)
8161 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
8162 (install_application_handler) [MAC_OSX]: Register handlers for
8163 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
8164 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
8165 Register mac_handle_document_access_event.
8166
8167 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
8168 Make functions non-static.
8169
8170 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
8171
8172 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
8173 (read_file_name_completion_ignore_case, insert_default_directory)
8174 (Qdefault_directory): Move to minibuffer.el.
8175 (Fread_file_name): Call the new `read-file-name' instead.
8176
8177 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8178
8179 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
8180 Make function non-static.
8181 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
8182 Remove function.
8183 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
8184 Move to mactoolbox.c.
8185 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
8186
8187 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
8188 (mac_rect_make): New macro.
8189
8190 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
8191 instead of float.
8192 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
8193 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
8194 (XSetBackground) [USE_CG_DRAWING]: Likewise.
8195 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
8196 CGRectMake.
8197 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
8198 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
8199 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
8200 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
8201 instead of WindowRef in argument type.
8202 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
8203 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
8204 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
8205 instead of DISPLAY. All uses changed.
8206 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
8207 (x_calc_absolute_position): Simplify so as not to use
8208 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
8209
8210 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
8211 instead of WindowRef in argument type.
8212 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
8213 [TARGET_API_MAC_CARBON]: Remove externs.
8214 (create_apple_event, mac_event_parameters_to_lisp)
8215 [TARGET_API_MAC_CARBON]: Add externs.
8216
8217 * mactoolbox.c (Vmac_ts_script_language_on_focus)
8218 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
8219 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
8220 is clicked.
8221 (x_activate_menubar): Remove extern for saved_menu_event_location.
8222 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
8223 Move from mac.c.
8224
8225 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8226
8227 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
8228 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
8229
8230 2008-04-23 Jason Rumney <jasonr@gnu.org>
8231
8232 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
8233 attributes only for local files.
8234
8235 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
8236 default to Qlocal.
8237
8238 2008-04-22 Juri Linkov <juri@jurta.org>
8239
8240 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
8241 read-buffer-to-switch instead of using the letter "B".
8242
8243 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
8244
8245 * fileio.c (Qdefault_directory): New variable.
8246 (Fread_file_name): Use it to pass `dir' to the completion functions.
8247
8248 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
8249
8250 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
8251
8252 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
8253
8254 * keyboard.c (Vpre_help_message): Remove.
8255 (show_help_echo): Remove default C code.
8256
8257 * dired.c (directory_files_internal, file_name_completion):
8258 Only call ENCODE_FILE if the string is indeed decoded.
8259
8260 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8261
8262 * Makefile.in (TOOLKIT_DEFINES): Remove.
8263 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
8264
8265 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8266
8267 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
8268 (mactoolbox.o): New target.
8269
8270 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
8271 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
8272
8273 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
8274 Use mac_set_frame_window_background instead of XSetWindowBackground.
8275 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
8276 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
8277 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
8278 instead of SetWindowTitleWithCFString.
8279 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
8280 Move function to mactoolbox.c.
8281 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
8282 Use mac_set_window_modified instead of SetWindowModified.
8283 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
8284 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
8285 (Fx_focus_frame): Use mac_front_non_floating_window instead of
8286 FrontNonFloatingWindow. Use mac_activate_window instead of
8287 ActivateWindow. Use mac_active_non_floating_window instead of
8288 ActiveNonFloatingWindow.
8289 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
8290 Use mac_show_hourglass and mac_hide_hourglass.
8291 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
8292 instead of GetGlobalMouse.
8293 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
8294 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
8295 Use mac_bring_window_to_front instead of BringToFront.
8296 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
8297 mactoolbox.c.
8298 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
8299 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
8300 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
8301 mactoolbox.c.
8302
8303 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
8304 (XtPointer): Move typedef from macmenu.c.
8305 (enum button_type): Move enum from macmenu.c.
8306 (widget_value): Move typedef from macmenu.c.
8307 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
8308 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
8309 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
8310 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
8311 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
8312 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
8313 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
8314 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
8315 (Selection): Move typedef from macselect.c.
8316 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
8317 macterm.c.
8318 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
8319 (mac_is_window_collapsed, mac_bring_window_to_front)
8320 (mac_send_window_behind, mac_hide_window, mac_show_window)
8321 (mac_collapse_window, mac_front_non_floating_window)
8322 (mac_active_non_floating_window, mac_activate_window)
8323 (mac_move_window_structure, mac_move_window, mac_size_window)
8324 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
8325
8326 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
8327 (enum mac_menu_kind): Move enum to mactoolbox.c.
8328 (min_menu_id): Move variable to mactoolbox.c.
8329 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
8330 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
8331 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
8332 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
8333 [TARGET_API_MAC_CARBON]: Likewise.
8334 (XtPointer): Move typedef to macgui.h.
8335 (enum button_type): Move enum to macgui.h.
8336 (widget_value): Move typedef to macgui.h.
8337 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
8338 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
8339 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
8340 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
8341 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
8342 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
8343 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
8344 (popup_activated_flag): Make variable non-static.
8345 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
8346 (add_menu_item, fill_menu, dispose_menus):
8347 Move functions to mactoolbox.c.
8348 (restore_show_help_function, menu_target_item_handler)
8349 (install_menu_target_item_handler, mac_handle_dialog_event)
8350 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
8351 [TARGET_API_MAC_CARBON]: Likewise.
8352 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
8353 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
8354 (find_and_call_menu_selection, name_is_separator): Make function
8355 non-static.
8356 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
8357 to mactoolbox.c.
8358 (set_frame_menubar): Don't call install_menu_quit_handler.
8359 (menu_item_selection): New variable.
8360 (mac_menu_show): Use create_and_show_popup_menu.
8361 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
8362 selection but set variable menu_item_selection. All uses changed.
8363 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
8364 Call install_menu_quit_handler. Move to mactoolbox.c.
8365
8366 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
8367 (Selection): Move typedef to macgui.h.
8368 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
8369 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
8370 Make variables non-static.
8371 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
8372 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
8373 Make functions non-static.
8374 (Vmac_service_selection) [MAC_OSX]: Likewise.
8375 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
8376 (mac_valid_selection_target_p, mac_clear_selection)
8377 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
8378 (mac_put_selection_value, mac_selection_has_target_p)
8379 (mac_get_selection_value, mac_get_selection_target_list)
8380 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
8381 Move functions to mactoolbox.c.
8382 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
8383 Likewise.
8384 (copy_scrap_flavor_data, mac_handle_service_event)
8385 (install_service_handler) [MAC_OSX]: Likewise.
8386 (syms_of_macselect) <Vmac_dnd_known_types>:
8387 Use mac_dnd_default_known_types.
8388
8389 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
8390 Move to mactoolbox.c.
8391 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
8392 (Fx_selection_owner_p): Add EXFUN.
8393 (install_window_handler, remove_window_handler, XSetWindowBackground):
8394 Remove externs.
8395 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
8396 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
8397 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
8398 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
8399 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
8400 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
8401 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
8402 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
8403 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
8404 (create_and_show_popup_menu, mac_get_selection_from_symbol)
8405 (mac_valid_selection_target_p, mac_clear_selection)
8406 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
8407 (mac_put_selection_value, mac_selection_has_target_p)
8408 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
8409 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
8410 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
8411 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
8412 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
8413 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
8414 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
8415 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
8416 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
8417
8418 * mactoolbox.c: New file.
8419
8420 2008-04-18 Jason Rumney <jasonr@gnu.org>
8421
8422 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
8423
8424 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
8425
8426 * character.c (Fmultibyte_char_to_unibyte):
8427 Return latin1 chars unchanged.
8428
8429 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
8430 relocated if it points to `name'.
8431
8432 2008-04-17 Kenichi Handa <handa@m17n.org>
8433
8434 * data.c (Faset): Allow setting a multibyte character in an
8435 ASCII-only unibyte string.
8436
8437 * lisp.h (STRING_SET_MULTIBYTE): New macro.
8438
8439 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
8440
8441 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
8442 done in config.h.
8443
8444 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
8445
8446 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
8447 (Fchar_direction): Add usage in the docstring.
8448
8449 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
8450
8451 * keyboard.c (read_key_sequence): Remove always-true checks.
8452
8453 2008-04-14 Jason Rumney <jasonr@gnu.org>
8454
8455 * w32font.c (w32font_open_internal): Set max_bounds.descent in
8456 compatibility struct, for better underline positioning.
8457
8458 2008-04-13 David Hansen <david.hansen@gmx.net>
8459
8460 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
8461 string.
8462
8463 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
8464
8465 * m/hp800.h (XUINT, XSET): Remove.
8466
8467 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
8468
8469 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
8470 previous change.
8471
8472 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
8473
8474 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
8475 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
8476
8477 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8478
8479 * keymap.h (map_keymap_canonical): Declare.
8480 * xmenu.c (single_keymap_panes): Use it.
8481
8482 2008-04-11 Glenn Morris <rgm@gnu.org>
8483
8484 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
8485 set the target's value to that of the alias.
8486
8487 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8488
8489 * term.c (set_tty_color_mode): Left over typo.
8490
8491 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
8492
8493 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
8494 only after check for file name handler functions. Signal, when
8495 native functionality is not supported.
8496 (syms_of_fileio): Declare it unconditionally.
8497
8498 2008-04-10 Jason Rumney <jasonr@gnu.org>
8499
8500 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
8501 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
8502
8503 * w32.c (logon_network_drive): Also logon to remote drives that
8504 are mapped to drive letters.
8505
8506 2008-04-10 Glenn Morris <rgm@gnu.org>
8507
8508 * xdisp.c (truncate-partial-width-windows): Doc fix.
8509
8510 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
8511
8512 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
8513 Move functions to minibuffer.el.
8514 (syms_of_fileio): Don't declare them.
8515
8516 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
8517
8518 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
8519 (syms_of_minibuf): Remove its initialization.
8520
8521 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
8522
8523 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
8524
8525 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
8526
8527 2008-04-09 Jason Rumney <jasonr@gnu.org>
8528
8529 * makefile.w32-in (distclean): Delete makefile too.
8530 (maintainer-clean): New target.
8531
8532 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
8533
8534 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
8535 for new font backend and composite cases.
8536
8537 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
8538
8539 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
8540 Most of the code moved to run_timers.
8541 (do_pending_atimers): Call run_timers.
8542 (run_timers): New function.
8543
8544 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
8545 run atimers.
8546
8547 * process.c (wait_reading_process_output): The same as above.
8548
8549 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
8550
8551 * minibuf.c (last_exact_completion): Remove variable.
8552 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
8553 (complete_and_exit_1, complete_and_exit_2)
8554 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
8555 (Fdisplay_completion_list, display_completion_list_1)
8556 (Fminibuffer_completion_help, Fself_insert_and_exit)
8557 (Fexit_minibuffer, Fminibuffer_message): Move functions to
8558 minibuffer.el.
8559 (syms_of_minibuf): Remove corresponding initializations.
8560
8561 * keyboard.c (Qdeactivate_mark): New var.
8562 (command_loop_1): Use it to call `deactivate-mark'.
8563 (syms_of_keyboard): Initialize it.
8564
8565 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
8566 to another frame.
8567 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
8568 Don't call set_tty_color_mode.
8569 (store_frame_param): Reset previous_frame rather than call
8570 set_tty_color_mode.
8571 * term.c (set_tty_color_mode): Rewrite.
8572 * dispextern.h (set_tty_color_mode): New type.
8573 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
8574
8575 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
8576
8577 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
8578 for generic chars, which do not exist any more in emacs-unicode.
8579
8580 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
8581
8582 * coding.c (detect_coding_emacs_mule)
8583 (Ffind_operation_coding_system): Fix typo.
8584
8585 2008-04-08 Jason Rumney <jasonr@gnu.org>
8586
8587 * w32uniscribe.c (SNAME): Extract only symbol name.
8588
8589 * w32font.h (struct w32_metric_cache): New struct.
8590 (w32font_info): Use it.
8591 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
8592 (CACHE_BLOCKSIZE): New constants.
8593
8594 * w32font.c (Qja, Qko, Qzh): New symbols.
8595 (syms_of_w32font): Initialise them.
8596 (font_matches_spec): Use them to filter by language.
8597 (recompute_cached_metrics): Remove function.
8598 (compute_metrics, clear_cached_metrics): New functions.
8599 (w32font_encode_char): Use them to manage metric cache.
8600 (w32font_text_extents): Cache metrics for all glyphs on demand.
8601 Delay converting glyph indices to WORD until needed.
8602 (w32font_open_internal): Initialize metric cache to empty.
8603 (registry_to_w32_charset): Charset should always be a symbol.
8604 (fill_in_logfont, list_all_matching_fonts): Family should
8605 always be a symbol.
8606
8607 2008-04-06 Jason Rumney <jasonr@gnu.org>
8608
8609 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
8610 Give up if glyph indices not supported. Use uniscribe obtained
8611 ABC widths for individual metrics. Map glyph clusters back to
8612 characters using fClusterStart flag. Return number of glyphs
8613 produced, not chars processed.
8614 (uniscribe_shape): Map char at FROM to current glyph.
8615
8616 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8617
8618 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
8619 Use SetMenuItemHierarchicalMenu.
8620
8621 2008-04-05 Jason Rumney <jasonr@gnu.org>
8622
8623 * image.c (pbm_load): Allow color values up to 65535.
8624 Throw an error if max_color_idx is outside the supported range.
8625 Report an error when image size is invalid.
8626 Read two bytes at a time when raw images have max_color_idx above 255.
8627
8628 2008-04-05 Eli Zaretskii <eliz@gnu.org>
8629
8630 * w32.c (readdir): If FindFirstFile/FindNextFile return in
8631 cFileName a file name that includes `?' characters, use the 8+3
8632 alias in cAlternateFileName instead.
8633
8634 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
8635
8636 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
8637 append "CCL: Quitted" when the CCL program is quitted.
8638 (setup_ccl_program): Initialize ccl->quit_silently to zero.
8639
8640 * ccl.h (struct ccl_program): New member quit_silently.
8641
8642 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
8643
8644 * search.c (compile_pattern_1): Treat non-nil and non-string of
8645 search-spaces-regexp as nil.
8646
8647 * minibuf.c (Fassoc_string): Tweak docstring.
8648
8649 2008-04-05 Eli Zaretskii <eliz@gnu.org>
8650
8651 * dired.c (Ffile_attributes): Support inode numbers wider than 32
8652 bits. Remove ugly WINDOWSNT-specific kludge introduced on
8653 2008-03-14 to force inode be positive.
8654
8655 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
8656 _S_* ones, since we now use our own sys/stat.h.
8657 (stat, fstat): Don't mangle the inode number.
8658 (init_user_info): Don't restrict UID and GID to 0-60000 range.
8659
8660 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
8661
8662 * frame.h (struct frame): Give one more bit to `visible' since we use
8663 values larger than 1 to indicate obscured frames on ttys.
8664
8665 * keymap.c (Qkeymap_canonicalize): New var.
8666 (Fmap_keymap_internal): New fun.
8667 (describe_map): Use keymap-canonicalize.
8668
8669 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
8670 (Fundo_boundary): Set them.
8671 (syms_of_undo): Initialize them.
8672 (record_point): Use them instead of last_point_position*.
8673 (last_undo_buffer): Change type.
8674
8675 2008-04-04 Jason Rumney <jasonr@gnu.org>
8676
8677 * w32font.c (w32font_text_extents): Use font's ascent and descent.
8678 (recompute_cached_metrics): Don't set ascent and descent per char.
8679
8680 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
8681 (uniscribe_check_otf): Add GC protection before consing.
8682 Rearrange loop for counting features.
8683
8684 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
8685
8686 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
8687 buffer with byte-size of source buffer.
8688
8689 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
8690
8691 * callint.c (Fcall_interactively): Handle temporary region even
8692 when shift-select-mode is off.
8693
8694 2008-04-03 Jason Rumney <jasonr@gnu.org>
8695
8696 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
8697
8698 2008-04-03 Kenichi Handa <handa@m17n.org>
8699
8700 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
8701 (CATEGORY_MASK_UTF_16): Likewise.
8702 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
8703 binary file.
8704 (detect_coding): Add null-byte detection for a binary file.
8705 (detect_coding_system): Likewise.
8706
8707 2008-04-03 Jason Rumney <jasonr@gnu.org>
8708
8709 * w32uniscribe.c: New file.
8710
8711 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
8712
8713 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
8714
8715 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
8716 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
8717 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
8718 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
8719 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
8720 (Qphonetic): New symbols.
8721 (syms_of_w32font): Initialize them.
8722 (font_supported_scripts): Use them.
8723 (w32font_list_family): List all charsets.
8724 (w32font_text_extents, recompute_cached_metrics): Fix metric
8725 calculations.
8726 (w32_enumfont_pattern_entity): Make full_type a DWORD.
8727 Give opentype fonts their own format.
8728 (font_matches_spec): New arguments backend and logfont.
8729 Handle :otf spec for uniscribe backend.
8730 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
8731 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
8732
8733 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
8734 font backend.
8735 (globals_of_w32fns): Initialize uniscribe font backend.
8736
8737 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
8738 dependencies.
8739 (w32uniscribe.$(O)): New file to build.
8740 (FONT_OBJ): Include w32uniscribe.$(O).
8741 (LIBS): Add uniscribe libraries.
8742
8743 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
8744
8745 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
8746
8747 * callint.c (Vshift_select_mode): New var.
8748 (Finteractive): Document new ^ spec.
8749 (Fcall_interactively): Call handle-shift-selection if the ^ spec
8750 is present.
8751
8752 * keyboard.c (Vthis_command_keys_shift_translated): New var.
8753 (command_loop_1): Avoid running the direct display versions of
8754 forward-char and backward-char if shift-selection may occur.
8755 (read_key_sequence): Set Vthis_command_keys_shift_translated if
8756 shift-translation takes place.
8757
8758 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
8759 avoid clobbering by define-minor-mode.
8760
8761 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
8762 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
8763
8764 * syntax.c (Fforward_word): Add ^ interactive spec.
8765
8766 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
8767 (Fscroll_right): Add ^ interactive spec.
8768
8769 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
8770
8771 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
8772
8773 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
8774
8775 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
8776
8777 2008-03-31 Juri Linkov <juri@jurta.org>
8778
8779 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
8780
8781 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
8782
8783 * gtkutil.c (xg_set_geometry): Fix indentation.
8784 (xg_resize_outer_widget): Remove.
8785 (x_wm_size_hint_off): Fix indentation.
8786 (xg_frame_set_char_size): Call flush_and_sync after
8787 gtk_window_resize.
8788 (x_wm_set_size_hint): Pass NULL as geometry window to
8789 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
8790 Add menu bar and tool bar height to base height.
8791 (xg_update_frame_menubar, free_frame_menubar)
8792 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
8793 (update_frame_tool_bar, free_frame_tool_bar):
8794 Change xg_resize_outer_widget to xg_frame_set_char_size.
8795
8796 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
8797
8798 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
8799 (Fdbus_call_method): New parameter TIMEOUT.
8800 (dbus-send-signal): Optimize UNGCPRO call.
8801
8802 2008-03-29 Juri Linkov <juri@jurta.org>
8803
8804 * window.c (Fdisplay_buffer): Move call to
8805 Vsplit_window_preferred_function out of conditions that check
8806 if window is eligible for vertical splitting.
8807 When Vsplit_window_preferred_function is non-nil, call it and use
8808 its non-nil return value as window. Otherwise, continue doing
8809 vertical splitting using Fsplit_window with arg horflag=nil.
8810 (syms_of_window) <Vsplit_window_preferred_function>: Change the
8811 default value from `split-window' to nil.
8812
8813 2008-03-29 Juri Linkov <juri@jurta.org>
8814
8815 * callint.c (Fcall_interactively): Revert 2008-03-16 change
8816 for interactive code letters 'b' and 'B'.
8817
8818 2008-03-29 Eli Zaretskii <eliz@gnu.org>
8819
8820 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
8821 multibyte string.
8822
8823 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
8824
8825 * keyboard.c (pending_funcalls): New var.
8826 (timer_check): Run it.
8827 (syms_of_keyboard): Initialize it.
8828 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
8829 (Vdelete_terminal_functions): New vars.
8830 (syms_of_terminal): Initialize them.
8831 (Fdelete_terminal): Run delete-terminal-functions.
8832 * xdisp.c (safe_eval): Rewrite.
8833 (safe_call2): New fun.
8834 * frame.c (Qdelete_frame_functions): New var.
8835 (syms_of_frame): Initialize it.
8836 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
8837 * lisp.h (safe_call2, pending_funcalls): Declare.
8838
8839 2008-03-28 Andreas Schwab <schwab@suse.de>
8840
8841 * indent.c (Fmove_to_column): Move declaration before statements.
8842
8843 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
8844
8845 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
8846 (struct frame): Use bit fields for boolean vars.
8847
8848 * process.c (server_accept_connection): Simplify naming.
8849 (emacs_get_tty_pgrp): Use SDATA.
8850
8851 * coding.c (decode_coding_object): Fix last change.
8852
8853 2008-03-27 Jason Rumney <jasonr@gnu.org>
8854
8855 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
8856
8857 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
8858
8859 * charset.c (Fdefine_charset_internal): Change the way of
8860 registering charsets in Vcharset_order_list.
8861 (syms_of_charset): Make the charset `eight-bit' supplementary.
8862
8863 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
8864
8865 * regex.c (EXTEND_BUFFER): Change order of pointer addition
8866 operations, to avoid having the difference between pointers
8867 overflow.
8868
8869 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
8870
8871 * indent.c (check_display_width): New fun.
8872 (scan_for_column): Use it.
8873
8874 * data.c (syms_of_data): Mark most-positive-fixnum and
8875 most-negative-fixnum as constants.
8876
8877 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
8878
8879 * indent.c (scan_for_column): Extract from current_column_1.
8880 Merge with the same code from Fmove_to_column.
8881 (current_column_1, Fmove_to_column): Use it.
8882
8883 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
8884
8885 * keymap.c (map_keymap_internal): New fun.
8886 (map_keymap): Use it.
8887 (Fmap_keymap_internal): New fun.
8888 (Fmap_keymap): Remove left-out test from before make_save_value.
8889
8890 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
8891
8892 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
8893 Use XCAR/XCDR.
8894
8895 * process.h (struct Lisp_Process): Remove filter_multibyte.
8896 * process.c (QCfilter_multibyte): Remove.
8897 (setup_process_coding_systems): Don't use filter_multibyte.
8898 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
8899 (read_process_output): Don't adjust multibyteness to filter_multibyte.
8900 (Fset_process_filter_multibyte): Change the coding-system to
8901 approximate the previous behavior.
8902 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
8903 coding-system.
8904
8905 * coding.c (decode_coding_object): When not decoding into a buffer,
8906 obey the coding system's preference of (uni|multi)byte.
8907
8908 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
8909
8910 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
8911 every char is changed and has a different byte-length.
8912 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
8913 Fix int -> EMACS_INT.
8914
8915 2008-03-23 David Hansen <david.hansen@gmx.net>
8916
8917 * dbusbind.c (xd_read_message): Remove extra copying of message
8918 strings. Check for NULL `interface' or `member'.
8919
8920 2008-03-22 Eli Zaretskii <eliz@gnu.org>
8921
8922 * w32.c (readdir): If FindFirstFile/FindNextFile return in
8923 cFileName a file name that includes `?' characters, use the 8+3
8924 alias in cAlternateFileName instead.
8925
8926 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
8927
8928 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
8929
8930 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8931
8932 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
8933 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
8934 work on current_buffer only instead (that was already the case
8935 for some of the code anyway).
8936 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
8937 (temp_set_point, temp_set_point_both): Use EMACS_INT.
8938 (SET_PT, SET_PT_BOTH): Adjust.
8939 * intervals.h (set_point, temp_set_point, set_point_both)
8940 (temp_set_point_both): Remove redundant declarations.
8941
8942 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
8943
8944 * fileio.c (Finsert_file_contents):
8945 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
8946 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
8947 when buffer != current_buffer anyway.
8948
8949 2008-03-20 Andreas Schwab <schwab@suse.de>
8950
8951 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
8952 as default.
8953
8954 2008-03-19 Jason Rumney <jasonr@gnu.org>
8955
8956 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
8957 (syms_of_w32fns): Initialize them.
8958 (HOURGLASS_ID): New constant.
8959 (x_window_to_frame): Don't check hourglass_window.
8960 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
8961 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
8962 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
8963 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
8964 Only change the cursor if hourglass is not active.
8965 (Fx_create_frame): Initialize frame's current_cursor.
8966 (hourglass_atimer): Remove.
8967 (hourglass_started): New function.
8968 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
8969 (show_hourglass): Adapt to w32, changing argument to frame.
8970
8971 * w32term.h (struct w32_output): Remove hourglass_window.
8972 Add current_cursor.
8973
8974 * eval.c (call_debugger, Fsignal):
8975 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
8976 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
8977 (Fexecute_extended_command, cancel_hourglass_unwind):
8978 * minibuf.c (read_minibuf):
8979 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
8980
8981 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
8982
8983 * window.c (run_funs): New fun.
8984 (run_window_configuration_change_hook): Use it to run the buffer-local
8985 and the global part of the hook.
8986
8987 * xdisp.c (format_mode_line_unwind_data): Add window argument.
8988 (unwind_format_mode_line): Restore selected window.
8989 (x_consider_frame_title, Fformat_mode_line): Set selected window.
8990
8991 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
8992
8993 * editfns.c (Fchar_equal): Check they are valid characters.
8994
8995 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
8996
8997 2008-03-17 Andreas Schwab <schwab@suse.de>
8998
8999 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
9000 against a charset.
9001
9002 * lisp.h (Fbuffer_list): Declare.
9003
9004 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
9005
9006 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
9007 handlebox_widget is != 0.
9008
9009 2008-03-16 Juri Linkov <juri@jurta.org>
9010
9011 * callint.c (Fcall_interactively): For interactive code letters
9012 'b' and 'B' put the buffer list into the list of default "future"
9013 values of the minibuffer.
9014
9015 2008-03-16 Andreas Schwab <schwab@suse.de>
9016
9017 * keyboard.c (read_key_sequence): Fix downcasing of letters with
9018 modifiers.
9019
9020 * regex.c (re_match_2_internal): Correct matching of a charset
9021 against latin-1 characters.
9022
9023 2008-03-16 Kenichi Handa <handa@m17n.org>
9024
9025 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
9026 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
9027 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
9028 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
9029 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
9030 CHAR_STRING_ADVANCE.
9031 (produce_chars): Fix for the case that the source and the
9032 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
9033 instead of CHAR_STRING_ADVANCE.
9034 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
9035 STRING_CHAR_ADVANCE.
9036
9037 2008-03-15 Andreas Schwab <schwab@suse.de>
9038
9039 * regex.c (re_match_2_internal): Correct matching of eight bit
9040 characters in unibyte strings.
9041
9042 2008-03-15 Martin Rudalics <rudalics@gmx.at>
9043
9044 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
9045 at end of range when it coincides with the end of the buffer.
9046
9047 2008-03-14 Eli Zaretskii <eliz@gnu.org>
9048
9049 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
9050
9051 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
9052
9053 2008-03-14 Jason Rumney <jasonr@gnu.org>
9054
9055 * editfns.c (initial_tz): New variable.
9056 (syms_of_editfns): Initialize it.
9057 (Fset_time_zone_rule): Set it when first called.
9058 Use it when TZSTRING is nil.
9059
9060 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
9061 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
9062 (monitor_from_point_fn, get_monitor_info_fn): New globals.
9063 (globals_of_w32fns): Initialize them.
9064 (compute_tip_xy): Use them to position tooltips.
9065
9066 2008-03-14 Glenn Morris <rgm@gnu.org>
9067
9068 * emacs.c (main): Revert previous change.
9069 (standard_args): Revert -internal-script back to -scriptload,
9070 and remove the long-option form.
9071
9072 2008-03-13 Glenn Morris <rgm@gnu.org>
9073
9074 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
9075 Remove option -enable-font-backend.
9076
9077 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
9078
9079 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
9080
9081 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
9082
9083 * xterm.c (x_connection_closed): For GTK: If this is the last
9084 terminal just exit without closing the display.
9085
9086 2008-03-11 Jason Rumney <jasonr@gnu.org>
9087
9088 * w32font.c (w32font_full_name): Use floor to round.
9089
9090 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
9091
9092 * sound.c (alsa_configure): Declare vol at beginning of block.
9093
9094 * fontset.c (Ffontset_info): Remove extra semicolon.
9095
9096 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
9097
9098 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
9099 size of resulting string.
9100
9101 2008-03-10 Jason Rumney <jasonr@gnu.org>
9102
9103 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
9104
9105 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9106
9107 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
9108 Don't pretend as if characters with display property haven't been
9109 consumed for string-replacing-string case.
9110
9111 2008-03-08 Kim F. Storm <storm@cua.dk>
9112
9113 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
9114 (get_next_display_element, next_element_from_string)
9115 (next_element_from_ellipsis, next_element_from_buffer): Use it.
9116
9117 2008-03-08 Andreas Schwab <schwab@suse.de>
9118
9119 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
9120
9121 2008-03-06 Jason Rumney <jasonr@gnu.org>
9122
9123 * w32font.c (w32_registry): Take font_type argument. Use ANSI
9124 when charset not specified. Only translate ANSI to unicode when
9125 font_type is truetype.
9126 (w32font_coverage_ok): New function.
9127 (add_font_entity_to_list): Use it to filter unsuitable fonts.
9128
9129 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
9130
9131 * lread.c (Fread_char): Resolve modifiers.
9132 (Fread_char_exclusive): Likewise.
9133
9134 * character.c (char_resolve_modifier_mask): New function.
9135 (char_string): Use char_resolve_modifier_mask.
9136 (Fchar_resolve_modifiers): New function.
9137 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
9138 function.
9139
9140 2008-03-04 Jason Rumney <jasonr@gnu.org>
9141
9142 * makefile.w32-in: Always include w32font.c in the build.
9143 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
9144
9145 2008-03-04 Andreas Schwab <schwab@suse.de>
9146
9147 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
9148 (versionclean): Likewise.
9149
9150 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
9151
9152 * .cvsignore: Add oo.
9153
9154 2008-03-03 Andreas Schwab <schwab@suse.de>
9155
9156 * coding.c (decode_coding_object): Inhibit gap shrinking while
9157 decoding in place.
9158
9159 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
9160
9161 * w32term.c: Remove unused include "gnu.h".
9162 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
9163
9164 * gnu.h: Rename to ...
9165 * emacs-icon.h: ... this.
9166 * xterm.c: Use emacs-icon.h instead of gnu.h.
9167 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
9168
9169 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
9170
9171 * w32font.c: Include math.h.
9172
9173 2008-03-03 Jason Rumney <jasonr@gnu.org>
9174
9175 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
9176 Compute options separately.
9177 (w32font_open_internal): Set glyph_idx before caching metrics.
9178
9179 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
9180 Define if system headers don't.
9181 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
9182 (w32font_encode_char): Don't declare here.
9183
9184 * w32font.c (Quniscribe, QCformat): New symbols.
9185 (syms_of_w32font): Define them.
9186 (w32font_has_char): Indicate uncertainty.
9187 (w32font_encode_char): Encode as glyph point. Make static.
9188 (recompute_cached_metrics): New function.
9189 (w32font_open_internal): Use it. Set font to use glyph points
9190 initially. Set format based on type of font.
9191 (w32font_text_extents, w32font_draw): Optionally use glyph points.
9192 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
9193 on it. Set format based on information available here.
9194 (add_font_entity_to_list): Identify backend based on opentype_only.
9195
9196 2008-03-02 Andreas Schwab <schwab@suse.de>
9197
9198 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
9199
9200 * coding.c (decode_coding_big5, produce_chars):
9201 Fix typos in last change.
9202
9203 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
9204
9205 * gnu.h: New icon.
9206
9207 2008-03-02 Kenichi Handa <handa@m17n.org>
9208
9209 * coding.c (decode_coding_utf_8): When eol-type of CODING is
9210 `dos', don't decode '\r' if that is the last in the source.
9211 (decode_coding_utf_16, decode_coding_emacs_mule)
9212 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
9213 (decode_coding_raw_text, decode_coding_charset): Likewise.
9214 (produce_chars): Don't decode EOL here. Use EMACS_INT.
9215
9216 2008-03-01 Jason Rumney <jasonr@gnu.org>
9217
9218 * w32font.c (w32font_full_name): Report point size for scalable fonts.
9219
9220 2008-03-01 Kim F. Storm <storm@cua.dk>
9221
9222 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
9223
9224 2008-03-01 Jason Rumney <jasonr@gnu.org>
9225
9226 * w32font.c (w32font_full_name): New function.
9227 (w32font_open_internal): Use it.
9228
9229 2008-03-01 Kim F. Storm <storm@cua.dk>
9230
9231 * dispnew.c (line_draw_cost): Fix invalid glyph check.
9232
9233 2008-03-01 Jason Rumney <jasonr@gnu.org>
9234
9235 * font.c (font_unparse_fcname): Increase len when style is a symbol.
9236
9237 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
9238
9239 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
9240 xg_frame_resized when the event is for the edit widget.
9241
9242 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
9243
9244 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
9245 set_char_size.
9246 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
9247 operations on widgets here. Just set frame size if needed.
9248 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
9249 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
9250 (x_wm_set_size_hint): Set size hints on the edit widget only, not
9251 the whole frame.
9252 (xg_create_tool_bar): Move attachment of the tool bar to
9253 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
9254 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
9255
9256 2008-03-01 Jason Rumney <jasonr@gnu.org>
9257
9258 * w32fns.c (w32_msg_pump): Disable debug code.
9259
9260 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9261
9262 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
9263
9264 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
9265
9266 * xdisp.c (next_overlay_string): Don't set
9267 overlay_strings_at_end_processed_p if we're currently reading from
9268 a display string.
9269
9270 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
9271
9272 * xdisp.c (get_overlay_strings_1): Fix typo.
9273
9274 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
9275
9276 * xdisp.c (get_overlay_strings_1): Add missing argument type.
9277
9278 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
9279
9280 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
9281
9282 * xdisp.c (display_mode_element): Cancel the previous change.
9283 (decode_mode_spec): Likewise.
9284 (handle_auto_composed_prop): Don't make composition if it->string
9285 is a string.
9286
9287 2008-02-27 Kim F. Storm <storm@cua.dk>
9288
9289 * lisp.h (GLYPH): Change type from int to struct with separate char
9290 and face_id members.
9291 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
9292 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
9293 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
9294 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
9295 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
9296 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
9297 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
9298 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
9299 handle new Lisp glyph code encoding, either an integer or a cons.
9300
9301 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
9302 (GLYPH_ALIAS): Delete.
9303 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
9304 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
9305 (GLYPH_FROM_CHAR): Replace macro by ...
9306 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
9307
9308 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
9309 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
9310 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
9311 (GLYPH_INVALID_P): New macro.
9312 (spec_glyph_lookup_face): Update prototype.
9313
9314 * dispnew.c (line_draw_cost): Adapt to new glyph type.
9315 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
9316 new glyph code encoding.
9317 (spec_glyph_lookup_face): No return value; update passed glyph instead.
9318 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
9319
9320 * xdisp.c (get_next_display_element, next_element_from_display_vector):
9321 Adapt to new glyph type and new glyph code encoding.
9322
9323 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
9324
9325 * indent.c (current_column, current_column_1, Fmove_to_column)
9326 (compute_motion): Adapt to new glyph code encoding.
9327
9328 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
9329
9330 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
9331
9332 * process.c (wait_reading_process_output): Check for window
9333 changes caused by timers.
9334 Suggested by Johan Bockgård.
9335
9336 2008-02-27 Glenn Morris <rgm@gnu.org>
9337
9338 * emacs.c (USAGE1): Add `--disable-font-backend'.
9339
9340 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
9341
9342 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
9343 is made to the buffer.
9344
9345 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
9346
9347 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
9348 (face_at_string_position):
9349 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
9350 (face_at_string_position):
9351 * xdisp.c (display_string, next_overlay_change):
9352 * buffer.h (overlays_at):
9353 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
9354 Update callers.
9355
9356 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
9357
9358 * editfns.c (Fformat): Doc fix.
9359
9360 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
9361
9362 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
9363 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
9364 (Ffont_otf_alternates, Fquery_font): Doc fixes.
9365
9366 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
9367
9368 * buffer.c (Fbuffer_swap_text): New function.
9369 (syms_of_buffer): Defsubr it.
9370
9371 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
9372
9373 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
9374
9375 2008-02-25 Jason Rumney <jasonr@gnu.org>
9376
9377 * w32font.c (w32font_draw): Draw one character at a time when padding.
9378
9379 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
9380
9381 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
9382 Handle a nil arg. Use run_window_configuration_change_hook.
9383 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
9384 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
9385 Use run_window_configuration_change_hook.
9386
9387 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
9388
9389 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
9390 1-pixel width.
9391
9392 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
9393
9394 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
9395 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
9396 if the glyph in the font is zero pixel with.
9397
9398 * dispextern.h (struct glyph_string): New member padding_p.
9399
9400 * w32font.c (w32font_draw): Pay attention to s->padding_p.
9401
9402 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
9403
9404 * xfont.c (xfont_draw): Pay attention to s->padding_p.
9405
9406 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
9407
9408 * font.c: If the font driver doesn't have `shape' function, return Qnil.
9409
9410 2008-02-25 Jason Rumney <jasonr@gnu.org>
9411
9412 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
9413
9414 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
9415
9416 Allow fine-grained image-cache flushing.
9417 * dispextern.h (struct image): Add `dependencies' field.
9418 (clear_image_caches): Change arg to Lisp_Object.
9419 * image.c (make_image): Initialize `dependencies' field.
9420 (clear_image_cache): Change arg to allow fine-grained flushing.
9421 Perform the flush even if image-cache-eviction-delay is nil.
9422 (clear_image_caches): Change arg to Lisp_Object.
9423 (Fclear_image_cache): Expand meaning of the argument.
9424 (mark_image): Mark `dependencies' field.
9425 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
9426 (lface_hash): Use XHASH rather than XFASTINT.
9427 (face_at_buffer_position): Fix int -> EMACS_INT position.
9428 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
9429 (select_frame_for_redisplay): Remove code duplication.
9430 (redisplay_internal): Adapt arg to call to clear_image_caches.
9431
9432 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
9433
9434 * s/vms4-0.h:
9435 * s/vms4-2.h:
9436 * s/vms4-4.h:
9437 * s/vms5-5.h: Remove, unused.
9438
9439 * s/irix5-2.h:
9440 * s/irix6-0.h:
9441 * s/riscos5.h:
9442 * s/mach-bsd4-3.h:
9443 * m/mips4.h: Remove files for obsolete systems.
9444
9445 * Makefile.in:
9446 * filelock.c:
9447 * unexmips.c:
9448 * m/hp9000s300.h:
9449 * m/iris4d.h:
9450 * s/aix3-1.h:
9451 * s/hpux.h:
9452 * s/msdos.h:
9453 * s/usg5-0.h:
9454 * s/usg5-2-2.h:
9455 * s/usg5-2.h:
9456 * s/usg5-3.h: Remove references to obsolete variables.
9457
9458 * s/irix5-0.h: Remove, move all the contents ...
9459 * s/irix6-5.h: ... here. Simplify.
9460 * config.in: Regenerate.
9461
9462 2008-02-24 Jason Rumney <jasonr@gnu.org>
9463
9464 * w32term.c (x_draw_glyph_string_background): Clear the background
9465 manually when cleartype is in use.
9466 (x_draw_glyph_string_foreground): Draw text transparently when
9467 cleartype is in use.
9468
9469 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
9470 a font into it unless we have to.
9471
9472 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
9473
9474 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
9475 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
9476
9477 2008-02-18 Jason Rumney <jasonr@gnu.org>
9478
9479 * w32fns.c (Fw32_shell_execute): Encode parameters.
9480
9481 2008-02-09 Eli Zaretskii <eliz@gnu.org>
9482
9483 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
9484
9485 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
9486
9487 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
9488
9489 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
9490
9491 * xterm.c (x_set_offset): Don't change the gravity if
9492 CHANGE_GRAVITY is -1.
9493
9494 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
9495
9496 * fileio.c (auto_save_error_occurred): New var.
9497 (auto_save_error): Set it.
9498 (Fdo_auto_save): Don't overwrite the error message if an auto-save
9499 error occurred.
9500
9501 2008-02-23 Eli Zaretskii <eliz@gnu.org>
9502
9503 * w32.c (globals_of_w32): Add initializations for
9504 g_b_init_get_sid_sub_authority and
9505 g_b_init_get_sid_sub_authority_count.
9506
9507 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
9508
9509 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
9510 (font_parse_xlfd): Use them for sanity check.
9511 (Finternal_set_font_style_table): Make sure the table is bijective.
9512
9513 Consolidate the image_cache to the terminal struct.
9514 * termhooks.h (P_): Remove redundant def.
9515 (struct terminal): New field `image_cache'.
9516 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
9517 of FRAME_X_IMAGE_CACHE.
9518 * xterm.h (struct x_display_info): Remove image_cache field.
9519 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
9520 * w32term.h (struct w32_display_info): Remove image_cache field.
9521 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
9522 * macterm.h (struct mac_display_info): Remove image_cache field.
9523 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
9524 * xterm.c (x_term_init):
9525 * w32term.c (w32_term_init):
9526 * macterm.c (mac_term_init): Set the image_cache in the terminal.
9527 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
9528 Remove declarations.
9529 (clear_image_caches, mark_image_cache): New declarations.
9530 * xfaces.c (clear_face_cache):
9531 * xdisp.c (redisplay_internal): Use clear_image_caches.
9532 * image.c (clear_image_cache): Don't check that a frame is on
9533 a window-system before checking if it shares the same cache.
9534 (clear_image_caches): New function.
9535 (Fclear_image_cache): Use it.
9536 (mark_image): Move from allo.c.
9537 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
9538 * alloc.c (mark_image, mark_image_cache): Move to image.c.
9539 (mark_object): Don't call mark_image_cache for frames.
9540 (mark_terminals): Call mark_image_cache.
9541
9542 * lisp.h (Fdelete_terminal): Declare.
9543
9544 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
9545 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
9546 wrong_type_argument.
9547
9548 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
9549
9550 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
9551 malayalam.el, and tamil.el. Add sinhala.el.
9552
9553 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
9554
9555 * xterm.c (x_connection_closed): Consolidate identical tests.
9556 (x_delete_terminal): Don't crash if called via x_connection_closed.
9557
9558 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
9559
9560 * xdisp.c (decode_mode_spec): New arg string.
9561 (display_mode_element): Adjust for the above change.
9562
9563 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
9564
9565 * callint.c (Fcall_interactively): Use AREF.
9566
9567 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
9568
9569 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
9570
9571 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
9572
9573 * xfns.c (Fx_show_tip): Set string to " " if empty.
9574
9575 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
9576
9577 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
9578 with Qt.
9579
9580 2008-02-17 Kenichi Handa <handa@m17n.org>
9581
9582 * ftfont.c (ftfont_shape): Return Lispy number.
9583
9584 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
9585 for GCs.
9586 (Finternal_set_font_selection_order): Call font_update_sort_order
9587 only when enable_font_backend is set.
9588 (realize_x_face): Set face->font_info to that of default face only
9589 when enable_font_backend is set.
9590
9591 * xdisp.c (handle_composition_prop): Set it->c to the fist
9592 character of the composed region.
9593 (fill_composite_glyph_string): Set base_face->font_info to
9594 s->font_info. Get a face for ascii from base_face->ascii_face.
9595 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
9596 with a face already decided.
9597 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
9598 non-negative.
9599 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
9600 call font_prepare_composition unconditionally.
9601
9602 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
9603
9604 * xterm.h (struct x_display_info): New member font.
9605
9606 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
9607 (x_set_mouse_face_gc, x_new_font): Likewise.
9608 (x_term_init): Setup display_info->font.
9609 (x_delete_terminal): Free display_info->font.
9610
9611 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
9612
9613 * ftxfont.c (ftxfont_default_fid): Delete it.
9614 (ftxfont_open): Set xfont->fid to 0.
9615 (ftxfont_end_for_frame): Clear data specific to the frame and the
9616 font-driver.
9617
9618 * xftfont.c (xftfont_default_fid): Delete it.
9619 (xftfont_open): Set xfont->fid to 0.
9620
9621 * fontset.c (FONTSET_OBJLIST): New macro.
9622 (fontset_find_font): Update font-object list of the fontset.
9623 (free_realized_fontset): New function.
9624 (free_face_fontset): Call free_realized_fontset.
9625 (Ffont_info): Call font_close_object only when enable_font_backend
9626 is set.
9627
9628 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
9629 [HAVE_NTGUI]: Include w32term.h.
9630 [MAC_OS]: Include macterm.ch.
9631 (font_otf_ValueRecord): Use make_number.
9632 (font_finish_cache): Fix handling of reference count.
9633 (font_clear_cache): Update num_fonts.
9634 (font_open_entity): Update smallest_char_width and
9635 smallest_font_height of the frame.
9636 (font_close_object): Update num_fonts.
9637 (Fclear_font_cache): Fix finding the target cache data.
9638
9639 2008-02-16 Glenn Morris <rgm@gnu.org>
9640
9641 * fontset.c (Finternal_char_font): Fix compilation warning.
9642
9643 2008-02-16 Eli Zaretskii <eliz@gnu.org>
9644
9645 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
9646 instead of char arrays. Enlarge the size of array passed to
9647 get_token_information.
9648
9649 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
9650 warnings.
9651
9652 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
9653
9654 * .gdbinit: Don't set `args', it breaks gdb --args.
9655
9656 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
9657
9658 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
9659 within a narrowed buffer.
9660
9661 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
9662
9663 * coding.c (decode_coding_object, encode_coding_object):
9664 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
9665
9666 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
9667
9668 * coding.c (coding_set_destination): Use BEG_BYTE rather than
9669 hardcoding 1.
9670 (detect_coding_system):
9671 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
9672 (string_char_to_byte, string_byte_to_char, insert_from_gap):
9673 * insdel.c (insert_from_gap):
9674 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
9675 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
9676 (string_to_multibyte):
9677 * character.c (chars_in_text, multibyte_chars_in_text):
9678 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
9679
9680 * character.h (FETCH_STRING_CHAR_ADVANCE)
9681 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
9682 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
9683 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
9684
9685 * casefiddle.c (casify_region): Only call after-change and composition
9686 functions on the part of the region that was changed.
9687
9688 * keyboard.c (read_avail_input):
9689 * frame.c (Fdelete_frame): Call Fdelete_terminal.
9690
9691 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
9692
9693 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
9694 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
9695
9696 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
9697
9698 * w32menu.c (push_submenu_start, push_submenu_end)
9699 (push_left_right_boundary, push_menu_pane, push_menu_item):
9700 * keyboard.c (read_key_sequence): Don't pass args with side effects
9701 to AREF, it fails when compiling with -DENABLE_CHECKING.
9702
9703 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
9704
9705 * Makefile.in (${lispsource}international/charprop.el):
9706 Delete this target.
9707
9708 * search.c (boyer_moore): Fix incorrect synching of the trunk and
9709 emacs-unicode-2.
9710
9711 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
9712
9713 * terminal.c (Fdelete_terminal): Clean up the `force' path.
9714
9715 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
9716
9717 * frame.c (Qnoelisp): New symbol.
9718 (syms_of_frame): Initialize it.
9719 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
9720 harmless Elisp code, from a strong `force' from x_connection_closed.
9721 * frame.h (Qnoelisp): Declare.
9722 * xterm.c (x_connection_closed): Pass `noelisp'.
9723
9724 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
9725 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
9726 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
9727 rather than `int' for the type of `type'.
9728
9729 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
9730
9731 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
9732
9733 * Makefile.in (GNUC): Remove support for gcc-1.x.
9734
9735 2008-02-10 Richard Stallman <rms@gnu.org>
9736
9737 * lisp.h (ASET): Use AREF, not ASLOT.
9738
9739 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
9740
9741 * lisp.h (ASET): Check bounds.
9742
9743 2008-02-10 Glenn Morris <rgm@gnu.org>
9744
9745 * buffer.c (mode-name): Doc fix.
9746
9747 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
9748
9749 * Makefile.in:
9750 * emacs.c:
9751 * gmalloc.c:
9752 * keyboard.c:
9753 * lisp.h:
9754 * m/ibm370aix.h:
9755 * process.c:
9756 * regex.c:
9757 * s/hpux.h:
9758 * sysdep.c:
9759 * sysselect.h:
9760 * systty.h:
9761 * unexec.c:
9762 * w32term.c:
9763 * xsmfns.c:
9764 * xterm.c: Remove code that deals with obsolete variables.
9765
9766 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
9767
9768 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
9769 nothing else needs it anymore.
9770
9771 2008-02-09 Eli Zaretskii <eliz@gnu.org>
9772
9773 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
9774 instead of unibyte_char_to_multibyte.
9775
9776 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
9777
9778 * s/gnu-linux.h: Remove commented out code.
9779
9780 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
9781
9782 * Makefile.in: Update what RMS says about using autoconf.
9783 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
9784 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
9785 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
9786 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
9787
9788 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
9789
9790 * keymap.c (Fkey_description): Move side effect outside of macro call.
9791
9792 * xfaces.c (Finternal_make_lisp_face):
9793 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
9794
9795 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
9796 (syms_of_fontset): Use ASET.
9797
9798 * fns.c (concat): Move side effect outside of macro call.
9799 (hash_clear): Use ASET.
9800
9801 2008-02-08 Richard Stallman <rms@gnu.org>
9802
9803 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
9804 If FORCE, and frame has a surrogate minibuffer for another frame,
9805 delete the other frame first.
9806
9807 2008-02-07 Timo Savola <timo.savola@iki.fi>
9808
9809 * xterm.c (x_detect_focus_change): Handle embed client message.
9810 (handle_one_xevent): Ditto.
9811 (handle_one_xevent): If embedded and we get a button press/release,
9812 request focus.
9813 (xembed_set_info, xembed_send_message): New functions.
9814 (x_make_frame_visible): Call xembed_set_info if embedded.
9815 (x_make_frame_invisible): Call xembed_set_info if embedded.
9816 (x_term_init): Initialize Xatom_XEMBED.
9817 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
9818 (x_iconify_frame): Ditto.
9819
9820 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
9821 (enum xembed_info, enum xembed_message, enum xembed_focus)
9822 (enum xembed_modifier, enum xembed_accelerator): New.
9823 (xembed_set_info, xembed_send_message): Declare.
9824 (FRAME_X_EMBEDDED_P): New.
9825
9826 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
9827 gtk_plug_new.
9828
9829 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
9830 window ID of a frame.
9831 (x_window): Reparent frame if embedded.
9832 (Fx_create_frame): Don't set border width if embedded.
9833
9834 * emacs.c (USAGE3): Add --parent-id.
9835 (standard_args): Ditto.
9836
9837 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
9838
9839 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
9840
9841 2008-02-07 Jim Meyering <meyering@redhat.com>
9842
9843 Use "do...while (0)", not "if (1)...else" in macro definitions.
9844 The latter provokes a warning from gcc about the empty else, when
9845 followed by ";". Also, without that trailing semicolon, it would
9846 silently swallow up any following statement.
9847 * syntax.h (SETUP_SYNTAX_TABLE)
9848 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
9849 * buffer.h (DECODE_POSITION): Likewise.
9850 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
9851 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
9852 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
9853 (FETCH_CHAR_ADVANCE): Likewise.
9854 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
9855
9856 2008-02-07 Jim Meyering <meyering@redhat.com>
9857
9858 * lread.c [lint]: Don't include <sys/inode.h>.
9859
9860 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
9861
9862 * xselect.c (x_handle_dnd_message):
9863 * xmenu.c (digest_single_submenu, xmenu_show):
9864 * xdisp.c (with_echo_area_buffer_unwind_data)
9865 (format_mode_line_unwind_data, unwind_format_mode_line)
9866 (display_menu_bar):
9867 * eval.c (Ffetch_bytecode):
9868 * doc.c (store_function_docstring):
9869 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
9870 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
9871 * buffer.c (add_overlay_mod_hooklist): Use ASET.
9872
9873 2008-02-07 Kenichi Handa <handa@m17n.org>
9874
9875 * ftxfont.c (ftxfont_open): Don't set
9876 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
9877
9878 * ftfont.c (ftfont_open): Fix previous change.
9879
9880 2008-02-06 Jason Rumney <jasonr@gnu.org>
9881
9882 * w32font.c (w32font_text_extents): Fill in lbearing metric.
9883 Use cached metrics for ASCII characters.
9884 (w32font_open_internal): Don't set font's owning_frame.
9885 Cache metrics for ASCII characters.
9886
9887 * w32font.h (struct w32font_info): Add ascii_metrics.
9888 Remove owning_frame.
9889
9890 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
9891
9892 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
9893 to negative value.
9894
9895 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
9896
9897 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
9898
9899 * charset.c (syms_of_charset): Set QCtest and Qeq.
9900
9901 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
9902
9903 * process.c (Fstart_process):
9904 * callproc.c (Fcall_process): Handle the case where
9905 Funhandled_file_name_directory returns nil.
9906
9907 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
9908 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
9909 * font.c (check_gstring): Use them and AREF to access the vector before
9910 we know it's really a gstring.
9911 (Ffont_shape_text): Fix typo.
9912 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
9913
9914 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
9915 Declare.
9916
9917 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
9918
9919 2008-02-05 Jason Rumney <jasonr@gnu.org>
9920
9921 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
9922 Set smallest_font_height and smallest_char_width in display info.
9923
9924 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
9925
9926 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
9927
9928 2008-02-05 Miles Bader <miles@gnu.org>
9929
9930 * xfaces.c (get_lface_attributes, merge_named_face)
9931 (lookup_named_face, lookup_derived_face, realize_named_face):
9932 Revert 2008-02-01 change by cyd@stupidchicken.com.
9933
9934 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
9935
9936 * fontset.c (Ffontset_info): Handle the case of inhibitting the
9937 fallback fonts.
9938 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
9939
9940 2008-02-04 Jason Rumney <jasonr@gnu.org>
9941
9942 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
9943 set full_name.
9944 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
9945
9946 2008-02-03 Jason Rumney <jasonr@gnu.org>
9947
9948 * makefile.w32-in (OBJ1): Include font.o here.
9949 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
9950
9951 2008-02-02 Jason Rumney <jasonr@gnu.org>
9952
9953 * makefile.w32-in (temacs): Bump EMHEAP to 21.
9954
9955 2008-02-01 Jason Rumney <jasonr@gnu.org>
9956
9957 * s/cygwin.h: Define VIRT_ADDR_VARIES.
9958
9959 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
9960
9961 2008-02-01 Andreas Schwab <schwab@suse.de>
9962
9963 * Makefile.in (shortlisp, lisp): Update for rename of
9964 ../lisp/language/myanmar.el.
9965
9966 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
9967
9968 * xfaces.c (get_lface_attributes): Delete function.
9969 (merge_named_face, lookup_named_face, lookup_derived_face)
9970 (realize_named_face): Call lface_from_face_name directly, and use
9971 the fact that merge_face_vectors does not alter its FROM argument.
9972
9973 2008-02-01 Jason Rumney <jasonr@gnu.org>
9974
9975 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
9976 input in the default locale. Handle non-Unicode multibyte input.
9977
9978 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
9979
9980 * fontset.c (reorder_font_vector): Exclude nil elements from the
9981 font group. Don't try multiple fonts.
9982 (fontset_font): Adjust for the above change.
9983 (Finternal_char_font): Return nil if the found font doesn't
9984 contain the character ch.
9985
9986 * Makefile.in (lisp, shortlisp): Add cham.el.
9987
9988 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
9989
9990 * font.h (FONTP): Make it return 1 also for a font-object.
9991
9992 * .gdbinit (xfontset): New function.
9993
9994 * font.c (font_find_for_lface): Check if the character C is
9995 supported or not only for the first font.
9996
9997 * fontset.c (reorder_font_vector): Fix typo.
9998 (fontset_find_font): Don't add a font-spec specifying a script.
9999 Use 0 (not Qt) for the indication of empty font-group. Change the
10000 format of RFONT-DEF. Return Qt if no font in the font-group
10001 support the character.
10002 (fontset_font): Adjust for the above change. If no font was
10003 found the character, remember that.
10004 (face_for_char): Adjust for the change of RFONT-DEF.
10005 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
10006 no font for the target.
10007 (Finternal_char_font): Adjust for the change of RFONT-DEF.
10008
10009 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10010
10011 * font.c (font_load_for_face): Handle the case that the font in
10012 face->lface is a string.
10013
10014 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10015
10016 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
10017
10018 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10019
10020 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
10021 Fix previous change. If the frame is not on a window system,
10022 signal an error.
10023
10024 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10025
10026 * coding.c (decode_coding_object, encode_coding_object): Adjust
10027 marker positions after conversion.
10028
10029 * lisp.h (struct Lisp_Marker): New member need_adjustment.
10030
10031 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10032
10033 * font.c (font_find_for_lface): Fix the handling of the return
10034 value of font_has_char.
10035 (Ffont_shape_text): Fix previous change.
10036
10037 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
10038 (fontset_ref_and_range): Delete it.
10039 (fontset_find_font): Call char_table_ref_and_range instead of
10040 FONTSET_REF_AND_RANGE.
10041 (make_fontset): Don't setup font groups of Latin here.
10042 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
10043 (new_fontset_from_font): Make the specified font the default for
10044 all Latin characters.
10045
10046 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10047
10048 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
10049 is on a window system before accessing the fontset of the frame.
10050
10051 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10052
10053 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
10054
10055 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
10056 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
10057
10058 * font.c (Ffont_shape_text): If the font driver doesn't have a
10059 shaper function, make zero-width glyphs to have at least one-pixel
10060 width. Fix setting of `to' field of glyphs.
10061
10062 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10063
10064 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
10065 glyphs.
10066
10067 * font.h (struct font_driver): Improve docstring of member `shape'.
10068
10069 2008-02-01 Kenichi Handa <handa@m17n.org>
10070
10071 * composite.c (syms_of_composite): Fix docstring of
10072 auto-composition-function.
10073
10074 * font.h (LGLYPH_SIZE): New macro.
10075
10076 * font.c (Ffont_fill_gstring): Stop filling when a character not
10077 supported by the font is found.
10078 (Ffont_shape_text): When a shape callback function returns nil,
10079 try at most two more times with larger gstring.
10080 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
10081
10082 * xdisp.c (handle_auto_composed_prop): Change the argument to
10083 auto-composition-function.
10084
10085 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
10086 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
10087 Lispy glyph and store it in the lgstring.
10088
10089 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
10090
10091 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
10092
10093 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10094
10095 * font.c (Ffont_shape_text): Avoid unnecessary composition.
10096
10097 * fontset.c (Vfont_encoding_charset_alist): New variable.
10098 (syms_of_fontset): DEFVAR it.
10099 (reorder_font_vector, fontset_find_font): Optimize for the case of
10100 no need of reordering.
10101 (face_for_char): Map the charset property by
10102 Vfont_encoding_charset_alist.
10103
10104 2008-02-01 Jason Rumney <jasonr@gnu.org>
10105
10106 * w32font.c (logfonts_match): Don't check adstyle here.
10107 (font_matches_spec): Check here against physical font instead.
10108 (add_font_entity_to_list): Avoid some substitutions.
10109
10110 * font.c (font_parse_fcname): Default weight and slant to normal.
10111 (font_score): Prefer normal fonts if weight or slant unspecified.
10112 (font_score) [WINDOWSNT]: Scale weight difference down to closer
10113 match freetype scores.
10114
10115 2008-02-01 Jason Rumney <jasonr@gnu.org>
10116
10117 * w32font.c (w32font_text_extents): Don't use the frame stored in the
10118 font, as it may have been deleted.
10119 (w32_enumfont_pattern_entity): Map generic family to adstyle using
10120 most common hyphenless variation.
10121 (logfonts_match): Check generic family.
10122 (font_matches_spec): Don't check generic family here.
10123 (fill_in_logfont): Set generic family based on adstyle.
10124
10125 * w32font.h (w32font_get_cache): Update declaration.
10126
10127 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10128
10129 * ftfont.c (ftfont_get_cache): Adjust the argument type.
10130
10131 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
10132 If none of the new drivers are available, call font_update_drivers
10133 with the old drivers.
10134
10135 * w32font.c (w32font_get_cache): Adjust the argument type.
10136
10137 * xfont.c (xfont_get_cache): Adjust the argument type.
10138
10139 * font.h (struct font_driver): Change argument type of get_cache.
10140
10141 * xftfont.c (xftfont_start_for_frame): Delete prototype.
10142
10143 * font.c (Ffont_get): Fix arguments to Fassoc.
10144 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
10145 (font_clear_cache): New function.
10146 (font_list_entities, font_matching_entity): Use font_get_cache.
10147 (font_update_drivers): Call font_clear_cache when finishing a driver.
10148
10149 * fontset.c (fontset_find_font): Fix previous change.
10150
10151 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10152
10153 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
10154 dpyinfo->font_table.
10155 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
10156 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
10157
10158 * font.c (font_at): Handle the case that the arg C is negative.
10159 Handle the unibyte case.
10160 (Ffont_at): Call font_at with the arg C -1.
10161
10162 * xdisp.c (handle_auto_composed_prop): Don't get a character at
10163 the position here, and call font_at with the arg C -1.
10164 Don't check the range of the existing composition at the point.
10165
10166 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10167
10168 * fontset.c (fontset_add): New args charset_id and family.
10169 Change caller.
10170 (load_font_get_repertory, fontset_find_font): Assume that
10171 font_spec is always a font-spec object.
10172 (Fset_fontset_font): Always store a font-spec object in a fontset.
10173
10174 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
10175 instead of get_property_and_range.
10176
10177 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10178
10179 * xftfont.c (struct xftfont_info): Delete the member ft_face.
10180 (xftfont_open): Don't keep locking face.
10181 (xftfont_close): Don't unlock face.
10182 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
10183
10184 * fontset.c (fontset_find_font): Don't prefer a font of
10185 supplementary charset.
10186
10187 2008-02-01 Kenichi Handa <handa@m17n.org>
10188
10189 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
10190 script, langsys_tag to langsys, new member script.
10191 (OTF_TAG_STR): Terminate by '\0'.
10192 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
10193 listing to the script specified in that property. Fix arg to
10194 OTF_check_features.
10195
10196 2008-02-01 Jason Rumney <jasonr@gnu.org>
10197
10198 * w32font.h: New file.
10199
10200 * w32font.c: Include it.
10201 (struct w32font_info): Add owning_frame field. Move to w32font.h.
10202 (w32font_open): Set owning_frame.
10203 (w32font_text_extents): Use owning_frame.
10204 (struct font_callback_data): Add opentype_only field.
10205 (add_font_entity_to_list): Use it to filter fonts.
10206 Don't check against full name.
10207 (w32font_list_internal): New function.
10208 (w32font_list): Use it.
10209 (w32font_match_internal): New function.
10210 (w32font_match): Use it.
10211 (w32font_open_internal): New function.
10212 (w32font_open): Use it.
10213 (w32font_get_cache, w32font_close, w32font_has_char)
10214 (w32font_encode_char, w32font_text_extents, w32font_draw):
10215 Make non-static.
10216
10217 * makefile.w32-in (w32font.o): Depend on w32font.h.
10218
10219 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10220
10221 * charset.c (Fdefine_charset_internal): Record a supplementary
10222 charset at the tail of Vcharset_order_list.
10223
10224 * font.c (Ffont_shape_text): Fix the return value.
10225
10226 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
10227
10228 * xdisp.c (handle_auto_composed_prop): Fix previous change.
10229
10230 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10231
10232 * ftfont.c (struct OpenTypeSpec): New struct.
10233 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
10234 (ftfont_get_open_type_spec): New function.
10235 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
10236
10237 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
10238
10239 2008-02-01 Jason Rumney <jasonr@gnu.org>
10240
10241 * w32font.c (add_font_entity_to_list): Compare only the beginning
10242 of full name.
10243
10244 2008-02-01 Kenichi Handa <handa@m17n.org>
10245
10246 * xdisp.c (handle_auto_composed_prop): Simplify the code.
10247 Never return HANDLED_RECOMPUTE_PROPS.
10248
10249 2008-02-01 Kenichi Handa <handa@m17n.org>
10250
10251 * font.c (font_gstring_produce): Delete it.
10252
10253 * composite.h (COMPOSITION_METHOD):
10254 Handle COMPOSITION_WITH_GLYPH_STRING.
10255
10256 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10257
10258 * xfont.c (Qx): Delete.
10259 (syms_of_xfont): Don't initialize Qx.
10260
10261 * composite.h (enum composition_method):
10262 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
10263
10264 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10265
10266 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
10267 (choose_face_font): Accept new form of font-spec.
10268
10269 * frame.h (font_driver_list): Declare it unconditionally.
10270 (struct frame): Define members font_driver_list and font_data_list
10271 unconditionally.
10272
10273 * fontset.c: Include "font.h" unconditionally.
10274 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
10275 (Fset_fontset_font): Accept a font-spec object.
10276
10277 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
10278 PIXEL_SIZE part a wild card.
10279
10280 * dispextern.h (struct glyph_string): Define members clip and
10281 num_clips unconditionally.
10282 (struct face): Define members font_info and extra unconditionally.
10283
10284 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
10285 ftfont_info only when HAVE_LIBOTF is defined.
10286
10287 2008-02-01 Andreas Schwab <schwab@suse.de>
10288
10289 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
10290 and end.
10291
10292 2008-02-01 Jason Rumney <jasonr@gnu.org>
10293
10294 * w32font.c (w32font_driver): Add new fields.
10295
10296 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10297
10298 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
10299 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
10300 (LIBES): Add @M17N_FLT_CFLAGS@.
10301
10302 * composite.c (compose_text): Don't treat the new style
10303 composition specially.
10304
10305 * emacs.c (main): Call syms_of_font unconditionally.
10306
10307 * font.h (FONT_ENTITY_NOT_LOADABLE)
10308 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
10309 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
10310 (struct font_driver): New member shape.
10311 (font_registry_charsets): Extern it.
10312 (font_find_for_lface, font_prepare_composition): Adjust prototype.
10313 (font_otf_capability, font_drive_otf): Delete their externs.
10314
10315 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
10316 (font_charset_alist, font_registry_charsets): Move from xfont.c
10317 and rename.
10318 (font_prop_validate_otf): New function.
10319 (font_property_table): Register it for QCotf.
10320 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
10321 (font_drive_otf): Delete.
10322 (font_prepare_composition): New arg F. Adjust for the change of
10323 lispy gstring.
10324 (font_find_for_lface): New arg C.
10325 (font_load_for_face): Adjust for the change of font_find_for_lface.
10326 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
10327 lispy gstring.
10328 (Ffont_shape_text): New function.
10329 (Fopen_font): If the font size is not given, use 12-pixel.
10330 (Ffont_at): New arg STRING.
10331 (syms_of_font): Initalize font_charset_alist.
10332 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
10333 conditionally.
10334
10335 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
10336 fonts of the same font-spec. Change the format of RFONT-DEF.
10337 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
10338 Adjust for the change of RFONT-DEF.
10339 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
10340
10341 * ftfont.h: New file.
10342
10343 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
10344 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
10345 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
10346 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
10347 font_otf_capability and font_drive_otf, set ftfont_shape.
10348 (ftfont_list): Adjust for the change of :otf property value.
10349 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
10350 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
10351 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
10352 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
10353 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
10354 (otf_gstring, gstring, m17n_flt_initialized): New variables.
10355
10356 * w32term.c (x_draw_composite_glyph_string_foreground):
10357 Adjust for the change of lispy gstring.
10358
10359 * xdisp.c (handle_composition_prop): Adjust for the change of
10360 lispy gstring. Call a function for auto-composition with the
10361 third arg it->window.
10362 (fill_composite_glyph_string): Adjust for the change of lispy string.
10363 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
10364
10365 * xfaces.c (set_font_frame_param): Adjust for the change of
10366 font_find_for_lface.
10367
10368 * xfont.c (x_font_charset_alist): Move to font.c and rename.
10369 (xfont_registry_charsets): Likewise. Change caller.
10370 (syms_of_xfont): Don't handle x_font_charset_alist.
10371
10372 * xftfont.c: Include "ftfont.h".
10373 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
10374 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
10375 (xftfont_close) [HAVE_LIBOTF]: Close otf.
10376 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
10377 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
10378 Set xftfont_driver.shape to xftfont_shape.
10379
10380 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
10381 the change of lispy gstring.
10382
10383 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10384
10385 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
10386
10387 2008-02-01 Jason Rumney <jasonr@gnu.org>
10388
10389 * w32font.c (w32font_draw): Fill background manually.
10390
10391 2008-02-01 Jason Rumney <jasonr@gnu.org>
10392
10393 * font.c (Qfontp): Remove unused symbol.
10394 (QCantialias): New symbol.
10395 (syms_of_font): Define it.
10396 (font_property_table): Set a validator for QCantialias.
10397
10398 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
10399 Define if not already.
10400 (QCfamily): Share with xfaces.c.
10401 (Qstandard, Qsubpixel, Qnatural): New symbols.
10402 (syms_of_w32font): Define them. Don't define QCfamily here.
10403 (w32_antialias_type, lispy_antialias_type): New functions.
10404 (w32_enumfont_pattern_entity): New arg requested_font.
10405 Set antialias parameter if non-default was requested.
10406 (fill_in_logfont): Fill in lfQuality if :antialias specified.
10407
10408 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10409
10410 * lread.c (read1): Undo the previous change.
10411
10412 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
10413
10414 * frame.c (Fdelete_frame): Call font_update_drivers only when
10415 USE_FONT_BACKEND is defined.
10416
10417 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10418
10419 * font.h (struct font_bitmap): New member bits_per_pixel.
10420 (struct font_driver): New members start_for_frame and end_for_frame.
10421 (struct font_data_list): New struct.
10422 (font_put_frame_data, font_get_frame_data): Extern them.
10423
10424 * frame.h (struct frame): New member font_data_list.
10425
10426 * font.c (font_update_drivers): Call driver->start_for_frame and
10427 driver->end_for_frame at proper timings.
10428 (font_put_frame_data, font_get_frame_data): New functions.
10429 (Ffont_spec): Add usage in the docstring.
10430
10431 * frame.c (make_frame): Initialize f->font_data_list to NULL.
10432 (Fdelete_frame): Call font_update_drivers.
10433
10434 * xftfont.c (struct xftface_info): Delete the member xft_draw.
10435 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
10436 (xftfont_get_xft_draw): New function.
10437 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
10438 (xftfont_end_for_frame): New function.
10439 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
10440
10441 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
10442 Change argument. Cache GCs in the per-frame data.
10443 (struct ftxfont_frame_data): New struct.
10444 (ftxfont_draw_bitmap): New arg gc_fore and flush.
10445 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
10446 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
10447 (ftxfont_end_for_frame): New function.
10448 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
10449
10450 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
10451
10452 2008-02-01 Kenichi Handa <handa@m17n.org>
10453
10454 * xselect.c (Vselection_coding_system)
10455 (Vnext_selection_coding_system): Delete them.
10456 (syms_of_xselect): Don't declare selection-coding-system and
10457 next-selection-coding-system. They are declared in select.el.
10458
10459 2008-02-01 Jason Rumney <jasonr@gnu.org>
10460
10461 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
10462
10463 * w32fns.c: Include imm.h.
10464 (get_composition_string_fn, get_ime_context_fn): New optional
10465 system functions.
10466 (globals_of_w32fns): Load them from imm32.dll.
10467 (ignore_ime_char): New flag.
10468 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
10469 WM_IME_ENDCOMPOSITION messages.
10470
10471 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
10472 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
10473
10474 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10475
10476 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
10477 (READCHAR_REPORT_MULTIBYTE): New macro.
10478 (readchar): New 2nd arg MULTIBYTE.
10479 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
10480 Make symbol's name multibyte according to the multibyteness of the
10481 source.
10482
10483 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10484
10485 * xfaces.c (face_for_overlay_string): Call lookup_face with
10486 correct arguments (fix of synching with the trunk).
10487
10488 2008-02-01 Kenichi Handa <handa@m17n.org>
10489
10490 * font.c (font_prop_validate_symbol, font_prop_validate_style)
10491 (font_prop_validate_non_neg, font_prop_validate_spacing):
10492 Delete argument prop_index.
10493 (font_property_table): Change arguments to validater. Change Callers.
10494 (font_lispy_object): Delete.
10495 (font_at): Use font_find_object instead fo font_lispy_object.
10496
10497 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
10498
10499 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
10500 and file names.
10501
10502 2008-02-01 Jason Rumney <jasonr@gnu.org>
10503
10504 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
10505 (font_matches_spec): Remove debug output.
10506 (add_font_entity_to_list): Avoid using substituted fonts.
10507
10508 2008-02-01 Jason Rumney <jasonr@gnu.org>
10509
10510 * doc.c (Fsnarf_documentation):
10511 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
10512
10513 2008-02-01 Miles Bader <miles@gnu.org>
10514
10515 * dispextern.h (struct glyph_row): Only define "clip" field if
10516 HAVE_WINDOW_SYSTEM is defined.
10517
10518 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
10519
10520 Fix up multi-tty merge.
10521
10522 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
10523 and indentation.
10524
10525 * xfaces.c (free_realized_face, clear_face_gcs):
10526 Include font_done_for_face in the input_blocked section, just in case.
10527
10528 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
10529 (get_char_face_and_encoding): Undo last change and remove the *other*
10530 duplicate definition (i.e. keep the one that's better scoped and that
10531 includes code for the font-backend).
10532
10533 * terminal.c (create_terminal): Default keyboard_coding to
10534 `no-conversion' and terminal_coding to `undecided'.
10535
10536 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
10537
10538 * fontset.c (free_realized_fontsets): Check that the table entry does
10539 contain a fontset before trying to compare it to `base'.
10540
10541 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
10542 syms_of_charset, and syms_of_coding earlier because init_window_once
10543 now needs Vcoding_system_hash_table to be setup.
10544
10545 * coding.h (default_buffer_file_coding): Remove.
10546
10547 * coding.c (default_buffer_file_coding): Remove.
10548 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
10549 than ->symbol, and use the terminal-local coding system.
10550 (syms_of_coding): Don't setup the coding-systems that are not
10551 terminal-local.
10552 (Fdefine_coding_system_internal): Use XCAR/XCDR.
10553
10554 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
10555 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
10556
10557 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
10558 in chartab.c and were re-added here by mistake.
10559 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
10560
10561 * doc.c (Fsnarf_documentation):
10562 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
10563 src to etc.
10564
10565 * ChangeLog.10: Add mistakenly removed entry.
10566
10567 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
10568
10569 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
10570
10571 2008-02-01 Miles Bader <miles@gnu.org>
10572
10573 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
10574 Add extra args to FACE_FOR_CHAR.
10575
10576 2008-02-01 Kenichi Handa <handa@m17n.org>
10577
10578 * keymap.c (where_is_internal_1): If key is a cons, store the copy
10579 in sequence.
10580
10581 * chartab.c (map_sub_char_table, map_char_table): If the range
10582 contains just one character, call the function with that character
10583 even if the depth is not 3.
10584
10585 2008-02-01 Jason Rumney <jasonr@gnu.org>
10586
10587 * w32font.c (w32font_text_extents): Calculate metrics for the
10588 whole string.
10589
10590 2008-02-01 Jason Rumney <jasonr@gnu.org>
10591
10592 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
10593
10594 2008-02-01 Jason Rumney <jasonr@gnu.org>
10595
10596 * w32term.c (x_set_glyph_string_clipping): Use
10597 get_glyph_string_clip_rects.
10598 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
10599 Adjust for the change of struct glyph_string.
10600
10601 * w32font.c (w32font_draw): Do clipping here.
10602
10603 2008-02-01 Kenichi Handa <handa@m17n.org>
10604
10605 * xftfont.c (xftfont_draw): Adjust for the change of struct
10606 glyph_string.
10607
10608 * xterm.c (x_set_glyph_string_clipping): Use
10609 get_glyph_string_clip_rects.
10610 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
10611 Adjust for the change of struct glyph_string.
10612
10613 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
10614 the resulting clip(s}.
10615 (expose_overlaps): Add arg r. Change callers. Set it to
10616 row->clip temporarily.
10617 (expose_window): Redraw rows overlapping the exposed area.
10618
10619 * dispextern.h (struct glyph_row): New member clip.
10620 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
10621 clip_height, new member clip, and num_clips.
10622
10623 2008-02-01 Kenichi Handa <handa@m17n.org>
10624
10625 * data.c (Fchar_or_string_p): Fix docstring.
10626
10627 2008-02-01 Kenichi Handa <handa@m17n.org>
10628
10629 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
10630 create a temporary XftDraw object.
10631
10632 2008-02-01 Kenichi Handa <handa@m17n.org>
10633
10634 * font.c (Ffontp): Fix docstring.
10635
10636 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
10637 strong evidence of ISO-2022.
10638
10639 2008-02-01 Kenichi Handa <handa@m17n.org>
10640
10641 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
10642 SYNTAX_ENTRY_FOLLOW_PARENT.
10643
10644 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
10645
10646 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
10647 its type.
10648 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
10649 Update to the new type of weak_hash_tables and next_weak.
10650
10651 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
10652 a plain C pointer to Lisp_Hash_Table.
10653
10654 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
10655 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
10656 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
10657 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
10658 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
10659 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
10660 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
10661 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
10662 (GC_EQ): Remove since they've been identical to their non-GC_
10663 alter-egos ever since the markbit was eradicated.
10664
10665 * alloc.c:
10666 * buffer.c:
10667 * buffer.h:
10668 * data.c:
10669 * fileio.c:
10670 * filelock.c:
10671 * fns.c:
10672 * frame.h:
10673 * lisp.h:
10674 * macterm.c:
10675 * print.c:
10676 * process.c:
10677 * w32fns.c:
10678 * w32menu.c:
10679 * w32term.c:
10680 * xfns.c:
10681 * xmenu.c:
10682 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
10683
10684 2008-02-01 Kenichi Handa <handa@m17n.org>
10685
10686 * chartab.c (map_sub_char_table): Make it work for the top-level
10687 char-table. Fix handling of parent char-table.
10688 (map_char_table): Adjust for the above change.
10689
10690 2008-02-01 Jason Rumney <jasonr@gnu.org>
10691
10692 * w32font.c (Qgdi): Rename from Qw32.
10693
10694 2008-02-01 Jason Rumney <jasonr@gnu.org>
10695
10696 * w32bdf.c (get_quoted_string): Make function static.
10697
10698 2008-02-01 Kenichi Handa <handa@m17n.org>
10699
10700 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
10701 bigger ascent and descent than those of the font, use them as
10702 font's ascent and descent.
10703
10704 2008-02-01 Kenichi Handa <handa@m17n.org>
10705
10706 * Makefile.in (${lispsource}international/charprop.el): Move this
10707 target within "#ifdef HAVE_UNIDATA" and "#endif".
10708
10709 2008-02-01 Kenichi Handa <handa@m17n.org>
10710
10711 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
10712 (shortlisp): Add ../lisp/language/tai-viet.el.
10713
10714 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
10715
10716 * Makefile.in (${lispsource}international/charprop.el): Depend on
10717 temacs${EXEEXT}.
10718
10719 2008-02-01 Jason Rumney <jasonr@gnu.org>
10720
10721 * w32font.c (w32font_close): Delete the GDI font object.
10722
10723 * w32menu.c: Include character.h.
10724
10725 * w32proc.c: Likewise.
10726
10727 * w32select.c: Likewise.
10728
10729 * makefile.w32-in (w32proc.o): Depend on character.h.
10730
10731 2008-02-01 Jason Rumney <jasonr@gnu.org>
10732
10733 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
10734
10735 * w32menu.c (syms_of_w32menu): Likewise.
10736
10737 * w32proc.c (syms_of_ntproc): Likewise.
10738
10739 * w32select.c (syms_of_w32select): Likewise.
10740
10741 * w32term.c (syms_of_w32term): Likewise.
10742
10743 2008-02-01 Jason Rumney <jasonr@gnu.org>
10744
10745 * w32font.c (w32font_draw): Delete brush after using it.
10746
10747 2008-02-01 Jason Rumney <jasonr@gnu.org>
10748
10749 * w32font.c (w32font_open): Don't set font_idx.
10750 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
10751 to font settings.
10752 (w32font_draw): Fill background explicitly.
10753
10754 2008-02-01 Jason Rumney <jasonr@gnu.org>
10755
10756 * w32term.c (w32_initialize): Don't call w32font_initialize.
10757
10758 * w32font.c (w32font_info): Remove subranges.
10759 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
10760 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
10761 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
10762 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
10763 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
10764 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
10765 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
10766 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
10767 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
10768 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
10769 New symbols.
10770 (font_callback_data): New struct.
10771 (w32font_list, w32font_match): Use it.
10772 (w32font_open): Don't populate subranges.
10773 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
10774 (w32font_encode_char): Always return unicode code-point as-is.
10775 (w32font_text_extents): Supply a transformation matrix to
10776 GetGlyphOutline. Never look up by glyph index. Avoid looping
10777 twice. Use unicode version of GetTexExtentPoint32 instead of
10778 glyph index version.
10779 (set_fonts_frame): Remove.
10780 (w32_enumfont_pattern_entity): Add frame parameter, use it to
10781 set frame parameter. Use backward compatible fake foundries.
10782 Save generic family in extra slot under QCfamily. Make width slot
10783 constant. Save QCspacing value. Save list of scripts instead of
10784 binary subranges.
10785 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
10786 (add_font_entity_to_list): Use font_callback_data struct. Filter
10787 unwanted fonts.
10788 (add_one_font_entity_to_list): Use font_callback_data struct.
10789 (w32_registry): Default to iso10646_1.
10790 (fill_in_logfont): Use dpi from extra slot. Don't bother with
10791 string font registries. Don't fill in font name if it is a generic
10792 family name, fill family instead. Use spacing, family and script
10793 extra info to fill pitch, family and charset fields.
10794 (list_all_matching_fonts): Use font_callback_data struct.
10795 (unicode_range_for_char): Remove.
10796 (font_supported_scripts): New function.
10797 (w32font_initialize): Remove.
10798 (syms_of_w32font): Update which symbols are defined.
10799
10800 2008-02-01 Jason Rumney <jasonr@gnu.org>
10801
10802 * font.c (font_pixel_size): Reverse assq_no_quit args.
10803
10804 * w32term.h (FONT_WIDTH): Report max width, not average.
10805 (FONT_MAX_WIDTH): Remove.
10806 (FONT_AVG_WIDTH): New macro.
10807
10808 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
10809 redefinition of FONT_WIDTH.
10810
10811 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
10812 (w32_cache_char_metrics): Use FONT_WIDTH.
10813
10814 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
10815
10816 2008-02-01 Jason Rumney <jasonr@gnu.org>
10817
10818 * w32font.c (w32font_open): Make lfHeight negative.
10819
10820 * w32fns.c (x_default_font_parameter): Use new style font name.
10821 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
10822
10823 2008-02-01 Jason Rumney <jasonr@gnu.org>
10824
10825 * w32font.c (QCsubranges): New symbol.
10826 (w32font_open, w32font_has_char): Get subranges from subproperty
10827 of extra.
10828 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
10829 (syms_of_w32font): Define :subranges symbol.
10830
10831 * font.c (font_put_extra): Expose externally.
10832
10833 * font.h (font_put_extra): Move declaration from font.c.
10834
10835 * font.c (Ffont_get): Use font driver to determine otf capability.
10836 (adjust_anchor): Check if driver defines anchor_point before using.
10837
10838 * w32font.c (w32font_open): Handle size, height and pixel_size better.
10839 (w32font_draw): Use options.
10840 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
10841 Fix detection of truetype fonts.
10842 (registry_to_w32_charset): Handle charsets other than iso8859-1
10843 expressed as lisp symbols.
10844 (w32_registry): Express charset as lisp symbol.
10845 (fill_in_logfont): Reverse pixel and point height logic.
10846 Don't set width here. Set quality to default.
10847
10848 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
10849 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
10850
10851 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
10852 Remove redundant loop and allocation.
10853
10854 * makefile.w32-in (font.o, w32font.o): New objects.
10855 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
10856 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
10857
10858 * xdisp.c (fill_composite_glyph_string): Make the first arg to
10859 STORE_XCHARB a valid l-value.
10860
10861 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
10862 calculations for non-Truetype fonts.
10863 (x_draw_glyph_string): Sync with xterm.c.
10864 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
10865 Remove redundant code.
10866 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
10867
10868 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
10869 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
10870
10871 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
10872 (x_to_w32_charset, w32_to_x_charset): Expose externally.
10873
10874 * w32font.c: New file for w32 font backend.
10875
10876 2008-02-01 Kenichi Handa <handa@m17n.org>
10877
10878 * term.c: Don't include "buffer.h" twice.
10879
10880 2008-02-01 Kenichi Handa <handa@m17n.org>
10881
10882 * character.c (Funibyte_string): New function.
10883 (syms_of_character): Defsubr it.
10884
10885 2008-02-01 Jason Rumney <jasonr@gnu.org>
10886
10887 * w32term.c [USE_FONT_BACKEND]:
10888 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
10889 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
10890 (x_draw_glyph_string, x_draw_glyph_string_foreground)
10891 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
10892 (x_free_frame_resources): Sync with xterm.c.
10893
10894 2008-02-01 Andreas Schwab <schwab@suse.de>
10895
10896 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
10897 char-table size.
10898
10899 2008-02-01 Kenichi Handa <handa@m17n.org>
10900
10901 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
10902
10903 2008-02-01 Kenichi Handa <handa@m17n.org>
10904
10905 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
10906 font_otf_gpos, add font_drive_otf.
10907
10908 * fontset.c (fontset_find_font): Pay attention to font size
10909 specified for a font.
10910 (reorder_font_vector): Check contents of font_def.
10911
10912 * font.c (struct otf_list): Delete it.
10913 (otf_list): Make it a lisp variable.
10914 (otf_open): Use lispy otf_list.
10915 (generate_otf_features): Rename from parse_gsub_gpos_spec.
10916 (check_otf_features): New function.
10917 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
10918 New functions.
10919 (font_drive_otf): New function merging font_otf_gsub and
10920 font_otf_gpos.
10921 (font_open_for_lface): New arg spec. Change argument order.
10922 (font_load_for_face): Adjust for the change of font_open_for_lface.
10923 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
10924 Ffont_otf_gpos.
10925 (syms_of_font): Staticpro otf_list. Delete defsubr of
10926 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
10927
10928 * xfaces.c (set_font_frame_param): Adjust for the change of
10929 font_open_for_lface.
10930
10931 * font.h (font_open_for_lface): Adjust prototype.
10932 (struct font_driver): Delete members otf_gsub and otf_gpos, add
10933 member otf_drive.
10934 (font_otf_gsub, font_otf_gpos): Delete externs.
10935 (font_drive_otf): Extern it.
10936
10937 2008-02-01 Kenichi Handa <handa@m17n.org>
10938
10939 * font.c (font_at): If the window W is not on a window system,
10940 return Qnil.
10941
10942 * coding.c (produce_chars, encode_coding): Don't call
10943 insert_from_gap if no characters to produce.
10944
10945 2008-02-01 Kenichi Handa <handa@m17n.org>
10946
10947 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
10948 Fclear_face_cache.
10949
10950 * xfaces.c (face_for_font): Check also face->font==font->font.font.
10951
10952 2008-02-01 Miles Bader <miles@gnu.org>
10953
10954 * emacs.c (main): Change default value of `enable_font_backend' to 1.
10955 Parse "--disable-font-backend" option.
10956 (standard_args): Add "--disable-font-backend" option.
10957
10958 2008-02-01 Kenichi Handa <handa@m17n.org>
10959
10960 * fontset.c (fontset_find_font): New function.
10961 (fontset_font): Use fontset_find_font.
10962 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
10963 Register the specified font for all Latin characters.
10964 (new_fontset_from_font): Register the specified font for all Latin
10965 characters.
10966 (dump_fontset): For a realized fontset, include the base fontset
10967 name in the returned vector.
10968
10969 2008-02-01 Kenichi Handa <handa@m17n.org>
10970
10971 * character.h (CHAR_STRING): Cast C to unsigned on calling
10972 char_string.
10973
10974 * character.c (char_string): Type of arg C changed to unsigned.
10975 Signal an error if C is an invalid character code.
10976
10977 * editfns.c (general_insert_function, Fchar_to_string):
10978 Use CHARACTERP, not INTEGERP.
10979
10980 2008-02-01 Kenichi Handa <handa@m17n.org>
10981
10982 * character.h (MIN_MULTIBYTE_LEADING_CODE)
10983 (MAX_MULTIBYTE_LEADING_CODE): New macros.
10984
10985 * regex.c (analyse_first): Fix for multibyte characters in "case
10986 charset:" and "case categoryspec:".
10987
10988 2008-02-01 Andreas Schwab <schwab@suse.de>
10989
10990 * Makefile.in (LIBES): Move standard libraries to the end.
10991
10992 2008-02-01 Kenichi Handa <handa@m17n.org>
10993
10994 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
10995 nonzero, don't shrink the buffer nextb.
10996
10997 * buffer.h (struct buffer_text): New member inhibit_shrinking.
10998
10999 * coding.c (coding_alloc_by_making_gap): New arg offset.
11000 (alloc_destination): Call coding_alloc_by_making_gap with the arg
11001 offset.
11002 (decode_coding_iso_2022): Update coding->safe_charsets.
11003 (decode_coding_gap): Temporarily set
11004 current_buffer->text->inhibit_shrinking to 1.
11005
11006 2008-02-01 Kenichi Handa <handa@m17n.org>
11007
11008 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
11009 indexing into elements of s->cmp and s->char2b.
11010
11011 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
11012
11013 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
11014
11015 2008-02-01 Kenichi Handa <handa@m17n.org>
11016
11017 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
11018 target_multibyte instead of multibyte.
11019 (re_match_2_internal): Call bcmp_translate with target_multibyte.
11020 (bcmp_translate): Change the argument name from multibyte to
11021 target_multibyte.
11022
11023 2008-02-01 Kenichi Handa <handa@m17n.org>
11024
11025 These changes are to compile a regexp into a pattern that can be
11026 used both for multibyte and unibyte targets.
11027
11028 * Makefile.in (search.o): Depend on charset.h.
11029
11030 * character.c (multibyte_char_to_unibyte_safe): New function.
11031
11032 * search.c: Include "charset.h".
11033 (compile_pattern_1): Delete argument multibyte. Don't set
11034 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
11035 (compile_pattern): Don't compare cp->buf.target_multibyte.
11036 Compare cp->buf.charset_unibyte.
11037 (compile_pattern): Set cp->buf.target_multibyte.
11038
11039 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
11040
11041 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
11042
11043 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
11044 multibyte. Change callers.
11045 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
11046 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
11047 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
11048 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
11049 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
11050 (regex_compile): Make the compiled pattern usable both for
11051 multibyte and unibyte targets.
11052 (analyse_first): Make the fastmap usable both for multibyte and
11053 unibyte targets.
11054 (TRANSLATE_VIA_MULTIBYTE): Delete.
11055 (re_match_2_internal): Pay attention to the case that the
11056 multibyteness of bufp and target may be different.
11057
11058 2008-02-01 Kenichi Handa <handa@m17n.org>
11059
11060 * xdisp.c (x_produce_glyphs): When a font is not found, make the
11061 empty box occupy at least one column width.
11062
11063 2008-02-01 Miles Bader <miles@gnu.org>
11064
11065 * Makefile.in: Remove redundant HAVE_XFT clause.
11066
11067 2008-02-01 Kenichi Handa <handa@m17n.org>
11068
11069 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
11070
11071 2008-02-01 Kenichi Handa <handa@m17n.org>
11072
11073 * fontset.c (Finternal_char_font): Fix for the case of POSITION
11074 being nil.
11075
11076 2008-02-01 Kenichi Handa <handa@m17n.org>
11077
11078 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
11079
11080 2008-02-01 Kenichi Handa <handa@m17n.org>
11081
11082 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
11083
11084 2008-02-01 Kenichi Handa <handa@m17n.org>
11085
11086 * search.c (simple_search): Fix previous change.
11087
11088 2008-02-01 Kenichi Handa <handa@m17n.org>
11089
11090 * xftfont.c (ftfont_font_format): Extern declaration.
11091
11092 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
11093
11094 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
11095 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
11096
11097 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
11098 (ftfont_font_format): Fix previous change.
11099
11100 * font.h (Ffont_xlfd_name): EXFUN it.
11101
11102 * font.c (font_parse_xlfd): Fix the array size of `f'.
11103 (register_font_driver): Use EQ to compare driver->type.
11104
11105 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
11106 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
11107 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
11108
11109 2008-02-01 Kenichi Handa <handa@m17n.org>
11110
11111 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
11112 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
11113
11114 2008-02-01 Kenichi Handa <handa@m17n.org>
11115
11116 * xfont.c (xfont_open): Set font->format.
11117
11118 * xftfont.c (xftfont_open): Set font->format.
11119
11120 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
11121 (ftfont_list): Include FC_FONTFORMAT in FcObject.
11122 (ftfont_open): Set font->format.
11123 (ftfont_font_format): New function.
11124
11125 * font.h (struct font): New member format.
11126
11127 * font.c (Qopentype): New variable.
11128 (syms_of_font): Defsym it.
11129 (Fquery_font): Change the format of the last element of the return
11130 value.
11131
11132 2008-02-01 Kenichi Handa <handa@m17n.org>
11133
11134 * xfns.c (xic_create_xfontset): Try the default fontset name as a
11135 last resort.
11136
11137 2008-02-01 Kenichi Handa <handa@m17n.org>
11138
11139 * coding.c (detect_coding_charset): Fix detection of multi-byte
11140 charset.
11141
11142 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
11143
11144 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
11145
11146 2008-02-01 Kenichi Handa <handa@m17n.org>
11147
11148 * xdisp.c (get_next_display_element): Set it->face_id for the
11149 first component of a composition.
11150 (x_produce_glyphs): Check if the font is changed or not for composition.
11151
11152 2008-02-01 Kenichi Handa <handa@m17n.org>
11153
11154 * fontset.c (Qlatin): New variable.
11155 (syms_of_fontset): Define it as a lisp symbol.
11156 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
11157
11158 2008-02-01 Kenichi Handa <handa@m17n.org>
11159
11160 * font.c (font_unparse_fcname): Pay attention to the case that
11161 some of font property is a null string.
11162
11163 2008-02-01 Kenichi Handa <handa@m17n.org>
11164
11165 * term.c: Include "composite.h".
11166 (encode_terminal_code): Output all components of composition.
11167 Check the size of encode_terminal_src.
11168 (produce_glyphs): For composition, call produce_composite_glyph.
11169 (append_composite_glyph, produce_composite_glyph): New functions.
11170
11171 * xdisp.c (x_produce_glyphs): In handling composition, if a font
11172 is not found, get font_info from the current ascii face.
11173
11174 2008-02-01 Kenichi Handa <handa@m17n.org>
11175
11176 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
11177 buffer-file-name to Qnil before calling insert_from_buffer.
11178
11179 * font.c (font_unparse_fcname): Pay attention to the case that
11180 foundry is a null string.
11181
11182 2008-02-01 Kenichi Handa <handa@m17n.org>
11183
11184 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
11185
11186 * font.c (Qunicode_sip): New variable.
11187 (syms_of_font): Declare it as a Lisp symbol.
11188
11189 * font.h (Qunicode_sip): Extern it.
11190
11191 2008-02-01 Kenichi Handa <handa@m17n.org>
11192
11193 * composite.c (get_composition_id): Pay attention to TAB component.
11194
11195 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
11196 TAB. Adjust for the change of s->char2b which always points to
11197 the first element of allocated memory.
11198
11199 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
11200
11201 * xdisp.c (handle_composition_prop): Set it->c to the first
11202 non-TAB component.
11203 (fill_composite_glyph_string): Change argument.
11204 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
11205 (x_produce_glyphs): Fix handling of left/right padding.
11206
11207 2008-02-01 Kenichi Handa <handa@m17n.org>
11208
11209 * coding.c (detect_coding_system): Fix for handling off
11210 inhibit_iso_escape_detection. Fix for the case that no coding
11211 system is defined for a specific coding category.
11212
11213 2008-02-01 Kenichi Handa <handa@m17n.org>
11214
11215 * font.c (font_matching_entity): Delete unused local var.
11216
11217 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
11218 opening a font.
11219
11220 * fileio.c (Finsert_file_contents): On recovering a file, assume
11221 Unix-like eol.
11222 (choose_write_coding_system): On auto-saving a file, force
11223 Unix-like eol.
11224
11225 * coding.c (setup_coding_system): Fix setting of
11226 coding->common_flags based on eol_type.
11227 (coding_inherit_eol_type): If PARENT is not nil, be sure to
11228 inherit from it.
11229
11230 2008-02-01 Kenichi Handa <handa@m17n.org>
11231
11232 * alloc.c (NSTATICS): Increas to 0x600.
11233
11234 2008-02-01 Kenichi Handa <handa@m17n.org>
11235
11236 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
11237 (ftfont_list): Don't check :name property.
11238 (ftfont_match): New function.
11239 (ftfont_pattern_entity): If the pattern doesn't contain
11240 FC_SPACING, don't assume FC_MONO.
11241
11242 * font.h (struct font_driver): New member `match'.
11243 (font_update_drivers): Adjust prototype.
11244
11245 * font.c (font_parse_fcname, font_parse_name): Don't change :name
11246 property of FONT.
11247 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
11248 them unconditionally.
11249 (font_matching_entity): New function.
11250 (font_open_by_name): Try font_matching_entity if exact match is
11251 not found.
11252 (font_update_drivers): Delete the arg FONT. Return a list of
11253 actually used backends. Don't free faces, font caches here.
11254 Don't store data in frame parameters. Don't call x_set_font.
11255 (Ffont_spec): Store :name property as is.
11256 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
11257 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
11258 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
11259 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
11260 Call font->driver->otf_gsub instead of font_otf_gsub.
11261
11262 * frame.c (x_set_font_backend): Do more works that were done in
11263 font_update_drivers before.
11264
11265 * xfont.c (xfont_match): New function.
11266 (xfont_driver): Set xfont_driver.match to xfont_match.
11267 (xfont_draw): Set font in GC if necessary.
11268
11269 * ftxfont.c (ftxfont_match): New function.
11270 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
11271
11272 * xftfont.c (xftfont_match): New function.
11273 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
11274
11275 2008-02-01 Kenichi Handa <handa@m17n.org>
11276
11277 * font.h (struct font): New member scalable.
11278 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
11279 (font_otf_gsub): Adjust prototype.
11280
11281 * font.c (font_otf_capability): Fix handling of the default langsys.
11282 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
11283 Check the contents of SPEC.
11284 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
11285 (check_gstring): New function.
11286 (REPLACEMENT_CHARACTER): New macro.
11287 (font_otf_gsub): New arg alternate_subst. Be sure to set all
11288 glyph codes of GSTRING.
11289 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
11290 (font_prepare_composition): Set cmp->glyph_len.
11291 (font_open_entity): Set font->scalable.
11292 (Ffont_get): Handle :otf property.
11293 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
11294 functions.
11295 (Fquery_font): Use font->font.full_name.
11296 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
11297 Sfont_otf_alternates.
11298
11299 * ftfont.c (ftfont_open): Set font->font.full_name and
11300 font->font.name properly. Fix calculation of font->font.height
11301 and font->min_width.
11302
11303 * ftxfont.c (ftxfont_create_gcs): New function.
11304 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
11305 (ftxfont_draw_backgrond): Fix filling region.
11306 (ftxfont_default_fid): New function.
11307 (ftxfont_open): Set xfont->fid to the return value of
11308 ftxfont_default_fid.
11309 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
11310 (ftxfont_done_face): Free only GCs that are created by
11311 ftxfont_create_gcs.
11312 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
11313
11314 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
11315 Clip to src->width, etc (not src->clip_XXX).
11316
11317 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
11318 FontBackend frame parameter.
11319
11320 2008-02-01 Kenichi Handa <handa@m17n.org>
11321
11322 * font.h (struct font_driver_list): New member `on'.
11323 (Fclear_font_cache): EXFUN it.
11324 (font_update_drivers): Extern it.
11325
11326 * font.c (font_unparse_fcname): Fix typo (swidth->width).
11327 (font_list_entities): Check driver_list->on.
11328 (register_font_driver): Initalize `on' member to 0.
11329 (font_update_drivers): New function.
11330 (Fclear_font_cache): Check driver_list->on.
11331
11332 * frame.h (Qfont_backend): Extern it.
11333 (x_set_font_backend): Extern it.
11334
11335 * frame.c (Qfont_backend): New variable.
11336 (frame_parms): New element for font-backend.
11337 (x_set_font_backend): New function.
11338
11339 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
11340 FontBackend frame parameter.
11341 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
11342 x_set_font_backend.
11343
11344 * xfont.c (xfont_list): Don't try listing by :name property if the
11345 name is not for XLFD.
11346
11347 2008-02-01 Kenichi Handa <handa@m17n.org>
11348
11349 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
11350 (LGLYPH_SET_TO): New macros.
11351 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
11352 element of G is vector or not.
11353 (font_at): Extern it.
11354
11355 * font.c: Include window.h.
11356 (font_lispy_object): New function.
11357 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
11358 end of valid glyph.
11359 (font_close_object): Fix getting (struct font *).
11360 (font_at): New function.
11361 (Ffont_get): If FONT is a font-object, get entity from it.
11362 (Ffont_make_gstring): Initialize elements of glyphs with nil.
11363 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
11364 range check.
11365 (Ffont_at): New function.
11366 (syms_of_font): Defsubr Sfont_at.
11367
11368 * xdisp.c (it_props): Move the entry for Qauto_composed to just
11369 before the entry for Qcomposition.
11370 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
11371 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
11372 the font in gstring.
11373 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
11374 LGLYPH_FORM (g) to detect the end of valid glyph.
11375 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
11376 we are composing with gstring.
11377
11378 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
11379 Check if adjustment is vector or not.
11380
11381 * Makefile.in (font.o): Make it depends on window.h.
11382
11383 2008-02-01 Kenichi Handa <handa@m17n.org>
11384
11385 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
11386 adjustment is vector or not.
11387
11388 2008-02-01 Miles Bader <miles@gnu.org>
11389
11390 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
11391
11392 2008-02-01 Kenichi Handa <handa@m17n.org>
11393
11394 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
11395 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
11396 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
11397
11398 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
11399 (DEVICE_DELTA): Fix typo.
11400 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
11401 LGLYPH format.
11402
11403 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
11404 the change of LGLYPH format.
11405
11406 2008-02-01 Kenichi Handa <handa@m17n.org>
11407
11408 * ftfont.c (ftfont_list): Fix typo.
11409 (ftfont_build_basic_charsets): Don't include letters with diacritics.
11410
11411 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
11412
11413 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
11414
11415 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
11416 xftface_info is non-NULL.
11417
11418 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
11419
11420 * ftfont.c (ftfont_list): Move misplaced #endif.
11421
11422 2008-02-01 Kenichi Handa <handa@m17n.org>
11423
11424 * ftfont.c (ftfont_list): Pay attention to the case that
11425 FC_CAPABILITY is not defined.
11426
11427 2008-02-01 Kenichi Handa <handa@m17n.org>
11428
11429 * xftfont.c (xftfont_open): Set charset related members to -1.
11430
11431 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
11432 QCname.
11433 (ftfont_open): Set charset related members to -1.
11434
11435 * fontset.c (Votf_script_alist): New variable.
11436 (syms_of_fontset): Initialize it.
11437 (fontset_font): Delete unused variable.
11438
11439 * fontset.h (Votf_script_alist): Extern it.
11440
11441 * font.c (font_find_for_lface): Optimize code.
11442
11443 * font.h (font_close_object, font_merge_old_spec): Extern them.
11444
11445 2008-02-01 Kenichi Handa <handa@m17n.org>
11446
11447 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
11448 (syms_of_font): Initialize them.
11449 (font_pixel_size): Allow float value in dpi.
11450 (font_prop_validate_type): Delete.
11451 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
11452 Change caller.
11453 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
11454 (font_prop_validate_extra): Delete.
11455 (font_prop_validate_spacing): New function.
11456 (font_property_table): Add elements for all known properties.
11457 (get_font_prop_index): Rename from check_font_prop_name. New
11458 argument FROM. Change caller.
11459 (font_prop_validate): Validate all known properties.
11460 (font_put_extra): Delete argument force. Change caller.
11461 (font_expand_wildcards): Make it static. Fix the way of shrinking
11462 the possible range.
11463 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
11464 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
11465 Change caller.
11466 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
11467 (font_parse_fcname): Delete argument merge. Fix parsing of point
11468 size. Don't validate properties values here. Change caller.
11469 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
11470 (font_open_by_name): Delete unused variable.
11471 (Ffont_spec): Likewise. Validate property values.
11472 (Ffont_match_p): New function.
11473
11474 * font.h (QCscalable): Extern it.
11475 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
11476
11477 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
11478
11479 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
11480 (xfont_list_pattern): New function.
11481 (xfont_list): Use xfont_list_pattern.
11482
11483 2008-02-01 Kenichi Handa <handa@m17n.org>
11484
11485 * font.h (Flist_fonts): EXFUN it.
11486
11487 2008-02-01 Jason Rumney <jasonr@gnu.org>
11488
11489 * w32term.c (w32_initialize): Add back smoothing_type and
11490 smoothing_enabled definitions.
11491
11492 2008-02-01 Kenichi Handa <handa@m17n.org>
11493
11494 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
11495 s->face->font on determining underline position.
11496
11497 2008-02-01 Kenichi Handa <handa@m17n.org>
11498
11499 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
11500 (font_has_char): Accept font-object too.
11501 (font_find_for_lface): Try at first with a size specified in face.
11502
11503 2008-02-01 Kenichi Handa <handa@m17n.org>
11504
11505 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
11506 font_open_by_name.
11507
11508 2008-02-01 Kenichi Handa <handa@m17n.org>
11509
11510 * font.h (QCspacing, QCdpi): Extern them.
11511 (enum font_spacing): New enum.
11512 (FONT_PIXEL_SIZE_QUANTUM): New macro.
11513
11514 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
11515 (QCspacing, QCdpi): New variables.
11516 (syms_of_font): Initialize them.
11517 (font_pixel_size): New function.
11518 (font_put_extra): New function.
11519 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
11520 in FONT_EXTRA.
11521 (font_parse_fcname): Handle enumerated values (e.g. bold).
11522 Fix handling font size. Add QCname property that contains only
11523 unknown properties.
11524 (font_score): Change argument. Change caller. Pay attention to
11525 FONT_PIXEL_SIZE_QUANTUM.
11526 (font_sort_entites, font_list_entities, font_find_for_lface)
11527 (font_open_for_lface, font_open_by_name): Fix handling of font size.
11528 (Ffont_spec): Add QCname property that contains only unknown properties.
11529
11530 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
11531 include weight in listing pattern, instead check weight of each
11532 listed font. Don't include scalable in pattern. Pay attention to
11533 FONT_PIXEL_SIZE_QUANTUM.
11534
11535 2008-02-01 Kenichi Handa <handa@m17n.org>
11536
11537 * font.c (font_parse_fcname): Fix parsing of point-size.
11538 (font_unparse_fcname): Produce symbolic names for style properties.
11539 (font_list_entities): Handle float size correctly.
11540 (font_open_by_name): Prefer `normal' property values if the name
11541 doesn't specify them.
11542
11543 * fontset.c (Finternal_char_font): Use font_get_name, not
11544 Ffont_xlfd_name.
11545
11546 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
11547 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
11548 pattern. Don't force scalable.
11549
11550 * xftfont.c (xftfont_open): For generating a name, start from
11551 96-byte buffer.
11552
11553 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
11554
11555 * frame.h (x_new_fontset2): Fix prototype.
11556
11557 2008-02-01 Kenichi Handa <handa@m17n.org>
11558
11559 * font.h (struct font_driver): Delete member parse_name.
11560 (font_match_p, font_get_spec, font_parse_fcname)
11561 (font_unparse_fcname): Extern them.
11562 (font_get_name): Adjust prototype.
11563
11564 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
11565 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
11566 (font_expand_wildcards): Fix handling ENCODING field. Avoid
11567 unnecessary checks for weight, slant, and swidth.
11568 (font_parse_fcname): New function.
11569 (font_unparse_fcname): New function.
11570 (font_parse_name): New function.
11571 (font_match_p): New function.
11572 (font_get_name): Change return value to Lisp string.
11573 (font_get_spec): New function.
11574 (Qunspecified, Qignore_defface): Don't extern them.
11575 (font_find_for_lface): Assume that LFACE is fully specified.
11576 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
11577 object, use it for FACE.
11578 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
11579 driver->parse_name.
11580 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
11581
11582 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
11583 prototype.
11584
11585 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
11586 argument F. Don't call Fnew_fontset. Instead, directly call
11587 make_fontset.
11588
11589 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
11590
11591 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
11592 of x_new_fontset2.
11593
11594 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
11595 (Qsans__serif): New variables.
11596 (ftfont_generic_family_list): New variable.
11597 (syms_of_ftfont): Initialize the above variables.
11598 (ftfont_pattern_entity): Delete argument NAME.
11599 (ftfont_list_generic_family): New function.
11600 (ftfont_parse_name): Delete this function.
11601 (ftfont_list): Try generic family only when FcFontList found no font.
11602 (ftfont_list_family): Fix args to FcObjectSetBuild.
11603
11604 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
11605 object in attrs[LFACE_FONT_INDEX].
11606 (set_lface_from_font_name): Cancel all changes for font-backend.
11607 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
11608 function.
11609 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
11610 font object in QCfont attribute.
11611 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
11612 (realize_default_face) [USE_FONT_BACKEND]: Call
11613 set_lface_from_font_and_fontset.
11614
11615 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
11616 "fixed", and signal error here if no suitable font was found.
11617
11618 * xfont.c (xfont_parse_name): Delete this function.
11619
11620 * xftfont.c (xftfont_open): Change coding style of error
11621 handling. Generate fontconfig's fontname pattern.
11622
11623 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
11624 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
11625
11626 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
11627 Both args FONTSET and FONT_OBJECT must be existing ones.
11628
11629 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11630
11631 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
11632
11633 2008-02-01 Kenichi Handa <handa@m17n.org>
11634
11635 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
11636
11637 * font.h (struct font): Fix typo.
11638
11639 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
11640 XLFD_XXX_INDEX.
11641 (enum xlfd_field_mask): New enum.
11642 (intern_font_field): Changed argument. Change caller. If digits
11643 are followed by non-digits, return a symbol.
11644 (font_expand_wildcards): New function.
11645 (font_parse_xlfd): Fix wildcard handling.
11646 (Ffont_spec): If :name is specified, reflect the info in the other
11647 properties.
11648
11649 * ftfont.c (ftfont_pattern_entity): Fix typo.
11650 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
11651 locale.
11652
11653 2008-02-01 Kenichi Handa <handa@m17n.org>
11654
11655 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
11656
11657 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
11658 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
11659 registry doesn't specify encoding part.
11660 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
11661 (font_open_by_name): At first try parsing the name.
11662 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
11663 as Lisp symbols.
11664
11665 * fontset.c (reorder_font_vector): Pay attention to the case that
11666 the 3rd element of font_def is nil.
11667 (fontset_font): For the default fontset, append one more fontset
11668 elements for a script-based font specification. Don't add script
11669 attribute on finding a font.
11670 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
11671 font name.
11672 (fontset_ascii_font): If a font can't be opened, return nil.
11673
11674 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
11675 (ftfont_pattern_entity): New function.
11676 (ftfont_get_cache): Assume that freetype_font_cache is already
11677 initialized.
11678 (ftfont_list): Handle the case that a file is specified in font
11679 name. Use ftfont_pattern_entity to generate entities.
11680 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
11681 (syms_of_ftfont): Initialize freetype_font_cache.
11682
11683 * xftfont.c (xftfont_open): Make the font name fontconfig's
11684 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
11685 (xftfont_close): Free font->font.name if not NULL.
11686
11687 * xfont.c (xfont_list): If script is specified for a font, return
11688 null_vector.
11689 (xfont_list_family): Declare argument type.
11690
11691 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
11692 name, set LFACE_FONT (lface) to nil.
11693
11694 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
11695 return Qnil.
11696
11697 2008-02-01 Kenichi Handa <handa@m17n.org>
11698
11699 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
11700 (standard_args): Add "-enable-font-backend".
11701
11702 2008-02-01 Kenichi Handa <handa@m17n.org>
11703
11704 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
11705 (struct xftdraw_list, xftdraw_list): Delete them.
11706 (register_xftdraw, check_xftdraw): Delete them.
11707 (xftfont_prepare_face): Don't call register_xftdraw.
11708 (xftfont_done_face): Don't call check_xftdraw.
11709 (xftfont_draw): Get background color only when with_background is
11710 nonzero.
11711
11712 * xfont.c (xfont_encode_char): Fix calculation of char2b.
11713
11714 2008-02-01 Kenichi Handa <handa@m17n.org>
11715
11716 These changes are for the new font handling codes.
11717
11718 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
11719 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
11720 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
11721 (FONTSRC, FONTOBJ): New variables.
11722 (obj): Add $(FONTOBJ).
11723 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
11724 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
11725 @LIBOTF_LIBS@.
11726 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
11727 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
11728
11729 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
11730
11731 * character.h (Vscript_representative_chars): Extern it.
11732
11733 * character.c (Vscript_representative_chars): New variable.
11734 (syms_of_character): Declare it as a Lisp variable.
11735
11736 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
11737 enable_font_backend is nonzero, accept the composition method
11738 COMPOSITION_WITH_GLYPH_STRING.
11739
11740 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
11741 enumeration COMPOSITION_WITH_GLYPH_STRING.
11742
11743 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
11744 members clip_x, clip_y, clip_width, and clip_height.
11745 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
11746
11747 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
11748 --enable-font-backend. Call syms_of_font.
11749
11750 * fns.c (assoc_no_quit): New function.
11751
11752 * fontset.h (FONT_INFO_FROM_FACE): New macro.
11753 (face_for_font, new_fontset_from_font)
11754 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
11755
11756 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
11757 (fontset_font, fontset_ascii, face_for_char)
11758 (make_fontset_for_ascii_face, Ffont_info)
11759 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
11760 is nonzero, use font-backend mechanism.
11761 (find_font_encoding): Make it non-static.
11762 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
11763 New functions.
11764
11765 * frame.h (struct frame): New members resx and resy.
11766 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
11767 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
11768
11769 * frame.c [USE_FONT_BACKEND]: Include "font.h".
11770 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
11771
11772 * lisp.h (assoc_no_quit): Extern it.
11773
11774 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
11775 Through out the file, use FONT_INFO_FROM_FACE instead of
11776 FONT_INFO_FROM_ID, use get_per_char_metric instead of
11777 rif->per_char_metric.
11778 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
11779 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
11780 (get_glyph_face_and_encoding, fill_composite_glyph_string)
11781 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
11782 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
11783 nonzero, use font-backend mechanism.
11784 (get_per_char_metric): New function.
11785
11786 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
11787 (set_lface_from_font_name)
11788 (set_font_frame_param, free_realized_face)
11789 (prepare_face_for_display, clear_face_gcs)
11790 (Finternal_set_font_selection_order, realize_x_face)
11791 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
11792 font-backend mechanism.
11793 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
11794 (load_face_font) [USE_FONT_BACKEND]: Abort.
11795 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
11796 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
11797
11798 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
11799 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
11800 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
11801 nonzero, register all available font drivers. Call
11802 x_default_font_parameter for deciding a font.
11803 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
11804
11805 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
11806 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
11807 (x_set_glyph_string_clipping_exactly)
11808 (x_compute_glyph_string_overhangs)
11809 (x_draw_glyph_string_foreground)
11810 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
11811 (x_free_frame_resources) [USE_FONT_BACKEND]: If
11812 enable_font_backend is nonzero, use font-backend mechanism.
11813 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
11814
11815 2008-02-01 Kenichi Handa <handa@m17n.org>
11816
11817 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
11818 system_eol_type.
11819 (syms_of_coding): Initialize system_eol_type.
11820
11821 * process.c (Fset_process_coding_system): Inherit system's eol
11822 format if necessary.
11823
11824 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11825
11826 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
11827
11828 2008-02-01 Kenichi Handa <handa@m17n.org>
11829
11830 * coding.c (decode_eol): Pay attention to buffer relocation in
11831 del_range_2.
11832 (decode_coding): Call decode_eol before restoring undo_list.
11833
11834 2008-02-01 Kenichi Handa <handa@m17n.org>
11835
11836 * charset.c (Fdefine_charset_internal): Fix setting of
11837 emacs_mule_bytes.
11838
11839 2008-02-01 Kenichi Handa <handa@m17n.org>
11840
11841 * keyboard.c (read_char): Check if C is a character or not before
11842 looking up Vkeyboard_translate_table.
11843
11844 2008-02-01 Kenichi Handa <handa@m17n.org>
11845
11846 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
11847 condition to terminate the loop.
11848
11849 2008-02-01 Kenichi Handa <handa@m17n.org>
11850
11851 * coding.c (produce_composition): Compare charbuf[i] instead of
11852 args[i] against 0.
11853 (Fterminal_coding_system): Use EQ to compare Lisp objects.
11854
11855 2008-02-01 Kenichi Handa <handa@m17n.org>
11856
11857 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
11858 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
11859 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
11860 detect_coding.
11861 (emacs_mule_char): Handle old style (Emacs 20) component character
11862 of a composition.
11863 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
11864 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
11865 composition rule.
11866 (decode_coding_emacs_mule): Handle invalid bytes correctly.
11867
11868 2008-02-01 Kenichi Handa <handa@m17n.org>
11869
11870 * coding.c (encode_coding_ccl): Allocate destination dynamically
11871 when necessary.
11872
11873 2008-02-01 Kenichi Handa <handa@m17n.org>
11874
11875 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
11876 the loop. When quitted, show a proper error message.
11877
11878 2008-02-01 Kenichi Handa <handa@m17n.org>
11879
11880 * xterm.c (x_set_glyph_string_clipping_exactly): Set
11881 src->clip_head and src->clip_tail temporarily instead of src->hl.
11882
11883 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
11884 character sequence.
11885 (Fccl_execute_on_string): Use ASET, not XSET.
11886
11887 2008-02-01 Kenichi Handa <handa@m17n.org>
11888
11889 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
11890
11891 2008-02-01 Kenichi Handa <handa@m17n.org>
11892
11893 * coding.c (decode_coding): Fix the condition of terminating the
11894 decoding loop.
11895
11896 2008-02-01 Kenichi Handa <handa@m17n.org>
11897
11898 * data.c (Faset): On setting a character bigger than 255 in a
11899 unibyte string, signal an error instead of make the string multibyte.
11900
11901 2008-02-01 Kenichi Handa <handa@m17n.org>
11902
11903 * charset.c (map_charset_chars): Fix for ascii-compatible charset
11904 made by a mapping table.
11905
11906 2008-02-01 Kenichi Handa <handa@m17n.org>
11907
11908 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
11909 not.
11910 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
11911 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
11912
11913 * xterm.c (x_draw_composite_glyph_string_foreground): Check
11914 s->face is NULL or not.
11915
11916 2008-02-01 Kenichi Handa <handa@m17n.org>
11917
11918 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
11919 (x_draw_glyph_string): Fix drawing of right_overhang and
11920 left_overhang around/on cursor.
11921
11922 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
11923
11924 2008-02-01 Kenichi Handa <handa@m17n.org>
11925
11926 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
11927
11928 2008-02-01 Kenichi Handa <handa@m17n.org>
11929
11930 * coding.c (Fdefine_coding_system_internal)
11931 (Fdefine_coding_system_alias): Avoid a duplicated element in
11932 Vcoding_system_alist.
11933
11934 2008-02-01 Kenichi Handa <handa@m17n.org>
11935
11936 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
11937
11938 * coding.c (Qcoding_system_define_form): New variable.
11939 (syms_of_coding): Intern and staticpro it.
11940 (Fcoding_system_p): Check Qcoding_system_define_form.
11941 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
11942
11943 * coding.h (CODING_SYSTEM_P): If ID is not available, call
11944 Fcoding_system_p.
11945 (CHECK_CODING_SYSTEM): If ID is not available, call
11946 Fcheck_coding_system.
11947 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
11948 Try also Fcheck_coding_system.
11949
11950 2008-02-01 Kenichi Handa <handa@m17n.org>
11951
11952 * coding.c (code_conversion_restore): GCPRO arg.
11953
11954 2008-02-01 Kenichi Handa <handa@m17n.org>
11955
11956 * character.c (lisp_string_width): Check multibyteness of STRING.
11957
11958 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11959
11960 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
11961 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
11962 (decode_mac_font_name): Use decode_coding_c_string instead of
11963 decode_coding.
11964 (x_load_font): Initialize fontp->fontset to -1. Set
11965 fontp->encoding_type.
11966
11967 2008-02-01 Kenichi Handa <handa@m17n.org>
11968
11969 * search.c (search_buffer): Give up BM search on case-fold-search
11970 if one of a target character has a case-equivalence of different
11971 byte length even if that target charcter is an ASCII.
11972 (simple_search): Fix calculation of byte length of matched text.
11973 (boyer_moore): Fix handling of case-equivalent multibyte characters.
11974
11975 2008-02-01 Kenichi Handa <handa@m17n.org>
11976
11977 * coding.c (decode_coding): Fix handling of invalid bytes.
11978
11979 2008-02-01 Kenichi Handa <handa@m17n.org>
11980
11981 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
11982 Unicode characters.
11983
11984 2008-02-01 Kenichi Handa <handa@m17n.org>
11985
11986 * coding.c (encode_coding_object): If a pre-write-conversion
11987 function makes a new buffer, kill it.
11988
11989 2008-02-01 Kenichi Handa <handa@m17n.org>
11990
11991 * coding.c (QCascii_compatible_p): New variable.
11992 (syms_of_coding): Initialize it.
11993 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
11994 calling string_char.
11995 (record_conversion_result): Add `default:' case.
11996 (coding_charset_list): Delete unused variable `coding_type'.
11997 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
11998 property in the plist of the coding system.
11999 (Fcoding_system_put): Check QCascii_compatible_p.
12000
12001 2008-02-01 Miles Bader <miles@gnu.org>
12002
12003 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
12004 removed calculation of frame `f', as it's now used.
12005
12006 2008-02-01 Kenichi Handa <handa@m17n.org>
12007
12008 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
12009 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
12010 (UNIDATA): New variable.
12011 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
12012 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
12013 $(RUN_TEMACS) unconditionally.
12014
12015 2008-02-01 Kenichi Handa <handa@m17n.org>
12016
12017 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
12018 (admindir): New variable.
12019 ($(lispsource)international/charprop.el): New target.
12020
12021 2008-02-01 Miles Bader <miles@gnu.org>
12022
12023 * character.c (chars-in-region): Remove obsolete function.
12024 (syms_of_character): Remove its initialization.
12025
12026 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
12027
12028 * w32select.c (validate_coding_system)
12029 (setup_windows_coding_system): New functions.
12030 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
12031 setup_windows_coding_system.
12032 (setup_config, Fw32_get_clipboard_data): Use
12033 validate_coding_system.
12034 (Fx_selection_exists): Move call to setup_config to a place
12035 where signals are allowed.
12036
12037 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
12038 (Fcheck_coding_system): Add declarations.
12039
12040 2008-02-01 Kenichi Handa <handa@m17n.org>
12041
12042 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
12043
12044 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12045
12046 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
12047 string as the second argument for x_new_fontset.
12048
12049 2008-02-01 Kenichi Handa <handa@m17n.org>
12050
12051 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
12052 (encode_coding_object): Use safe_call instead of call2.
12053
12054 2008-02-01 Kenichi Handa <handa@m17n.org>
12055
12056 * fontset.c (Fset_fontset_font): Check family element of a given vector.
12057
12058 * Makefile.in (lisp): Include charprop.el.
12059
12060 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12061
12062 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
12063 Not sure if it's unnecessary.
12064
12065 2008-02-01 Steven Tamm <steventamm@mac.com>
12066
12067 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
12068 some possibly unnecessary fontset checking code that crashed
12069 when creating a new frame.
12070
12071 2008-02-01 Kenichi Handa <handa@m17n.org>
12072
12073 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
12074 lookup_face.
12075
12076 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
12077
12078 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
12079
12080 2008-02-01 Kenichi Handa <handa@m17n.org>
12081
12082 * coding.c: Cancel the change done in HEAD on 2008-02-01.
12083 (coding_charset_list): New function.
12084
12085 * coding.h (coding_charset_list): Extern it.
12086
12087 2008-02-01 Kenichi Handa <handa@m17n.org>
12088
12089 * fontset.c (Fset_fontset_font): Call find_font_encoding with
12090 concatenation of family and registry.
12091
12092 2008-02-01 Kenichi Handa <handa@m17n.org>
12093
12094 * character.h (BYTE8_STRING): Fix typo.
12095
12096 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
12097 string to multibyte (sync to HEAD).
12098
12099 * casefiddle.c (casify_region): Handle changes in byte-length
12100 using replace_range_2 (sync to HEAD).
12101
12102 2008-02-01 Andreas Schwab <schwab@suse.de>
12103
12104 * chartab.c (map_char_table): GCPRO table and arg.
12105
12106 2008-02-01 Kenichi Handa <handa@m17n.org>
12107
12108 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
12109 already at limit.
12110
12111 2008-02-01 Kenichi Handa <handa@m17n.org>
12112
12113 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
12114 instead of fast_c_string_match_ignore_case.
12115 (find_font_encoding): Change argument to Lisp_Object. Use
12116 fast_string_match_ignore_case instead of
12117 fast_c_string_match_ignore_case. Change caller.
12118
12119 2008-02-01 Kenichi Handa <handa@m17n.org>
12120
12121 * xdisp.c (get_next_display_element): In unibyte case, decide to
12122 display in octal form by checking a character by
12123 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
12124
12125 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
12126
12127 * character.c (unibyte_has_multibyte_table): New variable.
12128
12129 * character.h (unibyte_has_multibyte_table): Extern it.
12130 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
12131
12132 2008-02-01 Kenichi Handa <handa@m17n.org>
12133
12134 * coding.c (encode_coding_iso_2022): Fix handling of charset
12135 annotation.
12136
12137 2008-02-01 Kenichi Handa <handa@m17n.org>
12138
12139 * coding.c (setup_coding_system): If coding_system is nil, use
12140 Qundecided.
12141 (Fterminal_coding_system): Return nil if terminal coding system is
12142 `undecided'.
12143 (syms_of_coding): Define coding-system `undecided' here. Setup
12144 terminal_coding as `undecided'.
12145
12146 2008-02-01 Kenichi Handa <handa@m17n.org>
12147
12148 * xdisp.c (message_dolog, set_message_1): Call
12149 unibyte_char_to_multibyte with arg type int.
12150
12151 * lread.c (read1): Fix reading of a char-table.
12152
12153 * print.c (print_object): Include sub char-table in circularities
12154 detection.
12155
12156 2008-02-01 Kenichi Handa <handa@m17n.org>
12157
12158 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
12159 Append the found sequences in car of ARGS instead of prepending.
12160
12161 2008-02-01 Kenichi Handa <handa@m17n.org>
12162
12163 * fileio.c (report_file_error): Make a unibyte string from
12164 strerror (errorno).
12165 (Fsubstitute_in_file_name): Fix the arg to
12166 unibyte_char_to_multibyte. It is evaluated twice.
12167
12168 2008-02-01 Kenichi Handa <handa@m17n.org>
12169
12170 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
12171
12172 2008-02-01 Kenichi Handa <handa@m17n.org>
12173
12174 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
12175 BOM is not found.
12176 (detect_coding, detect_coding_system): Optimization for ISO-2022
12177 when no 8-bit data is found.
12178
12179 2008-02-01 Jason Rumney <jasonr@gnu.org>
12180
12181 * w32fns.c (x_to_w32_font): Update to use new coding struct.
12182
12183 2008-02-01 Kenichi Handa <handa@m17n.org>
12184
12185 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
12186 CHARS.
12187
12188 2008-02-01 Steven Tamm <steventamm@mac.com>
12189
12190 * macterm.c (mac_encode_char): Add charset argument and update
12191 to use encoding_type.
12192 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
12193 switch to pure fontset.
12194 (decode_mac_font_name): Temporarily remove decoding.
12195 (x_font_name_to_mac_font_name): Temporarily remove encoding.
12196 (x_load_font): Temporarily remove encoding.
12197
12198 2008-02-01 Kenichi Handa <handa@m17n.org>
12199
12200 * xfaces.c (Fface_font): If frame is not on a window system,
12201 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
12202 refer to face->font.
12203 (split_font_name_into_vector, build_font_name_from_vector)
12204 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
12205 when HAVE_WINDOW_SYSTEM is defined.
12206
12207 2008-02-01 Kenichi Handa <handa@m17n.org>
12208
12209 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
12210 (x_produce_glyphs): Fix setting of members of cmp in case
12211 cmp->glyph_len is zero.
12212
12213 * fontset.c (Fset_fontset_font): Fix docstring.
12214 (Ffontset_info): Make it backward compatible. New arg ALL.
12215
12216 2008-02-01 Kim F. Storm <storm@cua.dk>
12217
12218 * process.c (read_process_output): Grow decoding_buf when needed;
12219 this could cause a crash in allocate_string and compact_small_strings.
12220
12221 2008-02-01 Kenichi Handa <handa@m17n.org>
12222
12223 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
12224
12225 2008-02-01 Kenichi Handa <handa@m17n.org>
12226
12227 * coding.c (setup_coding_system): Set coding->common_flags
12228 correctly for raw-text.
12229 (consume_chars): On encoding unibyte text by raw-text, don't check
12230 multibyte form.
12231 (encode_coding): On encoding by raw-text, never use translation tables.
12232
12233 * fileio.c (e_write): Short cut for the case of no encoding.
12234
12235 2008-02-01 Kenichi Handa <handa@m17n.org>
12236
12237 * coding.c (detect_coding, detect_coding_system): Delete unused
12238 variables.
12239
12240 2008-02-01 Kenichi Handa <handa@m17n.org>
12241
12242 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
12243 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
12244
12245 2008-02-01 Kenichi Handa <handa@m17n.org>
12246
12247 * coding.c (Ffind_coding_systems_region_internal): Include
12248 raw-text and no-conversion in the result.
12249
12250 2008-02-01 Kenichi Handa <handa@m17n.org>
12251
12252 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
12253 (load_font_get_repertory): Delete unnecessary check of ENCODING of
12254 FONT_DEF.
12255 (font_def_arg, add_arg, from_arg, to_arg): New args.
12256 (set_fontset_font): Change argument.
12257 (Fset_fontset_font): Fix for the case that TARGET is a script
12258 name and charset name.
12259 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
12260
12261 2008-02-01 Kenichi Handa <handa@m17n.org>
12262
12263 * fontset.c (fontset_font): Rename from fontset_face. Change return
12264 value.
12265 (face_suitable_for_char_p, face_for_char): Adjust for the change
12266 of fontset_font.
12267 (make_fontset_for_ascii_face): Fix setting of the fontset element
12268 for ASCII.
12269 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
12270 to get a font name.
12271 (Ffontset_info): Adjust for the change of fontset_font.
12272
12273 * coding.c (emacs_mule_char): Check invalid code more rigidly.
12274
12275 * character.h (LEADING_CODE_LATIN_1_MIN)
12276 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
12277
12278 2008-02-01 Kenichi Handa <handa@m17n.org>
12279
12280 * editfns.c (check_translation): New function.
12281 (Ftranslate_region_internal): Handle M:N mapping.
12282
12283 2008-02-01 Kenichi Handa <handa@m17n.org>
12284
12285 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
12286
12287 2008-02-01 Kenichi Handa <handa@m17n.org>
12288
12289 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
12290 goto invalid_code.
12291 (decode_coding_iso_2022): Fix handling of invalid designation.
12292
12293 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
12294 after calling code_conversion_save.
12295
12296 2008-02-01 Kenichi Handa <handa@m17n.org>
12297
12298 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
12299
12300 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
12301
12302 * fontset.c: Include "intervals.h".
12303 (fontset_face): Fix comparing of Lisp_Objects.
12304 (free_face_fontset, new_fontset_from_font_name): Fix
12305 Lisp_Object/int mixup.
12306
12307 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
12308
12309 * coding.c: Add many prototypes for static functions.
12310 (get_translation_table): Allow max_lookup to be NULL.
12311 (decode_coding, Ffind_coding_systems_region_internal)
12312 (Funencodable_char_position, Fcheck_coding_systems_region): Call
12313 get_translation_table with max_lookup NULL.
12314
12315 2008-02-01 Kenichi Handa <handa@m17n.org>
12316
12317 * coding.c (get_translation_table): Declare it as Lisp_Object.
12318 (LOOKUP_TRANSLATION_TABLE): New macro.
12319 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
12320 instead of CHAR_TABLE_REF.
12321
12322 2008-02-01 Kenichi Handa <handa@m17n.org>
12323
12324 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
12325 annotation data format.
12326 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
12327 Change arguments FROM and TO to single argument NCHARS. Change caller.
12328 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
12329 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
12330 (decode_coding_ccl, decode_coding_charset): Pay attention to
12331 coding->charbuf_used.
12332 (get_translation): New function.
12333 (produce_chars): New arguments translation_table and last_block.
12334 Translate characters here. Return number of carryover chars.
12335 Change caller.
12336 (produce_composition): New argument pos. Change caller.
12337 Adjust for the change of annotation data format.
12338 (produce_charset, produce_annotation): Likewise.
12339 (decode_coding, encode_coding): Don't call translate_chars.
12340 (consume_chars): New arg translation_table. Change caller.
12341 (translate_chars): Delete.
12342 (syms_of_coding): Make translation-table's number of extra slots 2.
12343
12344 2008-02-01 Kenichi Handa <handa@m17n.org>
12345
12346 * search.c (simple_search): Fix setting this_pos_byte in backward
12347 search.
12348
12349 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
12350 byte sequence.
12351 (detect_coding_ccl): Fix setting of the variable valids.
12352
12353 2008-02-01 Kenichi Handa <handa@m17n.org>
12354
12355 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
12356
12357 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
12358
12359 * editfns.c (Ftranslate_region_internal): Rename from
12360 Ftranslate_region. Accept a char-table in TABLE.
12361 (syms_of_editfns): Defsubr Stranslate_region_internal.
12362
12363 * xfaces.c (set_lface_from_font_name): If a font is specified for
12364 a frame, generate a fontset from the font.
12365 (build_scalable_font_name): If the scalable font is requested for
12366 a specific size, don't change that size.
12367 (try_font_list): Try a scalable font also in the case that a
12368 pattern string is specified.
12369
12370 2008-02-01 Kenichi Handa <handa@m17n.org>
12371
12372 * xfaces.c (Fface_font): New optional arg CHARACTER.
12373
12374 2008-02-01 Kenichi Handa <handa@m17n.org>
12375
12376 * charset.h (CHARSET_OFFSET): New macro.
12377
12378 2008-02-01 Kenichi Handa <handa@m17n.org>
12379
12380 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
12381
12382 * fontset.c (fontset_face): Handle the case that repertory is a
12383 char-table.
12384 (find_font_encoding): Return nil for unknown encoding.
12385 (Fset_fontset_font): Ignore a font of unknown encoding.
12386
12387 2008-02-01 Kenichi Handa <handa@m17n.org>
12388
12389 * keymap.c (describe_vector): Handle default value of a char table.
12390
12391 * fontset.c (fontset_face): Handle fallback fonts correctly.
12392 (Ffontset_info): Return infomation about fallback fonts.
12393
12394 2008-02-01 Kenichi Handa <handa@m17n.org>
12395
12396 * fontset.c (FONTSET_DEFAULT): New macro.
12397 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
12398 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
12399 the case that it is nil.
12400 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
12401 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
12402
12403 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
12404 subset or superset.
12405
12406 2008-02-01 Kenichi Handa <handa@m17n.org>
12407
12408 * emacs.c (main): Call init_charset after syms_of_XXX.
12409
12410 * charset.c (Vcharset_map_directory): Delete.
12411 (Vcharset_map_path): New variable.
12412 (load_charset_map_from_file): Use Vcharset_map_path instead.
12413 (init_charset): Initialize Vcharset_map_path.
12414 (syms_of_charset): Delete declaration of "charset-map-directory",
12415 add declaration of "charset-map-path".
12416
12417 2008-02-01 Kenichi Handa <handa@m17n.org>
12418
12419 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
12420 ASCII only string.
12421
12422 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
12423
12424 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
12425 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
12426
12427 2008-02-01 Kenichi Handa <handa@m17n.org>
12428
12429 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
12430
12431 * coding.c (QCmnemonic, QCdefalut_char)
12432 (QCdecode_translation_table, QCencode_translation_table)
12433 (QCpost_read_conversion, QCpre_write_conversion): New variables.
12434 (get_translation_table): Return a list of translation tables if
12435 necessary.
12436 (decode_coding): Call get_translation_table with ENCODEP 0.
12437 (char_encodable_p): If translation_table is non-nil, always call
12438 translate_char.
12439 (Fdefine_coding_system_internal): Accept list of translation
12440 tables as :encode-translation-table and :decode-translation-table.
12441 (Fcoding_system_put): New function.
12442 (syms_of_coding): Declare new symbols. Defsubr
12443 Scoding_system_put.
12444 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
12445 typically JISX0212.
12446
12447 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
12448 when the charset is superset type.
12449
12450 * character.c (translate_char): Accept list of translation tables.
12451
12452 2008-02-01 Kenichi Handa <handa@m17n.org>
12453
12454 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
12455 (CODING_ATTR_TRANS_TBL): New macro.
12456
12457 * coding.c (get_translation_table): New function.
12458 (translate_chars): Fix the bug of skipping annotation data.
12459 (decode_coding, encode_coding): Utilize get_translation_table.
12460 (char_encodable_p, Funencodable_char_position): Translate char if
12461 necessary.
12462 (Ffind_coding_systems_region_internal)
12463 (Fcheck_coding_systems_region): Setup translation table for encode
12464 in a coding system attribute vector in advance.
12465 (Fdefine_coding_system_internal): Allow a symbol as translation
12466 table. For shift-jis type coding system, allow 4th charset.
12467
12468 2008-02-01 Kenichi Handa <handa@m17n.org>
12469
12470 * coding.c (decode_coding_sjis): Check the first byte rigidly.
12471
12472 * xdisp.c (get_next_display_element): Pass -1 as POS to
12473 FACE_FOR_CHAR if displaying a C-string.
12474
12475 2008-02-01 Kenichi Handa <handa@m17n.org>
12476
12477 * composite.c (get_composition_id): Handle xoff and yoff in a
12478 composition rule.
12479
12480 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
12481 (struct composition): New member lbearing and rbearing.
12482
12483 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
12484 (x_get_glyph_overhangs): Handle a composition glyph.
12485 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
12486
12487 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
12488 composition glyph.
12489
12490 2008-02-01 Kenichi Handa <handa@m17n.org>
12491
12492 * print.c: Include charset.h.
12493 (Vprint_charset_text_property): New variable.
12494 (Qdefault): Extern it.
12495 (PRINT_STRING_NON_CHARSET_FOUND)
12496 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
12497 (print_check_string_result): New variable.
12498 (print_check_string_charset_prop): New function.
12499 (print_prune_charset_plist): New variable.
12500 (print_prune_string_charset): New function.
12501 (print_object): Call print_prune_string_charset if
12502 Vprint_charset_text_property is not t.
12503 (print_interval): Print nothing if interval->plist is nil.
12504 (syms_of_print): Declare Vprint_charset_text_property as a lisp
12505 variable. Init and staticpro print_prune_charset_plist.
12506
12507 2008-02-01 Kenichi Handa <handa@m17n.org>
12508
12509 * fontset.c (new_fontset_from_font_name): Use the specified font
12510 for all characters in the new fontset.
12511
12512 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
12513 OBJECT args.
12514
12515 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
12516 OBJECT args for composition too.
12517
12518 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
12519 OBJECT args.
12520
12521 2008-02-01 Kenichi Handa <handa@m17n.org>
12522
12523 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
12524
12525 * fontset.c (reorder_font_vector): Adjust for the change of
12526 FONT_DEF format.
12527 (fontset_face): New arg id. Change caller.
12528 (face_for_char): New args pos and object.
12529 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
12530 (fs_query_fontset): Check NAME by Fassoc too.
12531 (Fset_fontset_font): Allow non-XLFD font name.
12532 (Ffontset_info): Adjust for the change of FONT_DEF format.
12533
12534 * fontset.h (face_for_char): Adjust prototype.
12535
12536 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
12537 (append_space, extend_face_to_end_of_line)
12538 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
12539 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
12540
12541 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
12542 POS and OBJECT args.
12543
12544 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
12545 POS and OBJECT args.
12546
12547 2008-02-01 Jason Rumney <jasonr@gnu.org>
12548
12549 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
12550 of GlobalAlloc'ed memory.
12551
12552 2008-02-01 Kenichi Handa <handa@m17n.org>
12553
12554 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
12555
12556 * charset.h (charset_table_used): Delete extern.
12557
12558 * charset.c (charset_table_used): Make it static.
12559 (map_charset_chars): Fix args to c_function with.
12560
12561 * chartab.c (map_sub_char_table_for_charset): Fix args to
12562 c_function with.
12563
12564 * coding.h (enum coding_result_code): Delete
12565 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
12566
12567 * coding.c (Qinsufficient_source, Qinconsistent_eol)
12568 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
12569 (Vlast_code_conversion_error): New variables.
12570 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
12571 (ONE_MORE_BYTE): Record error if any instead of signaling an
12572 error. If non-ASCII multibyte char is found, return the negative
12573 value of the code. All callers changed to check it.
12574 (ONE_MORE_BYTE_NO_CHECK): Likewise.
12575 (record_conversion_result): New function. Change all codes setting
12576 coding->result to call this function.
12577 (detect_coding_utf_8, decode_coding_utf_8)
12578 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
12579 Don't use the local variable incomplete.
12580 (emacs_mule_char): Change the second arg to `const'.
12581 (decode_coding): Fix of flushing out unprocessed data.
12582 (make_conversion_work_buffer): Fix making of a work buffer.
12583 (decode_coding_object): Return coding->dst_object.
12584
12585 * fontset.c (set_fontset_font): Fix args.
12586
12587 * lisp.h (CHARACTERBITS): Define as 22.
12588
12589 * process.c (send_process): Be sure to set coding->src_multibyte.
12590
12591 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
12592
12593 2008-02-01 Kenichi Handa <handa@m17n.org>
12594
12595 * xdisp.c (handle_auto_composed_prop): Give limit to
12596 Fnext_single_char_property_change.
12597
12598 2008-02-01 Kenichi Handa <handa@m17n.org>
12599
12600 * composite.c (syms_of_composite): Don't make the composition hash
12601 table weak.
12602
12603 * fontset.c (Fset_fontset_font): Fix docstring.
12604
12605 * lisp.h (detect_coding_system): Adjust prototype.
12606
12607 * fileio.c (kill_workbuf_unwind): Delete this function.
12608 (Finsert_file_contents): Adjust the call of detect_coding_system.
12609 Get conversion_buffer by code_conversion_save. Use the macro
12610 CODING_MAY_REQUIRE_DECODING. After decoding, update
12611 coding_system.
12612
12613 * coding.h (make_conversion_work_buffer): Delete extern.
12614 (code_conversion_save): Extern it.
12615
12616 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
12617 (CODING_GET_INFO): Delete argument eol_type. Change callers.
12618 (decode_coding_utf_8): Don't do eol converion.
12619 (detect_coding_utf_16): Check coding->src_chars, not
12620 coding->src_bytes. Add heuristics for those that have no signature.
12621 (decode_coding_emacs_mule, decode_coding_iso_2022)
12622 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
12623 Don't do eol converion.
12624 (adjust_coding_eol_type): Return a new coding system.
12625 (detect_coding): Don't detect eol. Fix for utf-16 detection.
12626 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
12627 each change.
12628 (decode_coding): Pay attention to undo_list. Do eol conversion for
12629 all types of coding-systems (if necessary).
12630 (Vcode_conversion_work_buf_list): Delete it.
12631 (Vcode_conversion_reused_workbuf): Rename from
12632 Vcode_conversion_reused_work_buf.
12633 (Vcode_conversion_workbuf_name): New variable.
12634 (reused_workbuf_in_use): New variable.
12635 (make_conversion_work_buffer): Delete the arg DEPTH.
12636 (code_conversion_restore): Change argument to cons.
12637 (code_conversion_save): Delete the argument BUFFER. Change callers.
12638 (detect_coding_system): New argument src_chars. Change callers.
12639 Fix for utf-16 detection.
12640 (init_coding_once): Don't use ISO_carriage_return.
12641 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
12642 reused_workbuf_in_use.
12643
12644 2008-02-01 Kenichi Handa <handa@m17n.org>
12645
12646 * keymap.c (store_in_keymap): Pay attention to the case that idx
12647 is a cons specifying a character range.
12648
12649 2008-02-01 Kenichi Handa <handa@m17n.org>
12650
12651 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
12652 HANDLED_RECOMPUTE_PROPS.
12653
12654 * coding.c (Fdefine_coding_system_internal): Fix checking of
12655 ascii compatibility.
12656
12657 2008-02-01 Kenichi Handa <handa@m17n.org>
12658
12659 * charset.c (find_charsets_in_text): Delete unused locale variable.
12660 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
12661
12662 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
12663 Resync charset_list to Vemacs_mule_charset_list.
12664
12665 * keymap.c (store_in_keymap): Pay attention to the case that idx
12666 is a cons specifying a character range.
12667
12668 2008-02-01 Kenichi Handa <handa@m17n.org>
12669
12670 * composite.c (update_compositions): Bind inhibit-read-only, etc
12671 to t before calling remove-list-of-text-properties.
12672
12673 * print.c (print_object): Always print ASCII chars as is.
12674
12675 2008-02-01 Kenichi Handa <handa@m17n.org>
12676
12677 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
12678
12679 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
12680 is a char table.
12681
12682 2008-02-01 Kenichi Handa <handa@m17n.org>
12683
12684 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
12685
12686 2008-02-01 Kenichi Handa <handa@m17n.org>
12687
12688 * xfaces.c (set_lface_from_font_name): Fix for the case that
12689 FONTNAME is not fontset name.
12690
12691 2008-02-01 Kenichi Handa <handa@m17n.org>
12692
12693 * fns.c (base64_encode_1): Fix previous change.
12694
12695 2008-02-01 Kenichi Handa <handa@m17n.org>
12696
12697 * fontset.c (set_fontset_font): New function.
12698 (Fset_fontset_font): If a font is specified for a charset, use
12699 map_charset_chars to store the font spec in a fontset.
12700
12701 2008-02-01 Kenichi Handa <handa@m17n.org>
12702
12703 * fontset.c (fontset_face): Create a fallback fontset on demand.
12704 (make_fontset): Don't create a fallback fontset here.
12705 (free_face_fontset): Free a fallback fontset (if any) too.
12706 (n_auto_fontsets): Delete this variable.
12707 (auto_fontset_alist): New variable.
12708 (new_fontset_from_font_name): Check auto_fontset_alist.
12709 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
12710 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
12711 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
12712 Defsubr Sfontset_list_all.
12713
12714 2008-02-01 Kenichi Handa <handa@m17n.org>
12715
12716 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
12717
12718 2008-02-01 Kenichi Handa <handa@m17n.org>
12719
12720 * fontset.c (Fnew_fontset): Check NAME more rigidly.
12721
12722 2008-02-01 Kenichi Handa <handa@m17n.org>
12723
12724 * editfns.c (Fgoto_char): Fix docstring.
12725
12726 2008-02-01 Kenichi Handa <handa@m17n.org>
12727
12728 * insdel.c (insert_from_gap): Adjust intervals correctly.
12729
12730 2008-02-01 Jason Rumney <jasonr@gnu.org>
12731
12732 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
12733 (pfnGetFontUnicodeRanges): New dynamically loaded function.
12734 (w32_initialize): Try to load it.
12735 (x_get_font_repertory): Use it if available.
12736 (w32_encode_char): Add shortcut for unicode output.
12737
12738 * w32fns.c (w32_load_system_font): Default charset to -1.
12739 (x_to_w32_charset): Match all fonts for unicode.
12740 (w32_to_x_charset): New parameter matching. Don't return partial
12741 or wildcard charsets.
12742 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
12743 (w32_codepage_for_font): Return CP_UNICODE for unicode.
12744 (w32_to_x_font): Match charset to real charset.
12745 (enum_font_cb2): Always list unicode versions.
12746
12747 * makefile.w32-in (temacs): Increase EMHEAP.
12748
12749 2008-02-01 Jason Rumney <jasonr@gnu.org>
12750
12751 * w32term.c (w32_encode_char): New charset parameter.
12752 font_info.encoding becomes encoding_type.
12753 (x_get_font_repertory): New function. Warning: stub only!
12754 (x_new_font): Return quickly if font already set.
12755 (x_new_fontset): fontsetname parameter is Lisp_Object.
12756 Use new fs_query_fontset. Try new_fontset_from_font_name.
12757 Use fontset_name for return value.
12758
12759 * w32term.h: Declare x_get_font_repertory.
12760
12761 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
12762 place of find_charset_in_text. Use encode_coding_object in place
12763 of encode_coding.
12764 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
12765 decode_coding.
12766
12767 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
12768 of x_new_fontset.
12769 (w32_load_system_font): Initialize charset as unicode.
12770 font_info.encoding becomes encoding_type.
12771 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
12772 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
12773 (syms_of_w32fns): Set get_font_repertory_func.
12774
12775 * w32console.c: Include character.h. Use terminal_encode_buffer
12776 from term.c.
12777 (write_glyphs): Use new version of encode_terminal_code. Use
12778 encode_coding_object in place of encode_coding.
12779
12780 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
12781 encoding becomes encoding_type.
12782
12783 * term.c (terminal_encode_buffer): Make externally visible.
12784
12785 * makefile.w32-in: Add character.h dependancies.
12786 (character.o, chartab.o): New targets.
12787
12788 2008-02-01 Kenichi Handa <handa@m17n.org>
12789
12790 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
12791 CODING_ID_EOL_TYPE.
12792
12793 2008-02-01 Andreas Schwab <schwab@suse.de>
12794
12795 * coding.c (produce_chars): Revert last change.
12796
12797 2008-02-01 Kenichi Handa <handa@m17n.org>
12798
12799 * charset.h (charset_unicode): Extern it.
12800
12801 * charset.c (string_xstring_p): Check by (C >= 0x100).
12802 (find_charsets_in_text): Change format of the arc CHARSETS. New
12803 arg MULTIBYTE.
12804 (Ffind_charset_region, Ffind_charset_string): Adjust for the
12805 change of find_charsets_in_text.
12806 (Fsplit_char): Fix doc. Never return unknown.
12807
12808 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
12809
12810 * coding.c (Fdefine_coding_system_alias): Update
12811 Vcoding_system_list.
12812
12813 * fontset.c (load_font_get_repertory): Pay attention to the case
12814 that ENCODING of a font is specified by a char-table.
12815
12816 * xterm.c (x_get_font_repertory): Handle the case that the
12817 encoding of font is other than Unicode.
12818
12819 2008-02-01 Kenichi Handa <handa@m17n.org>
12820
12821 * term.c (encode_terminal_code): Don't handle glyph-table. Check
12822 if a character is encodable by the terminal coding system. If
12823 not, produces proper number of `?'s. Update
12824 terminal_encode_buffer and terminal_encode_buf_size if necessary.
12825 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
12826
12827 2008-02-01 Kenichi Handa <handa@m17n.org>
12828
12829 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
12830 variables.
12831 (encode_terminal_code): Change argument. Encode multiple
12832 characters at once. Store the result of encoding in
12833 terminal_encode_buffer.
12834 (write_glyphs, insert_glyphs): Adjust for the change of
12835 encode_terminal_code.
12836 (term_init): Initialize terminal_encode_buffer and
12837 terminal_encode_buf_size.
12838
12839 * coding.c (consume_chars): If coding->src_object is nil, don't
12840 check annotation.
12841
12842 2008-02-01 Kenichi Handa <handa@m17n.org>
12843
12844 * character.c (char_string): Use ASCII_CHAR_P instead of
12845 SINGLE_BYTE_CHAR_P.
12846
12847 2008-02-01 Kenichi Handa <handa@m17n.org>
12848
12849 * xdisp.c (handle_auto_composed_prop): Check if the last
12850 characters of auto-composed region is newly composed with the
12851 following characters.
12852 (handle_composition_prop): Fix checking of point being inside
12853 composition.
12854
12855 2008-02-01 Kenichi Handa <handa@m17n.org>
12856
12857 * fns.c (concat): Don't change multibyteness of the result by
12858 concatenating an 8-bit character.
12859
12860 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
12861 multibyteness of the result when newelt is an 8-bit character.
12862
12863 2008-02-01 Dave Love <fx@gnu.org>
12864
12865 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
12866 EMACS_INT.
12867
12868 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
12869
12870 * xfaces.c (face_numeric_value): Declare dim size_t.
12871 (Finternal_lisp_face_equal_p): Remove unused f.
12872
12873 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
12874 (MATRIX_ROW): Remove unused vars.
12875 (draw_glyphs, x_insert_glyphs, fast_find_position)
12876 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
12877 byte/char counts.
12878
12879 * regex.c (regex_compile): Remove unused var.
12880
12881 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
12882
12883 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
12884 (Faccessible_keymaps, where_is_internal): Remove unused vars.
12885
12886 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
12887
12888 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
12889
12890 * fileio.c (Fwrite_region): Remove unused var.
12891
12892 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
12893 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
12894
12895 * composite.c (Fremove_list_of_text_properties): Declare.
12896
12897 * coding.c (inhibit_pre_post_conversion): Remove (unused).
12898 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
12899 (coding_inherit_eol_type): Remove unused attrs.
12900 (detect_coding): Cast arg of detect_eol.
12901
12902 * charset.c (syms_of_charset): Remove unused var p.
12903 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
12904 byte/char counts.
12905
12906 * casetab.c (set_case_table): Remove unused var.
12907
12908 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
12909 unused vars.
12910
12911 2008-02-01 Dave Love <fx@gnu.org>
12912
12913 * xterm.c (x_bitmap_mask): Declare.
12914
12915 2008-02-01 Dave Love <fx@gnu.org>
12916
12917 * xterm.c (x_term_init): Fix type error.
12918
12919 * lisp.h: Add Funibyte_char_to_multibyte.
12920
12921 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
12922 (Fset_coding_system_priority): Doc fix.
12923
12924 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
12925
12926 * indent.c (check_composition): Make start and end EMACS_INT.
12927
12928 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
12929
12930 * xdisp.c (handle_composition_prop, check_point_in_composition):
12931 Make buffer positions EMACS_INT.
12932
12933 * composite.c (find_composition, run_composition_function)
12934 (update_compositions, Ffind_composition_internal): Make buffer
12935 positions EMACS_INT.
12936
12937 * composite.h (find_composition, update_compositions): Make
12938 position args EMACS_INT.
12939
12940 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
12941
12942 * intervals.c (get_property_and_range):
12943 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
12944
12945 * unexalpha.c: Don't include varargs.h.
12946
12947 2008-02-01 Dave Love <fx@gnu.org>
12948
12949 * coding.h (ENCODE_UTF_8): New.
12950
12951 * Makefile.in (gtkutil.o): Depend on coding.h.
12952
12953 * coding.c (Fset_coding_system_priority): Doc fix.
12954
12955 2008-02-01 Kenichi Handa <handa@m17n.org>
12956
12957 * fileio.c (Finsert_file_contents): Call setup_coding_system in
12958 the case of auto saving.
12959
12960 2008-02-01 Andreas Schwab <schwab@suse.de>
12961
12962 * chartab.c (map_char_table, map_char_table_for_charset): Protect
12963 `range' from GC.
12964
12965 2008-02-01 Kenichi Handa <handa@m17n.org>
12966
12967 * coding.c (decode_coding_sjis): Check bytes more rigidly.
12968
12969 2008-02-01 Kenichi Handa <handa@m17n.org>
12970
12971 * fileio.c (choose_write_coding_system): Return a decided coding system.
12972 (Fwrite_region): Set Vlast_coding_system_used to the return value
12973 of choose_write_coding_system.
12974
12975 2008-02-01 Kenichi Handa <handa@m17n.org>
12976
12977 * charset.c (Fset_charset_priority): Pay attention to duplicated
12978 arguments.
12979
12980 * coding.c (QCcategory): New variable.
12981 (syms_of_coding): Defsym it. Set all elements of
12982 Vcoding_category_table and their symbol values.
12983 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
12984 coding-category-XXX, and coding-category-list.
12985 (Fdefine_coding_system_internal): Add category in the plist.
12986
12987 2008-02-01 Kenichi Handa <handa@m17n.org>
12988
12989 * callproc.c (Fcall_process): Handle carryover correctly.
12990
12991 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
12992 (raw_text_coding_system): Check NILP (coding_system).
12993 (coding_inherit_eol_type): Check NILP (coding_system) and
12994 NILP (parent).
12995 (consume_chars): Fix for the case of raw-text.
12996
12997 * process.c (read_process_output): Handle carryover correctly.
12998
12999 2008-02-01 Dave Love <fx@gnu.org>
13000
13001 * regex.c (re_search_2): Fix last change.
13002
13003 2008-02-01 Kenichi Handa <handa@m17n.org>
13004
13005 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
13006 target_multibyte. Even in a unibyte case, return a converted
13007 multibyte char.
13008 (GET_CHAR_AFTER): New macro.
13009 (PATFETCH): Translate via multibyte char.
13010 (HANDLE_UNIBYTE_RANGE): Delete this macro.
13011 (SETUP_MULTIBYTE_RANGE): New macro.
13012 (regex_compile): Setup compiled code so that its multibyteness
13013 matches that of a target. Fix the handling of "[X-YZ]" using
13014 SETUP_MULTIBYTE_RANGE.
13015 (analyse_first) <charset>: For filling fastmap for all multibyte
13016 characters, don't check by BASE_LEADING_CODE_P.
13017 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
13018 the same as RE_MULTIBYTE_P (bufp) now.
13019 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
13020 (TARGET_CHAR_AND_LENGTH): Delete this macro.
13021 (TRANSLATE_VIA_MULTIBYTE): New macro.
13022 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
13023 It is the same as RE_MULTIBYTE_P (bufp) now.
13024 <exactn>: Translate via multibyte.
13025 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
13026 translate it.
13027 <charset, charset_not>: Fetch a character by
13028 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
13029 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
13030 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
13031 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
13032 by GET_CHAR_AFTER.
13033 (bcmp_translate): Likewise.
13034
13035 * search.c (compile_pattern): Check the member target_multibyte,
13036 not the member multibyte of buf.
13037
13038 * lread.c (read1): While reading a string, set force_singlebyte
13039 and force_multibyte correctly.
13040
13041 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
13042 up of unibyte_to_multibyte_table.
13043
13044 2008-02-01 Kenichi Handa <handa@m17n.org>
13045
13046 * coding.c (setup_coding_system): If coding has
13047 post-read-conversion or pre-write-conversion, set
13048 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
13049 respectively.
13050 (decode_coding_gap): Run post-read-conversion if any.
13051
13052 * fileio.c (Finsert_file_contents): Even if we read into a
13053 unibyte buffer, check if we must decode the result or not.
13054
13055 2008-02-01 Kenichi Handa <handa@m17n.org>
13056
13057 * coding.c (make_conversion_work_buffer): Change the work buffer
13058 name to the same one as that of Emacs 21.
13059
13060 2008-02-01 Kenichi Handa <handa@m17n.org>
13061
13062 * coding.h (make_conversion_work_buffer): Adjust prototype.
13063 (code_conversion_restore): Don't extern it.
13064
13065 * coding.c (detected_mask): Delete unused variable.
13066 (decode_coding_iso_2022): Pay attention to the byte sequence of
13067 CTEXT extended segment, and retain those bytes as is.
13068 (decode_coding_ccl): Delete unused variable `valids'.
13069 (setup_coding_system): Delete unused variable `category'.
13070 (consume_chars): Delete unused variable `category'. Make it work
13071 for non-multibyte case.
13072 (make_conversion_work_buffer): Change argument.
13073 (saved_coding): Delete unused variable.
13074 (code_conversion_restore): Don't check saved_coding->destination.
13075 (code_conversion_save): New function.
13076 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
13077 instead of record_unwind_protect.
13078 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
13079 (detect_coding_system): Delete unused variable `mask'.
13080 (Fdefine_coding_system_internal): Delete unused variable id.
13081
13082 * fileio.c (kill_workbuf_unwind): New function.
13083 (Finsert_file_contents): On replacing, call
13084 make_conversion_work_buffer with correct args, and call
13085 record_unwind_protect with the first arg kill_workbuf_unwind.
13086
13087 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
13088
13089 2008-02-01 Kenichi Handa <handa@m17n.org>
13090
13091 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
13092 (fontset_add): Fix for the case that TO is less than TO1.
13093 (Ffontset_info): Don't use fallback fontset on checking the
13094 default fontset.
13095 (dump_fontset): New function for debugging.
13096
13097 * coding.c (Fdefine_coding_system_internal): Fix for the case that
13098 coding_type is Qcharset.
13099
13100 2008-02-01 Kenichi Handa <handa@m17n.org>
13101
13102 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
13103 (map_char_table): Don't inherit the value from the parent on
13104 initializing VAL. Adjust for the above change.
13105
13106 2008-02-01 Kenichi Handa <handa@m17n.org>
13107
13108 * coding.c (Qsignature, Qendian): Delete these variables.
13109 (syms_of_coding): Don't initialize them.
13110 (CATEGORY_MASK_UTF_16_AUTO): New macro.
13111 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
13112 detect_info->found.
13113 (decode_coding_utf_16): Don't detect BOM here.
13114 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
13115 is NOT utf_16_without_bom.
13116 (setup_coding_system): For a coding system of type utf-16, check
13117 if the attribute :endian is Qbig or not (not nil or not), and set
13118 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
13119 (detect_coding): If coding type is utf-16 and BOM detection is
13120 required, detect it.
13121 (Fdefine_coding_system_internal): For a coding system of type
13122 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
13123
13124 2008-02-01 Kenichi Handa <handa@m17n.org>
13125
13126 * coding.c (coding_set_source): Fix for the case that the current
13127 buffer is different from coding->src_object.
13128 (decode_coding_object): Don't use the conversion work buffer if
13129 DST_OBJECT is a buffer.
13130
13131 2008-02-01 Dave Love <fx@gnu.org>
13132
13133 * lread.c (read_emacs_mule_char) [len==2]: Index
13134 emacs_mule_charset correctly.
13135
13136 2008-02-01 Dave Love <fx@gnu.org>
13137
13138 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
13139 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
13140 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
13141 treated specially.)
13142 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
13143 (detected_mask): Remove Big5 bits.
13144
13145 2008-02-01 Kenichi Handa <handa@m17n.org>
13146
13147 The following changes are to make the font rescaling facility
13148 compatible with Emacs 21.
13149
13150 * xfaces.c (Vface_font_rescale_alist): Rename from
13151 Vface_resizing_fonts.
13152 (struct font_name): Rename member resizing_ratio to rescale_ratio.
13153 (font_rescale_ratio): Rename from font_resizing_ratio.
13154 (split_font_name): Set font->rescale_ratio.
13155 (better_font_p): Pay attention to font->rescale_ratio.
13156 (build_scalable_font_name): Likewise. Change RESX, and RESY
13157 fields.
13158 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
13159
13160 2008-02-01 Kenichi Handa <handa@m17n.org>
13161
13162 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
13163 (Qutf_16_le): Remove these variables.
13164 (syms_of_coding): Don't DEFSYM them.
13165 (decode_coding_utf_16): Fix handling of BOM.
13166 (encode_coding_utf_16): Fix handling of BOM.
13167
13168 2008-02-01 Kenichi Handa <handa@m17n.org>
13169
13170 * fileio.c (Finsert_file_contents): On replacing, before decoding
13171 the file into the work buffer, set point of the work buffer to the end.
13172
13173 2008-02-01 Dave Love <fx@gnu.org>
13174
13175 * coding.c (Fcheck_coding_systems_region): Fix type errors.
13176
13177 2008-02-01 Dave Love <fx@gnu.org>
13178
13179 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
13180 and fix C types.
13181
13182 2008-02-01 Kenichi Handa <handa@m17n.org>
13183
13184 * xdisp.c (SKIP_GLYPHS): New macro.
13185 (set_cursor_from_row): Pay attention to string display properties.
13186
13187 * category.c (copy_category_entry): Fix for the case that RANGE
13188 is an integer.
13189
13190 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
13191
13192 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
13193
13194 2008-02-01 Kenichi Handa <handa@m17n.org>
13195
13196 * charset.c (Fcharset_id_internal): New function.
13197 (syms_of_charset): Defsubr it.
13198
13199 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
13200 with the last arg charset_list acquired from coding.
13201 (Fdefine_coding_system_internal): For ccl-based coding system, fix
13202 the attribute coding_attr_ccl_valids.
13203
13204 * coding.h (enum define_coding_ccl_arg_index): Set the first
13205 member coding_arg_ccl_decoder to coding_arg_max.
13206
13207 * ccl.h (ccl_driver): Adjust prototype.
13208
13209 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
13210 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
13211 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
13212 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
13213 last arg Qnil.
13214
13215 2008-02-01 Kenichi Handa <handa@m17n.org>
13216
13217 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
13218 call encode_char.
13219
13220 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
13221
13222 2008-02-01 Dave Love <fx@gnu.org>
13223
13224 * composite.c (syms_of_composite): Make composition_hash_table weak.
13225
13226 2008-02-01 Kenichi Handa <handa@m17n.org>
13227
13228 * dispextern.h (check_face_attributes, generate_ascii_font_name)
13229 (font_name_registry): Don't extern them.
13230 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
13231
13232 * fontset.h (Qfontset): Don't extern it.
13233 (new_fontset_from_font_name): Extern it.
13234
13235 * fontset.c: Give 8 extra slots to fontset objects.
13236 (Qfontset_info): New variable.
13237 (syms_of_fontset): Defsym it.
13238 (FONTSET_FALLBACK): New macro.
13239 (fontset_face): Try also the default fontset.
13240 (make_fontset): Realize a fallback fontset from the default fontset.
13241 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
13242 using split_font_name_into_vector and build_font_name_from_vector.
13243 (Fset_fontset_font): Access the elements of font_spec by enum
13244 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
13245 name by using split_font_name_into_vector.
13246 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
13247 generate a proper font name from the fontset name. Update
13248 Vfontset_alias_alist.
13249 (n_auto_fontsets): New variable.
13250 (new_fontset_from_font_name): New function.
13251 (Ffont_info): Store the information about fonts generated from the
13252 default fontset in the first extra slot of the returned char-table.
13253
13254 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
13255 (font_name_registry): Delete function.
13256 (split_font_name_into_vector): New function.
13257 (build_font_name_from_vector): New function.
13258 (font_list): The argument REGISTRY is now a list of registry names.
13259 (choose_face_font): If we are choosing an ASCII font, and ATTRS
13260 specifies an explicit font name, return the name as is. Make a
13261 list of registy names.
13262
13263 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
13264 of x_new_fontset.
13265 (Fx_create_frame): Don't call x_new_fontset here. Just use
13266 x_list_fonts to check the existence of fonts.
13267
13268 * xterm.h (x_new_fontset): Adjust prototype.
13269
13270 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
13271 string. Use new_fontset_from_font_name to create a fontset from a
13272 font name.
13273
13274 2008-02-01 Kenichi Handa <handa@m17n.org>
13275
13276 * syntax.c (Vfind_word_boundary_function_table): New name for
13277 Vnext_word_boundary_function_table.
13278 (find-word-boundary-function-table): New name for
13279 next-word-boundary-function-table.
13280
13281 2008-02-01 Dave Love <fx@gnu.org>
13282
13283 * Makefile.in: Fix some dependencies.
13284
13285 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
13286 set it to nil before returning.
13287
13288 * composite.c (update_compositions): Fix type error.
13289
13290 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
13291
13292 2008-02-01 Kenichi Handa <handa@m17n.org>
13293
13294 * xterm.c (x_new_font): Optimize for the case that the font is
13295 already set for the frame.
13296
13297 2008-02-01 Kenichi Handa <handa@m17n.org>
13298
13299 * chartab.c (char_table_ascii): Check if the char table contents
13300 is sub-char-table or not.
13301 (char_table_set, char_table_set_range): Fix argument to
13302 char_table_ascii.
13303
13304 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
13305 (detect_coding_utf_8, detect_coding_utf_16)
13306 (detect_coding_emacs_mule, detect_coding_iso_2022)
13307 (detect_coding_sjis, detect_coding_big5)
13308 (detect_coding_ccl, detect_coding_charset): Change argument MASK
13309 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
13310 sequence is valid in this coding system. Change callers.
13311 (MAX_ANNOTATION_LENGTH): New macro.
13312 (ADD_ANNOTATION_DATA): New macro.
13313 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
13314 ADD_ANNOTATION_DATA. Change the format of annotation data.
13315 (ADD_CHARSET_DATA): New macro.
13316 (emacs_mule_char): New argument ID. Change callers.
13317 (decode_coding_emacs_mule, decode_coding_iso_2022)
13318 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
13319 Produce charset annotation data in coding->charbuf.
13320 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
13321 to charset annotation data in coding->charbuf.
13322 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
13323 coding->common_flags if the coding system is iso-2022 based and
13324 uses designation.
13325 (produce_composition): Adjust for the new annotation data format.
13326 (produce_charset): New function.
13327 (produce_annotation): Handle charset annotation.
13328 (handle_composition_annotation, handle_charset_annotation): New
13329 functions.
13330 (consume_chars): Handle charset annotation. Utilize the above two
13331 functions.
13332 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
13333 buffer, get the deleted text as a string and set
13334 coding->src_object to that string.
13335 (detect_coding, detect_coding_system): Use the new struct
13336 coding_detection_info.
13337
13338 * coding.h (struct coding_detection_info): New structure.
13339 (struct coding_system): Adjust prototype of the member `detector'.
13340 (CODING_ANNOTATE_CHARSET_MASK): New macro.
13341
13342 2008-02-01 Kenichi Handa <handa@m17n.org>
13343
13344 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
13345
13346 2008-02-01 Dave Love <fx@gnu.org>
13347
13348 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
13349 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
13350 to new local and nullify apropos_accumulate before returning.
13351 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
13352
13353 2008-02-01 Kenichi Handa <handa@m17n.org>
13354
13355 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
13356 correctly.
13357
13358 2008-02-01 Dave Love <fx@gnu.org>
13359
13360 * fns.c (Flanginfo): Call synchronize_system_time_locale.
13361
13362 2008-02-01 Kenichi Handa <handa@m17n.org>
13363
13364 The following changes are to make character composition happen
13365 automatically on displaying.
13366
13367 * Makefile.in (lisp, shortlisp): Add composite.elc.
13368
13369 * composite.h (Qauto_composed, Vauto_composition_function)
13370 (Qauto_composition_function): Extern them.
13371
13372 * composite.c (Vcomposition_function_table)
13373 (Qcomposition_function_table): Delete variables.
13374 (Qauto_composed, Vauto_composition_function)
13375 (Qauto_composition_function): New variables.
13376 (run_composition_function): Don't call
13377 compose-chars-after-function.
13378 (update_compositions): Clear `auto-composed' text property.
13379 (compose_chars_in_text): Delete this function.
13380 (syms_of_composite): Staticpro Qauto_composed and
13381 Qauto_composition_function. Declare Vauto_composition_function as
13382 a Lisp variable.
13383
13384 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
13385
13386 * xdisp.c (it_props): Add an entry for Qauto_composed.
13387 (handle_auto_composed_prop): New function.
13388
13389 * xselect.c (selection_data_to_lisp_data): Don't call
13390 compose_chars_in_text.
13391
13392 2008-02-01 Dave Love <fx@gnu.org>
13393
13394 * keyboard.c (read_char): Modify checking around use of
13395 Vkeyboard_translate_table.
13396
13397 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
13398 and fix C types.
13399
13400 2008-02-01 Kenichi Handa <handa@m17n.org>
13401
13402 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
13403 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
13404 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
13405 the case that the last byte is '\r' correctly.
13406 (decode_coding): Flush out the unprocessed data correctly.
13407 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
13408
13409 2008-02-01 Dave Love <fx@gnu.org>
13410
13411 * xterm.c (XTread_socket): Fix changes for defined keysyms.
13412 Add XK_ISO... case.
13413 (xaw_scroll_callback): Revert last change.
13414
13415 2008-02-01 Kenichi Handa <handa@m17n.org>
13416
13417 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
13418
13419 2008-02-01 Kenichi Handa <handa@m17n.org>
13420
13421 * xfaces.c (Vface_resizing_fonts): New variable.
13422 (struct font_name): New member `resizing_ratio'.
13423 (font_resizing_ratio): New function.
13424 (split_font_name): Set font->resizing_ratio.
13425 (better_font_p): Pay attention to font->resizing_ratio.
13426 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
13427 RESX, and RESY fields.
13428 (try_alternative_families): Try scalable fonts if
13429 Vscalable_fonts_allowed is not Qt.
13430 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
13431
13432 2008-02-01 Dave Love <fx@gnu.org>
13433
13434 * xterm.c (xaw_scroll_callback): Cast correctly.
13435
13436 2008-02-01 Dave Love <fx@gnu.org>
13437
13438 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
13439 (lispy_kana_keys): Comment out.
13440 (make_lispy_event) [XK_kana_A]: Comment out.
13441
13442 * xterm.c (xaw_scroll_callback): Cast call_data.
13443 (XTread_socket): Deal with ASCII keysyms.
13444 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
13445
13446 2008-02-01 Dave Love <fx@gnu.org>
13447
13448 * xterm.c (Vx_keysym_table): New.
13449 (syms_of_xterm): Initialize it.
13450 (XTread_socket): Use it.
13451 From head: Eliminate incorrect optimization that tried to avoid
13452 decoding the output of X*LookupString.
13453 (x_get_font_repertory): Delete charset declaration.
13454
13455 2008-02-01 Kenichi Handa <handa@m17n.org>
13456
13457 * coding.c (detect_coding_charset): If only ASCII bytes are found,
13458 return 0.
13459 (Fdefine_coding_system_internal): Setup
13460 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
13461
13462 2008-02-01 Dave Love <fx@gnu.org>
13463
13464 * coding.c (Fcheck_coding_system): Doc fix.
13465
13466 * editfns.c (Finsert_byte): Return a proper value.
13467
13468 2008-02-01 Kenichi Handa <handa@m17n.org>
13469
13470 * coding.c (decode_coding): Fix args to translate_chars. Pay
13471 attention to Vstandard_translation_table_for_decode.
13472 (encode_coding): Fix args to translate_chars. Pay attention to
13473 Vstandard_translation_table_for_encode.
13474
13475 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
13476 SINGLE_BYTE_CHAR_P.
13477
13478 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
13479 not by SINGLE_BYTE_CHAR_P.
13480
13481 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
13482 SINGLE_BYTE_CHAR_P.
13483
13484 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
13485 SINGLE_BYTE_CHAR_P.
13486
13487 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
13488 by SINGLE_BYTE_CHAR_P.
13489
13490 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
13491 SINGLE_BYTE_CHAR_P.
13492
13493 2008-02-01 Dave Love <fx@gnu.org>
13494
13495 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
13496
13497 2008-02-01 Dave Love <fx@gnu.org>
13498
13499 * fns.c (Flanginfo): Fix typo.
13500
13501 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
13502
13503 2008-02-01 Kenichi Handa <handa@m17n.org>
13504
13505 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
13506 (detect_coding_emacs_mule, detect_coding_iso_2022)
13507 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
13508 incomplete byte sequence. Don't update *mask when correctly detected.
13509 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
13510 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
13511 (detect_coding, detect_coding_system): Adjust for the changes above.
13512
13513 2008-02-01 Kenichi Handa <handa@m17n.org>
13514
13515 * character.c (char_string): Rename from
13516 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
13517 (string_char): Rename from string_char.
13518
13519 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
13520 if C is greater than MAX_3_BYTE_CHAR.
13521 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
13522 string_char instead of string_char_with_unification.
13523
13524 2008-02-01 Dave Love <fx@gnu.org>
13525
13526 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
13527
13528 2008-02-01 Kenichi Handa <handa@m17n.org>
13529
13530 * keymap.c (push_key_description): Pay attention to force_multibyte.
13531
13532 * regex.c (re_search_2): Fix for the case of unibyte buffer.
13533
13534 2008-02-01 Dave Love <fx@gnu.org>
13535
13536 * charset.c (define_charset_internal): Rename `supprementary'.
13537
13538 * Makefile.in (lisp, shortlisp): Remove latin-N.
13539
13540 2008-02-01 Dave Love <fx@gnu.org>
13541
13542 * xfns.c (x_window, x_window): Use use_xim.
13543
13544 * xterm.c (use_xim): Initialize.
13545 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
13546 (x_term_init): Maybe set use_xim.
13547
13548 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
13549
13550 2008-02-01 Kenichi Handa <handa@m17n.org>
13551
13552 * search.c (search_buffer): Fix case-fold-search of multibyte
13553 characters.
13554 (boyer_moore): Rename the last argument to char_high_bits.
13555
13556 2008-02-01 Kenichi Handa <handa@m17n.org>
13557
13558 * xdisp.c (display_string): Fix for the case of zero width glyph.
13559
13560 * xfns.c (x_set_font): Change the error message of the case that
13561 x_new_fontset returns Qt.
13562
13563 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
13564 (Finternal_set_lisp_face_attribute): Use signal_error for the
13565 error of invalid fontset.
13566
13567 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
13568 fontset, return Qt.
13569
13570 2008-02-01 Dave Love <fx@gnu.org>
13571
13572 * unexelf.c (unexec): Make .got handling not SGI-specific.
13573
13574 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
13575
13576 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
13577
13578 * keyboard.c (read_key_sequence): Fix type error.
13579
13580 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
13581 type error.
13582
13583 * fontset.c (fontset_add): Return Lisp_Object.
13584
13585 2008-02-01 Dave Love <fx@gnu.org>
13586
13587 * charset.h (charset_ordered_list_tick): Declare extern.
13588
13589 2008-02-01 Kenichi Handa <handa@m17n.org>
13590
13591 The following changes (and some of 2008-02-01 changes of mine) are
13592 for handling syntax, category, and case conversion for unibyte
13593 characters by converting them to multibyte on the fly. With these
13594 changes, we don't have to setup syntax and case tables for unibyte
13595 characters in each language environment.
13596
13597 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
13598 multibyte if necessary.
13599
13600 * bytecode.c (Fbyte_code): Likewise.
13601
13602 * character.h (LEADING_CODE_LATIN_1_MIN)
13603 (LEADING_CODE_LATIN_1_MAX): New macros.
13604 (unibyte_to_multibyte_table): Extern it.
13605 (unibyte_char_to_multibyte): New macro.
13606 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
13607 (CHAR_LEADING_CODE): New macro.
13608 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
13609
13610 * character.c (unibyte_to_multibyte_table): New variable.
13611 (unibyte_char_to_multibyte): Move to character.h and define as macro.
13612 (multibyte_char_to_unibyte): If C is an eight-bit character,
13613 convert it to the corresponding byte value.
13614
13615 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
13616 not 1, signals an error. Update the elements of
13617 unibyte_to_multibyte_table.
13618 (init_charset_once): Initialize unibyte_to_multibyte_table.
13619 (syms_of_charset): Define the charset `iso-8859-1'.
13620
13621 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
13622 as is without converting it to unibyte. In a unibyte buffer,
13623 convert C to multibyte before checking the syntax.
13624
13625 * lisp.h (unibyte_char_to_multibyte): Delete extern.
13626
13627 * minibuf.c (Fminibuffer_complete_word): Use the macro
13628 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
13629
13630 * regex.h (struct re_pattern_buffer): New member target_multibyte.
13631
13632 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
13633 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
13634 that is zero, convert an eight-bit char to multibyte.
13635 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
13636 non-emacs case.
13637 (PATFETCH): Convert an eight-bit char to multibyte.
13638 (HANDLE_UNIBYTE_RANGE): New macro.
13639 (regex_compile): Setup the compiled pattern for multibyte chars
13640 even if the given regex string is unibyte. Use PATFETCH_RAW
13641 instead of PATFETCH in many places. To handle `charset'
13642 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
13643 only for ASCII chars.
13644 (analyse_first) <exactn>: Simplify because the compiled pattern
13645 is multibyte.
13646 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
13647 <charset>: Use CHAR_LEADING_CODE to get leading codes.
13648 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
13649 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
13650 multibyte always 1.
13651 (re_search_2): In emacs, set the locale variable multibyte to 1,
13652 otherwise to 0. New local variable target_multibyte. Check it
13653 to decide the multibyteness of STR1 and STR2. If
13654 target_multibyte is zero, convert unibyte chars to multibyte
13655 before translating and checking fastmap.
13656 (TARGET_CHAR_AND_LENGTH): New macro.
13657 (re_match_2_internal): In emacs, set the locale variable multibyte
13658 to 1, otherwise to 0. New local variable target_multibyte. Check
13659 it to decide the multibyteness of STR1 and STR2. Use
13660 TARGET_CHAR_AND_LENGTH to fetch a character from D.
13661 <charset, charset_not>: If multibyte is nonzero, check fastmap
13662 only for ASCII chars. Call bcmp_translate with
13663 target_multibyte, not with multibyte.
13664 <begline>: Declare the local variable C as `unsigned'.
13665 (bcmp_translate): Change the last arg name to target_multibyte.
13666
13667 * search.c (compile_pattern_1): Don't adjust the multibyteness of
13668 the regexp pattern and the matching target. Set cp->buf.multibyte
13669 to the multibyteness of the regexp pattern. Set
13670 cp->but.target_multibyte to the multibyteness of the matching target.
13671 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
13672 FETCH_STRING_CHAR_ADVANCE.
13673 (Freplace_match): Convert unibyte chars to multibyte.
13674
13675 * syntax.c (char_quoted, back_comment, scan_words)
13676 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
13677 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
13678 unibyte chars to multibyte.
13679 (skip_chars): Delete the arg syntaxp, and move the code for
13680 handling syntaxes to skip_syntaxes. Change callers.
13681 Fix the case that the multibyteness of STRING and the current
13682 buffer doesn't match.
13683 (skip_syntaxes): New function.
13684 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
13685 SINGLE_BYTE_CHAR_P.
13686
13687 2008-02-01 Kenichi Handa <handa@m17n.org>
13688
13689 * xfaces.c (QCfontset): New variable.
13690 (LFACE_FONTSET): New macro.
13691 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
13692 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
13693 (Finternal_set_lisp_face_attribute)
13694 (Finternal_get_lisp_face_attribute): Handle QCfontset.
13695 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
13696 check also LFACE_FONTSET_INDEX.
13697 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
13698 attrs[LFACE_FONT_INDEX].
13699 (syms_of_xfaces): Intern and staticpro QCfontset.
13700
13701 * dispextern.h (enum lface_attribute_index): New member
13702 LFACE_FONTSET_INDEX.
13703
13704 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
13705
13706 2008-02-01 Kenichi Handa <handa@m17n.org>
13707
13708 * coding.c (coding_set_destination): Fix coding->destination for
13709 the case converting a region.
13710 (encode_coding_utf_8): Encode eight-bit chars as single byte.
13711 (encode_coding_object): Fix coding->dst_pos and
13712 coding->dst_pos_byte for the case converting a region.
13713
13714 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
13715
13716 * character.h (BYTE8_STRING): New macro.
13717
13718 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
13719
13720 2008-02-01 Kenichi Handa <handa@m17n.org>
13721
13722 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
13723 characters by octal form.
13724
13725 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
13726
13727 * buffer.h (_fetch_multibyte_char_len): Delete extern.
13728 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
13729 _fetch_multibyte_char_len.
13730 (FETCH_CHAR_AS_MULTIBYTE): New macro.
13731
13732 * casetab.c (set_canon, set_identity, shuffle): Simplify.
13733
13734 * casefiddle.c (casify_object): Simplify. Handle the case that
13735 the case conversion change the byte length.
13736 (casify_region): Likewise.
13737
13738 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
13739
13740 * character.c (_fetch_multibyte_char_len): Delete this variable.
13741 (syms_of_character): Setup Vprintable_chars.
13742
13743 * editfns.c (Fchar_equal): Fix for the unibyte case.
13744 (Finsert_byte): New function.
13745 (syms_of_editfns): Defsubr it.
13746
13747 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
13748 of direct code 0x3ffff.
13749
13750 * search.c (Freplace_match): Fix for the unibyte case.
13751
13752 2008-02-01 Kenichi Handa <handa@m17n.org>
13753
13754 * lread.c (safe_to_load_p): Fix the logic.
13755
13756 * syntax.c (scan_words): Don't treat characters belonging to
13757 different scripts as constituting a word.
13758
13759 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
13760
13761 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
13762
13763 * emacs.c (main): In the case of --unibyte, instead of aborting on
13764 finding non-empty buffer, make it unibyte.
13765
13766 2008-02-01 Kenichi Handa <handa@m17n.org>
13767
13768 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
13769 to create a fontset.
13770
13771 2008-02-01 Dave Love <fx@gnu.org>
13772
13773 * character.c (Funibyte_char_to_multibyte): Doc fix.
13774
13775 * xfns.c [HAVE_STDLIB_H]: Fix last change.
13776
13777 2008-02-01 Kenichi Handa <handa@m17n.org>
13778
13779 * fontset.c (fontset_add): Make the type `int'.
13780 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
13781
13782 * character.c (unibyte_char_to_multibyte)
13783 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
13784 charset_unibyte, not charset_primary.
13785
13786 * charset.h (charset_unibyte): Extern it instead of charset_primary.
13787
13788 * charset.c (charset_unibyte): Rename from charset_primary.
13789 (Funibyte_charset): Rename from Fprimary_charset.
13790 (Fset_unibyte_charset): Rename from Fset_primary_charset.
13791 (syms_of_charset): Adjust for the above changes.
13792
13793 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
13794 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
13795 it->multibyte_p is zero.
13796
13797 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
13798 Delete extern.
13799
13800 2008-02-01 Kenichi Handa <handa@m17n.org>
13801
13802 * coding.c (Fdefine_coding_system_internal): Fix category setting
13803 for a coding system of type iso-2022.
13804
13805 2008-02-01 Kenichi Handa <handa@m17n.org>
13806
13807 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
13808
13809 2008-02-01 Kenichi Handa <handa@m17n.org>
13810
13811 * syntax.c (Vnext_word_boundary_function_table): New variable.
13812 (next-word-boundary-function-table): Declare it as a Lisp variable
13813 in syms_of_syntax.
13814 (scan_words): Call functions in Vnext_word_boundary_function_table
13815 if any.
13816
13817 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
13818
13819 * fontset.c (fs_load_font): If fontp->charset is not negative,
13820 return fontp without setting its members.
13821
13822 2008-02-01 Dave Love <fx@gnu.org>
13823
13824 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
13825
13826 * m/sparc.h (HAVE_ALLOCA): Delete.
13827
13828 * s/irix6-5.h: Don't include strings.h.
13829 (bcopy, bzero, bcmp): Don't undef.
13830
13831 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
13832
13833 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
13834 (TIOCSIGSEND): Don't test IRIX6.
13835 (bcopy, bzero, bcmp): Define conditionally.
13836
13837 2008-02-01 Kenichi Handa <handa@m17n.org>
13838
13839 * buffer.c (Qas, Qmake, Qto): New variables.
13840 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
13841 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
13842
13843 * callproc.c (Fcall_process): Don't call insert_1_both directly if
13844 we are inserting a process output into a multibyte buffer.
13845
13846 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
13847 multibyte_char_to_unibyte.
13848
13849 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
13850 by the primary charset, make it eight-bit char.
13851 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
13852
13853 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
13854 (charset_8_bit__control, charset_8_bit_graphic)
13855 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
13856 (define_charset_internal): New function.
13857 (syms_of_charset): Call define_charset_internal for pre-defined
13858 charsets.
13859
13860 * charset.h (charset_8_bit): Extern it.
13861
13862 * coding.c (make_conversion_work_buffer): Adjust for the change
13863 of Fset_buffer_multibyte.
13864 (encode_coding_raw_text): Increment p0 in the loop.
13865
13866 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
13867
13868 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
13869 for the change of Fset_buffer_multibyte.
13870
13871 * fns.c (Fstring_to_multibyte): New function.
13872 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
13873
13874 2008-02-01 Dave Love <fx@gnu.org>
13875
13876 * xfns.c (x_put_x_image): Declare args.
13877
13878 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
13879 (try_font_list): Declare an arg.
13880
13881 * xdisp.c (message2_nolog, set_message): Declare an arg.
13882
13883 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
13884
13885 * syntax.c (scan_sexps_forward): Declare an arg.
13886
13887 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
13888 Declare an arg.
13889
13890 * lisp.h (Fnew_fontset): Declare.
13891
13892 * keymap.c (push_key_description): Call CHARACTERP correctly.
13893
13894 * fontset.c (fontset_add): Declare args. Call make_number correctly.
13895 (face_for_char): Delete unused vars.
13896 (Fset_fontset_font): Doc fix. Delete unused vars.
13897
13898 * doc.c (Fsubstitute_command_keys): Delete unused vars.
13899
13900 * composite.c (update_compositions): Declare arg.
13901
13902 * cm.c (calccost, cmgoto): Declare args.
13903
13904 * charset.c: Remove `emacs' conditional. Doc fixes.
13905 (map_char_table_for_charset): Declare.
13906
13907 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
13908
13909 * ccl.c: Remove `emacs' conditional.
13910
13911 2008-02-01 Kenichi Handa <handa@m17n.org>
13912
13913 The following changes are to allow specifying multiple font
13914 patterns for a character range (specified by script or charset).
13915
13916 * Makefile.in (abbrev.o): Depend on syntax.h.
13917 (xfaces.o): Depend on charset.h.
13918
13919 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
13920 SINGLE_BYTE_CHAR_P.
13921
13922 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
13923
13924 * character.h (Vchar_script_table): Extern it.
13925
13926 * character.c (Vscript_alist): Delete.
13927 (Vchar_script_table, Qchar_script_table): New variable.
13928 (syms_of_character): Declare Vchar_script_table as a lisp variable
13929 and initialize it.
13930
13931 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
13932 have property char-table-extra-slots, make no extra slot.
13933
13934 * dispextern.h (struct face): Delete member `charset'.
13935 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
13936 SINGLE_BYTE_CHAR_P.
13937 (choose_face_font, lookup_non_ascii_face, font_name_registry):
13938 Add prototypes.
13939 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
13940 (generate_ascii_font_name): Rename from generate_ascii_font.
13941
13942 * fontset.h (get_font_repertory_func): New prototype.
13943 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
13944 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
13945
13946 * fontset.c (Qprepend, Qappend): New variables.
13947 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
13948 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
13949 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
13950 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
13951 (fontset_ref_and_range, fontset_add, reorder_font_vector)
13952 (load_font_get_repertory): New functions.
13953 (fontset_set): Delete.
13954 (fontset_face): New arg FACE. Return face ID, not face.
13955 Complete re-write to handle new fontset structure. Change caller.
13956 (free_face_fontset): Use ASET istead of AREF (X) = Y.
13957 (face_for_char): Don't call lookup_face.
13958 (make_fontset_for_ascii_face): New arg FACE.
13959 (fs_load_font): New arg CHARSET_ID. Don't check
13960 Vfont_encoding_alist here.
13961 (find_font_encoding): New function.
13962 (list_fontsets): Use STRINGP, not ! NILP.
13963 (accumulate_script_ranges): New function.
13964 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
13965 re-written to handle new fontset structure.
13966 (Ffontset_font): Return a copy of element.
13967 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
13968 docstring of font-encoding-alist.
13969
13970 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
13971 (Fset_fotset_font): Fix arguments to 5.
13972
13973 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
13974
13975 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
13976 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
13977 (highlight_trailing_whitespace): Adjust for the change of
13978 lookup_named_face.
13979
13980 * xfaces.c: Include charset.h.
13981 (load_face_font): Delete argument C. Change caller.
13982 (generate_ascii_font_name): Rename from generate_ascii_font.
13983 (font_name_registry): New function.
13984 (cache_face): Store ascii faces before non-ascii faces in buckets.
13985 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
13986 Lookup only ascii faces.
13987 (lookup_non_ascii_face): New function.
13988 (lookup_named_face): Delete argument C. Change caller.
13989 (lookup_derived_face): Delete argument C. Change caller.
13990 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
13991 a string, just call font_list with it.
13992 (choose_face_font): Delete arguments FACE and C. New arg
13993 FONT_SPEC. Change caller.
13994 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
13995 Change caller.
13996 (realize_non_ascii_face): New function.
13997 (realize_x_face): Call load_face_font here.
13998 (realize_tty_face): Delete argument C. Change caller.
13999 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
14000 get a face ID.
14001 (dump_realized_face): Don't print charset of FACE.
14002
14003 * xfns.c (x_set_font): Always call x_new_fontset and
14004 store_frame_parameter.
14005 (Fx_create_frame): Call x_new_fontset, not x_new_font.
14006 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
14007
14008 * xterm.h (x_get_font_repertory): Extern it.
14009
14010 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
14011 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
14012 it->multibyte_p is zero.
14013 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
14014 (x_new_fontset): If FONTSETNAME doesn't match any existing
14015 fontsets, create a new one.
14016 (x_get_font_repertory): New function.
14017
14018 2008-02-01 Kenichi Handa <handa@m17n.org>
14019
14020 * coding.c (Ffind_coding_systems_region_internal): Detect an
14021 ASCII only string correctly.
14022
14023 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
14024 version is 0.
14025
14026 2008-02-01 Kenichi Handa <handa@m17n.org>
14027
14028 * lread.c: Include "coding.h".
14029 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
14030 (load_each_byte, unread_char): New variables.
14031 (readchar_backlog): Delete.
14032 (readchar): Return a character unless load_each_byte is nonzero.
14033 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
14034 cons. If unread_char is not -1, simply return it.
14035 (unreadchar): Handle the case that readcharfun is
14036 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
14037 (read_multibyte): Delete.
14038 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
14039 (read_emacs_mule_char): New functions.
14040 (Fload): Even if the file doesn't have the extension ".elc", if
14041 safe_to_load_p returns a positive version number, assume that the
14042 file contains bytecompiled code. If the version is less than 22,
14043 load the file while decoding multibyte sequences by emacs-mule.
14044 (readevalloop): Don't use readchar_backlog.
14045 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
14046 (Fread_from_string): Pay attention to the case that STREAM is a cons.
14047 (read_escape): Delete the arg BYTEREP.
14048 (read1): Set load_each_byte to 1 temporarily while handling
14049 #@NUMBER. Don't call read_multibyte.
14050 (read_vector): Call Fread with a cons. If readcharfun is
14051 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
14052 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
14053 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
14054 and Qload_force_doc_strings.
14055
14056 2008-02-01 Kenichi Handa <handa@m17n.org>
14057
14058 * xdisp.c (face_before_or_after_it_pos): Call
14059 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
14060
14061 2008-02-01 Kenichi Handa <handa@m17n.org>
14062
14063 * character.h (TRAILING_CODE_P): New macro.
14064 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
14065 (string_char_with_unification): Fix prototype.
14066 (Vscript_alist): Extern it.
14067
14068 * character.c (Vscript_alist): New variable.
14069 (string_char_with_unification, str_as_unibyte)
14070 (string_escape_byte8): Add `const' to local variables.
14071 (syms_of_character): Declare script-alist as a Lisp variable.
14072
14073 * charset.h (Vcharset_ordered_list): Extern it.
14074 (charset_ordered_list_tick): Extern it.
14075 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
14076 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
14077 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
14078 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
14079 (Funify_charset): Adjust for the change of Funify_charset.
14080
14081 * charset.c (charset_ordered_list_tick): New variable.
14082 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
14083 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
14084 deunify intead of unify a charset.
14085 (string_xstring_p): Add `const' to local variables.
14086 (find_charsets_in_text): Add `const' to arguments and local variables.
14087 (encode_char): Adjust for the change of Funify_charset. Fix
14088 detecting of invalid code.
14089 (Fset_charset_priority): Increment charset_ordered_list_tick.
14090 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
14091 and TO_CODE.
14092
14093 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
14094 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
14095 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
14096 (decode_coding_ccl, consume_chars)
14097 (Ffind_coding_systems_region_internal)
14098 (Fcheck_coding_systems_region): Add `const' to local variables.
14099
14100 * print.c (print_object): Use octal form for printing the
14101 contents of a bool vector.
14102
14103 2008-02-01 Dave Love <fx@gnu.org>
14104
14105 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
14106 <version == 20>: Refuse to load.
14107
14108 2008-02-01 Dave Love <fx@gnu.org>
14109
14110 * fns.c: Move coding.h.
14111 (Qcodeset, Qdays, Qmonths): New.
14112 (concat): Use CHARACTERP instead of INTEGERP.
14113 (Flocale_codeset): Delete.
14114 (Flanginfo): New function.
14115 (syms_of_fns): Change accordingly.
14116
14117 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
14118
14119 2008-02-01 Dave Love <fx@gnu.org>
14120
14121 * casetab.c (init_casetab_once, init_casetab_once): Fix
14122 CHAR_TABLE_SET call.
14123
14124 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
14125
14126 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
14127
14128 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
14129 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
14130 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
14131
14132 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
14133
14134 * coding.c (ENCODE_DESIGNATION, decode_eol)
14135 (make_conversion_work_buffer, code_conversion_restore)
14136 (Fdefine_coding_system_internal): Convert Lisp types.
14137 (code_conversion_restore): Use EQ, not ==.
14138 (Fencode_coding_string): Fix code_convert_string call.
14139
14140 * coding.h (code_convert_region): Fix prototype.
14141
14142 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
14143
14144 * fontset.c (fontset_ref, fontset_set, fs_load_font)
14145 (Ffontset_info): Convert Lisp types.
14146
14147 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
14148
14149 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
14150
14151 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
14152
14153 * chartab.c: Include "...h", not <...h> in some cases.
14154
14155 * callproc.c (Fcall_process): Remove unused variables.
14156
14157 2008-02-01 Dave Love <fx@gnu.org>
14158
14159 * coding.c (Fset_coding_system_priority): Allow null arg list.
14160
14161 2008-02-01 Dave Love <fx@gnu.org>
14162
14163 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
14164 (Fself_insert_and_exit): Use CHARACTERP.
14165
14166 * callproc.c (Fcall_process): Remove unused vars.
14167
14168 * xterm.c (XTread_socket): Add extra dead keysyms.
14169
14170 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
14171
14172 * dispextern.h: Remove prototypes for redraw_frame,
14173 redraw_garbaged_frames.
14174
14175 * cmds.c (Fself_insert_command): Use CHARACTERP.
14176
14177 * chartab.c (make_sub_char_table): Remove unused var.
14178 (Fset_char_table_default, Fmap_char_table): Doc fix.
14179
14180 * keymap.c (access_keymap): Remove generic char code.
14181 (push_key_description): Use CHARACTERP.
14182
14183 2008-02-01 Dave Love <fx@gnu.org>
14184
14185 * charset.c: Doc fixes.
14186 (Funify_charset): Extra checking.
14187
14188 2008-02-01 Dave Love <fx@gnu.org>
14189
14190 * lread.c: Remove some unused variables.
14191 (safe_to_load_p): If safe, return the magic number version byte.
14192 (Fload): Maybe use load-with-code-conversion.
14193
14194 2008-02-01 Kenichi Handa <handa@m17n.org>
14195
14196 * category.c (Fmodify_category_entry): Don't modify the contents
14197 of category_set for characters out of the range. Avoid
14198 unnecessary modification.
14199
14200 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
14201 Vchar_unify_table. The default value of the table is now nil.
14202
14203 * character.c (syms_of_character): Setup Vchar_width_table for
14204 eight-bit-control and raw-byte chars.
14205
14206 * charset.h (enum define_charset_arg_index): Delete
14207 charset_arg_parents and add charset_arg_subset and
14208 charset_arg_superset.
14209 (enum charset_attr_index): Delete charset_parents and add
14210 charset_subset and charset_superset.
14211 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
14212 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
14213 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
14214 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
14215 (CHARSET_SUPERSET): New macros.
14216 (charset_work): Extern it.
14217 (ENCODE_CHAR): Use charset_work.
14218 (CHAR_CHARSET_P): Adjust for the change of encoder format.
14219 (map_charset_chars): Extern it.
14220
14221 * charset.c (load_charset_map): Set the default value of encoder
14222 and deunifier char-tables to nil.
14223 (map_charset_chars): Change argument. Change callers. Use
14224 map_char_table_for_charset instead of map_char_table.
14225 (Fmap_charset_chars): New optional args from_code and to_code.
14226 (Fdefine_charset_internal): Adjust for the change of
14227 `define-charset' (:parents -> :subset or :superset).
14228 (charset_work): New variable.
14229 (encode_char, syms_of_charset): Adjust for the change of
14230 Fdefine_charset_internal.
14231 (Ffind_charset_string): Setup the vector `charsets' correctly.
14232
14233 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
14234 the previous change.
14235 (char_table_ref_and_range): Adjust for the above change.
14236 (map_sub_char_table_for_charset): New function.
14237 (map_char_table_for_charset): New function.
14238
14239 * keymap.c (describe_vector): Handle a char-table directly here.
14240 (describe_char_table): Delete.
14241
14242 * lisp.h (map_charset_chars): Delete.
14243
14244 2008-02-01 Dave Love <fx@gnu.org>
14245
14246 * fns.c (count_combining): Comment out (unused).
14247 (Flocale_codeset): New.
14248 (syms_of_fns): Defsubr it.
14249
14250 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
14251 (size_t): Remove.
14252
14253 2008-02-01 Dave Love <fx@gnu.org>
14254
14255 * Makefile.in (chartab.o): Depend on charset.h.
14256
14257 2008-02-01 Kenichi Handa <handa@m17n.org>
14258
14259 * character.c (syms_of_character): Set the default value of
14260 Vprintable_chars to Qnil.
14261
14262 2008-02-01 Dave Love <fx@gnu.org>
14263
14264 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
14265
14266 2008-02-01 Kenichi Handa <handa@m17n.org>
14267
14268 * charset.c (load_charset_map): Handle the case that from < to
14269 correctly.
14270
14271 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
14272 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
14273 Pay attention to raw-8-bit chars.
14274
14275 2008-02-01 Kenichi Handa <handa@m17n.org>
14276
14277 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
14278 It is not bytecompiled now.
14279
14280 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
14281 (charset_jisx0208): New variables.
14282 (Fdefine_charset_internal): Setup them if appropriate.
14283 (init_charset_once): Initialize them to -1.
14284
14285 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
14286 (charset_jisx0208): Extern them.
14287
14288 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
14289 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
14290 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
14291 (setup_iso_safe_charsets): Fix arguments to Fassq.
14292 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
14293 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
14294 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
14295 (encode_coding_iso_2022): Change the 1st arg to
14296 ENCODE_ISO_CHARACTER to a variable.
14297
14298 2008-02-01 Kenichi Handa <handa@m17n.org>
14299
14300 * charset.h (enum define_charset_arg_index): New enums
14301 charset_arg_min_code and charset_arg_max_code.
14302 (struct charset): New member char_index_offset.
14303
14304 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
14305 Take charset->char_index_offset into account.
14306 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
14307 args[charset_arg_max_code]. Setup charset.char_index_offset.
14308 (syms_of_charset): Fix args to Fdefine_charset_internal.
14309
14310 2008-02-01 Dave Love <fx@gnu.org>
14311
14312 * coding.c (decode_coding_utf_8): Reject overlong sequences.
14313
14314 2008-02-01 Dave Love <fx@gnu.org>
14315
14316 * coding.c: Doc fixes.
14317 (Fcoding_system_aliases): Fix return value.
14318 (Qmac): Remove (duplicated) definition.
14319
14320 2008-02-01 Dave Love <fx@gnu.org>
14321
14322 * charset.c (Fcharset_priority_list, Fset_charset_priority): New
14323 functions.
14324
14325 * character.c (Fstring): Doc fix.
14326
14327 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
14328
14329 * fontset.c (Ffontset_info): Doc fix. Return charset names, not
14330 ids.
14331 (font-encoding-alist): Doc fix.
14332
14333 2008-02-01 Dave Love <fx@gnu.org>
14334
14335 * term.c (costs_set): Declare static, non-initialized for pcc.
14336 (encode_terminal_code): Remove unused var.
14337
14338 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
14339 for K&R.
14340
14341 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
14342
14343 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
14344 (suffixes): Move out of make_subsidiaries for K&R.
14345
14346 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
14347
14348 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
14349
14350 2008-02-01 Dave Love <fx@gnu.org>
14351
14352 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
14353
14354 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
14355
14356 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
14357
14358 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
14359
14360 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
14361
14362 2008-02-01 Kenichi Handa <handa@m17n.org>
14363
14364 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
14365 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
14366
14367 2008-02-01 Kenichi Handa <handa@m17n.org>
14368
14369 * coding.c (decode_coding_charset): Adjust for the change of
14370 Fdefine_coding_system_internal.
14371 (Fdefine_coding_system_internal): For a coding system of
14372 `charset' type, store a list of charset IDs in
14373 `charset_attr_charset_valids' element of coding attributes.
14374
14375 2008-02-01 Kenichi Handa <handa@m17n.org>
14376
14377 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
14378 (emacs_mule_char): New arg src. Delete arg `composition'. Change
14379 caller. Handle 2-byte and 3-byte charsets correctly.
14380 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
14381 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
14382 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
14383 (DECODE_EMACS_MULE_21_COMPOSITION): Call
14384 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
14385 sequence.
14386 (decode_coding_emacs_mule): Handle composition correctly. Rewind
14387 `src' and `consumed_chars' correctly before calling emacs_mule_char.
14388 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
14389 and alt&rule composition.
14390 (decode_coding_iso_2022): Handle composition correctly.
14391 (init_coding_once): Setup emacs_mule_bytes for private charsets.
14392
14393 * charset.c (Fdefine_charset_internal): Fix bug for the case of
14394 re-defining a charset. If the charset has :emacs-mule-id, setup
14395 emacs_mule_bytes.
14396 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
14397
14398 2008-02-01 Kenichi Handa <handa@m17n.org>
14399
14400 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
14401 (encode_coding_big5, encode_coding_charset): If coding requires safe
14402 encoding, produce a character specified by
14403 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
14404
14405 2008-02-01 Dave Love <fx@gnu.org>
14406
14407 * xterm.c (XSetIMValues): Declare.
14408
14409 * process.c: Conditionally include sys/wait.h, pty.h.
14410
14411 * print.c (print_object): Fix print format for 64-bit systems.
14412
14413 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
14414
14415 * buffer.c (emacs_strerror): Declare.
14416
14417 * fontset.c (Fclear_face_cache): Declare.
14418 (accumulate_font_info): Comment-out (unused).
14419 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
14420 variables.
14421
14422 * character.h (string_escape_byte8): Declare.
14423
14424 * charset.c (load_charset_map, load_charset_map_from_file): Remove
14425 unused vars.
14426 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
14427 (Fmap_charset_chars): Doc fix.
14428
14429 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
14430 (Fset_coding_system_priority, Fset_coding_system_priority)
14431 (Fdefine_coding_system_internal): Doc fix.
14432
14433 2008-02-01 Dave Love <fx@gnu.org>
14434
14435 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
14436
14437 2008-02-01 Kenichi Handa <handa@m17n.org>
14438
14439 * character.c (string_escape_byte8): Make multibyte string with
14440 correct size.
14441
14442 * charset.c (Fmake_char): Delete unnecessary code.
14443
14444 2008-02-01 Kenichi Handa <handa@m17n.org>
14445
14446 * xfns.c (x_encode_text): Allocate coding.destination here, and
14447 call encode_coding_object with dst_object Qnil.
14448
14449 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
14450 multibyte form correctly.
14451
14452 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
14453 against Vfont_encoding_alist.
14454
14455 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
14456 handling of charset list.
14457 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
14458 (decode_coding_object): Move point to coding->dst_pos before
14459 calling post-read-conversion function.
14460 (encode_coding_object): Give correct arguments to
14461 pre-write-conversion. Ignore the return value of
14462 pre-write-conversion function. Pay attention to the case that
14463 pre-write-conversion changes the current buffer. If dst_object is
14464 Qt, even if coding->src_bytes is zero, allocate at least one byte
14465 to coding->destination.
14466
14467 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
14468
14469 * charset.c (Fmake_char): Make it more backward compatible.
14470 (Fmap_charset_chars): Fix docstring.
14471
14472 2008-02-01 Dave Love <fx@gnu.org>
14473
14474 * coding.c: Doc fixes.
14475 (Fdefine_coding_system_alias): Use names, not symbols, in
14476 coding-system-alist.
14477
14478 2008-02-01 Kenichi Handa <handa@m17n.org>
14479
14480 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
14481 of calling free_realized_face.
14482
14483 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
14484
14485 * charset.c (read_hex): Don't treat SPC as a comment starter.
14486 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
14487 (Fdecode_char): Fix typo.
14488
14489 2008-02-01 Kenichi Handa <handa@m17n.org>
14490
14491 * charset.h (struct charset): New member `code_space_mask'.
14492
14493 * coding.c (coding_set_source): Delete the local variable beg_byte.
14494 (encode_coding_charset, Fdefine_coding_system_internal):
14495 Delete the local variable charset.
14496 (Fdefine_coding_system_internal): Setup
14497 attrs[coding_attr_charset_valids] correctly.
14498
14499 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
14500 member to check if CODE is valid or not.
14501 (Fdefine_charset_internal): Initialize `code_space_mask' member.
14502 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
14503 is within the range of charset->min_code and carset->max_code.
14504
14505 2008-02-01 Dave Love <fx@gnu.org>
14506
14507 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
14508
14509 * dispextern.h (generate_ascii_font): Fix return type.
14510
14511 * xfaces.c (generate_ascii_font): Fix arg declaration.
14512
14513 * coding.c (coding_inherit_eol_type)
14514 (Fset_terminal_coding_system_internal)
14515 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
14516
14517 2008-02-01 Kenichi Handa <handa@m17n.org>
14518
14519 * coding.c (decode_coding_charset, encode_coding_charset): Handle
14520 multiple charsets correctly.
14521
14522 2008-02-01 Kenichi Handa <handa@m17n.org>
14523
14524 * search.c (boyer_moore): Fix handling of multibyte character
14525 translation.
14526
14527 * xdisp.c (display_mode_element): When the variable `elt' is
14528 changed, update `this' and `lisp_string'.
14529
14530 2008-02-01 Kenichi Handa <handa@m17n.org>
14531
14532 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
14533
14534 * callproc.c (Fcall_process): Be sure to give the current buffer
14535 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
14536
14537 * charset.c (struct charset_map_entries): New struct.
14538 (load_charset_map): Rename from parse_charset_map. New args
14539 entries and n_entries. Change caller.
14540 (load_charset_map_from_file): Rename from load_charset_map.
14541 Change caller. New arg control_flag. Call load_charset_map at
14542 the tail.
14543 (load_charset_map_from_vector): New function.
14544 (Fdefine_charset_internal): Setup charset.compact_codes_p.
14545 (encode_char): If the charset is compact, change a character index
14546 to a code point.
14547
14548 * coding.c (coding_alloc_by_making_gap): Check the case that the
14549 source and destination are the same correctly.
14550 (decode_coding_raw_text): Set coding->consumed_char and
14551 coding->consumed to 0.
14552 (produce_chars): If coding->chars_at_source is nonzero, update
14553 coding->consumed_char and coding->consumed before calling
14554 alloc_destination.
14555 (Fdefine_coding_system_alias): Register ALIAS in
14556 Vcoding_system_alist.
14557 (syms_of_coding): Define `no-conversion' coding system at the tail.
14558
14559 * fileio.c (Finsert_file_contents): Set coding_system instead of
14560 val. If the current buffer is multibyte, always call
14561 decode_coding_gap.
14562
14563 * xfaces.c (try_font_list): Give higher priority to fontset's
14564 family than face's family.
14565
14566 2008-02-01 Kenichi Handa <handa@m17n.org>
14567
14568 * callproc.c (Fcall_process): Be sure to give the current buffer
14569 to decode_coding_c_string.
14570
14571 * xfaces.c (try_font_list): Give a family specified in a fontset
14572 higher priority than a family specified in a face.
14573
14574 2008-02-01 Kenichi Handa <handa@m17n.org>
14575
14576 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
14577 Fix arguments to insert_from_buffer.
14578
14579 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
14580
14581 2008-02-01 Kenichi Handa <handa@m17n.org>
14582
14583 * coding.c (produce_chars): Set the variable `multibytep' correctly.
14584 (decode_coding_gap): Set coding->dst_multibyte correctly.
14585
14586 2008-02-01 Kenichi Handa <handa@m17n.org>
14587
14588 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
14589 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
14590 (encode_coding_utf_16): Substitute coding->default_char for
14591 non-Unicode characters.
14592 (decode_coding): Don't call record_insert here.
14593 (setup_coding_system): Initialize `surrogate' of
14594 coding->spec.utf_16 to 0.
14595 (EMIT_ONE_BYTE): Fix for multibyte case.
14596
14597 * insdel.c (insert_from_gap): Call record_insert.
14598
14599 2008-02-01 Kenichi Handa <handa@m17n.org>
14600
14601 * casefiddle.c (casify_region): Fix multibyte case.
14602
14603 * character.c (c_string_width): Add return type `int'.
14604 (char_string_with_unification): Delete arg ADVANCED.
14605
14606 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
14607 (CHAR_STRING): Adjust for the change of char_string_with_unification.
14608 (CHAR_STRING_ADVANCE): Make it do-while statement.
14609
14610 * chartab.c (sub_char_table_set_range): Optimize for the case
14611 DEPTH == 3. Add workaround code for a GCC optimization bug.
14612
14613 * charset.c (parse_charset_map): Remove an unused variable.
14614
14615 * coding.c: Delete unused variables.
14616
14617 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
14618 earlier. If inserted is zero and the coding system doesn't
14619 require flushing, don't call decode_coding_gap.
14620
14621 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
14622
14623 2008-02-01 Kenichi Handa <handa@m17n.org>
14624
14625 The following changes are for using Unicode as an internal
14626 character model, and use UTF-8 format for buffer/string
14627 representation.
14628
14629 * .gdbinit (xchartable): Adjust for the change of char table structure.
14630 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
14631
14632 * Makefile.in (obj): Add character.o and chartab.o.
14633 (lisp, shortlisp): Remove utf-8.elc.
14634 (*.o): For many files, change dependency on charset.h to
14635 character.h, and add dependency on character.h.
14636 (character.o, chartab.o): New targets.
14637
14638 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
14639 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
14640 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
14641 of "charset.h".
14642
14643 * dired.c, filelock.c: Include "character.h".
14644
14645 * alloc.c: Include "character.h" instead of "charset.h".
14646 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
14647 (syms_of_alloc): Remove defsubr for Smake_char_table.
14648
14649 * buffer.c: Include "character.h" instead of "charset.h", don't
14650 include "coding.h".
14651 (Fset_buffer_multibyte): Adjust for UTF-8.
14652
14653 * buffer.h: EXFUN Fbuffer_live_p.
14654
14655 * callproc.c: Include "character.h" instead of "charset.h".
14656 (Fcall_process): Big change for the new code-conversion APIs.
14657
14658 * casetab.c: Include "character.h" instead of "charset.h".
14659 (set_canon, set_identity, shuffle): Adjust for the new
14660 map_char_table spec.
14661 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
14662 accessing the char table structure.
14663
14664 * chartab.c: New file that implements char table.
14665
14666 * category.c: Include "character.h".
14667 (copy_category_entry): New function.
14668 (copy_category_table): Call map_char_table and copy_category_entry.
14669 (Fmake_category_table): Initialize all top-level slots.
14670 (char_category_set): New function.
14671 (modify_lower_category_set): Delete.
14672 (Fmodify_category_entry): Call char_table_ref_and_range.
14673
14674 * category.h (CATEGORY_SET): Just call char_category_set.
14675
14676 * ccl.c: Include "character.h".
14677 (Qccl, Qcclp): New variables.
14678 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
14679 it's less than 256.
14680 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
14681 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
14682 and DST type.
14683 (ccl_driver): Change types of argument, adjust code accordingly.
14684 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
14685 ccl_driver.
14686 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
14687
14688 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
14689 New members src_multibyte, dst_multibyte, consumed, and produced.
14690 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
14691 (CODING_SPEC_CCL_PROGRAM): New macro.
14692 (ccl_driver): Update prototype.
14693 (Qccl, Qcclp, Fccl_program_p): Extern them.
14694 (CHECK_CCL_PROGRAM): New macro.
14695
14696 * character.c, character.h, chartab.c: New files.
14697
14698 * charset.c: Mostly re-written. Move character and multibyte sequence
14699 handling codes to character.c.
14700
14701 * charset.h: Mostly re-written. Move character and multibyte sequence
14702 handling codes to character.h.
14703
14704 * coding.c, coding.h: Mostly re-written.
14705
14706 * composite.c: Include "character.h" instead of "charset.h".
14707 (CHAR_WIDTH): Move to character.h.
14708 (HASH_KEY, HASH_VALUE): Delete.
14709
14710 * composite.h (enum composition_method): Change order of enumeration
14711 symbols.
14712
14713 * data.c: Include "character.h" instead of "charset.h".
14714 (Faref): Call CHAR_TABLE_REF for a char table.
14715 (Faset): Call CHAR_TABLE_SET for a char table.
14716
14717 * dispextern.h (free_realized_face, check_face_attribytes)
14718 (generate_ascii_font): Extern them.
14719 (free_realized_multibyte_face): Delete extern.
14720
14721 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
14722 table structure.
14723
14724 * editfns.c: Include "character.h" instead of "charset.h".
14725 (Fchar_to_string): Always call CHAR_STRING.
14726
14727 * emacs.c (main): Call init_charset_once, init_charset,
14728 syms_of_chartab, and syms_of_character.
14729
14730 * fileio.c: Include "character.h" instead of "charset.h".
14731 (Finsert_file_contents): Big change for the new code-conversion API.
14732 (choose_write_coding_system, Fwrite_region): Likewise.
14733 (build_annotations_2): Delete.
14734 (e_write): Big change for the new code-conversion API.
14735
14736 * fns.c: Include "character.h" instead of "charset.h".
14737 (copy_sub_char_table): Move to chartab.c.
14738 (Fcopy_sequence): Call copy_char_table for a char table.
14739 (concat): Delete codes calling count_multibyte.
14740 (string_char_to_byte, string_byte_to_char): Adjust for the new
14741 multibyte form.
14742 (internal_equal): Adjust for the change of char table structure.
14743 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
14744 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
14745 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
14746 (char_table_translate, optimize_sub_char_table)
14747 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
14748 chartab.c.
14749 (char_table_ref_and_index): Delete.
14750 (HASH_KEY, HASH_VALUE): Move to lisp.h.
14751 (Fmd5): Call preferred_coding_system instead of accessing
14752 Vcoding_category_list. Adjust for the new code-conversion API.
14753 (syms_of_fns): Move defsubr for char table related functions to
14754 chartab.c.
14755
14756 * fontset.c: Mostly re-written.
14757
14758 * fontset.h (struct font_info): Change type of the member encoding_type.
14759 (enum FONT_SPEC_INDEX): New enum.
14760 (fontset_font_pattern, fs_load_font): Update prototype.
14761 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
14762
14763 * indent.c: Include "character.h" instead of "charset.h".
14764 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
14765
14766 * insdel.c: Include "character.h" instead of "charset.h".
14767 (copy_text): Don't refer to Vnonascii_translation_table.
14768 (insert_from_gap): New function.
14769
14770 * keyboard.c: Include "character.h" instead of "charset.h".
14771 (command_loop_1): Never call direct_output_forward_char before
14772 a non-ASCII character.
14773 (read_char): If Vkeyboard_translate_table is a char table, always
14774 translate a character.
14775
14776 * keymap.c: Include "character.h".
14777 (store_in_keymap): Handle the case that IDX is a cons.
14778 (Fdefine_key): Handle the case that KEY is a cons and the car part
14779 is also a cons (range).
14780 (push_key_description): Adjust for the new character code.
14781 (describe_vector): Call describe_char_table for a char table.
14782 (describe_char_table): New function.
14783
14784 * keymap.h (describe_char_table): Extern it.
14785
14786 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
14787 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
14788 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
14789 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
14790 Delete.
14791 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
14792 structure.
14793 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
14794 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
14795 (CHARTAB_SIZE_BITS_3): New macros.
14796 (chartab_size): Extern it.
14797 (struct Lisp_Char_Table): Re-design.
14798 (struct Lisp_Sub_Char_Table): New structure.
14799 (HASH_KEY, HASH_VALUE): Move from fns.c.
14800 (CHARACTERBITS): Define as 22.
14801 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
14802 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
14803 (GC_SUB_CHAR_TABLE_P): New macro.
14804 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
14805 (code_convert_string_norecord): Deleted extern.
14806 (init_character_once, syms_of_character, init_charset)
14807 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
14808
14809 * lread.c: Include "character.h".
14810 (read_multibyte): New arg NBYTES.
14811 (read_escape): Change the meaning of returned *BYTEREP.
14812 (to_multibyte): Delete.
14813 (read1): Adjust the handling of char table and string.
14814
14815 * print.c: Include "character.h" instead of "charset.h".
14816 (print_string): Convert 8-bit raw bytes to octal form by
14817 string_escape_byte8.
14818 (print_object): Adjust for the new multibyte form. Print 8-bit
14819 raw bytes always in octal form. Handle sub char table correctly.
14820
14821 * process.c: Include "character.h" instead of "charset.h".
14822 (read_process_output, send_process): Adjust for the new
14823 code-conversion API.
14824
14825 * puresize.h (BASE_PURESIZE): Increase.
14826
14827 * regex.c: Include "character.h" instead of "charset.h".
14828 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
14829 (regex_compile): Accept a range whose starting and ending
14830 character have different leading bytes.
14831 (analyse_first): Adjust for the above change.
14832
14833 * search.c: Include "character.h" instead of "charset.h".
14834 (search_buffer, boyer_moore): Adjust for the new multibyte form.
14835 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
14836
14837 * syntax.c: Include "character.h" instead of "charset.h".
14838 (syntax_parent_lookup): Delete.
14839 (Fmodify_syntax_entry): Accept a cons as CHAR.
14840 (skip_chars): Adjust for the new multibyte form.
14841 (init_syntax_once): Call char_table_set_range instead of directly
14842 accessing the structure of a char table.
14843
14844 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
14845 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
14846 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
14847 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
14848
14849 * term.c: Include "buffer.h" and "character.h".
14850 (encode_terminal_code, write_glyphs): Adjust for the new
14851 code-conversion API.
14852 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
14853
14854 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
14855
14856 * xdisp.c: Include "character.h".
14857 (get_next_display_element): Adjust for the new multibyte form.
14858 (disp_char_vector): Adjust for the new char table structure.
14859 (decode_mode_spec_coding): Adjust for the new structure of
14860 coding system.
14861 (decode_mode_spec): Adjust for the new code-conversion API.
14862
14863 * xfaces.c: Include "character.h" instead of "charset.h".
14864 (load_face_font): Adjust for the change of choose_face_font and
14865 FS_LOAD_FONT.
14866 (generate_ascii_font): New function.
14867 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
14868 (set_font_frame_param): Adjust for the change of choose_face_font.
14869 (free_realized_face): Make it public.
14870 (free_realized_faces_for_fontset): Rename from
14871 free_realized_multibyte_face. Free also faces realized for ASCII.
14872 (choose_face_font): Change arguments. Adjust for the change of
14873 fontset_font_pattern and FS_LOAD_FONT.
14874
14875 * xfns.c: Include "character.h".
14876 (x_encode_text): Adjust for the new code-conversion API.
14877
14878 * xselect.c: Don't include "charset.h".
14879 (selection_data_to_lisp_data): Adjust for the new code conversion API.
14880
14881 * xterm.c: Include "character.h".
14882 (x_encode_char): New argument CHARSET. Change caller.
14883 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
14884 Call ENCODE_CHAR instead of SPLIT_CHAR.
14885 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
14886 CHAR_WIDTH instead of CHARSET_WIDTH.
14887 (XTread_socket): Adjust for the new code-conversion API.
14888 (x_new_font): Adjust for the change of FS_LOAD_FONT.
14889 (x_load_font): Adjust for the change of struct font.
14890
14891 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
14892
14893 * xfaces.c (face_at_buffer_position): Remove unused vars.
14894
14895 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14896
14897 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
14898 Fix overflow checking.
14899
14900 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
14901
14902 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
14903 Cancel previous change.
14904
14905 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
14906
14907 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
14908 ccl->eight_bit_control. Fix check for buffer overflow.
14909 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
14910 (ccl_driver): Initialize extra_bytes to 0.
14911
14912 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
14913
14914 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
14915 return it ORed with ctrl_modifier.
14916
14917 2008-01-29 Miles Bader <miles@gnu.org>
14918
14919 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
14920
14921 2008-01-28 Jason Rumney <jasonr@gnu.org>
14922
14923 * w32.c (stat): Don't double check for networked drive.
14924
14925 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
14926
14927 * window.c (run_window_configuration_change_hook): New function.
14928 Code extracted from set_window_buffer. Set the selected frame.
14929 (set_window_buffer): Use it.
14930 * window.h (run_window_configuration_change_hook): Declare.
14931 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
14932
14933 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
14934
14935 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
14936
14937 * Makefile.in: Remove references to unused macros.
14938
14939 2008-01-26 Eli Zaretskii <eliz@gnu.org>
14940
14941 * w32.c (g_b_init_get_sid_sub_authority)
14942 (g_b_init_get_sid_sub_authority_count): New static variables.
14943 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
14944 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
14945 (init_user_info): Use them to retrieve uid and gid.
14946 Use 500/513, the Windows defaults, as Administrator's uid/gid.
14947 (fstat): Use pw_uid and pw_gid from the_passwd structure for
14948 st_uid and st_gid of the file.
14949
14950 2008-01-26 Jason Rumney <jasonr@gnu.org>
14951
14952 * w32.c (logon_network_drive): New function.
14953 (stat): Use it.
14954
14955 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
14956
14957 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
14958 invisible text covered with an ellipsis.
14959
14960 2008-01-25 Richard Stallman <rms@gnu.org>
14961
14962 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
14963 jump back to beginning. Move some other initializations after that.
14964 (Qwindow_text_change_functions, Vwindow_text_change_functions):
14965 New variables.
14966 (syms_of_xdisp): Init them.
14967
14968 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
14969
14970 * buffer.c (reset_buffer_local_variables):
14971 Implement `permanent-local-hook'.
14972 (Qpermanent_local_hook): New variable.
14973 (syms_of_buffer): Init and staticpro it.
14974
14975 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
14976
14977 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
14978
14979 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
14980
14981 * fns.c (Fclrhash): Return TABLE.
14982
14983 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14984
14985 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
14986 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
14987 is set even without positional changes.
14988 (x_scroll_bar_clear): Set bar->redraw_needed_p.
14989
14990 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
14991
14992 2008-01-23 Jason Rumney <jasonr@gnu.org>
14993
14994 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
14995
14996 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
14997 the unicode range available in MULE by locale-coding-system.
14998 Improve dbcs lead byte detection. Set event timestamp and modifiers
14999 earlier.
15000
15001 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15002
15003 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
15004 [MAC_OSX] (init_mac_osx_environment): Initialize it.
15005 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
15006 when used on child processes.
15007
15008 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
15009
15010 * dbusbind.c (Fdbus_method_return_internal): Rename from
15011 Fdbus_method_return.
15012 (Fdbus_unregister_object): Move to dbus.el.
15013 (Fdbus_call_method, Fdbus_method_return_internal)
15014 (Fdbus_send_signal): Improve debug messages.
15015
15016 2008-01-20 Martin Rudalics <rudalics@gmx.at>
15017
15018 * undo.c (undo_inhibit_record_point): New variable.
15019 (syms_of_undo): Initialize it.
15020 (record_point): Don't record point when undo_inhibit_record_point
15021 is set.
15022
15023 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
15024
15025 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
15026
15027 * xdisp.c (Qauto_hscroll_mode): New var.
15028 (syms_of_xdisp): Initialize it.
15029 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
15030 window's buffer.
15031 (hscroll_windows): Don't check automatic_hscrolling_p here.
15032
15033 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
15034 vscroll if we're setting window-buffer to the value it already has.
15035
15036 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
15037
15038 * m/intel386.h: Remove references to XENIX.
15039
15040 2008-01-17 Andreas Schwab <schwab@suse.de>
15041
15042 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
15043 instead of HAVE_X86_64_LIB64_DIR.
15044 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
15045
15046 2008-01-17 Glenn Morris <rgm@gnu.org>
15047
15048 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
15049 to HAVE_X86_64_LIB64_DIR.
15050
15051 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
15052
15053 * s/irix3-3.h:
15054 * s/irix4-0.h:
15055 * s/386-ix.h:
15056 * s/domain.h:
15057 * s/hpux9-x11r4.h:
15058 * s/hpux9shxr4.h: Remove files for systems no longer supported.
15059
15060 * sysdep.c: Remove code containing references to symbols defined
15061 by unsupported systems.
15062
15063 2008-01-16 Glenn Morris <rgm@gnu.org>
15064
15065 * coding.c (select-safe-coding-system-function): Doc fix.
15066
15067 2008-01-15 Glenn Morris <rgm@gnu.org>
15068
15069 * config.in: Revert 2008-01-13 change: this is a generated file.
15070
15071 2008-01-13 Tom Tromey <tromey@redhat.com>
15072
15073 * lisp.h: Fix typo.
15074
15075 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
15076
15077 * m/sequent-ptx.h:
15078 * m/sequent.h:
15079 * s/ptx.h:
15080 * s/ptx4-2.h:
15081 * s/ptx4.h: Remove files for systems no longer supported.
15082
15083 * callproc.c (Fcall_process): Fix previous change.
15084
15085 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
15086
15087 * unexsunos4.c: Remove file, system not supported anymore.
15088
15089 * m/mips.h:
15090 * m/intel386.h:
15091 * callproc.c:
15092 * config.in:
15093 * ecrt0.c:
15094 * emacs.c:
15095 * fileio.c:
15096 * frame.c:
15097 * getpagesize.h:
15098 * keyboard.c:
15099 * lread.c:
15100 * process.c:
15101 * puresize.h:
15102 * sysdep.c:
15103 * systty.h:
15104 * syswait.h:
15105 * unexec.c:
15106 * xdisp.c:
15107 * alloc.c: Remove code containing references to symbols defined by
15108 unsupported systems.
15109
15110 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
15111
15112 * coding.c (detect_coding_mask): Fix previous change.
15113
15114 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
15115
15116 * coding.c (detect_coding_iso2022): New arg
15117 latin_extra_code_state. Allow Latin extra codes only
15118 when *latin_extra_code_state is nonzero.
15119 (detect_coding_mask): If there is a NULL byte, detect the encoding
15120 as UTF-16 or binary. If Latin extra codes exist, detect the
15121 encoding as ISO-2022 only when there's no other proper encoding is
15122 found.
15123
15124 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15125
15126 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
15127 #ifdef MAC_OS.
15128
15129 2008-01-08 Richard Stallman <rms@gnu.org>
15130
15131 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
15132
15133 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
15134
15135 * keyboard.c (parse_menu_item): Don't enclose key bindings on
15136 menu bar in parentheses.
15137
15138 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
15139
15140 * m/7300.h:
15141 * m/acorn.h:
15142 * m/alliant-2800.h:
15143 * m/alliant.h:
15144 * m/alliant1.h:
15145 * m/alliant4.h:
15146 * m/altos.h:
15147 * m/amdahl.h:
15148 * m/apollo.h:
15149 * m/att3b.h:
15150 * m/aviion-intel.h:
15151 * m/aviion.h:
15152 * m/celerity.h:
15153 * m/clipper.h:
15154 * m/cnvrgnt.h:
15155 * m/convex.h:
15156 * m/cydra5.h:
15157 * m/delta88k.h:
15158 * m/dpx2.h:
15159 * m/dual.h:
15160 * m/elxsi.h:
15161 * m/f301.h:
15162 * m/gould-np1.h:
15163 * m/gould.h:
15164 * m/i860.h:
15165 * m/ibmps2-aix.h:
15166 * m/ibmrt-aix.h:
15167 * m/ibmrt.h:
15168 * m/irist.h:
15169 * m/is386.h:
15170 * m/isi-ov.h:
15171 * m/mega68.h:
15172 * m/mg1.h:
15173 * m/news-r6.h:
15174 * m/news-risc.h:
15175 * m/news.h:
15176 * m/nh3000.h:
15177 * m/nh4000.h:
15178 * m/ns16000.h:
15179 * m/ns32000.h:
15180 * m/nu.h:
15181 * m/orion.h:
15182 * m/orion105.h:
15183 * m/paragon.h:
15184 * m/pfa50.h:
15185 * m/plexus.h:
15186 * m/pyramid.h:
15187 * m/pyrmips.h:
15188 * m/sh3el.h:
15189 * m/sps7.h:
15190 * m/sr2k.h:
15191 * m/stride.h:
15192 * m/sun1.h:
15193 * m/sun2.h:
15194 * m/sun3-68881.h:
15195 * m/sun3-fpa.h:
15196 * m/sun3-soft.h:
15197 * m/sun3.h:
15198 * m/sun386.h:
15199 * m/symmetry.h:
15200 * m/tad68k.h:
15201 * m/tahoe.h:
15202 * m/targon31.h:
15203 * m/tek4300.h:
15204 * m/tekxd88.h:
15205 * m/tower32.h:
15206 * m/tower32v3.h:
15207 * m/ustation.h:
15208 * m/wicat.h:
15209 * m/xps100.h:
15210 * s/cxux.h:
15211 * s/cxux7.h:
15212 * s/dgux.h:
15213 * s/dgux4.h:
15214 * s/dgux5-4-3.h:
15215 * s/dgux5-4r2.h:
15216 * s/esix.h:
15217 * s/esix5r4.h:
15218 * s/hiuxmpp.h:
15219 * s/hiuxwe2.h:
15220 * s/iris3-5.h:
15221 * s/iris3-6.h:
15222 * s/isc2-2.h:
15223 * s/isc3-0.h:
15224 * s/isc4-0.h:
15225 * s/isc4-1.h:
15226 * s/newsos5.h:
15227 * s/newsos6.h:
15228 * s/osf1.h:
15229 * s/osf5-0.h:
15230 * s/riscix1-1.h:
15231 * s/riscix12.h:
15232 * s/sco4.h:
15233 * s/sco5.h:
15234 * s/sunos4-0.h:
15235 * s/sunos4-1.h:
15236 * s/sunos413.h:
15237 * s/sunos4shr.h:
15238 * s/umax.h:
15239 * s/unipl5-2.h:
15240 * s/xenix.h:
15241 * cxux-crt0.s:
15242 * unexapollo.c:
15243 * unexconvex.c:
15244 * unexenix.c:
15245 * unexsni.c: Remove files for systems no longer supported.
15246
15247 * m/intel386.h: Remove references to unsupported systems.
15248
15249 * w32.c (get_emacs_configuration): Remove reference to i860.
15250
15251 * sysdep.c: Remove dead code.
15252
15253 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
15254
15255 * s/rtu.h:
15256 * m/masscomp.h: Remove files. Platform is obsolete.
15257
15258 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
15259
15260 * dbusbind.c (Fdbus_method_return): New function.
15261 (xd_read_message): Add the serial number to the event.
15262 (Fdbus_register_method): Activate the function.
15263
15264 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
15265
15266 * keyboard.c (read_key_sequence): Fix typo.
15267
15268 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
15269
15270 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
15271 (xd_signature, xd_append_arg): Handle element type detection for
15272 empty arrays.
15273 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
15274 SDATA () calls; this must be solved more general.
15275 (Fdbus_register_signal): Use SBYTES instead of strlen.
15276
15277 2008-01-03 Magnus Henoch <magnus@zemdatav>
15278
15279 * dbusbind.c (xd_append_arg): Use unsigned char instead of
15280 unsigned int for byte values (necessary for big-endian platform).
15281 (Fdbus_call_method): Handle the case of no returned arguments.
15282
15283 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
15284
15285 * dbusbind.c (xd_read_message): Use non-static input_event struct.
15286
15287 2007-12-31 Magnus Henoch <mange@freemail.hu>
15288
15289 * dbusbind.c (xd_signature): Signature of variant is just "v".
15290
15291 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
15292
15293 * dbusbind.c: Fix several errors and compiler warnings.
15294 Reported by Tom Tromey <tromey@redhat.com>.
15295 (XD_ERROR, XD_DEBUG_MESSAGE)
15296 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
15297 (xd_append_arg): Part for basic D-Bus types rewritten.
15298 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
15299 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
15300 appropriate.
15301 (xd_read_message): Return Qnil. Don't signal an error; it is not
15302 useful during event reading.
15303 (Fdbus_register_signal): Signal an error if the check for
15304 FUNCTIONP fails.
15305 (Fdbus_register_method): New function. The implementation is not
15306 complete, the call of the function signals an error therefore.
15307 (Fdbus_unregister_object): New function, renamed from
15308 Fdbus_unregister_signal. The initial check signals an error, if
15309 the object is not well formed.
15310
15311 2007-12-30 Richard Stallman <rms@gnu.org>
15312
15313 * textprop.c (get_char_property_and_overlay):
15314 Signal error if POSITION is out of range in a buffer.
15315
15316 2007-12-29 Martin Rudalics <rudalics@gmx.at>
15317
15318 * w32fns.c (Fx_create_frame): Make copy of frame parameters
15319 because the original parameters are in pure storage now.
15320
15321 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15322
15323 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
15324
15325 2007-12-22 Eli Zaretskii <eliz@gnu.org>
15326
15327 * callint.c (syms_of_callint) <command-history>: Add reference to
15328 history-length in the doc string.
15329
15330 2007-12-17 Jason Rumney <jasonr@gnu.org>
15331
15332 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
15333 before passing as wParam.
15334
15335 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
15336
15337 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
15338 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
15339 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
15340 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
15341 as number.
15342 (Fdbus_call_method): Fix docstring.
15343
15344 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
15345
15346 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
15347 New macros.
15348 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
15349 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
15350 Simplify.
15351 (xd_signature): New function.
15352 (xd_append_arg): Compute also signatures. Major rewrite.
15353 (xd_retrieve_arg): Make debug messages friendly.
15354 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
15355 Check for signatures of arguments.
15356
15357 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
15358
15359 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
15360 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
15361 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
15362 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
15363 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
15364 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
15365 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
15366 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
15367 (xd_retrieve_value): Remove. Functionality included in ...
15368 (xd_append_arg): New function.
15369 (Fdbus_call_method, Fdbus_send_signal): Apply it.
15370
15371 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
15372
15373 * dbusbind.c (top): Include <stdio.h>.
15374 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
15375 dbus_message_new_method_call and dbus_message_new_signal.
15376 (Fdbus_register_signal): Rename unique_name to uname.
15377 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
15378 non-existing unique name. Fix typos in matching rule. Return an
15379 object which is useful in Fdbus_unregister_signal.
15380 (Fdbus_unregister_signal): Reimplementation, in order to remove
15381 only the corresponding entry.
15382 (Vdbus_registered_functions_table): Change the order of entries.
15383 Apply these changes in xd_read_message and Fdbus_register_signal.
15384
15385 2007-12-16 Andreas Schwab <schwab@suse.de>
15386
15387 * fileio.c (Finsert_file_contents): Fix overflow check to not
15388 depend on undefined integer overflow.
15389
15390 2007-12-14 Jason Rumney <jasonr@gnu.org>
15391
15392 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
15393 for characters above 127.
15394
15395 2007-12-13 Jason Rumney <jasonr@gnu.org>
15396
15397 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
15398 before dereferencing array.
15399 (lookup_vk_code): Remove zero comparison.
15400
15401 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
15402
15403 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
15404 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
15405 Use `unsigned int' instead of `uint'.
15406 (xd_read_message, Fdbus_register_signal): Split expressions into
15407 multiple lines before operators "&&" and "||", according to the
15408 GNU Coding Standards.
15409
15410 2007-12-14 Eli Zaretskii <eliz@gnu.org>
15411
15412 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
15413
15414 2007-12-12 Juri Linkov <juri@jurta.org>
15415
15416 * buffer.c (Frename_buffer): In interactive spec replace
15417 `read-buffer' with `read-string' that uses `buffer-name-history'
15418 as history, and the current buffer's name as default.
15419
15420 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
15421
15422 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
15423 manipulating the backtrace manually.
15424 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
15425 (struct backtrace, backtrace_list): Remove.
15426 (command_loop_1): Remove dead var `no_direct'.
15427
15428 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
15429 preserve non-built-in buffer-local variables.
15430 (Fkill_all_local_variables): Don't re-create&re-set permanent
15431 buffer-local variables.
15432
15433 2007-12-09 Juri Linkov <juri@jurta.org>
15434
15435 * buffer.c (Frename_buffer): Change interactive spec from "s" to
15436 Lisp code that uses `read-buffer' with current buffer as default.
15437
15438 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
15439
15440 * dbusbind.c (xd_read_message): Generate an event for every
15441 registered handler. There might be several handlers registered
15442 for the same signal.
15443 (Fdbus_register_signal): Don't overwrite a registration for the
15444 same signal. Add a new registration if handlers are different.
15445 (Vdbus_registered_functions_table): Rework doc string.
15446
15447 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
15448
15449 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
15450 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
15451 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
15452 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
15453 Unify argument lists.
15454 (xd_read_message, Fdbus_register_signal): Reorder and extend event
15455 arguments and hash table keys. Use unique name for service.
15456 (Fdbus_unregister_signal): Remove checks.
15457 (Vdbus_registered_functions_table): Fix doc string.
15458
15459 2007-12-05 Magnus Henoch <mange@freemail.hu>
15460
15461 * process.c (make_process): Initialize pty_flag to 0.
15462
15463 2007-12-05 Jason Rumney <jasonr@gnu.org>
15464
15465 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
15466 specified XBMs.
15467
15468 2007-12-05 Richard Stallman <rms@gnu.org>
15469
15470 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
15471
15472 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15473
15474 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
15475 New variable.
15476 (mac_try_close_socket) [MAC_OSX]: New function.
15477 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
15478 Update cfsockets_for_select. Replace invalid CFRunLoop source.
15479
15480 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
15481 Use mac_try_close_socket.
15482
15483 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15484
15485 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
15486 reloc_base.
15487 (copy_dysymtab): Compute relocation base here.
15488 (rebase_reloc_address) [__ppc64__]: New function.
15489 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
15490 changed.
15491
15492 2007-12-05 Jason Rumney <jasonr@gnu.org>
15493
15494 * w32proc.c (sys_spawnve): Quote args with wildcards.
15495
15496 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15497
15498 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
15499 __objc_* sections.
15500 (unrelocate) [_LP64]: Set relocation base to address of data segment.
15501
15502 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
15503
15504 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
15505 Move check for Vdbus_registered_functions_table to
15506 xd_read_queued_messages.
15507 (xd_read_queued_messages): Protect xd_read_message calls by
15508 internal_condition_case_1.
15509
15510 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
15511
15512 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
15513 Qdbus_system_bus and Qdbus_session_bus, respectively.
15514 (Vdbus_intern_symbols): Remove.
15515 (Vdbus_registered_functions_table): New hash table.
15516 (XD_SYMBOL_INTERN_SYMBOL): Remove.
15517 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
15518 Rewrite in order to manage registered functions by hash table
15519 Vdbus_registered_functions_table.
15520
15521 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
15522
15523 * xterm.c: Update URL to Window Manager Specification in comment.
15524
15525 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
15526
15527 * config.in (HAVE_DBUS): Add.
15528
15529 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
15530 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
15531 (obj): Add $(DBUS_OBJ).
15532 (LIBES): Add $(DBUS_LIBS).
15533 (dbusbind.o): New target.
15534
15535 * dbusbind.c: New file.
15536
15537 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
15538
15539 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
15540 (Qdbus_event): New Lisp symbol.
15541 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
15542 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
15543 (keys_of_keyboard): Define dbus-event.
15544
15545 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
15546
15547 2007-12-01 Richard Stallman <rms@gnu.org>
15548
15549 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
15550
15551 2007-11-30 Jason Rumney <jasonr@gnu.org>
15552
15553 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
15554 (w32con_reset_terminal_modes): Clear screen buffer.
15555 (w32_face_attributes): Don't use color indexes that are out of range.
15556 Only reverse the default colors.
15557
15558 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
15559 WINDOWSNT.
15560
15561 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
15562
15563 2007-11-29 Jason Rumney <jasonr@gnu.org>
15564
15565 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
15566 (w32_face_attributes): Use Vtty_defined_color_alist to determine
15567 if the terminal colors are initialized.
15568 (unspecified_fg, unspecified_bg): Remove unused declarations.
15569
15570 2007-11-29 Andreas Schwab <schwab@suse.de>
15571
15572 * keyboard.c (apply_modifiers): Fix typo.
15573
15574 2007-11-29 Richard Stallman <rms@gnu.org>
15575
15576 * keymap.c (Fcurrent_local_map): Doc fix.
15577
15578 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
15579
15580 * s/gnu-kfreebsd.h: New file.
15581
15582 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
15583
15584 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
15585 Don't cast redundantly.
15586
15587 * keyboard.c (KEY_TO_CHAR): New macro.
15588 (parse_modifiers, apply_modifiers): Accept integer arguments.
15589 (read_key_sequence): Use them to unify the "shift->unshift" mapping
15590 for chars and symbol keys.
15591 After doing such remapping, apply function-key-map again.
15592
15593 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
15594
15595 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
15596 compiled anymore.
15597
15598 2007-11-26 Andreas Schwab <schwab@suse.de>
15599
15600 * process.c (list_processes_1): Fix indentation level of the
15601 command column.
15602
15603 2007-11-23 Andreas Schwab <schwab@suse.de>
15604
15605 * editfns.c (Fformat): Handle %c specially since it requires the
15606 argument to be of type int.
15607
15608 2007-11-23 Markus Triska <markus.triska@gmx.at>
15609
15610 * emacs.c (main): Call init_editfns before init_process, since
15611 init_process sets Vprocess_connection_type depending on OS release.
15612
15613 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
15614
15615 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
15616 (find_symbol_value): Use do_symval_forwarding.
15617
15618 * data.c (set_internal): Set the value in the `cons-cell' (for
15619 Buffer_Local_values) not only for frame-local variables.
15620
15621 2007-11-22 Andreas Schwab <schwab@suse.de>
15622
15623 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
15624 values to sprintf.
15625 * keymap.c (Fsingle_key_description): Likewise.
15626 * print.c (print_object): Likewise.
15627
15628 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
15629
15630 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
15631 file for image is nil.
15632
15633 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
15634
15635 * term.c: Include stdarg.h.
15636 (fatal): Implement using varargs.
15637 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
15638
15639 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15640
15641 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
15642 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
15643 Update call to buffer_slot_type_mismatch.
15644 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
15645 (buffer_slot_type_mismatch): Update.
15646 * buffer.c (buffer_local_types): Remove.
15647 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
15648 (defvar_per_buffer): Set the type in the buffer_objfwd.
15649
15650 2007-11-21 Jason Rumney <jasonr@gnu.org>
15651
15652 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
15653 CreateFileMapping returns NULL on failure.
15654
15655 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
15656
15657 * search.c (Fset_match_data): Remove the `evaporate' feature.
15658 (unwind_set_match_data): Don't use the `evaporate' feature.
15659
15660 2007-11-21 Jason Rumney <jasonr@gnu.org>
15661
15662 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
15663
15664 * w32console.c (w32con_write_glyphs): Remove unused variables.
15665
15666 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
15667
15668 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
15669
15670 * s/darwin.h (MULTI_KBOARD): Remove.
15671
15672 * macfns.c (x_create_tip_frame, Fx_create_frame)
15673 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
15674
15675 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
15676
15677 * buffer.c (Fbuffer_local_value): Remove redundant test.
15678 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
15679 than in `current-buffer' to match the comment.
15680 Do the swap using swap_in_global_binding.
15681
15682 * data.c (store_symval_forwarding, set_internal):
15683 * eval.c (specbind): Remove dead code.
15684
15685 * coding.c (detect_coding, Fupdate_coding_systems_internal):
15686 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
15687 Since we do not want to see internal Lisp_*fwd objects here.
15688
15689 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
15690
15691 * sysdep.c (init_system_name): Use getaddrinfo if available.
15692
15693 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
15694 (x_scroll_bar_note_movement): start, end, with, height in struct
15695 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
15696
15697 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
15698
15699 * puresize.h (BASE_PURESIZE): Increase to 1190000.
15700
15701 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
15702
15703 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
15704 This undoes Richard's change of 14-Oct-2002.
15705
15706 * alloc.c (allocate_other_vector):
15707 * lisp.h (allocate_other_vector): Remove.
15708
15709 * window.c (struct save_window_data): Move non-lisp data to the end
15710 and make it `int' rather than Lisp_Object.
15711 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
15712 Done wrap/unwrap integer values.
15713 (Fset_window_configuration, compare_window_configurations):
15714 Update use of fields to their new types.
15715
15716 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
15717 Turn integer fields into `int'. Merge x_window_low and x_window_high.
15718 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
15719 (SET_SCROLL_BAR_X_WINDOW): Remove.
15720 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
15721 Access the new x_window field directly.
15722 * xterm.c (x_scroll_bar_create): Use a pseudovector.
15723 Don't wrap/unwrap integers into Lisp_Objects.
15724 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
15725 (x_scroll_bar_report_motion):
15726 Don't wrap/unwrap integers into Lisp_Objects.
15727 (x_term_init): Use SDATA.
15728 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
15729 (x_scroll_bar_set_handle, x_scroll_bar_remove)
15730 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
15731 (x_scroll_bar_report_motion, x_scroll_bar_clear):
15732 * xfns.c (x_set_background_color):
15733 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
15734 Access the new x_window field directly.
15735
15736 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
15737 (allocate_pseudovector): Make non-static.
15738
15739 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
15740 (allocate_pseudovector): Declare.
15741 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
15742
15743 2007-11-15 Andreas Schwab <schwab@suse.de>
15744
15745 * editfns.c (Fformat): Correctly format EMACS_INT values.
15746 Also take precision into account when formatting an integer.
15747
15748 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
15749
15750 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
15751
15752 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
15753 (syms_of_keyboard): Defsubr it.
15754
15755 * data.c (swap_in_global_binding): Fix longstanding bug where
15756 store_symval_forwarding was not called with the right second argument,
15757 thus causing objfwd-ing from being dropped.
15758
15759 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
15760
15761 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
15762 (Fx_display_pixel_height, Fx_display_planes)
15763 (Fx_display_color_cells, Fx_server_max_request_size)
15764 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
15765 (Fx_display_visual_class, Fx_display_save_under):
15766 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
15767 (Fx_display_pixel_height, Fx_display_planes)
15768 (Fx_display_color_cells, Fx_server_max_request_size)
15769 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
15770 (Fx_display_mm_height, Fx_display_mm_width)
15771 (Fx_display_backing_store, Fx_display_visual_class)
15772 (Fw32_select_font, Fx_display_save_under):
15773 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
15774 (Fx_display_pixel_height, Fx_display_planes)
15775 (Fx_display_color_cells, Fx_server_max_request_size)
15776 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
15777 (Fx_display_save_under): Fix typos in docstrings.
15778
15779 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
15780
15781 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
15782 corresponding to deleted entries; they are an implementation detail.
15783 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
15784 Remove variables.
15785 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
15786 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
15787 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
15788 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
15789 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
15790 (Fw32_define_rgb_color, Fw32_load_color_file)
15791 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
15792 Fix typos in docstrings.
15793 (Fx_server_version): Reflow docstring.
15794 (Fw32_shell_execute): Doc fixes.
15795
15796 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
15797
15798 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
15799 if w32_parse_hot_key returned nil.
15800
15801 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
15802
15803 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
15804
15805 2007-11-09 Jason Rumney <jasonr@gnu.org>
15806
15807 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
15808
15809 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
15810
15811 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
15812 Remove W32_SCROLL_BAR_CLICK_EVENT.
15813
15814 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
15815 Add MULTIMEDIA_KEY_EVENT.
15816
15817 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
15818 (lispy_multimedia_keys) [WINDOWSNT]: New array.
15819 (make_lispy_event) [WINDOWSNT]: Use it to translate
15820 MULTIMEDIA_KEY_EVENT.
15821
15822 * w32term.h (WM_APPCOMMAND): Define if not already.
15823 (GET_APPCOMMAND_LPARAM): Likewise.
15824
15825 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
15826 WM_APPCOMMAND.
15827
15828 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
15829 (syms_of_w32fns): Export and initialize it.
15830 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
15831
15832 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
15833
15834 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
15835 twice.
15836
15837 * xdisp.c (handle_face_prop): Fix last change.
15838
15839 2007-11-09 Richard Stallman <rms@gnu.org>
15840
15841 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
15842 not just for after-strings and before-strings.
15843 Call face_for_overlay_string and pass the overlay to it.
15844 (handle_display_prop): Determine whether property came from an overlay.
15845 Pass OVERLAY arg to handle_single_display_spec.
15846 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
15847 (load_overlay_strings): Fill in it->string_overlays.
15848 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
15849
15850 * xfaces.c (face_for_overlay_string): Function renamed from
15851 face_at_buffer_position_no_overlays, and add arg OVERLAY.
15852
15853 * dispextern.h (struct it): New elt string_overlays.
15854 New elt from_overlay, also in stack.
15855 Rearrange a few elements.
15856 (face_for_overlay_string): Decl renamed from
15857 face_at_buffer_position_no_overlays, and add argument.
15858
15859 2007-11-09 Richard Stallman <rms@gnu.org>
15860
15861 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
15862 to get the base face for an overlay string.
15863
15864 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
15865
15866 * xfaces.c (face_at_buffer_position_no_overlays): New function.
15867
15868 * xdisp.c (handle_stop): Move some code out of loop.
15869
15870 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15871
15872 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
15873 Fix conversion from Lisp object to ATSUFontID.
15874
15875 2007-11-09 Jason Rumney <jasonr@gnu.org>
15876
15877 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
15878
15879 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15880
15881 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
15882 Don't assume regions are aligned to page boundary.
15883 (print_load_command_name): Add LC_UUID if defined.
15884
15885 2007-11-09 Richard Stallman <rms@gnu.org>
15886
15887 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
15888
15889 2007-11-07 Jason Rumney <jasonr@gnu.org>
15890
15891 * s/windows95.h: Remove.
15892
15893 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
15894
15895 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
15896 abort with a message on unhandled store_type values.
15897
15898 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
15899
15900 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
15901 Remove HAVE_X11R5 and HAVE_X11R4.
15902
15903 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
15904
15905 * Makefile.in: Remove references to sunfns.c and sunfns.o.
15906
15907 2007-11-01 Johan Bockgård <bojohan@gnu.org>
15908
15909 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
15910 Don't set s->stippled_p here, since it has already been set by
15911 x_set_glyph_string_gc from x_draw_glyph_string.
15912
15913 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
15914
15915 * sunfns.c: Remove file.
15916
15917 * m/sun386.h:
15918 * m/sun2.h:
15919 * m/sparc.h: Remove Sun windows code.
15920
15921 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
15922
15923 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
15924 (init_keyboard): Set current_kboard's window-system to nil.
15925 (tty_read_avail_input): Typo.
15926 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
15927
15928 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
15929
15930 * s/usg5-4.h:
15931 * s/usg5-3.h:
15932 * s/ptx.h:
15933 * m/is386.h:
15934 * m/ibmps2-aix.h:
15935 * Makefile.in: Remove all mentions of X10.
15936
15937 * dispnew.c (syms_of_display): Don't mention version 10.
15938
15939 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
15940
15941 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
15942 ($(BLD)/abbrev.$(O)): Remove.
15943
15944 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15945
15946 Rewrite abbrev.c in Elisp.
15947 * image.c (Qcount): Don't declare as extern.
15948 (syms_of_image): Initialize and staticpro `Qcount'.
15949 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
15950 * emacs.c (main): Don't call syms_of_abbrev.
15951 * Makefile.in (obj): Remove abbrev.o.
15952 (abbrev.o): Remove.
15953 * abbrev.c: Remove.
15954
15955 2007-10-26 Martin Rudalics <rudalics@gmx.at>
15956
15957 * window.c (window_min_size_2): Don't count header-line.
15958
15959 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
15960
15961 * frame.h (struct frame): Move all bit fields after the first bit
15962 field to take advantage of the available space. Group all the
15963 chars together to reduce wasted space due to padding.
15964
15965 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
15966
15967 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
15968
15969 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
15970 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
15971 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
15972 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
15973 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
15974 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
15975 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
15976 (last_marked, mark_object_loop_halt): Make static.
15977
15978 * frame.c (syms_of_frame) <delete-frame-functions>:
15979 Fix typo in docstring.
15980
15981 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
15982
15983 * w32.c (init_environment): Fix tiny memory leak.
15984 (w32_get_resource): Remove unused variable `ok'.
15985
15986 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15987
15988 Make `window-system' into a keyboard-local variable (rather than
15989 frame-local as done originally by multi-tty).
15990
15991 * keyboard.h (struct kboard): Add Vwindow_system.
15992 * keyboard.c (init_kboard): Set a default for Vwindow_system.
15993 (mark_kboards): Mark Vwindow_system.
15994
15995 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
15996 (init_display): Don't set the obsolete `window-system' frame-param.
15997
15998 * xterm.c (x_term_init):
15999 * w32term.c (w32_create_terminal):
16000 * term.c (init_tty): Set Vwindow_system.
16001 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
16002 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
16003
16004 * xfns.c (Fx_create_frame, x_create_tip_frame):
16005 * w32fns.c (Fx_create_frame, x_create_tip_frame):
16006 * macfns.c (Fx_create_frame):
16007 Don't set the obsolete `window-system' frame-param.
16008
16009 * frame.h (Qwindow_system): Remove.
16010 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
16011 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
16012
16013 2007-10-24 Richard Stallman <rms@gnu.org>
16014
16015 * frame.c (x_figure_window_size): For fullscreen case,
16016 set USPosition | PPosition without clobbering rest of window_prompting.
16017
16018 * keyboard.c (Fcurrent_idle_time): Doc fix.
16019
16020 * print.c (Fwith_output_to_temp_buffer): Doc fix.
16021
16022 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
16023
16024 * process.c (unwind_request_sigio): Only define if __ultrix__.
16025
16026 * callproc.c (child_setup): Remove spurious *.
16027
16028 * lisp.h (Fget_text_property): Declare.
16029 (have_menus_p): Declare it here rather than in sys-dep header files.
16030 * macterm.h (have_menus_p):
16031 * msdos.h (have_menus_p):
16032 * xterm.h (have_menus_p): Remove.
16033
16034 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
16035 (Fmake_variable_frame_local): Just check the variable's const-ness
16036 rather than checking nil or t.
16037
16038 2007-10-22 Jason Rumney <jasonr@gnu.org>
16039
16040 * w32fns.c: Include math.h.
16041 (w32_abort): Declaration moved to nt/config.nt.
16042
16043 * s/ms-w32.h (HAVE_STDLIB_H): Define.
16044 (abort): Redefinition moved to nt/config.nt.
16045
16046 * m/windowsnt.h: Remove.
16047
16048 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
16049
16050 * emacs.c (Fdump_emacs): Fix typo in message.
16051 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
16052 <installation-directory>: Reflow docstring.
16053
16054 2007-10-22 Juri Linkov <juri@jurta.org>
16055
16056 * minibuf.c: Allow minibuffer default to be a list of default values.
16057 With empty input use the first element of this list as returned default.
16058 (string_to_object)
16059 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
16060 (read_minibuf): If defalt is cons, set histstring to its car.
16061 (Fread_string): If default_value is cons, set val to its car.
16062 (Fread_buffer): If def is cons, use its car.
16063 (Fcompleting_read): If defalt is cons, set val to its car.
16064
16065 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
16066
16067 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
16068
16069 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
16070
16071 * doc.c (Fdocumentation): Check for advice in all cases.
16072
16073 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
16074
16075 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
16076
16077 2007-10-19 Richard Stallman <rms@gnu.org>
16078
16079 * doc.c (Fdocumentation): Check for and handle an advised function.
16080
16081 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
16082
16083 * process.c (Fset_process_filter): Doc fix.
16084
16085 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
16086
16087 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
16088 which caused key-translation-map to applied repeatedly (thus breaking
16089 double-mode).
16090
16091 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16092
16093 * xselect.c (x_own_selection, x_handle_selection_clear)
16094 (x_clear_frame_selections):
16095 * w32menu.c (list_of_panes, list_of_items):
16096 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
16097 * textprop.c (validate_plist, interval_has_all_properties)
16098 (interval_has_some_properties, interval_has_some_properties_list)
16099 (add_properties, text_property_list):
16100 * process.c (Fget_buffer_process, list_processes_1, status_notify):
16101 * minibuf.c (Fassoc_string):
16102 * macselect.c (x_own_selection, x_clear_frame_selections)
16103 (Fx_disown_selection_internal):
16104 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
16105 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
16106
16107 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
16108
16109 * process.c: Link to libs for calling res_init() if available.
16110 (Fmake_network_process): Call res_init() before getaddrinfo or
16111 gethostbyname, if possible.
16112
16113 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
16114
16115 * lread.c (read1): Set pvectype for char_tables.
16116
16117 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
16118 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
16119 Add type checks.
16120 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
16121
16122 * alloc.c (free_misc): Use XMISCTYPE.
16123 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
16124
16125 2007-10-17 Glenn Morris <rgm@gnu.org>
16126
16127 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
16128 (syms_of_minibuf): Add Qcompletion_ignore_case.
16129 * dired.c (Qcompletion_ignore_case): Change to external.
16130 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
16131 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
16132 (Fread_file_name): Use it rather than intern'ing.
16133
16134 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
16135 (Fread_coding_system): Ignore case of user input.
16136
16137 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16138
16139 * xdisp.c (handle_display_prop): Ignore display specs after
16140 replacing one when string text is being replaced.
16141 (handle_single_display_spec): Pretend as if characters with display
16142 property haven't been consumed only when buffer text is being replaced.
16143
16144 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
16145
16146 * xfns.c (Fx_create_frame, Fx_display_list):
16147 * window.c (window_fixed_size_p, enlarge_window)
16148 (shrink_window_lowest_first):
16149 * macterm.c (init_font_name_table):
16150 * macfns.c (Fx_create_frame, Fx_display_list):
16151 * lread.c (close_load_descs):
16152 * keyboard.c (read_char_x_menu_prompt):
16153 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
16154 * coding.c (code_convert_region_unwind): Test the type of an object
16155 rather than just !NILP before extracting data from it.
16156
16157 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
16158
16159 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
16160 (XMISCANY): New macro.
16161 (XMISCTYPE): Use it.
16162 (struct Lisp_Misc_Any): New type.
16163 (union Lisp_Misc): Use it.
16164 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
16165 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
16166 (find_symbol_value, set_internal, default_value, Fset_default)
16167 (Fmake_variable_buffer_local, Fmake_local_variable)
16168 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
16169 (Flocal_variable_if_set_p, Fvariable_binding_locus):
16170 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
16171 * alloc.c (allocate_buffer): Set the size and tag.
16172 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
16173 Use XMISCANY.
16174 (die): Follow the GNU convention for error messages.
16175 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
16176 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
16177 tag any more.
16178 (set_buffer_internal_1):
16179 * frame.c (store_frame_param):
16180 * eval.c (specbind):
16181 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
16182
16183 * doc.c (Fsnarf_documentation): Simplify.
16184
16185 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
16186
16187 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
16188 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
16189
16190 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
16191
16192 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
16193
16194 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
16195
16196 * eval.c (do_autoload): Don't save autoloads.
16197
16198 * data.c (Ffset): Save autoload of the function being set.
16199
16200 2007-10-07 John Paul Wallington <jpw@pobox.com>
16201
16202 * xfns.c (x_create_tip_frame): Set the `display-type' frame
16203 parameter before setting up faces.
16204
16205 2007-10-13 Eli Zaretskii <eliz@gnu.org>
16206
16207 * ccl.c (Fregister_code_conversion_map):
16208 * keyboard.c (append_tool_bar_item): Reformat last change.
16209
16210 * lisp.h (eabs): Rename from `abs'. All callers changed.
16211
16212 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
16213
16214 * buffer.c (add_overlay_mod_hooklist):
16215 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
16216 * fontset.c (make_fontset):
16217 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
16218 (append_tool_bar_item):
16219 * macmenu.c (grow_menu_items):
16220 * w32menu.c (grow_menu_items):
16221 * xmenu.c (grow_menu_items): Use larger_vector.
16222
16223 2007-10-13 Eli Zaretskii <eliz@gnu.org>
16224
16225 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
16226 selected frame'' on MSDOS).
16227
16228 2007-10-12 Martin Rudalics <rudalics@gmx.at>
16229
16230 * frame.c (Qexplicit_name): New variable.
16231 (x_report_frame_params): Report it in parameter alist.
16232 (syms_of_frame): Intern and staticpro it.
16233
16234 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
16235
16236 * macfns.c (x_create_tip_frame): Set terminal for frame.
16237
16238 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
16239
16240 * frame.c (Qenvironment): Remove.
16241 (syms_of_frame) <Qenvironment>: Don't initialize.
16242 (Fdelete_frame): Don't treat the `environment' param specially.
16243 * frame.h (Qenvironment): Don't declare.
16244 * callproc.c (set_initial_environment): Don't set unused frame param.
16245
16246 * frame.c (Fframe_with_environment): Remove.
16247 (syms_of_frame) <Sframe_with_environment>: Don't declare.
16248
16249 * lisp.h (Fframe_with_environment): Don't declare.
16250
16251 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
16252
16253 * indent.c (indent_tabs_mode, last_known_column)
16254 (last_known_column_modified): Make static.
16255 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
16256
16257 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
16258
16259 * puresize.h (BASE_PURESIZE): Increase to 1170000.
16260
16261 2007-10-09 Jason Rumney <jasonr@gnu.org>
16262
16263 * w32term.c (x_set_window_size): Disable code that attempts to tell
16264 Lisp code about a size change before it actually happens.
16265
16266 2007-10-09 Richard Stallman <rms@gnu.org>
16267
16268 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
16269 return HANDLED_RETURN.
16270
16271 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16272
16273 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
16274 when there's an unread command event.
16275
16276 * frame.c (focus_follows_mouse): Move here from frame.el to allow
16277 window autoselection act appropriately when leaving selected frame.
16278 (syms_of_frame): Initialize focus_follows_mouse.
16279 * frame.h (focus_follows_mouse): Extern it.
16280 * macterm.c (XTread_socket): When focus_follows_mouse is nil
16281 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
16282 * msdos.c (dos_rawgetc): Likewise.
16283 * w32term.c (w32_read_socket): Likewise.
16284 * xterm.c (handle_one_xevent): Likewise.
16285 * xdisp.c (syms_of_xdisp): In doc-string of
16286 mouse-autoselect-window mention focus-follows-mouse.
16287
16288 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16289
16290 * macterm.c (mac_load_query_font): Fix missing return value.
16291 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
16292 Add BLOCK_INPUT.
16293
16294 2007-10-08 Richard Stallman <rms@gnu.org>
16295
16296 * xdisp.c (get_window_cursor_type): Implement documented behavior
16297 for cursor-in-non-selected-windows = t.
16298
16299 2007-10-08 Jason Rumney <jasonr@gnu.org>
16300
16301 * w32.c (w32_get_resource): Always close registry keys.
16302
16303 2007-10-08 Jason Rumney <jasonr@gnu.org>
16304
16305 * makefile.w32-in (LIBS): Add COMCTL32.
16306
16307 * w32fns.c (globals_of_w32fns): Init common controls.
16308
16309 2007-10-08 Richard Stallman <rms@gnu.org>
16310
16311 * image.c (our_memory_buffer): Rename from omfib_buffer.
16312
16313 2007-10-08 Richard Stallman <rms@gnu.org>
16314
16315 * buffer.c (Foverlays_at): Doc fix.
16316
16317 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
16318
16319 * fns.c (Fplist_put): Preserve uneven tail data.
16320
16321 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
16322
16323 * termhooks.h (enum event_kind): Remove trailing comma.
16324
16325 * frame.h (enum): Remove trailing comma.
16326
16327 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
16328
16329 * w32proc.c (delete_child): Don't terminate threads of zombies.
16330
16331 2007-10-08 Martin Rudalics <rudalics@gmx.at>
16332
16333 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
16334
16335 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
16336 last-repeatable-command.
16337 (init_kboard): Initialize Vlast_repeatable_command.
16338 (command_loop_1): Set it to real_this_command unless that was
16339 bound to an input event.
16340 (mark_kboards): Mark it.
16341
16342 2007-10-08 Richard Stallman <rms@gnu.org>
16343
16344 * eval.c (condition-case): Doc fix.
16345
16346 2007-10-08 Masatake YAMATO <jet@gyve.org>
16347
16348 * xfaces.c (tty_supports_face_attributes_p): Fix code
16349 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
16350 was copied and not edited.
16351
16352 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
16353
16354 Add new `input-decode-map' keymap and use it for terminal
16355 escape sequences.
16356 * keyboard.h (struct kboard): Add Vinput_decode_map.
16357 Remove Vlocal_key_translation_map.
16358 * keyboard.c (read_key_sequence): Add support for input-decode-map.
16359 (init_kboard): Init input-decode-map.
16360 Replace local-key-translation-map back with key-translation-map.
16361 (syms_of_keyboard): Declare input-decode-map.
16362 Remove local-key-translation-map. Update docstrings.
16363 (mark_kboards): Mark Vinput_decode_map.
16364 Don't mark Vlocal_key_translation_map.
16365 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
16366 Replace local-key-translation-map back with key-translation-map.
16367 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
16368 Bind in input-decode-map rather than function-key-map.
16369
16370 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
16371 This was made redundant by the previous introduction of XSETPVECTYPE.
16372
16373 2007-10-09 Richard Stallman <rms@gnu.org>
16374
16375 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
16376
16377 2007-09-29 Richard Stallman <rms@gnu.org>
16378
16379 * eval.c (internal_condition_case_2, internal_condition_case_1)
16380 (internal_condition_case): Reenable abort if x_catching_errors ()
16381 to see if that really happens and why.
16382
16383 2007-10-06 Andreas Schwab <schwab@suse.de>
16384
16385 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
16386
16387 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
16388
16389 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
16390
16391 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
16392
16393 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
16394
16395 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
16396
16397 * window.h (struct window):
16398 * window.c (struct save_window_data, struct saved_window):
16399 * termhooks.h (struct terminal):
16400 * process.h (struct Lisp_Process):
16401 * frame.h (struct frame):
16402 * buffer.h (struct buffer):
16403 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
16404 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
16405 The size field of (pseudo)vectors is now unsigned.
16406 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
16407
16408 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
16409 Turn `count' into an integer.
16410
16411 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
16412 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
16413 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
16414 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
16415 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
16416
16417 * alloc.c (allocate_pseudovector): New fun.
16418 (ALLOCATE_PSEUDOVECTOR): New macro.
16419 (allocate_window, allocate_terminal, allocate_frame)
16420 (allocate_process): Use it.
16421 (mark_vectorlike): New function.
16422 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
16423 (mark_terminals): Use it.
16424 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
16425 (Fmake_byte_code): Use XSETPVECTYPE.
16426
16427 * frame.c (Fframe_parameters): Minor simplification.
16428
16429 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
16430
16431 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
16432
16433 * buffer.c (Fget_buffer_create, init_buffer_once):
16434 * lread.c (defsubr):
16435 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
16436
16437 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
16438 defined differently in the m/*.h files.
16439 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
16440 (XSETPVECTYPE): New macro.
16441 (XSETPSEUDOVECTOR): Use it.
16442
16443 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
16444 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
16445
16446 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
16447 * lread.c (defvar_per_buffer):
16448 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
16449
16450 * window.c (candidate_window_p): Only consider as visible frames that
16451 are on the same terminal.
16452
16453 * m/ibms390x.h (MARKBIT): Remove unused macro.
16454
16455 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
16456
16457 * lread.c (Fload): Fix typo in docstring.
16458
16459 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
16460
16461 * floatfns.c (Fexpt): Manually check for overflows, so that a power
16462 of a non-zero value can't yield zero.
16463
16464 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
16465
16466 * term.c (term_clear_mouse_face, term_mouse_highlight)
16467 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
16468
16469 * print.c (safe_debug_print): Use XHASH.
16470
16471 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
16472 Lisp elements such as tags.
16473 (XHASH): New macro.
16474 (EQ): Use it.
16475 (SREF, SSET, STRING_COPYIN): Use SDATA.
16476 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
16477
16478 * alloc.c (mark_terminal): Remove left-over declaration.
16479 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
16480 (allocate_vectorlike): Remove type argument. Adjust callers.
16481 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
16482 Only handle the one remaining MEM_TYPE_VECTORLIKE.
16483
16484 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
16485 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
16486 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
16487 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
16488 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
16489 Use them.
16490
16491 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
16492 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
16493 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
16494
16495 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
16496
16497 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
16498 loaded by default.
16499
16500 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
16501
16502 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
16503 on this tty.
16504 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
16505
16506 * term.c (mouse_face_window): Rename from Qmouse_face_window.
16507 Update all users.
16508 (handle_one_term_event): Use Gpm_DrawPointer.
16509 (Fgpm_mouse_start): Rename from Fterm_open_connection.
16510 Signal errors instead of returning nil. Always return nil.
16511 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
16512 Make it a noop if gpm-mouse was not activated.
16513 (syms_of_term): Update names.
16514
16515 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
16516
16517 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
16518 (init_sys_modes): Check that gpm_tty is the current tty.
16519
16520 * alloc.c (allocate_terminal): Set the vector size to only count the
16521 lisp fields. Initialize those to nil.
16522 (mark_object): Don't treat terminals specially.
16523 (mark_terminal): Remove.
16524 (mark_terminals): Use mark_object instead.
16525
16526 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
16527 the GC to the beginning.
16528
16529 * indent.h:
16530 * indent.c: Use EMACS_INT for ints coming from Elisp data.
16531
16532 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
16533
16534 2007-09-25 Jason Rumney <jasonr@gnu.org>
16535
16536 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
16537
16538 * w32console.c (create_w32cons_output): Remove.
16539
16540 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
16541
16542 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
16543 (reset_sys_modes): Use reset_terminal_modes_hook.
16544
16545 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
16546
16547 * eval.c (do_autoload): Don't output any message.
16548
16549 2007-09-24 Juri Linkov <juri@jurta.org>
16550
16551 * emacs.c (standard_args): Change priority of "--no-splash"
16552 from 40 to 3. Add "--no-desktop" with the same priority.
16553
16554 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
16555
16556 * alloc.c (gc_sweep): Check cons cell mark bits word by word
16557 and optimize the case where they are all 1.
16558
16559 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
16560
16561 * lisp.h (abs): Define if not defined.
16562 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
16563 Don't define `abs', since it's defined in lisp.h.
16564
16565 2007-09-22 Eli Zaretskii <eliz@gnu.org>
16566
16567 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
16568 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
16569 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
16570 (init_tty): Use DEV_TTY instead of "/dev/tty".
16571 [WINDOWSNT]: No need to protect from NAME arg being null.
16572
16573 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
16574
16575 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
16576 up the tty state.
16577
16578 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
16579
16580 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
16581 (gpm_tty): Change its type.
16582 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
16583 (gpm_tty): Change its type and initialize it.
16584 (Fterm_open_connection): Check the frame is indeed a tty.
16585 Use the new gpm_tty.
16586 (Fterm_close_connection): Use the new gpm_tty.
16587 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
16588 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
16589
16590 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
16591
16592 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
16593 underline_color, to draw strike-through.
16594
16595 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
16596
16597 * lisp.h (allocate_terminal): Declare.
16598
16599 * window.c (candidate_window_p): Consider frames that are being placed
16600 by the user as somewhere between visible and iconified.
16601 (window_loop): Prefer windows on the current frame.
16602 (Fselect_window): Move the use of select-frame to the beginning so we
16603 can just delegate all the work (it'll call us back anyway).
16604
16605 * frame.c (Qdisplay_environment_variable):
16606 * frame.h (Qdisplay_environment_variable): Delete.
16607
16608 * .gdbinit (xbacktrace): Print the arg's address rather than the value
16609 of the first arg, since that value may be a union.
16610
16611 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
16612 parameter rather than Qdisplay_environment_variable. If all else
16613 fails, look for DISPLAY in initial-environment.
16614
16615 2007-09-21 Glenn Morris <rgm@gnu.org>
16616
16617 * Makefile.in (emacstool): Remove target.
16618 (lisp, shortlisp): Remove termdev.elc.
16619
16620 2007-09-21 Markus Triska <markus.triska@gmx.at>
16621
16622 * xterm.c (x_delete_display): Compile session management conditionally.
16623
16624 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
16625
16626 * callproc.c (getenv_internal_1): New function.
16627 (getenv_internal): Use it.
16628 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
16629
16630 * terminal.c (get_terminal): Don't accept ints to represent terminals.
16631 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
16632 (Fset_terminal_parameter): Work with dead terminals as well.
16633 (Fmodify_terminal_parameters): Remove.
16634
16635 * terminal.c (get_terminal): Handle terminals.
16636 Make sure the terminal returned is live.
16637 (create_terminal): Use allocate_terminal.
16638 (mark_terminals): Move to alloc.c.
16639 (delete_terminal): Use terminal->name as liveness status.
16640 NULL out fields after freeing their contents.
16641 Don't deallocate the object.
16642 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
16643 rather than an int.
16644 (Fterminal_live_p): Accept non-integer arguments.
16645 (Fterminal_list): Return terminal objects rather than an ints.
16646
16647 * alloc.c (enum mem_type): New member for `terminal' objects.
16648 (allocate_terminal): New function.
16649 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
16650 Handle terminals.
16651 (mark_terminal): New fun.
16652 (mark_terminals): Move from terminal.c.
16653
16654 * term.c (get_tty_terminal): Don't treat output_initial specially.
16655 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
16656 (delete_tty): Use terminal->name as liveness status.
16657
16658 * termhooks.h (struct terminal): Make it into a pseudovector.
16659 Remove `deleted' replaced by checking `name's nullness.
16660
16661 * print.c (print_object): Handle terminals.
16662
16663 * lisp.h (enum pvec_type): New `terminal' pseudovector.
16664 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
16665
16666 * frame.c (make_terminal_frame):
16667 * keyboard.c (tty_read_avail_input):
16668 * w32term.c (x_delete_terminal):
16669 * xfns.c (Fx_create_frame, x_create_tip_frame):
16670 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
16671
16672 2007-09-20 Glenn Morris <rgm@gnu.org>
16673
16674 * process.c (Fmake_network_process): Doc fix.
16675
16676 2007-09-19 Jason Rumney <jasonr@gnu.org>
16677
16678 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
16679
16680 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
16681
16682 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
16683 Fix a C warning regarding variable constness.
16684
16685 * xterm.c (handle_one_xevent): Fix a C warning.
16686
16687 2007-09-18 Jason Rumney <jasonr@gnu.org>
16688
16689 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
16690
16691 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
16692
16693 * gtkutil.c (gdpy_def): New variable.
16694 (xg_initialize): Initialize gdpy_def.
16695 (xg_display_close): If no other display exists, set gdpy_def to a
16696 new connection.
16697
16698 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
16699
16700 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
16701 when we have no file name for the icon.
16702 (xg_tool_bar_expose_callback): Remove.
16703 (xg_create_tool_bar): Don't connect expose signal to
16704 xg_tool_bar_expose_callback.
16705 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
16706
16707 2007-09-16 Andreas Schwab <schwab@suse.de>
16708
16709 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
16710 values instead of zapping them.
16711
16712 2007-09-14 Glenn Morris <rgm@gnu.org>
16713
16714 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
16715 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
16716 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
16717 scope and rename to omfib_buffer for clarity.
16718 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
16719
16720 2007-09-14 Kenichi Handa <handa@m17n.org>
16721
16722 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
16723
16724 2007-09-13 Jason Rumney <jasonr@gnu.org>
16725
16726 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
16727
16728 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
16729
16730 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
16731 (mac_term_init): Call here instead, passing rif.
16732
16733 2007-09-13 Glenn Morris <rgm@gnu.org>
16734
16735 * s/hpux.h: No longer define `static' as nothing.
16736
16737 2007-09-13 Johan Bockgård <bojohan@gnu.org>
16738
16739 * callint.c (Fcall_interactively): Remove unused var `fun'.
16740
16741 2007-09-12 Romain Francoise <romain@orebokech.com>
16742
16743 * window.c (prefer_window_split_horizontally, display_buffer):
16744 Revert 2007-09-08 change.
16745
16746 2007-09-12 Glenn Morris <rgm@gnu.org>
16747
16748 * alloca.c: Remove file.
16749 * Makefile.in (alloca): Do not undef.
16750 (allocaobj, alloca.o): Remove.
16751 (otherobj): Remove allocaobj.
16752 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
16753 * regex.c (C_ALLOCA): Remove all references and code that was only
16754 used when this was defined.
16755 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
16756 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
16757 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
16758
16759 * Makefile.in (SOURCES, unlock, relock): Delete.
16760
16761 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
16762 (menu_grab_callback): All uses changed.
16763
16764 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
16765 (x_reply_selection_request): All uses changed.
16766
16767 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
16768
16769 * lread.c (load_warn_old_style_backquotes): Change message to look
16770 better when it appears in the middle of byte-compiler messages.
16771
16772 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
16773
16774 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
16775
16776 * xterm.c (x_create_terminal): Add comment.
16777
16778 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
16779
16780 2007-09-10 Richard Stallman <rms@gnu.org>
16781
16782 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
16783
16784 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
16785
16786 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
16787 (DEFUN): Document `intspec', use it instead of `prompt'.
16788
16789 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
16790
16791 * data.c (Finteractive_form): If the interactive specification starts
16792 with a `(', use it as a Lisp form.
16793
16794 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
16795 name and file modes.
16796
16797 * callint.c (Fcall_interactively): Comment fixes.
16798
16799 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
16800
16801 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
16802 and compiled functions.
16803
16804 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
16805
16806 * window.c (prefer_window_split_horizontally): New variable.
16807 (display_buffer): Consider splitting window horizontally depending
16808 on prefer_window_split_horizontally.
16809
16810 2007-09-08 Eli Zaretskii <eliz@gnu.org>
16811
16812 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
16813
16814 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16815
16816 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
16817
16818 * frame.c (x_set_frame_parameters): Check number is positive before
16819 using XFASTINT.
16820
16821 * window.c (freeze_window_start): Don't presume selected_window holds
16822 a window object.
16823 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
16824
16825 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
16826
16827 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
16828
16829 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
16830
16831 * window.c (Vsplit_window_preferred_function): New var.
16832 (Fdisplay_buffer): Use it.
16833 (syms_of_window): Export, and initialize it.
16834
16835 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
16836
16837 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
16838
16839 2007-09-06 Glenn Morris <rgm@gnu.org>
16840
16841 * gtkutil.c (menu_grab_callback) <cnt>:
16842 * xselect.c (x_reply_selection_request) <cnt>: Move static
16843 variable to file scope.
16844
16845 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
16846
16847 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
16848 consistent values of selected_frame and selected_window.
16849
16850 2007-09-04 Jason Rumney <jasonr@gnu.org>
16851
16852 * w32console.c (initialize_w32_display): Zero unused hooks.
16853
16854 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
16855
16856 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
16857 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
16858
16859 2007-09-04 Jason Rumney <jasonr@gnu.org>
16860
16861 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
16862 in w32console.c. Set up input. Remove XXX comments that have been
16863 confirmed as correct.
16864
16865 * s/ms-w32.h (MULTI_KBOARD): Define.
16866
16867 * w32console.c (one_and_only_w32cons): Remove.
16868 (initialize_w32_display): Take terminal argument.
16869
16870 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
16871 initialize_w32_display.
16872 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
16873
16874 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
16875
16876 * keyboard.c (discard_mouse_events): Discard it.
16877 (make_lispy_event): Translate it to a lisp event.
16878 (lispy_wheel_names): Add wheel-left and right events.
16879 (syms_of_keyboard): Enlarge wheel_syms.
16880
16881 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
16882 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
16883
16884 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
16885
16886 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
16887 from WM_MOUSEHWHEEL.
16888 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
16889
16890 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
16891 terminal.
16892
16893 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
16894 keyboard for the terminal.
16895
16896 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
16897
16898 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
16899 (Vresume_tty_hook): Rename from Vresume_tty_functions.
16900 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
16901 and resume-tty-function to resume-tty-hook.
16902 (Fsuspend_tty, Fresume_tty): Use new names.
16903
16904 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
16905
16906 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
16907 if it starts with "n:".
16908
16909 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
16910
16911 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
16912
16913 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
16914
16915 * frame.h:
16916 * frame.c (Qterm_environment_variable): Remove.
16917 (syms_of_frame): Don't init and staticpro it.
16918
16919 * callproc.c (getenv_internal): Remove special case for $TERM.
16920
16921 * callproc.c (Vinitial_environment): New variable.
16922 (set_initial_environment): Initialize it.
16923 (syms_of_callproc): Declare it.
16924 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
16925 TERM under which a process runs is never related to the TERM in which
16926 Emacs is running.
16927
16928 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
16929
16930 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
16931 * s/darwin.h: ... do it here.
16932
16933 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
16934
16935 * lisp.h (set_initial_environment): Rename from set_global_environment.
16936
16937 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
16938 removed by mistake on the multi-tty branch.
16939
16940 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
16941 (Fmodify_frame_parameters): Return a value.
16942
16943 * image.c (png_load): Comment-out var only used in commented-out code.
16944
16945 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
16946 before passing it to mark_object.
16947
16948 * xfaces.c (internal_resolve_face_name): Return a value.
16949 (internal_resolve_face_name, resolve_face_name_error): Comment out.
16950
16951 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
16952 (x_icon): Comment-out var only used in commented-out code.
16953
16954 2007-08-29 Romain Francoise <romain@orebokech.com>
16955
16956 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
16957 QUIT hasn't been provided.
16958
16959 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
16960
16961 * callproc.c (child_setup, getenv_internal): Use the
16962 display-environment-variable and term-environment-variable frame params.
16963 (set_initial_environment): Initialise Vprocess_environment.
16964
16965 * config.in: Disable multi-keyboard support on a mac.
16966
16967 * frame.c (Qterm_environment_variable)
16968 (Qdisplay_environment_variable): New variables.
16969 (syms_of_frame): Intern and staticpro them.
16970 (Fmake_terminal_frame): Disable output method test.
16971
16972 * frame.h: Declare them here.
16973
16974 * macfns.c (x_set_mouse_color): Get rif from the frame.
16975 (x_set_tool_bar_lines): Don't use updating_frame.
16976 (mac_window): Add 2 new parameters for consistency with other systems.
16977 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
16978 frame parameters following what is done in X11 and w32. Don't use
16979 FRAME_MAC_DISPLAY_INFO.
16980 (Fx_open_connection, start_hourglass): Remove window-system check.
16981 (x_create_tip_frame): Get the keyboard from the terminal.
16982
16983 * macmenu.c: Reorder includes.
16984 (Fx_popup_menu): Use terminal specific mouse_position_hook.
16985
16986 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
16987 terminal parameter.
16988 (x_clear_frame): Add a frame parameter.
16989 (note_mouse_movement): Get rif from the frame.
16990 (mac_term_init): Initialize the terminal.
16991 (mac_initialize): Make static and move terminal initialization ...
16992 (mac_create_terminal): ... to this new function.
16993
16994 * macterm.h (struct mac_display_info): Add terminal.
16995 (mac_initialize): Delete declaration.
16996
16997 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
16998
16999 * sysdep.c: Comment out text after #endif.
17000
17001 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
17002 is defined. Better initialize ttys in windows. Use terminal
17003 specific mouse_position_hook.
17004
17005 * termhooks.h (union display_info): Add mac_display_info.
17006
17007 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
17008 Set the default minibuffer frame, window_system and the rest of the
17009 frame parameters following what is done in X11.
17010
17011 * w32term.c (w32_initialize): Make static.
17012
17013 * xselect.c (x_handle_selection_clear): Only access
17014 terminal->kboard when MULTI_KBOARD is defined.
17015
17016 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
17017 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
17018
17019 2007-08-29 Jason Rumney <jasonr@gnu.org>
17020
17021 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
17022 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
17023
17024 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
17025 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
17026
17027 * keyboard.c (restore_kboard_configuration): Only define when
17028 MULTI_KBOARD defined.
17029
17030 * makefile.w32-in: Update dependancies from Makefile.in.
17031 (OBJ1): Add terminal.$(O)
17032
17033 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
17034 Don't define function body.
17035 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
17036
17037 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
17038
17039 * w32.c (request_sigio, unrequest_sigio): Remove.
17040
17041 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
17042 (w32con_clear_frame, w32con_clear_end_of_line)
17043 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
17044 (w32con_delete_glyphs, w32con_set_terminal_window)
17045 (scroll_line, w32_sys_ring_bell): Add frame arg.
17046 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
17047 Add terminal arg.
17048 (PICK_FRAME): Remove.
17049 (w32con_write_glyphs): Use frame specific terminal coding.
17050 (one_and_only_w32cons): New global variable.
17051 (initialize_w32_display): Use it for storing hooks.
17052 (create_w32cons_output): New function.
17053
17054 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
17055 arg a frame.
17056
17057 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
17058 Set window_system.
17059 (x_set_tool_bar_lines): Don't use updating_frame.
17060 (Fx_create_frame): Set terminal and ref count.
17061 (Fx_open_connection): Remove window-system check.
17062
17063 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
17064
17065 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
17066 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
17067 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
17068 Add frame arg.
17069 (x_delete_terminal, w32_create_terminal): New functions.
17070 (w32_term_init): Create a terminal.
17071 (w32_initialize): Move terminal specific initialization to
17072 w32_create_terminal.
17073
17074 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
17075 (w32_clear_rect, w32_clear_area): Use background from frame.
17076 (w32_display_info): Add terminal.
17077 (w32_sys_ring_bell, x_delete_display): Declare here.
17078
17079 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
17080
17081 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
17082
17083 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
17084
17085 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
17086 Fix get_named_tty calls for the controlling tty.
17087
17088 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
17089
17090 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
17091
17092 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
17093
17094 * term.c (tty_insert_glyphs): Add missing first parameter.
17095
17096 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
17097
17098 * buffer.c (Fbuffer_list, Fbury_buffer):
17099 Take frame->buried_buffer_list into account.
17100
17101 * cm.c (current_tty): New variable, for cmputc().
17102 (cmputc): Use it.
17103 (cmcheckmagic): Add tty parameter, look up terminal streams there.
17104 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
17105 (cmgoto): Add tty parameter. Pass it on to calccost().
17106 Use emacs_tputs() instead of tputs().
17107
17108 * cm.h (emacs_tputs): New macro to set current_tty, and then call
17109 tputs().
17110 (current_tty): New variable, for cmputc().
17111 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
17112
17113 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
17114 (internal_condition_case, internal_condition_case_1)
17115 (internal_condition_case_2): Don't abort when x_catching_errors.
17116
17117 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
17118 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
17119 prevent crashes caused by bogus longjmps in read_char.
17120
17121 * keymap.h (Fset_keymap_parent): Add EXFUN.
17122
17123 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
17124 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
17125 Remove redundant definition.
17126
17127 * macfns.c (x_set_mouse_color, x_make_gc):
17128 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
17129
17130 * w32term.c (x_free_frame_resources):
17131 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
17132 (w32_initialize): Use the accessor macros for terminal characteristics.
17133
17134 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
17135 Use the accessor macros for terminal characteristics.
17136 * msdos.c (internal_terminal_init): Use the accessor macros for
17137 terminal characteristics.
17138 (ScreenVisualBell, internal_terminal_init):
17139 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
17140
17141 * termopts.h (no_redraw_on_reenter): Declare.
17142
17143 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
17144 (mark_terminals, mark_ttys): Declare.
17145 (Fgarbage_collect): Call them.
17146 (mark_object): Mark buried_buffer_list.
17147
17148 * prefix-args.c: Include stdlib.h for exit.
17149
17150 * syssignal.h: Add comment.
17151
17152 * indent.c: Include stdio.h.
17153
17154 * window.h (Vinitial_window_system): Declare.
17155 (Vwindow_system): Delete declaration.
17156
17157 * fontset.c (Finternal_char_font): Use FRAME_RIF.
17158
17159 * image.c (lookup_image): Don't initialize `c' until the xasserts
17160 have been run.
17161
17162 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
17163 FRAME_FOREGROUND_PIXEL.
17164
17165 * print.c (print_preprocess): Don't lose print_depth levels while
17166 iterating.
17167
17168 * widget.c (update_from_various_frame_slots):
17169 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
17170
17171 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
17172 frames.
17173 (window_internal_height): Remove bogus make_number call.
17174 (init_window_once): Call make_terminal_frame with two zero parameters.
17175
17176 * fileio.c (Fread_file_name): Update comment.
17177
17178 * callint.c (Fcall_interactively):
17179 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
17180 Make sure it is correctly unwound.
17181
17182 * xsmfns.c (x_session_close): New function.
17183
17184 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
17185 Delete declarations.
17186
17187 * xterm.h: Remove declaration for x_fully_uncatch_errors.
17188 (x_output): Remove background_pixel and foreground_pixel fields.
17189 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
17190 (x_delete_device, x_session_close): Declare.
17191
17192 * lread.c: Include setjmp.h. Update declaration of `read_char'.
17193 (read_filtered_event): Call `read_char' with a local
17194 `wrong_kboard_jmpbuf'.
17195
17196 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
17197 Don't call single_kboard_state. Use FRAME_RIF.
17198
17199 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
17200 systems.
17201
17202 * lisp.h (set_process_environment): Rename to `set_global_environment'.
17203 (Fframe_with_environment, Fset_input_meta_mode)
17204 (Fset_quit_char): EXFUN.
17205 (x_create_device, tty_output, terminal, tty_display_info): Declare.
17206 (init_sys_modes, reset_sys_modes): Update prototypes.
17207 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
17208
17209 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
17210 Vlocal_key_translation_map, and Vkeyboard_translate_table.
17211 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
17212 Delete declarations.
17213 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
17214 (temporarily_switch_to_single_kboard, tty_read_avail_input):
17215 New declarations.
17216
17217 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
17218 already does that during init_display(). Call syms_of_keymap
17219 before syms_of_keyboard. Call `syms_of_terminal'.
17220 Call set_initial_environment, not set_process_environment.
17221 (shut_down_emacs): Call reset_all_sys_modes() instead of
17222 reset_sys_modes().
17223
17224 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
17225 (internal_resolve_face_name, resolve_face_name_error): New functions.
17226 (resolve_face_name): Protect against loops and errors thrown by Fget.
17227 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
17228 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
17229
17230 * scroll.c: Replace CURTTY() with local variables throughout the
17231 file (where applicable).
17232 (calculate_scrolling, calculate_direct_scrolling)
17233 (scrolling_1, scroll_cost): Use the accessor macros for terminal
17234 characteristics.
17235
17236 * keymap.c (Vfunction_key_map): Remove.
17237 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
17238 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
17239 (Vkey_translation_map): Remove.
17240 (syms_of_keymap): Remove DEFVAR for key-translation-map.
17241 (Fdescribe_buffer_bindings)
17242 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
17243 Update for terminal-local key-translation-map.
17244
17245 * Makefile.in (callproc.o): Update dependencies.
17246 (lisp, shortlisp): Add termdev.elc.
17247 (obj): Add terminal.o.
17248 (terminal.o): Add dependencies.
17249 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
17250 (data.o, fns.o): Add termhooks.h dependency.
17251 (SOME_MACHINE_LISP): Add dnd.elc.
17252 (minibuf.o): Fix typo.
17253 Update dependencies.
17254
17255 * data.c (do_symval_forwarding, store_symval_forwarding)
17256 (find_symbol_value): Use the selected frame's keyboard, not
17257 current_kboard.
17258
17259 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
17260 Vwindow_system.
17261
17262 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
17263 Fmenu_bar_open.
17264 (syms_of_xmenu): Update defsubr.
17265 (mouse_position_for_popup, Fx_popup_menu)
17266 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
17267 (set_frame_menubar, free_frame_menubar)
17268 (create_and_show_popup_menu, xmenu_show)
17269 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
17270 an X frame.
17271
17272 * xselect.c (x_own_selection): Abort if not an X frame.
17273 (some_frame_on_display): Check if it is an X frame.
17274 (x_handle_selection_clear): Deal with MULTI_KBOARD.
17275
17276 * coding.c: Include frame.h and termhooks.h.
17277 (terminal_coding, keyboard_coding): Delete.
17278 (Fset_terminal_coding_system_internal)
17279 (Fset_keyboard_coding_system_internal)
17280 (Fkeyboard_coding_system)
17281 (Fterminal_coding_system): Add a terminal parameter.
17282 Get terminal_coding from the terminal.
17283 (init_coding_once): Don't call setup_coding_system here.
17284
17285 * dispextern.h (set_scroll_region, turn_off_insert)
17286 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
17287 (tty_clear_end_of_line, tty_setup_colors)
17288 (delete_tty, updating_frame)
17289 (produce_special_glyphs, produce_glyphs, write_glyphs)
17290 (insert_glyphs): Remove.
17291 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
17292 (tty_turn_off_highlight, get_tty_size): Add declaration.
17293 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
17294
17295 * frame.h (enum output_method): Add output_initial.
17296 (struct x_output): Delete.
17297 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
17298 Access foreground_pixel and background_pixel directly from the frame.
17299 (tty_display): Delete.
17300 (struct frame): Add buried_buffer_list, foreground_pixel,
17301 background_pixel and terminal. Delete kboard.
17302 (union output_data): Add tty.
17303 (FRAME_KBOARD): Get the kboard from the terminal.
17304 (FRAME_INITIAL_P): New macro.
17305 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
17306 (Qterm_environment_variable, Qdisplay_environment_variable)
17307 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
17308 New declarations.
17309
17310 * termchar.h (tty_output, tty_display_info): New structures.
17311 (tty_list): Declare.
17312 (FRAME_TTY, CURTTY): New macros.
17313 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
17314 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
17315 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
17316 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
17317
17318 * callproc.c: Include frame.h and termhooks.h, for terminal
17319 parameters.
17320 (add_env): New function.
17321 (child_setup): Use it.
17322 (child_setup, getenv_internal): Handle the new Vprocess_environment.
17323 (getenv_internal): Fix get_terminal_param call.
17324 (Fgetenv_internal, egetenv): Update doc.
17325 (syms_of_callproc): Initialize Vprocess_environment to nil.
17326 Register and initialize them. Remove obsolete defvars. Update doc
17327 strings.
17328 (child_setup): Handle Vlocal_environment_variables.
17329 (getenv_internal): Add terminal parameter.
17330 Handle Vlocal_environment_variables.
17331 (Fgetenv_internal): Add terminal parameter.
17332 (child_setup, getenv_internal, Fgetenv_internal): Store the local
17333 environment in a frame (not terminal) parameter. Update doc strings.
17334 (set_initial_environment): Rename from set_global_environment.
17335 Store Emacs environment in initial frame parameter.
17336
17337 * xdisp.c (redisplay_internal): Update references to
17338 `previous_terminal_frame'.
17339 (display_mode_line, Fformat_mode_line): Replace calls to
17340 `push_frame_kboard' with `push_kboard'.
17341 (get_glyph_string_clip_rects): Add extra parentheses and
17342 braces to prevent compiler warnings.
17343 (calc_pixel_width_or_height): Add xassert to check that the
17344 frame is alive. Don't call `lookup_image' on a termcap frame.
17345 (message2_nolog, message3_nolog, redisplay_internal)
17346 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
17347 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
17348 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
17349 (Fx_display_pixel_width, Fx_display_pixel_height)
17350 (Fx_display_planes, Fx_display_color_cells)
17351 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
17352 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
17353 (Fx_display_backing_store, Fx_display_visual_class)
17354 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
17355 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
17356
17357 * xfns.c (x_set_foreground_color x_set_background_color)
17358 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
17359 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
17360 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
17361 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
17362 terminal that is being deleted.
17363 (Fx_create_frame): Use `store_frame_param' to set `window-system'
17364 frame parameter, and make sure it overrides any user-supplied setting.
17365 (Fx_close_connection, Fx_synchronize): Unify argument names with
17366 the rest of the DEFUNs.
17367
17368 * dispnew.c (Fsend_string_to_terminal): Update call to
17369 `get_tty_terminal'.
17370 (Fredraw_frame, Fsend_string_to_terminal)
17371 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
17372 FRAME_TERMCAP_P and FRAME_TTY.
17373 (window_change_signal): Don't believe width/height values that are
17374 impossibly small.
17375 (Vinitial_window_system): Rename from Vwindow_system.
17376 (termscript, Wcm, rif): Delete.
17377
17378 * termhooks.h (struct terminal): New struct containing the
17379 previously global text display hooks and new members NAME,
17380 DELETED and PARAM_ALIST.
17381 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
17382 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
17383 (FRAME_RIF): New macros.
17384 (get_terminal_param, get_device): New declarations.
17385 (termscript): Delete declaration.
17386
17387 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
17388 (XTflash, x_free_frame_resources, x_scroll_bar_create)
17389 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
17390 FRAME_FOREGROUND_PIXEL.
17391 (x_fully_uncatch_errors): Disable definition.
17392 (x_scroll_bar_expose): Fix reference to foreground pixel.
17393 (XTread_socket): Disable loop on all X displays.
17394 (x_delete_terminal): Don't set terminal->deleted and let
17395 delete_terminal delete the frames on the terminal.
17396 (x_delete_display): Doc update to reflect changes in
17397 delete_terminal.
17398 (x_display_info) <terminal>: Move member earlier in the struct.
17399 (deleting_tty): Remove old variable.
17400 (Fsuspend_tty): Call clear_tty_hooks.
17401 (Fresume_tty, init_tty): Call set_tty_hooks.
17402 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
17403 errors on X frames.
17404 (x_catch_errors_unwind): Abort if x_error_message is NULL.
17405 (handle_one_xevent): Initialize `f' to NULL.
17406 (x_delete_terminal, x_create_terminal): New functions.
17407 (XTset_terminal_modes, XTreset_terminal_modes)
17408 (XTread_socket, x_connection_closed, x_term_init)
17409 (x_term_init, x_delete_display): Add terminal parameter.
17410 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
17411 X connections.
17412
17413 * frame.c: Include termchar.h.
17414 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
17415 (Qwindow_system, Qenvironment, Qterm_environment_variable)
17416 (Qdisplay_environment_variable): New vars.
17417 (Fframep): Deal with output_initial.
17418 (Fframe-live-p): Doc fix.
17419 (Fwindow-system): New function.
17420 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
17421 (make_terminal_frame): Don't create frames on a terminal that is
17422 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
17423 (store_frame_param): Check for found_for_frame before calling XFRAME.
17424 (Fmake_terminal_frame): Handle NULL tty names correctly.
17425 (syms_of_frame): Enhance doc string of `default-frame-alist'.
17426 (Fdelete_frame): Remove unused variable `count'. Don't allow other
17427 frames to refer to a deleted frame in their 'environment parameter.
17428 (Fframe_with_environment): New function.
17429 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
17430 (get_future_frame_param): New function.
17431 (Fmake_terminal_frame): Use it.
17432 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
17433
17434 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
17435 * sysdep.c (reset_sys_modes): Update for renames.
17436
17437 * keyboard.c (tty_read_avail_input): New function.
17438 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
17439 (syms_of_keyboard): Defsubr them.
17440 (Fset_input_meta_mode, Fset_quit_char): New functions.
17441 (Fset_input_mode): Split to above functions.
17442 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
17443 parameter. Use it in call to `read_char'.
17444 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
17445 Set wrong_kboard_jmpbuf correctly in recursive calls.
17446 Use current_kboard to access Vkeyboard_translate_table.
17447 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
17448 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
17449 Update longjmp invocations. Remember the original current_kboard,
17450 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
17451 changes it. Comment out unnecessary calls to
17452 `record_single_kboard_state' and `any_kboard_state'.
17453 Update recursive calls.
17454 (wrong_kboard_jmpbuf): Remove global variable.
17455 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
17456 Handle deleted interrupted_kboards correctly; that is a legal
17457 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
17458 and read_char calls. Abort if interrupted_kboard died in read_char.
17459 (any_kboard_state, single_kboard_state)
17460 (push_frame_kboard): Remove function.
17461 (pop_kboard): Switch out of single_kboard mode if the kboard has
17462 been deleted. Remove unused variable. Help debugging by not
17463 changing current_kboard unnecessarily. Set current_kboard to the
17464 kboard of the selected frame when the stored kboard object has
17465 been deleted before pop_kboard.
17466 (temporarily_switch_to_single_kboard): Change first parameter to a
17467 frame pointer. Throw an error when caller wants to change kboards
17468 while in single_kboard mode. Don't push_kboard if we weren't in
17469 single kboard state. Don't pop_kboard if we popped into any
17470 kboard state.
17471 (restore_kboard_configuration): Abort if pop_kboard changed the
17472 kboard in single_kboard mode. Call pop_kboard only after setting
17473 up single_kboard mode.
17474 (Frecursive_edit): Switch to single_kboard mode only in nested
17475 command loops.
17476 (cmd_error, command_loop, command_loop_1, timer_check):
17477 Comment out unnecessary call to `any_kboard_state' and
17478 `record_single_kboard_state'.
17479 (delete_kboard): Exit single_kboard mode if we have just deleted
17480 that kboard. Use FRAME_KBOARD.
17481 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
17482 `fatal_error_signal'.
17483 (record_single_kboard_state): Don't push_kboard if we weren't in
17484 single kboard state. Don't pop_kboard if we popped into any
17485 kboard state.
17486 (push_frame_kboard): Rename to push_kboard.
17487 (kbd_buffer_get_event): Use FRAME_TERMINAL.
17488 (read_avail_input): Read input from all terminals.
17489 (mark_kboards): Also mark Vkeyboard_translate_table.
17490 (kbd_buffer_store_event_hold): Simplify condition.
17491 (read_key_sequence): Reinitialize fkey and keytran at each replay.
17492 (Vkeyboard_translate_table): Move to struct kboard.
17493 (init_kboard): Initialize Vkeyboard_translate_table.
17494 (syms_of_keyboard): Use DEFVAR_KBOARD to define
17495 Vkeyboard_translate_table. Update doc strings. Update docs of
17496 local-function-key-map and function-key-map.
17497
17498 * terminal.c: New file.
17499
17500 * term.c: Include errno.h.
17501 (Vring_bell_function, device_list, initial_device)
17502 (next_device_id, ring_bell, update_begin, update_end)
17503 (set_terminal_window, cursor_to, raw_cursor_to)
17504 (clear_to_end, clear_frame, clear_end_of_line)
17505 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
17506 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
17507 (syms_of_term): Move their initialization to terminal.c.
17508 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
17509 (Ftty_display_color_cells)
17510 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
17511 (clear_tty_hooks, set_tty_hooks)
17512 (init_tty, maybe_fatal): New functions.
17513 (Ftty_type): Return nil if terminal is not on a tty instead of
17514 throwing an error. Doc update.
17515 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
17516 Doc update. Initialize new subrs and variables.
17517 (delete_tty): Use terminal->deleted.
17518 (tty_set_terminal_modes): Rename from set_terminal_modes.
17519 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
17520 (set_scroll_region): Rename to `tty_set_scroll_region'.
17521 (turn_on_insert): Rename to `tty_turn_on_insert'.
17522 (turn_off_insert): Rename to `tty_turn_off_insert'.
17523 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
17524 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
17525 (toggle_highligh): Rename to `tty_toggle_highlight'.
17526 (background_highlight): Rename to `tty_background_highlight'.
17527 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
17528 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
17529 (tty_set_scroll_region, tty_background_highlight)
17530 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
17531 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
17532 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
17533 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
17534 Add static modifier.
17535 (tty_reset_terminal_modes, tty_set_terminal_window)
17536 (tty_set_scroll_region, tty_background_highlight)
17537 (tty_highlight_if_desired, tty_cursor_to)
17538 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
17539 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
17540 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
17541 renames.
17542
17543 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
17544
17545 * keyboard.c: Qrtl is new.
17546 (parse_tool_bar_item): Handle :rtl keyword.
17547 (syms_of_keyboard): Intern :rtl keyword.
17548
17549 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
17550
17551 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
17552 so no Lisp code is executed.
17553 (file_for_image, find_rtl_image): New functions.
17554 (xg_get_image_for_pixmap): Use file_for_image.
17555 (update_frame_tool_bar): If direction is RTL, use RTL image if
17556 defined. Use Gtk stock images if defined.
17557
17558 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17559
17560 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
17561 for nonexistent or zero-width glyph in composition glyph.
17562
17563 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
17564
17565 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
17566
17567 * xdisp.c (Finvisible_p): New function.
17568 (syms_of_xdisp): defsubr it.
17569
17570 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
17571
17572 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
17573 Doc fixes.
17574
17575 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17576
17577 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
17578
17579 2007-08-24 Martin Rudalics <rudalics@gmx.at>
17580
17581 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
17582 whether decoding has modified buffer contents.
17583
17584 2007-08-24 Jason Rumney <jasonr@gnu.org>
17585
17586 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
17587 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
17588 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
17589 (init_svg_functions) [HAVE_NTGUI]: New function.
17590 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
17591 (svg_load_image): Use them.
17592 (svg_load_image) [HAVE_NTGUI]: Implement background.
17593
17594 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17595
17596 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
17597 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
17598 (LIBX): Remove @RSVG_LIBS@.
17599 (LIBES): Add $(RSVG_LIBS).
17600
17601 * image.c (svg_load_image): Blend with specified background if exists.
17602 Use IMAGE_BACKGROUND. Add Mac OS Support.
17603
17604 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
17605 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
17606 Remove macros.
17607 [MAC_OSX] (socket_callback): Do nothing.
17608 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
17609 ReceiveNextEvent.
17610 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
17611 socket_callback.
17612 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
17613
17614 2007-08-22 Glenn Morris <rgm@gnu.org>
17615
17616 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
17617
17618 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
17619
17620 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
17621
17622 * image.c: Add support for SVG images. Some additional comments
17623 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
17624 (svg_image_p): New function to test for SVG image.
17625 (svg_load): New function to load SVG image.
17626 (svg_load_image): New function, helper for svg_load.
17627 (Qsvg): New Lisp_object.
17628 (svg_keyword_index): New enum.
17629 (svg_format): New static `image_keyword' struct.
17630 (svg_type): New static `image_type' struct.
17631 (librsvg/rsvg.h): Include it.
17632
17633 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
17634
17635 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
17636
17637 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
17638
17639 * lread.c (Qold_style_backquotes): New var.
17640 (syms_of_lread): Init and staticpro it.
17641 (load_warn_old_style_backquotes): New fun.
17642 (Fload): Use them to warn about old style backquotes.
17643 (end_of_file_error, Fload): Remove unused vars.
17644
17645 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
17646
17647 * lread.c (Vold_style_backquotes): New var.
17648 (syms_of_lread): Init and export it to Elisp.
17649 (read1): Set it when we find an old-style (back)quote.
17650
17651 2007-08-22 Jason Rumney <jasonr@gnu.org>
17652
17653 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
17654
17655 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
17656
17657 * puresize.h (BASE_PURESIZE): Increase to 1140000.
17658
17659 2007-08-19 Richard Stallman <rms@gnu.org>
17660
17661 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
17662
17663 2007-08-19 Andreas Schwab <schwab@suse.de>
17664
17665 * alloc.c (pure): Round PURESIZE up.
17666
17667 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
17668
17669 * xterm.c (handle_one_xevent): Remove check that mouse click is in
17670 active frame.
17671
17672 2007-08-16 Richard Stallman <rms@gnu.org>
17673
17674 * eval.c (Fcommandp): Add parens to clarify.
17675
17676 * minibuf.c (Fall_completions): Use enum for type of table.
17677
17678 * emacs.c (USAGE2): Improve text.
17679
17680 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
17681
17682 * term.c (tty_default_color_capabilities): Declare static
17683 variables in file scope, to avoid HPUX compiler problem.
17684
17685 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
17686
17687 * gtkutil.c (update_frame_tool_bar): Use -1 as index
17688 to gtk_toolbar_insert.
17689
17690 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
17691
17692 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
17693
17694 * insdel.c (reset_var_on_error): New fun.
17695 (signal_before_change, signal_after_change):
17696 Use it to reset (after|before)-change-functions to nil in case of error.
17697 Bind inhibit-modification-hooks to t.
17698 Don't bind (after|before)-change-functions to nil while they run.
17699
17700 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17701
17702 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
17703 filling pixmap with stippled background.
17704
17705 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17706
17707 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
17708 Don't use invisible frame as parent window for repositioning.
17709
17710 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
17711
17712 * print.c (new_backquote_output): Rename from old_backquote_output.
17713 (print): Inverse its logic (according to its name) so as to match the
17714 behavior of new_backquote_flag in lread.c.
17715
17716 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17717
17718 * gmalloc.c (posix_memalign): New function.
17719
17720 * macterm.c (frame_highlight, frame_unhighlight): Don't call
17721 ActivateControl/DeactivateControl here.
17722 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
17723 frame-notice-user-settings is non-nil.
17724 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
17725 for kEventParamFMFontStyle.
17726 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
17727 mac_pass_command_to_system and mac_pass_control_to_system here.
17728 (XTread_socket): Call ActivateControl/DeactivateControl here.
17729 (XTread_socket) [TARGET_API_MAC_CARBON]:
17730 Check mac_pass_command_to_system and mac_pass_control_to_system here.
17731 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
17732 for window repositioning.
17733
17734 2007-08-08 Glenn Morris <rgm@gnu.org>
17735
17736 * Replace `iff' in doc-strings and comments.
17737
17738 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
17739
17740 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
17741
17742 2007-08-07 Martin Rudalics <rudalics@gmx.at>
17743
17744 * fileio.c (Finsert_file_contents): Run format-decode and
17745 after_insert_file_functions on entire buffer when REPLACE is
17746 non-nil and inhibit modification_hooks and point_motion_hooks.
17747 For consistency, run after_insert_file_functions iff something
17748 got inserted. Move signal_after_change and update_compositions
17749 after code running after_insert_file_functions. Make sure that
17750 undo_list doesn't record intermediate steps of the decoding process.
17751
17752 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17753
17754 * emacs.c (main)
17755 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
17756 Call malloc_enable_thread on interactive startup.
17757
17758 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
17759 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
17760 [USE_PTHREAD]: Conditionalize with it.
17761 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
17762 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
17763 New functions.
17764
17765 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
17766
17767 * xdisp.c (redisplay_window): When restoring original buffer
17768 position, make sure it is still valid.
17769
17770 * image.c (png_load): Ignore png-supplied background color.
17771
17772 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17773
17774 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
17775 Use kCFAbsoluteTimeIntervalSince1970.
17776
17777 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
17778 New variable.
17779 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
17780 event loop should be quit.
17781 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
17782 Quit dialog event loop if quit_dialog_event_loop is set.
17783
17784 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
17785 (Selection): New typedef. Use instead of ScrapRef.
17786 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
17787 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
17788 (mac_clear_selection): Rename from clear_scrap.
17789 (get_flavor_type_from_symbol): New argument SEL and subsume function of
17790 scrap_has_target_type. All uses changed.
17791 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
17792 (mac_selection_has_target_p): New functions.
17793 (mac_put_selection_value): Rename from put_scrap_string.
17794 (mac_get_selection_value): Rename from get_scrap_string.
17795 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
17796 (put_scrap_private_timestamp, scrap_has_target_type)
17797 (get_scrap_private_timestamp): Remove functions.
17798 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
17799 (x_own_selection, x_get_local_selection):
17800 Use mac_valid_selection_value_p.
17801 (x_own_selection): Don't use put_scrap_private_timestamp.
17802 Record OWNERSHIP-INFO into Vselection_alist instead.
17803 (x_get_local_selection): Don't check type if request is local.
17804 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
17805 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
17806
17807 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
17808
17809 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
17810 add comment explaining why.
17811
17812 2007-08-03 Richard Stallman <rms@gnu.org>
17813
17814 * fileio.c (Fvisited_file_modtime): Use make_time.
17815
17816 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
17817
17818 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
17819 build.
17820
17821 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
17822
17823 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
17824
17825 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
17826
17827 * puresize.h (BASE_PURESIZE): Increase to 1130000.
17828
17829 2007-07-30 Richard Stallman <rms@gnu.org>
17830
17831 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
17832
17833 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
17834
17835 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
17836
17837 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
17838
17839 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
17840 remote default-directory.
17841
17842 * buffer.c (mode-line-format): Update doc string.
17843
17844 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17845
17846 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
17847 scroll bar gap.
17848 (x_scroll_bar_create): Set bar->fringe_extended_p.
17849 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
17850 on frame edge. Check fringe background extension. Don't clear
17851 extended fringe background area.
17852
17853 * w32term.h (struct scroll_bar): New member fringe_extended_p.
17854 (w32_fill_area): Enclose multiple statements with do ... while (0).
17855
17856 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
17857 Extend fringe background to scroll bar gap.
17858 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
17859 Set bar->fringe_extended_p.
17860 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
17861 Put leftmost/rightmost scroll bars on frame edge. Check fringe
17862 background extension. Don't clear extended fringe background area.
17863
17864 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
17865 New member fringe_extended_p.
17866
17867 2007-07-25 Glenn Morris <rgm@gnu.org>
17868
17869 * Relicense all FSF files to GPLv3 or later.
17870
17871 * COPYING: Switch to GPLv3.
17872
17873 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
17874
17875 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
17876
17877 * data.c (Finteractive_form): Check for the presence of an
17878 `interactive-form' symbol property more thoroughly.
17879
17880 * data.c (Finteractive_form): Use an `interactive-form' property if
17881 present, analogous to the function-documentation property.
17882
17883 2007-07-24 Jason Rumney <jasonr@gnu.org>
17884
17885 * w32fns.c (x_real_positions): Get real position from OS instead of
17886 calculating it.
17887
17888 2007-07-23 Jason Rumney <jasonr@gnu.org>
17889
17890 * filelock.c (current_lock_owner): Allow for @ sign in username.
17891
17892 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
17893
17894 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
17895 remote default-directory.
17896
17897 * buffer.c (mode-line-format): Describe above case in doc string.
17898
17899 2007-07-20 Eli Zaretskii <eliz@gnu.org>
17900
17901 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
17902 Define if not defined.
17903
17904 2007-07-18 Jason Rumney <jasonr@gnu.org>
17905
17906 * w32proc.c (w32_executable_type): Handle 64 bit executables.
17907
17908 2007-07-18 Richard Stallman <rms@gnu.org>
17909
17910 * data.c (Fsetq_default): Doc fix.
17911
17912 * eval.c (Fsetq): Doc fix.
17913
17914 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
17915
17916 * coding.c (Ffind_operation_coding_system):
17917 * eval.c (For, Fand): Doc fixes.
17918 Reported by Johan Bockgård.
17919
17920 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
17921
17922 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
17923
17924 * xterm.h: Declare x_ewmh_activate_frame.
17925
17926 * xterm.c (x_ewmh_activate_frame): New function.
17927 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
17928
17929 2007-07-17 Martin Rudalics <rudalics@gmx.at>
17930
17931 * window.c (Fdisplay_buffer): If largest or LRU window is the
17932 only window, split it even if it is not eligible for splitting.
17933 This restores the original behavior broken by the 2007-07-15
17934 change.
17935
17936 2007-07-17 Glenn Morris <rgm@gnu.org>
17937
17938 * abbrev.c (abbrev_check_chars): New function.
17939 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
17940 Call abbrev_check_chars to check abbrev characters are word
17941 constituents. Doc fix.
17942
17943 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
17944
17945 * process.c (Fstart_process, Fmake_network_process)
17946 (read_process_output): Fix up last changes.
17947
17948 2007-07-16 Eli Zaretskii <eliz@gnu.org>
17949
17950 * makefile.w32-in (clean): Don't delete *~.
17951
17952 2007-07-16 Andreas Schwab <schwab@suse.de>
17953
17954 * window.c (Fdisplay_buffer): Use NILP.
17955 (Fset_window_scroll_bars): Likewise.
17956
17957 2007-07-15 Martin Rudalics <rudalics@gmx.at>
17958
17959 * window.c (window_min_size_2): New function.
17960 (window_min_size_1, size_window, Fdisplay_buffer)
17961 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
17962 windows without mode- or header-lines when window-min-height is
17963 too small.
17964 (size_window): Reset nodelete_p after testing it, following an
17965 earlier note by Kim F. Storm.
17966 (display_buffer): Do not set split_height_threshold to twice the
17967 value of window_min_height to avoid changing the value of a
17968 customizable variable. Rather explicitly check whether the
17969 height of the window that shall be splitted is at least as large
17970 as split_height_threshold.
17971 (Fwindow_full_width_p): New defun.
17972 (syms_of_window): Defsubr it.
17973
17974 * window.h: Add EXFUN for Fwindow_full_width_p.
17975
17976 2007-07-14 Jason Rumney <jasonr@gnu.org>
17977
17978 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
17979
17980 2007-07-14 Richard Stallman <rms@gnu.org>
17981
17982 * eval.c (maybe_call_debugger): New function.
17983 (find_handler_clause): Use maybe_call_debugger.
17984 Call it when the handler says `debug'.
17985 Eliminate DEBUGGER_VALUE_PTR.
17986 (Fsignal): Eliminate debugger_value.
17987 (Qdebug): New variable.
17988 (syms_of_eval): Initialize it.
17989
17990 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
17991
17992 * eval.c (Fprogn):
17993 * keyboard.c (Ftrack_mouse):
17994 * print.c (Fwith_output_to_temp_buffer):
17995 * window.c (Fsave_window_excursion): Doc fix.
17996
17997 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
17998
17999 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
18000
18001 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
18002
18003 * process.h (struct Lisp_Process): Turn slots infd, outfd,
18004 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
18005 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
18006 read_output_delay, and read_output_skip from Lisp_Objects to ints.
18007 Remove unused encoding_carryover.
18008 * process.c: Adjust all functions accordingly.
18009
18010 2007-07-12 Richard Stallman <rms@gnu.org>
18011
18012 * term.c: Include unistd.h only if HAVE_UNISTD_H.
18013
18014 2007-07-11 Jason Rumney <jasonr@gnu.org>
18015
18016 * makefile.w32-in (LIBS): Include OLE32.
18017
18018 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
18019 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
18020
18021 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
18022
18023 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
18024 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
18025 from a Lisp_Object into a bare pointer.
18026 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
18027 Adjust the code correspondingly.
18028
18029 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
18030
18031 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
18032 (term_show_mouse_face): Remove unused var `j'.
18033 (handle_one_term_event): Remove unused vars `i' and `j'.
18034 Don't cast return value of ttyname since it's not necessary.
18035
18036 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
18037
18038 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
18039 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
18040
18041 * fns.c (map_char_table): Use an array of int for `indices' rather than
18042 an array of Lisp_Objects (which are only ever integers anyway).
18043 (Fmap_char_table): Update caller.
18044 * lisp.h: Update prototype.
18045 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
18046 * fontset.c (Ffontset_info):
18047 * casetab.c (set_case_table): Update callers.
18048
18049 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
18050
18051 * keymap.c (struct accessible_keymaps_data)
18052 (struct where_is_internal_data): New structures.
18053 (accessible_keymaps_1, where_is_internal_1): Use them to change
18054 interface to adhere to the one used by map_keymap.
18055 (Faccessible_keymaps, where_is_internal): Use map_keymap.
18056 (accessible_keymaps_char_table, where_is_internal_2): Remove.
18057
18058 * keymap.h (map_keymap_function_t): More informative prototype.
18059
18060 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
18061
18062 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
18063 (looking_at_1): Don't change search_regs and last_thing_searched
18064 if `inhibit-changing-match-data' is non-nil.
18065 (string_match_1, search_buffer, set_search_regs): Likewise.
18066 (syms_of_search): Add Lisp level definition for
18067 `inhibit-changing-match-data' and set it to nil.
18068 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
18069 start and end of the match, instead of using values in search_regs.
18070
18071 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
18072
18073 * minibuf.c (Fcompleting_read): New value `confirm-only'
18074 for `require-match'.
18075
18076 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
18077
18078 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
18079 part of the 2007-06-27 change to syms_of_fileio.
18080
18081 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18082
18083 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
18084 Check WINDOWP before using XWINDOW. Consolidate return statements.
18085
18086 2007-06-27 Richard Stallman <rms@gnu.org>
18087
18088 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
18089
18090 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
18091
18092 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
18093
18094 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18095
18096 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
18097 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
18098 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
18099 (_free_internal, memalign): Use them.
18100 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
18101 Initialize to PTHREAD_MUTEX_INITIALIZER.
18102 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
18103 (morecore_nolock): Rename from morecore. All uses changed.
18104 Use only nolock versions of internal allocation functions.
18105 (_malloc_internal_nolock, _realloc_internal_nolock)
18106 (_free_internal_nolock): New functions created from
18107 _malloc_internal, _realloc_internal, and _free_internal.
18108 (_malloc_internal, _realloc_internal, _free_internal): Use them.
18109 Copy hook value to automatic variable before its use.
18110 (memalign): Copy hook value to automatic variable before its use.
18111
18112 2007-06-26 Kenichi Handa <handa@m17n.org>
18113
18114 * coding.c (Ffind_operation_coding_system): Docstring improved.
18115 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
18116
18117 2007-06-25 David Kastrup <dak@gnu.org>
18118
18119 * keymap.c (Fcurrent_active_maps): Add `position' argument.
18120 (Fwhere_is_internal): Adjust call to `current-active-maps' to
18121 cater for additional parameter.
18122
18123 * keymap.h: Adjust number of parameters to `current-active-maps'.
18124
18125 * doc.c (Fsubstitute_command_keys): Adjust call of
18126 `current-active-maps'.
18127
18128 2007-06-25 David Kastrup <dak@gnu.org>
18129
18130 * callint.c (Fcall_interactively): Make the parsing of interactive
18131 specs somewhat more readable.
18132
18133 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18134
18135 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
18136 to scroll bar gap also when bitmap fills fringe. Draw only foreground
18137 if extended background has already been filled.
18138
18139 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18140
18141 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
18142 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
18143
18144 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
18145 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
18146 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
18147 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
18148 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
18149 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
18150 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
18151 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
18152 Run timers during dialog popup.
18153 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
18154
18155 2007-06-21 Jason Rumney <jasonr@gnu.org>
18156
18157 * image.c (convert_mono_to_color_image): Swap fore and background.
18158
18159 2007-06-20 Jason Rumney <jasonr@gnu.org>
18160
18161 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
18162 (w32_free_bdf_font): Unmap memory not handle.
18163
18164 2007-06-20 Sam Steingold <sds@gnu.org>
18165
18166 * gmalloc.c (__morecore): Fix the declaration to comply with the
18167 definition.
18168
18169 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
18170
18171 * w32term.c (w32_delete_display): Remove leftover declaration.
18172 (w32_define_cursor, w32_initialize): Make static.
18173
18174 * w32.c (_wsa_errlist): Fix typo in error message.
18175 (init_environment): Ignore any environment variable from the
18176 registry having a null value.
18177
18178 2007-06-20 Glenn Morris <rgm@gnu.org>
18179
18180 * Makefile.in (LIBGIF): Default to -lgif.
18181
18182 2007-06-17 Jason Rumney <jasonr@gnu.org>
18183
18184 * w32menu.c (add_menu_item): Don't use multibyte string functions on
18185 unicode strings.
18186
18187 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
18188
18189 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
18190 Fix typo in docstring.
18191
18192 2007-06-16 Eli Zaretskii <eliz@gnu.org>
18193
18194 * w32menu.c (add_menu_item): Escape `&' characters in menu items
18195 and their keybindings.
18196
18197 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
18198
18199 * composite.c (update_compositions): Fix last fix.
18200
18201 2007-06-14 Jason Rumney <jasonr@gnu.org>
18202
18203 * w32.c (get_process_times_fn): New function pointer.
18204 (globals_of_w32): Intialize it if present in kernel32.dll.
18205 (w32_get_internal_run_time): New function.
18206
18207 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
18208
18209 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
18210
18211 * composite.c (update_compositions): Check the validness of
18212 compositions.
18213
18214 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18215
18216 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
18217 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
18218
18219 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
18220 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
18221
18222 * macgui.h (USE_MAC_TOOLBAR): New define.
18223
18224 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
18225 Return immediately unless popup is activated.
18226
18227 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
18228 background to scroll bar gap.
18229 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
18230 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
18231 scroll bars on frame edge. Check fringe background extension.
18232 Don't clear extended fringe background area.
18233 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
18234 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
18235 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
18236 [USE_MAC_TOOLBAR]: New macros.
18237 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
18238 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
18239 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
18240 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
18241 [USE_MAC_TOOLBAR]: New functions.
18242 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
18243 manually if previous repositioning has failed.
18244 (mac_handle_keyboard_event): Use precomputed event kind.
18245 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
18246 as tool bar item click. Handle mouse movement over tool bar items.
18247
18248 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
18249 toolbar_win_gravity.
18250 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
18251 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
18252 Add externs.
18253
18254 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
18255 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
18256
18257 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
18258
18259 * image.c (search_image_cache): Remove unused variable.
18260
18261 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
18262
18263 * xfns.c, xmenu.c: Link to xaw3d if available.
18264
18265 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18266
18267 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
18268 frame_foreground and frame_background.
18269
18270 * image.c (lookup_image): Save frame foreground and background colors.
18271 (search_image_cache): Check if saved and current frame colors match.
18272
18273 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
18274
18275 * regex.c (regex_compile): Remove the `regnum' counter.
18276 Use bufp->re_nsub instead. Add support for \(?N:RE\).
18277
18278 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
18279
18280 * term.c: Include intervals.h to declare Fget_text_property.
18281
18282 2007-06-10 Jason Rumney <jasonr@gnu.org>
18283
18284 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
18285
18286 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
18287
18288 * callint.c (Fcall_interactively):
18289 * editfns.c (Fdelete_and_extract_region):
18290 * fileio.c (Fread_file_name):
18291 * fns.c (Fmapconcat):
18292 * keyboard.c (cmd_error_internal):
18293 * keymap.c (Fkey_description):
18294 * lread.c (openp):
18295 * minibuf.c (read_minibuf):
18296 * search.c (wordify):
18297 * sunfns.c (sel_read):
18298 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
18299 * xfns.c (x_default_scroll_bar_color_parameter):
18300 * xmenu.c (menu_help_callback):
18301 * xselect.c (Fx_get_atom_name):
18302 * xterm.c (x_term_init): Use empty_unibyte_string.
18303
18304 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
18305
18306 * alloc.c (init_strings): Initialize canonical empty strings.
18307 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
18308 canonical empty string when the requested size is 0.
18309
18310 * emacs.c (empty_unibyte_string): Rename from empty_string.
18311 (empty_multibyte_string): New canonical empty string.
18312 (syms_of_emacs): Don't initialize empty_string.
18313
18314 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
18315 string, if appropriate.
18316 (empty_unibyte_string, empty_multibyte_string): New externs.
18317 (empty_string): Remove extern.
18318
18319 * lread.c (syms_of_lread): Use empty_unibyte_string.
18320
18321 2007-06-07 Jason Rumney <jasonr@gnu.org>
18322
18323 * s/ms-w32.h: Don't define HAVE_TZNAME.
18324
18325 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
18326
18327 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18328
18329 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
18330
18331 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
18332 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
18333
18334 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
18335 Don't call next handler.
18336 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
18337 Remove argument. Install handler to application.
18338 (set_frame_menubar): Don't change deep_p.
18339 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
18340 FRAME_OUTER_TO_INNER_DIFF_Y.
18341 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
18342 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
18343 [HAVE_DIALOGS]: New macros.
18344 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
18345 Use them.
18346 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
18347
18348 * macselect.c [MAC_OSX] (install_service_handler): Rename from
18349 init_service_handler. All callers changed. Return OSStatus value.
18350
18351 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
18352 All callers changed so as not to call SetPortWindowPort.
18353 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
18354 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
18355 mac_draw_string_common.
18356 (mac_draw_image_string_qd): Likewise.
18357 (mac_draw_string_common): Use them. Add INLINE.
18358 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
18359 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
18360 GetGlobalMouse.
18361 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
18362 and FRAME_OUTER_TO_INNER_DIFF_Y.
18363 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
18364 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
18365 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
18366 repositioning window to mac_handle_window_event.
18367 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
18368 saving window location to mac_handle_window_event
18369 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
18370 (install_menu_target_item_handler): Remove argument in extern.
18371 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
18372 Also accept command events.
18373 (do_keystroke): New function created from XTread_socket.
18374 (init_command_handler): Remove functions.
18375 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
18376 and save window location by kEventWindowShowing and kEventWindowHiding
18377 handlers here. Don't call next handler for window state change and
18378 focus events.
18379 (mac_handle_application_event, mac_handle_keyboard_event)
18380 [TARGET_API_MAC_CARBON]: New functions.
18381 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
18382 kEventWindowShowing and kEventWindowHiding events. Move installation
18383 of mouse, font, text input and menu target item handlers to
18384 install_application_handler.
18385 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
18386 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
18387 New function.
18388 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
18389 Register it.
18390 (XTread_socket) [TARGET_API_MAC_CARBON]:
18391 Consolidate SendEventToEventTarget calls.
18392 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
18393 Move application activation handler to mac_handle_application_event.
18394 Move keyboard handler to mac_handle_keyboard_event.
18395 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
18396 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
18397 init_command_handler. Call install_application_handler.
18398
18399 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
18400 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
18401
18402 2007-06-07 Glenn Morris <rgm@gnu.org>
18403
18404 * emacs.c (main): Use `emacs-copyright' in --version output.
18405
18406 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
18407
18408 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
18409
18410 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18411
18412 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
18413
18414 * macgui.h: Replace WindowPtr with WindowRef.
18415
18416 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
18417 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
18418 Replace ControlHandle with ControlRef.
18419 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
18420
18421 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
18422 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
18423 Replace ControlHandle with ControlRef.
18424 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
18425 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
18426
18427 * macterm.h (struct scroll_bar): Rename member control_handle_low
18428 and control_handle_high to control_ref_low and control_ref_high.
18429 All uses changed.
18430 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
18431 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
18432 respectively. All uses changed.
18433 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
18434 (install_window_handler, remove_window_handler): Replace WindowPtr
18435 with WindowRef in externs.
18436
18437 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
18438
18439 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
18440
18441 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
18442
18443 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
18444
18445 * frame.c (Fmouse_position, Fmouse_pixel_position):
18446 Condition on HAVE_GPM too.
18447
18448 * term.c (term_mouse_highlight): Remove unused variables.
18449 (Fterm_open_connection): Set gpm_zerobased to 1.
18450 (term_mouse_movement, term_mouse_click, handle_one_term_event):
18451 Use zero based co-ordinates.
18452 (handle_one_term_event): Report a drag as mouse movement too.
18453
18454 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
18455
18456 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
18457
18458 * image.c (search_image_cache): New function. Require background
18459 color match if background color is unspecified in the image spec.
18460 (uncache_image, lookup_image): Use it.
18461
18462 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
18463
18464 * window.c (Fshrink_window): Reflow docstring.
18465
18466 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
18467
18468 * Version 22.1 released.
18469
18470 2007-06-01 Richard Stallman <rms@gnu.org>
18471
18472 * xfns.c (x_encode_text): Add GCPRO.
18473
18474 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18475
18476 * xfns.c (x_set_name_internal): Save encoded name before
18477 x_encode_text in case string data is relocated.
18478
18479 2007-05-31 Richard Stallman <rms@gnu.org>
18480
18481 * buffer.c (syms_of_buffer): Doc fix.
18482
18483 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
18484
18485 * sysdep.c (init_sys_modes): Add rather than replace with
18486 O_NONBLOCK.
18487
18488 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
18489 term_mouse_moveto.
18490
18491 * termhooks.h (term_mouse_moveto): New extern.
18492
18493 * term.c (mouse_face_window): Rename...
18494 (Qmouse_face_window): ...to this.
18495 (term_show_mouse_face, term_clear_mouse_face)
18496 (term_mouse_highlight): Use Qmouse_face_window.
18497 (term_mouse_moveto): New function.
18498 (term_mouse_position): Make it work.
18499 (syms_of_term): Uncomment assignment to mouse_position_hook.
18500 Staticpro Qmouse_face_window.
18501
18502 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18503
18504 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
18505 around current_column call.
18506
18507 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
18508
18509 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
18510 * xdisp.c (next_element_from_buffer):
18511 * window.c (delete_window):
18512 * term.c (term_mouse_highlight):
18513 * msdos.c (getdefdir):
18514 * macterm.c (mac_create_bitmap_from_bitmap_data)
18515 (init_font_name_table):
18516 * fns.c (Fsxhash):
18517 * data.c (Fmake_local_variable):
18518 * ccl.c (ccl_driver): Likewise.
18519
18520 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18521
18522 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
18523 Call mac_wakeup_from_rne on window size change.
18524
18525 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
18526
18527 * image.c (uncache_image): Fix typo.
18528
18529 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
18530
18531 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
18532
18533 2007-05-22 Richard Stallman <rms@gnu.org>
18534
18535 * xterm.c (x_connection_closed): Remove NO_RETURN.
18536
18537 2007-05-22 Martin Rudalics <rudalics@gmx.at>
18538
18539 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
18540
18541 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
18542
18543 * image.c (uncache_image): New function.
18544 (Fimage_refresh): New function.
18545
18546 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
18547
18548 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
18549
18550 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
18551
18552 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
18553 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
18554
18555 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
18556
18557 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
18558 conditional on [HAVE_GPM_H].
18559
18560 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
18561
18562 * syntax.c (skip_chars): Update syntax-table only after we checked that
18563 the new location is valid.
18564
18565 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18566
18567 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
18568 mac_get_window_bounds.
18569
18570 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
18571
18572 * Makefile.in (LIBGPM): Allow it to be set from configure.
18573 If set then link Emacs with it.
18574
18575 * config.in: Regenerate.
18576
18577 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
18578 New externs.
18579
18580 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
18581 Include gpm.h.
18582 (handle_one_term_event, term_gpm): New externs.
18583
18584 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
18585 and allow it to be interrupted by SIGIO.
18586
18587 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
18588 (wait_reading_process_output): Wait on gpm_fd too.
18589 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
18590 (add_gpm_wait_descriptor_called_flag): New variable.
18591 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
18592
18593 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
18594 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
18595 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
18596 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
18597 (make_lispy_event): Add case GPM_CLICK_EVENT.
18598 (read_avail_input): Handle mouse input.
18599
18600 * term.c (write_glyphs_with_face): New function.
18601 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
18602 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
18603 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
18604 (mouse_face_face_id, term_gpm, pos_x, pos_y)
18605 (last_mouse_x, last_mouse_y): New variables.
18606 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
18607 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
18608 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
18609 (Fterm_close_connection): New functions.
18610 (term_init): Initialise mouse_face_window.
18611
18612 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
18613
18614 * xdisp.c (redisplay_window): If first window line is a
18615 continuation line, recompute the new window start instead of
18616 recentering.
18617
18618 2007-05-18 Glenn Morris <rgm@gnu.org>
18619
18620 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
18621 Suggested by Alfred M. Szmidt <ams@gnu.org>.
18622
18623 2007-05-17 Glenn Morris <rgm@gnu.org>
18624
18625 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
18626
18627 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18628
18629 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
18630 dead key repeat and up events.
18631
18632 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
18633
18634 * image.c (pbm_load): Check image size for monochrome pbm.
18635
18636 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
18637
18638 * xterm.c (XTread_socket): Revert last change.
18639
18640 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
18641
18642 * image.c (pbm_load): Correctly check image size for greyscale pbm.
18643
18644 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
18645
18646 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
18647
18648 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
18649 mixup (YAILOM).
18650
18651 2007-05-07 Andreas Schwab <schwab@suse.de>
18652
18653 * keymap.c (Flookup_key): Fix typo in last change.
18654
18655 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
18656
18657 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
18658 mapping for unibyte strings.
18659
18660 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18661
18662 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
18663 (Fx_popup_dialog) [MAC_OSX]: Likewise.
18664
18665 2007-04-29 Richard Stallman <rms@gnu.org>
18666
18667 * insdel.c (replace_range): For undo, record insertion first.
18668
18669 2007-04-29 Andreas Schwab <schwab@suse.de>
18670
18671 * lisp.h (VECSIZE): Use OFFSETOF.
18672
18673 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18674
18675 * xdisp.c (try_window_reusing_current_matrix): Fix number of
18676 disabled lines.
18677
18678 2007-04-28 Richard Stallman <rms@gnu.org>
18679
18680 * lread.c (read_escape): In a string, \s is always space.
18681
18682 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
18683
18684 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
18685
18686 * gtkutil.c (xg_update_menubar, create_menus): Create empty
18687 submenu for menu bar items.
18688
18689 See ChangeLog.10 for earlier changes.
18690
18691 ;; Local Variables:
18692 ;; coding: utf-8
18693 ;; add-log-time-zone-rule: t
18694 ;; End:
18695
18696 Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
18697
18698 This file is part of GNU Emacs.
18699
18700 GNU Emacs is free software: you can redistribute it and/or modify
18701 it under the terms of the GNU General Public License as published by
18702 the Free Software Foundation, either version 3 of the License, or
18703 (at your option) any later version.
18704
18705 GNU Emacs is distributed in the hope that it will be useful,
18706 but WITHOUT ANY WARRANTY; without even the implied warranty of
18707 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18708 GNU General Public License for more details.
18709
18710 You should have received a copy of the GNU General Public License
18711 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
18712
18713 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40