remove useless if-before-free tests
[bpt/emacs.git] / src / ChangeLog
1 2008-06-02 Jim Meyering <meyering@redhat.com>
2
3 remove useless if-before-free tests
4 * src/editfns.c (Fset_time_zone_rule): Likewise.
5 * src/lread.c (nosuffix): Likewise.
6 * src/ralloc.c (get_bloc): Likewise.
7 * src/regex.c (reg_free): Likewise.
8 * src/xftfont.c (xftfont_open, xftfont_close): Likewise.
9 * src/xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
10 * src/xsmfns.c (smc_save_yourself_CB): Likewise.
11
12 2008-06-02 Kenichi Handa <handa@m17n.org>
13
14 * font.c (font_find_for_lface): Handle float font size.
15 (font_open_for_lface): Likewise.
16
17 * xfaces.c (x_supports_face_attributes_p): Check face->font before
18 comparing the properties.
19
20 2008-06-01 Jason Rumney <jasonr@gnu.org>
21
22 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
23 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
24 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
25 Don't add empty script list.
26 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
27
28 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
29
30 * Makefile.in (dot, dotdot): Remove, update users.
31 ".." has been used elsewhere in the file for a long time.
32 (LIBXT_STATIC): Remove conditional based on unused variable.
33
34 2008-06-01 Miles Bader <miles@gnu.org>
35
36 * xfaces.c (Vface_remapping_alist): New variable.
37 (syms_of_xfaces): Initialize it.
38 (enum named_merge_point_kind): New type.
39 (struct named_merge_point): Add `named_merge_point_kind' field.
40 (push_named_merge_point): Make cycle detection respect different
41 named-merge-point kinds.
42 (lface_from_face_name_no_resolve): Renamed from `lface_from_face_name'.
43 Remove face-name alias resolution.
44 (lface_from_face_name): New definition using
45 `lface_from_face_name_no_resolve'.
46 (get_lface_attributes_no_remap): Renamed from `get_lface_attributes'.
47 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
48 (get_lface_attributes): New definition that layers face-remapping on
49 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
50 (lookup_basic_face): New function.
51 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
52 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
53 `get_lface_attributes'.
54 (face_at_buffer_position): Use `lookup_basic_face' to lookup
55 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
56 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
57
58 * xdisp.c (init_iterator): Pass base_face_id through
59 `lookup_basic_face' when we actually use it as a face-id.
60 (handle_single_display_prop): Use `lookup_basic_face' to lookup
61 DEFAULT_FACE_ID.
62
63 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
64 lookup the initial face-id.
65
66 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
67
68 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
69
70 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
71 (Fremove_text_properties): Fix typos in docstrings.
72
73 2008-05-31 Kenichi Handa <handa@m17n.org>
74
75 * font.c (font_list_entities): Fix the car part of data to be
76 stored in the cache.
77
78 * ftfont.c (ftfont_font_format): Don't use strcasestr.
79
80 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
81
82 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
83 Add a `test' argument so another predicate than `equal' can be used.
84 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
85 (map_char_table): Remove unused vars `c' and `i'.
86 * lisp.h (Foptimize_char_table): Adjust declaration.
87 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
88
89 2008-05-30 Kenichi Handa <handa@m17n.org>
90
91 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
92 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
93 defined.
94
95 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
96
97 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
98 (Fmake_variable_frame_local): Disallow mixing buffer-local and
99 frame-local settings for the same variable.
100
101 2008-05-30 Kenichi Handa <handa@m17n.org>
102
103 * fontset.c (Ffont_info): Moved to font.c.
104 (syms_of_fontset): Delete defsubr of Sfont_info.
105
106 * font.c (font_style_to_value, font_score): Delete casting of the
107 args to xstcasecmp.
108 (register_font_driver): Increment num_font_drivers only when
109 registering the driver globally.
110 (Ffont_info): Moved from fontset.c. Handle a font object too.
111 (syms_of_font): Defsubr Sfont_info.
112
113 2008-05-29 Kenichi Handa <handa@m17n.org>
114
115 * coding.h (enum define_coding_utf8_arg_index): New enum.
116 (enum coding_attr_index): Change coding_attr_utf_16_bom to
117 coding_attr_utf_bom.
118 (enum utf_bom_type): Rename from utf_16_bom_type.
119 (struct utf_16_spec): Adjust for the above change.
120 (struct coding_system): Add utf_8_bom in `spec' union.
121
122 * coding.c (CODING_UTF_8_BOM): New macro.
123 (enum coding_category): Delete coding_category_utf_8, add
124 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
125 coding_category_utf_8_sig.
126 (CATEGORY_MASK_UTF_8): Delete it.
127 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
128 (CATEGORY_MASK_UTF_8_SIG): New macros.
129 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
130 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
131 CATEGORY_MASK_UTF_8_SIG.
132 (CATEGORY_MASK_UTF_8): New macro.
133 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
134 (detect_coding_utf_8): Check BOM.
135 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
136 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
137 (encode_coding_utf_16): Likewise.
138 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
139 (detect_coding, detect_coding_system): Handle utf-8-auto.
140 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
141 (syms_of_coding): Fix setting up of Vcoding_category_table.
142
143 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
144
145 * process.c (Faccept_process_output): If `millisec' is non-nil,
146 `seconds' default to 0.
147 (wait_reading_process_output): Also return non-nil if we read output
148 from a non-running process.
149
150 2008-05-29 Jason Rumney <jasonr@gnu.org>
151
152 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
153 `raster' specified.
154 (add_font_entity_to_list): Allow non-opentype truetype fonts back
155 in the uniscribe backend, but disallow any font that has no
156 unicode subrange support.
157
158 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
159
160 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
161 Fix typos in docstrings.
162
163 2008-05-29 Kenichi Handa <handa@m17n.org>
164
165 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
166 (Fx_family_fonts): Set frame correctly.
167
168 2008-05-28 Jason Rumney <jasonr@gnu.org>
169
170 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
171
172 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
173
174 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
175 calling build_annotations.
176
177 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
178
179 * coding.c (Fdecode_coding_region, Fencode_coding_region)
180 (Fencode_coding_string):
181 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
182 <latin-extra-code-table>: Fix typos in docstrings.
183 (syms_of_coding) <coding-system-alist>: Doc fix.
184 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
185
186 2008-05-28 Kenichi Handa <handa@m17n.org>
187
188 * fontset.c (Ffont_info): Don't call font_close_object.
189
190 * font.c (font_parse_family_registry): Use Ffont_put to validate
191 foundry and family.
192 (font_delete_unmatched): Don't check spacing.
193 (font_list_entities): Add spacing to the spec to list fonts.
194
195 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
196 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
197
198 * coding.c (encode_coding_raw_text): Fix previous change.
199 (encode_coding_object): When the dst_object is a buffer and is
200 different from src_object, move gap to PT.
201
202 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
203
204 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
205
206 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
207
208 * coding.c (encode_coding_raw_text): Set coding->produced_char for
209 all branches. Compute it differently.
210
211 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
212
213 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
214
215 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
216 into "else if () ... else ...".
217
218 2008-05-27 Jason Rumney <jasonr@gnu.org>
219
220 * w32font.c (w32font_open_internal): Determine if glyph indices
221 are likely to work here.
222
223 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
224
225 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
226 draw overlap glyphs with appropriate highlighting.
227
228 2008-05-27 Kenichi Handa <handa@m17n.org>
229
230 * xfont.c (xfont_open): Fix calculation of font->average_width.
231
232 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
233
234 * casefiddle.c (casify_object): Try to guess better whether the
235 argument is a byte or a char.
236
237 2008-05-26 Andreas Schwab <schwab@suse.de>
238
239 * xselect.c (x_reply_selection_request): Properly handle format == 32.
240 Always send multiples of format size.
241
242 * xterm.c (x_set_frame_alpha): Fix type mismatch.
243
244 2008-05-26 Jason Rumney <jasonr@gnu.org>
245
246 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
247 (compute_metrics): Don't set failure if we just cleared the cache.
248 (w32_weight_table): Remove unused variable.
249 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
250 backwards compatibility.
251
252 2008-05-25 Kenichi Handa <handa@m17n.org>
253
254 * w32term.c (x_draw_glyph_string):
255 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
256
257 * xfaces.c: Delete unused function prototypes.
258 (xstrlwr, font_frame): Delete them.
259 (clear_face_cache): Delete unused variable.
260
261 * xftfont.c (xftfont_open): Delete unused variable.
262 If underline_thickness is not 1, adjust underline_position.
263
264 * ftxfont.c (ftxfont_open): Delete unused variable.
265
266 * fontset.c (face_for_char): Optimize for the case of no charset
267 property.
268
269 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
270 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
271 (otf_open, font_otf_capability, generate_otf_features)
272 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
273 Comment out by surrounding "#if 0" and "#endif" for the moment.
274 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
275 (syms_of_font): Codes for accessing above commented out.
276
277 2008-05-24 Eli Zaretskii <eliz@gnu.org>
278
279 * w32proc.c: Include dispextern.h.
280
281 * w32.c: Include dispextern.h.
282
283 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
284
285 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
286 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
287 Fix typos in docstrings.
288
289 2008-05-23 Jason Rumney <jasonr@gnu.org>
290
291 * xsmfns.c: Remove includes that are already included by config.h.
292
293 2008-05-23 Kenichi Handa <handa@m17n.org>
294
295 * charset.c (Qemacs, charset_emacs): New variables.
296 (char_charset): Fix for non-Unicode characters.
297 (syms_of_charset): Define charset_emacs.
298
299 * w32term.c (x_draw_glyph_string): Be sure to update
300 s->underline_thickness and s->underline_position. Be sure to draw
301 underline within the current line area.
302
303 * xterm.c (x_draw_glyph_string): Be sure to update
304 s->underline_thickness and s->underline_position. Be sure to draw
305 underline within the current line area.
306
307 * fontset.c: Delete unused variables and add casting for char *
308 throughout the file.
309 (fontset_font): Try the fallback fonts of the current fontset
310 before consulting the default fontset.
311
312 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
313
314 * xfont.c (xfont_list_pattern): Free names returned from
315 XListFonts.
316
317 2008-05-22 Jason Rumney <jasonr@gnu.org>
318
319 * font.c: Don't include strings.h.
320
321 * dispextern.h, xfaces.c (xstrcasecmp): Renamed from xstricmp.
322
323 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
324 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
325 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
326 to call xstrcasecmp.
327
328 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
329
330 * fontset.c (fs_query_fontset): Use xstrcasecmp.
331
332 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
333
334 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
335
336 2008-05-22 Kenichi Handa <handa@m17n.org>
337
338 * puresize.h (BASE_PURESIZE): Increase to 1220000.
339
340 * font.c (font_prop_validate_style): Adjust for the format
341 change of font_style_table.
342
343 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
344 two args.
345
346 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
347 two args.
348
349 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
350
351 * minibuf.c (keys_of_minibuf): Delete.
352 * lisp.h (keys_of_minibuf): Delete.
353 * emacs.c (main): Don't call keys_of_minibuf.
354
355 2008-05-22 Kenichi Handa <handa@m17n.org>
356
357 * ftfont.c (ftfont_resolve_generic_family): Rename from
358 ftfont_list_generic_family. Return a single family for each
359 generic family.
360 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
361 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
362 Call font_add_log.
363 (ftfont_match): Call font_add_log.
364
365 * font.h (Ffont_xlfd_name): EXFUN adjusted.
366 (FONT_DEBUG): Define it.
367 (font_add_log): Extern it.
368 (font_assert): Rename from xassert.
369
370 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
371 (xfont_list_family): Call font_add_log.
372 (xfont_match): Likewise.
373 (memq_no_quit): Delete.
374
375 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
376 call of Ffont_xlfd_name.
377
378 * xfaces.c (struct table_entry, slant_table, weight_table)
379 (swidth_table): Move to font.c.
380
381 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
382 xassert are changed to font_assert. Delete many unused variables.
383 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
384 New variables.
385 (struct table_entry): Move from xfaces.c and modified.
386 (weight_table, slant_table, width_table): Move from xfaces.c and
387 contents adjusted for the change of struct table_entry.
388 (font_style_to_value, font_style_symbolic): Adjust for the
389 format change of font_style_table.
390 (font_parse_family_registry): Don't overwrite existing foundry and
391 family of font_spec.
392 (font_score): Fix calculation of diff for sizes.
393 (font_sort_entites): Call font_add_log.
394 (font_delete_unmatched): Return a newly created list.
395 (font_list_entities): Fix previous change. Call font_add_log.
396 (font_matching_entity, font_open_entity, font_close_entity):
397 Call font_add_log.
398 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
399 (Finternal_set_font_style_table): Delete.
400 (BUILD_STYLE_TABLE): New macro.
401 (build_style_table): New function.
402 (Vfont_log, font_log_env_checked): New variables.
403 (font_add_log): New function.
404 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
405 Declare Lisp variables "font-weight-table", "font-slant-table",
406 "font-width-table", and "font-log". Initialize font_style_table.
407
408 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
409
410 * xterm.c (x_set_frame_alpha): Move declarations before statements.
411
412 2008-05-21 Seiji Zenitani <zenitani@mac.com>
413 Ryo Yoshitake <ryo@shiftmode.net>
414
415 * frame.c (Qalpha): Add a new frame parameter `alpha'.
416 (Vframe_alpha_lower_limit): New variable.
417 (x_set_alpha): New function.
418
419 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
420
421 * xfns.c (x-create-frame, Qalpha):
422 Initialize the frame parameter `alpha'.
423 * xterm.c (OPAQUE, OPACITY): New.
424 (x_set_frame_alpha): New function.
425 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
426
427 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
428 * w32fns.c (w32_frame_parm_handlers): Likewise.
429
430 2008-05-20 Jason Rumney <jasonr@gnu.org>
431
432 * w32font.c (add_font_entity_to_list): Don't add non-opentype
433 truetype fonts to opentype list.
434
435 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
436
437 * fontset.c (Ffontset_info): Doc fix.
438 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
439 <ignore-relative-composition>: Fix typos in docstrings.
440
441 * font.c (syms-of-font) <font-encoding-alist>:
442 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
443 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
444 (Ffont_otf_alternates): Doc fixes.
445
446 2008-05-20 Kenichi Handa <handa@m17n.org>
447
448 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
449 font.h through out the file.
450 (FONT_DRIVERS): Renamed from FONTOBJ.
451 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
452 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
453
454 * emacs.c (main): Call syms_of_font unconditionally.
455
456 * font.h (find_font_encoding): Extern it.
457
458 * font.c (Vfont_encoding_alist, find_font_encoding): Moved from
459 fontset.c.
460 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
461 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
462 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
463 only when HAVE_WINDOW_SYSTEM is defined.
464 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
465 when HAVE_WINDOW_SYSTEM is defined.
466
467 * fontset.c (Vfont_encoding_alist, find_font_encoding): Moved to
468 font.c.
469 (syms_of_fontset): Declaration of font-encoding-alist moved to
470 font.c.
471
472 * xfaces.c: Include font.h unconditionally.
473 (merge_face_ref, merge_face_vectors)
474 (Finternal_set_lisp_face_attribute): Cancel the previous change.
475
476 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
477
478 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
479 indirect_variable.
480 * eval.c (lisp_indirect_variable): New fun.
481 (Fuser_variable_p): Use it.
482
483 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
484
485 * lisp.h (indirect_variable):
486 * data.c (indirect_variable, let_shadows_buffer_binding_p):
487 Use Lisp_Symbol pointers rather than Lisp_Object.
488 Adjust callers.
489 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
490 To this end, change calling-convention.
491
492 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
493 if some non-hidden buffers are selected by string&pred.
494
495 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
496
497 * process.c (wait_reading_process_output): Always check status
498 when in batch mode.
499
500 2008-05-19 Kenichi Handa <handa@m17n.org>
501
502 * font.c (font_list_entities): Fix handling of cache.
503 (font_matching_entity): Likewise.
504
505 * ftfont.c (cs_iso8859_1): Delete.
506 (ft_face_cache): New variable.
507 (struct ftfont_info): New member fc_charset_idx;
508 (ftfont_build_basic_charsets): Delete.
509 (fc_charset_table): New variable.
510 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
511 . FC_CHARSET_IDX) as :font-entity property in the font entity.
512 Callers changed.
513 (ftfont_lookup_cache, ftfont_get_charset): New functions.
514 (ftfont_spec_pattern): New argument fc_charset_idx.
515 Check registry more rigidly. Change callers.
516 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
517 change of :font-entity property of the font.
518
519 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
520 property of the font.
521
522 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
523
524 * coding.c (Fcoding_system_p): Rename argument to match docstring.
525 (Funencodable_char_position, Fcheck_coding_systems_region)
526 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
527 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
528 (Ffind_operation_coding_system, Fset_coding_system_priority)
529 (Fcoding_system_eol_type): Doc fixes.
530
531 2008-05-17 Glenn Morris <rgm@gnu.org>
532
533 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
534
535 2008-05-16 Eli Zaretskii <eliz@gnu.org>
536
537 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
538 and st_gid.
539
540 * frame.c (Fdelete_frame): Don't call font_update_drivers if
541 HAVE_WINDOW_SYSTEM is not defined.
542
543 * xfaces.c (merge_face_ref, merge_face_vectors)
544 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
545 HAVE_WINDOW_SYSTEM is defined.
546 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
547
548 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
549
550 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
551
552 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
553
554 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
555
556 2008-05-15 Kenichi Handa <handa@m17n.org>
557
558 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
559 preference.
560
561 2008-05-15 Glenn Morris <rgm@gnu.org>
562
563 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
564
565 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
566
567 * fns.c (init_fns): Don't initialize weak_hash_tables here.
568 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
569
570 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
571
572 2008-05-15 Kenichi Handa <handa@m17n.org>
573
574 * ftfont.c (ftfont_list): Downcase family name to check generic
575 families.
576
577 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
578 font-spec for QCfont value.
579
580 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
581 buffer. Check the return value of it.
582
583 2008-05-14 Jason Rumney <jasonr@gnu.org>
584
585 * w32term.c (w32_get_glyph_overhangs): Remove.
586 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
587
588 2008-05-14 Kenichi Handa <handa@m17n.org>
589
590 * font.c (font_prop_validate): Make nil a valid value.
591 (font_clear_cache): Check if the cached vector of entities is nil
592 or not.
593
594 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
595
596 * emacs.c (main_thread): Conditionalize on
597 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
598 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
599
600 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
601 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
602 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
603
604 2008-05-14 Kenichi Handa <handa@m17n.org>
605
606 * coding.c (detect_coding_iso_2022): Ignore a coding category that
607 has no corresponding coding system.
608
609 2008-05-14 Jason Rumney <jasonr@gnu.org>
610
611 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
612
613 * w32font.h (w32font_open_internal): Update declaration.
614
615 * w32font.c (w32font_open_internal): Change last argument from
616 w32font_info struct to font object. Fill in font object from
617 font_entity. Get Outline metrics if possible. Use them to
618 calculate underline position and thickness. Use xlfd name as name
619 property. Don't set codepage.
620 (w32font_open): Pass font_object to w32font_open_internal. Don't
621 update dpyinfo->smallest_font_height and
622 dpyinfo->smallest_char_width.
623 (w32font_draw): Use s->font.
624 (clear_cached_metrics): Don't clear non-existent blocks.
625
626 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
627 font was not found.
628 (x_draw_glyph_string): Use underline position and thickness from
629 font.
630
631 * w32uniscribe.c (uniscribe_open): Pass font_object to
632 w32font_open_internal.
633
634 2008-05-14 Kenichi Handa <handa@m17n.org>
635
636 These changes are to delete all legacy font-handling codes, and
637 make Emacs use only font-backends.
638
639 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
640 (frame.o, image.o, print.o): Depend on $(FONTSRC).
641
642 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
643
644 * charset.h (Vcharset_non_preferred_head)
645 (Vcurrent_iso639_language): Extern them.
646
647 * charset.c (Vcharset_non_preferred_head): New variable.
648 (Vcurrent_iso639_language): New variable.
649 (syms_of_charset): Declare it as a Lisp variable.
650 (char_charset): Don't check non preferred charsets. As a last
651 resort, return charset_unicode.
652 (Fset_charset_priority): Update Vcharset_non_preferred_head.
653
654 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
655 conditionals. Don't check enable_font_backend. Delete all codes
656 used only when USE_FONT_BACKEND is not defined.
657
658 * dispextern.h (struct glyph_string): Change type of `font' to
659 `struct font *'.
660 (struct glyph_string): New member underline_position and
661 underline_thickness.
662 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
663 (struct face): Change type of `font' to `struct font *'. Remove
664 members `font_name', `font_info_id'.
665 (per_char_metric, encode_char): Delete externs.
666 (calc_pixel_width_or_height): Adjust the prototype.
667
668 * emacs.c (enable_font_backend): Delete extern.
669 (main): Don't set enable_font_backend. Don't check the command
670 line argument "-disable-font-backend".
671
672 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
673 (enum font_property_index): New members FONT_DPI_INDEX,
674 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
675 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
676 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
677 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
678 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
679 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
680 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
681 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
682 (struct font_spec, struct font_entity): New structs.
683 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
684 (struct font): Many members from old "struct font_info" moved to
685 here. Members font and entity deleted.
686 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
687 the new font-related objects.
688 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
689 (CHECK_FONT_GET_OBJECT): Likewise.
690 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
691 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
692 (struct font_driver): New members case_sensitive anc check. Type
693 of the member list and open changed.
694 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
695 (font_symbolic_width, font_find_object, font_get_spec)
696 (font_set_lface_from_name): Delete extern.
697 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
698
699 * font.c: Include <strings.h>.
700 (enable_font_backend): Delete it.
701 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
702 (CHECK_VALIDATE_FONT_SPEC): Delete it.
703 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
704 (null_string): Delete it.
705 (null_vector): Make it static.
706 (font_family_alist): Delete it.
707 (Qnormal): Extern it.
708 (QCextra, QClanguage): Delete it.
709 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
710 (font_make_spec, font_make_entity, font_make_object)
711 (font_intern_prop): Renamed from intern_downcase. Don't downcase
712 the string. Callers changed.
713 (font_pixel_size): Adjusted for the format change of font-related
714 objects.
715 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
716 (font_style_to_value, font_style_symbolic): New function.
717 (build_font_family_alist): Delete it.
718 (font_registry_charsets): Use Fassoc_string instead of
719 assq_no_quit.
720 (font_prop_validate_symbol): Don't return null_string.
721 (font_prop_validate_style): Adjusted for the change of
722 style-related values in a font vector.
723 (font_property_table): Delete entries for QClanguage and
724 QCantialias, add entries for QCavgwidth.
725 (get_font_prop_index): Delete the 2nd argument FROM.
726 (font_prop_validate): Arguments changed.
727 (font_put_extra): Adjusted for the change of font-related objects.
728 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
729 (font_parse_fcname, font_unparse_fcname)
730 (font_prepare_composition): Likewise.
731 (font_parse_family_registry): Renamed from font_merge_old_spec.
732 (otf_open): Delete the 1st arg entity.
733 (font_otf_capability): Adjusted for the above change.
734 (font_score): New arg alternate_families. Adjusted for the change
735 of font-related objects.
736 (font_sort_entites): New arg best_only.
737 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
738 Delete them.
739 (font_match_p): Check alternate families.
740 (font_find_object): Delete it.
741 (font_check_object): New function.
742 (font_clear_cache): Adjusted for the change of font-related objects.
743 (font_delete_unmatched): New arg.
744 (font_list_entities): Call font_driver->list with a spec that
745 doesn't specify style-related properties.
746 (font_matching_entity): Arguments changed. Caller changed.
747 (font_open_entity): Adjusted for the change of font-related objects.
748 (font_close_object, font_has_char, font_encode_char)
749 (font_get_name, font_get_spec): Likewise.
750 (font_spec_from_name, font_clear_prop, font_update_lface):
751 New functions.
752 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
753 (font_prepare_for_face, font_done_for_face, font_open_by_name)
754 (font_at): Adjusted for the change of font-related objects.
755 (font_range): New function.
756 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
757 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
758 (Fcopy_font_spec, Fmerge_font_spec): New function.
759 (Ffont_family_list): Renamed from list-families.
760 (Finternal_set_font_style_table): Arguments changed.
761 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
762 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
763 change of font-related objects.
764 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
765
766 * fontset.h (struct font_info): Delete it. Most memnbers go to
767 struct font.
768 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
769 (enum FONT_SPEC_INDEX): Delete it.
770 (font_info, list_fonts_func, load_font_func, query_font_func)
771 (set_frame_fontset_func, find_ccl_program_func)
772 (get_font_repertory_func, new_fontset_from_font_name): Delete
773 externs.
774 (fontset_from_font_name): Extern it.
775 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
776 (FONT_INFO_FROM_FACE): Deleted.
777 (face_for_font): Adjust prototype.
778
779 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
780 conditionals. Don't check enable_font_backend. Delete all codes
781 used only when USE_FONT_BACKEND is not defined.
782 (get_font_info_func, list_font_func, load_font_func)
783 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
784 (get_font_repertory_func): Delete them.
785 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
786 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
787 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
788 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
789 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
790 (fontset_compare_rfontdef): New function.
791 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
792 ront-defs by qsort. Adjusted for the change of font-group vector.
793 (load_font_get_repertory): Deleted.
794 (fontset_find_font): Use new macros to ref/set elements of
795 font-def and rfont-def.
796 (fontset_font): Fix the timing of remembering that no font for C.
797 (free_face_fontset): Do nothing if the face has no fontset.
798 (face_suitable_for_char_p): Use new macros to ref/set elements of
799 rfont-def.
800 (face_for_char): Likewise. Call face_for_char with font_object.
801 (fs_load_font): Delete. Delete #pragma surrounding it.
802 (fs_query_fontset): Use strcasecmp instead of strcmp.
803 (generate_ascii_font_name): Adjusted for the format change of
804 font-spec.
805 (Fset_fontset_font): Likewise. Use new macros to set elements of
806 font-def.
807 (Fnew_fontset): Use font_unparse_xlfd to generate
808 FONTSET_ASCII (fontset).
809 (new_fontset_from_font_name): Deleted.
810 (fontset_from_font): Renamed from new_fontset_from_font. Check if
811 a fontset is already created for the font. FIx updating of
812 Vfontset_alias_alist.
813 (fontset_ascii_font): Deleted.
814 (Ffont_info): Adjusted for the format change of font-spec.
815 (Finternal_char_font): Likewise.
816 (Ffontset_info): Likewise.
817 (syms_of_fontset): Don't check load_font_func.
818
819 * fns.c (internal_equal): Handle PREV_FONT.
820
821 * frame.h: Delete USE_FONT_BACKEND conditional.
822
823 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
824 conditionals. Don't check enable_font_backend. Delete all codes
825 used only when USE_FONT_BACKEND is not defined.
826 (x_set_font): Call x_new_font, not x_new_fontset2.
827 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
828 already set for the frame.
829
830 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
831 a font-entity by font_make_entity. Use font_intern_prop instead
832 of intern_downcase. Use FONT_SET_STYLE to set a style-related
833 font property. If a font is scalable, set avgwidth property to 0.
834 Set font-entity property by font_put_extra.
835 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
836 (ffont_driver): Adjusted for the change of struct font_driver.
837 (ftfont_spec_pattern): New function.
838 (ftfont_list): Return a list, not vector.
839 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
840 (ftfont_list_family): Don't downcase names.
841 (ftfont_free_entity): Deleted.
842 (ftfont_open): Return a font-ojbect. Adjusted for the change of
843 struct font. Get underline_thickness and underline_position from
844 font property. Don't update dpyinfo->smallest_font_height and
845 dpyinfo->smallest_char_width.
846 (ftfont_close): Don't free `struct font'.
847 (ftfont_has_char): Adjusted for the format change of font-entity.
848 (ftfont_encode_char, ftfont_text_extents): Likewise.
849
850 * ftxfont.c (ftxfont_list): Return a list, not vector.
851 (ftxfont_open): Return a font-ojbect. Adjusted for the change of
852 struct font. Get underline_thickness and underline_position from
853 font property. Don't update dpyinfo->smallest_font_height and
854 dpyinfo->smallest_char_width.
855 (ftxfont_close): Don't decrese FRAME_X_DISPLAY_INFO (f)->n_fonts.
856 (ftxfont_draw): Adjusted for the change of struct font.
857
858 * image.c (image_ascent): Don't include "charset.h". Include
859 "character.h" and "font.h".
860
861 * lisp.h (enum pvec_type): New member PREV_FONT.
862 (Fassoc_string): EXFUN it.
863
864 * print.c: Include font.h.
865 (print_object): Handle font-related objects.
866
867 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
868 conditionals. Don't check enable_font_backend. Delete all codes
869 used only when USE_FONT_BACKEND is not defined.
870 (handle_auto_composed_prop): Do nothing if it->f is not on a
871 window system. Check how many following characters can be
872 displayed by the same font.
873 (calc_pixel_width_or_height): Type of the 4th arg is changed to
874 'struct font *'.
875 (get_char_face_and_encoding): Assign the whole encoding task to
876 the `encode-char' method of a font driver.
877 (fill_composite_glyph_string): Adjusted for the change of `struct
878 face' and `struct glyph_string'.
879 (fill_glyph_string): Likewise.
880 (get_per_char_metric): Arguments changed.
881 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
882 and `struct glyph_string'.
883 (produce_stretch_glyph, calc_line_height_property)
884 (x_produce_glyphs): Likewise.
885
886 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
887 conditionals. Don't check enable_font_backend. Delete all codes
888 used only when USE_FONT_BACKEND is not defined. Use
889 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
890 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
891 (Qp): Extern them.
892 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
893 Deleted.
894 (struct font_name): Deleted.
895 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
896 (compare_fonts_by_sort_order): New function.
897 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
898 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
899 Deleted.
900 (Fx_family_fonts): Use font_list_entities, and sort fonts by
901 compare_fonts_by_sort_order.
902 (Fx_font_family_list): Call Ffont_family_list.
903 (face_numeric_value, face_numeric_weight, face_numeric_slant)
904 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
905 (face_symbolic_slant, face_symbolic_swidth)
906 (split_font_name_into_vector, build_font_name_from_vector)
907 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
908 (font_rescale_ratio, split_font_name, build_font_name)
909 (free_font_names, sort_fonts, x_face_list_fonts)
910 (face_font_available_p, sorted_font_list, cmp_font_names)
911 (font_list_1, concat_font_list, font_list, remove_duplicates):
912 Deleted.
913 (Fx_list_fonts): Use Ffont_list.
914 (LFACE_AVGWIDTH): Deleted.
915 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
916 by FONTP.
917 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
918 (set_lface_from_font_name): Delete it.
919 (set_lface_from_font): Renamed from
920 set_lface_from_font_and_fontset. Caller changed. Don't set
921 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
922 for face.
923 (merge_face_vectors): Copy font-spec if necessary.
924 Clear properties of the font-spec if necessary.
925 (merge_face_ref): Clear properties of the font-spec if necessary.
926 (Finternal_set_lisp_face_attribute): Likewise.
927 (set_font_frame_param): Use font_load_for_lface to load a
928 font-object, and call Fmodify_frame_parameters with it.
929 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
930 font name by Ffont_xlfd_name.
931 (Finternal_lisp_face_attribute_values): Don't check QCweight,
932 QCslant, and QCwidth.
933 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
934 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
935 Compare fonts by EQ.
936 (lookup_non_ascii_face): Deleted.
937 (face_for_font): The 2nd argument changed.
938 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
939 Check atomic font properties by case insensitive.
940 (realize_non_ascii_face): Set face->overstrike correctly.
941 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
942 (dump_realized_face): Get font name from
943 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
944
945 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
946 conditionals. Don't check enable_font_backend. Delete all codes
947 used only when USE_FONT_BACKEND is not defined.
948 (xic_create_xfontset): Original code deleted and renamed from
949 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
950 (x_make_gc): Don't set GCFont in GCs.
951 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
952 opened by "fixed".
953 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
954 find_ccl_program_func, query_font_func, set_frame_fontset_func,
955 get_font_repertory_func.
956
957 * xfont.c: Include <stdlib.h> and "ccl.h".
958 (struct xfont_info): New structure.
959 (xfont_query_font): Deleted.
960 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
961 moved from xterm.c.
962 (xfont_driver): Adjusted for the change of struct font_driver.
963 (compare_font_names): New function.
964 (xfont_list_pattern): Sort font names case insensitively. Make
965 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
966 (xfont_list): Return a list, not vector.
967 (xfont_match): If the font doesn't have QCname property, generate
968 a name from the other font properties.
969 (xfont_open): Return a font-ojbect. Adjusted for the change of
970 struct font. Get underline_thickness and underline_position from
971 font property. Don't update dpyinfo->smallest_font_height and
972 dpyinfo->smallest_char_width.
973 (xfont_close): Don't free struct font.
974 (xfont_prepare_face): Adjusted for the change of struct font.
975 (xfont_done_face): Deleted.
976 (xfont_has_char): Adjusted for the change of struct font.
977 (xfont_encode_char, xfont_draw): Likewise.
978 (xfont_check): New function.
979
980 * xftfont.c (xftfont_list): Adjusted for the change of `list'
981 callback function.
982 (xftfont_match): Adjusted for the fontmat change of font-entity.
983 (xftfont_open): Adjusted for the format change of font-entity and
984 font-object. Adjusted for the change of struct font. Return a
985 font-object. Don't update dpyinfo->smallest_font_height and
986 dpyinfo->smallest_char_width.
987 (xftfont_close): Block input while calling XftFontClose.
988 (xftfont_prepare_face): Don't block input while calling
989 xftfont_get_colors. Adjusted for the change of struct font.
990 (xftfont_shape): Return value of error case fixed.
991
992 * xrdb.c (x_load_resources): Don't setup a fontset resource.
993
994 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
995 conditionals.
996 (FONT_WIDTH): Return (f)->max_width.
997 (struct x_display_info): Delete member `font'.
998 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
999 (x_find_ccl_program, x_get_font_repertory): Delete externs.
1000 (struct x_output): Change type of `font' to `struct font *'.
1001
1002 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
1003 conditionals. Don't check enable_font_backend. Delete all codes
1004 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
1005 (x_per_char_metric, x_encode_char): Deleted.
1006 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
1007 (x_compute_glyph_string_overhangs): Adjusted for the change of
1008 `struct face'.
1009 (x_draw_glyph_string_foreground)
1010 (x_draw_composite_glyph_string_foreground): Likewise.
1011 (x_draw_glyph_string): Likewise. Use font->underline_position and
1012 font->underline_thickness.
1013 (x_new_font): Renamed from x_new_fontset2.
1014 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
1015 (x_check_font): Call `check' method of a font driver.
1016 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
1017 (x_query_font, x_get_font_repertory): Deleted.
1018 (x_find_ccl_program): Renamed and moved to xfont.c.
1019 (x_redisplay_interface): Adjusted for the change of `struct
1020 redisplay_interface'.
1021
1022 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
1023 conditionals. Don't check enable_font_backend. Delete all codes
1024 used only when USE_FONT_BACKEND is not defined. Surround non-used
1025 code by "#ifdef OLD_FONT" and "endif".
1026 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
1027
1028 * w32font.h (struct w32font_info): New member.
1029 (FONT_COMPAT): New macro.
1030 (w32font_open_internal): Prototype adjusted.
1031
1032 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
1033 OLD_FONT" and "endif".
1034
1035 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
1036 conditionals. Don't check enable_font_backend. Delete all codes
1037 used only when USE_FONT_BACKEND is not defined.
1038 (w32font_open): Return a font-object. Make a font-object by
1039 font_make_object. Adjusted for the change of struct w32font_info.
1040 (w32font_close): Don't free struct font. Adjusted for the change
1041 of struct w32font_info.
1042 (w32font_encode_char, w32font_text_extents, w32font_draw):
1043 Adjusted for the change of struct w32font_info.
1044 (w32font_draw): Likewise.
1045 (w32font_list_internal): Return a list, not vector.
1046 (w32font_open_internal): Change the 4th arg to font-object.
1047 Adjusted for the change of struct w32font_info and font-object format.
1048 (add_font_name_to_list): Don't downcase names.
1049 (w32_enumfont_pattern_entity): Make a font-entity by
1050 font_make_entity. Adjusted for the format change of font-entity.
1051 Use FONT_SET_STYLE to set a style-related font property. If a
1052 font is scalable, set avgwidth property to 0. Set font-entity
1053 property by font_put_extra.
1054 (font_matches_spec): Adjusted for the format change of font-entity.
1055 (w32_weight_table, w32_decode_weight): New variables.
1056 (w32_encode_weight): New function.
1057 (fill_in_logfont): Adjusted for the format change of font-spec.
1058 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
1059 weight value.
1060 (w32font_driver): Adjusted for the change of struct font_driver.
1061
1062 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
1063 conditionals. Don't check enable_font_backend. Surround non-used
1064 code by "#ifdef OLD_FONT" and "endif".
1065 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
1066 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
1067
1068 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
1069 conditionals. Don't check enable_font_backend. Delete all codes
1070 used only when USE_FONT_BACKEND is not defined. Surround non-used
1071 code by "#ifdef OLD_FONT" and "endif".
1072
1073 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
1074 (uniscribe_open): Return value changed to font-object.
1075 Adjusted for the format change of font-object.
1076 (uniscribe_otf_capability): Adjusted for the change of struct font.
1077 (add_opentype_font_name_to_list): Don't downcase names.
1078 (uniscribe_font_driver): Adjusted for the change of struct
1079 font_driver.
1080
1081 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
1082
1083 * dispnew.c (update_frame_1): Check if tty output is still valid
1084 before flushing it.
1085
1086 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
1087
1088 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
1089 to Gtk+ menus.
1090
1091 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
1092
1093 * dired.c (file_name_completion): Tweak the code so as to always do it
1094 in a single pass. Tighten the scope of some variables.
1095
1096 * dired.c (Qdefault_directory): New var.
1097 (file_name_completion): Use it instead of Fexpand_file_name.
1098 (syms_of_dired): Initialize it.
1099
1100 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
1101
1102 * fileio.c (double_dollars): Remove dead code.
1103
1104 2008-05-10 Eli Zaretskii <eliz@gnu.org>
1105
1106 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
1107 Mention w32-get-true-file-attributes in doc string.
1108
1109 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
1110
1111 2008-05-09 Glenn Morris <rgm@gnu.org>
1112
1113 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
1114 2008-04-23.
1115
1116 2008-05-09 Eli Zaretskii <eliz@gnu.org>
1117
1118 Support for reporting owner and group of each file on MS-Windows:
1119 * dired.c (stat_uname, stat_gname): New functions, with special
1120 implementation for w32.
1121 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
1122
1123 * w32.c: Rename the_passwd_* to dflt_passwd_*.
1124 (dflt_group_name): New static variable.
1125 (dflt_group): Rename from the_group.
1126 (init_user_info): Init dflt_group fields. Get user's group name
1127 from LookupAccountSid.
1128 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
1129 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
1130 New initialization states.
1131 (globals_of_w32): Initialize them to zero. Initialize the default
1132 group name to "None".
1133 (GetFileSecurity_Name): New global var, the name of the function
1134 to call for GetFileSecurity.
1135 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
1136 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
1137 (get_file_security, get_security_descriptor_owner)
1138 (get_security_descriptor_group, is_valid_sid)
1139 (get_file_security_desc, get_rid, get_name_and_id)
1140 (get_file_owner_and_group): New functions.
1141 (stat): Use get_file_security_desc and get_file_owner_and_group to
1142 report the owner and primary group of each file. Don't ignore the
1143 high 32 bits of file's size, now that st_size is 64-bit wide.
1144 Fix test when to get true file attributes.
1145 (init_user_info): Use get_rid instead of equivalent inline code.
1146 (fstat): Don't ignore the high 32 bits of file's size.
1147
1148 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
1149
1150 * image.c (png_load): Use correct bit-depth for setting background
1151 color.
1152
1153 2008-05-08 Eli Zaretskii <eliz@gnu.org>
1154
1155 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
1156 epa-hook.elc.
1157
1158 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
1159
1160 * font.c (Ffont_match_p): Don't use `iff' in docstring.
1161
1162 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
1163
1164 * macfns.c (Fx_create_frame): Make a copy of frame parameters
1165 because the original parameters are in pure storage now.
1166 (mac_window): Remove unused params. Update callers.
1167
1168 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
1169
1170 * lread.c (substitute_object_recurse): Use lower-level primitives.
1171 Don't signal errors when traversing sub-char-tables.
1172 Don't loop over all the possible characters when traversing char-tables.
1173
1174 * print.c (print_preprocess): Add sub-char-tables to the print-table,
1175 just like we do in print.c.
1176
1177 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
1178
1179 * minibuf.c (Ftry_completion): Remove code left over from when we used
1180 scmp instead of Fcompare_strings.
1181
1182 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
1183
1184 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
1185
1186 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1187
1188 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
1189 Create bitmap context in native byte order.
1190
1191 * macterm.c (XDrawLine)
1192 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
1193 context in native byte order.
1194
1195 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1196
1197 * config.in: Regenerate.
1198
1199 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
1200 New definitions for Image I/O support.
1201 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
1202 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
1203 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
1204 (mac_data_provider_release_data, image_load_image_io)
1205 [USE_MAC_IMAGE_IO]: New functions.
1206 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
1207 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
1208 (init_image_func_pointer) [MAC_OSX]: Remove function.
1209 (image_load_quartz2d) [MAC_OSX]: Check availability of
1210 CGImageCreateWithPNGDataProvider at compile time.
1211 Use lowercase `false' for boolean constant.
1212 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
1213 Use image_load_image_io.
1214 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
1215 Don't check MyCGImageCreateWithPNGDataProvider.
1216 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
1217 Don't call init_image_func_pointer.
1218
1219 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
1220
1221 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
1222 Make variable non-static.
1223 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
1224 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
1225
1226 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
1227 (RED_FROM_ULONG): Mask off higher bits.
1228 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
1229
1230 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
1231 Include AvailabilityMacros.h.
1232 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
1233 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
1234
1235 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
1236
1237 * chartab.c (Fset_char_table_range): If range is t, really set all
1238 chars to that value.
1239
1240 2008-05-03 Eli Zaretskii <eliz@gnu.org>
1241
1242 * dired.c (Ffile_attributes): Don't allow the device number become
1243 negative.
1244
1245 2008-05-02 Daiki Ueno <ueno@unixuser.org>
1246
1247 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
1248
1249 2008-05-02 Juri Linkov <juri@jurta.org>
1250
1251 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
1252 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
1253 DEFAULT argument as a list of default values in docstrings.
1254
1255 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
1256
1257 * puresize.h (BASE_PURESIZE): Increase to 1210000.
1258
1259 2008-05-01 Martin Rudalics <rudalics@gmx.at>
1260
1261 * dispnew.c (change_frame_size_1): Preserve small windows when
1262 shrinking frames by calling set_window_height|width with third
1263 arg 2.
1264
1265 * window.h (struct window): Replace field too_small_ok by field
1266 resize_proportionally.
1267
1268 * window.c (make_window): Initialize resize_proportionally.
1269 (enlarge_window): Temporarily set resize_proportionally to make
1270 sure that shrink_windows does scale the window proportionally.
1271 (shrink_windows): When window has resize_proportionally set try
1272 to shrink it proportionally by stealing from other windows.
1273 (struct saved_window, Fset_window_configuration)
1274 (compare_window_configurations): Handle resize_proportionally.
1275 (WINDOW_TOTAL_SIZE): New macro.
1276 (window_min_size, shrink_windows, size_window): Use it.
1277 (check_min_window_sizes): Remove. Invalid values of
1278 window-min-height|width are handled by window_min_size_2 now.
1279 (size_window, Fsplit_window, enlarge_window)
1280 (adjust_window_trailing_edge, grow_mini_window): Don't call
1281 check_min_window_sizes.
1282 (window_min_size_2, window_min_size_1, window_min_size):
1283 New argument safe_p for retrieving "safe" minimum sizes.
1284 (Fdisplay_buffer, Fsplit_window, enlarge_window)
1285 (adjust_window_trailing_edge, grow_mini_window):
1286 Adjust arguments of window_min_size... functions.
1287 (shrink_windows): Argument min_size removed. New argument
1288 safe_p allows shrinking windows to their safe minimum sizes.
1289 Calculate minimum size and decide whether a window shall be
1290 deleted for each window individually.
1291 (size_window): When nodelete_p equals 2, tell shrink_windows to
1292 delete windows only if their new minimum size is no more safe.
1293 (shrink_window_lowest_first): Call window_min_size_1 to make
1294 sure to preserve modeline of bottom-most window when resizing
1295 the minibuffer.
1296 (Fset_window_configuration, Fcurrent_window_configuration)
1297 (compare_window_configurations): Do not handle
1298 window-min-height|width any more.
1299 (syms_of_window): Clarify window-min-height|width doc-strings.
1300
1301 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
1302
1303 * dired.c (file_name_completion): Fix up the encoding/decoding issue
1304 some more. Copy some of the code from Ftry_completions.
1305 Remove special case code that dates back to initial revision when the
1306 slash was only added when necessary and that can't trigger nowadays.
1307
1308 2008-04-27 Kenichi Handa <handa@m17n.org>
1309
1310 * font.c (font_prop_validate): Signal `error' instead of `font'.
1311
1312 2008-04-29 Jason Rumney <jasonr@gnu.org>
1313
1314 * w32fns.c (Fw32_battery_status): New defun.
1315 (syms_of_w32fns): Defsubr it.
1316
1317 2008-04-28 Andreas Schwab <schwab@suse.de>
1318
1319 * dired.c (file_name_completion): Fix another mixing of encoded
1320 and decoded names.
1321
1322 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
1323
1324 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
1325
1326 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
1327
1328 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
1329
1330 2008-04-27 Andreas Schwab <schwab@suse.de>
1331
1332 * dired.c (file_name_completion): Fix inappropriate mixing of
1333 encoded and decoded names.
1334
1335 * xterm.c (XTread_socket): Fix use of uninitialized variable.
1336
1337 * puresize.h (BASE_PURESIZE): Increase to 1200000.
1338
1339 2008-04-26 Eli Zaretskii <eliz@gnu.org>
1340
1341 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
1342 2008-03-31, it's not needed anymore with `struct stat' definition
1343 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
1344 for the same reasons.
1345
1346 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
1347
1348 * m/sparc.h: Additional redefinitions for GNU/Linux.
1349
1350 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1351
1352 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
1353 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
1354 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
1355 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
1356 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
1357 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
1358 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
1359 Likewise.
1360
1361 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
1362 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
1363 (mac_ax_number_of_characters): Add externs.
1364 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
1365 [USE_MAC_TSM]: Likewise.
1366 (mac_handle_text_input_event) [MAC_OSX]:
1367 Handle kEventTextInputOffsetToPos for no active input area case.
1368 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
1369 (mac_handle_document_access_event)
1370 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
1371 (install_application_handler) [MAC_OSX]: Register handlers for
1372 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
1373 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
1374 Register mac_handle_document_access_event.
1375
1376 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
1377 Make functions non-static.
1378
1379 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1380
1381 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
1382 (read_file_name_completion_ignore_case, insert_default_directory)
1383 (Qdefault_directory): Move to minibuffer.el.
1384 (Fread_file_name): Call the new `read-file-name' instead.
1385
1386 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1387
1388 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
1389 Make function non-static.
1390 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
1391 Remove function.
1392 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
1393 Move to mactoolbox.c.
1394 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
1395
1396 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
1397 (mac_rect_make): New macro.
1398
1399 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
1400 instead of float.
1401 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
1402 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
1403 (XSetBackground) [USE_CG_DRAWING]: Likewise.
1404 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
1405 CGRectMake.
1406 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
1407 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
1408 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
1409 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
1410 instead of WindowRef in argument type.
1411 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
1412 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
1413 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
1414 instead of DISPLAY. All uses changed.
1415 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
1416 (x_calc_absolute_position): Simplify so as not to use
1417 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
1418
1419 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
1420 instead of WindowRef in argument type.
1421 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
1422 [TARGET_API_MAC_CARBON]: Remove externs.
1423 (create_apple_event, mac_event_parameters_to_lisp)
1424 [TARGET_API_MAC_CARBON]: Add externs.
1425
1426 * mactoolbox.c (Vmac_ts_script_language_on_focus)
1427 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
1428 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
1429 is clicked.
1430 (x_activate_menubar): Remove extern for saved_menu_event_location.
1431 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
1432 Move from mac.c.
1433
1434 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1435
1436 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
1437 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
1438
1439 2008-04-23 Jason Rumney <jasonr@gnu.org>
1440
1441 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
1442 attributes only for local files.
1443
1444 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
1445 default to Qlocal.
1446
1447 2008-04-22 Juri Linkov <juri@jurta.org>
1448
1449 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
1450 read-buffer-to-switch instead of using the letter "B".
1451
1452 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1453
1454 * fileio.c (Qdefault_directory): New variable.
1455 (Fread_file_name): Use it to pass `dir' to the completion functions.
1456
1457 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
1458
1459 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
1460
1461 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1462
1463 * keyboard.c (Vpre_help_message): Remove.
1464 (show_help_echo): Remove default C code.
1465
1466 * dired.c (directory_files_internal, file_name_completion):
1467 Only call ENCODE_FILE if the string is indeed decoded.
1468
1469 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1470
1471 * Makefile.in (TOOLKIT_DEFINES): Remove.
1472 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
1473
1474 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1475
1476 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
1477 (mactoolbox.o): New target.
1478
1479 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
1480 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
1481
1482 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
1483 Use mac_set_frame_window_background instead of XSetWindowBackground.
1484 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
1485 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
1486 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
1487 instead of SetWindowTitleWithCFString.
1488 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
1489 Move function to mactoolbox.c.
1490 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
1491 Use mac_set_window_modified instead of SetWindowModified.
1492 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
1493 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
1494 (Fx_focus_frame): Use mac_front_non_floating_window instead of
1495 FrontNonFloatingWindow. Use mac_activate_window instead of
1496 ActivateWindow. Use mac_active_non_floating_window instead of
1497 ActiveNonFloatingWindow.
1498 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
1499 Use mac_show_hourglass and mac_hide_hourglass.
1500 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
1501 instead of GetGlobalMouse.
1502 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
1503 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
1504 Use mac_bring_window_to_front instead of BringToFront.
1505 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
1506 mactoolbox.c.
1507 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
1508 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
1509 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
1510 mactoolbox.c.
1511
1512 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
1513 (XtPointer): Move typedef from macmenu.c.
1514 (enum button_type): Move enum from macmenu.c.
1515 (widget_value): Move typedef from macmenu.c.
1516 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
1517 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
1518 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
1519 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
1520 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
1521 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
1522 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
1523 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
1524 (Selection): Move typedef from macselect.c.
1525 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
1526 macterm.c.
1527 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
1528 (mac_is_window_collapsed, mac_bring_window_to_front)
1529 (mac_send_window_behind, mac_hide_window, mac_show_window)
1530 (mac_collapse_window, mac_front_non_floating_window)
1531 (mac_active_non_floating_window, mac_activate_window)
1532 (mac_move_window_structure, mac_move_window, mac_size_window)
1533 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
1534
1535 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
1536 (enum mac_menu_kind): Move enum to mactoolbox.c.
1537 (min_menu_id): Move variable to mactoolbox.c.
1538 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
1539 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
1540 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
1541 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
1542 [TARGET_API_MAC_CARBON]: Likewise.
1543 (XtPointer): Move typedef to macgui.h.
1544 (enum button_type): Move enum to macgui.h.
1545 (widget_value): Move typedef to macgui.h.
1546 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
1547 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
1548 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
1549 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
1550 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
1551 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
1552 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
1553 (popup_activated_flag): Make variable non-static.
1554 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
1555 (add_menu_item, fill_menu, dispose_menus):
1556 Move functions to mactoolbox.c.
1557 (restore_show_help_function, menu_target_item_handler)
1558 (install_menu_target_item_handler, mac_handle_dialog_event)
1559 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
1560 [TARGET_API_MAC_CARBON]: Likewise.
1561 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
1562 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
1563 (find_and_call_menu_selection, name_is_separator): Make function
1564 non-static.
1565 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
1566 to mactoolbox.c.
1567 (set_frame_menubar): Don't call install_menu_quit_handler.
1568 (menu_item_selection): New variable.
1569 (mac_menu_show): Use create_and_show_popup_menu.
1570 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
1571 selection but set variable menu_item_selection. All uses changed.
1572 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
1573 Call install_menu_quit_handler. Move to mactoolbox.c.
1574
1575 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
1576 (Selection): Move typedef to macgui.h.
1577 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
1578 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
1579 Make variables non-static.
1580 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
1581 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
1582 Make functions non-static.
1583 (Vmac_service_selection) [MAC_OSX]: Likewise.
1584 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
1585 (mac_valid_selection_target_p, mac_clear_selection)
1586 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
1587 (mac_put_selection_value, mac_selection_has_target_p)
1588 (mac_get_selection_value, mac_get_selection_target_list)
1589 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
1590 Move functions to mactoolbox.c.
1591 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
1592 Likewise.
1593 (copy_scrap_flavor_data, mac_handle_service_event)
1594 (install_service_handler) [MAC_OSX]: Likewise.
1595 (syms_of_macselect) <Vmac_dnd_known_types>:
1596 Use mac_dnd_default_known_types.
1597
1598 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
1599 Move to mactoolbox.c.
1600 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
1601 (Fx_selection_owner_p): Add EXFUN.
1602 (install_window_handler, remove_window_handler, XSetWindowBackground):
1603 Remove externs.
1604 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
1605 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
1606 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
1607 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
1608 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
1609 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
1610 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
1611 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
1612 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
1613 (create_and_show_popup_menu, mac_get_selection_from_symbol)
1614 (mac_valid_selection_target_p, mac_clear_selection)
1615 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
1616 (mac_put_selection_value, mac_selection_has_target_p)
1617 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
1618 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
1619 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
1620 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
1621 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
1622 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
1623 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
1624 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
1625 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
1626
1627 * mactoolbox.c: New file.
1628
1629 2008-04-18 Jason Rumney <jasonr@gnu.org>
1630
1631 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
1632
1633 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1634
1635 * character.c (Fmultibyte_char_to_unibyte):
1636 Return latin1 chars unchanged.
1637
1638 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
1639 relocated if it points to `name'.
1640
1641 2008-04-17 Kenichi Handa <handa@m17n.org>
1642
1643 * data.c (Faset): Allow setting a multibyte character in an
1644 ASCII-only unibyte string.
1645
1646 * lisp.h (STRING_SET_MULTIBYTE): New macro.
1647
1648 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1649
1650 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
1651 done in config.h.
1652
1653 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
1654
1655 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
1656 (Fchar_direction): Add usage in the docstring.
1657
1658 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
1659
1660 * keyboard.c (read_key_sequence): Remove always-true checks.
1661
1662 2008-04-14 Jason Rumney <jasonr@gnu.org>
1663
1664 * w32font.c (w32font_open_internal): Set max_bounds.descent in
1665 compatibility struct, for better underline positioning.
1666
1667 2008-04-13 David Hansen <david.hansen@gmx.net>
1668
1669 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
1670 string.
1671
1672 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1673
1674 * m/hp800.h (XUINT, XSET): Remove.
1675
1676 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
1677
1678 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
1679 previous change.
1680
1681 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1682
1683 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
1684 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
1685
1686 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1687
1688 * keymap.h (map_keymap_canonical): Declare.
1689 * xmenu.c (single_keymap_panes): Use it.
1690
1691 2008-04-11 Glenn Morris <rgm@gnu.org>
1692
1693 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
1694 set the target's value to that of the alias.
1695
1696 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1697
1698 * term.c (set_tty_color_mode): Left over typo.
1699
1700 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
1701
1702 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
1703 only after check for file name handler functions. Signal, when
1704 native functionality is not supported.
1705 (syms_of_fileio): Declare it unconditionally.
1706
1707 2008-04-10 Jason Rumney <jasonr@gnu.org>
1708
1709 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
1710 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
1711
1712 * w32.c (logon_network_drive): Also logon to remote drives that
1713 are mapped to drive letters.
1714
1715 2008-04-10 Glenn Morris <rgm@gnu.org>
1716
1717 * xdisp.c (truncate-partial-width-windows): Doc fix.
1718
1719 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
1720
1721 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
1722 Move functions to minibuffer.el.
1723 (syms_of_fileio): Don't declare them.
1724
1725 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1726
1727 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
1728 (syms_of_minibuf): Remove its initialization.
1729
1730 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
1731
1732 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
1733
1734 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
1735
1736 2008-04-09 Jason Rumney <jasonr@gnu.org>
1737
1738 * makefile.w32-in (distclean): Delete makefile too.
1739 (maintainer-clean): New target.
1740
1741 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
1742
1743 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
1744 for new font backend and composite cases.
1745
1746 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
1747
1748 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
1749 Most of the code moved to run_timers.
1750 (do_pending_atimers): Call run_timers.
1751 (run_timers): New function.
1752
1753 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
1754 run atimers.
1755
1756 * process.c (wait_reading_process_output): The same as above.
1757
1758 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1759
1760 * minibuf.c (last_exact_completion): Remove variable.
1761 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
1762 (complete_and_exit_1, complete_and_exit_2)
1763 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
1764 (Fdisplay_completion_list, display_completion_list_1)
1765 (Fminibuffer_completion_help, Fself_insert_and_exit)
1766 (Fexit_minibuffer, Fminibuffer_message): Move functions to
1767 minibuffer.el.
1768 (syms_of_minibuf): Remove corresponding initializations.
1769
1770 * keyboard.c (Qdeactivate_mark): New var.
1771 (command_loop_1): Use it to call `deactivate-mark'.
1772 (syms_of_keyboard): Initialize it.
1773
1774 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
1775 to another frame.
1776 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
1777 Don't call set_tty_color_mode.
1778 (store_frame_param): Reset previous_frame rather than call
1779 set_tty_color_mode.
1780 * term.c (set_tty_color_mode): Rewrite.
1781 * dispextern.h (set_tty_color_mode): New type.
1782 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
1783
1784 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
1785
1786 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
1787 for generic chars, which do not exist any more in emacs-unicode.
1788
1789 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
1790
1791 * coding.c (detect_coding_emacs_mule)
1792 (Ffind_operation_coding_system): Fix typo.
1793
1794 2008-04-08 Jason Rumney <jasonr@gnu.org>
1795
1796 * w32uniscribe.c (SNAME): Extract only symbol name.
1797
1798 * w32font.h (struct w32_metric_cache): New struct.
1799 (w32font_info): Use it.
1800 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
1801 (CACHE_BLOCKSIZE): New constants.
1802
1803 * w32font.c (Qja, Qko, Qzh): New symbols.
1804 (syms_of_w32font): Initialise them.
1805 (font_matches_spec): Use them to filter by language.
1806 (recompute_cached_metrics): Remove function.
1807 (compute_metrics, clear_cached_metrics): New functions.
1808 (w32font_encode_char): Use them to manage metric cache.
1809 (w32font_text_extents): Cache metrics for all glyphs on demand.
1810 Delay converting glyph indices to WORD until needed.
1811 (w32font_open_internal): Initialize metric cache to empty.
1812 (registry_to_w32_charset): Charset should always be a symbol.
1813 (fill_in_logfont, list_all_matching_fonts): Family should
1814 always be a symbol.
1815
1816 2008-04-06 Jason Rumney <jasonr@gnu.org>
1817
1818 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
1819 Give up if glyph indices not supported. Use uniscribe obtained
1820 ABC widths for individual metrics. Map glyph clusters back to
1821 characters using fClusterStart flag. Return number of glyphs
1822 produced, not chars processed.
1823 (uniscribe_shape): Map char at FROM to current glyph.
1824
1825 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1826
1827 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
1828 Use SetMenuItemHierarchicalMenu.
1829
1830 2008-04-05 Jason Rumney <jasonr@gnu.org>
1831
1832 * image.c (pbm_load): Allow color values up to 65535.
1833 Throw an error if max_color_idx is outside the supported range.
1834 Report an error when image size is invalid.
1835 Read two bytes at a time when raw images have max_color_idx above 255.
1836
1837 2008-04-05 Eli Zaretskii <eliz@gnu.org>
1838
1839 * w32.c (readdir): If FindFirstFile/FindNextFile return in
1840 cFileName a file name that includes `?' characters, use the 8+3
1841 alias in cAlternateFileName instead.
1842
1843 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
1844
1845 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
1846 append "CCL: Quitted" when the CCL program is quitted.
1847 (setup_ccl_program): Initialize ccl->quit_silently to zero.
1848
1849 * ccl.h (struct ccl_program): New member quit_silently.
1850
1851 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
1852
1853 * search.c (compile_pattern_1): Treat non-nil and non-string of
1854 search-spaces-regexp as nil.
1855
1856 * minibuf.c (Fassoc_string): Tweak docstring.
1857
1858 2008-04-05 Eli Zaretskii <eliz@gnu.org>
1859
1860 * dired.c (Ffile_attributes): Support inode numbers wider than 32
1861 bits. Remove ugly WINDOWSNT-specific kludge introduced on
1862 2008-03-14 to force inode be positive.
1863
1864 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
1865 _S_* ones, since we now use our own sys/stat.h.
1866 (stat, fstat): Don't mangle the inode number.
1867 (init_user_info): Don't restrict UID and GID to 0-60000 range.
1868
1869 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1870
1871 * frame.h (struct frame): Give one more bit to `visible' since we use
1872 values larger than 1 to indicate obscured frames on ttys.
1873
1874 * keymap.c (Qkeymap_canonicalize): New var.
1875 (Fmap_keymap_internal): New fun.
1876 (describe_map): Use keymap-canonicalize.
1877
1878 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
1879 (Fundo_boundary): Set them.
1880 (syms_of_undo): Initialize them.
1881 (record_point): Use them instead of last_point_position*.
1882 (last_undo_buffer): Change type.
1883
1884 2008-04-04 Jason Rumney <jasonr@gnu.org>
1885
1886 * w32font.c (w32font_text_extents): Use font's ascent and descent.
1887 (recompute_cached_metrics): Don't set ascent and descent per char.
1888
1889 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
1890 (uniscribe_check_otf): Add GC protection before consing.
1891 Rearrange loop for counting features.
1892
1893 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1894
1895 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
1896 buffer with byte-size of source buffer.
1897
1898 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
1899
1900 * callint.c (Fcall_interactively): Handle temporary region even
1901 when shift-select-mode is off.
1902
1903 2008-04-03 Jason Rumney <jasonr@gnu.org>
1904
1905 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
1906
1907 2008-04-03 Kenichi Handa <handa@m17n.org>
1908
1909 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
1910 (CATEGORY_MASK_UTF_16): Likewise.
1911 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
1912 binary file.
1913 (detect_coding): Add null-byte detection for a binary file.
1914 (detect_coding_system): Likewise.
1915
1916 2008-04-03 Jason Rumney <jasonr@gnu.org>
1917
1918 * w32uniscribe.c: New file.
1919
1920 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
1921
1922 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
1923
1924 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
1925 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
1926 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
1927 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
1928 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
1929 (Qphonetic): New symbols.
1930 (syms_of_w32font): Initialize them.
1931 (font_supported_scripts): Use them.
1932 (w32font_list_family): List all charsets.
1933 (w32font_text_extents, recompute_cached_metrics): Fix metric
1934 calculations.
1935 (w32_enumfont_pattern_entity): Make full_type a DWORD.
1936 Give opentype fonts their own format.
1937 (font_matches_spec): New arguments backend and logfont.
1938 Handle :otf spec for uniscribe backend.
1939 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
1940 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
1941
1942 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
1943 font backend.
1944 (globals_of_w32fns): Initialize uniscribe font backend.
1945
1946 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
1947 dependencies.
1948 (w32uniscribe.$(O)): New file to build.
1949 (FONT_OBJ): Include w32uniscribe.$(O).
1950 (LIBS): Add uniscribe libraries.
1951
1952 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
1953
1954 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
1955
1956 * callint.c (Vshift_select_mode): New var.
1957 (Finteractive): Document new ^ spec.
1958 (Fcall_interactively): Call handle-shift-selection if the ^ spec
1959 is present.
1960
1961 * keyboard.c (Vthis_command_keys_shift_translated): New var.
1962 (command_loop_1): Avoid running the direct display versions of
1963 forward-char and backward-char if shift-selection may occur.
1964 (read_key_sequence): Set Vthis_command_keys_shift_translated if
1965 shift-translation takes place.
1966
1967 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
1968 avoid clobbering by define-minor-mode.
1969
1970 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
1971 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
1972
1973 * syntax.c (Fforward_word): Add ^ interactive spec.
1974
1975 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
1976 (Fscroll_right): Add ^ interactive spec.
1977
1978 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
1979
1980 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
1981
1982 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
1983
1984 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
1985
1986 2008-03-31 Juri Linkov <juri@jurta.org>
1987
1988 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
1989
1990 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
1991
1992 * gtkutil.c (xg_set_geometry): Fix indentation.
1993 (xg_resize_outer_widget): Remove.
1994 (x_wm_size_hint_off): Fix indentation.
1995 (xg_frame_set_char_size): Call flush_and_sync after
1996 gtk_window_resize.
1997 (x_wm_set_size_hint): Pass NULL as geometry window to
1998 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
1999 Add menu bar and tool bar height to base height.
2000 (xg_update_frame_menubar, free_frame_menubar)
2001 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
2002 (update_frame_tool_bar, free_frame_tool_bar):
2003 Change xg_resize_outer_widget to xg_frame_set_char_size.
2004
2005 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
2006
2007 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
2008 (Fdbus_call_method): New parameter TIMEOUT.
2009 (dbus-send-signal): Optimize UNGCPRO call.
2010
2011 2008-03-29 Juri Linkov <juri@jurta.org>
2012
2013 * window.c (Fdisplay_buffer): Move call to
2014 Vsplit_window_preferred_function out of conditions that check
2015 if window is eligible for vertical splitting.
2016 When Vsplit_window_preferred_function is non-nil, call it and use
2017 its non-nil return value as window. Otherwise, continue doing
2018 vertical splitting using Fsplit_window with arg horflag=nil.
2019 (syms_of_window) <Vsplit_window_preferred_function>: Change the
2020 default value from `split-window' to nil.
2021
2022 2008-03-29 Juri Linkov <juri@jurta.org>
2023
2024 * callint.c (Fcall_interactively): Revert 2008-03-16 change
2025 for interactive code letters 'b' and 'B'.
2026
2027 2008-03-29 Eli Zaretskii <eliz@gnu.org>
2028
2029 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
2030 multibyte string.
2031
2032 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
2033
2034 * keyboard.c (pending_funcalls): New var.
2035 (timer_check): Run it.
2036 (syms_of_keyboard): Initialize it.
2037 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
2038 (Vdelete_terminal_functions): New vars.
2039 (syms_of_terminal): Initialize them.
2040 (Fdelete_terminal): Run delete-terminal-functions.
2041 * xdisp.c (safe_eval): Rewrite.
2042 (safe_call2): New fun.
2043 * frame.c (Qdelete_frame_functions): New var.
2044 (syms_of_frame): Initialize it.
2045 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
2046 * lisp.h (safe_call2, pending_funcalls): Declare.
2047
2048 2008-03-28 Andreas Schwab <schwab@suse.de>
2049
2050 * indent.c (Fmove_to_column): Move declaration before statements.
2051
2052 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
2053
2054 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
2055 (struct frame): Use bit fields for boolean vars.
2056
2057 * process.c (server_accept_connection): Simplify naming.
2058 (emacs_get_tty_pgrp): Use SDATA.
2059
2060 * coding.c (decode_coding_object): Fix last change.
2061
2062 2008-03-27 Jason Rumney <jasonr@gnu.org>
2063
2064 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
2065
2066 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
2067
2068 * charset.c (Fdefine_charset_internal): Change the way of
2069 registering charsets in Vcharset_order_list.
2070 (syms_of_charset): Make the charset `eight-bit' supplementary.
2071
2072 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
2073
2074 * regex.c (EXTEND_BUFFER): Change order of pointer addition
2075 operations, to avoid having the difference between pointers
2076 overflow.
2077
2078 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
2079
2080 * indent.c (check_display_width): New fun.
2081 (scan_for_column): Use it.
2082
2083 * data.c (syms_of_data): Mark most-positive-fixnum and
2084 most-negative-fixnum as constants.
2085
2086 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
2087
2088 * indent.c (scan_for_column): Extract from current_column_1.
2089 Merge with the same code from Fmove_to_column.
2090 (current_column_1, Fmove_to_column): Use it.
2091
2092 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
2093
2094 * keymap.c (map_keymap_internal): New fun.
2095 (map_keymap): Use it.
2096 (Fmap_keymap_internal): New fun.
2097 (Fmap_keymap): Remove left-out test from before make_save_value.
2098
2099 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
2100
2101 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
2102 Use XCAR/XCDR.
2103
2104 * process.h (struct Lisp_Process): Remove filter_multibyte.
2105 * process.c (QCfilter_multibyte): Remove.
2106 (setup_process_coding_systems): Don't use filter_multibyte.
2107 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
2108 (read_process_output): Don't adjust multibyteness to filter_multibyte.
2109 (Fset_process_filter_multibyte): Change the coding-system to
2110 approximate the previous behavior.
2111 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
2112 coding-system.
2113
2114 * coding.c (decode_coding_object): When not decoding into a buffer,
2115 obey the coding system's preference of (uni|multi)byte.
2116
2117 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
2118
2119 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
2120 every char is changed and has a different byte-length.
2121 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
2122 Fix int -> EMACS_INT.
2123
2124 2008-03-23 David Hansen <david.hansen@gmx.net>
2125
2126 * dbusbind.c (xd_read_message): Remove extra copying of message
2127 strings. Check for NULL `interface' or `member'.
2128
2129 2008-03-22 Eli Zaretskii <eliz@gnu.org>
2130
2131 * w32.c (readdir): If FindFirstFile/FindNextFile return in
2132 cFileName a file name that includes `?' characters, use the 8+3
2133 alias in cAlternateFileName instead.
2134
2135 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
2136
2137 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
2138
2139 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2140
2141 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
2142 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
2143 work on current_buffer only instead (that was already the case
2144 for some of the code anyway).
2145 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
2146 (temp_set_point, temp_set_point_both): Use EMACS_INT.
2147 (SET_PT, SET_PT_BOTH): Adjust.
2148 * intervals.h (set_point, temp_set_point, set_point_both)
2149 (temp_set_point_both): Remove redundant declarations.
2150
2151 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
2152
2153 * fileio.c (Finsert_file_contents):
2154 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
2155 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
2156 when buffer != current_buffer anyway.
2157
2158 2008-03-20 Andreas Schwab <schwab@suse.de>
2159
2160 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
2161 as default.
2162
2163 2008-03-19 Jason Rumney <jasonr@gnu.org>
2164
2165 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
2166 (syms_of_w32fns): Initialize them.
2167 (HOURGLASS_ID): New constant.
2168 (x_window_to_frame): Don't check hourglass_window.
2169 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
2170 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
2171 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
2172 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
2173 Only change the cursor if hourglass is not active.
2174 (Fx_create_frame): Initialize frame's current_cursor.
2175 (hourglass_atimer): Remove.
2176 (hourglass_started): New function.
2177 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
2178 (show_hourglass): Adapt to w32, changing argument to frame.
2179
2180 * w32term.h (struct w32_output): Remove hourglass_window.
2181 Add current_cursor.
2182
2183 * eval.c (call_debugger, Fsignal):
2184 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
2185 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
2186 (Fexecute_extended_command, cancel_hourglass_unwind):
2187 * minibuf.c (read_minibuf):
2188 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
2189
2190 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
2191
2192 * window.c (run_funs): New fun.
2193 (run_window_configuration_change_hook): Use it to run the buffer-local
2194 and the global part of the hook.
2195
2196 * xdisp.c (format_mode_line_unwind_data): Add window argument.
2197 (unwind_format_mode_line): Restore selected window.
2198 (x_consider_frame_title, Fformat_mode_line): Set selected window.
2199
2200 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
2201
2202 * editfns.c (Fchar_equal): Check they are valid characters.
2203
2204 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
2205
2206 2008-03-17 Andreas Schwab <schwab@suse.de>
2207
2208 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
2209 against a charset.
2210
2211 * lisp.h (Fbuffer_list): Declare.
2212
2213 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
2214
2215 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
2216 handlebox_widget is != 0.
2217
2218 2008-03-16 Juri Linkov <juri@jurta.org>
2219
2220 * callint.c (Fcall_interactively): For interactive code letters
2221 'b' and 'B' put the buffer list into the list of default "future"
2222 values of the minibuffer.
2223
2224 2008-03-16 Andreas Schwab <schwab@suse.de>
2225
2226 * keyboard.c (read_key_sequence): Fix downcasing of letters with
2227 modifiers.
2228
2229 * regex.c (re_match_2_internal): Correct matching of a charset
2230 against latin-1 characters.
2231
2232 2008-03-16 Kenichi Handa <handa@m17n.org>
2233
2234 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
2235 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
2236 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
2237 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
2238 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
2239 CHAR_STRING_ADVANCE.
2240 (produce_chars): Fix for the case that the source and the
2241 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
2242 instead of CHAR_STRING_ADVANCE.
2243 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
2244 STRING_CHAR_ADVANCE.
2245
2246 2008-03-15 Andreas Schwab <schwab@suse.de>
2247
2248 * regex.c (re_match_2_internal): Correct matching of eight bit
2249 characters in unibyte strings.
2250
2251 2008-03-15 Martin Rudalics <rudalics@gmx.at>
2252
2253 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
2254 at end of range when it coincides with the end of the buffer.
2255
2256 2008-03-14 Eli Zaretskii <eliz@gnu.org>
2257
2258 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
2259
2260 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
2261
2262 2008-03-14 Jason Rumney <jasonr@gnu.org>
2263
2264 * editfns.c (initial_tz): New variable.
2265 (syms_of_editfns): Initialize it.
2266 (Fset_time_zone_rule): Set it when first called.
2267 Use it when TZSTRING is nil.
2268
2269 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
2270 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
2271 (monitor_from_point_fn, get_monitor_info_fn): New globals.
2272 (globals_of_w32fns): Initialize them.
2273 (compute_tip_xy): Use them to position tooltips.
2274
2275 2008-03-14 Glenn Morris <rgm@gnu.org>
2276
2277 * emacs.c (main): Revert previous change.
2278 (standard_args): Revert -internal-script back to -scriptload,
2279 and remove the long-option form.
2280
2281 2008-03-13 Glenn Morris <rgm@gnu.org>
2282
2283 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
2284 Remove option -enable-font-backend.
2285
2286 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
2287
2288 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
2289
2290 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
2291
2292 * xterm.c (x_connection_closed): For GTK: If this is the last
2293 terminal just exit without closing the display.
2294
2295 2008-03-11 Jason Rumney <jasonr@gnu.org>
2296
2297 * w32font.c (w32font_full_name): Use floor to round.
2298
2299 2008-03-10 dhruva <dhruvakm@gmail.com> (tiny change)
2300
2301 * sound.c (alsa_configure): Declare vol at beginning of block.
2302
2303 * fontset.c (Ffontset_info): Remove extra semicolon.
2304
2305 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
2306
2307 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
2308 size of resulting string.
2309
2310 2008-03-10 Jason Rumney <jasonr@gnu.org>
2311
2312 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
2313
2314 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2315
2316 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
2317 Don't pretend as if characters with display property haven't been
2318 consumed for string-replacing-string case.
2319
2320 2008-03-08 Kim F. Storm <storm@cua.dk>
2321
2322 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
2323 (get_next_display_element, next_element_from_string)
2324 (next_element_from_ellipsis, next_element_from_buffer): Use it.
2325
2326 2008-03-08 Andreas Schwab <schwab@suse.de>
2327
2328 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
2329
2330 2008-03-06 Jason Rumney <jasonr@gnu.org>
2331
2332 * w32font.c (w32_registry): Take font_type argument. Use ANSI
2333 when charset not specified. Only translate ANSI to unicode when
2334 font_type is truetype.
2335 (w32font_coverage_ok): New function.
2336 (add_font_entity_to_list): Use it to filter unsuitable fonts.
2337
2338 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
2339
2340 * lread.c (Fread_char): Resolve modifiers.
2341 (Fread_char_exclusive): Likewise.
2342
2343 * character.c (char_resolve_modifier_mask): New function.
2344 (char_string): Use char_resolve_modifier_mask.
2345 (Fchar_resolve_modifiers): New function.
2346 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
2347 function.
2348
2349 2008-03-04 Jason Rumney <jasonr@gnu.org>
2350
2351 * makefile.w32-in: Always include w32font.c in the build.
2352 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
2353
2354 2008-03-04 Andreas Schwab <schwab@suse.de>
2355
2356 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
2357 (versionclean): Likewise.
2358
2359 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
2360
2361 * .cvsignore: Add oo.
2362
2363 2008-03-03 Andreas Schwab <schwab@suse.de>
2364
2365 * coding.c (decode_coding_object): Inhibit gap shrinking while
2366 decoding in place.
2367
2368 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
2369
2370 * w32term.c: Remove unused include "gnu.h".
2371 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
2372
2373 * gnu.h: Rename to ...
2374 * emacs-icon.h: ... this.
2375 * xterm.c: Use emacs-icon.h instead of gnu.h.
2376 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
2377
2378 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
2379
2380 * w32font.c: Include math.h.
2381
2382 2008-03-03 Jason Rumney <jasonr@gnu.org>
2383
2384 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
2385 Compute options separately.
2386 (w32font_open_internal): Set glyph_idx before caching metrics.
2387
2388 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
2389 Define if system headers don't.
2390 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
2391 (w32font_encode_char): Don't declare here.
2392
2393 * w32font.c (Quniscribe, QCformat): New symbols.
2394 (syms_of_w32font): Define them.
2395 (w32font_has_char): Indicate uncertainty.
2396 (w32font_encode_char): Encode as glyph point. Make static.
2397 (recompute_cached_metrics): New function.
2398 (w32font_open_internal): Use it. Set font to use glyph points
2399 initially. Set format based on type of font.
2400 (w32font_text_extents, w32font_draw): Optionally use glyph points.
2401 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
2402 on it. Set format based on information available here.
2403 (add_font_entity_to_list): Identify backend based on opentype_only.
2404
2405 2008-03-02 Andreas Schwab <schwab@suse.de>
2406
2407 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
2408
2409 * coding.c (decode_coding_big5, produce_chars):
2410 Fix typos in last change.
2411
2412 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
2413
2414 * gnu.h: New icon.
2415
2416 2008-03-02 Kenichi Handa <handa@m17n.org>
2417
2418 * coding.c (decode_coding_utf_8): When eol-type of CODING is
2419 `dos', don't decode '\r' if that is the last in the source.
2420 (decode_coding_utf_16, decode_coding_emacs_mule)
2421 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
2422 (decode_coding_raw_text, decode_coding_charset): Likewise.
2423 (produce_chars): Don't decode EOL here. Use EMACS_INT.
2424
2425 2008-03-01 Jason Rumney <jasonr@gnu.org>
2426
2427 * w32font.c (w32font_full_name): Report point size for scalable fonts.
2428
2429 2008-03-01 Kim F. Storm <storm@cua.dk>
2430
2431 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
2432
2433 2008-03-01 Jason Rumney <jasonr@gnu.org>
2434
2435 * w32font.c (w32font_full_name): New function.
2436 (w32font_open_internal): Use it.
2437
2438 2008-03-01 Kim F. Storm <storm@cua.dk>
2439
2440 * dispnew.c (line_draw_cost): Fix invalid glyph check.
2441
2442 2008-03-01 Jason Rumney <jasonr@gnu.org>
2443
2444 * font.c (font_unparse_fcname): Increase len when style is a symbol.
2445
2446 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
2447
2448 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
2449 xg_frame_resized when the event is for the edit widget.
2450
2451 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
2452
2453 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
2454 set_char_size.
2455 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
2456 operations on widgets here. Just set frame size if needed.
2457 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
2458 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
2459 (x_wm_set_size_hint): Set size hints on the edit widget only, not
2460 the whole frame.
2461 (xg_create_tool_bar): Move attachement of the tool bar to
2462 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
2463 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
2464
2465 2008-03-01 Jason Rumney <jasonr@gnu.org>
2466
2467 * w32fns.c (w32_msg_pump): Disable debug code.
2468
2469 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2470
2471 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
2472
2473 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
2474
2475 * xdisp.c (next_overlay_string): Don't set
2476 overlay_strings_at_end_processed_p if we're currently reading from
2477 a display string.
2478
2479 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
2480
2481 * xdisp.c (get_overlay_strings_1): Fix typo.
2482
2483 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
2484
2485 * xdisp.c (get_overlay_strings_1): Add missing argument type.
2486
2487 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
2488
2489 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
2490
2491 * xdisp.c (display_mode_element): Cancel the previous change.
2492 (decode_mode_spec): Likewise.
2493 (handle_auto_composed_prop): Don't make composition if it->string
2494 is a string.
2495
2496 2008-02-27 Kim F. Storm <storm@cua.dk>
2497
2498 * lisp.h (GLYPH): Change type from int to struct with separate char
2499 and face_id members.
2500 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
2501 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
2502 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
2503 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
2504 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
2505 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
2506 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
2507 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
2508 handle new Lisp glyph code encoding, either an integer or a cons.
2509
2510 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
2511 (GLYPH_ALIAS): Delete.
2512 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
2513 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
2514 (GLYPH_FROM_CHAR): Replace macro by ...
2515 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
2516
2517 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
2518 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
2519 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
2520 (GLYPH_INVALID_P): New macro.
2521 (spec_glyph_lookup_face): Update prototype.
2522
2523 * dispnew.c (line_draw_cost): Adapt to new glyph type.
2524 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
2525 new glyph code encoding.
2526 (spec_glyph_lookup_face): No return value; update passed glyph instead.
2527 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
2528
2529 * xdisp.c (get_next_display_element, next_element_from_display_vector):
2530 Adapt to new glyph type and new glyph code encoding.
2531
2532 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
2533
2534 * indent.c (current_column, current_column_1, Fmove_to_column)
2535 (compute_motion): Adapt to new glyph code encoding.
2536
2537 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
2538
2539 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
2540
2541 * process.c (wait_reading_process_output): Check for window
2542 changes caused by timers.
2543 Suggested by Johan Bockgård.
2544
2545 2008-02-27 Glenn Morris <rgm@gnu.org>
2546
2547 * emacs.c (USAGE1): Add `--disable-font-backend'.
2548
2549 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
2550
2551 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
2552 is made to the buffer.
2553
2554 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
2555
2556 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
2557 (face_at_string_position):
2558 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
2559 (face_at_string_position):
2560 * xdisp.c (display_string, next_overlay_change):
2561 * buffer.h (overlays_at):
2562 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
2563 Update callers.
2564
2565 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
2566
2567 * editfns.c (Fformat): Doc fix.
2568
2569 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
2570
2571 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
2572 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
2573 (Ffont_otf_alternates, Fquery_font): Doc fixes.
2574
2575 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
2576
2577 * buffer.c (Fbuffer_swap_text): New function.
2578 (syms_of_buffer): Defsubr it.
2579
2580 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
2581
2582 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
2583
2584 2008-02-25 Jason Rumney <jasonr@gnu.org>
2585
2586 * w32font.c (w32font_draw): Draw one character at a time when padding.
2587
2588 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
2589
2590 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
2591 Handle a nil arg. Use run_window_configuration_change_hook.
2592 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
2593 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
2594 Use run_window_configuration_change_hook.
2595
2596 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
2597
2598 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
2599 1-pixel width.
2600
2601 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
2602
2603 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
2604 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
2605 if the glyph in the font is zero pixel with.
2606
2607 * dispextern.h (struct glyph_string): New member padding_p.
2608
2609 * w32font.c (w32font_draw): Pay attention to s->padding_p.
2610
2611 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
2612
2613 * xfont.c (xfont_draw): Pay attention to s->padding_p.
2614
2615 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
2616
2617 * font.c: If the font driver doesn't have `shape' function, return Qnil.
2618
2619 2008-02-25 Jason Rumney <jasonr@gnu.org>
2620
2621 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
2622
2623 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
2624
2625 Allow fine-grained image-cache flushing.
2626 * dispextern.h (struct image): Add `dependencies' field.
2627 (clear_image_caches): Change arg to Lisp_Object.
2628 * image.c (make_image): Initialize `dependencies' field.
2629 (clear_image_cache): Change arg to allow fine-grained flushing.
2630 Perform the flush even if image-cache-eviction-delay is nil.
2631 (clear_image_caches): Change arg to Lisp_Object.
2632 (Fclear_image_cache): Expand meaning of the argument.
2633 (mark_image): Mark `dependencies' field.
2634 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
2635 (lface_hash): Use XHASH rather than XFASTINT.
2636 (face_at_buffer_position): Fix int -> EMACS_INT position.
2637 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
2638 (select_frame_for_redisplay): Remove code duplication.
2639 (redisplay_internal): Adapt arg to call to clear_image_caches.
2640
2641 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
2642
2643 * s/vms4-0.h:
2644 * s/vms4-2.h:
2645 * s/vms4-4.h:
2646 * s/vms5-5.h: Remove, unused.
2647
2648 * s/irix5-2.h:
2649 * s/irix6-0.h:
2650 * s/riscos5.h:
2651 * s/mach-bsd4-3.h:
2652 * m/mips4.h: Remove files for obsolete systems.
2653
2654 * Makefile.in:
2655 * filelock.c:
2656 * unexmips.c:
2657 * m/hp9000s300.h:
2658 * m/iris4d.h:
2659 * s/aix3-1.h:
2660 * s/hpux.h:
2661 * s/msdos.h:
2662 * s/usg5-0.h:
2663 * s/usg5-2-2.h:
2664 * s/usg5-2.h:
2665 * s/usg5-3.h: Remove references to obsolete variables.
2666
2667 * s/irix5-0.h: Remove, move all the contents ...
2668 * s/irix6-5.h: ... here. Simplify.
2669 * config.in: Regenerate.
2670
2671 2008-02-24 Jason Rumney <jasonr@gnu.org>
2672
2673 * w32term.c (x_draw_glyph_string_background): Clear the background
2674 manually when cleartype is in use.
2675 (x_draw_glyph_string_foreground): Draw text transparently when
2676 cleartype is in use.
2677
2678 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
2679 a font into it unless we have to.
2680
2681 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
2682
2683 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
2684 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
2685
2686 2008-02-18 Jason Rumney <jasonr@gnu.org>
2687
2688 * w32fns.c (Fw32_shell_execute): Encode parameters.
2689
2690 2008-02-09 Eli Zaretskii <eliz@gnu.org>
2691
2692 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
2693
2694 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
2695
2696 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
2697
2698 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
2699
2700 * xterm.c (x_set_offset): Don't change the gravity if
2701 CHANGE_GRAVITY is -1.
2702
2703 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
2704
2705 * fileio.c (auto_save_error_occurred): New var.
2706 (auto_save_error): Set it.
2707 (Fdo_auto_save): Don't overwrite the error message if an auto-save
2708 error occurred.
2709
2710 2008-02-23 Eli Zaretskii <eliz@gnu.org>
2711
2712 * w32.c (globals_of_w32): Add initializations for
2713 g_b_init_get_sid_sub_authority and
2714 g_b_init_get_sid_sub_authority_count.
2715
2716 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
2717
2718 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
2719 (font_parse_xlfd): Use them for sanity check.
2720 (Finternal_set_font_style_table): Make sure the table is bijective.
2721
2722 Consolidate the image_cache to the terminal struct.
2723 * termhooks.h (P_): Remove redundant def.
2724 (struct terminal): New field `image_cache'.
2725 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
2726 of FRAME_X_IMAGE_CACHE.
2727 * xterm.h (struct x_display_info): Remove image_cache field.
2728 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
2729 * w32term.h (struct w32_display_info): Remove image_cache field.
2730 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
2731 * macterm.h (struct mac_display_info): Remove image_cache field.
2732 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
2733 * xterm.c (x_term_init):
2734 * w32term.c (w32_term_init):
2735 * macterm.c (mac_term_init): Set the image_cache in the terminal.
2736 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
2737 Remove declarations.
2738 (clear_image_caches, mark_image_cache): New declarations.
2739 * xfaces.c (clear_face_cache):
2740 * xdisp.c (redisplay_internal): Use clear_image_caches.
2741 * image.c (clear_image_cache): Don't check that a frame is on
2742 a window-system before checking if it shares the same cache.
2743 (clear_image_caches): New function.
2744 (Fclear_image_cache): Use it.
2745 (mark_image): Move from allo.c.
2746 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
2747 * alloc.c (mark_image, mark_image_cache): Move to image.c.
2748 (mark_object): Don't call mark_image_cache for frames.
2749 (mark_terminals): Call mark_image_cache.
2750
2751 * lisp.h (Fdelete_terminal): Declare.
2752
2753 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
2754 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
2755 wrong_type_argument.
2756
2757 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
2758
2759 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
2760 malayalam.el, and tamil.el. Add sinhala.el.
2761
2762 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
2763
2764 * xterm.c (x_connection_closed): Consolidate identical tests.
2765 (x_delete_terminal): Don't crash if called via x_connection_closed.
2766
2767 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
2768
2769 * xdisp.c (decode_mode_spec): New arg string.
2770 (display_mode_element): Adjust for the above change.
2771
2772 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
2773
2774 * callint.c (Fcall_interactively): Use AREF.
2775
2776 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2777
2778 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
2779
2780 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
2781
2782 * xfns.c (Fx_show_tip): Set string to " " if empty.
2783
2784 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
2785
2786 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
2787 with Qt.
2788
2789 2008-02-17 Kenichi Handa <handa@m17n.org>
2790
2791 * ftfont.c (ftfont_shape): Return Lispy number.
2792
2793 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
2794 for GCs.
2795 (Finternal_set_font_selection_order): Call font_update_sort_order
2796 only when enable_font_backend is set.
2797 (realize_x_face): Set face->font_info to that of default face only
2798 when enable_font_backend is set.
2799
2800 * xdisp.c (handle_composition_prop): Set it->c to the fist
2801 characte of the composed region.
2802 (fill_composite_glyph_string): Set base_face->font_info to
2803 s->font_info. Get a face for ascii from base_face->ascii_face.
2804 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
2805 with a face already decided.
2806 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
2807 non-negative.
2808 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
2809 call font_prepare_composition unconditionally.
2810
2811 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
2812
2813 * xterm.h (struct x_display_info): New member font.
2814
2815 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
2816 (x_set_mouse_face_gc, x_new_font): Likewise.
2817 (x_term_init): Setup display_info->font.
2818 (x_delete_terminal): Free display_info->font.
2819
2820 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
2821
2822 * ftxfont.c (ftxfont_default_fid): Delete it.
2823 (ftxfont_open): Set xfont->fid to 0.
2824 (ftxfont_end_for_frame): Clear data specific to the frame and the
2825 font-driver.
2826
2827 * xftfont.c (xftfont_default_fid): Delete it.
2828 (xftfont_open): Set xfont->fid to 0.
2829
2830 * fontset.c (FONTSET_OBJLIST): New macro.
2831 (fontset_find_font): Update font-object list of the fontset.
2832 (free_realized_fontset): New function.
2833 (free_face_fontset): Call free_realized_fontset.
2834 (Ffont_info): Call font_close_object only when enable_font_backend
2835 is set.
2836
2837 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
2838 [HAVE_NTGUI]: Include w32term.h.
2839 [MAC_OS]: Include macterm.ch.
2840 (font_otf_ValueRecord): Use make_number.
2841 (font_finish_cache): Fix handling of reference count.
2842 (font_clear_cache): Update num_fonts.
2843 (font_open_entity): Update smallest_char_width and
2844 smallest_font_height of the frame.
2845 (font_close_object): Update num_fonts.
2846 (Fclear_font_cache): Fix finding the target cache data.
2847
2848 2008-02-16 Glenn Morris <rgm@gnu.org>
2849
2850 * fontset.c (Finternal_char_font): Fix compilation warning.
2851
2852 2008-02-16 Eli Zaretskii <eliz@gnu.org>
2853
2854 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
2855 instead of char arrays. Enlarge the size of array passed to
2856 get_token_information.
2857
2858 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
2859 warnings.
2860
2861 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
2862
2863 * .gdbinit: Don't set `args', it breaks gdb --args.
2864
2865 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
2866
2867 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
2868 within a narrowed buffer.
2869
2870 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
2871
2872 * coding.c (decode_coding_object, encode_coding_object):
2873 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
2874
2875 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
2876
2877 * coding.c (coding_set_destination): Use BEG_BYTE rather than
2878 hardcoding 1.
2879 (detect_coding_system):
2880 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
2881 (string_char_to_byte, string_byte_to_char, insert_from_gap):
2882 * insdel.c (insert_from_gap):
2883 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
2884 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
2885 (string_to_multibyte):
2886 * character.c (chars_in_text, multibyte_chars_in_text):
2887 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
2888
2889 * character.h (FETCH_STRING_CHAR_ADVANCE)
2890 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
2891 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
2892 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
2893
2894 * casefiddle.c (casify_region): Only call after-change and composition
2895 functions on the part of the region that was changed.
2896
2897 * keyboard.c (read_avail_input):
2898 * frame.c (Fdelete_frame): Call Fdelete_terminal.
2899
2900 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2901
2902 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
2903 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
2904
2905 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
2906
2907 * w32menu.c (push_submenu_start, push_submenu_end)
2908 (push_left_right_boundary, push_menu_pane, push_menu_item):
2909 * keyboard.c (read_key_sequence): Don't pass args with side effects
2910 to AREF, it fails when compiling with -DENABLE_CHECKING.
2911
2912 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
2913
2914 * Makefile.in (${lispsource}international/charprop.el):
2915 Delete this target.
2916
2917 * search.c (boyer_moore): Fix incorrect synching of the trunk and
2918 emacs-unicode-2.
2919
2920 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2921
2922 * terminal.c (Fdelete_terminal): Clean up the `force' path.
2923
2924 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
2925
2926 * frame.c (Qnoelisp): New symbol.
2927 (syms_of_frame): Initialize it.
2928 (Fdelete_frame): Use it to distinguish a mere `force' passed from
2929 someharmles Elisp code, from a strong `force' from x_connection_closed.
2930 * frame.h (Qnoelisp): Declare.
2931 * xterm.c (x_connection_closed): Pass `noelisp'.
2932
2933 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
2934 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
2935 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
2936 rather than `int' for the type of `type'.
2937
2938 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
2939
2940 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
2941
2942 * Makefile.in (GNUC): Remove support for gcc-1.x.
2943
2944 2008-02-10 Richard Stallman <rms@gnu.org>
2945
2946 * lisp.h (ASET): Use AREF, not ASLOT.
2947
2948 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
2949
2950 * lisp.h (ASET): Check bounds.
2951
2952 2008-02-10 Glenn Morris <rgm@gnu.org>
2953
2954 * buffer.c (mode-name): Doc fix.
2955
2956 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
2957
2958 * Makefile.in:
2959 * emacs.c:
2960 * gmalloc.c:
2961 * keyboard.c:
2962 * lisp.h:
2963 * m/ibm370aix.h:
2964 * process.c:
2965 * regex.c:
2966 * s/hpux.h:
2967 * sysdep.c:
2968 * sysselect.h:
2969 * systty.h:
2970 * unexec.c:
2971 * w32term.c:
2972 * xsmfns.c:
2973 * xterm.c: Remove code that deals with obsolete variables.
2974
2975 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
2976
2977 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
2978 nothing else needs it anymore.
2979
2980 2008-02-09 Eli Zaretskii <eliz@gnu.org>
2981
2982 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
2983 instead of unibyte_char_to_multibyte.
2984
2985 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
2986
2987 * s/gnu-linux.h: Remove commented out code.
2988
2989 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
2990
2991 * Makefile.in: Update what RMS says about using autoconf.
2992 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
2993 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
2994 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
2995 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
2996
2997 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
2998
2999 * keymap.c (Fkey_description): Move side effect outside of macro call.
3000
3001 * xfaces.c (Finternal_make_lisp_face):
3002 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
3003
3004 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
3005 (syms_of_fontset): Use ASET.
3006
3007 * fns.c (concat): Move side effect outside of macro call.
3008 (hash_clear): Use ASET.
3009
3010 2008-02-08 Richard Stallman <rms@gnu.org>
3011
3012 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
3013 If FORCE, and frame has a surrogate minibuffer for another frame,
3014 delete the other frame first.
3015
3016 2008-02-07 Timo Savola <timo.savola@iki.fi>
3017
3018 * xterm.c (x_detect_focus_change): Handle embed client message.
3019 (handle_one_xevent): Ditto.
3020 (handle_one_xevent): If embedded and we get a button press/release,
3021 request focus.
3022 (xembed_set_info, xembed_send_message): New functions.
3023 (x_make_frame_visible): Call xembed_set_info if embedded.
3024 (x_make_frame_invisible): Call xembed_set_info if embedded.
3025 (x_term_init): Initialize Xatom_XEMBED.
3026 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
3027 (x_iconify_frame): Ditto.
3028
3029 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
3030 (enum xembed_info, enum xerm srmbed_message, enum xembed_focus)
3031 (enum xembed_modifier, enum xembed_accelerator): New.
3032 (xembed_set_info, xembed_send_message): Declare.
3033 (FRAME_X_EMBEDDED_P): New.
3034
3035 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
3036 gtk_plug_new.
3037
3038 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
3039 window ID of a frame.
3040 (x_window): Reparent frame if embedded.
3041 (Fx_create_frame): Don't set border width if embedded.
3042
3043 * emacs.c (USAGE3): Add --parent-id
3044 (standard_args): Ditto.
3045
3046 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
3047
3048 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
3049
3050 2008-02-07 Jim Meyering <meyering@redhat.com>
3051
3052 Use "do...while (0)", not "if (1)...else" in macro definitions.
3053 The latter provokes a warning from gcc about the empty else, when
3054 followed by ";". Also, without that trailing semicolon, it would
3055 silently swallow up any following statement.
3056 * syntax.h (SETUP_SYNTAX_TABLE)
3057 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
3058 * buffer.h (DECODE_POSITION): Likewise.
3059 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
3060 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
3061 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
3062 (FETCH_CHAR_ADVANCE): Likewise.
3063 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
3064
3065 2008-02-07 Jim Meyering <meyering@redhat.com>
3066
3067 * lread.c [lint]: Don't include <sys/inode.h>.
3068
3069 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
3070
3071 * xselect.c (x_handle_dnd_message):
3072 * xmenu.c (digest_single_submenu, xmenu_show):
3073 * xdisp.c (with_echo_area_buffer_unwind_data)
3074 (format_mode_line_unwind_data, unwind_format_mode_line)
3075 (display_menu_bar):
3076 * eval.c (Ffetch_bytecode):
3077 * doc.c (store_function_docstring):
3078 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
3079 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
3080 * buffer.c (add_overlay_mod_hooklist): Use ASET.
3081
3082 2008-02-07 Kenichi Handa <handa@m17n.org>
3083
3084 * ftxfont.c (ftxfont_open): Don't set
3085 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
3086
3087 * ftfont.c (ftfont_open): Fix previous change.
3088
3089 2008-02-06 Jason Rumney <jasonr@gnu.org>
3090
3091 * w32font.c (w32font_text_extents): Fill in lbearing metric.
3092 Use cached metrics for ASCII characters.
3093 (w32font_open_internal): Don't set font's owning_frame.
3094 Cache metrics for ASCII characters.
3095
3096 * w32font.h (struct w32font_info): Add ascii_metrics.
3097 Remove owning_frame.
3098
3099 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
3100
3101 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
3102 to negative value.
3103
3104 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
3105
3106 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
3107
3108 * charset.c (syms_of_charset): Set QCtest and Qeq.
3109
3110 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
3111
3112 * process.c (Fstart_process):
3113 * callproc.c (Fcall_process): Handle the case where
3114 Funhandled_file_name_directory returns nil.
3115
3116 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
3117 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
3118 * font.c (check_gstring): Use them and AREF to access the vector before
3119 we know it's really a gstring.
3120 (Ffont_shape_text): Fix typo.
3121 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Oject mixups.
3122
3123 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
3124 Declare.
3125
3126 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
3127
3128 2008-02-05 Jason Rumney <jasonr@gnu.org>
3129
3130 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
3131 Set smallest_font_height and smallest_char_width in display info.
3132
3133 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
3134
3135 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
3136
3137 2008-02-05 Miles Bader <miles@gnu.org>
3138
3139 * xfaces.c (get_lface_attributes, merge_named_face)
3140 (lookup_named_face, lookup_derived_face, realize_named_face):
3141 Revert 2008-02-01 change by cyd@stupidchicken.com.
3142
3143 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
3144
3145 * fontset.c (Ffontset_info): Handle the case of inhibitting the
3146 fallback fonts.
3147 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
3148
3149 2008-02-04 Jason Rumney <jasonr@gnu.org>
3150
3151 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
3152 set full_name.
3153 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
3154
3155 2008-02-03 Jason Rumney <jasonr@gnu.org>
3156
3157 * makefile.w32-in (OBJ1): Include font.o here.
3158 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
3159
3160 2008-02-02 Jason Rumney <jasonr@gnu.org>
3161
3162 * makefile.w32-in (temacs): Bump EMHEAP to 21.
3163
3164 2008-02-01 Jason Rumney <jasonr@gnu.org>
3165
3166 * s/cygwin.h: Define VIRT_ADDR_VARIES.
3167
3168 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
3169
3170 2008-02-01 Andreas Schwab <schwab@suse.de>
3171
3172 * Makefile.in (shortlisp, lisp): Update for rename of
3173 ../lisp/language/myanmar.el.
3174
3175 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
3176
3177 * xfaces.c (get_lface_attributes): Delete function.
3178 (merge_named_face, lookup_named_face, lookup_derived_face)
3179 (realize_named_face): Call lface_from_face_name directly, and use
3180 the fact that merge_face_vectors does not alter its FROM argument.
3181
3182 2008-02-01 Jason Rumney <jasonr@gnu.org>
3183
3184 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
3185 input in the default locale. Handle non-Unicode multibyte input.
3186
3187 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3188
3189 * fontset.c (reorder_font_vector): Exclude nil elements from the
3190 font group. Don't try multiple fonts.
3191 (fontset_font): Adjust for the above change.
3192 (Finternal_char_font): Return nil if the found font doesn't
3193 contain the character ch.
3194
3195 * Makefile.in (lisp, shortlisp): Add cham.el.
3196
3197 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3198
3199 * font.h (FONTP): Make it return 1 also for a font-object.
3200
3201 * .gdbinit (xfontset): New function.
3202
3203 * font.c (font_find_for_lface): Check if the character C is
3204 supported or not only for the first font.
3205
3206 * fontset.c (reorder_font_vector): Fix typo.
3207 (fontset_find_font): Don't add a font-spec specifying a script.
3208 Use 0 (not Qt) for the indication of empty font-group. Change the
3209 format of RFONT-DEF. Return Qt if no font in the font-group
3210 support the character.
3211 (fontset_font): Adjust for the above change. If no font was
3212 found the character, remember that.
3213 (face_for_char): Adjust for the change of RFONT-DEF.
3214 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
3215 no font for the target.
3216 (Finternal_char_font): Adjust for the change of RFONT-DEF.
3217
3218 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3219
3220 * font.c (font_load_for_face): Handle the case that the font in
3221 face->lface is a string.
3222
3223 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3224
3225 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
3226
3227 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3228
3229 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
3230 Fix previous change. If the frame is not on a window system,
3231 signal an error.
3232
3233 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3234
3235 * coding.c (decode_coding_object, encode_coding_object): Adjust
3236 marker positions after conversion.
3237
3238 * lisp.h (struct Lisp_Marker): New member need_adjustment.
3239
3240 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3241
3242 * font.c (font_find_for_lface): Fix the handling of the return
3243 value of font_has_char.
3244 (Ffont_shape_text): Fix previous change.
3245
3246 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
3247 (fontset_ref_and_range): Delete it.
3248 (fontset_find_font): Call char_table_ref_and_range instead of
3249 FONTSET_REF_AND_RANGE.
3250 (make_fontset): Don't setup font groups of Latin here.
3251 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
3252 (new_fontset_from_font): Make the specified font the default for
3253 all Latin characters.
3254
3255 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3256
3257 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
3258 is on a window system before accessing the fontset of the frame.
3259
3260 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3261
3262 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
3263
3264 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
3265 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
3266
3267 * font.c (Ffont_shape_text): If the font driver doesn't have a
3268 shaper function, make zero-width glyphs to have at least one-pixel
3269 width. Fix setting of `to' field of glyphs.
3270
3271 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3272
3273 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
3274 glyphs.
3275
3276 * font.h (struct font_driver): Improve docstring of member `shape'.
3277
3278 2008-02-01 Kenichi Handa <handa@m17n.org>
3279
3280 * composite.c (syms_of_composite): Fix docstring of
3281 auto-composition-function.
3282
3283 * font.h (LGLYPH_SIZE): New macro.
3284
3285 * font.c (Ffont_fill_gstring): Stop filling when a character not
3286 supported by the font is found.
3287 (Ffont_shape_text): When a shape callback function returns nil,
3288 try at most two more times with larger gstring.
3289 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
3290
3291 * xdisp.c (handle_auto_composed_prop): Change the argument to
3292 auto-composition-function.
3293
3294 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
3295 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
3296 Lispy glyph and store it in the lgstring.
3297
3298 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
3299
3300 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
3301
3302 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3303
3304 * font.c (Ffont_shape_text): Avoid unnecessary composition.
3305
3306 * fontset.c (Vfont_encoding_charset_alist): New variable.
3307 (syms_of_fontset): DEFVAR it.
3308 (reorder_font_vector, fontset_find_font): Optimize for the case of
3309 no need of reordering.
3310 (face_for_char): Map the charset property by
3311 Vfont_encoding_charset_alist.
3312
3313 2008-02-01 Jason Rumney <jasonr@gnu.org>
3314
3315 * w32font.c (logfonts_match): Don't check adstyle here.
3316 (font_matches_spec): Check here against physical font instead.
3317 (add_font_entity_to_list): Avoid some substitutions.
3318
3319 * font.c (font_parse_fcname): Default weight and slant to normal.
3320 (font_score): Prefer normal fonts if weight or slant unspecified.
3321 (font_score) [WINDOWSNT]: Scale weight difference down to closer
3322 match freetype scores.
3323
3324 2008-02-01 Jason Rumney <jasonr@gnu.org>
3325
3326 * w32font.c (w32font_text_extents): Don't use the frame stored in the
3327 font, as it may have been deleted.
3328 (w32_enumfont_pattern_entity): Map generic family to adstyle using
3329 most common hyphenless variation.
3330 (logfonts_match): Check generic family.
3331 (font_matches_spec): Don't check generic family here.
3332 (fill_in_logfont): Set generic family based on adstyle.
3333
3334 * w32font.h (w32font_get_cache): Update declaration.
3335
3336 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3337
3338 * ftfont.c (ftfont_get_cache): Adjust the argument type.
3339
3340 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
3341 If none of the new drivers are available, call font_update_drivers
3342 with the old drivers.
3343
3344 * w32font.c (w32font_get_cache): Adjust the argument type.
3345
3346 * xfont.c (xfont_get_cache): Adjust the argument type.
3347
3348 * font.h (struct font_driver): Change argument type of get_cache.
3349
3350 * xftfont.c (xftfont_start_for_frame): Delete prototype.
3351
3352 * font.c (Ffont_get): Fix arguments to Fassoc.
3353 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
3354 (font_clear_cache): New function.
3355 (font_list_entities, font_matching_entity): Use font_get_cache.
3356 (font_update_drivers): Call font_clear_cache when finishing a driver.
3357
3358 * fontset.c (fontset_find_font): Fix previous change.
3359
3360 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3361
3362 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
3363 dpyinfo->font_table.
3364 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
3365 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
3366
3367 * font.c (font_at): Handle the case that the arg C is negative.
3368 Handle the unibyte case.
3369 (Ffont_at): Call font_at with the arg C -1.
3370
3371 * xdisp.c (handle_auto_composed_prop): Don't get a character at
3372 the position here, and call font_at with the arg C -1.
3373 Don't check the range of the existing composition at the point.
3374
3375 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3376
3377 * fontset.c (fontset_add): New args charset_id and family.
3378 Change caller.
3379 (load_font_get_repertory, fontset_find_font): Assume that
3380 font_spec is always a font-spec object.
3381 (Fset_fontset_font): Always store a font-spec object in a fontset.
3382
3383 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
3384 instead of get_property_and_range.
3385
3386 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3387
3388 * xftfont.c (struct xftfont_info): Delete the member ft_face.
3389 (xftfont_open): Don't keep locking face.
3390 (xftfont_close): Don't unlock face.
3391 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
3392
3393 * fontset.c (fontset_find_font): Don't prefer a font of
3394 supplementary charset.
3395
3396 2008-02-01 Kenichi Handa <handa@m17n.org>
3397
3398 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
3399 script, langsys_tag to langsys, new member script.
3400 (OTF_TAG_STR): Terminate by '\0'.
3401 (ftfont_get_open_type_spec): If :otf prop is is spec, Limit the
3402 listing to the script specified in that property. Fix arg to
3403 OTF_check_features.
3404
3405 2008-02-01 Jason Rumney <jasonr@gnu.org>
3406
3407 * w32font.h: New file.
3408
3409 * w32font.c: Include it.
3410 (struct w32font_info): Add owning_frame field. Move to w32font.h.
3411 (w32font_open): Set owning_frame.
3412 (w32font_text_extents): Use owning_frame.
3413 (struct font_callback_data): Add opentype_only field.
3414 (add_font_entity_to_list): Use it to filter fonts.
3415 Don't check against full name.
3416 (w32font_list_internal): New function.
3417 (w32font_list): Use it.
3418 (w32font_match_internal): New function.
3419 (w32font_match): Use it.
3420 (w32font_open_internal): New function.
3421 (w32font_open): Use it.
3422 (w32font_get_cache, w32font_close, w32font_has_char)
3423 (w32font_encode_char, w32font_text_extents, w32font_draw):
3424 Make non-static.
3425
3426 * makefile.w32-in (w32font.o): Depend on w32font.h.
3427
3428 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3429
3430 * charset.c (Fdefine_charset_internal): Record a supplementary
3431 charset at the tail of Vcharset_order_list.
3432
3433 * font.c (Ffont_shape_text): Fix the return value.
3434
3435 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
3436
3437 * xdisp.c (handle_auto_composed_prop): Fix previous change.
3438
3439 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3440
3441 * ftfont.c (struct OpenTypeSpec): New struct.
3442 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
3443 (ftfont_get_open_type_spec): New function.
3444 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
3445
3446 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
3447
3448 2008-02-01 Jason Rumney <jasonr@gnu.org>
3449
3450 * w32font.c (add_font_entity_to_list): Compare only the beginning
3451 of full name.
3452
3453 2008-02-01 Kenichi Handa <handa@m17n.org>
3454
3455 * xdisp.c (handle_auto_composed_prop): Simplify the code.
3456 Never return HANDLED_RECOMPUTE_PROPS.
3457
3458 2008-02-01 Kenichi Handa <handa@m17n.org>
3459
3460 * font.c (font_gstring_produce): Delete it.
3461
3462 * composite.h (COMPOSITION_METHOD):
3463 Handle COMPOSITION_WITH_GLYPH_STRING.
3464
3465 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3466
3467 * xfont.c (Qx): Delete.
3468 (syms_of_xfont): Don't initialize Qx.
3469
3470 * composite.h (enum composition_method):
3471 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
3472
3473 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3474
3475 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
3476 (choose_face_font): Accept new form of font-spec.
3477
3478 * frame.h (font_driver_list): Declare it unconditionally.
3479 (struct frame): Define members font_driver_list and font_data_list
3480 unconditionally.
3481
3482 * fontset.c: Include "font.h" unconditionally.
3483 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
3484 (Fset_fontset_font): Accept a font-spec object.
3485
3486 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
3487 PIXEL_SIZE part a wild card.
3488
3489 * dispextern.h (struct glyph_string): Define members clip and
3490 num_clips unconditionally.
3491 (struct face): Define members font_info and extra unconditionally.
3492
3493 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
3494 ftfont_info only when HAVE_LIBOTF is defined.
3495
3496 2008-02-01 Andreas Schwab <schwab@suse.de>
3497
3498 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
3499 and end.
3500
3501 2008-02-01 Jason Rumney <jasonr@gnu.org>
3502
3503 * w32font.c (w32font_driver): Add new fields.
3504
3505 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3506
3507 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
3508 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
3509 (LIBES): Add @M17N_FLT_CFLAGS@.
3510
3511 * composite.c (compose_text): Don't treat the new style
3512 composition specially.
3513
3514 * emacs.c (main): Call syms_of_font unconditionally.
3515
3516 * font.h (FONT_ENTITY_NOT_LOADABLE)
3517 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
3518 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
3519 (struct font_driver): New member shape.
3520 (font_registry_charsets): Extern it.
3521 (font_find_for_lface, font_prepare_composition): Adjust prototype.
3522 (font_otf_capability, font_drive_otf): Delete their externs.
3523
3524 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
3525 (font_charset_alist, font_registry_charsets): Move from xfont.c
3526 and rename.
3527 (font_prop_validate_otf): New function.
3528 (font_property_table): Register it for QCotf.
3529 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
3530 (font_drive_otf): Delete.
3531 (font_prepare_composition): New arg F. Adjust for the change of
3532 lispy gstring.
3533 (font_find_for_lface): New arg C.
3534 (font_load_for_face): Adjust for the change of font_find_for_lface.
3535 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
3536 lispy gstring.
3537 (Ffont_shape_text): New function.
3538 (Fopen_font): If the font size is not given, use 12-pixel.
3539 (Ffont_at): New arg STRING.
3540 (syms_of_font): Initalize font_charset_alist.
3541 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
3542 conditionally.
3543
3544 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
3545 fonts of the same font-spec. Change the format of RFONT-DEF.
3546 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
3547 Adjust for the change of RFONT-DEF.
3548 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
3549
3550 * ftfont.h: New file.
3551
3552 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
3553 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
3554 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
3555 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
3556 font_otf_capability and font_drive_otf, set ftfont_shape.
3557 (ftfont_list): Adjust for the change of :otf property value.
3558 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
3559 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
3560 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
3561 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.s
3562 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
3563 (otf_gstring, gstring, m17n_flt_initialized): New variables.
3564
3565 * w32term.c (x_draw_composite_glyph_string_foreground):
3566 Adjust for the change of lispy gstring.
3567
3568 * xdisp.c (handle_composition_prop): Adjust for the change of
3569 lispy gstring. Call a function for auto-composition with the
3570 third arg it->window.
3571 (fill_composite_glyph_string): Adjust for the change of lispy string.
3572 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
3573
3574 * xfaces.c (set_font_frame_param): Adjust for the change of
3575 font_find_for_lface.
3576
3577 * xfont.c (x_font_charset_alist): Move to font.c and rename.
3578 (xfont_registry_charsets): Likewise. Change caller.
3579 (syms_of_xfont): Don't handle x_font_charset_alist.
3580
3581 * xftfont.c: Include "ftfont.h".
3582 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
3583 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
3584 (xftfont_close) [HAVE_LIBOTF]: Close otf.
3585 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
3586 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
3587 Set xftfont_driver.shape to xftfont_shape.
3588
3589 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
3590 the change of lispy gstring.
3591
3592 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3593
3594 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
3595
3596 2008-02-01 Jason Rumney <jasonr@gnu.org>
3597
3598 * w32font.c (w32font_draw): Fill background manually.
3599
3600 2008-02-01 Jason Rumney <jasonr@gnu.org>
3601
3602 * font.c (Qfontp): Remove unused symbol.
3603 (QCantialias): New symbol.
3604 (syms_of_font): Define it.
3605 (font_property_table): Set a validator for QCantialias.
3606
3607 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
3608 Define if not already.
3609 (QCfamily): Share with xfaces.c.
3610 (Qstandard, Qsubpixel, Qnatural): New symbols.
3611 (syms_of_w32font): Define them. Don't define QCfamily here.
3612 (w32_antialias_type, lispy_antialias_type): New functions.
3613 (w32_enumfont_pattern_entity): New arg requested_font.
3614 Set antialias parameter if non-default was requested.
3615 (fill_in_logfont): Fill in lfQuality if :antialias specified.
3616
3617 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3618
3619 * lread.c (read1): Undo the previous change.
3620
3621 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
3622
3623 * frame.c (Fdelete_frame): Call font_update_drivers only when
3624 USE_FONT_BACKEND is defined.
3625
3626 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3627
3628 * font.h (struct font_bitmap): New member bits_per_pixel.
3629 (struct font_driver): New members start_for_frame and end_for_frame.
3630 (struct font_data_list): New struct.
3631 (font_put_frame_data, font_get_frame_data): Extern them.
3632
3633 * frame.h (struct frame): New member font_data_list.
3634
3635 * font.c (font_update_drivers): Call driver->start_for_frame and
3636 driver->end_for_frame at proper timings.
3637 (font_put_frame_data, font_get_frame_data): New functions.
3638 (Ffont_spec): Add usage in the docstring.
3639
3640 * frame.c (make_frame): Initialize f->font_data_list to NULL.
3641 (Fdelete_frame): Call font_update_drivers.
3642
3643 * xftfont.c (struct xftface_info): Delete the member xft_draw.
3644 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
3645 (xftfont_get_xft_draw): New function.
3646 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
3647 (xftfont_end_for_frame): New function.
3648 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
3649
3650 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
3651 Change argument. Cache GCs in the per-frame data.
3652 (struct ftxfont_frame_data): New struct.
3653 (ftxfont_draw_bitmap): New arg gc_fore and flush.
3654 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
3655 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
3656 (ftxfont_end_for_frame): New function.
3657 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
3658
3659 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
3660
3661 2008-02-01 Kenichi Handa <handa@m17n.org>
3662
3663 * xselect.c (Vselection_coding_system)
3664 (Vnext_selection_coding_system): Delete them.
3665 (syms_of_xselect): Don't declare selection-coding-system and
3666 next-selection-coding-system. They are declared in select.el.
3667
3668 2008-02-01 Jason Rumney <jasonr@gnu.org>
3669
3670 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
3671
3672 * w32fns.c: Include imm.h.
3673 (get_composition_string_fn, get_ime_context_fn): New optional
3674 system functions.
3675 (globals_of_w32fns): Load them from imm32.dll.
3676 (ignore_ime_char): New flag.
3677 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
3678 WM_IME_ENDCOMPOSITION messages.
3679
3680 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
3681 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
3682
3683 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3684
3685 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
3686 (READCHAR_REPORT_MULTIBYTE): New macro.
3687 (readchar): New 2nd arg MULTIBYTE.
3688 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
3689 Make symbol's name multibyte according to the multibyteness of the
3690 source.
3691
3692 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3693
3694 * xfaces.c (face_for_overlay_string): Call lookup_face with
3695 correct arguments (fix of synching with the trunk).
3696
3697 2008-02-01 Kenichi Handa <handa@m17n.org>
3698
3699 * font.c (font_prop_validate_symbol, font_prop_validate_style)
3700 (font_prop_validate_non_neg, font_prop_validate_spacing):
3701 Delete argument prop_index.
3702 (font_property_table): Change arguments to validater. Change Callers.
3703 (font_lispy_object): Delete.
3704 (font_at): Use font_find_object instead fo font_lispy_object.
3705
3706 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3707
3708 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
3709 and file names.
3710
3711 2008-02-01 Jason Rumney <jasonr@gnu.org>
3712
3713 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
3714 (font_matches_spec): Remove debug output.
3715 (add_font_entity_to_list): Avoid using substituted fonts.
3716
3717 2008-02-01 Jason Rumney <jasonr@gnu.org>
3718
3719 * doc.c (Fsnarf_documentation):
3720 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
3721
3722 2008-02-01 Miles Bader <miles@gnu.org>
3723
3724 * dispextern.h (struct glyph_row): Only define "clip" field if
3725 HAVE_WINDOW_SYSTEM is defined.
3726
3727 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
3728
3729 Fix up multi-tty merge.
3730
3731 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
3732 and indentation.
3733
3734 * xfaces.c (free_realized_face, clear_face_gcs):
3735 Include font_done_for_face in the input_blocked section, just in case.
3736
3737 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
3738 (get_char_face_and_encoding): Undo last change and remove the *other*
3739 duplicate definition (i.e. keep the one that's better scoped and that
3740 includes code for the font-backend).
3741
3742 * terminal.c (create_terminal): Default keyboard_coding to
3743 `no-conversion' and terminal_coding to `undecided'.
3744
3745 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
3746
3747 * fontset.c (free_realized_fontsets): Check that the table entry does
3748 contain a fontset before trying to compare it to `base'.
3749
3750 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
3751 syms_of_charset, and syms_of_coding earlier because init_window_once
3752 now needs Vcoding_system_hash_table to be setup.
3753
3754 * coding.h (default_buffer_file_coding): Remove.
3755
3756 * coding.c (default_buffer_file_coding): Remove.
3757 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
3758 than ->symbol, and use the terminal-local coding system.
3759 (syms_of_coding): Don't setup the coding-systems that are not
3760 terminal-local.
3761 (Fdefine_coding_system_internal): Use XCAR/XCDR.
3762
3763 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
3764 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
3765
3766 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
3767 in chartab.c and were re-added here by mistake.
3768 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
3769
3770 * doc.c (Fsnarf_documentation):
3771 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
3772 src to etc.
3773
3774 * ChangeLog.10: Add mistakenly removed entry.
3775
3776 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
3777
3778 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
3779
3780 2008-02-01 Miles Bader <miles@gnu.org>
3781
3782 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
3783 Add extra args to FACE_FOR_CHAR.
3784
3785 2008-02-01 Kenichi Handa <handa@m17n.org>
3786
3787 * keymap.c (where_is_internal_1): If key is a cons, store the copy
3788 in sequence.
3789
3790 * chartab.c (map_sub_char_table, map_char_table): If the range
3791 contains just one character, call the function with that character
3792 even if the depth is not 3.
3793
3794 2008-02-01 Jason Rumney <jasonr@gnu.org>
3795
3796 * w32font.c (w32font_text_extents): Calculate metrics for the
3797 whole string.
3798
3799 2008-02-01 Jason Rumney <jasonr@gnu.org>
3800
3801 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
3802
3803 2008-02-01 Jason Rumney <jasonr@gnu.org>
3804
3805 * w32term.c (x_set_glyph_string_clipping): Use
3806 get_glyph_string_clip_rects.
3807 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
3808 Adjust for the change of struct glyph_string.
3809
3810 * w32font.c (w32font_draw): Do clipping here.
3811
3812 2008-02-01 Kenichi Handa <handa@m17n.org>
3813
3814 * xftfont.c (xftfont_draw): Adjust for the change of struct
3815 glyph_string.
3816
3817 * xterm.c (x_set_glyph_string_clipping): Use
3818 get_glyph_string_clip_rects.
3819 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
3820 Adjust for the change of struct glyph_string.
3821
3822 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
3823 the resulting clip(s}.
3824 (expose_overlaps): Add arg r. Change callers. Set it to
3825 row->clip temporarily.
3826 (expose_window): Redraw rows overlapping the exposed area.
3827
3828 * dispextern.h (struct glyph_row): New member clip.
3829 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
3830 clip_height, new member clip, and num_clips.
3831
3832 2008-02-01 Kenichi Handa <handa@m17n.org>
3833
3834 * data.c (Fchar_or_string_p): Fix docstring.
3835
3836 2008-02-01 Kenichi Handa <handa@m17n.org>
3837
3838 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
3839 create a temporal XftDraw object.
3840
3841 2008-02-01 Kenichi Handa <handa@m17n.org>
3842
3843 * font.c (Ffontp): Fix docstring.
3844
3845 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
3846 strong evidence of ISO-2022.
3847
3848 2008-02-01 Kenichi Handa <handa@m17n.org>
3849
3850 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
3851 SYNTAX_ENTRY_FOLLOW_PARENT.
3852
3853 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
3854
3855 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
3856 its type.
3857 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
3858 Update to the new type of weak_hash_tables and next_weak.
3859
3860 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
3861 a plain C pointer to Lisp_Hash_Table.
3862
3863 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
3864 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
3865 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
3866 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
3867 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
3868 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
3869 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
3870 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
3871 (GC_EQ): Remove since they've been identical to their non-GC_
3872 alter-egos ever since the markbit was eradicated.
3873
3874 * alloc.c:
3875 * buffer.c:
3876 * buffer.h:
3877 * data.c:
3878 * fileio.c:
3879 * filelock.c:
3880 * fns.c:
3881 * frame.h:
3882 * lisp.h:
3883 * macterm.c:
3884 * print.c:
3885 * process.c:
3886 * w32fns.c:
3887 * w32menu.c:
3888 * w32term.c:
3889 * xfns.c:
3890 * xmenu.c:
3891 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
3892
3893 2008-02-01 Kenichi Handa <handa@m17n.org>
3894
3895 * chartab.c (map_sub_char_table): Make it work for the top-level
3896 char-table. Fix handling of parent char-table.
3897 (map_char_table): Adjust for the above change.
3898
3899 2008-02-01 Jason Rumney <jasonr@gnu.org>
3900
3901 * w32font.c (Qgdi): Rename from Qw32.
3902
3903 2008-02-01 Jason Rumney <jasonr@gnu.org>
3904
3905 * w32bdf.c (get_quoted_string): Make function static.
3906
3907 2008-02-01 Kenichi Handa <handa@m17n.org>
3908
3909 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
3910 bigger ascent and descent than those of the font, use them as
3911 font's ascent and descent.
3912
3913 2008-02-01 Kenichi Handa <handa@m17n.org>
3914
3915 * Makefile.in (${lispsource}international/charprop.el): Move this
3916 target within "#ifdef HAVE_UNIDATA" and "#endif".
3917
3918 2008-02-01 Kenichi Handa <handa@m17n.org>
3919
3920 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
3921 (shortlisp): Add ../lisp/language/tai-viet.el.
3922
3923 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
3924
3925 * Makefile.in (${lispsource}international/charprop.el): Depend on
3926 temacs${EXEEXT}.
3927
3928 2008-02-01 Jason Rumney <jasonr@gnu.org>
3929
3930 * w32font.c (w32font_close): Delete the GDI font object.
3931
3932 * w32menu.c: Include character.h.
3933
3934 * w32proc.c: Likewise.
3935
3936 * w32select.c: Likewise.
3937
3938 * makefile.w32-in (w32proc.o): Depend on character.h.
3939
3940 2008-02-01 Jason Rumney <jasonr@gnu.org>
3941
3942 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
3943
3944 * w32menu.c (syms_of_w32menu): Likewise.
3945
3946 * w32proc.c (syms_of_ntproc): Likewise.
3947
3948 * w32select.c (syms_of_w32select): Likewise.
3949
3950 * w32term.c (syms_of_w32term): Likewise.
3951
3952 2008-02-01 Jason Rumney <jasonr@gnu.org>
3953
3954 * w32font.c (w32font_draw): Delete brush after using it.
3955
3956 2008-02-01 Jason Rumney <jasonr@gnu.org>
3957
3958 * w32font.c (w32font_open): Don't set font_idx.
3959 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
3960 to font settings.
3961 (w32font_draw): Fill background explicitly.
3962
3963 2008-02-01 Jason Rumney <jasonr@gnu.org>
3964
3965 * w32term.c (w32_initialize): Don't call w32font_initialize.
3966
3967 * w32font.c (w32font_info): Remove subranges.
3968 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
3969 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
3970 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
3971 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
3972 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
3973 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
3974 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
3975 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
3976 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
3977 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
3978 New symbols.
3979 (font_callback_data): New struct.
3980 (w32font_list, w32font_match): Use it.
3981 (w32font_open): Don't populate subranges.
3982 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
3983 (w32font_encode_char): Always return unicode code-point as-is.
3984 (w32font_text_extents): Supply a tranformation matrix to
3985 GetGlyphOutline. Never look up by glyph index. Avoid looping
3986 twice. Use unicode version of GetTexExtentPoint32 instead of
3987 glyph index version.
3988 (set_fonts_frame): Remove
3989 (w32_enumfont_pattern_entity): Add frame parameter, use it to
3990 set frame parameter. Use backward compatible fake foundries.
3991 Save generic family in extra slot under QCfamily. Make width slot
3992 constant. Save QCspacing value. Save list of scripts instead of
3993 binary subranges.
3994 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
3995 (add_font_entity_to_list): Use font_callback_data struct. Filter
3996 unwanted fonts.
3997 (add_one_font_entity_to_list): Use font_callback_data struct.
3998 (w32_registry): Default to iso10646_1.
3999 (fill_in_logfont): Use dpi from extra slot. Don't bother with
4000 string font registries. Don't fill in font name if it is a generic
4001 family name, fill family instead. Use spacing, family and script
4002 extra info to fill pitch, family and charset fields.
4003 (list_all_matching_fonts): Use font_callback_data struct.
4004 (unicode_range_for_char): Remove.
4005 (font_supported_scripts): New function.
4006 (w32font_initialize): Remove.
4007 (syms_of_w32font): Update which symbols are defined.
4008
4009 2008-02-01 Jason Rumney <jasonr@gnu.org>
4010
4011 * font.c (font_pixel_size): Reverse assq_no_quit args.
4012
4013 * w32term.h (FONT_WIDTH): Report max width, not average.
4014 (FONT_MAX_WIDTH): Remove.
4015 (FONT_AVG_WIDTH): New macro.
4016
4017 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
4018 redefinition of FONT_WIDTH.
4019
4020 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
4021 (w32_cache_char_metrics): Use FONT_WIDTH.
4022
4023 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
4024
4025 2008-02-01 Jason Rumney <jasonr@gnu.org>
4026
4027 * w32font.c (w32font_open): Make lfHeight negative.
4028
4029 * w32fns.c (x_default_font_parameter): Use new style font name.
4030 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
4031
4032 2008-02-01 Jason Rumney <jasonr@gnu.org>
4033
4034 * w32font.c (QCsubranges): New symbol.
4035 (w32font_open, w32font_has_char): Get subranges from subproperty
4036 of extra.
4037 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
4038 (syms_of_w32font): Define :subranges symbol.
4039
4040 * font.c (font_put_extra): Expose externally.
4041
4042 * font.h (font_put_extra): Move declaration from font.c.
4043
4044 * font.c (Ffont_get): Use font driver to determine otf capability.
4045 (adjust_anchor): Check if driver defines anchor_point before using.
4046
4047 * w32font.c (w32font_open): Handle size, height and pixel_size better.
4048 (w32font_draw): Use options.
4049 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
4050 Fix detection of truetype fonts.
4051 (registry_to_w32_charset): Handle charsets other than iso8859-1
4052 expressed as lisp symbols.
4053 (w32_registry): Express charset as lisp symbol.
4054 (fill_in_logfont): Reverse pixel and point height logic.
4055 Don't set width here. Set quality to default.
4056
4057 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
4058 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
4059
4060 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
4061 Remove redundant loop and allocation.
4062
4063 * makefile.w32-in (font.o, w32font.o): New objects.
4064 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
4065 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
4066
4067 * xdisp.c (fill_composite_glyph_string): Make the first arg to
4068 STORE_XCHARB a valid l-value.
4069
4070 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
4071 calculations for non-Truetype fonts.
4072 (x_draw_glyph_string): Sync with xterm.c.
4073 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
4074 Remove redundant code.
4075 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
4076
4077 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
4078 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
4079
4080 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
4081 (x_to_w32_charset, w32_to_x_charset): Expose externally.
4082
4083 * w32font.c: New file for w32 font backend.
4084
4085 2008-02-01 Kenichi Handa <handa@m17n.org>
4086
4087 * term.c: Don't include "buffer.h" twice.
4088
4089 2008-02-01 Kenichi Handa <handa@m17n.org>
4090
4091 * character.c (Funibyte_string): New function.
4092 (syms_of_character): Defsubr it.
4093
4094 2008-02-01 Jason Rumney <jasonr@gnu.org>
4095
4096 * w32term.c [USE_FONT_BACKEND]:
4097 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
4098 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
4099 (x_draw_glyph_string, x_draw_glyph_string_foreground)
4100 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
4101 (x_free_frame_resources): Sync with xterm.c.
4102
4103 2008-02-01 Andreas Schwab <schwab@suse.de>
4104
4105 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
4106 char-table size.
4107
4108 2008-02-01 Kenichi Handa <handa@m17n.org>
4109
4110 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
4111
4112 2008-02-01 Kenichi Handa <handa@m17n.org>
4113
4114 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
4115 font_otf_gpos, add font_drive_otf.
4116
4117 * fontset.c (fontset_find_font): Pay attention to font size
4118 specified for a font.
4119 (reorder_font_vector): Check contents of font_def.
4120
4121 * font.c (struct otf_list): Delete it.
4122 (otf_list): Make it a lisp variable.
4123 (otf_open): Use lispy otf_list.
4124 (generate_otf_features): Rename from parse_gsub_gpos_spec.
4125 (check_otf_features): New function.
4126 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
4127 New functions.
4128 (font_drive_otf): New function merging font_otf_gsub and
4129 font_otf_gpos.
4130 (font_open_for_lface): New arg spec. Change argument order.
4131 (font_load_for_face): Adjust for the change of font_open_for_lface.
4132 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
4133 Ffont_otf_gpos.
4134 (syms_of_font): Staticpro otf_list. Delete defsubr of
4135 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
4136
4137 * xfaces.c (set_font_frame_param): Adjust for the change of
4138 font_open_for_lface.
4139
4140 * font.h (font_open_for_lface): Adjust prototype.
4141 (struct font_driver): Delete members otf_gsub and otf_gpos, add
4142 member otf_drive.
4143 (font_otf_gsub, font_otf_gpos): Delete externs.
4144 (font_drive_otf): Extern it.
4145
4146 2008-02-01 Kenichi Handa <handa@m17n.org>
4147
4148 * font.c (font_at): If the window W is not on a window system,
4149 return Qnil.
4150
4151 * coding.c (produce_chars, encode_coding): Don't call
4152 insert_from_gap if no characters to produce.
4153
4154 2008-02-01 Kenichi Handa <handa@m17n.org>
4155
4156 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
4157 Fclear_face_cache.
4158
4159 * xfaces.c (face_for_font): Check also face->font==font->font.font.
4160
4161 2008-02-01 Miles Bader <miles@gnu.org>
4162
4163 * emacs.c (main): Change default value of `enable_font_backend' to 1.
4164 Parse "--disable-font-backend" option.
4165 (standard_args): Add "--disable-font-backend" option.
4166
4167 2008-02-01 Kenichi Handa <handa@m17n.org>
4168
4169 * fontset.c (fontset_find_font): New function.
4170 (fontset_font): Use fontset_find_font.
4171 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
4172 Register the specified font for all Latin characters.
4173 (new_fontset_from_font): Register the specified font for all Latin
4174 characters.
4175 (dump_fontset): For a realized fontset, include the base fontset
4176 name in the returned vector.
4177
4178 2008-02-01 Kenichi Handa <handa@m17n.org>
4179
4180 * character.h (CHAR_STRING): Cast C to unsigned on calling
4181 char_string.
4182
4183 * character.c (char_string): Type of arg C changed to unsigned.
4184 Signal an error if C is an invalid character code.
4185
4186 * editfns.c (general_insert_function, Fchar_to_string):
4187 Use CHARACTERP, not INTEGERP.
4188
4189 2008-02-01 Kenichi Handa <handa@m17n.org>
4190
4191 * character.h (MIN_MULTIBYTE_LEADING_CODE)
4192 (MAX_MULTIBYTE_LEADING_CODE): New macros.
4193
4194 * regex.c (analyse_first): Fix for multibyte characters in "case
4195 charset:" and "case categoryspec:".
4196
4197 2008-02-01 Andreas Schwab <schwab@suse.de>
4198
4199 * Makefile.in (LIBES): Move standard libraries to the end.
4200
4201 2008-02-01 Kenichi Handa <handa@m17n.org>
4202
4203 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
4204 nonzero, don't shrink the buffer nextb.
4205
4206 * buffer.h (struct buffer_text): New member inhibit_shrinking.
4207
4208 * coding.c (coding_alloc_by_making_gap): New arg offset.
4209 (alloc_destination): Call coding_alloc_by_making_gap with the arg
4210 offset.
4211 (decode_coding_iso_2022): Update coding->safe_charsets.
4212 (decode_coding_gap): Temporarily set
4213 current_buffer->text->inhibit_shrinking to 1.
4214
4215 2008-02-01 Kenichi Handa <handa@m17n.org>
4216
4217 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
4218 indexing into elements of s->cmp and s->char2b.
4219
4220 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
4221
4222 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
4223
4224 2008-02-01 Kenichi Handa <handa@m17n.org>
4225
4226 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
4227 target_multibyte instead of multibyte.
4228 (re_match_2_internal): Call bcmp_translate with target_multibyte.
4229 (bcmp_translate): Change the argument name from multibyte to
4230 target_multibyte.
4231
4232 2008-02-01 Kenichi Handa <handa@m17n.org>
4233
4234 These changes are to compile a regexp into a pattern that can be
4235 used both for multibyte and unibyte targets.
4236
4237 * Makefile.in (search.o): Depend on charset.h.
4238
4239 * character.c (multibyte_char_to_unibyte_safe): New function.
4240
4241 * search.c: Include "charset.h".
4242 (compile_pattern_1): Delete argument multibyte. Don't set
4243 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
4244 (compile_pattern): Don't compare cp->buf.target_multibyte.
4245 Compare cp->buf.charset_unibyte.
4246 (compile_pattern): Set cp->buf.target_multibyte.
4247
4248 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
4249
4250 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
4251
4252 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
4253 multibyte. Change callers.
4254 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
4255 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
4256 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
4257 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
4258 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
4259 (regex_compile): Make the compiled pattern usable both for
4260 multibyte and unibyte targets.
4261 (analyse_first): Make the fastmap usable both for multibyte and
4262 unibyte targets.
4263 (TRANSLATE_VIA_MULTIBYTE): Delete.
4264 (re_match_2_internal): Pay attention to the case that the
4265 multibyteness of bufp and target may be different.
4266
4267 2008-02-01 Kenichi Handa <handa@m17n.org>
4268
4269 * xdisp.c (x_produce_glyphs): When a font is not found, make the
4270 empty box occupy at least one column width.
4271
4272 2008-02-01 Miles Bader <miles@gnu.org>
4273
4274 * Makefile.in: Remove redundant HAVE_XFT clause.
4275
4276 2008-02-01 Kenichi Handa <handa@m17n.org>
4277
4278 * xrdb.c (x_load_resources): Setup the default fontSet X reource.
4279
4280 2008-02-01 Kenichi Handa <handa@m17n.org>
4281
4282 * fontset.c (Finternal_char_font): Fix for the case of POSITION
4283 being nil.
4284
4285 2008-02-01 Kenichi Handa <handa@m17n.org>
4286
4287 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
4288
4289 2008-02-01 Kenichi Handa <handa@m17n.org>
4290
4291 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
4292
4293 2008-02-01 Kenichi Handa <handa@m17n.org>
4294
4295 * search.c (simple_search): Fix previous change.
4296
4297 2008-02-01 Kenichi Handa <handa@m17n.org>
4298
4299 * xftfont.c (ftfont_font_format): Extern declaration.
4300
4301 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
4302
4303 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
4304 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
4305
4306 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
4307 (ftfont_font_format): Fix previous change.
4308
4309 * font.h (Ffont_xlfd_name): EXFUN it.
4310
4311 * font.c (font_parse_xlfd): Fix the array size of `f'.
4312 (register_font_driver): Use EQ to compare driver->type.
4313
4314 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
4315 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
4316 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
4317
4318 2008-02-01 Kenichi Handa <handa@m17n.org>
4319
4320 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
4321 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
4322
4323 2008-02-01 Kenichi Handa <handa@m17n.org>
4324
4325 * xfont.c (xfont_open): Set font->format.
4326
4327 * xftfont.c (xftfont_open): Set font->format.
4328
4329 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
4330 (ftfont_list): Include FC_FONTFORMAT in FcObject.
4331 (ftfont_open): Set font->format.
4332 (ftfont_font_format): New function.
4333
4334 * font.h (struct font): New memeber format.
4335
4336 * font.c (Qopentype): New variable.
4337 (syms_of_font): Defsym it.
4338 (Fquery_font): Change the format of the last element of the return
4339 value.
4340
4341 2008-02-01 Kenichi Handa <handa@m17n.org>
4342
4343 * xfns.c (xic_create_xfontset): Try the default fontset name as a
4344 last resort.
4345
4346 2008-02-01 Kenichi Handa <handa@m17n.org>
4347
4348 * coding.c (detect_coding_charset): Fix detection of multi-byte
4349 charset.
4350
4351 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
4352
4353 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
4354
4355 2008-02-01 Kenichi Handa <handa@m17n.org>
4356
4357 * xdisp.c (get_next_display_element): Set it->face_id for the
4358 first component of a composition.
4359 (x_produce_glyphs): Check if the font is changed or not for composition.
4360
4361 2008-02-01 Kenichi Handa <handa@m17n.org>
4362
4363 (get_next_display_element): Set it->face_id for the
4364 first component of a composition.
4365 (x_produce_glyphs): Check if the font is changed or not for composition.
4366
4367 2008-02-01 Kenichi Handa <handa@m17n.org>
4368
4369 * fontset.c (Qlatin): New variable.
4370 (syms_of_fontset): Define it as a lisp symbol.
4371 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
4372
4373 2008-02-01 Kenichi Handa <handa@m17n.org>
4374
4375 * font.c (font_unparse_fcname): Pay attention to the case that
4376 some of font property is a null string.
4377
4378 2008-02-01 Kenichi Handa <handa@m17n.org>
4379
4380 * term.c: Include "composite.h".
4381 (encode_terminal_code): Output all components of composition.
4382 Check the size of encode_terminal_src.
4383 (produce_glyphs): For composition, call produce_composite_glyph.
4384 (append_composite_glyph, produce_composite_glyph): New functions.
4385
4386 * xdisp.c (x_produce_glyphs): In handling composition, if a font
4387 is not found, get font_info from the current ascii face.
4388
4389 2008-02-01 Kenichi Handa <handa@m17n.org>
4390
4391 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
4392 buffer-file-name to Qnil before calling insert_from_buffer.
4393
4394 * font.c (font_unparse_fcname): Pay attention to the case that
4395 foundry is a null string.
4396
4397 2008-02-01 Kenichi Handa <handa@m17n.org>
4398
4399 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
4400
4401 * font.c (Qunicode_sip): New variable.
4402 (syms_of_font): Declare it as a Lisp symbol.
4403
4404 * font.h (Qunicode_sip): Extern it.
4405
4406 2008-02-01 Kenichi Handa <handa@m17n.org>
4407
4408 * composite.c (get_composition_id): Pay attention to TAB component.
4409
4410 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
4411 TAB. Adjust for the change of s->char2b which always points to
4412 the first elememnt of allocated memory.
4413
4414 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
4415
4416 * xdisp.c (handle_composition_prop): Set it->c to the first
4417 non-TAB component.
4418 (fill_composite_glyph_string): Change argument.
4419 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
4420 (x_produce_glyphs): Fix handling of left/right padding.
4421
4422 2008-02-01 Kenichi Handa <handa@m17n.org>
4423
4424 * coding.c (detect_coding_system): Fix for handling off
4425 inhibit_iso_escape_detection. Fix for the case that no coding
4426 system is defined for a specific coding category.
4427
4428 2008-02-01 Kenichi Handa <handa@m17n.org>
4429
4430 * font.c (font_matching_entity): Delete unused local var.
4431
4432 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
4433 opening a font.
4434
4435 * fileio.c (Finsert_file_contents): On recovering a file, assume
4436 Unix-like eol.
4437 (choose_write_coding_system): On auto-saving a file, force
4438 Unix-like eol.
4439
4440 * coding.c (setup_coding_system): Fix setting of
4441 coding->common_flags based on eol_type.
4442 (coding_inherit_eol_type): If PARENT is not nil, be sure to
4443 inherit from it.
4444
4445 2008-02-01 Kenichi Handa <handa@m17n.org>
4446
4447 * alloc.c (NSTATICS): Increas to 0x600.
4448
4449 2008-02-01 Kenichi Handa <handa@m17n.org>
4450
4451 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
4452 (ftfont_list): Don't check :name property.
4453 (ftfont_match): New function.
4454 (ftfont_pattern_entity): If the pattern doesn't contain
4455 FC_SPACING, don't assuce FC_MONO.
4456
4457 * font.h (struct font_driver): New member `match'.
4458 (font_update_drivers): Adjust prototype.
4459
4460 * font.c (font_parse_fcname, font_parse_name): Don't change :name
4461 property of FONT.
4462 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
4463 them unconditionally.
4464 (font_matching_entity): New function.
4465 (font_open_by_name): Try font_matching_entity if exact match is
4466 not found.
4467 (font_update_drivers): Delete the arg FONT. Return a list of
4468 actually used backends. Don't free faces, font caches here.
4469 Don't store data in frame parameters. Don't call x_set_font.
4470 (Ffont_spec): Store :name property as is.
4471 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
4472 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
4473 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
4474 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
4475 Call font->driver->otf_gsub instead of font_otf_gsub.
4476
4477 * frame.c (x_set_font_backend): Do more works that were done in
4478 font_update_drivers before.
4479
4480 * xfont.c (xfont_match): New function.
4481 (xfont_driver): Set xfont_driver.match to xfont_match.
4482 (xfont_draw): Set font in GC if necessary.
4483
4484 * ftxfont.c (ftxfont_match): New function.
4485 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
4486
4487 * xftfont.c (xftfont_match): New function.
4488 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
4489
4490 2008-02-01 Kenichi Handa <handa@m17n.org>
4491
4492 * font.h (struct font): New member scalable.
4493 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
4494 (font_otf_gsub): Adjust prototype.
4495
4496 * font.c (font_otf_capability): Fix handling of the default langsys.
4497 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
4498 Check the contents of SPEC.
4499 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
4500 (check_gstring): New function.
4501 (REPLACEMENT_CHARACTER): New macro.
4502 (font_otf_gsub): New arg alternate_subst. Be sure to set all
4503 glyph codes of GSTRING.
4504 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
4505 (font_prepare_composition): Set cmp->glyph_len.
4506 (font_open_entity): Set font->scalable.
4507 (Ffont_get): Handle :otf property.
4508 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
4509 functions.
4510 (Fquery_font): Use font->font.full_name.
4511 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
4512 Sfont_otf_alternates.
4513
4514 * ftfont.c (ftfont_open): Set font->font.full_name and
4515 font->font.name properly. Fix calculation of font->font.height
4516 and font->min_width.
4517
4518 * ftxfont.c (ftxfont_create_gcs): New function.
4519 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
4520 (ftxfont_draw_backgrond): Fix filling region.
4521 (ftxfont_default_fid): New function.
4522 (ftxfont_open): Set xfotn->fid to the return value of
4523 ftxfont_default_fid.
4524 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
4525 (ftxfont_done_face): Free only GCs that are created by
4526 ftxfont_create_gcs.
4527 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
4528
4529 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
4530 Clip to src->width, etc (not src->clip_XXX).
4531
4532 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
4533 FontBackend frame parameter.
4534
4535 2008-02-01 Kenichi Handa <handa@m17n.org>
4536
4537 * font.h (struct font_driver_list): New member `on'.
4538 (Fclear_font_cache): EXFUN it.
4539 (font_update_drivers): Extern it.
4540
4541 * font.c (font_unparse_fcname): Fix typo (swidth->width).
4542 (font_list_entities): Check driver_list->on.
4543 (register_font_driver): Initalize `on' member to 0.
4544 (font_update_drivers): New function.
4545 (Fclear_font_cache): Check driver_list->on.
4546
4547 * frame.h (Qfont_backend): Extern it.
4548 (x_set_font_backend): Extern it.
4549
4550 * frame.c (Qfont_backend): New variable.
4551 (frame_parms): New element for font-backend.
4552 (x_set_font_backend): New function.
4553
4554 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
4555 FontBackend frame parameter.
4556 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
4557 x_set_font_backend.
4558
4559 * xfont.c (xfont_list): Don't try listing by :name property if the
4560 name is not for XLFD.
4561
4562 2008-02-01 Kenichi Handa <handa@m17n.org>
4563
4564 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
4565 (LGLYPH_SET_TO): New macros.
4566 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
4567 element of G is vector or not.
4568 (font_at): Extern it.
4569
4570 * font.c: Include window.h.
4571 (font_lispy_object): New function.
4572 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
4573 end of valid glyph.
4574 (font_close_object): Fix getting (struct font *).
4575 (font_at): New function.
4576 (Ffont_get): If FONT is a font-object, get entity from it.
4577 (Ffont_make_gstring): Initialize elements of glyphs with nil.
4578 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
4579 range check.
4580 (Ffont_at): New function.
4581 (syms_of_font): Defsubr Sfont_at.
4582
4583 * xdisp.c (it_props): Move the entry for Qauto_composed to just
4584 before the entry for Qcomposition.
4585 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
4586 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
4587 the font in gstring.
4588 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
4589 LGLYPH_FORM (g) to detect the end of valid glyph.
4590 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
4591 we are composing with gstring.
4592
4593 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
4594 Check if adjustment is vector or not.
4595
4596 * Makefile.in (font.o): Make it depends on window.h.
4597
4598 2008-02-01 Kenichi Handa <handa@m17n.org>
4599
4600 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
4601 adjustment is vector or not.
4602
4603 2008-02-01 Miles Bader <miles@gnu.org>
4604
4605 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
4606
4607 2008-02-01 Kenichi Handa <handa@m17n.org>
4608
4609 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
4610 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
4611 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
4612
4613 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
4614 (DEVICE_DELTA): Fix typo.
4615 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
4616 LGLYPH format.
4617
4618 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
4619 the change of LGLYPH format.
4620
4621 2008-02-01 Kenichi Handa <handa@m17n.org>
4622
4623 * ftfont.c (ftfont_list): Fix typo.
4624 (ftfont_build_basic_charsets): Don't include letters with diacritics.
4625
4626 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
4627
4628 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
4629
4630 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
4631 xftface_info is non-NULL.
4632
4633 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
4634
4635 * ftfont.c (ftfont_list): Move misplaced #endif.
4636
4637 2008-02-01 Kenichi Handa <handa@m17n.org>
4638
4639 * ftfont.c (ftfont_list): Pay attention to the case that
4640 FC_CAPABILITY is not defined.
4641
4642 2008-02-01 Kenichi Handa <handa@m17n.org>
4643
4644 * xftfont.c (xftfont_open): Set charset related members to -1.
4645
4646 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
4647 QCname.
4648 (ftfont_open): Set charset related members to -1.
4649
4650 * fontset.c (Votf_script_alist): New variable.
4651 (syms_of_fontset): Initialize it.
4652 (fontset_font): Delete unused variable.
4653
4654 * fontset.h (Votf_script_alist): Extern it.
4655
4656 * font.c (font_find_for_lface): Optimize code.
4657
4658 * font.h (font_close_object, font_merge_old_spec): Extern them.
4659
4660 2008-02-01 Kenichi Handa <handa@m17n.org>
4661
4662 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
4663 (syms_of_font): Initialize them.
4664 (font_pixel_size): Allow float value in dpi.
4665 (font_prop_validate_type): Delete.
4666 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
4667 Change caller.
4668 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
4669 (font_prop_validate_extra): Delete.
4670 (font_prop_validate_spacing): New function.
4671 (font_property_table): Add elements for all known properties.
4672 (get_font_prop_index): Rename from check_font_prop_name. New
4673 argument FROM. Change caller.
4674 (font_prop_validate): Validate all known properties.
4675 (font_put_extra): Delete argument force. Change caller.
4676 (font_expand_wildcards): Make it static. Fix the way of shrinking
4677 the possible range.
4678 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
4679 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
4680 Change caller.
4681 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
4682 (font_parse_fcname): Delete argument merge. Fix parsing of point
4683 size. Don't validate properties values here. Change caller.
4684 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
4685 (font_open_by_name): Delete unused variable.
4686 (Ffont_spec): Likewise. Validate property values.
4687 (Ffont_match_p): New function.
4688
4689 * font.h (QCscalable): Extern it.
4690 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
4691
4692 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
4693
4694 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
4695 (xfont_list_pattern): New function.
4696 (xfont_list): Use xfont_list_pattern.
4697
4698 2008-02-01 Kenichi Handa <handa@m17n.org>
4699
4700 * font.h (Flist_fonts): EXFUN it.
4701
4702 2008-02-01 Jason Rumney <jasonr@gnu.org>
4703
4704 * w32term.c (w32_initialize): Add back smoothing_type and
4705 smoothing_enabled definitions.
4706
4707 2008-02-01 Kenichi Handa <handa@m17n.org>
4708
4709 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
4710 s->face->font on determining underline position.
4711
4712 2008-02-01 Kenichi Handa <handa@m17n.org>
4713
4714 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
4715 (font_has_char): Accept font-object too.
4716 (font_find_for_lface): Try at first with a size specified in face.
4717
4718 2008-02-01 Kenichi Handa <handa@m17n.org>
4719
4720 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
4721 font_open_by_name.
4722
4723 2008-02-01 Kenichi Handa <handa@m17n.org>
4724
4725 * font.h (QCspacing, QCdpi): Extern them.
4726 (enum font_spacing): New enum.
4727 (FONT_PIXEL_SIZE_QUANTUM): New macro.
4728
4729 * font.c (POINT_TO_PIXEL): Don't divice POINT by 10.
4730 (QCspacing, QCdpi): New variables.
4731 (syms_of_font): Initialize them.
4732 (font_pixel_size): New function.
4733 (font_put_extra): New function.
4734 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
4735 in FONT_EXTRA.
4736 (font_parse_fcname): Handle enumenrated values (e.g. bold).
4737 Fix handling font size. Add QCname property that contains only
4738 unknown properties.
4739 (font_score): Change argument. Change caller. Pay attention to
4740 FONT_PIXEL_SIZE_QUANTUM.
4741 (font_sort_entites, font_list_entities, font_find_for_lface)
4742 (font_open_for_lface, font_open_by_name): Fix handling of font size.
4743 (Ffont_spec): Add QCname property that contains only unknown properties.
4744
4745 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
4746 include weight in listing pattern, instead check weight of each
4747 listed font. Don't include scalable in pattern. Pay attention to
4748 FONT_PIXEL_SIZE_QUANTUM.
4749
4750 2008-02-01 Kenichi Handa <handa@m17n.org>
4751
4752 * font.c (font_parse_fcname): Fix parsing of point-size.
4753 (font_unparse_fcname): Produce symbolic names for style properties.
4754 (font_list_entities): Handle float size correctly.
4755 (font_open_by_name): Prefer `normal' property values if the name
4756 doesn't specify them.
4757
4758 * fontset.c (Finternal_char_font): Use font_get_name, not
4759 Ffont_xlfd_name.
4760
4761 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
4762 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
4763 pattern. Don't force scalable.
4764
4765 * xftfont.c (xftfont_open): For generating a name, start from
4766 96-byte buffer.
4767
4768 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
4769
4770 * frame.h (x_new_fontset2): Fix prototype.
4771
4772 2008-02-01 Kenichi Handa <handa@m17n.org>
4773
4774 * font.h (struct font_driver): Delete member parse_name.
4775 (font_match_p, font_get_spec, font_parse_fcname)
4776 (font_unparse_fcname): Extern them.
4777 (font_get_name): Adjust prototype.
4778
4779 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
4780 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
4781 (font_expand_wildcards): Fix handling ENCODING field. Avoid
4782 unnecessary checks for weight, slant, and swidth.
4783 (font_parse_fcname): New function.
4784 (font_unparse_fcname): New function.
4785 (font_parse_name): New function.
4786 (font_match_p): New function.
4787 (font_get_name): Change return value to Lisp string.
4788 (font_get_spec): New function.
4789 (Qunspecified, Qignore_defface): Don't extern them.
4790 (font_find_for_lface): Assume that LFACE is fully specified.
4791 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
4792 object, use it for FACE.
4793 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
4794 driver->parse_name.
4795 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
4796
4797 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
4798 prototype.
4799
4800 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
4801 argument F. Don't call Fnew_fontset. Instead, directly call
4802 make_fontset.
4803
4804 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
4805
4806 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
4807 of x_new_fontset2.
4808
4809 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
4810 (Qsans__serif): New variables.
4811 (ftfont_generic_family_list): New variable.
4812 (syms_of_ftfont): Initialize the above variables.
4813 (ftfont_pattern_entity): Delete argument NAME.
4814 (ftfont_list_generic_family): New function.
4815 (ftfont_parse_name): Delete this function.
4816 (ftfont_list): Try generic family only when FcFontList found no font.
4817 (ftfont_list_family): Fix args to FcObjectSetBuild.
4818
4819 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
4820 object in attrs[LFACE_FONT_INDEX].
4821 (set_lface_from_font_name): Cancel all changes for font-backend.
4822 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
4823 function.
4824 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
4825 font object in QCfont attribute.
4826 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
4827 (realize_default_face) [USE_FONT_BACKEND]: Call
4828 set_lface_from_font_and_fontset.
4829
4830 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
4831 "fixed", and signal error here if no suitable font was found.
4832
4833 * xfont.c (xfont_parse_name): Delete this function.
4834
4835 * xftfont.c (xftfont_open): Change coding style of error
4836 handling. Generate fontconfig's fontname pattern.
4837
4838 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
4839 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
4840
4841 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
4842 Both args FONTSET and FONT_OBJECT must be existing ones.
4843
4844 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4845
4846 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
4847
4848 2008-02-01 Kenichi Handa <handa@m17n.org>
4849
4850 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
4851
4852 * font.h (struct font): Fix typo.
4853
4854 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
4855 XLFD_XXX_INDEX.
4856 (enum xlfd_field_mask): New enum.
4857 (intern_font_field): Changed argument. Change caller. If digits
4858 are followed by non-digits, return a symbol.
4859 (font_expand_wildcards): New function.
4860 (font_parse_xlfd): Fix wildcard handling.
4861 (Ffont_spec): If :name is specified, reflect the info in the other
4862 properties.
4863
4864 * ftfont.c (ftfont_pattern_entity): Fix typo.
4865 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
4866 locale.
4867
4868 2008-02-01 Kenichi Handa <handa@m17n.org>
4869
4870 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
4871
4872 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
4873 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
4874 registry doesn't specify encoding part.
4875 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
4876 (font_open_by_name): At first try parsing the name.
4877 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
4878 as Lisp symbols.
4879
4880 * fontset.c (reorder_font_vector): Pay attention to the case that
4881 the 3rd element of font_def is nil.
4882 (fontset_font): For the default fontset, append one more fontset
4883 elements for a script-based font specification. Don't add script
4884 attribute on finding a font.
4885 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
4886 font name.
4887 (fontset_ascii_font): If a font can't be opened, return nil.
4888
4889 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
4890 (ftfont_pattern_entity): New function.
4891 (ftfont_get_cache): Assume that freetype_font_cache is already
4892 initialized.
4893 (ftfont_list): Handle the case that a file is specified in font
4894 name. Use ftfont_pattern_entity to generate entities.
4895 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
4896 (syms_of_ftfont): Initialize freetype_font_cache.
4897
4898 * xftfont.c (xftfont_open): Make the font name fontconfig's
4899 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
4900 (xftfont_close): Free font->font.name if not NULL.
4901
4902 * xfont.c (xfont_list): If script is specified for a font, return
4903 null_vector.
4904 (xfont_list_family): Declare argument type.
4905
4906 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
4907 name, set LFACE_FONT (lface) to nil.
4908
4909 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
4910 return Qnil.
4911
4912 2008-02-01 Kenichi Handa <handa@m17n.org>
4913
4914 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
4915 (standard_args): Add "-enable-font-backend".
4916
4917 2008-02-01 Kenichi Handa <handa@m17n.org>
4918
4919 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
4920 (struct xftdraw_list, xftdraw_list): Delete them.
4921 (register_xftdraw, check_xftdraw): Delete them.
4922 (xftfont_prepare_face): Don't call register_xftdraw.
4923 (xftfont_done_face): Don't call check_xftdraw.
4924 (xftfont_draw): Get backroudn color only when with_background is
4925 nonzero.
4926
4927 * xfont.c (xfont_encode_char): Fix calculation of char2b.
4928
4929 2008-02-01 Kenichi Handa <handa@m17n.org>
4930
4931 These changes are for the new font handling codes.
4932
4933 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
4934 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
4935 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
4936 (FONTSRC, FONTOBJ): New variables.
4937 (obj): Add $(FONTOBJ).
4938 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
4939 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
4940 @LIBOTF_LIBS@.
4941 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
4942 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
4943
4944 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
4945
4946 * character.h (Vscript_representative_chars): Extern it.
4947
4948 * character.c (Vscript_representative_chars): New variable.
4949 (syms_of_character): Declare it as a Lisp variable.
4950
4951 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
4952 enable_font_backend is nonzero, accept the composition method
4953 COMPOSITION_WITH_GLYPH_STRING.
4954
4955 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
4956 enumeration COMPOSITION_WITH_GLYPH_STRING.
4957
4958 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
4959 members clip_x, clip_y, clip_width, and clip_height.
4960 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
4961
4962 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
4963 --enable-font-backend. Call syms_of_font.
4964
4965 * fns.c (assoc_no_quit): New function.
4966
4967 * fontset.h (FONT_INFO_FROM_FACE): New macro.
4968 (face_for_font, new_fontset_from_font)
4969 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
4970
4971 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
4972 (fontset_font, fontset_ascii, face_for_char)
4973 (make_fontset_for_ascii_face, Ffont_info)
4974 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
4975 is nonzero, use font-backend mechanism.
4976 (find_font_encoding): Make it non-static.
4977 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
4978 New functions.
4979
4980 * frame.h (struct frame): New members resx and resy.
4981 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
4982 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
4983
4984 * frame.c [USE_FONT_BACKEND]: Include "font.h".
4985 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
4986
4987 * lisp.h (assoc_no_quit): Extern it.
4988
4989 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
4990 Through out the file, use FONT_INFO_FROM_FACE instead of
4991 FONT_INFO_FROM_ID, use get_per_char_metric instead of
4992 rif->per_char_metric.
4993 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
4994 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
4995 (get_glyph_face_and_encoding, fill_composite_glyph_string)
4996 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
4997 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
4998 nonzero, use font-backend mechanism.
4999 (get_per_char_metric): New function.
5000
5001 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
5002 (set_lface_from_font_name)
5003 (set_font_frame_param, free_realized_face)
5004 (prepare_face_for_display, clear_face_gcs)
5005 (Finternal_set_font_selection_order, realize_x_face)
5006 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
5007 font-backend mechanism.
5008 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
5009 (load_face_font) [USE_FONT_BACKEND]: Abort.
5010 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
5011 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
5012
5013 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
5014 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
5015 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
5016 nonzero, register all available font drivers. Call
5017 x_default_font_parameter for deciding a font.
5018 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
5019
5020 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
5021 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
5022 (x_set_glyph_string_clipping_exactly)
5023 (x_compute_glyph_string_overhangs)
5024 (x_draw_glyph_string_foreground)
5025 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
5026 (x_free_frame_resources) [USE_FONT_BACKEND]: If
5027 enable_font_backend is nonzero, use font-backend mechanism.
5028 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
5029
5030 2008-02-01 Kenichi Handa <handa@m17n.org>
5031
5032 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
5033 system_eol_type.
5034 (syms_of_coding): Initialize system_eol_type.
5035
5036 * process.c (Fset_process_coding_system): Inherit system's eol
5037 format if necessary.
5038
5039 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5040
5041 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
5042
5043 2008-02-01 Kenichi Handa <handa@m17n.org>
5044
5045 * coding.c (decode_eol): Pay attention to buffer relocation in
5046 del_range_2.
5047 (decode_coding): Call decode_eol before restoring undo_list.
5048
5049 2008-02-01 Kenichi Handa <handa@m17n.org>
5050
5051 * charset.c (Fdefine_charset_internal): Fix setting of
5052 emacs_mule_bytes.
5053
5054 2008-02-01 Kenichi Handa <handa@m17n.org>
5055
5056 * keyboard.c (read_char): Check if C is a character or not before
5057 looking up Vkeyboard_translate_table.
5058
5059 2008-02-01 Kenichi Handa <handa@m17n.org>
5060
5061 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
5062 condition to terminate the loop.
5063
5064 2008-02-01 Kenichi Handa <handa@m17n.org>
5065
5066 * coding.c (produce_composition): Compare charbuf[i] instead of
5067 args[i] against 0.
5068 (Fterminal_coding_system): Use EQ to compare Lisp objects.
5069
5070 2008-02-01 Kenichi Handa <handa@m17n.org>
5071
5072 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
5073 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
5074 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
5075 detect_coding.
5076 (emacs_mule_char): Handle old style (Emacs 20) component character
5077 of a composition.
5078 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
5079 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
5080 composition rule.
5081 (decode_coding_emacs_mule): Handle invalid bytes correctly.
5082
5083 2008-02-01 Kenichi Handa <handa@m17n.org>
5084
5085 * coding.c (encode_coding_ccl): Allocate destination dynamically
5086 when necessary.
5087
5088 2008-02-01 Kenichi Handa <handa@m17n.org>
5089
5090 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
5091 the loop. When quitted, show a proper error message.
5092
5093 2008-02-01 Kenichi Handa <handa@m17n.org>
5094
5095 * xterm.c (x_set_glyph_string_clipping_exactly): Set
5096 src->clip_head and src->clip_tail temporarily instead of src->hl.
5097
5098 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
5099 character sequence.
5100 (Fccl_execute_on_string): Use ASET, not XSET.
5101
5102 2008-02-01 Kenichi Handa <handa@m17n.org>
5103
5104 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
5105
5106 2008-02-01 Kenichi Handa <handa@m17n.org>
5107
5108 * coding.c (decode_coding): Fix the condition of terminating the
5109 decoding loop.
5110
5111 2008-02-01 Kenichi Handa <handa@m17n.org>
5112
5113 * data.c (Faset): On setting a character bigger than 255 in a
5114 unibyte string, signal an error instead of make the string multibyte.
5115
5116 2008-02-01 Kenichi Handa <handa@m17n.org>
5117
5118 * charset.c (map_charset_chars): Fix for ascii-compatible charset
5119 made by a mapping table.
5120
5121 2008-02-01 Kenichi Handa <handa@m17n.org>
5122
5123 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
5124 not.
5125 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
5126 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
5127
5128 * xterm.c (x_draw_composite_glyph_string_foreground): Check
5129 s->face is NULL or not.
5130
5131 2008-02-01 Kenichi Handa <handa@m17n.org>
5132
5133 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
5134 (x_draw_glyph_string): Fix drawing of right_overhang and
5135 left_overhang around/on cursor.
5136
5137 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
5138
5139 2008-02-01 Kenichi Handa <handa@m17n.org>
5140
5141 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
5142
5143 2008-02-01 Kenichi Handa <handa@m17n.org>
5144
5145 * coding.c (Fdefine_coding_system_internal)
5146 (Fdefine_coding_system_alias): Avoid a duplicated element in
5147 Vcoding_system_alist.
5148
5149 2008-02-01 Kenichi Handa <handa@m17n.org>
5150
5151 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
5152
5153 * coding.c (Qcoding_system_define_form): New variable.
5154 (syms_of_coding): Intern and staticpro it.
5155 (Fcoding_system_p): Check Qcoding_system_define_form.
5156 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
5157
5158 * coding.h (CODING_SYSTEM_P): If ID is not available, call
5159 Fcoding_system_p.
5160 (CHECK_CODING_SYSTEM): If ID is not available, call
5161 Fcheck_coding_system.
5162 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
5163 Try also Fcheck_coding_system.
5164
5165 2008-02-01 Kenichi Handa <handa@m17n.org>
5166
5167 * coding.c (code_conversion_restore): GCPRO arg.
5168
5169 2008-02-01 Kenichi Handa <handa@m17n.org>
5170
5171 * character.c (lisp_string_width): Check multibyteness of STRING.
5172
5173 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5174
5175 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
5176 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
5177 (decode_mac_font_name): Use decode_coding_c_string instead of
5178 decode_coding.
5179 (x_load_font): Initialize fontp->fontset to -1. Set
5180 fontp->encoding_type.
5181
5182 2008-02-01 Kenichi Handa <handa@m17n.org>
5183
5184 * search.c (search_buffer): Give up BM search on case-fold-search
5185 if one of a target character has a case-equivalence of different
5186 byte length even if that target charcter is an ASCII.
5187 (simple_search): Fix calculation of byte length of matched text.
5188 (boyer_moore): Fix handling of case-equivalent multibyte characters.
5189
5190 2008-02-01 Kenichi Handa <handa@m17n.org>
5191
5192 * coding.c (decode_coding): Fix handling of invalid bytes.
5193
5194 2008-02-01 Kenichi Handa <handa@m17n.org>
5195
5196 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
5197 Unicode characters.
5198
5199 2008-02-01 Kenichi Handa <handa@m17n.org>
5200
5201 * coding.c (encode_coding_object): If a pre-write-conversion
5202 function makes a new buffer, kill it.
5203
5204 2008-02-01 Kenichi Handa <handa@m17n.org>
5205
5206 * coding.c (QCascii_compatible_p): New variable.
5207 (syms_of_coding): Initialize it.
5208 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
5209 calling string_char.
5210 (record_conversion_result): Add `default:' case.
5211 (coding_charset_list): Delete unused variable `coding_type'.
5212 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
5213 property in the plist of the coding system.
5214 (Fcoding_system_put): Check QCascii_compatible_p.
5215
5216 2008-02-01 Miles Bader <miles@gnu.org>
5217
5218 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
5219 removed calculation of frame `f', as it's now used.
5220
5221 2008-02-01 Kenichi Handa <handa@m17n.org>
5222
5223 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
5224 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
5225 (UNIDATA): New variable.
5226 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
5227 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
5228 $(RUN_TEMACS) unconditionally.
5229
5230 2008-02-01 Kenichi Handa <handa@m17n.org>
5231
5232 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
5233 (admindir): New variable.
5234 ($(lispsource)international/charprop.el): New target.
5235
5236 2008-02-01 Miles Bader <miles@gnu.org>
5237
5238 * character.c (chars-in-region): Remove obsolete function.
5239 (syms_of_character): Remove its initialization.
5240
5241 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
5242
5243 * w32select.c (validate_coding_system)
5244 (setup_windows_coding_system): New functions.
5245 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
5246 setup_windows_coding_system.
5247 (setup_config, Fw32_get_clipboard_data): Use
5248 validate_coding_system.
5249 (Fx_selection_exists): Move call to setup_config to a place
5250 where signals are allowed.
5251
5252 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
5253 (Fcheck_coding_system): Add declarations.
5254
5255 2008-02-01 Kenichi Handa <handa@m17n.org>
5256
5257 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
5258
5259 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5260
5261 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
5262 string as the second argument for x_new_fontset.
5263
5264 2008-02-01 Kenichi Handa <handa@m17n.org>
5265
5266 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
5267 (encode_coding_object): Use safe_call instead of call2.
5268
5269 2008-02-01 Kenichi Handa <handa@m17n.org>
5270
5271 * fontset.c (Fset_fontset_font): Check family element of a given vector.
5272
5273 * Makefile.in (lisp): Include charprop.el.
5274
5275 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5276
5277 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
5278 Not sure if it's unnecessary.
5279
5280 2008-02-01 Steven Tamm <steventamm@mac.com>
5281
5282 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
5283 some possibly unnecessary fontset checking code that crashed
5284 when creating a new frame.
5285
5286 2008-02-01 Kenichi Handa <handa@m17n.org>
5287
5288 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
5289 lookup_face.
5290
5291 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
5292
5293 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
5294
5295 2008-02-01 Kenichi Handa <handa@m17n.org>
5296
5297 * coding.c: Cancel the change done in HEAD on 2008-02-01.
5298 (coding_charset_list): New function.
5299
5300 * coding.h (coding_charset_list): Extern it.
5301
5302 2008-02-01 Kenichi Handa <handa@m17n.org>
5303
5304 * fontset.c (Fset_fontset_font): Call find_font_encoding with
5305 concatenation of family and registry.
5306
5307 2008-02-01 Kenichi Handa <handa@m17n.org>
5308
5309 * character.h (BYTE8_STRING): Fix typo.
5310
5311 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
5312 string to multibyte (sync to HEAD).
5313
5314 * casefiddle.c (casify_region): Handle changes in byte-length
5315 using replace_range_2 (sync to HEAD).
5316
5317 2008-02-01 Andreas Schwab <schwab@suse.de>
5318
5319 * chartab.c (map_char_table): GCPRO table and arg.
5320
5321 2008-02-01 Kenichi Handa <handa@m17n.org>
5322
5323 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
5324 already at limit.
5325
5326 2008-02-01 Kenichi Handa <handa@m17n.org>
5327
5328 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
5329 instead of fast_c_string_match_ignore_case.
5330 (find_font_encoding): Change argument to Lisp_Object. Use
5331 fast_string_match_ignore_case instead of
5332 fast_c_string_match_ignore_case. Change caller.
5333
5334 2008-02-01 Kenichi Handa <handa@m17n.org>
5335
5336 * xdisp.c (get_next_display_element): In unibyte case, decide to
5337 display in octal form by checking a chacter by
5338 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
5339
5340 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
5341
5342 * character.c (unibyte_has_multibyte_table): New variable.
5343
5344 * character.h (unibyte_has_multibyte_table): Extern it.
5345 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
5346
5347 2008-02-01 Kenichi Handa <handa@m17n.org>
5348
5349 * coding.c (encode_coding_iso_2022): Fix handling of charset
5350 annotation.
5351
5352 2008-02-01 Kenichi Handa <handa@m17n.org>
5353
5354 * coding.c (setup_coding_system): If coding_system is nil, use
5355 Qundecided.
5356 (Fterminal_coding_system): Return nil if terminal coding system is
5357 `undecided'.
5358 (syms_of_coding): Define coding-system `undecided' here. Setup
5359 terminal_coding as `undecided'.
5360
5361 2008-02-01 Kenichi Handa <handa@m17n.org>
5362
5363 * xdisp.c (message_dolog, set_message_1): Call
5364 unibyte_char_to_multibyte with arg type int.
5365
5366 * lread.c (read1): Fix reading of a char-table.
5367
5368 * print.c (print_object): Include sub char-table in cicularities
5369 detection.
5370
5371 2008-02-01 Kenichi Handa <handa@m17n.org>
5372
5373 * keymap.c (where_is_internal_2): Fix for the case that KEY is a
5374 cons. Append the found sequences in car of ARGS instead of prepending.
5375
5376 2008-02-01 Kenichi Handa <handa@m17n.org>
5377
5378 * fileio.c (report_file_error): Make a unibyte string from
5379 strerror (errorno).
5380 (Fsubstitute_in_file_name): Fix the arg to
5381 unibyte_char_to_multibyte. It is evaluated twice.
5382
5383 2008-02-01 Kenichi Handa <handa@m17n.org>
5384
5385 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
5386
5387 2008-02-01 Kenichi Handa <handa@m17n.org>
5388
5389 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
5390 BOM is not found.
5391 (detect_coding, detect_coding_system): Optimization for ISO-2022
5392 when no 8-bit data is found.
5393
5394 2008-02-01 Jason Rumney <jasonr@gnu.org>
5395
5396 * w32fns.c (x_to_w32_font): Update to use new coding struct.
5397
5398 2008-02-01 Kenichi Handa <handa@m17n.org>
5399
5400 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
5401 CHARS.
5402
5403 2008-02-01 Steven Tamm <steventamm@mac.com>
5404
5405 * macterm.c (mac_encode_char): Add charset argument and update
5406 to use encoding_type.
5407 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
5408 switch to pure fontset.
5409 (decode_mac_font_name): Temporarily remove decoding.
5410 (x_font_name_to_mac_font_name): Temporarily remove encoding.
5411 (x_load_font): Temporarily remove encoding.
5412
5413 2008-02-01 Kenichi Handa <handa@m17n.org>
5414
5415 * xfaces.c (Fface_font): If frame is not on a window system,
5416 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
5417 refer to face->font.
5418 (split_font_name_into_vector, build_font_name_from_vector)
5419 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
5420 whne HAVE_WINDOW_SYSTEM is defined.
5421
5422 2008-02-01 Kenichi Handa <handa@m17n.org>
5423
5424 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
5425 (x_produce_glyphs): Fix setting of members of cmp in case
5426 cmp->glyph_len is zero.
5427
5428 * fontset.c (Fset_fontset_font): Fix docstring.
5429 (Ffontset_info): Make it backward compatible. New arg ALL.
5430
5431 2008-02-01 Kim F. Storm <storm@cua.dk>
5432
5433 * process.c (read_process_output): Grow decoding_buf when needed;
5434 this could cause a crash in allocate_string and compact_small_strings.
5435
5436 2008-02-01 Kenichi Handa <handa@m17n.org>
5437
5438 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
5439
5440 2008-02-01 Kenichi Handa <handa@m17n.org>
5441
5442 * coding.c (setup_coding_system): Set coding->common_flags
5443 correctly for raw-text.
5444 (consume_chars): On encoding unibyte text by raw-text, don't check
5445 multibyte form.
5446 (encode_coding): On encoding by raw-text, never use translation tables.
5447
5448 * fileio.c (e_write): Short cut for the case of no encoding.
5449
5450 2008-02-01 Kenichi Handa <handa@m17n.org>
5451
5452 * coding.c (detect_coding, detect_coding_system): Delete unused
5453 variables.
5454
5455 2008-02-01 Kenichi Handa <handa@m17n.org>
5456
5457 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
5458 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
5459
5460 2008-02-01 Kenichi Handa <handa@m17n.org>
5461
5462 * coding.c (Ffind_coding_systems_region_internal): Include
5463 raw-text and no-conversion in the result.
5464
5465 2008-02-01 Kenichi Handa <handa@m17n.org>
5466
5467 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
5468 (load_font_get_repertory): Delete unnecessary check of ENCODING of
5469 FONT_DEF.
5470 (font_def_arg, add_arg, from_arg, to_arg): New args.
5471 (set_fontset_font): Change argument.
5472 (Fset_fontset_font): Fix for the case that TARGET is a script
5473 name and charset name.
5474 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
5475
5476 2008-02-01 Kenichi Handa <handa@m17n.org>
5477
5478 * fontset.c (fontset_font): Rename from fontset_face. Change return
5479 value.
5480 (face_suitable_for_char_p, face_for_char): Adjust for the change
5481 of fontset_font.
5482 (make_fontset_for_ascii_face): Fix setting of the fontset element
5483 for ASCII.
5484 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
5485 to get a font name.
5486 (Ffontset_info): Adjust for the change of fontset_font.
5487
5488 * coding.c (emacs_mule_char): Check invalid code more regidly.
5489
5490 * character.h (LEADING_CODE_LATIN_1_MIN)
5491 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
5492
5493 2008-02-01 Kenichi Handa <handa@m17n.org>
5494
5495 * editfns.c (check_translation): New function.
5496 (Ftranslate_region_internal): Handle M:N mapping.
5497
5498 2008-02-01 Kenichi Handa <handa@m17n.org>
5499
5500 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
5501
5502 2008-02-01 Kenichi Handa <handa@m17n.org>
5503
5504 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
5505 goto invalid_code.
5506 (decode_coding_iso_2022): Fix handling of invalid designation.
5507
5508 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
5509 after calling code_conversion_save.
5510
5511 2008-02-01 Kenichi Handa <handa@m17n.org>
5512
5513 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
5514
5515 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
5516
5517 * fontset.c: Include "intervals.h".
5518 (fontset_face): Fix comparing of Lisp_Objects.
5519 (free_face_fontset, new_fontset_from_font_name): Fix
5520 Lisp_Object/int mixup.
5521
5522 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
5523
5524 * coding.c: Add many prototypes for static functions.
5525 (get_translation_table): Allow max_lookup to be NULL.
5526 (decode_coding, Ffind_coding_systems_region_internal)
5527 (Funencodable_char_position, Fcheck_coding_systems_region): Call
5528 get_translation_table with max_lookup NULL.
5529
5530 2008-02-01 Kenichi Handa <handa@m17n.org>
5531
5532 * coding.c (get_translation_table): Declare it as Lisp_Object.
5533 (LOOKUP_TRANSLATION_TABLE): New macro.
5534 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
5535 instead of CHAR_TABLE_REF.
5536
5537 2008-02-01 Kenichi Handa <handa@m17n.org>
5538
5539 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
5540 annotation data format.
5541 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
5542 Change arguments FROM and TO to single argument NCHARS. Change caller.
5543 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
5544 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5545 (decode_coding_ccl, decode_coding_charset): Pay attention to
5546 coding->charbuf_used.
5547 (get_translation): New function.
5548 (produce_chars): New arguments translation_table and last_block.
5549 Translate characters here. Return number of carryover chars.
5550 Change caller.
5551 (produce_composition): New argument pos. Change caller.
5552 Adjust for the change of annotation data format.
5553 (produce_charset, produce_annotation): Likewise.
5554 (decode_coding, encode_coding): Don't call translate_chars.
5555 (consume_chars): New arg translation_table. Change caller.
5556 (translate_chars): Delete.
5557 (syms_of_coding): Make translation-table's number of extra slots 2.
5558
5559 2008-02-01 Kenichi Handa <handa@m17n.org>
5560
5561 * search.c (simple_search): Fix setting this_pos_byte in backward
5562 search.
5563
5564 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
5565 byte sequence.
5566 (detect_coding_ccl): Fix setting of the variable valids.
5567
5568 2008-02-01 Kenichi Handa <handa@m17n.org>
5569
5570 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
5571
5572 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
5573
5574 * editfns.c (Ftranslate_region_internal): Rename from
5575 Ftranslate_region. Accept a char-table in TABLE.
5576 (syms_of_editfns): Defsubr Stranslate_region_internal.
5577
5578 * xfaces.c (set_lface_from_font_name): If a font is specified for
5579 a frame, generate a fontset from the font.
5580 (build_scalable_font_name): If the scalable font is requested for
5581 a specific size, don't change that size.
5582 (try_font_list): Try a scalable font also in the case that a
5583 pattern string is specified.
5584
5585 2008-02-01 Kenichi Handa <handa@m17n.org>
5586
5587 * xfaces.c (Fface_font): New optional arg CHARACTER.
5588
5589 2008-02-01 Kenichi Handa <handa@m17n.org>
5590
5591 * charset.h (CHARSET_OFFSET): New macro.
5592
5593 2008-02-01 Kenichi Handa <handa@m17n.org>
5594
5595 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
5596
5597 * fontset.c (fontset_face): Handle the case that repertory is a
5598 char-table.
5599 (find_font_encoding): Return nil for unknown encoding.
5600 (Fset_fontset_font): Ignore a font of unknown encoding.
5601
5602 2008-02-01 Kenichi Handa <handa@m17n.org>
5603
5604 * keymap.c (describe_vector): Handle default value of a char table.
5605
5606 * fontset.c (fontset_face): Handle fallback fonts correctly.
5607 (Ffontset_info): Return infomation about fallback fonts.
5608
5609 2008-02-01 Kenichi Handa <handa@m17n.org>
5610
5611 * fontset.c (FONTSET_DEFAULT): New macro.
5612 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
5613 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
5614 the case that it is nil.
5615 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
5616 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
5617
5618 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
5619 subset or superset.
5620
5621 2008-02-01 Kenichi Handa <handa@m17n.org>
5622
5623 * emacs.c (main): Call init_charset after syms_of_XXX.
5624
5625 * charset.c (Vcharset_map_directory): Delete.
5626 (Vcharset_map_path): New variable
5627 (load_charset_map_from_file): Use Vcharset_map_path instead.
5628 (init_charset): Initialize Vcharset_map_path.
5629 (syms_of_charset): Delete declaration of "charset-map-directory",
5630 add declaration of "charset-map-path".
5631
5632 2008-02-01 Kenichi Handa <handa@m17n.org>
5633
5634 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
5635 ASCII only string.
5636
5637 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
5638
5639 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
5640 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
5641
5642 2008-02-01 Kenichi Handa <handa@m17n.org>
5643
5644 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
5645
5646 * coding.c (QCmnemonic, QCdefalut_char)
5647 (QCdecode_translation_table, QCencode_translation_table)
5648 (QCpost_read_conversion, QCpre_write_conversion): New variables.
5649 (get_translation_table): Return a list of translation tables if
5650 necessary.
5651 (decode_coding): Call get_translation_table with ENCODEP 0.
5652 (char_encodable_p): If translation_table is non-nil, always call
5653 translate_char.
5654 (Fdefine_coding_system_internal): Accept list of translation
5655 tables as :encode-translation-table and :decode-translation-table.
5656 (Fcoding_system_put): New function.
5657 (syms_of_coding): Declare new symbols. Defsubr
5658 Scoding_system_put.
5659 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
5660 typically JISX0212.
5661
5662 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
5663 when the charset is superset type.
5664
5665 * character.c (translate_char): Accept list of translation tables.
5666
5667 2008-02-01 Kenichi Handa <handa@m17n.org>
5668
5669 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
5670 (CODING_ATTR_TRANS_TBL): New macro.
5671
5672 * coding.c (get_translation_table): New function.
5673 (translate_chars): Fix the bug of skipping annotation data.
5674 (decode_coding, encode_coding): Utilize get_translation_table.
5675 (char_encodable_p, Funencodable_char_position): Translate char if
5676 necessary.
5677 (Ffind_coding_systems_region_internal)
5678 (Fcheck_coding_systems_region): Setup translation table for encode
5679 in a coding system attribute vector in advance.
5680 (Fdefine_coding_system_internal): Allow a symbol as translation
5681 table. For shift-jis type coding system, allow 4th charset.
5682
5683 2008-02-01 Kenichi Handa <handa@m17n.org>
5684
5685 * coding.c (decode_coding_sjis): Check the first byte rigidly.
5686
5687 * xdisp.c (get_next_display_element): Pass -1 as POS to
5688 FACE_FOR_CHAR if displaying a C-string.
5689
5690 2008-02-01 Kenichi Handa <handa@m17n.org>
5691
5692 * composite.c (get_composition_id): Handle xoff and yoff in a
5693 composition rule.
5694
5695 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
5696 (struct composition): New member lbearing and rbearing.
5697
5698 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
5699 (x_get_glyph_overhangs): Handle a composition glyph.
5700 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
5701
5702 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
5703 composition glyph.
5704
5705 2008-02-01 Kenichi Handa <handa@m17n.org>
5706
5707 * print.c: Include charset.h.
5708 (Vprint_charset_text_property): New variable.
5709 (Qdefault): Extern it.
5710 (PRINT_STRING_NON_CHARSET_FOUND)
5711 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
5712 (print_check_string_result): New variable.
5713 (print_check_string_charset_prop): New function.
5714 (print_prune_charset_plist): New variable.
5715 (print_prune_string_charset): New function.
5716 (print_object): Call print_prune_string_charset if
5717 Vprint_charset_text_property is not t.
5718 (print_interval): Print nothing if itnerval->plist is nil.
5719 (syms_of_print): Declare Vprint_charset_text_property as a lisp
5720 variable. Init and staticpro print_prune_charset_plist.
5721
5722 2008-02-01 Kenichi Handa <handa@m17n.org>
5723
5724 * fontset.c (new_fontset_from_font_name): Use the specified font
5725 for all characters in the new fontset.
5726
5727 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
5728 OBJECT args.
5729
5730 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
5731 OBJECT args for composition too.
5732
5733 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
5734 OBJECT args.
5735
5736 2008-02-01 Kenichi Handa <handa@m17n.org>
5737
5738 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
5739
5740 * fontset.c (reorder_font_vector): Adjust for the change of
5741 FONT_DEF format.
5742 (fontset_face): New arg id. Change caller.
5743 (face_for_char): New args pos and object.
5744 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF
5745 format.n
5746 (fs_query_fontset): Check NAME by Fassoc too.
5747 (Fset_fontset_font): Allow non-XLFD font name.
5748 (Ffontset_info): Adjust for the change of FONT_DEF format.
5749
5750 * fontset.h (face_for_char): Adjust prototype.
5751
5752 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
5753 (append_space, extend_face_to_end_of_line)
5754 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
5755 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
5756
5757 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
5758 POS and OBJECT args.
5759
5760 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
5761 POS and OBJECT args.
5762
5763 2008-02-01 Jason Rumney <jasonr@gnu.org>
5764
5765 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
5766 of GlobalAlloc'ed memory.
5767
5768 2008-02-01 Kenichi Handa <handa@m17n.org>
5769
5770 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
5771
5772 * charset.h (charset_table_used): Delete extern.
5773
5774 * charset.c (charset_table_used): Make it static.
5775 (map_charset_chars): Fix args to c_function with.
5776
5777 * chartab.c (map_sub_char_table_for_charset): Fix args to
5778 c_function with.
5779
5780 * coding.h (enum coding_result_code): Delete
5781 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
5782
5783 * coding.c (Qinsufficient_source, Qinconsistent_eol)
5784 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
5785 (Vlast_code_conversion_error): New variables.
5786 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
5787 (ONE_MORE_BYTE): Record error if any instead of signaling an
5788 error. If non-ASCII multibyte char is found, return the negative
5789 value of the code. All callers changed to check it.
5790 (ONE_MORE_BYTE_NO_CHECK): Likewise.
5791 (record_conversion_result): New function. Change all codes setting
5792 coding->result to call this function.
5793 (detect_coding_utf_8, decode_coding_utf_8)
5794 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
5795 Don't use the local variable incomplete.
5796 (emacs_mule_char): Change the second arg to `const'.
5797 (decode_coding): Fix of flushing out unprocessed data.
5798 (make_conversion_work_buffer): Fix making of a work buffer.
5799 (decode_coding_object): Return coding->dst_object.
5800
5801 * fontset.c (set_fontset_font): Fix args.
5802
5803 * lisp.h (CHARACTERBITS): Define as 22.
5804
5805 * process.c (send_process): Be sure to set coding->src_multibyte.
5806
5807 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
5808
5809 2008-02-01 Kenichi Handa <handa@m17n.org>
5810
5811 * xdisp.c (handle_auto_composed_prop): Give limit to
5812 Fnext_single_char_property_change.
5813
5814 2008-02-01 Kenichi Handa <handa@m17n.org>
5815
5816 * composite.c (syms_of_composite): Don't make the composition hash
5817 table weak.
5818
5819 * fontset.c (Fset_fontset_font): Fix docstring.
5820
5821 * lisp.h (detect_coding_system): Adjust prototype.
5822
5823 * fileio.c (kill_workbuf_unwind): Delete this function.
5824 (Finsert_file_contents): Adjust the call of detect_coding_system.
5825 Get conversion_buffer by code_conversion_save. Use the macor
5826 CODING_MAY_REQUIRE_DECODING. After decoding, update
5827 coding_system.
5828
5829 * coding.h (make_conversion_work_buffer): Delete extern.
5830 (code_conversion_save): Extern it.
5831
5832 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
5833 (CODING_GET_INFO): Delete argument eol_type. Change callers.
5834 (decode_coding_utf_8): Don't do eol converion.
5835 (detect_coding_utf_16): Check coding->src_chars, not
5836 coding->src_bytes. Add heuristics for those that have no signature.
5837 (decode_coding_emacs_mule, decode_coding_iso_2022)
5838 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
5839 Don't do eol converion.
5840 (adjust_coding_eol_type): Return a new coding system.
5841 (detect_coding): Don't detect eol. Fix for utf-16 detection.
5842 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
5843 each change.
5844 (decode_coding): Pay attention to undo_list. Do eol convesion for
5845 all types of coding-systems (if necessary).
5846 (Vcode_conversion_work_buf_list): Delete it.
5847 (Vcode_conversion_reused_workbuf): Rename from
5848 Vcode_conversion_reused_work_buf.
5849 (Vcode_conversion_workbuf_name): New variable.
5850 (reused_workbuf_in_use): New variable.
5851 (make_conversion_work_buffer): Delete the arg DEPTH.
5852 (code_conversion_restore): Change argument to cons.
5853 (code_conversion_save): Delete the argument BUFFER. Change callers.
5854 (detect_coding_system): New argument src_chars. Change callers.
5855 Fix for utf-16 detection.
5856 (init_coding_once): Don't use ISO_carriage_return.
5857 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
5858 reused_workbuf_in_use.
5859
5860 2008-02-01 Kenichi Handa <handa@m17n.org>
5861
5862 * keymap.c (store_in_keymap): Pay attention to the case that idx
5863 is a cons specifying a character range.
5864
5865 2008-02-01 Kenichi Handa <handa@m17n.org>
5866
5867 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
5868 HANDLED_RECOMPUTE_PROPS.
5869
5870 * coding.c (Fdefine_coding_system_internal): Fix checking of
5871 ascii compatibility.
5872
5873 2008-02-01 Kenichi Handa <handa@m17n.org>
5874
5875 * charset.c (find_charsets_in_text): Delete unused locale variable.
5876 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
5877
5878 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
5879 Resync charset_list to Vemacs_mule_charset_list.
5880
5881 * keymap.c (store_in_keymap): Pay attention to the case that idx
5882 is a cons specifying a character range.
5883
5884 2008-02-01 Kenichi Handa <handa@m17n.org>
5885
5886 * composite.c (update_compositions): Bind inhibit-read-only, etc
5887 to t before calling remove-list-of-text-properties.
5888
5889 * print.c (print_object): Always print ASCII chars as is.
5890
5891 2008-02-01 Kenichi Handa <handa@m17n.org>
5892
5893 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
5894
5895 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
5896 is a char table.
5897
5898 2008-02-01 Kenichi Handa <handa@m17n.org>
5899
5900 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
5901
5902 2008-02-01 Kenichi Handa <handa@m17n.org>
5903
5904 * xfaces.c (set_lface_from_font_name): Fix for the case that
5905 FONTNAME is not fontset name.
5906
5907 2008-02-01 Kenichi Handa <handa@m17n.org>
5908
5909 * fns.c (base64_encode_1): Fix previous change.
5910
5911 2008-02-01 Kenichi Handa <handa@m17n.org>
5912
5913 * fontset.c (set_fontset_font): New function.
5914 (Fset_fontset_font): If a font is specified for a charset, use
5915 map_charset_chars to store the font spec in a fontset.
5916
5917 2008-02-01 Kenichi Handa <handa@m17n.org>
5918
5919 * fontset.c (fontset_face): Create a fallback fontset on demand
5920 (make_fontset): Don't create a fallback fontset here.
5921 (free_face_fontset): Free a fallback fontset (if any) too.
5922 (n_auto_fontsets): Delete this variable.
5923 (auto_fontset_alist): New variable.
5924 (new_fontset_from_font_name): Check auto_fontset_alist.
5925 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
5926 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
5927 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
5928 Defsubr Sfontset_list_all.
5929
5930 2008-02-01 Kenichi Handa <handa@m17n.org>
5931
5932 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
5933
5934 2008-02-01 Kenichi Handa <handa@m17n.org>
5935
5936 * fontset.c (Fnew_fontset): Check NAME more rigidly.
5937
5938 2008-02-01 Kenichi Handa <handa@m17n.org>
5939
5940 * editfns.c (Fgoto_char): Fix docstring.
5941
5942 2008-02-01 Kenichi Handa <handa@m17n.org>
5943
5944 * insdel.c (insert_from_gap): Adjust intervals correctly.
5945
5946 2008-02-01 Jason Rumney <jasonr@gnu.org>
5947
5948 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
5949 (pfnGetFontUnicodeRanges): New dynamically loaded function.
5950 (w32_initialize): Try to load it.
5951 (x_get_font_repertory): Use it if available.
5952 (w32_encode_char): Add shortcut for unicode output.
5953
5954 * w32fns.c (w32_load_system_font): Default charset to -1.
5955 (x_to_w32_charset): Match all fonts for unicode.
5956 (w32_to_x_charset): New parameter matching. Don't return partial
5957 or wildcard charsets.
5958 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
5959 (w32_codepage_for_font): Return CP_UNICODE for unicode.
5960 (w32_to_x_font): Match charset to real charset.
5961 (enum_font_cb2): Always list unicode versions.
5962
5963 * makefile.w32-in (temacs): Increase EMHEAP.
5964
5965 2008-02-01 Jason Rumney <jasonr@gnu.org>
5966
5967 * w32term.c (w32_encode_char): New charset parameter.
5968 font_info.encoding becomes encoding_type.
5969 (x_get_font_repertory): New function. Warning: stub only!
5970 (x_new_font): Return quickly if font already set.
5971 (x_new_fontset): fontsetname parameter is Lisp_Object.
5972 Use new fs_query_fontset. Try new_fontset_from_font_name.
5973 Use fontset_name for return value.
5974
5975 * w32term.h: Declare x_get_font_repertory.
5976
5977 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
5978 place of find_charset_in_text. Use encode_coding_object in place
5979 of encode_coding.
5980 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
5981 decode_coding.
5982
5983 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
5984 of x_new_fontset.
5985 (w32_load_system_font): Initialize charset as unicode.
5986 font_info.encoding becomes encoding_type.
5987 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
5988 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
5989 (syms_of_w32fns): Set get_font_repertory_func.
5990
5991 * w32console.c: Include character.h. Use terminal_encode_buffer
5992 from term.c.
5993 (write_glyphs): Use new version of encode_terminal_code. Use
5994 encode_coding_object in place of encode_coding.
5995
5996 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
5997 encoding becomes encoding_type.
5998
5999 * term.c (terminal_encode_buffer): Make externally visible.
6000
6001 * makefile.w32-in: Add character.h dependancies.
6002 (character.o, chartab.o): New targets.
6003
6004 2008-02-01 Kenichi Handa <handa@m17n.org>
6005
6006 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
6007 CODING_ID_EOL_TYPE.
6008
6009 2008-02-01 Andreas Schwab <schwab@suse.de>
6010
6011 * coding.c (produce_chars): Revert last change.
6012
6013 2008-02-01 Kenichi Handa <handa@m17n.org>
6014
6015 * charset.h (charset_unicode): Extern it.
6016
6017 * charset.c (string_xstring_p): Check by (C >= 0x100).
6018 (find_charsets_in_text): Change format of the arc CHARSETS. New
6019 arg MULTIBYTE.
6020 (Ffind_charset_region, Ffind_charset_string): Adjust for the
6021 change of find_charsets_in_text.
6022 (Fsplit_char): Fix doc. Never return unknown.
6023
6024 * chartab.c (char_table_translate): Use CHARACTERP, not INETEGERP.
6025
6026 * coding.c (Fdefine_coding_system_alias): Update
6027 Vcoding_system_list.
6028
6029 * fontset.c (load_font_get_repertory): Pay attention to the case
6030 that ENCODING of a font is specified by a char-table.
6031
6032 * xterm.c (x_get_font_repertory): Handle the case that the
6033 encoding of font is other than Unicode.
6034
6035 2008-02-01 Kenichi Handa <handa@m17n.org>
6036
6037 * term.c (encode_terminal_code): Don't handle glyph-table. Check
6038 if a character is encodable by the terminal coding system. If
6039 not, produces proper number of `?'s. Update
6040 terminal_encode_buffer and terminal_encode_buf_size if necessary.
6041 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
6042
6043 2008-02-01 Kenichi Handa <handa@m17n.org>
6044
6045 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
6046 variables.
6047 (encode_terminal_code): Change argument. Encode multiple
6048 characters at once. Store the result of encoding in
6049 terminal_encode_buffer.
6050 (write_glyphs, insert_glyphs): Adjust for the change of
6051 encode_terminal_code.
6052 (term_init): Initialize terminal_encode_buffer and
6053 terminal_encode_buf_size.
6054
6055 * coding.c (consume_chars): If coding->src_object is nil, don't
6056 check annotation.
6057
6058 2008-02-01 Kenichi Handa <handa@m17n.org>
6059
6060 * character.c (char_string): Use ASCII_CHAR_P instead of
6061 SINGLE_BYTE_CHAR_P.
6062
6063 2008-02-01 Kenichi Handa <handa@m17n.org>
6064
6065 * xdisp.c (handle_auto_composed_prop): Check if the last
6066 characters of auto-composed region is newly composed with the
6067 following characters.
6068 (handle_composition_prop): Fix checking of point being inside
6069 composition.
6070
6071 2008-02-01 Kenichi Handa <handa@m17n.org>
6072
6073 * fns.c (concat): Don't change multibyteness of the result by
6074 concatenating an 8-bit character.
6075
6076 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
6077 multibyteness of the result when newelt is an 8-bit character.
6078
6079 2008-02-01 Dave Love <fx@gnu.org>
6080
6081 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
6082 EMACS_INT.
6083
6084 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
6085
6086 * xfaces.c (face_numeric_value): Declare dim size_t.
6087 (Finternal_lisp_face_equal_p): Remove unused f.
6088
6089 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
6090 (MATRIX_ROW): Remove unused vars.
6091 (draw_glyphs, x_insert_glyphs, fast_find_position)
6092 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
6093 byte/char counts.
6094
6095 * regex.c (regex_compile): Remove unused var.
6096
6097 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
6098
6099 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
6100 (Faccessible_keymaps, where_is_internal): Remove unused vars.
6101
6102 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
6103
6104 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
6105
6106 * fileio.c (Fwrite_region): Remove unused var.
6107
6108 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
6109 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
6110
6111 * composite.c (Fremove_list_of_text_properties): Declare.
6112
6113 * coding.c (inhibit_pre_post_conversion): Remove (unused).
6114 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
6115 (coding_inherit_eol_type): Remove unused attrs.
6116 (detect_coding): Cast arg of detect_eol.
6117
6118 * charset.c (syms_of_charset): Remove unused var p.
6119 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
6120 byte/char counts.
6121
6122 * casetab.c (set_case_table): Remove unused var.
6123
6124 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
6125 unused vars.
6126
6127 2008-02-01 Dave Love <fx@gnu.org>
6128
6129 * xterm.c (x_bitmap_mask): Declare.
6130
6131 2008-02-01 Dave Love <fx@gnu.org>
6132
6133 * xterm.c (x_term_init): Fix type error.
6134
6135 * lisp.h: Add Funibyte_char_to_multibyte.
6136
6137 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
6138 (Fset_coding_system_priority): Doc fix.
6139
6140 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
6141
6142 * indent.c (check_composition): Make start and end EMACS_INT.
6143
6144 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
6145
6146 * xdisp.c (handle_composition_prop, check_point_in_composition):
6147 Make buffer positions EMACS_INT.
6148
6149 * composite.c (find_composition, run_composition_function)
6150 (update_compositions, Ffind_composition_internal): Make buffer
6151 positions EMACS_INT.
6152
6153 * composite.h (find_composition, update_compositions): Make
6154 position args EMACS_INT.
6155
6156 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
6157
6158 * intervals.c (get_property_and_range):
6159 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
6160
6161 * unexalpha.c: Don't include varargs.h.
6162
6163 2008-02-01 Dave Love <fx@gnu.org>
6164
6165 * coding.h (ENCODE_UTF_8): New.
6166
6167 * Makefile.in (gtkutil.o): Depend on coding.h.
6168
6169 * coding.c (Fset_coding_system_priority): Doc fix.
6170
6171 2008-02-01 Kenichi Handa <handa@m17n.org>
6172
6173 * fileio.c (Finsert_file_contents): Call setup_coding_system in
6174 the case of auto saving.
6175
6176 2008-02-01 Andreas Schwab <schwab@suse.de>
6177
6178 * chartab.c (map_char_table, map_char_table_for_charset): Protect
6179 `range' from GC.
6180
6181 2008-02-01 Kenichi Handa <handa@m17n.org>
6182
6183 * coding.c (decode_coding_sjis): Check bytes more rigidly.
6184
6185 2008-02-01 Kenichi Handa <handa@m17n.org>
6186
6187 * fileio.c (choose_write_coding_system): Return a decided coding system.
6188 (Fwrite_region): Set Vlast_coding_system_used to the return value
6189 of choose_write_coding_system.
6190
6191 2008-02-01 Kenichi Handa <handa@m17n.org>
6192
6193 * charset.c (Fset_charset_priority): Pay attention to duplicated
6194 arguments.
6195
6196 * coding.c (QCcategory): New variable.
6197 (syms_of_coding): Defsym it. Set all elements of
6198 Vcoding_category_table and their symbol values.
6199 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
6200 coding-category-XXX, and coding-category-list.
6201 (Fdefine_coding_system_internal): Add category in the plist.
6202
6203 2008-02-01 Kenichi Handa <handa@m17n.org>
6204
6205 * callproc.c (Fcall_process): Handle carryover correctly.
6206
6207 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
6208 (raw_text_coding_system): Check NILP (coding_system).
6209 (coding_inherit_eol_type): Check NILP (coding_system) and
6210 NILP (parent).
6211 (consume_chars): Fix for the case of raw-text.
6212
6213 * process.c (read_process_output): Handle carryover correctly.
6214
6215 2008-02-01 Dave Love <fx@gnu.org>
6216
6217 * regex.c (re_search_2): Fix last change.
6218
6219 2008-02-01 Kenichi Handa <handa@m17n.org>
6220
6221 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
6222 target_multibyte. Even in a unibyte case, return a converted
6223 multibyte char.
6224 (GET_CHAR_AFTER): New macro.
6225 (PATFETCH): Translate via multibyte char.
6226 (HANDLE_UNIBYTE_RANGE): Delete this macro.
6227 (SETUP_MULTIBYTE_RANGE): New macro.
6228 (regex_compile): Setup compiled code so that its multibyteness
6229 matches that of a target. Fix the handling of "[X-YZ]" using
6230 SETUP_MULTIBYTE_RANGE.
6231 (analyse_first) <charset>: For filling fastmap for all multibyte
6232 characters, don't check by BASE_LEADING_CODE_P.
6233 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
6234 the same as RE_MULTIBYTE_P (bufp) now.
6235 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
6236 (TARGET_CHAR_AND_LENGTH): Delete this macro.
6237 (TRANSLATE_VIA_MULTIBYTE): New macro.
6238 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
6239 It is the same as RE_MULTIBYTE_P (bufp) now.
6240 <exactn>: Translate via multibyte.
6241 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
6242 translate it.
6243 <charset, charset_not>: Fetch a character by
6244 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
6245 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
6246 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
6247 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
6248 by GET_CHAR_AFTER.
6249 (bcmp_translate): Likewise.
6250
6251 * search.c (compile_pattern): Check the member target_multibyte,
6252 not the member multibyte of buf.
6253
6254 * lread.c (read1): While reading a string, set force_singlebyte
6255 and force_multibyte correctly.
6256
6257 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
6258 up of unibyte_to_multibyte_table.
6259
6260 2008-02-01 Kenichi Handa <handa@m17n.org>
6261
6262 * coding.c (setup_coding_system): If coding has
6263 post-read-conversion or pre-write-conversion, set
6264 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
6265 respectively.
6266 (decode_coding_gap): Run post-read-conversion if any.
6267
6268 * fileio.c (Finsert_file_contents): Even if we read into a
6269 unibyte buffer, check if we must decode the result or not.
6270
6271 2008-02-01 Kenichi Handa <handa@m17n.org>
6272
6273 * coding.c (make_conversion_work_buffer): Change the work buffer
6274 name to the same one as that of Emacs 21.
6275
6276 2008-02-01 Kenichi Handa <handa@m17n.org>
6277
6278 * coding.h (make_conversion_work_buffer): Adjust prototype.
6279 (code_conversion_restore): Don't extern it.
6280
6281 * coding.c (detected_mask): Delete unused variable.
6282 (decode_coding_iso_2022): Pay attention to the byte sequence of
6283 CTEXT extended segment, and retain those bytes as is.
6284 (decode_coding_ccl): Delete unused variable `valids'.
6285 (setup_coding_system): Delete unused variable `category'.
6286 (consume_chars): Delete unused variable `category'. Make it work
6287 for non-multibyte case.
6288 (make_conversion_work_buffer): Change argument.
6289 (saved_coding): Delete unused variable.
6290 (code_conversion_restore): Don't check saved_coding->destination.
6291 (code_conversion_save): New function.
6292 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
6293 instead of record_unwind_protect.
6294 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
6295 (detect_coding_system): Delete unused variable `mask'.
6296 (Fdefine_coding_system_internal): Delete unused vaiable id.
6297
6298 * fileio.c (kill_workbuf_unwind): New function.
6299 (Finsert_file_contents): On replacing, call
6300 make_conversion_work_buffer with correct args, and call
6301 record_unwind_protect with the first arg kill_workbuf_unwind.
6302
6303 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
6304
6305 2008-02-01 Kenichi Handa <handa@m17n.org>
6306
6307 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
6308 (fontset_add): Fix for the case that TO is less than TO1.
6309 (Ffontset_info): Don't use fallback fontset on checking the
6310 default fontset.
6311 (dump_fontset): New function for debugging.
6312
6313 * coding.c (Fdefine_coding_system_internal): Fix for the case that
6314 coding_type is Qcharset.
6315
6316 2008-02-01 Kenichi Handa <handa@m17n.org>
6317
6318 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
6319 (map_char_table): Don't inherit the value from the parent on
6320 initializing VAL. Adjust for the above change.
6321
6322 2008-02-01 Kenichi Handa <handa@m17n.org>
6323
6324 * coding.c (Qsignature, Qendian): Delete these variables.
6325 (syms_of_coding): Don't initialize them.
6326 (CATEGORY_MASK_UTF_16_AUTO): New macro.
6327 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
6328 detect_info->found.
6329 (decode_coding_utf_16): Don't detect BOM here.
6330 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
6331 is NOT utf_16_without_bom.
6332 (setup_coding_system): For a coding system of type utf-16, check
6333 if the attribute :endian is Qbig or not (not nil or not), and set
6334 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
6335 (detect_coding): If coding type is utf-16 and BOM detection is
6336 required, detect it.
6337 (Fdefine_coding_system_internal): For a coding system of type
6338 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
6339
6340 2008-02-01 Kenichi Handa <handa@m17n.org>
6341
6342 * coding.c (coding_set_source): Fix for the case that the current
6343 buffer is different from coding->src_object.
6344 (decode_coding_object): Don't use the conversion work buffer if
6345 DST_OBJECT is a buffer.
6346
6347 2008-02-01 Dave Love <fx@gnu.org>
6348
6349 * lread.c (read_emacs_mule_char) [len==2]: Index
6350 emacs_mule_charset correctly.
6351
6352 2008-02-01 Dave Love <fx@gnu.org>
6353
6354 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
6355 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
6356 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
6357 treated specially.)
6358 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
6359 (detected_mask): Remove Big5 bits.
6360
6361 2008-02-01 Kenichi Handa <handa@m17n.org>
6362
6363 The following changes are to make the font rescaling facility
6364 compatible with Emacs 21.
6365
6366 * xfaces.c (Vface_font_rescale_alist): Rename from
6367 Vface_resizing_fonts.
6368 (struct font_name): Rename member resizing_ratio to rescale_ratio.
6369 (font_rescale_ratio): Rename from font_resizing_ratio.
6370 (split_font_name): Set font->rescale_ratio.
6371 (better_font_p): Pay attention to font->rescale_ratio.
6372 (build_scalable_font_name): Likewise. Change RESX, and RESY
6373 fields.
6374 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
6375
6376 2008-02-01 Kenichi Handa <handa@m17n.org>
6377
6378 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
6379 (Qutf_16_le): Remove these variables.
6380 (syms_of_coding): Don't DEFSYM them.
6381 (decode_coding_utf_16): Fix handling of BOM.
6382 (encode_coding_utf_16): Fix handling of BOM.
6383
6384 2008-02-01 Kenichi Handa <handa@m17n.org>
6385
6386 * fileio.c (Finsert_file_contents): On replacing, before decoding
6387 the file into the work buffer, set point of the work buffer to the end.
6388
6389 2008-02-01 Dave Love <fx@gnu.org>
6390
6391 * coding.c (Fcheck_coding_systems_region): Fix type errors.
6392
6393 2008-02-01 Dave Love <fx@gnu.org>
6394
6395 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
6396 and fix C types.
6397
6398 2008-02-01 Kenichi Handa <handa@m17n.org>
6399
6400 * xdisp.c (SKIP_GLYPHS): New macro.
6401 (set_cursor_from_row): Pay attention to string display properties.
6402
6403 * category.c (copy_category_entry): Fix for the case that RANGE
6404 is an integer.
6405
6406 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
6407
6408 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
6409
6410 2008-02-01 Kenichi Handa <handa@m17n.org>
6411
6412 * charset.c (Fcharset_id_internal): New function.
6413 (syms_of_charset): Defsubr it.
6414
6415 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
6416 with the last arg charset_list acquired from coding.
6417 (Fdefine_coding_system_internal): For ccl-based coding system, fix
6418 the attribute coding_attr_ccl_valids.
6419
6420 * coding.h (enum define_coding_ccl_arg_index): Set the first
6421 member coding_arg_ccl_decoder to coding_arg_max.
6422
6423 * ccl.h (ccl_driver): Adjust prototype.
6424
6425 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
6426 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
6427 of DECODE_CAHR, ENCODE_CHAR, CHAR_CHARSET.
6428 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
6429 last arg Qnil.
6430
6431 2008-02-01 Kenichi Handa <handa@m17n.org>
6432
6433 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
6434 call encode_char.
6435
6436 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
6437
6438 2008-02-01 Dave Love <fx@gnu.org>
6439
6440 * composite.c (syms_of_composite): Make composition_hash_table weak.
6441
6442 2008-02-01 Kenichi Handa <handa@m17n.org>
6443
6444 * dispextern.h (check_face_attributes, generate_ascii_font_name)
6445 (font_name_registry): Don't extern them.
6446 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
6447
6448 * fontset.h (Qfontset): Don't extern it.
6449 (new_fontset_from_font_name): Extern it.
6450
6451 * fontset.c: Give 8 extra slots to fontset objects.
6452 (Qfontset_info): New variable.
6453 (syms_of_fontset): Defsym it.
6454 (FONTSET_FALLBACK): New macro.
6455 (fontset_face): Try also the default fontset.
6456 (make_fontset): Realize a fallback fontset from the default fontset.
6457 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
6458 using split_font_name_into_vector and build_font_name_from_vector.
6459 (Fset_fontset_font): Access the elements of font_spec by enum
6460 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
6461 name by using split_font_name_into_vector.
6462 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
6463 generate a proper font name from the fontset name. Update
6464 Vfontset_alias_alist.
6465 (n_auto_fontsets): New variable.
6466 (new_fontset_from_font_name): New function.
6467 (Ffont_info): Store the information about fonts generated from the
6468 default fontset in the first extra slot of the returned char-table.
6469
6470 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
6471 (font_name_registry): Delete function.
6472 (split_font_name_into_vector): New function.
6473 (build_font_name_from_vector): New function.
6474 (font_list): The argument REGISTRY is now a list of registry names.
6475 (choose_face_font): If we are choosing an ASCII font, and ATTRS
6476 specifies an explicit font name, return the name as is. Make a
6477 list of registy names.
6478
6479 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
6480 of x_new_fontset.
6481 (Fx_create_frame): Don't call x_new_fontset here. Just use
6482 x_list_fonts to check the existence of fonts.
6483
6484 * xterm.h (x_new_fontset): Adjust prototype.
6485
6486 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
6487 string. Use new_fontset_from_font_name to create a fontset from a
6488 font name.
6489
6490 2008-02-01 Kenichi Handa <handa@m17n.org>
6491
6492 * syntax.c (Vfind_word_boundary_function_table): New name for
6493 Vnext_word_boundary_function_table.
6494 (find-word-boundary-function-table): New name for
6495 next-word-boundary-function-table.
6496
6497 2008-02-01 Dave Love <fx@gnu.org>
6498
6499 * Makefile.in: Fix some dependencies.
6500
6501 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
6502 set it to nil before returning.
6503
6504 * composite.c (update_compositions): Fix type error.
6505
6506 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
6507
6508 2008-02-01 Kenichi Handa <handa@m17n.org>
6509
6510 * xterm.c (x_new_font): Optimize for the case that the font is
6511 already set for the frame.
6512
6513 2008-02-01 Kenichi Handa <handa@m17n.org>
6514
6515 * chartab.c (char_table_ascii): Check if the char table contents
6516 is sub-char-table or not.
6517 (char_table_set, char_table_set_range): Fix argument to
6518 char_table_ascii.
6519
6520 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
6521 (detect_coding_utf_8, detect_coding_utf_16)
6522 (detect_coding_emacs_mule, detect_coding_iso_2022)
6523 (detect_coding_sjis, detect_coding_big5)
6524 (detect_coding_ccl, detect_coding_charset): Change argument MASK
6525 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
6526 sequence is valid in this coding system. Change callers.
6527 (MAX_ANNOTATION_LENGTH): New macro.
6528 (ADD_ANNOTATION_DATA): New macro.
6529 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
6530 ADD_ANNOTATION_DATA. Change the format of annotation data.
6531 (ADD_CHARSET_DATA): New macro.
6532 (emacs_mule_char): New argument ID. Change callers.
6533 (decode_coding_emacs_mule, decode_coding_iso_2022)
6534 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
6535 Produce charset annotation data in coding->charbuf.
6536 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
6537 to charset annotation data in coding->charbuf.
6538 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
6539 coding->common_flags if the coding system is iso-2022 based and
6540 uses designation.
6541 (produce_composition): Adjust for the new annotation data format.
6542 (produce_charset): New function.
6543 (produce_annotation): Handle charset annotation.
6544 (handle_composition_annotation, handle_charset_annotation): New
6545 functions.
6546 (consume_chars): Handle charset annotation. Utilize the above two
6547 functions.
6548 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
6549 buffer, get the deleted text as a string and set
6550 coding->src_object to that string.
6551 (detect_coding, detect_coding_system): Use the new struct
6552 coding_detection_info.
6553
6554 * coding.h (struct coding_detection_info): New structure.
6555 (struct coding_system): Adjust prototype of the member `detector'.
6556 (CODING_ANNOTATE_CHARSET_MASK): New macro.
6557
6558 2008-02-01 Kenichi Handa <handa@m17n.org>
6559
6560 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
6561
6562 2008-02-01 Dave Love <fx@gnu.org>
6563
6564 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
6565 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
6566 to new local and nullify apropos_accumulate before returning.
6567 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
6568
6569 2008-02-01 Kenichi Handa <handa@m17n.org>
6570
6571 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
6572 correctly.
6573
6574 2008-02-01 Dave Love <fx@gnu.org>
6575
6576 * fns.c (Flanginfo): Call synchronize_system_time_locale.
6577
6578 2008-02-01 Kenichi Handa <handa@m17n.org>
6579
6580 The following changes are to make character composition happen
6581 automatically on displaying.
6582
6583 * Makefile.in (lisp, shortlisp): Add composite.elc.
6584
6585 * composite.h (Qauto_composed, Vauto_composition_function)
6586 (Qauto_composition_function): Extern them.
6587
6588 * composite.c (Vcomposition_function_table)
6589 (Qcomposition_function_table): Delete variables.
6590 (Qauto_composed, Vauto_composition_function)
6591 (Qauto_composition_function): New variables.
6592 (run_composition_function): Don't call
6593 compose-chars-after-function.
6594 (update_compositions): Clear `auto-composed' text property.
6595 (compose_chars_in_text): Delete this function.
6596 (syms_of_composite): Staticpro Qauto_composed and
6597 Qauto_composition_function. Declare Vauto_composition_function as
6598 a Lisp variable.
6599
6600 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
6601
6602 * xdisp.c (it_props): Add an entry for Qauto_composed.
6603 (handle_auto_composed_prop): New function.
6604
6605 * xselect.c (selection_data_to_lisp_data): Don't call
6606 compose_chars_in_text.
6607
6608 2008-02-01 Dave Love <fx@gnu.org>
6609
6610 * keyboard.c (read_char): Modify checking around use of
6611 Vkeyboard_translate_table.
6612
6613 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
6614 and fix C types.
6615
6616 2008-02-01 Kenichi Handa <handa@m17n.org>
6617
6618 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
6619 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6620 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
6621 the case that the last byte is '\r' correctly.
6622 (decode_coding): Flush out the unprocessed data correctly.
6623 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
6624
6625 2008-02-01 Dave Love <fx@gnu.org>
6626
6627 * xterm.c (XTread_socket): Fix changes for defined keysyms. Add
6628 XK_ISO... case.
6629 (xaw_scroll_callback): Revert last change.
6630
6631 2008-02-01 Kenichi Handa <handa@m17n.org>
6632
6633 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
6634
6635 2008-02-01 Kenichi Handa <handa@m17n.org>
6636
6637 * xfaces.c (Vface_resizing_fonts): New variable.
6638 (struct font_name): New member `resizing_ratio'.
6639 (font_resizing_ratio): New function.
6640 (split_font_name): Set font->resizing_ratio.
6641 (better_font_p): Pay attention to font->resizing_ratio.
6642 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
6643 RESX, and RESY fields.
6644 (try_alternative_families): Try scalable fonts if
6645 Vscalable_fonts_allowed is not Qt.
6646 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
6647
6648 2008-02-01 Dave Love <fx@gnu.org>
6649
6650 * xterm.c (xaw_scroll_callback): Cast correctly.
6651
6652 2008-02-01 Dave Love <fx@gnu.org>
6653
6654 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
6655 (lispy_kana_keys): Comment out.
6656 (make_lispy_event) [XK_kana_A]: Comment out.
6657
6658 * xterm.c (xaw_scroll_callback): Cast call_data.
6659 (XTread_socket): Deal with ASCII keysyms.
6660 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
6661
6662 2008-02-01 Dave Love <fx@gnu.org>
6663
6664 * xterm.c (Vx_keysym_table): New.
6665 (syms_of_xterm): Initialize it.
6666 (XTread_socket): Use it.
6667 From head: Eliminate incorrect optimization that tried to avoid
6668 decoding the output of X*LookupString.
6669 (x_get_font_repertory): Delete charset declaration.
6670
6671 2008-02-01 Kenichi Handa <handa@m17n.org>
6672
6673 * coding.c (detect_coding_charset): If only ASCII bytes are found,
6674 return 0.
6675 (Fdefine_coding_system_internal): Setup
6676 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
6677
6678 2008-02-01 Dave Love <fx@gnu.org>
6679
6680 * coding.c (Fcheck_coding_system): Doc fix.
6681
6682 * editfns.c (Finsert_byte): Return a proper value.
6683
6684 2008-02-01 Kenichi Handa <handa@m17n.org>
6685
6686 * coding.c (decode_coding): Fix args to translate_chars. Pay
6687 attention to Vstandard_translation_table_for_decode.
6688 (encode_coding): Fix args to translate_chars. Pay attention to
6689 Vstandard_translation_table_for_encode.
6690
6691 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
6692 SINGLE_BYTE_CHAR_P.
6693
6694 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
6695 not by SINGLE_BYTE_CHAR_P.
6696
6697 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
6698 SINGLE_BYTE_CHAR_P.
6699
6700 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
6701 SINGLE_BYTE_CHAR_P.
6702
6703 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
6704 by SINGLE_BYTE_CHAR_P.
6705
6706 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
6707 SINGLE_BYTE_CHAR_P.
6708
6709 2008-02-01 Dave Love <fx@gnu.org>
6710
6711 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
6712
6713 2008-02-01 Dave Love <fx@gnu.org>
6714
6715 * fns.c (Flanginfo): Fix typo.
6716
6717 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
6718
6719 2008-02-01 Kenichi Handa <handa@m17n.org>
6720
6721 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
6722 (detect_coding_emacs_mule, detect_coding_iso_2022)
6723 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
6724 incomplete byte sequence. Don't update *mask when correctly detected.
6725 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
6726 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
6727 (detect_coding, detect_coding_system): Adjust for the changes above.
6728
6729 2008-02-01 Kenichi Handa <handa@m17n.org>
6730
6731 * character.c (char_string): Rename from
6732 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
6733 (string_char): Rename from string_char.
6734
6735 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
6736 if C is greater than MAX_3_BYTE_CHAR.
6737 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
6738 string_char instead of string_char_with_unification.
6739
6740 2008-02-01 Dave Love <fx@gnu.org>
6741
6742 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
6743
6744 2008-02-01 Kenichi Handa <handa@m17n.org>
6745
6746 * keymap.c (push_key_description): Pay attention to force_multibyte.
6747
6748 * regex.c (re_search_2): Fix for the case of unibyte buffer.
6749
6750 2008-02-01 Dave Love <fx@gnu.org>
6751
6752 * charset.c (define_charset_internal): Rename `supprementary'.
6753
6754 * Makefile.in (lisp, shortlisp): Remove latin-N.
6755
6756 2008-02-01 Dave Love <fx@gnu.org>
6757
6758 * xfns.c (x_window, x_window): Use use_xim.
6759
6760 * xterm.c (use_xim): Initialize.
6761 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
6762 (x_term_init): Maybe set use_xim.
6763
6764 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
6765
6766 2008-02-01 Kenichi Handa <handa@m17n.org>
6767
6768 * search.c (search_buffer): Fix case-fold-search of multibyte
6769 characters.
6770 (boyer_moore): Rename the last argument to char_high_bits.
6771
6772 2008-02-01 Kenichi Handa <handa@m17n.org>
6773
6774 * xdisp.c (display_string): Fix for the case of zero width glyph.
6775
6776 * xfns.c (x_set_font): Change the error message of the case that
6777 x_new_fontset returns Qt.
6778
6779 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
6780 (Finternal_set_lisp_face_attribute): Use signal_error for the
6781 error of invalid fontset.
6782
6783 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
6784 fontset, return Qt.
6785
6786 2008-02-01 Dave Love <fx@gnu.org>
6787
6788 * unexelf.c (unexec): Make .got handling not SGI-specific.
6789
6790 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
6791
6792 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
6793
6794 * keyboard.c (read_key_sequence): Fix type error.
6795
6796 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
6797 type error.
6798
6799 * fontset.c (fontset_add): Return Lisp_Object.
6800
6801 2008-02-01 Dave Love <fx@gnu.org>
6802
6803 * charset.h (charset_ordered_list_tick): Declare extern.
6804
6805 2008-02-01 Kenichi Handa <handa@m17n.org>
6806
6807 The following changes (and some of 2008-02-01 changes of mine) are
6808 for handling syntax, category, and case conversion for unibyte
6809 characters by converting them to multibyte on the fly. With these
6810 changes, we don't have to setup syntax and case tables for unibyte
6811 characters in each language environment.
6812
6813 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
6814 multibyte if necessary.
6815
6816 * bytecode.c (Fbyte_code): Likewise.
6817
6818 * character.h (LEADING_CODE_LATIN_1_MIN)
6819 (LEADING_CODE_LATIN_1_MAX): New macros.
6820 (unibyte_to_multibyte_table): Extern it.
6821 (unibyte_char_to_multibyte): New macro.
6822 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
6823 (CHAR_LEADING_CODE): New macro.
6824 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
6825
6826 * character.c (unibyte_to_multibyte_table): New variable.
6827 (unibyte_char_to_multibyte): Move to character.h and define as macro.
6828 (multibyte_char_to_unibyte): If C is an eight-bit character,
6829 convert it to the corresponding byte value.
6830
6831 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
6832 not 1, singals an error. Update the elements of
6833 unibyte_to_multibyte_table.
6834 (init_charset_once): Initialize unibyte_to_multibyte_table.
6835 (syms_of_charset): Define the charset `iso-8859-1'.
6836
6837 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
6838 as is without converting it to unibyte. In a unibyte buffer,
6839 convert C to multibyte before checking the syntax.
6840
6841 * lisp.h (unibyte_char_to_multibyte): Delete extern.
6842
6843 * minibuf.c (Fminibuffer_complete_word): Use the macro
6844 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
6845
6846 * regex.h (struct re_pattern_buffer): New member target_multibyte.
6847
6848 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
6849 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
6850 that is zero, convert an eight-bit char to multibyte.
6851 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
6852 non-emacs case.
6853 (PATFETCH): Convert an eight-bit char to multibyte.
6854 (HANDLE_UNIBYTE_RANGE): New macro.
6855 (regex_compile): Setup the compiled pattern for multibyte chars
6856 even if the given regex string is unibyte. Use PATFETCH_RAW
6857 instead of PATFETCH in many places. To handle `charset'
6858 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
6859 only for ASCII chars.
6860 (analyse_first) <exactn>: Simplify because the compiled pattern
6861 is multibyte.
6862 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
6863 <charset>: Use CHAR_LEADING_CODE to get leading codes.
6864 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
6865 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
6866 multibyte always 1.
6867 (re_search_2): In emacs, set the locale variable multibyte to 1,
6868 otherwise to 0. New local variable target_multibyte. Check it
6869 to decide the multibyteness of STR1 and STR2. If
6870 target_multibyte is zero, convert unibyte chars to multibyte
6871 before translating and checking fastmap.
6872 (TARGET_CHAR_AND_LENGTH): New macro.
6873 (re_match_2_internal): In emacs, set the locale variable multibyte
6874 to 1, otherwise to 0. New local variable target_multibyte. Check
6875 it to decide the multibyteness of STR1 and STR2. Use
6876 TARGET_CHAR_AND_LENGTH to fetch a character from D.
6877 <charset, charset_not>: If multibyte is nonzero, check fastmap
6878 only for ASCII chars. Call bcmp_translate with
6879 target_multibyte, not with multibyte.
6880 <begline>: Declare the local variable C as `unsigned'.
6881 (bcmp_translate): Change the last arg name to target_multibyte.
6882
6883 * search.c (compile_pattern_1): Don't adjust the multibyteness of
6884 the regexp pattern and the matching target. Set cp->buf.multibyte
6885 to the multibyteness of the regexp pattern. Set
6886 cp->but.target_multibyte to the multibyteness of the matching target.
6887 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
6888 FETCH_STRING_CHAR_ADVANCE.
6889 (Freplace_match): Convert unibyte chars to multibyte.
6890
6891 * syntax.c (char_quoted, back_comment, scan_words)
6892 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
6893 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
6894 unibyte chars to multibyte.
6895 (skip_chars): Delete the arg syntaxp, and move the code for
6896 handling syntaxes to skip_syntaxes. Change callers.
6897 Fix the case that the multibyteness of STRING and the current
6898 buffer doesn't match.
6899 (skip_syntaxes): New function.
6900 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
6901 SINGLE_BYTE_CHAR_P.
6902
6903 2008-02-01 Kenichi Handa <handa@m17n.org>
6904
6905 * xfaces.c (QCfontset): New variable.
6906 (LFACE_FONTSET): New macro.
6907 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
6908 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
6909 (Finternal_set_lisp_face_attribute)
6910 (Finternal_get_lisp_face_attribute): Handle QCfontset.
6911 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
6912 check also LFACE_FONTSET_INDEX.
6913 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
6914 attrs[LFACE_FONT_INDEX].
6915 (syms_of_xfaces): Intern and staticpro QCfontset.
6916
6917 * dispextern.h (enum lface_attribute_index): New member
6918 LFACE_FONTSET_INDEX.
6919
6920 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
6921
6922 2008-02-01 Kenichi Handa <handa@m17n.org>
6923
6924 * coding.c (coding_set_destination): Fix coding->destination for
6925 the case converting a region.
6926 (encode_coding_utf_8): Encode eight-bit chars as single byte.
6927 (encode_coding_object): Fix coding->dst_pos and
6928 coding->dst_pos_byte for the case converting a region.
6929
6930 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
6931
6932 * character.h (BYTE8_STRING): New macro.
6933
6934 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
6935
6936 2008-02-01 Kenichi Handa <handa@m17n.org>
6937
6938 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
6939 characters by octal form.
6940
6941 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
6942
6943 * buffer.h (_fetch_multibyte_char_len): Delete extern.
6944 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
6945 _fetch_multibyte_char_len.
6946 (FETCH_CHAR_AS_MULTIBYTE): New macro.
6947
6948 * casetab.c (set_canon, set_identity, shuffle): Simplify.
6949
6950 * casefiddle.c (casify_object): Simplify. Handle the case that
6951 the case conversion change the byte length.
6952 (casify_region): Likewise.
6953
6954 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
6955
6956 * character.c (_fetch_multibyte_char_len): Delet this variable.
6957 (syms_of_character): Setup Vprintable_chars.
6958
6959 * editfns.c (Fchar_equal): Fix for the unibyte case.
6960 (Finsert_byte): New function.
6961 (syms_of_editfns): Defsubr it.
6962
6963 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
6964 of direct code 0x3ffff.
6965
6966 * search.c (Freplace_match): Fix for the unibyte case.
6967
6968 2008-02-01 Kenichi Handa <handa@m17n.org>
6969
6970 * lread.c (safe_to_load_p): Fix the logic.
6971
6972 * syntax.c (scan_words): Don't treat characters belonging to
6973 different scripts as constituting a word.
6974
6975 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
6976
6977 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
6978
6979 * emacs.c (main): In the case of --unibyte, instead of aborting on
6980 finding non-empty buffer, make it unibyte.
6981
6982 2008-02-01 Kenichi Handa <handa@m17n.org>
6983
6984 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
6985 to create a fontset.
6986
6987 2008-02-01 Dave Love <fx@gnu.org>
6988
6989 * character.c (Funibyte_char_to_multibyte): Doc fix.
6990
6991 * xfns.c [HAVE_STDLIB_H]: Fix last change.
6992
6993 2008-02-01 Kenichi Handa <handa@m17n.org>
6994
6995 * fontset.c (fontset_add): Make the type `int'.
6996 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
6997
6998 * character.c (unibyte_char_to_multibyte)
6999 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
7000 charset_unibyte, not charset_primary.
7001
7002 * charset.h (charset_unibyte): Extern it instead of charset_primary.
7003
7004 * charset.c (charset_unibyte): Rename from charset_primary.
7005 (Funibyte_charset): Rename from Fprimary_charset.
7006 (Fset_unibyte_charset): Rename from Fset_primary_charset.
7007 (syms_of_charset): Adjust for the above changes.
7008
7009 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
7010 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
7011 it->multibyte_p is zero.
7012
7013 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
7014 Delete extern.
7015
7016 2008-02-01 Kenichi Handa <handa@m17n.org>
7017
7018 * coding.c (Fdefine_coding_system_internal): Fix category setting
7019 for a coding system of type iso-2022.
7020
7021 2008-02-01 Kenichi Handa <handa@m17n.org>
7022
7023 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
7024
7025 2008-02-01 Kenichi Handa <handa@m17n.org>
7026
7027 * syntax.c (Vnext_word_boundary_function_table): New variable.
7028 (next-word-boundary-function-table): Declare it as a Lisp variable
7029 in syms_of_syntax.
7030 (scan_words): Call functions in Vnext_word_boundary_function_table
7031 if any.
7032
7033 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
7034
7035 * fontset.c (fs_load_font): If fontp->charset is not negative,
7036 return fontp without setting its members.
7037
7038 2008-02-01 Dave Love <fx@gnu.org>
7039
7040 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
7041
7042 * m/sparc.h (HAVE_ALLOCA): Delete.
7043
7044 * s/irix6-5.h: Don't include strings.h.
7045 (bcopy, bzero, bcmp): Don't undef.
7046
7047 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
7048
7049 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
7050 (TIOCSIGSEND): Don't test IRIX6.
7051 (bcopy, bzero, bcmp): Define conditionally.
7052
7053 2008-02-01 Kenichi Handa <handa@m17n.org>
7054
7055 * buffer.c (Qas, Qmake, Qto): New variables.
7056 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
7057 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
7058
7059 * callproc.c (Fcall_process): Don't call insert_1_both directly if
7060 we are inserting a process output into a multibyte buffer.
7061
7062 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
7063 multibyte_char_to_unibyte.
7064
7065 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
7066 by the primary charset, make it eight-bit char.
7067 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
7068
7069 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
7070 (charset_8_bit__control, charset_8_bit_graphic)
7071 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
7072 (define_charset_internal): New function.
7073 (syms_of_charset): Call define_charset_internal for pre-defined
7074 charsets.
7075
7076 * charset.h (charset_8_bit): Extern it.
7077
7078 * coding.c (make_conversion_work_buffer): Adjust for the change
7079 of Fset_buffer_multibyte.
7080 (encode_coding_raw_text): Increment p0 in the loop.
7081
7082 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
7083
7084 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
7085 for the change of Fset_buffer_multibyte.
7086
7087 * fns.c (Fstring_to_multibyte): New function.
7088 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
7089
7090 2008-02-01 Dave Love <fx@gnu.org>
7091
7092 * xfns.c (x_put_x_image): Declare args.
7093
7094 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
7095 (try_font_list): Declare an arg.
7096
7097 * xdisp.c (message2_nolog, set_message): Declare an arg.
7098
7099 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
7100
7101 * syntax.c (scan_sexps_forward): Declare an arg.
7102
7103 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
7104 Declare an arg.
7105
7106 * lisp.h (Fnew_fontset): Declare.
7107
7108 * keymap.c (push_key_description): Call CHARACTERP correctly.
7109
7110 * fontset.c (fontset_add): Declare args. Call make_number correctly.
7111 (face_for_char): Delete unused vars.
7112 (Fset_fontset_font): Doc fix. Delete unused vars.
7113
7114 * doc.c (Fsubstitute_command_keys): Delete unused vars.
7115
7116 * composite.c (update_compositions): Declare arg.
7117
7118 * cm.c (calccost, cmgoto): Declare args.
7119
7120 * charset.c: Remove `emacs' conditional. Doc fixes.
7121 (map_char_table_for_charset): Declare.
7122
7123 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
7124
7125 * ccl.c: Remove `emacs' conditional.
7126
7127 2008-02-01 Kenichi Handa <handa@m17n.org>
7128
7129 The following changes are to allow specifying multiple font
7130 patterns for a character range (specified by script or charset).
7131
7132 * Makefile.in (abbrev.o): Depend on syntax.h.
7133 (xfaces.o): Depend on charset.h.
7134
7135 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
7136 SINGLE_BYTE_CHAR_P.
7137
7138 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
7139
7140 * character.h (Vchar_script_table): Extern it.
7141
7142 * character.c (Vscript_alist): Delete.
7143 (Vchar_script_table, Qchar_script_table): New variable.
7144 (syms_of_character): Declare Vchar_script_table as a lisp variable
7145 and initialize it.
7146
7147 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
7148 have property char-table-extra-slots, make no extra slot.
7149
7150 * dispextern.h (struct face): Delete member `charset'.
7151 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
7152 SINGLE_BYTE_CHAR_P.
7153 (choose_face_font, lookup_non_ascii_face, font_name_registry):
7154 Add prototypes.
7155 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
7156 (generate_ascii_font_name): Rename from generate_ascii_font.
7157
7158 * fontset.h (get_font_repertory_func): New prototype.
7159 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
7160 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
7161
7162 * fontset.c (Qprepend, Qappend): New variables.
7163 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
7164 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
7165 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
7166 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
7167 (fontset_ref_and_range, fontset_add, reorder_font_vector)
7168 (load_font_get_repertory): New functions.
7169 (fontset_set): Delete.
7170 (fontset_face): New arg FACE. Return face ID, not face.
7171 Complete re-write to handle new fontset structure. Change caller.
7172 (free_face_fontset): Use ASET istead of AREF (X) = Y.
7173 (face_for_char): Don't call lookup_face.
7174 (make_fontset_for_ascii_face): New arg FACE.
7175 (fs_load_font): New arg CHARSET_ID. Don't check
7176 Vfont_encoding_alist here.
7177 (find_font_encoding): New function.
7178 (list_fontsets): Use STRINGP, not ! NILP.
7179 (accumulate_script_ranges): New function.
7180 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
7181 re-written to handle new fontset structure.
7182 (Ffontset_font): Return a copy of element.
7183 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
7184 docstring of font-encoding-alist.
7185
7186 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
7187 (Fset_fotset_font): Fix arguments to 5.
7188
7189 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
7190
7191 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
7192 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
7193 (highlight_trailing_whitespace): Adjust for the change of
7194 lookup_named_face.
7195
7196 * xfaces.c: Include charset.h.
7197 (load_face_font): Delete argument C. Change caller.
7198 (generate_ascii_font_name): Rename from generate_ascii_font.
7199 (font_name_registry): New function.
7200 (cache_face): Store ascii faces before non-ascii faces in buckets.
7201 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
7202 Lookup only ascii faces.
7203 (lookup_non_ascii_face): New function.
7204 (lookup_named_face): Delete argument C. Change caller.
7205 (lookup_derived_face): Delete argument C. Change caller.
7206 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
7207 a string, just call font_list with it.
7208 (choose_face_font): Delete arguments FACE and C. New arg
7209 FONT_SPEC. Change caller.
7210 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
7211 Change caller.
7212 (realize_non_ascii_face): New function.
7213 (realize_x_face): Call load_face_font here.
7214 (realize_tty_face): Delete argument C. Change caller.
7215 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
7216 get a face ID.
7217 (dump_realized_face): Don't print charset of FACE.
7218
7219 * xfns.c (x_set_font): Always call x_new_fontset and
7220 store_frame_parameter.
7221 (Fx_create_frame): Call x_new_fontset, not x_new_font.
7222 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
7223
7224 * xterm.h (x_get_font_repertory): Extern it.
7225
7226 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
7227 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
7228 it->multibyte_p is zero.
7229 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
7230 (x_new_fontset): If FONTSETNAME doesn't match any existing
7231 fontsets, create a new one.
7232 (x_get_font_repertory): New function.
7233
7234 2008-02-01 Kenichi Handa <handa@m17n.org>
7235
7236 * coding.c (Ffind_coding_systems_region_internal): Detect an
7237 ASCII only string correctly.
7238
7239 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
7240 version is 0.
7241
7242 2008-02-01 Kenichi Handa <handa@m17n.org>
7243
7244 * lread.c: Include "coding.h".
7245 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
7246 (load_each_byte, unread_char): New variables.
7247 (readchar_backlog): Delete.
7248 (readchar): Return a character unless load_each_byte is nonzero.
7249 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
7250 cons. If unread_char is not -1, simply return it.
7251 (unreadchar): Handle the case that readcharfun is
7252 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
7253 (read_multibyte): Delete.
7254 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
7255 (read_emacs_mule_char): New functions.
7256 (Fload): Even if the file doesn't have the extention ".elc", if
7257 safe_to_load_p returns a positive version number, assume that the
7258 file contains bytecompiled code. If the version is less than 22,
7259 load the file while decoding multibyte sequences by emacs-mule.
7260 (readevalloop): Don't use readchar_backlog.
7261 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
7262 (Fread_from_string): Pay attention to the case that STREAM is a cons.
7263 (read_escape): Delete the arg BYTEREP.
7264 (read1): Set load_each_byte to 1 temporarily while handling
7265 #@NUMBER. Don't call read_multibyte.
7266 (read_vector): Call Fread with a cons. If readcharfun is
7267 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
7268 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
7269 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
7270 and Qload_force_doc_strings.
7271
7272 2008-02-01 Kenichi Handa <handa@m17n.org>
7273
7274 * xdisp.c (face_before_or_after_it_pos): Call
7275 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
7276
7277 2008-02-01 Kenichi Handa <handa@m17n.org>
7278
7279 * character.h (TRAILING_CODE_P): New macro.
7280 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
7281 (string_char_with_unification): Fix prototype.
7282 (Vscript_alist): Extern it.
7283
7284 * character.c (Vscript_alist): New variable.
7285 (string_char_with_unification, str_as_unibyte)
7286 (string_escape_byte8): Add `const' to local variables.
7287 (syms_of_character): Declare script-alist as a Lisp variable.
7288
7289 * charset.h (Vcharset_ordered_list): Extern it.
7290 (charset_ordered_list_tick): Extern it.
7291 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
7292 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
7293 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
7294 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros
7295 (Funify_charset): Adjust for the change of Funify_charset.
7296
7297 * charset.c (charset_ordered_list_tick): New variable.
7298 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
7299 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
7300 deunify intead of unify a charset.
7301 (string_xstring_p): Add `const' to local variables.
7302 (find_charsets_in_text): Add `const' to arguemnts and local variables.
7303 (encode_char): Adjust for the change of Funify_charset. Fix
7304 detecting of invalid code.
7305 (Fset_charset_priority): Increment charset_ordered_list_tick.
7306 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
7307 and TO_CODE.
7308
7309 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
7310 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
7311 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
7312 (decode_coding_ccl, consume_chars)
7313 (Ffind_coding_systems_region_internal)
7314 (Fcheck_coding_systems_region): Add `const' to local variables.
7315
7316 * print.c (print_object): Use octal form for printing the
7317 contents of a bool vector.
7318
7319 2008-02-01 Dave Love <fx@gnu.org>
7320
7321 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
7322 <version == 20>: Refuse to load.
7323
7324 2008-02-01 Dave Love <fx@gnu.org>
7325
7326 * fns.c: Move coding.h.
7327 (Qcodeset, Qdays, Qmonths): New.
7328 (concat): Use CHARACTERP instead of INTERGERP.
7329 (Flocale_codeset): Delete.
7330 (Flanginfo): New function.
7331 (syms_of_fns): Change accordingly.
7332
7333 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
7334
7335 2008-02-01 Dave Love <fx@gnu.org>
7336
7337 * casetab.c (init_casetab_once, init_casetab_once): Fix
7338 CHAR_TABLE_SET call.
7339
7340 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
7341
7342 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
7343
7344 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
7345 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
7346 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
7347
7348 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
7349
7350 * coding.c (ENCODE_DESIGNATION, decode_eol)
7351 (make_conversion_work_buffer, code_conversion_restore)
7352 (Fdefine_coding_system_internal): Convert Lisp types.
7353 (code_conversion_restore): Use EQ, not ==.
7354 (Fencode_coding_string): Fix code_convert_string call.
7355
7356 * coding.h (code_convert_region): Fix prototype.
7357
7358 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
7359
7360 * fontset.c (fontset_ref, fontset_set, fs_load_font)
7361 (Ffontset_info): Convert Lisp types.
7362
7363 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
7364
7365 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
7366
7367 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
7368
7369 * chartab.c: Include "...h", not <...h> in some cases.
7370
7371 * callproc.c (Fcall_process): Remove unused variables.
7372
7373 2008-02-01 Dave Love <fx@gnu.org>
7374
7375 * coding.c (Fset_coding_system_priority): Allow null arg list.
7376
7377 2008-02-01 Dave Love <fx@gnu.org>
7378
7379 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
7380 (Fself_insert_and_exit): Use CHARACTERP.
7381
7382 * callproc.c (Fcall_process): Remove unused vars.
7383
7384 * xterm.c (XTread_socket): Add extra dead keysyms.
7385
7386 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
7387
7388 * dispextern.h: Remove prototypes for redraw_frame,
7389 redraw_garbaged_frames.
7390
7391 * cmds.c (Fself_insert_command): Use CHARACTERP.
7392
7393 * chartab.c (make_sub_char_table): Remove unused var.
7394 (Fset_char_table_default, Fmap_char_table): Doc fix.
7395
7396 * keymap.c (access_keymap): Remove generic char code.
7397 (push_key_description): Use CHARACTERP.
7398
7399 2008-02-01 Dave Love <fx@gnu.org>
7400
7401 * charset.c: Doc fixes.
7402 (Funify_charset): Extra checking.
7403
7404 2008-02-01 Dave Love <fx@gnu.org>
7405
7406 * lread.c: Remove some unused variables.
7407 (safe_to_load_p): If safe, return the magic number version byte.
7408 (Fload): Maybe use load-with-code-conversion.
7409
7410 2008-02-01 Kenichi Handa <handa@m17n.org>
7411
7412 * category.c (Fmodify_category_entry): Don't modify the contents
7413 of category_set for characters out of the range. Avoid
7414 unnecessary modification.
7415
7416 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
7417 Vchar_unify_table. The default value of the table is now nil.
7418
7419 * character.c (syms_of_character): Setup Vchar_width_table for
7420 eight-bit-control and raw-byte chars.
7421
7422 * charset.h (enum define_charset_arg_index): Delete
7423 charset_arg_parents and add charset_arg_subset and
7424 charset_arg_superset.
7425 (enum charset_attr_index): Delete charset_parents and add
7426 charset_subset and charset_superset.
7427 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
7428 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
7429 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
7430 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
7431 (CHARSET_SUPERSET): New macros.
7432 (charset_work): Extern it.
7433 (ENCODE_CHAR): Use charset_work.
7434 (CHAR_CHARSET_P): Adjust for the change of encoder format.
7435 (map_charset_chars): Extern it.
7436
7437 * charset.c (load_charset_map): Set the default value of encoder
7438 and deunifier char-tables to nil.
7439 (map_charset_chars): Change argument. Change callers. Use
7440 map_char_table_for_charset instead of map_char_table.
7441 (Fmap_charset_chars): New optional args from_code and to_code.
7442 (Fdefine_charset_internal): Adjust for the change of
7443 `define-charset' (:parents -> :subset or :superset).
7444 (charset_work): New variable.
7445 (encode_char, syms_of_charset): Adjust for the change of
7446 Fdefine_charset_internal.
7447 (Ffind_charset_string): Setup the vector `charsets' correctly.
7448
7449 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
7450 the previous change.
7451 (char_table_ref_and_range): Adjust for the above change.
7452 (map_sub_char_table_for_charset): New function.
7453 (map_char_table_for_charset): New function.
7454
7455 * keymap.c (describe_vector): Handle a char-table directly here.
7456 (describe_char_table): Delete.
7457
7458 * lisp.h (map_charset_chars): Delete.
7459
7460 2008-02-01 Dave Love <fx@gnu.org>
7461
7462 * fns.c (count_combining): Comment out (unused).
7463 (Flocale_codeset): New.
7464 (syms_of_fns): Defsubr it.
7465
7466 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
7467 (size_t): Remove.
7468
7469 2008-02-01 Dave Love <fx@gnu.org>
7470
7471 * Makefile.in (chartab.o): Depend on charset.h.
7472
7473 2008-02-01 Kenichi Handa <handa@m17n.org>
7474
7475 * character.c (syms_of_character): Set the default value of
7476 Vprintable_chars to Qnil.
7477
7478 2008-02-01 Dave Love <fx@gnu.org>
7479
7480 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
7481
7482 2008-02-01 Kenichi Handa <handa@m17n.org>
7483
7484 * charset.c (load_charset_map): Handle the case that from < to
7485 correctly.
7486
7487 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
7488 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
7489 Pay attention to raw-8-bit chars.
7490
7491 2008-02-01 Kenichi Handa <handa@m17n.org>
7492
7493 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
7494 It is not bytecompiled now.
7495
7496 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
7497 (charset_jisx0208): New variables.
7498 (Fdefine_charset_internal): Setup them if appropriate.
7499 (init_charset_once): Initialize them to -1.
7500
7501 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
7502 (charset_jisx0208): Extern them.
7503
7504 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro
7505 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
7506 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
7507 (setup_iso_safe_charsets): Fix arguments to Fassq.
7508 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
7509 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
7510 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
7511 (encode_coding_iso_2022): Change the 1st arg to
7512 ENCODE_ISO_CHARACTER to a variable.
7513
7514 2008-02-01 Kenichi Handa <handa@m17n.org>
7515
7516 * charset.h (enum define_charset_arg_index): New enums
7517 charset_arg_min_code and charset_arg_max_code.
7518 (struct charset): New member char_index_offset.
7519
7520 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
7521 Take charset->char_index_offset into account.
7522 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
7523 args[charset_arg_max_code]. Setup charset.char_index_offset.
7524 (syms_of_charset): Fix args to Fdefine_charset_internal.
7525
7526 2008-02-01 Dave Love <fx@gnu.org>
7527
7528 * coding.c (decode_coding_utf_8): Reject overlong sequences.
7529
7530 2008-02-01 Dave Love <fx@gnu.org>
7531
7532 * coding.c: Doc fixes.
7533 (Fcoding_system_aliases): Fix return value.
7534 (Qmac): Remove (duplicated) definition.
7535
7536 2008-02-01 Dave Love <fx@gnu.org>
7537
7538 * charset.c (Fcharset_priority_list, Fset_charset_priority): New
7539 functions.
7540
7541 * character.c (Fstring): Doc fix.
7542
7543 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
7544
7545 * fontset.c (Ffontset_info): Doc fix. Return charset names, not
7546 ids.
7547 (font-encoding-alist): Doc fix.
7548
7549 2008-02-01 Dave Love <fx@gnu.org>
7550
7551 * term.c (costs_set): Declare static, non-initialized for pcc.
7552 (encode_terminal_code): Remove unused var.
7553
7554 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
7555 for K&R.
7556
7557 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
7558
7559 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
7560 (suffixes): Move out of make_subsidiaries for K&R.
7561
7562 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
7563
7564 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
7565
7566 2008-02-01 Dave Love <fx@gnu.org>
7567
7568 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
7569
7570 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
7571
7572 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
7573
7574 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
7575
7576 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
7577
7578 2008-02-01 Kenichi Handa <handa@m17n.org>
7579
7580 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
7581 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
7582
7583 2008-02-01 Kenichi Handa <handa@m17n.org>
7584
7585 * coding.c (decode_coding_charset): Adjust for the change of
7586 Fdefine_coding_system_internal.
7587 (Fdefine_coding_system_internal): For a coding system of
7588 `charset' type, store a list of charset IDs in
7589 `charset_attr_charset_valids' element of coding attributes.
7590
7591 2008-02-01 Kenichi Handa <handa@m17n.org>
7592
7593 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
7594 (emacs_mule_char): New arg src. Delete arg `composition'. Change
7595 caller. Handle 2-byte and 3-byte charsets correctly.
7596 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
7597 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
7598 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
7599 (DECODE_EMACS_MULE_21_COMPOSITION): Call
7600 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
7601 sequence.
7602 (decode_coding_emacs_mule): Handle composition correctly. Rewind
7603 `src' and `consumed_chars' correctly before calling emacs_mule_char.
7604 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
7605 and alt&rule composition.
7606 (decode_coding_iso_2022): Handle composition correctly.
7607 (init_coding_once): Setup emacs_mule_bytes for private charsets.
7608
7609 * charset.c (Fdefine_charset_internal): Fix bug for the case of
7610 re-defining a charset. If the charset has :emacs-mule-id, setup
7611 emacs_mule_bytes.
7612 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
7613
7614 2008-02-01 Kenichi Handa <handa@m17n.org>
7615
7616 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
7617 (encode_coding_big5, encode_coding_charset): If coding requires safe
7618 encoding, produce a character specified by
7619 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
7620
7621 2008-02-01 Dave Love <fx@gnu.org>
7622
7623 * xterm.c (XSetIMValues): Declare.
7624
7625 * process.c: Conditionally include sys/wait.h, pty.h.
7626
7627 * print.c (print_object): Fix print format for 64-bit systems.
7628
7629 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
7630
7631 * buffer.c (emacs_strerror): Declare.
7632
7633 * fontset.c (Fclear_face_cache): Declare.
7634 (accumulate_font_info): Comment-out (unused).
7635 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
7636 variables.
7637
7638 * character.h (string_escape_byte8): Declare.
7639
7640 * charset.c (load_charset_map, load_charset_map_from_file): Remove
7641 unused vars.
7642 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
7643 (Fmap_charset_chars): Doc fix.
7644
7645 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
7646 (Fset_coding_system_priority, Fset_coding_system_priority)
7647 (Fdefine_coding_system_internal): Doc fix.
7648
7649 2008-02-01 Dave Love <fx@gnu.org>
7650
7651 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
7652
7653 2008-02-01 Kenichi Handa <handa@m17n.org>
7654
7655 * character.c (string_escape_byte8): Make multibyte string with
7656 correct size.
7657
7658 * charset.c (Fmake_char): Delete unnecessary code.
7659
7660 2008-02-01 Kenichi Handa <handa@m17n.org>
7661
7662 * xfns.c (x_encode_text): Allocate coding.destination here, and
7663 call encode_coding_object with dst_object Qnil.
7664
7665 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
7666 multibyte form correctly.
7667
7668 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
7669 against Vfont_encoding_alist.
7670
7671 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
7672 handling of charset list.
7673 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
7674 (decode_coding_object): Move point to coding->dst_pos before
7675 calling post-read-conversion function.
7676 (encode_coding_object): Give correct arguments to
7677 pre-write-conversion. Ignore the return value of
7678 pre-write-conversion function. Pay attention to the case that
7679 pre-write-conversion changes the current buffer. If dst_object is
7680 Qt, even if coding->src_bytes is zero, allocate at least one byte
7681 to coding->destination.
7682
7683 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
7684
7685 * charset.c (Fmake_char): Make it more backward compatible.
7686 (Fmap_charset_chars): Fix docstring.
7687
7688 2008-02-01 Dave Love <fx@gnu.org>
7689
7690 * coding.c: Doc fixes.
7691 (Fdefine_coding_system_alias): Use names, not symbols, in
7692 coding-system-alist.
7693
7694 2008-02-01 Kenichi Handa <handa@m17n.org>
7695
7696 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
7697 of calling free_realized_face.
7698
7699 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
7700
7701 * charset.c (read_hex): Don't treat SPC as a comment starter.
7702 (decode_char): If CODE_POINT_TO_INDEX retruns -1, always return -1.
7703 (Fdecode_char): Fix typo.
7704
7705 2008-02-01 Kenichi Handa <handa@m17n.org>
7706
7707 * charset.h (struct charset): New member `code_space_mask'.
7708
7709 * coding.c (coding_set_source): Delete the local variable beg_byte.
7710 (encode_coding_charset, Fdefine_coding_system_internal):
7711 Delete the local variable charset.
7712 (Fdefine_coding_system_internal): Setup
7713 attrs[coding_attr_charset_valids] correctly.
7714
7715 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
7716 member to check if CODE is valid or not.
7717 (Fdefine_charset_internal): Initialize `code_space_mask' member.
7718 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
7719 is within the range of charset->min_code and carset->max_code.
7720
7721 2008-02-01 Dave Love <fx@gnu.org>
7722
7723 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
7724
7725 * dispextern.h (generate_ascii_font): Fix return type.
7726
7727 * xfaces.c (generate_ascii_font): Fix arg declaration.
7728
7729 * coding.c (coding_inherit_eol_type)
7730 (Fset_terminal_coding_system_internal)
7731 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
7732
7733 2008-02-01 Kenichi Handa <handa@m17n.org>
7734
7735 * coding.c (decode_coding_charset, encode_coding_charset): Handle
7736 multiple charsets correctly.
7737
7738 2008-02-01 Kenichi Handa <handa@m17n.org>
7739
7740 * search.c (boyer_moore): Fix handling of mulitbyte character
7741 translation.
7742
7743 * xdisp.c (display_mode_element): When the variable `elt' is
7744 changed, update `this' and `lisp_string'.
7745
7746 2008-02-01 Kenichi Handa <handa@m17n.org>
7747
7748 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
7749
7750 * callproc.c (Fcall_process): Be sure to give the current buffer
7751 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
7752
7753 * charset.c (struct charset_map_entries): New struct.
7754 (load_charset_map): Rename from parse_charset_map. New args
7755 entries and n_entries. Change caller.
7756 (load_charset_map_from_file): Rename from load_charset_map.
7757 Change caller. New arg control_flag. Call load_charset_map at
7758 the tail.
7759 (load_charset_map_from_vector): New function.
7760 (Fdefine_charset_internal): Setup charset.compact_codes_p.
7761 (encode_char): If the charset is compact, change a character index
7762 to a code point.
7763
7764 * coding.c (coding_alloc_by_making_gap): Check the case that the
7765 source and destination are the same correctly.
7766 (decode_coding_raw_text): Set coding->consumed_char and
7767 coding->consumed to 0.
7768 (produce_chars): If coding->chars_at_source is nonzero, update
7769 coding->consumed_char and coding->consumed before calling
7770 alloc_destination.
7771 (Fdefine_coding_system_alias): Register ALIAS in
7772 Vcoding_system_alist.
7773 (syms_of_coding): Define `no-convesion' coding system at the tail.
7774
7775 * fileio.c (Finsert_file_contents): Set coding_system instead of
7776 val. If the current buffer is multibyte, always call
7777 decode_coding_gap.
7778
7779 * xfaces.c (try_font_list): Give higher priority to fontset's
7780 family than face's family.
7781
7782 2008-02-01 Kenichi Handa <handa@m17n.org>
7783
7784 * callproc.c (Fcall_process): Be sure to give the current buffer
7785 to decode_coding_c_string.
7786
7787 * xfaces.c (try_font_list): Give a family specified in a fontset
7788 higher priority than a family specified in a face.
7789
7790 2008-02-01 Kenichi Handa <handa@m17n.org>
7791
7792 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
7793 Fix arguments to insert_from_buffer.
7794
7795 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
7796
7797 2008-02-01 Kenichi Handa <handa@m17n.org>
7798
7799 * coding.c (produce_chars): Set the variable `multibytep' correctly.
7800 (decode_coding_gap): Set coding->dst_multibyte correctly.
7801
7802 2008-02-01 Kenichi Handa <handa@m17n.org>
7803
7804 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
7805 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
7806 (encode_coding_utf_16): Substitute coding->default_char for
7807 non-Unicode characters.
7808 (decode_coding): Don't call record_insert here.
7809 (setup_coding_system): Initialize `surrogate' of
7810 coding->spec.utf_16 to 0.
7811 (EMIT_ONE_BYTE): Fix for multibyte case.
7812
7813 * insdel.c (insert_from_gap): Call record_insert.
7814
7815 2008-02-01 Kenichi Handa <handa@m17n.org>
7816
7817 * casefiddle.c (casify_region): Fix multibyte case.
7818
7819 * character.c (c_string_width): Add return type `int'.
7820 (char_string_with_unification): Delete arg ADVANCED.
7821
7822 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
7823 (CHAR_STRING): Adjust for the change of char_string_with_unification.
7824 (CHAR_STRING_ADVANCE): Make it do-while statement.
7825
7826 * chartab.c (sub_char_table_set_range): Optimize for the case
7827 DEPTH == 3. Add workaround code for a GCC optimization bug.
7828
7829 * charset.c (parse_charset_map): Remove an unused variable.
7830
7831 * coding.c: Delete unused variables.
7832
7833 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
7834 earlier. If inserted is zero and the coding system doesn't
7835 require flushing, don't call decode_coding_gap.
7836
7837 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
7838
7839 2008-02-01 Kenichi Handa <handa@m17n.org>
7840
7841 The following changes are for using Unicode as an internal
7842 character model, and use UTF-8 format for buffer/string
7843 representation.
7844
7845 * .gdbinit (xchartable): Adjust for the change of char table structure.
7846 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
7847
7848 * Makefile.in (obj): Add character.o and chartab.o.
7849 (lisp, shortlisp): Remove utf-8.elc.
7850 (*.o): For many files, change dependency on charset.h to
7851 character.h, and add dependency on character.h.
7852 (character.o, chartab.o): New targets.
7853
7854 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
7855 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
7856 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
7857 of "charset.h".
7858
7859 * dired.c, filelock.c: Include "character.h".
7860
7861 * alloc.c: Include "character.h" instead of "charset.h".
7862 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
7863 (syms_of_alloc): Remove defsubr for Smake_char_table.
7864
7865 * buffer.c: Include "character.h" instead of "charset.h", don't
7866 include "coding.h".
7867 (Fset_buffer_multibyte): Adjust for UTF-8.
7868
7869 * buffer.h: EXFUN Fbuffer_live_p.
7870
7871 * callproc.c: Include "character.h" instead of "charset.h".
7872 (Fcall_process): Big change for the new code-conversion APIs.
7873
7874 * casetab.c: Include "character.h" instead of "charset.h".
7875 (set_canon, set_identity, shuffle): Adjust for the new
7876 map_char_table spec.
7877 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
7878 accessing the char table structure.
7879
7880 * chartab.c: New file that implements char table.
7881
7882 * category.c: Include "character.h".
7883 (copy_category_entry): New function.
7884 (copy_category_table): Call map_char_table and copy_category_entry.
7885 (Fmake_category_table): Initialize all top-vel slots.
7886 (char_category_set): New function.
7887 (modify_lower_category_set): Delete.
7888 (Fmodify_category_entry): Call char_table_ref_and_range.
7889
7890 * category.h (CATEGORY_SET): Just call char_category_set.
7891
7892 * ccl.c: Include "character.h".
7893 (Qccl, Qcclp): New variables.
7894 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
7895 it's less than 256.
7896 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
7897 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
7898 and DST type.
7899 (ccl_driver): Change types of argument, adjust code accordingly.
7900 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
7901 ccl_driver.
7902 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
7903
7904 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
7905 New members src_multibyte, dst_multibyte, consumed, and produced.
7906 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
7907 (CODING_SPEC_CCL_PROGRAM): New macro.
7908 (ccl_driver): Update prototype.
7909 (Qccl, Qcclp, Fccl_program_p): Extern them.
7910 (CHECK_CCL_PROGRAM): New macro.
7911
7912 * character.c, character.h, chartab.c: New files.
7913
7914 * charset.c: Mostly re-written. Move character and multibyte sequence
7915 handling codes to character.c.
7916
7917 * charset.h: Mostly re-written. Move character and multibyte sequence
7918 handling codes to character.h.
7919
7920 * coding.c, coding.h: Mostly re-written.
7921
7922 * composite.c: Include "character.h" instead of "charset.h".
7923 (CHAR_WIDTH): Move to character.h.
7924 (HASH_KEY, HASH_VALUE): Delete.
7925
7926 * composite.h (enum composition_method): Change order of enumeration
7927 symbols.
7928
7929 * data.c: Include "character.h" instead of "charset.h".
7930 (Faref): Call CHAR_TABLE_REF for a char table.
7931 (Faset): Call CHAR_TABLE_SET for a char table.
7932
7933 * dispextern.h (free_realized_face, check_face_attribytes)
7934 (generate_ascii_font): Extern them.
7935 (free_realized_multibyte_face): Delete extern.
7936
7937 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
7938 table structure.
7939
7940 * editfns.c: Include "character.h" instead of "charset.h".
7941 (Fchar_to_string): Always call CHAR_STRING.
7942
7943 * emacs.c (main): Call init_charset_once, init_charset,
7944 syms_of_chartab, and syms_of_character.
7945
7946 * fileio.c: Include "character.h" instead of "charset.h".
7947 (Finsert_file_contents): Big change for the new code-conversion API.
7948 (choose_write_coding_system, Fwrite_region): Likewise.
7949 (build_annotations_2): Delete.
7950 (e_write): Big change for the new code-conversion API.
7951
7952 * fns.c: Include "character.h" instead of "charset.h".
7953 (copy_sub_char_table): Move to chartab.c.
7954 (Fcopy_sequence): Call copy_char_table for a char table.
7955 (concat): Delete codes calling count_multibyte.
7956 (string_char_to_byte, string_byte_to_char): Adjust for the new
7957 multibyte form.
7958 (internal_equal): Adjust for the change of char table structure.
7959 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
7960 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
7961 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
7962 (char_table_translate, optimize_sub_char_table)
7963 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
7964 chartab.c.
7965 (char_table_ref_and_index): Delete.
7966 (HASH_KEY, HASH_VALUE): Move to lisp.h.
7967 (Fmd5): Call preferred_coding_system instead of accessing
7968 Vcoding_category_list. Adjust for the new code-conversion API.
7969 (syms_of_fns): Move defsubr for char table related functions to
7970 chartab.c.
7971
7972 * fontset.c: Mostly re-written.
7973
7974 * fontset.h (struct font_info): Change type of the member encoding_type.
7975 (enum FONT_SPEC_INDEX): New enum.
7976 (fontset_font_pattern, fs_load_font): Update prototype.
7977 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
7978
7979 * indent.c: Include "character.h" instead of "charset.h".
7980 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
7981
7982 * insdel.c: Include "character.h" instead of "charset.h".
7983 (copy_text): Don't refer to Vnonascii_translation_table.
7984 (insert_from_gap): New function.
7985
7986 * keyboard.c: Include "character.h" instead of "charset.h".
7987 (command_loop_1): Never call direct_output_forward_char before
7988 a non-ASCII character.
7989 (read_char): If Vkeyboard_translate_table is a char table, always
7990 translate a character.
7991
7992 * keymap.c: Include "character.h".
7993 (store_in_keymap): Handle the case that IDX is a cons.
7994 (Fdefine_key): Handle the case that KEY is a cons and the car part
7995 is also a cons (range).
7996 (push_key_description): Adjust for the new character code.
7997 (describe_vector): Call describe_char_table for a char table.
7998 (describe_char_table): New function.
7999
8000 * keymap.h (describe_char_table): Extern it.
8001
8002 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
8003 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
8004 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
8005 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
8006 Delete.
8007 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
8008 structure.
8009 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
8010 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
8011 (CHARTAB_SIZE_BITS_3): New macros.
8012 (chartab_size): Extern it.
8013 (struct Lisp_Char_Table): Re-design.
8014 (struct Lisp_Sub_Char_Table): New structure.
8015 (HASH_KEY, HASH_VALUE): Move from fns.c.
8016 (CHARACTERBITS): Define as 22.
8017 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
8018 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
8019 (GC_SUB_CHAR_TABLE_P): New macro.
8020 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
8021 (code_convert_string_norecord): Deleted extern.
8022 (init_character_once, syms_of_character, init_charset)
8023 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
8024
8025 * lread.c: Include "character.h".
8026 (read_multibyte): New arg NBYTES.
8027 (read_escape): Change the meaning of returned *BYTEREP.
8028 (to_multibyte): Delete.
8029 (read1): Adjust the handling of char table and string.
8030
8031 * print.c: Include "character.h" instead of "charset.h".
8032 (print_string): Convert 8-bit raw bytes to octal form by
8033 string_escape_byte8.
8034 (print_object): Adjust for the new multibyte form. Print 8-bit
8035 raw bytes always in octal form. Handle sub char table correctly.
8036
8037 * process.c: Include "character.h" instead of "charset.h".
8038 (read_process_output, send_process): Adjust for the new
8039 code-conversion API.
8040
8041 * puresize.h (BASE_PURESIZE): Increase.
8042
8043 * regex.c: Include "character.h" instead of "charset.h".
8044 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
8045 (regex_compile): Accept a range whose starting and ending
8046 character have different leading bytes.
8047 (analyse_first): Adjust for the above change.
8048
8049 * search.c: Include "character.h" instead of "charset.h".
8050 (search_buffer, boyer_moore): Adjust for the new multibyte form.
8051 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
8052
8053 * syntax.c: Include "character.h" instead of "charset.h".
8054 (syntax_parent_lookup): Delete.
8055 (Fmodify_syntax_entry): Accept a cons as CHAR.
8056 (skip_chars): Adjust for the new multibyte form.
8057 (init_syntax_once): Call char_table_set_range instead of directly
8058 accessing the structure of a char table.
8059
8060 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
8061 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
8062 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
8063 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
8064
8065 * term.c: Include "buffer.h" and "character.h".
8066 (encode_terminal_code, write_glyphs): Adjust for the new
8067 code-conversion API.
8068 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
8069
8070 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
8071
8072 * xdisp.c: Include "character.h".
8073 (get_next_display_element): Adjust for the new multibyte form.
8074 (disp_char_vector): Adjust for the new char table structure.
8075 (decode_mode_spec_coding): Adjust for the new structure of
8076 coding system.
8077 (decode_mode_spec): Adjust for the new code-conversion API.
8078
8079 * xfaces.c: Include "character.h" instead of "charset.h".
8080 (load_face_font): Adjust for the change of choose_face_font and
8081 FS_LOAD_FONT.
8082 (generate_ascii_font): New function.
8083 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
8084 (set_font_frame_param): Adjust for the change of choose_face_font.
8085 (free_realized_face): Make it public.
8086 (free_realized_faces_for_fontset): Rename from
8087 free_realized_multibyte_face. Free also faces realized for ASCII.
8088 (choose_face_font): Change arguments. Adjust for the change of
8089 fontset_font_pattern and FS_LOAD_FONT.
8090
8091 * xfns.c: Include "character.h".
8092 (x_encode_text): Adjust for the new code-conversion API.
8093
8094 * xselect.c: Don't include "charset.h".
8095 (selection_data_to_lisp_data): Adjust for the new code conversion API.
8096
8097 * xterm.c: Include "character.h".
8098 (x_encode_char): New argument CHARSET. Change caller.
8099 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
8100 Call ENCODE_CHAR instead of SPLIT_CHAR.
8101 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
8102 CHAR_WIDTH instead of CHARSET_WIDTH.
8103 (XTread_socket): Adjust for the new code-conversion API.
8104 (x_new_font): Adjust for the change of FS_LOAD_FONT.
8105 (x_load_font): Adjust for the change of struct font.
8106
8107 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8108
8109 * xfaces.c (face_at_buffer_position): Remove unused vars.
8110
8111 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8112
8113 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
8114 Fix overflow checking.
8115
8116 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8117
8118 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
8119 Cancel previous change.
8120
8121 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
8122
8123 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
8124 ccl->eight_bit_control. Fix check for buffer overflow.
8125 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
8126 (ccl_driver): Initialize extra_bytes to 0.
8127
8128 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
8129
8130 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
8131 return it ORed with ctrl_modifier.
8132
8133 2008-01-29 Miles Bader <miles@gnu.org>
8134
8135 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
8136
8137 2008-01-28 Jason Rumney <jasonr@gnu.org>
8138
8139 * w32.c (stat): Don't double check for networked drive.
8140
8141 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
8142
8143 * window.c (run_window_configuration_change_hook): New function.
8144 Code extracted from set_window_buffer. Set the selected frame.
8145 (set_window_buffer): Use it.
8146 * window.h (run_window_configuration_change_hook): Declare.
8147 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
8148
8149 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
8150
8151 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
8152
8153 * Makefile.in: Remove references to unused macros.
8154
8155 2008-01-26 Eli Zaretskii <eliz@gnu.org>
8156
8157 * w32.c (g_b_init_get_sid_sub_authority)
8158 (g_b_init_get_sid_sub_authority_count): New static variables.
8159 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
8160 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
8161 (init_user_info): Use them to retrieve uid and gid.
8162 Use 500/513, the Windows defaults, as Administrator's uid/gid.
8163 (fstat): Use pw_uid and pw_gid from the_passwd structure for
8164 st_uid and st_gid of the file.
8165
8166 2008-01-26 Jason Rumney <jasonr@gnu.org>
8167
8168 * w32.c (logon_network_drive): New function.
8169 (stat): Use it.
8170
8171 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
8172
8173 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
8174 invisible text covered with an ellipsis.
8175
8176 2008-01-25 Richard Stallman <rms@gnu.org>
8177
8178 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
8179 jump back to beginning. Move some other initializations after that.
8180 (Qwindow_text_change_functions, Vwindow_text_change_functions):
8181 New variables.
8182 (syms_of_xdisp): Init them.
8183
8184 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
8185
8186 * buffer.c (reset_buffer_local_variables):
8187 Implement `permanent-local-hook'.
8188 (Qpermanent_local_hook): New variable.
8189 (syms_of_buffer): Init and staticpro it.
8190
8191 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
8192
8193 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
8194
8195 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
8196
8197 * fns.c (Fclrhash): Return TABLE.
8198
8199 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8200
8201 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
8202 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
8203 is set even without positional changes.
8204 (x_scroll_bar_clear): Set bar->redraw_needed_p.
8205
8206 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
8207
8208 2008-01-23 Jason Rumney <jasonr@gnu.org>
8209
8210 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
8211
8212 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
8213 the unicode range available in MULE by locale-coding-system.
8214 Improve dbcs lead byte detection. Set event timestamp and modifiers
8215 earlier.
8216
8217 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8218
8219 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
8220 [MAC_OSX] (init_mac_osx_environment): Initialize it.
8221 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
8222 when used on child processes.
8223
8224 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
8225
8226 * dbusbind.c (Fdbus_method_return_internal): Rename from
8227 Fdbus_method_return.
8228 (Fdbus_unregister_object): Move to dbus.el.
8229 (Fdbus_call_method, Fdbus_method_return_internal)
8230 (Fdbus_send_signal): Improve debug messages.
8231
8232 2008-01-20 Martin Rudalics <rudalics@gmx.at>
8233
8234 * undo.c (undo_inhibit_record_point): New variable.
8235 (syms_of_undo): Initialize it.
8236 (record_point): Don't record point when undo_inhibit_record_point
8237 is set.
8238
8239 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
8240
8241 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
8242
8243 * xdisp.c (Qauto_hscroll_mode): New var.
8244 (syms_of_xdisp): Initialize it.
8245 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
8246 window's buffer.
8247 (hscroll_windows): Don't check automatic_hscrolling_p here.
8248
8249 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
8250 vscroll if we're setting window-buffer to the value it already has.
8251
8252 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
8253
8254 * m/intel386.h: Remove references to XENIX.
8255
8256 2008-01-17 Andreas Schwab <schwab@suse.de>
8257
8258 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
8259 instead of HAVE_X86_64_LIB64_DIR.
8260 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
8261
8262 2008-01-17 Glenn Morris <rgm@gnu.org>
8263
8264 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
8265 to HAVE_X86_64_LIB64_DIR.
8266
8267 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
8268
8269 * s/irix3-3.h:
8270 * s/irix4-0.h:
8271 * s/386-ix.h:
8272 * s/domain.h:
8273 * s/hpux9-x11r4.h:
8274 * s/hpux9shxr4.h: Remove files for systems no longer supported.
8275
8276 * sysdep.c: Remove code containing references to symbols defined
8277 by unsupported systems.
8278
8279 2008-01-16 Glenn Morris <rgm@gnu.org>
8280
8281 * coding.c (select-safe-coding-system-function): Doc fix.
8282
8283 2008-01-15 Glenn Morris <rgm@gnu.org>
8284
8285 * config.in: Revert 2008-01-13 change: this is a generated file.
8286
8287 2008-01-13 Tom Tromey <tromey@redhat.com>
8288
8289 * lisp.h: Fix typo.
8290
8291 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
8292
8293 * m/sequent-ptx.h:
8294 * m/sequent.h:
8295 * s/ptx.h:
8296 * s/ptx4-2.h:
8297 * s/ptx4.h: Remove files for systems no longer supported.
8298
8299 * callproc.c (Fcall_process): Fix previous change.
8300
8301 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
8302
8303 * unexsunos4.c: Remove file, system not supported anymore.
8304
8305 * m/mips.h:
8306 * m/intel386.h:
8307 * callproc.c:
8308 * config.in:
8309 * ecrt0.c:
8310 * emacs.c:
8311 * fileio.c:
8312 * frame.c:
8313 * getpagesize.h:
8314 * keyboard.c:
8315 * lread.c:
8316 * process.c:
8317 * puresize.h:
8318 * sysdep.c:
8319 * systty.h:
8320 * syswait.h:
8321 * unexec.c:
8322 * xdisp.c:
8323 * alloc.c: Remove code containing references to symbols defined by
8324 unsupported systems.
8325
8326 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
8327
8328 * coding.c (detect_coding_mask): Fix previous change.
8329
8330 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
8331
8332 * coding.c (detect_coding_iso2022): New arg
8333 latin_extra_code_state. Allow Latin extra codes only
8334 when *latin_extra_code_state is nonzero.
8335 (detect_coding_mask): If there is a NULL byte, detect the encoding
8336 as UTF-16 or binary. If Latin extra codes exist, detect the
8337 encoding as ISO-2022 only when there's no other proper encoding is
8338 found.
8339
8340 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8341
8342 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
8343 #ifdef MAC_OS.
8344
8345 2008-01-08 Richard Stallman <rms@gnu.org>
8346
8347 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
8348
8349 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
8350
8351 * keyboard.c (parse_menu_item): Don't enclose key bindings on
8352 menu bar in parentheses.
8353
8354 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
8355
8356 * m/7300.h:
8357 * m/acorn.h:
8358 * m/alliant-2800.h:
8359 * m/alliant.h:
8360 * m/alliant1.h:
8361 * m/alliant4.h:
8362 * m/altos.h:
8363 * m/amdahl.h:
8364 * m/apollo.h:
8365 * m/att3b.h:
8366 * m/aviion-intel.h:
8367 * m/aviion.h:
8368 * m/celerity.h:
8369 * m/clipper.h:
8370 * m/cnvrgnt.h:
8371 * m/convex.h:
8372 * m/cydra5.h:
8373 * m/delta88k.h:
8374 * m/dpx2.h:
8375 * m/dual.h:
8376 * m/elxsi.h:
8377 * m/f301.h:
8378 * m/gould-np1.h:
8379 * m/gould.h:
8380 * m/i860.h:
8381 * m/ibmps2-aix.h:
8382 * m/ibmrt-aix.h:
8383 * m/ibmrt.h:
8384 * m/irist.h:
8385 * m/is386.h:
8386 * m/isi-ov.h:
8387 * m/mega68.h:
8388 * m/mg1.h:
8389 * m/news-r6.h:
8390 * m/news-risc.h:
8391 * m/news.h:
8392 * m/nh3000.h:
8393 * m/nh4000.h:
8394 * m/ns16000.h:
8395 * m/ns32000.h:
8396 * m/nu.h:
8397 * m/orion.h:
8398 * m/orion105.h:
8399 * m/paragon.h:
8400 * m/pfa50.h:
8401 * m/plexus.h:
8402 * m/pyramid.h:
8403 * m/pyrmips.h:
8404 * m/sh3el.h:
8405 * m/sps7.h:
8406 * m/sr2k.h:
8407 * m/stride.h:
8408 * m/sun1.h:
8409 * m/sun2.h:
8410 * m/sun3-68881.h:
8411 * m/sun3-fpa.h:
8412 * m/sun3-soft.h:
8413 * m/sun3.h:
8414 * m/sun386.h:
8415 * m/symmetry.h:
8416 * m/tad68k.h:
8417 * m/tahoe.h:
8418 * m/targon31.h:
8419 * m/tek4300.h:
8420 * m/tekxd88.h:
8421 * m/tower32.h:
8422 * m/tower32v3.h:
8423 * m/ustation.h:
8424 * m/wicat.h:
8425 * m/xps100.h:
8426 * s/cxux.h:
8427 * s/cxux7.h:
8428 * s/dgux.h:
8429 * s/dgux4.h:
8430 * s/dgux5-4-3.h:
8431 * s/dgux5-4r2.h:
8432 * s/esix.h:
8433 * s/esix5r4.h:
8434 * s/hiuxmpp.h:
8435 * s/hiuxwe2.h:
8436 * s/iris3-5.h:
8437 * s/iris3-6.h:
8438 * s/isc2-2.h:
8439 * s/isc3-0.h:
8440 * s/isc4-0.h:
8441 * s/isc4-1.h:
8442 * s/newsos5.h:
8443 * s/newsos6.h:
8444 * s/osf1.h:
8445 * s/osf5-0.h:
8446 * s/riscix1-1.h:
8447 * s/riscix12.h:
8448 * s/sco4.h:
8449 * s/sco5.h:
8450 * s/sunos4-0.h:
8451 * s/sunos4-1.h:
8452 * s/sunos413.h:
8453 * s/sunos4shr.h:
8454 * s/umax.h:
8455 * s/unipl5-2.h:
8456 * s/xenix.h:
8457 * cxux-crt0.s:
8458 * unexapollo.c:
8459 * unexconvex.c:
8460 * unexenix.c:
8461 * unexsni.c: Remove files for systems no longer supported.
8462
8463 * m/intel386.h: Remove references to unsupported systems.
8464
8465 * w32.c (get_emacs_configuration): Remove reference to i860.
8466
8467 * sysdep.c: Remove dead code.
8468
8469 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
8470
8471 * s/rtu.h:
8472 * m/masscomp.h: Remove files. Platform is obsolete.
8473
8474 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
8475
8476 * dbusbind.c (Fdbus_method_return): New function.
8477 (xd_read_message): Add the serial number to the event.
8478 (Fdbus_register_method): Activate the function.
8479
8480 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
8481
8482 * keyboard.c (read_key_sequence): Fix typo.
8483
8484 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
8485
8486 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
8487 (xd_signature, xd_append_arg): Handle element type detection for
8488 empty arrays.
8489 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
8490 SDATA () calls; this must be solved more general.
8491 (Fdbus_register_signal): Use SBYTES instead of strlen.
8492
8493 2008-01-03 Magnus Henoch <magnus@zemdatav>
8494
8495 * dbusbind.c (xd_append_arg): Use unsigned char instead of
8496 unsigned int for byte values (necessary for big-endian platform).
8497 (Fdbus_call_method): Handle the case of no returned arguments.
8498
8499 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
8500
8501 * dbusbind.c (xd_read_message): Use non-static input_event struct.
8502
8503 2007-12-31 Magnus Henoch <mange@freemail.hu>
8504
8505 * dbusbind.c (xd_signature): Signature of variant is just "v".
8506
8507 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
8508
8509 * dbusbind.c: Fix several errors and compiler warnings.
8510 Reported by Tom Tromey <tromey@redhat.com>
8511 (XD_ERROR, XD_DEBUG_MESSAGE)
8512 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
8513 (xd_append_arg): Part for basic D-Bus types rewitten.
8514 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
8515 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
8516 appropriate.
8517 (xd_read_message): Return Qnil. Don't signal an error; it is not
8518 useful during event reading.
8519 (Fdbus_register_signal): Signal an error if the check for
8520 FUNCTIONP fails.
8521 (Fdbus_register_method): New function. The implementation is not
8522 complete, the call of the function signals an error therefore.
8523 (Fdbus_unregister_object): New function, renamed from
8524 Fdbus_unregister_signal. The initial check signals an error, if
8525 the object is not well formed.
8526
8527 2007-12-30 Richard Stallman <rms@gnu.org>
8528
8529 * textprop.c (get_char_property_and_overlay):
8530 Signal error if POSITION is out of range in a buffer.
8531
8532 2007-12-29 Martin Rudalics <rudalics@gmx.at>
8533
8534 * w32fns.c (Fx_create_frame): Make copy of frame parameters
8535 because the original parameters are in pure storage now.
8536
8537 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8538
8539 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
8540
8541 2007-12-22 Eli Zaretskii <eliz@gnu.org>
8542
8543 * callint.c (syms_of_callint) <command-history>: Add reference to
8544 history-length in the doc string.
8545
8546 2007-12-17 Jason Rumney <jasonr@gnu.org>
8547
8548 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
8549 before passing as wParam.
8550
8551 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
8552
8553 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
8554 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
8555 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
8556 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
8557 as number.
8558 (Fdbus_call_method): Fix docstring.
8559
8560 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
8561
8562 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
8563 New macros.
8564 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
8565 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
8566 Simplify.
8567 (xd_signature): New function.
8568 (xd_append_arg): Compute also signatures. Major rewrite.
8569 (xd_retrieve_arg): Make debug messages friendly.
8570 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
8571 Check for signatures of arguments.
8572
8573 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
8574
8575 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
8576 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
8577 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
8578 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
8579 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
8580 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
8581 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
8582 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
8583 (xd_retrieve_value): Remove. Functionality included in ...
8584 (xd_append_arg): New function.
8585 (Fdbus_call_method, Fdbus_send_signal): Apply it.
8586
8587 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
8588
8589 * dbusbind.c (top): Include <stdio.h>.
8590 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
8591 dbus_message_new_method_call and dbus_message_new_signal.
8592 (Fdbus_register_signal): Rename unique_name to uname.
8593 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
8594 non-existing unique name. Fix typos in matching rule. Return an
8595 object which is useful in Fdbus_unregister_signal.
8596 (Fdbus_unregister_signal): Reimplementation, in order to remove
8597 only the corresponding entry.
8598 (Vdbus_registered_functions_table): Change the order of entries.
8599 Apply these changes in xd_read_message and Fdbus_register_signal.
8600
8601 2007-12-16 Andreas Schwab <schwab@suse.de>
8602
8603 * fileio.c (Finsert_file_contents): Fix overflow check to not
8604 depend on undefined integer overflow.
8605
8606 2007-12-14 Jason Rumney <jasonr@gnu.org>
8607
8608 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
8609 for characters above 127.
8610
8611 2007-12-13 Jason Rumney <jasonr@gnu.org>
8612
8613 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
8614 before dereferencing array.
8615 (lookup_vk_code): Remove zero comparison.
8616
8617 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
8618
8619 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
8620 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
8621 Use `unsigned int' instead of `uint'.
8622 (xd_read_message, Fdbus_register_signal): Split expressions into
8623 multiple lines before operators "&&" and "||", according to the
8624 GNU Coding Standards.
8625
8626 2007-12-14 Eli Zaretskii <eliz@gnu.org>
8627
8628 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
8629
8630 2007-12-12 Juri Linkov <juri@jurta.org>
8631
8632 * buffer.c (Frename_buffer): In interactive spec replace
8633 `read-buffer' with `read-string' that uses `buffer-name-history'
8634 as history, and the current buffer's name as default.
8635
8636 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
8637
8638 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
8639 manipulating the backtrace manually.
8640 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
8641 (struct backtrace, backtrace_list): Remove.
8642 (command_loop_1): Remove dead var `no_direct'.
8643
8644 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
8645 preserve non-built-in buffer-local variables.
8646 (Fkill_all_local_variables): Don't re-create&re-set permanent
8647 buffer-local variables.
8648
8649 2007-12-09 Juri Linkov <juri@jurta.org>
8650
8651 * buffer.c (Frename_buffer): Change interactive spec from "s" to
8652 Lisp code that uses `read-buffer' with current buffer as default.
8653
8654 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
8655
8656 * dbusbind.c (xd_read_message): Generate an event for every
8657 registered handler. There might be several handlers registered
8658 for the same signal.
8659 (Fdbus_register_signal): Don't overwrite a registration for the
8660 same signal. Add a new registration if handlers are different.
8661 (Vdbus_registered_functions_table): Rework doc string.
8662
8663 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
8664
8665 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
8666 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
8667 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
8668 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
8669 Unify argument lists.
8670 (xd_read_message, Fdbus_register_signal): Reorder and extend event
8671 arguments and hash table keys. Use unique name for service.
8672 (Fdbus_unregister_signal): Remove checks.
8673 (Vdbus_registered_functions_table): Fix doc string.
8674
8675 2007-12-05 Magnus Henoch <mange@freemail.hu>
8676
8677 * process.c (make_process): Initialize pty_flag to 0.
8678
8679 2007-12-05 Jason Rumney <jasonr@gnu.org>
8680
8681 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
8682 specified XBMs.
8683
8684 2007-12-05 Richard Stallman <rms@gnu.org>
8685
8686 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
8687
8688 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8689
8690 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
8691 New variable.
8692 (mac_try_close_socket) [MAC_OSX]: New function.
8693 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
8694 Update cfsockets_for_select. Replace invalid CFRunLoop source.
8695
8696 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
8697 Use mac_try_close_socket.
8698
8699 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8700
8701 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
8702 reloc_base.
8703 (copy_dysymtab): Compute relocation base here.
8704 (rebase_reloc_address) [__ppc64__]: New function.
8705 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
8706 changed.
8707
8708 2007-12-05 Jason Rumney <jasonr@gnu.org>
8709
8710 * w32proc.c (sys_spawnve): Quote args with wildcards.
8711
8712 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8713
8714 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
8715 __objc_* sections.
8716 (unrelocate) [_LP64]: Set relocation base to address of data segment.
8717
8718 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
8719
8720 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
8721 Move check for Vdbus_registered_functions_table to
8722 xd_read_queued_messages.
8723 (xd_read_queued_messages): Protect xd_read_message calls by
8724 internal_condition_case_1.
8725
8726 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
8727
8728 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
8729 Qdbus_system_bus and Qdbus_session_bus, respectively.
8730 (Vdbus_intern_symbols): Remove.
8731 (Vdbus_registered_functions_table): New hash table.
8732 (XD_SYMBOL_INTERN_SYMBOL): Remove.
8733 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
8734 Rewrite in order to manage registered functions by hash table
8735 Vdbus_registered_functions_table.
8736
8737 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
8738
8739 * xterm.c: Update URL to Window Manager Specification in comment.
8740
8741 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
8742
8743 * config.in (HAVE_DBUS): Add.
8744
8745 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
8746 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
8747 (obj): Add $(DBUS_OBJ).
8748 (LIBES): Add $(DBUS_LIBS).
8749 (dbusbind.o): New target.
8750
8751 * dbusbind.c: New file.
8752
8753 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
8754
8755 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
8756 (Qdbus_event): New Lisp symbol.
8757 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
8758 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
8759 (keys_of_keyboard ): Define dbus-event.
8760
8761 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
8762
8763 2007-12-01 Richard Stallman <rms@gnu.org>
8764
8765 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
8766
8767 2007-11-30 Jason Rumney <jasonr@gnu.org>
8768
8769 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
8770 (w32con_reset_terminal_modes): Clear screen buffer.
8771 (w32_face_attributes): Don't use color indexes that are out of range.
8772 Only reverse the default colors.
8773
8774 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
8775 WINDOWSNT.
8776
8777 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
8778
8779 2007-11-29 Jason Rumney <jasonr@gnu.org>
8780
8781 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
8782 (w32_face_attributes): Use Vtty_defined_color_alist to determine
8783 if the terminal colors are initialized.
8784 (unspecified_fg, unspecified_bg): Remove unused declarations.
8785
8786 2007-11-29 Andreas Schwab <schwab@suse.de>
8787
8788 * keyboard.c (apply_modifiers): Fix typo.
8789
8790 2007-11-29 Richard Stallman <rms@gnu.org>
8791
8792 * keymap.c (Fcurrent_local_map): Doc fix.
8793
8794 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
8795
8796 * s/gnu-kfreebsd.h: New file.
8797
8798 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
8799
8800 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
8801 Don't cast redundantly.
8802
8803 * keyboard.c (KEY_TO_CHAR): New macro.
8804 (parse_modifiers, apply_modifiers): Accept integer arguments.
8805 (read_key_sequence): Use them to unify the "shift->unshift" mapping
8806 for chars and symbol keys.
8807 After doing such remapping, apply function-key-map again.
8808
8809 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
8810
8811 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
8812 compiled anymore.
8813
8814 2007-11-26 Andreas Schwab <schwab@suse.de>
8815
8816 * process.c (list_processes_1): Fix indentation level of the
8817 command column.
8818
8819 2007-11-23 Andreas Schwab <schwab@suse.de>
8820
8821 * editfns.c (Fformat): Handle %c specially since it requires the
8822 argument to be of type int.
8823
8824 2007-11-23 Markus Triska <markus.triska@gmx.at>
8825
8826 * emacs.c (main): Call init_editfns before init_process, since
8827 init_process sets Vprocess_connection_type depending on OS release.
8828
8829 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
8830
8831 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
8832 (find_symbol_value): Use do_symval_forwarding.
8833
8834 * data.c (set_internal): Set the value in the `cons-cell' (for
8835 Buffer_Local_values) not only for frame-local variables.
8836
8837 2007-11-22 Andreas Schwab <schwab@suse.de>
8838
8839 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
8840 values to sprintf.
8841 * keymap.c (Fsingle_key_description): Likewise.
8842 * print.c (print_object): Likewise.
8843
8844 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
8845
8846 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
8847 file for image is nil.
8848
8849 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
8850
8851 * term.c: Include stdarg.h.
8852 (fatal): Implement using varargs.
8853 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
8854
8855 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8856
8857 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
8858 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
8859 Update call to buffer_slot_type_mismatch.
8860 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
8861 (buffer_slot_type_mismatch): Update.
8862 * buffer.c (buffer_local_types): Remove.
8863 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
8864 (defvar_per_buffer): Set the type in the buffer_objfwd.
8865
8866 2007-11-21 Jason Rumney <jasonr@gnu.org>
8867
8868 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
8869 CreateFileMapping returns NULL on failure.
8870
8871 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8872
8873 * search.c (Fset_match_data): Remove the `evaporate' feature.
8874 (unwind_set_match_data): Don't use the `evaporate' feature.
8875
8876 2007-11-21 Jason Rumney <jasonr@gnu.org>
8877
8878 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
8879
8880 * w32console.c (w32con_write_glyphs): Remove unused variables.
8881
8882 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
8883
8884 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
8885
8886 * s/darwin.h (MULTI_KBOARD): Remove.
8887
8888 * macfns.c (x_create_tip_frame, Fx_create_frame)
8889 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
8890
8891 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
8892
8893 * buffer.c (Fbuffer_local_value): Remove redundant test.
8894 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
8895 than in `current-buffer' to match the comment.
8896 Do the swap using swap_in_global_binding.
8897
8898 * data.c (store_symval_forwarding, set_internal):
8899 * eval.c (specbind): Remove dead code.
8900
8901 * coding.c (detect_coding, Fupdate_coding_systems_internal):
8902 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
8903 Since we do not want to see internal Lisp_*fwd objects here.
8904
8905 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
8906
8907 * sysdep.c (init_system_name): Use getaddrinfo if available.
8908
8909 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
8910 (x_scroll_bar_note_movement): start, end, with, height in struct
8911 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
8912
8913 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
8914
8915 * puresize.h (BASE_PURESIZE): Increase to 1190000.
8916
8917 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8918
8919 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
8920 This undoes Richard's change of 14-Oct-2002.
8921
8922 * alloc.c (allocate_other_vector):
8923 * lisp.h (allocate_other_vector): Remove.
8924
8925 * window.c (struct save_window_data): Move non-lisp data to the end
8926 and make it `int' rather than Lisp_Object.
8927 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
8928 Done wrap/unwrap integer values.
8929 (Fset_window_configuration, compare_window_configurations):
8930 Update use of fields to their new types.
8931
8932 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
8933 Turn integer fields into `int'. Merge x_window_low and x_window_high.
8934 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
8935 (SET_SCROLL_BAR_X_WINDOW): Remove.
8936 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
8937 Access the new x_window field directly.
8938 * xterm.c (x_scroll_bar_create): Use a pseudovector.
8939 Don't wrap/unwrap integers into Lisp_Objects.
8940 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
8941 (x_scroll_bar_report_motion):
8942 Don't wrap/unwrap integers into Lisp_Objects.
8943 (x_term_init): Use SDATA.
8944 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
8945 (x_scroll_bar_set_handle, x_scroll_bar_remove)
8946 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
8947 (x_scroll_bar_report_motion, x_scroll_bar_clear):
8948 * xfns.c (x_set_background_color):
8949 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
8950 Access the new x_window field directly.
8951
8952 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
8953 (allocate_pseudovector): Make non-static.
8954
8955 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
8956 (allocate_pseudovector): Declare.
8957 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
8958
8959 2007-11-15 Andreas Schwab <schwab@suse.de>
8960
8961 * editfns.c (Fformat): Correctly format EMACS_INT values.
8962 Also take precision into account when formatting an integer.
8963
8964 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
8965
8966 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
8967
8968 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
8969 (syms_of_keyboard): Defsubr it.
8970
8971 * data.c (swap_in_global_binding): Fix longstanding bug where
8972 store_symval_forwarding was not called with the right second argument,
8973 thus causing objfwd-ing from being dropped.
8974
8975 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
8976
8977 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
8978 (Fx_display_pixel_height, Fx_display_planes)
8979 (Fx_display_color_cells, Fx_server_max_request_size)
8980 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
8981 (Fx_display_visual_class, Fx_display_save_under):
8982 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
8983 (Fx_display_pixel_height, Fx_display_planes)
8984 (Fx_display_color_cells, Fx_server_max_request_size)
8985 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
8986 (Fx_display_mm_height, Fx_display_mm_width)
8987 (Fx_display_backing_store, Fx_display_visual_class)
8988 (Fw32_select_font, Fx_display_save_under):
8989 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
8990 (Fx_display_pixel_height, Fx_display_planes)
8991 (Fx_display_color_cells, Fx_server_max_request_size)
8992 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
8993 (Fx_display_save_under): Fix typos in docstrings.
8994
8995 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
8996
8997 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
8998 corresponding to deleted entries; they are an implementation detail.
8999 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
9000 Remove variables.
9001 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
9002 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
9003 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
9004 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
9005 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
9006 (Fw32_define_rgb_color, Fw32_load_color_file)
9007 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
9008 Fix typos in docstrings.
9009 (Fx_server_version): Reflow docstring.
9010 (Fw32_shell_execute): Doc fixes.
9011
9012 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
9013
9014 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
9015 if w32_parse_hot_key returned nil.
9016
9017 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
9018
9019 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
9020
9021 2007-11-09 Jason Rumney <jasonr@gnu.org>
9022
9023 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
9024
9025 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
9026
9027 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
9028 Remove W32_SCROLL_BAR_CLICK_EVENT.
9029
9030 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
9031 Add MULTIMEDIA_KEY_EVENT.
9032
9033 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
9034 (lispy_multimedia_keys) [WINDOWSNT]: New array.
9035 (make_lispy_event) [WINDOWSNT]: Use it to translate
9036 MULTIMEDIA_KEY_EVENT.
9037
9038 * w32term.h (WM_APPCOMMAND): Define if not already.
9039 (GET_APPCOMMAND_LPARAM): Likewise.
9040
9041 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
9042 WM_APPCOMMAND.
9043
9044 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
9045 (syms_of_w32fns): Export and initialize it.
9046 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
9047
9048 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
9049
9050 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
9051 twice.
9052
9053 * xdisp.c (handle_face_prop): Fix last change.
9054
9055 2007-11-09 Richard Stallman <rms@gnu.org>
9056
9057 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
9058 not just for after-strings and before-strings.
9059 Call face_for_overlay_string and pass the overlay to it.
9060 (handle_display_prop): Determine whether property came from an overlay.
9061 Pass OVERLAY arg to handle_single_display_spec.
9062 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
9063 (load_overlay_strings): Fill in it->string_overlays.
9064 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
9065
9066 * xfaces.c (face_for_overlay_string): Function renamed from
9067 face_at_buffer_position_no_overlays, and add arg OVERLAY.
9068
9069 * dispextern.h (struct it): New elt string_overlays.
9070 New elt from_overlay, also in stack.
9071 Rearrange a few elements.
9072 (face_for_overlay_string): Decl renamed from
9073 face_at_buffer_position_no_overlays, and add argument.
9074
9075 2007-11-09 Richard Stallman <rms@gnu.org>
9076
9077 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
9078 to get the base face for an overlay string.
9079
9080 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
9081
9082 * xfaces.c (face_at_buffer_position_no_overlays): New function.
9083
9084 * xdisp.c (handle_stop): Move some code out of loop.
9085
9086 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9087
9088 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
9089 Fix conversion from Lisp object to ATSUFontID.
9090
9091 2007-11-09 Jason Rumney <jasonr@gnu.org>
9092
9093 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
9094
9095 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9096
9097 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
9098 Don't assume regions are aligned to page boundary.
9099 (print_load_command_name): Add LC_UUID if defined.
9100
9101 2007-11-09 Richard Stallman <rms@gnu.org>
9102
9103 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
9104
9105 2007-11-07 Jason Rumney <jasonr@gnu.org>
9106
9107 * s/windows95.h: Remove.
9108
9109 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
9110
9111 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
9112 abort with a message on unhandled store_type values.
9113
9114 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
9115
9116 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
9117 Remove HAVE_X11R5 and HAVE_X11R4.
9118
9119 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
9120
9121 * Makefile.in: Remove references to sunfns.c and sunfns.o.
9122
9123 2007-11-01 Johan Bockgård <bojohan@gnu.org>
9124
9125 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
9126 Don't set s->stippled_p here, since it has already been set by
9127 x_set_glyph_string_gc from x_draw_glyph_string.
9128
9129 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
9130
9131 * sunfns.c: Remove file.
9132
9133 * m/sun386.h:
9134 * m/sun2.h:
9135 * m/sparc.h: Remove Sun windows code.
9136
9137 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
9138
9139 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
9140 (init_keyboard): Set current_kboard's window-system to nil.
9141 (tty_read_avail_input): Typo.
9142 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
9143
9144 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
9145
9146 * s/usg5-4.h:
9147 * s/usg5-3.h:
9148 * s/ptx.h:
9149 * m/is386.h:
9150 * m/ibmps2-aix.h:
9151 * Makefile.in: Remove all mentions of X10.
9152
9153 * dispnew.c (syms_of_display): Don't mention version 10.
9154
9155 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
9156
9157 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
9158 ($(BLD)/abbrev.$(O)): Remove.
9159
9160 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9161
9162 Rewrite abbrev.c in Elisp.
9163 * image.c (Qcount): Don't declare as extern.
9164 (syms_of_image): Initialize and staticpro `Qcount'.
9165 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
9166 * emacs.c (main): Don't call syms_of_abbrev.
9167 * Makefile.in (obj): Remove abbrev.o.
9168 (abbrev.o): Remove.
9169 * abbrev.c: Remove.
9170
9171 2007-10-26 Martin Rudalics <rudalics@gmx.at>
9172
9173 * window.c (window_min_size_2): Don't count header-line.
9174
9175 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
9176
9177 * frame.h (struct frame): Move all bit fields after the first bit
9178 field to take advantage of the available space. Group all the
9179 chars together to reduce wasted space due to padding.
9180
9181 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
9182
9183 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
9184
9185 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
9186 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
9187 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
9188 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
9189 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
9190 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
9191 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
9192 (last_marked, mark_object_loop_halt): Make static.
9193
9194 * frame.c (syms_of_frame) <delete-frame-functions>:
9195 Fix typo in docstring.
9196
9197 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
9198
9199 * w32.c (init_environment): Fix tiny memory leak.
9200 (w32_get_resource): Remove unused variable `ok'.
9201
9202 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9203
9204 Make `window-system' into a keyboard-local variable (rather than
9205 frame-local as done originally by multi-tty).
9206
9207 * keyboard.h (struct kboard): Add Vwindow_system.
9208 * keyboard.c (init_kboard): Set a default for Vwindow_system.
9209 (mark_kboards): Mark Vwindow_system.
9210
9211 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
9212 (init_display): Don't set the obsolete `window-system' frame-param.
9213
9214 * xterm.c (x_term_init):
9215 * w32term.c (w32_create_terminal):
9216 * term.c (init_tty): Set Vwindow_system.
9217 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
9218 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
9219
9220 * xfns.c (Fx_create_frame, x_create_tip_frame):
9221 * w32fns.c (Fx_create_frame, x_create_tip_frame):
9222 * macfns.c (Fx_create_frame):
9223 Don't set the obsolete `window-system' frame-param.
9224
9225 * frame.h (Qwindow_system): Remove.
9226 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
9227 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
9228
9229 2007-10-24 Richard Stallman <rms@gnu.org>
9230
9231 * frame.c (x_figure_window_size): For fullscreen case,
9232 set USPosition | PPosition without clobbering rest of window_prompting.
9233
9234 * keyboard.c (Fcurrent_idle_time): Doc fix.
9235
9236 * print.c (Fwith_output_to_temp_buffer): Doc fix.
9237
9238 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
9239
9240 * process.c (unwind_request_sigio): Only define if __ultrix__.
9241
9242 * callproc.c (child_setup): Remove spurious *.
9243
9244 * lisp.h (Fget_text_property): Declare.
9245 (have_menus_p): Declare it here rather than in sys-dep header files.
9246 * macterm.h (have_menus_p):
9247 * msdos.h (have_menus_p):
9248 * xterm.h (have_menus_p): Remove.
9249
9250 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
9251 (Fmake_variable_frame_local): Just check the variable's const-ness
9252 rather than checking nil or t.
9253
9254 2007-10-22 Jason Rumney <jasonr@gnu.org>
9255
9256 * w32fns.c: Include math.h.
9257 (w32_abort): Declaration moved to nt/config.nt.
9258
9259 * s/ms-w32.h (HAVE_STDLIB_H): Define.
9260 (abort): Redefinition moved to nt/config.nt.
9261
9262 * m/windowsnt.h: Remove.
9263
9264 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
9265
9266 * emacs.c (Fdump_emacs): Fix typo in message.
9267 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
9268 <installation-directory>: Reflow docstring.
9269
9270 2007-10-22 Juri Linkov <juri@jurta.org>
9271
9272 * minibuf.c: Allow minibuffer default to be a list of default values.
9273 With empty input use the first element of this list as returned default.
9274 (string_to_object)
9275 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
9276 (read_minibuf): If defalt is cons, set histstring to its car.
9277 (Fread_string): If default_value is cons, set val to its car.
9278 (Fread_buffer): If def is cons, use its car.
9279 (Fcompleting_read): If defalt is cons, set val to its car.
9280
9281 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
9282
9283 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
9284
9285 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
9286
9287 * doc.c (Fdocumentation): Check for advice in all cases.
9288
9289 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
9290
9291 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
9292
9293 2007-10-19 Richard Stallman <rms@gnu.org>
9294
9295 * doc.c (Fdocumentation): Check for and handle an advised function.
9296
9297 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
9298
9299 * process.c (Fset_process_filter): Doc fix.
9300
9301 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
9302
9303 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
9304 which caused key-translation-map to applied repeatedly (thus breaking
9305 double-mode).
9306
9307 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
9308
9309 * xselect.c (x_own_selection, x_handle_selection_clear)
9310 (x_clear_frame_selections):
9311 * w32menu.c (list_of_panes, list_of_items):
9312 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
9313 * textprop.c (validate_plist, interval_has_all_properties)
9314 (interval_has_some_properties, interval_has_some_properties_list)
9315 (add_properties, text_property_list):
9316 * process.c (Fget_buffer_process, list_processes_1, status_notify):
9317 * minibuf.c (Fassoc_string):
9318 * macselect.c (x_own_selection, x_clear_frame_selections)
9319 (Fx_disown_selection_internal):
9320 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
9321 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
9322
9323 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
9324
9325 * process.c: Link to libs for calling res_init() if available.
9326 (Fmake_network_process): Call res_init() before getaddrinfo or
9327 gethostbyname, if possible.
9328
9329 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
9330
9331 * lread.c (read1): Set pvectype for char_tables.
9332
9333 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
9334 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
9335 Add type checks.
9336 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
9337
9338 * alloc.c (free_misc): Use XMISCTYPE.
9339 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
9340
9341 2007-10-17 Glenn Morris <rgm@gnu.org>
9342
9343 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
9344 (syms_of_minibuf): Add Qcompletion_ignore_case.
9345 * dired.c (Qcompletion_ignore_case): Change to external.
9346 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
9347 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
9348 (Fread_file_name): Use it rather than intern'ing.
9349
9350 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
9351 (Fread_coding_system): Ignore case of user input.
9352
9353 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9354
9355 * xdisp.c (handle_display_prop): Ignore display specs after
9356 replacing one when string text is being replaced.
9357 (handle_single_display_spec): Pretend as if characters with display
9358 property haven't been consumed only when buffer text is being replaced.
9359
9360 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
9361
9362 * xfns.c (Fx_create_frame, Fx_display_list):
9363 * window.c (window_fixed_size_p, enlarge_window)
9364 (shrink_window_lowest_first):
9365 * macterm.c (init_font_name_table):
9366 * macfns.c (Fx_create_frame, Fx_display_list):
9367 * lread.c (close_load_descs):
9368 * keyboard.c (read_char_x_menu_prompt):
9369 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
9370 * coding.c (code_convert_region_unwind): Test the type of an object
9371 rather than just !NILP before extracting data from it.
9372
9373 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
9374
9375 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
9376 (XMISCANY): New macro.
9377 (XMISCTYPE): Use it.
9378 (struct Lisp_Misc_Any): New type.
9379 (union Lisp_Misc): Use it.
9380 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
9381 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
9382 (find_symbol_value, set_internal, default_value, Fset_default)
9383 (Fmake_variable_buffer_local, Fmake_local_variable)
9384 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
9385 (Flocal_variable_if_set_p, Fvariable_binding_locus):
9386 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
9387 * alloc.c (allocate_buffer): Set the size and tag.
9388 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
9389 Use XMISCANY.
9390 (die): Follow the GNU convention for error messages.
9391 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
9392 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
9393 tag any more.
9394 (set_buffer_internal_1):
9395 * frame.c (store_frame_param):
9396 * eval.c (specbind):
9397 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
9398
9399 * doc.c (Fsnarf_documentation): Simplify.
9400
9401 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
9402
9403 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
9404 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
9405
9406 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
9407
9408 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
9409
9410 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
9411
9412 * eval.c (do_autoload): Don't save autoloads.
9413
9414 * data.c (Ffset): Save autoload of the function being set.
9415
9416 2007-10-07 John Paul Wallington <jpw@pobox.com>
9417
9418 * xfns.c (x_create_tip_frame): Set the `display-type' frame
9419 parameter before setting up faces.
9420
9421 2007-10-13 Eli Zaretskii <eliz@gnu.org>
9422
9423 * ccl.c (Fregister_code_conversion_map):
9424 * keyboard.c (append_tool_bar_item): Reformat last change.
9425
9426 * lisp.h (eabs): Rename from `abs'. All callers changed.
9427
9428 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
9429
9430 * buffer.c (add_overlay_mod_hooklist):
9431 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
9432 * fontset.c (make_fontset):
9433 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
9434 (append_tool_bar_item):
9435 * macmenu.c (grow_menu_items):
9436 * w32menu.c (grow_menu_items):
9437 * xmenu.c (grow_menu_items): Use larger_vector.
9438
9439 2007-10-13 Eli Zaretskii <eliz@gnu.org>
9440
9441 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
9442 selected frame'' on MSDOS).
9443
9444 2007-10-12 Martin Rudalics <rudalics@gmx.at>
9445
9446 * frame.c (Qexplicit_name): New variable.
9447 (x_report_frame_params): Report it in parameter alist.
9448 (syms_of_frame): Intern and staticpro it.
9449
9450 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
9451
9452 * macfns.c (x_create_tip_frame): Set terminal for frame.
9453
9454 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
9455
9456 * frame.c (Qenvironment): Remove.
9457 (syms_of_frame) <Qenvironment>: Don't initialize.
9458 (Fdelete_frame): Don't treat the `environment' param specially.
9459 * frame.h (Qenvironment): Don't declare.
9460 * callproc.c (set_initial_environment): Don't set unused frame param.
9461
9462 * frame.c (Fframe_with_environment): Remove.
9463 (syms_of_frame) <Sframe_with_environment>: Don't declare.
9464
9465 * lisp.h (Fframe_with_environment): Don't declare.
9466
9467 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
9468
9469 * indent.c (indent_tabs_mode, last_known_column)
9470 (last_known_column_modified): Make static.
9471 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
9472
9473 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
9474
9475 * puresize.h (BASE_PURESIZE): Increase to 1170000.
9476
9477 2007-10-09 Jason Rumney <jasonr@gnu.org>
9478
9479 * w32term.c (x_set_window_size): Disable code that attempts to tell
9480 Lisp code about a size change before it actually happens.
9481
9482 2007-10-09 Richard Stallman <rms@gnu.org>
9483
9484 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
9485 return HANDLED_RETURN.
9486
9487 2007-10-08 Martin Rudalics <rudalics@gmx.at>
9488
9489 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
9490 when there's an unread command event.
9491
9492 * frame.c (focus_follows_mouse): Move here from frame.el to allow
9493 window autoselection act appropriately when leaving selected frame.
9494 (syms_of_frame): Initialize focus_follows_mouse.
9495 * frame.h (focus_follows_mouse): Extern it.
9496 * macterm.c (XTread_socket): When focus_follows_mouse is nil
9497 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
9498 * msdos.c (dos_rawgetc): Likewise.
9499 * w32term.c (w32_read_socket): Likewise.
9500 * xterm.c (handle_one_xevent): Likewise.
9501 * xdisp.c (syms_of_xdisp): In doc-string of
9502 mouse-autoselect-window mention focus-follows-mouse.
9503
9504 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9505
9506 * macterm.c (mac_load_query_font): Fix missing return value.
9507 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
9508 Add BLOCK_INPUT.
9509
9510 2007-10-08 Richard Stallman <rms@gnu.org>
9511
9512 * xdisp.c (get_window_cursor_type): Implement documented behavior
9513 for cursor-in-non-selected-windows = t.
9514
9515 2007-10-08 Jason Rumney <jasonr@gnu.org>
9516
9517 * w32.c (w32_get_resource): Always close registry keys.
9518
9519 2007-10-08 Jason Rumney <jasonr@gnu.org>
9520
9521 * makefile.w32-in (LIBS): Add COMCTL32.
9522
9523 * w32fns.c (globals_of_w32fns): Init common controls.
9524
9525 2007-10-08 Richard Stallman <rms@gnu.org>
9526
9527 * image.c (our_memory_buffer): Rename from omfib_buffer.
9528
9529 2007-10-08 Richard Stallman <rms@gnu.org>
9530
9531 * buffer.c (Foverlays_at): Doc fix.
9532
9533 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
9534
9535 * fns.c (Fplist_put): Preserve uneven tail data.
9536
9537 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
9538
9539 * termhooks.h (enum event_kind): Remove trailing comma.
9540
9541 * frame.h (enum): Remove trailing comma.
9542
9543 2007-10-08 Dhuvra Krishnamurthy <dhuvrakm@gmail.com> (tiny change)
9544
9545 * w32proc.c (delete_child): Don't terminate threads of zombies.
9546
9547 2007-10-08 Martin Rudalics <rudalics@gmx.at>
9548
9549 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
9550
9551 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
9552 last-repeatable-command.
9553 (init_kboard): Initialize Vlast_repeatable_command.
9554 (command_loop_1): Set it to real_this_command unless that was
9555 bound to an input event.
9556 (mark_kboards): Mark it.
9557
9558 2007-10-08 Richard Stallman <rms@gnu.org>
9559
9560 * eval.c (condition-case): Doc fix.
9561
9562 2007-10-08 Masatake YAMATO <jet@gyve.org>
9563
9564 * xfaces.c (tty_supports_face_attributes_p): Fix code
9565 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
9566 was copied and not edited.
9567
9568 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
9569
9570 Add new `input-decode-map' keymap and use it for terminal
9571 escape sequences.
9572 * keyboard.h (struct kboard): Add Vinput_decode_map.
9573 Remove Vlocal_key_translation_map.
9574 * keyboard.c (read_key_sequence): Add support for input-decode-map.
9575 (init_kboard): Init input-decode-map.
9576 Replace local-key-translation-map back with key-translation-map.
9577 (syms_of_keyboard): Declare input-decode-map.
9578 Remove local-key-translation-map. Update docstrings.
9579 (mark_kboards): Mark Vinput_decode_map.
9580 Don't mark Vlocal_key_translation_map.
9581 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
9582 Replace local-key-translation-map back with key-translation-map.
9583 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
9584 Bind in input-decode-map rather than function-key-map.
9585
9586 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
9587 This was made redundant by the previous introduction of XSETPVECTYPE.
9588
9589 2007-10-09 Richard Stallman <rms@gnu.org>
9590
9591 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
9592
9593 2007-09-29 Richard Stallman <rms@gnu.org>
9594
9595 * eval.c (internal_condition_case_2, internal_condition_case_1)
9596 (internal_condition_case): Reenable abort if x_catching_errors ()
9597 to see if that really happens and why.
9598
9599 2007-10-06 Andreas Schwab <schwab@suse.de>
9600
9601 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
9602
9603 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
9604
9605 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
9606
9607 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9608
9609 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
9610
9611 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9612
9613 * window.h (struct window):
9614 * window.c (struct save_window_data, struct saved_window):
9615 * termhooks.h (struct terminal):
9616 * process.h (struct Lisp_Process):
9617 * frame.h (struct frame):
9618 * buffer.h (struct buffer):
9619 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
9620 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
9621 The size field of (pseudo)vectors is now unsigned.
9622 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
9623
9624 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
9625 Turn `count' into an integer.
9626
9627 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
9628 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
9629 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
9630 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
9631 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
9632
9633 * alloc.c (allocate_pseudovector): New fun.
9634 (ALLOCATE_PSEUDOVECTOR): New macro.
9635 (allocate_window, allocate_terminal, allocate_frame)
9636 (allocate_process): Use it.
9637 (mark_vectorlike): New function.
9638 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
9639 (mark_terminals): Use it.
9640 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
9641 (Fmake_byte_code): Use XSETPVECTYPE.
9642
9643 * frame.c (Fframe_parameters): Minor simplification.
9644
9645 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
9646
9647 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
9648
9649 * buffer.c (Fget_buffer_create, init_buffer_once):
9650 * lread.c (defsubr):
9651 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
9652
9653 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
9654 defined differently in the m/*.h files.
9655 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
9656 (XSETPVECTYPE): New macro.
9657 (XSETPSEUDOVECTOR): Use it.
9658
9659 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
9660 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
9661
9662 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
9663 * lread.c (defvar_per_buffer):
9664 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
9665
9666 * window.c (candidate_window_p): Only consider as visible frames that
9667 are on the same terminal.
9668
9669 * m/ibms390x.h (MARKBIT): Remove unused macro.
9670
9671 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
9672
9673 * lread.c (Fload): Fix typo in docstring.
9674
9675 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
9676
9677 * floatfns.c (Fexpt): Manually check for overflows, so that a power
9678 of a non-zero value can't yield zero.
9679
9680 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
9681
9682 * term.c (term_clear_mouse_face, term_mouse_highlight)
9683 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
9684
9685 * print.c (safe_debug_print): Use XHASH.
9686
9687 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
9688 Lisp elements such as tags.
9689 (XHASH): New macro.
9690 (EQ): Use it.
9691 (SREF, SSET, STRING_COPYIN): Use SDATA.
9692 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
9693
9694 * alloc.c (mark_terminal): Remove left-over declaration.
9695 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
9696 (allocate_vectorlike): Remove type argument. Adjust callers.
9697 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
9698 Only handle the one remaining MEM_TYPE_VECTORLIKE.
9699
9700 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
9701 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
9702 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
9703 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
9704 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
9705 Use them.
9706
9707 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
9708 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
9709 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
9710
9711 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
9712
9713 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
9714 loaded by default.
9715
9716 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9717
9718 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
9719 on this tty.
9720 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
9721
9722 * term.c (mouse_face_window): Rename from Qmouse_face_window.
9723 Update all users.
9724 (handle_one_term_event): Use Gpm_DrawPointer.
9725 (Fgpm_mouse_start): Rename from Fterm_open_connection.
9726 Signal errors instead of returning nil. Always return nil.
9727 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
9728 Make it a noop if gpm-mouse was not activated.
9729 (syms_of_term): Update names.
9730
9731 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
9732
9733 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
9734 (init_sys_modes): Check that gpm_tty is the current tty.
9735
9736 * alloc.c (allocate_terminal): Set the vector size to only count the
9737 lisp fields. Initialize those to nil.
9738 (mark_object): Don't treat terminals specially.
9739 (mark_terminal): Remove.
9740 (mark_terminals): Use mark_object instead.
9741
9742 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
9743 the GC to the beginning.
9744
9745 * indent.h:
9746 * indent.c: Use EMACS_INT for ints coming from Elisp data.
9747
9748 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
9749
9750 2007-09-25 Jason Rumney <jasonr@gnu.org>
9751
9752 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
9753
9754 * w32console.c (create_w32cons_output): Remove.
9755
9756 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
9757
9758 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
9759 (reset_sys_modes): Use reset_terminal_modes_hook.
9760
9761 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
9762
9763 * eval.c (do_autoload): Don't output any message.
9764
9765 2007-09-24 Juri Linkov <juri@jurta.org>
9766
9767 * emacs.c (standard_args): Change priority of "--no-splash"
9768 from 40 to 3. Add "--no-desktop" with the same priority.
9769
9770 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
9771
9772 * alloc.c (gc_sweep): Check cons cell mark bits word by word
9773 and optimize the case where they are all 1.
9774
9775 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
9776
9777 * lisp.h (abs): Define if not defined.
9778 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
9779 Don't define `abs', since it's defined in lisp.h.
9780
9781 2007-09-22 Eli Zaretskii <eliz@gnu.org>
9782
9783 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
9784 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
9785 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
9786 (init_tty): Use DEV_TTY instead of "/dev/tty".
9787 [WINDOWSNT]: No need to protect from NAME arg being null.
9788
9789 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
9790
9791 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
9792 up the tty state.
9793
9794 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9795
9796 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
9797 (gpm_tty): Change its type.
9798 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
9799 (gpm_tty): Change its type and initialize it.
9800 (Fterm_open_connection): Check the frame is indeed a tty.
9801 Use the new gpm_tty.
9802 (Fterm_close_connection): Use the new gpm_tty.
9803 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
9804 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
9805
9806 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
9807
9808 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
9809 underline_color, to draw strike-through.
9810
9811 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9812
9813 * lisp.h (allocate_terminal): Declare.
9814
9815 * window.c (candidate_window_p): Consider frames that are being placed
9816 by the user as somewhere between visible and iconified.
9817 (window_loop): Prefer windows on the current frame.
9818 (Fselect_window): Move the use of select-frame to the beginning so we
9819 can just delegate all the work (it'll call us back anyway).
9820
9821 * frame.c (Qdisplay_environment_variable):
9822 * frame.h (Qdisplay_environment_variable): Delete.
9823
9824 * .gdbinit (xbacktrace): Print the arg's address rather than the value
9825 of the first arg, since that value may be a union.
9826
9827 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
9828 parameter rather than Qdisplay_environment_variable. If all else
9829 fails, look for DISPLAY in initial-environment.
9830
9831 2007-09-21 Glenn Morris <rgm@gnu.org>
9832
9833 * Makefile.in (emacstool): Remove target.
9834 (lisp, shortlisp): Remove termdev.elc.
9835
9836 2007-09-21 Markus Triska <markus.triska@gmx.at>
9837
9838 * xterm.c (x_delete_display): Compile session management conditionally.
9839
9840 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9841
9842 * callproc.c (getenv_internal_1): New function.
9843 (getenv_internal): Use it.
9844 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
9845
9846 * terminal.c (get_terminal): Don't accept ints to represent terminals.
9847 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
9848 (Fset_terminal_parameter): Work with dead terminals as well.
9849 (Fmodify_terminal_parameters): Remove.
9850
9851 * terminal.c (get_terminal): Handle terminals.
9852 Make sure the terminal returned is live.
9853 (create_terminal): Use allocate_terminal.
9854 (mark_terminals): Move to alloc.c.
9855 (delete_terminal): Use terminal->name as liveness status.
9856 NULL out fields after freeing their contents.
9857 Don't deallocate the object.
9858 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
9859 rather than an int.
9860 (Fterminal_live_p): Accept non-integer arguments.
9861 (Fterminal_list): Return terminal objects rather than an ints.
9862
9863 * alloc.c (enum mem_type): New member for `terminal' objects.
9864 (allocate_terminal): New function.
9865 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
9866 Handle terminals.
9867 (mark_terminal): New fun.
9868 (mark_terminals): Move from terminal.c.
9869
9870 * term.c (get_tty_terminal): Don't treat output_initial specially.
9871 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
9872 (delete_tty): Use terminal->name as liveness status.
9873
9874 * termhooks.h (struct terminal): Make it into a pseudovector.
9875 Remove `deleted' replaced by checking `name's nullness.
9876
9877 * print.c (print_object): Handle terminals.
9878
9879 * lisp.h (enum pvec_type): New `terminal' pseudovector.
9880 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
9881
9882 * frame.c (make_terminal_frame):
9883 * keyboard.c (tty_read_avail_input):
9884 * w32term.c (x_delete_terminal):
9885 * xfns.c (Fx_create_frame, x_create_tip_frame):
9886 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
9887
9888 2007-09-20 Glenn Morris <rgm@gnu.org>
9889
9890 * process.c (Fmake_network_process): Doc fix.
9891
9892 2007-09-19 Jason Rumney <jasonr@gnu.org>
9893
9894 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
9895
9896 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
9897
9898 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
9899 Fix a C warning regarding variable constness.
9900
9901 * xterm.c (handle_one_xevent): Fix a C warning.
9902
9903 2007-09-18 Jason Rumney <jasonr@gnu.org>
9904
9905 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
9906
9907 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
9908
9909 * gtkutil.c (gdpy_def): New variable.
9910 (xg_initialize): Initialize gdpy_def.
9911 (xg_display_close): If no other display exists, set gdpy_def to a
9912 new connection.
9913
9914 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
9915
9916 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
9917 when we have no file name for the icon.
9918 (xg_tool_bar_expose_callback): Remove.
9919 (xg_create_tool_bar): Don't connect expose signal to
9920 xg_tool_bar_expose_callback.
9921 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
9922
9923 2007-09-16 Andreas Schwab <schwab@suse.de>
9924
9925 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
9926 values instead of zapping them.
9927
9928 2007-09-14 Glenn Morris <rgm@gnu.org>
9929
9930 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
9931 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
9932 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
9933 scope and rename to omfib_buffer for clarity.
9934 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
9935
9936 2007-09-14 Kenichi Handa <handa@m17n.org>
9937
9938 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
9939
9940 2007-09-13 Jason Rumney <jasonr@gnu.org>
9941
9942 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
9943
9944 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
9945
9946 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
9947 (mac_term_init): Call here instead, passing rif.
9948
9949 2007-09-13 Glenn Morris <rgm@gnu.org>
9950
9951 * s/hpux.h: No longer define `static' as nothing.
9952
9953 2007-09-13 Johan Bockgård <bojohan@gnu.org>
9954
9955 * callint.c (Fcall_interactively): Remove unused var `fun'.
9956
9957 2007-09-12 Romain Francoise <romain@orebokech.com>
9958
9959 * window.c (prefer_window_split_horizontally, display_buffer):
9960 Revert 2007-09-08 change.
9961
9962 2007-09-12 Glenn Morris <rgm@gnu.org>
9963
9964 * alloca.c: Remove file.
9965 * Makefile.in (alloca): Do not undef.
9966 (allocaobj, alloca.o): Remove.
9967 (otherobj): Remove allocaobj.
9968 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
9969 * regex.c (C_ALLOCA): Remove all references and code that was only
9970 used when this was defined.
9971 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
9972 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
9973 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
9974
9975 * Makefile.in (SOURCES, unlock, relock): Delete.
9976
9977 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
9978 (menu_grab_callback): All uses changed.
9979
9980 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
9981 (x_reply_selection_request): All uses changed.
9982
9983 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9984
9985 * lread.c (load_warn_old_style_backquotes): Change message to look
9986 better when it appears in the middle of byte-compiler messages.
9987
9988 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
9989
9990 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
9991
9992 * xterm.c (x_create_terminal): Add comment.
9993
9994 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
9995
9996 2007-09-10 Richard Stallman <rms@gnu.org>
9997
9998 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
9999
10000 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
10001
10002 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
10003 (DEFUN): Document `intspec', use it instead of `prompt'.
10004
10005 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
10006
10007 * data.c (Finteractive_form): If the interactive specification starts
10008 with a `(', use it as a Lisp form.
10009
10010 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
10011 name and file modes.
10012
10013 * callint.c (Fcall_interactively): Comment fixes.
10014
10015 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
10016
10017 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
10018 and compiled functions.
10019
10020 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
10021
10022 * window.c (prefer_window_split_horizontally): New variable.
10023 (display_buffer): Consider splitting window horizontally depending
10024 on prefer_window_split_horizontally.
10025
10026 2007-09-08 Eli Zaretskii <eliz@gnu.org>
10027
10028 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
10029
10030 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10031
10032 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
10033
10034 * frame.c (x_set_frame_parameters): Check number is positive before
10035 using XFASTINT.
10036
10037 * window.c (freeze_window_start): Don't presume selected_window holds
10038 a window object.
10039 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
10040
10041 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
10042
10043 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
10044
10045 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
10046
10047 * window.c (Vsplit_window_preferred_function): New var.
10048 (Fdisplay_buffer): Use it.
10049 (syms_of_window): Export, and initialize it.
10050
10051 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
10052
10053 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
10054
10055 2007-09-06 Glenn Morris <rgm@gnu.org>
10056
10057 * gtkutil.c (menu_grab_callback) <cnt>:
10058 * xselect.c (x_reply_selection_request) <cnt>: Move static
10059 variable to file scope.
10060
10061 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
10062
10063 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
10064 consistent values of selected_frame and selected_window.
10065
10066 2007-09-04 Jason Rumney <jasonr@gnu.org>
10067
10068 * w32console.c (initialize_w32_display): Zero unused hooks.
10069
10070 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
10071
10072 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
10073 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
10074
10075 2007-09-04 Jason Rumney <jasonr@gnu.org>
10076
10077 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
10078 in w32console.c. Set up input. Remove XXX comments that have been
10079 confirmed as correct.
10080
10081 * s/ms-w32.h (MULTI_KBOARD): Define.
10082
10083 * w32console.c (one_and_only_w32cons): Remove.
10084 (initialize_w32_display): Take terminal argument.
10085
10086 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
10087 initialize_w32_display.
10088 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
10089
10090 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
10091
10092 * keyboard.c (discard_mouse_events): Discard it.
10093 (make_lispy_event): Translate it to a lisp event.
10094 (lispy_wheel_names): Add wheel-left and right events.
10095 (syms_of_keyboard): Enlarge wheel_syms.
10096
10097 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
10098 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
10099
10100 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
10101
10102 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
10103 from WM_MOUSEHWHEEL.
10104 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
10105
10106 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
10107 terminal.
10108
10109 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
10110 keyboard for the terminal.
10111
10112 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
10113
10114 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
10115 (Vresume_tty_hook): Rename from Vresume_tty_functions.
10116 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
10117 and resume-tty-function to resume-tty-hook.
10118 (Fsuspend_tty, Fresume_tty): Use new names.
10119
10120 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
10121
10122 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
10123 if it starts with "n:".
10124
10125 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
10126
10127 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
10128
10129 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
10130
10131 * frame.h:
10132 * frame.c (Qterm_environment_variable): Remove.
10133 (syms_of_frame): Don't init and staticpro it.
10134
10135 * callproc.c (getenv_internal): Remove special case for $TERM.
10136
10137 * callproc.c (Vinitial_environment): New variable.
10138 (set_initial_environment): Initialize it.
10139 (syms_of_callproc): Declare it.
10140 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
10141 TERM under which a process runs is never related to the TERM in which
10142 Emacs is running.
10143
10144 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
10145
10146 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
10147 * s/darwin.h: ... do it here.
10148
10149 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
10150
10151 * lisp.h (set_initial_environment): Rename from set_global_environment.
10152
10153 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
10154 removed by mistake on the multi-tty branch.
10155
10156 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
10157 (Fmodify_frame_parameters): Return a value.
10158
10159 * image.c (png_load): Comment-out var only used in commented-out code.
10160
10161 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
10162 before passing it to mark_object.
10163
10164 * xfaces.c (internal_resolve_face_name): Return a value.
10165 (internal_resolve_face_name, resolve_face_name_error): Comment out.
10166
10167 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
10168 (x_icon): Comment-out var only used in commented-out code.
10169
10170 2007-08-29 Romain Francoise <romain@orebokech.com>
10171
10172 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
10173 QUIT hasn't been provided.
10174
10175 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
10176
10177 * callproc.c (child_setup, getenv_internal): Use the
10178 display-environment-variable and term-environment-variable frame params.
10179 (set_initial_environment): Initialise Vprocess_environment.
10180
10181 * config.in: Disable multi-keyboard support on a mac.
10182
10183 * frame.c (Qterm_environment_variable)
10184 (Qdisplay_environment_variable): New variables.
10185 (syms_of_frame): Intern and staticpro them.
10186 (Fmake_terminal_frame): Disable output method test.
10187
10188 * frame.h: Declare them here.
10189
10190 * macfns.c (x_set_mouse_color): Get rif from the frame.
10191 (x_set_tool_bar_lines): Don't use updating_frame.
10192 (mac_window): Add 2 new parameters for consistency with other systems.
10193 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
10194 frame parameters following what is done in X11 and w32. Don't use
10195 FRAME_MAC_DISPLAY_INFO.
10196 (Fx_open_connection, start_hourglass): Remove window-system check.
10197 (x_create_tip_frame): Get the keyboard from the terminal.
10198
10199 * macmenu.c: Reorder includes.
10200 (Fx_popup_menu): Use terminal specific mouse_position_hook.
10201
10202 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
10203 terminal parameter.
10204 (x_clear_frame): Add a frame parameter.
10205 (note_mouse_movement): Get rif from the frame.
10206 (mac_term_init): Initialize the terminal.
10207 (mac_initialize): Make static and move terminal initialization ...
10208 (mac_create_terminal): ... to this new function.
10209
10210 * macterm.h (struct mac_display_info): Add terminal.
10211 (mac_initialize): Delete declaration.
10212
10213 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
10214
10215 * sysdep.c: Comment out text after #endif.
10216
10217 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
10218 is defined. Better initialize ttys in windows. Use terminal
10219 specific mouse_position_hook.
10220
10221 * termhooks.h (union display_info): Add mac_display_info.
10222
10223 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
10224 Set the default minibuffer frame, window_system and the rest of the
10225 frame parameters following what is done in X11.
10226
10227 * w32term.c (w32_initialize): Make static.
10228
10229 * xselect.c (x_handle_selection_clear): Only access
10230 terminal->kboard when MULTI_KBOARD is defined.
10231
10232 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
10233 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
10234
10235 2007-08-29 Jason Rumney <jasonr@gnu.org>
10236
10237 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
10238 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
10239
10240 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
10241 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
10242
10243 * keyboard.c (restore_kboard_configuration): Only define when
10244 MULTI_KBOARD defined.
10245
10246 * makefile.w32-in: Update dependancies from Makefile.in.
10247 (OBJ1): Add terminal.$(O)
10248
10249 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
10250 Don't define function body.
10251 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
10252
10253 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
10254
10255 * w32.c (request_sigio, unrequest_sigio): Remove.
10256
10257 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
10258 (w32con_clear_frame, w32con_clear_end_of_line)
10259 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
10260 (w32con_delete_glyphs, w32con_set_terminal_window)
10261 (scroll_line, w32_sys_ring_bell): Add frame arg.
10262 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
10263 Add terminal arg.
10264 (PICK_FRAME): Remove.
10265 (w32con_write_glyphs): Use frame specific terminal coding.
10266 (one_and_only_w32cons): New global variable.
10267 (initialize_w32_display): Use it for storing hooks.
10268 (create_w32cons_output): New function.
10269
10270 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
10271 arg a frame.
10272
10273 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
10274 Set window_system.
10275 (x_set_tool_bar_lines): Don't use updating_frame.
10276 (Fx_create_frame): Set terminal and ref count.
10277 (Fx_open_connection): Remove window-system check.
10278
10279 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
10280
10281 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
10282 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
10283 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
10284 Add frame arg.
10285 (x_delete_terminal, w32_create_terminal): New functions.
10286 (w32_term_init): Create a terminal.
10287 (w32_initialize): Move terminal specific initialization to
10288 w32_create_terminal.
10289
10290 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
10291 (w32_clear_rect, w32_clear_area): Use background from frame.
10292 (w32_display_info): Add terminal.
10293 (w32_sys_ring_bell, x_delete_display): Declare here.
10294
10295 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
10296
10297 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
10298
10299 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
10300
10301 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
10302 Fix get_named_tty calls for the controlling tty.
10303
10304 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
10305
10306 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
10307
10308 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
10309
10310 * term.c (tty_insert_glyphs): Add missing first parameter.
10311
10312 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
10313
10314 * buffer.c (Fbuffer_list, Fbury_buffer):
10315 Take frame->buried_buffer_list into account.
10316
10317 * cm.c (current_tty): New variable, for cmputc().
10318 (cmputc): Use it.
10319 (cmcheckmagic): Add tty parameter, look up terminal streams there.
10320 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
10321 (cmgoto): Add tty parameter. Pass it on to calccost().
10322 Use emacs_tputs() instead of tputs().
10323
10324 * cm.h (emacs_tputs): New macro to set current_tty, and then call
10325 tputs().
10326 (current_tty): New variable, for cmputc().
10327 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
10328
10329 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
10330 (internal_condition_case, internal_condition_case_1)
10331 (internal_condition_case_2): Don't abort when x_catching_errors.
10332
10333 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
10334 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
10335 prevent crashes caused by bogus longjmps in read_char.
10336
10337 * keymap.h (Fset_keymap_parent): Add EXFUN.
10338
10339 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
10340 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
10341 Remove redundant definition.
10342
10343 * macfns.c (x_set_mouse_color, x_make_gc):
10344 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10345
10346 * w32term.c (x_free_frame_resources):
10347 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10348 (w32_initialize): Use the accessor macros for terminal characteristics.
10349
10350 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
10351 Use the accessor macros for terminal characteristics.
10352 * msdos.c (internal_terminal_init): Use the accessor macros for
10353 terminal characteristics.
10354 (ScreenVisualBell, internal_terminal_init):
10355 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10356
10357 * termopts.h (no_redraw_on_reenter): Declare.
10358
10359 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
10360 (mark_terminals, mark_ttys): Declare.
10361 (Fgarbage_collect): Call them.
10362 (mark_object): Mark buried_buffer_list.
10363
10364 * prefix-args.c: Include stdlib.h for exit.
10365
10366 * syssignal.h: Add comment.
10367
10368 * indent.c: Include stdio.h.
10369
10370 * window.h (Vinitial_window_system): Declare.
10371 (Vwindow_system): Delete declaration.
10372
10373 * fontset.c (Finternal_char_font): Use FRAME_RIF.
10374
10375 * image.c (lookup_image): Don't initialize `c' until the xasserts
10376 have been run.
10377
10378 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
10379 FRAME_FOREGROUND_PIXEL.
10380
10381 * print.c (print_preprocess): Don't lose print_depth levels while
10382 iterating.
10383
10384 * widget.c (update_from_various_frame_slots):
10385 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10386
10387 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
10388 frames.
10389 (window_internal_height): Remove bogus make_number call.
10390 (init_window_once): Call make_terminal_frame with two zero parameters.
10391
10392 * fileio.c (Fread_file_name): Update comment.
10393
10394 * callint.c (Fcall_interactively):
10395 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
10396 Make sure it is correctly unwound.
10397
10398 * xsmfns.c (x_session_close): New function.
10399
10400 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
10401 Delete declarations.
10402
10403 * xterm.h: Remove declaration for x_fully_uncatch_errors.
10404 (x_output): Remove background_pixel and foreground_pixel fields.
10405 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
10406 (x_delete_device, x_session_close): Declare.
10407
10408 * lread.c: Include setjmp.h. Update declaration of `read_char'.
10409 (read_filtered_event): Call `read_char' with a local
10410 `wrong_kboard_jmpbuf'.
10411
10412 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
10413 Don't call single_kboard_state. Use FRAME_RIF.
10414
10415 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
10416 systems.
10417
10418 * lisp.h (set_process_environment): Rename to `set_global_environment'.
10419 (Fframe_with_environment, Fset_input_meta_mode)
10420 (Fset_quit_char): EXFUN.
10421 (x_create_device, tty_output, terminal, tty_display_info): Declare.
10422 (init_sys_modes, reset_sys_modes): Update prototypes.
10423 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
10424
10425 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
10426 Vlocal_key_translation_map, and Vkeyboard_translate_table.
10427 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
10428 Delete declarations.
10429 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
10430 (temporarily_switch_to_single_kboard, tty_read_avail_input):
10431 New declarations.
10432
10433 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
10434 already does that during init_display(). Call syms_of_keymap
10435 before syms_of_keyboard. Call `syms_of_terminal'.
10436 Call set_initial_environment, not set_process_environment.
10437 (shut_down_emacs): Call reset_all_sys_modes() instead of
10438 reset_sys_modes().
10439
10440 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
10441 (internal_resolve_face_name, resolve_face_name_error): New functions.
10442 (resolve_face_name): Protect against loops and errors thrown by Fget.
10443 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
10444 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
10445
10446 * scroll.c: Replace CURTTY() with local variables throughout the
10447 file (where applicable).
10448 (calculate_scrolling, calculate_direct_scrolling)
10449 (scrolling_1, scroll_cost): Use the accessor macros for terminal
10450 characteristics.
10451
10452 * keymap.c (Vfunction_key_map): Remove.
10453 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
10454 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
10455 (Vkey_translation_map): Remove.
10456 (syms_of_keymap): Remove DEFVAR for key-translation-map.
10457 (Fdescribe_buffer_bindings)
10458 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
10459 Update for terminal-local key-translation-map.
10460
10461 * Makefile.in (callproc.o): Update dependencies.
10462 (lisp, shortlisp): Add termdev.elc.
10463 (obj): Add terminal.o.
10464 (terminal.o): Add dependencies.
10465 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
10466 (data.o, fns.o): Add termhooks.h dependency.
10467 (SOME_MACHINE_LISP): Add dnd.elc.
10468 (minibuf.o): Fix typo.
10469 Update dependencies.
10470
10471 * data.c (do_symval_forwarding, store_symval_forwarding)
10472 (find_symbol_value): Use the selected frame's keyboard, not
10473 current_kboard.
10474
10475 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
10476 Vwindow_system.
10477
10478 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
10479 Fmenu_bar_open.
10480 (syms_of_xmenu): Update defsubr.
10481 (mouse_position_for_popup, Fx_popup_menu)
10482 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
10483 (set_frame_menubar, free_frame_menubar)
10484 (create_and_show_popup_menu, xmenu_show, )
10485 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
10486 an X frame.
10487
10488 * xselect.c (x_own_selection): Abort if not an X frame.
10489 (some_frame_on_display): Check if it is an X frame.
10490 (x_handle_selection_clear): Deal with MULTI_KBOARD.
10491
10492 * coding.c: Include frame.h and termhooks.h.
10493 (terminal_coding, keyboard_coding): Delete.
10494 (Fset_terminal_coding_system_internal)
10495 (Fset_keyboard_coding_system_internal)
10496 (Fkeyboard_coding_system)
10497 (Fterminal_coding_system): Add a terminal parameter.
10498 Get terminal_coding from the terminal.
10499 (init_coding_once): Don't call setup_coding_system here.
10500
10501 * dispextern.h (set_scroll_region, turn_off_insert)
10502 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
10503 (tty_clear_end_of_line, tty_setup_colors)
10504 (delete_tty, updating_frame)
10505 (produce_special_glyphs, produce_glyphs, write_glyphs)
10506 (insert_glyphs): Remove.
10507 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
10508 (tty_turn_off_highlight, get_tty_size): Add declaration.
10509 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
10510
10511 * frame.h (enum output_method): Add output_initial.
10512 (struct x_output): Delete.
10513 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
10514 Access foreground_pixel and background_pixel directly from the frame.
10515 (tty_display): Delete.
10516 (struct frame): Add buried_buffer_list, foreground_pixel,
10517 background_pixel and terminal. Delete kboard
10518 (union output_data): Add tty.
10519 (FRAME_KBOARD): Get the kboard from the terminal.
10520 (FRAME_INITIAL_P): New macro.
10521 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
10522 (Qterm_environment_variable, Qdisplay_environment_variable)
10523 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
10524 New declarations.
10525
10526 * termchar.h (tty_output, tty_display_info): New structures.
10527 (tty_list): Declare.
10528 (FRAME_TTY, CURTTY): New macros.
10529 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
10530 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
10531 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
10532 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
10533
10534 * callproc.c: Include frame.h and termhooks.h, for terminal
10535 parameters.
10536 (add_env): New function.
10537 (child_setup): Use it.
10538 (child_setup, getenv_internal): Handle the new Vprocess_environment.
10539 (getenv_internal): Fix get_terminal_param call.
10540 (Fgetenv_internal, egetenv): Update doc.
10541 (syms_of_callproc): Initialize Vprocess_environment to nil.
10542 Register and initialize them. Remove obsolete defvars. Update doc
10543 strings.
10544 (child_setup): Handle Vlocal_environment_variables.
10545 (getenv_internal): Add terminal parameter.
10546 Handle Vlocal_environment_variables.
10547 (Fgetenv_internal): Add terminal parameter.
10548 (child_setup, getenv_internal, Fgetenv_internal): Store the local
10549 environment in a frame (not terminal) parameter. Update doc strings.
10550 (set_initial_environment): Rename from set_global_environment.
10551 Store Emacs environment in initial frame parameter.
10552
10553 * xdisp.c (redisplay_internal): Update references to
10554 `previous_terminal_frame'.
10555 (display_mode_line, Fformat_mode_line): Replace calls to
10556 `push_frame_kboard' with `push_kboard'.
10557 (get_glyph_string_clip_rects): Add extra parentheses and
10558 braces to prevent compiler warnings.
10559 (calc_pixel_width_or_height): Add xassert to check that the
10560 frame is alive. Don't call `lookup_image' on a termcap frame.
10561 (message2_nolog, message3_nolog, redisplay_internal)
10562 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
10563 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
10564 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
10565 (Fx_display_pixel_width, Fx_display_pixel_height)
10566 (Fx_display_planes, Fx_display_color_cells)
10567 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
10568 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
10569 (Fx_display_backing_store, Fx_display_visual_class)
10570 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
10571 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
10572
10573 * xfns.c (x_set_foreground_color x_set_background_color)
10574 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
10575 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10576 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
10577 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
10578 terminal that is being deleted.
10579 (Fx_create_frame): Use `store_frame_param' to set `window-system'
10580 frame parameter, and make sure it overrides any user-supplied setting.
10581 (Fx_close_connection, Fx_synchronize): Unify argument names with
10582 the rest of the DEFUNs.
10583
10584 * dispnew.c (Fsend_string_to_terminal): Update call to
10585 `get_tty_terminal'.
10586 (Fredraw_frame, Fsend_string_to_terminal)
10587 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
10588 FRAME_TERMCAP_P and FRAME_TTY.
10589 (window_change_signal): Don't believe width/height values that are
10590 impossibly small.
10591 (Vinitial_window_system): Rename from Vwindow_system.
10592 (termscript, Wcm, rif): Delete.
10593
10594 * termhooks.h (struct terminal): New struct containing the
10595 previously global text display hooks and new members NAME,
10596 DELETED and PARAM_ALIST.
10597 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
10598 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
10599 (FRAME_RIF): New macros.
10600 (get_terminal_param, get_device): New declarations.
10601 (termscript): Delete declaration.
10602
10603 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
10604 (XTflash, x_free_frame_resources, x_scroll_bar_create)
10605 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
10606 FRAME_FOREGROUND_PIXEL.
10607 (x_fully_uncatch_errors): Disable definition.
10608 (x_scroll_bar_expose): Fix reference to foreground pixel.
10609 (XTread_socket): Disable loop on all X displays.
10610 (x_delete_terminal): Don't set terminal->deleted and let
10611 delete_terminal delete the frames on the terminal.
10612 (x_delete_display): Doc update to reflect changes in
10613 delete_terminal.
10614 (x_display_info) <terminal>: Move member earlier in the struct.
10615 (deleting_tty): Remove old variable.
10616 (Fsuspend_tty): Call clear_tty_hooks.
10617 (Fresume_tty, init_tty): Call set_tty_hooks.
10618 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
10619 errors on X frames.
10620 (x_catch_errors_unwind): Abort if x_error_message is NULL.
10621 (handle_one_xevent): Initialize `f' to NULL.
10622 (x_delete_terminal, x_create_terminal): New functions.
10623 (XTset_terminal_modes, XTreset_terminal_modes)
10624 (XTread_socket, x_connection_closed, x_term_init)
10625 (x_term_init, x_delete_display): Add terminal parameter.
10626 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
10627 X connections.
10628
10629 * frame.c: Include termchar.h.
10630 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
10631 (Qwindow_system, Qenvironment, Qterm_environment_variable)
10632 (Qdisplay_environment_variable): New vars.
10633 (Fframep): Deal with output_initial.
10634 (Fframe-live-p): Doc fix.
10635 (Fwindow-system): New function.
10636 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
10637 (make_terminal_frame): Don't create frames on a terminal that is
10638 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10639 (store_frame_param): Check for found_for_frame before calling XFRAME.
10640 (Fmake_terminal_frame): Handle NULL tty names correctly.
10641 (syms_of_frame): Enhance doc string of `default-frame-alist'.
10642 (Fdelete_frame): Remove unused variable `count'. Don't allow other
10643 frames to refer to a deleted frame in their 'environment parameter.
10644 (Fframe_with_environment): New function.
10645 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
10646 (get_future_frame_param): New function.
10647 (Fmake_terminal_frame): Use it.
10648 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
10649
10650 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
10651 * sysdep.c (reset_sys_modes): Update for renames.
10652
10653 * keyboard.c (tty_read_avail_input): New function.
10654 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
10655 (syms_of_keyboard): Defsubr them.
10656 (Fset_input_meta_mode, Fset_quit_char): New functions.
10657 (Fset_input_mode): Split to above functions.
10658
10659 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
10660 parameter. Use it in call to `read_char'.
10661 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
10662 Set wrong_kboard_jmpbuf correctly in recursive calls.
10663 Use current_kboard to access Vkeyboard_translate_table.
10664 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
10665 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
10666 Update longjmp invocations. Remember the original current_kboard,
10667 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
10668 changes it. Comment out unnecessary calls to
10669 `record_single_kboard_state' and `any_kboard_state'.
10670 Update recursive calls.
10671 (wrong_kboard_jmpbuf): Remove global variable.
10672 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
10673 Handle deleted interrupted_kboards correctly; that is a legal
10674 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
10675 and read_char calls. Abort if interrupted_kboard died in read_char.
10676 (any_kboard_state, single_kboard_state)
10677 (push_frame_kboard): Remove function.
10678 (pop_kboard): Switch out of single_kboard mode if the kboard has
10679 been deleted. Remove unused variable. Help debugging by not
10680 changing current_kboard unnecessarily. Set current_kboard to the
10681 kboard of the selected frame when the stored kboard object has
10682 been deleted before pop_kboard.
10683 (temporarily_switch_to_single_kboard): Change first parameter to a
10684 frame pointer. Throw an error when caller wants to change kboards
10685 while in single_kboard mode. Don't push_kboard if we weren't in
10686 single kboard state. Don't pop_kboard if we popped into any
10687 kboard state.
10688 (restore_kboard_configuration): Abort if pop_kboard changed the
10689 kboard in single_kboard mode. Call pop_kboard only after setting
10690 up single_kboard mode.
10691 (Frecursive_edit): Switch to single_kboard mode only in nested
10692 command loops.
10693 (cmd_error, command_loop, command_loop_1, timer_check):
10694 Comment out unnecessary call to `any_kboard_state' and
10695 `record_single_kboard_state'.
10696 (delete_kboard): Exit single_kboard mode if we have just deleted
10697 that kboard. Use FRAME_KBOARD.
10698 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
10699 `fatal_error_signal'.
10700 (record_single_kboard_state): Don't push_kboard if we weren't in
10701 single kboard state. Don't pop_kboard if we popped into any
10702 kboard state.
10703 (push_frame_kboard): Rename to push_kboard.
10704 (kbd_buffer_get_event): Use FRAME_TERMINAL.
10705 (read_avail_input): Read input from all terminals.
10706 (mark_kboards): Also mark Vkeyboard_translate_table.
10707 (kbd_buffer_store_event_hold): Simplify condition.
10708 (read_key_sequence): Reinitialize fkey and keytran at each replay.
10709 (Vkeyboard_translate_table): Move to struct kboard.
10710 (init_kboard): Initialize Vkeyboard_translate_table.
10711 (syms_of_keyboard): Use DEFVAR_KBOARD to define
10712 Vkeyboard_translate_table. Update doc strings. Update docs of
10713 local-function-key-map and function-key-map.
10714
10715 * terminal.c: New file.
10716
10717 * term.c: Include errno.h.
10718 (Vring_bell_function, device_list, initial_device)
10719 (next_device_id, ring_bell, update_begin, update_end)
10720 (set_terminal_window, cursor_to, raw_cursor_to)
10721 (clear_to_end, clear_frame, clear_end_of_line)
10722 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
10723 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
10724 (syms_of_term): Move their initialization to terminal.c.
10725 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
10726 (Ftty_display_color_cells)
10727 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
10728 (clear_tty_hooks, set_tty_hooks)
10729 (init_tty, maybe_fatal): New functions.
10730 (Ftty_type): Return nil if terminal is not on a tty instead of
10731 throwing an error. Doc update.
10732 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
10733 Doc update. Initialize new subrs and variables.
10734 (delete_tty): Use terminal->deleted.
10735 (tty_set_terminal_modes): Rename from set_terminal_modes.
10736 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
10737 (set_scroll_region): Rename to `tty_set_scroll_region'.
10738 (turn_on_insert): Rename to `tty_turn_on_insert'.
10739 (turn_off_insert): Rename to `tty_turn_off_insert'.
10740 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
10741 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
10742 (toggle_highligh): Rename to `tty_toggle_highlight'.
10743 (background_highlight): Rename to `tty_background_highlight'.
10744 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
10745 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
10746 (tty_set_scroll_region, tty_background_highlight)
10747 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
10748 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
10749 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
10750 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
10751 Add static modifier.
10752 (tty_reset_terminal_modes, tty_set_terminal_window)
10753 (tty_set_scroll_region, tty_background_highlight)
10754 (tty_highlight_if_desired, tty_cursor_to)
10755 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
10756 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
10757 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
10758 renames.
10759
10760 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
10761
10762 * keyboard.c: Qrtl is new.
10763 (parse_tool_bar_item): Handle :rtl keyword.
10764 (syms_of_keyboard): Intern :rtl keyword.
10765
10766 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
10767
10768 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
10769 so no Lisp code is executed.
10770 (file_for_image, find_rtl_image): New functions.
10771 (xg_get_image_for_pixmap): Use file_for_image
10772 (update_frame_tool_bar): If direction is RTL, use RTL image if
10773 defined. Use Gtk stock images if defined.
10774
10775 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10776
10777 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
10778 for nonexistent or zero-width glyph in composition glyph.
10779
10780 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
10781
10782 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
10783
10784 * xdisp.c (Finvisible_p): New function.
10785 (syms_of_xdisp): defsubr it.
10786
10787 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
10788
10789 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
10790 Doc fixes.
10791
10792 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10793
10794 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
10795
10796 2007-08-24 Martin Rudalics <rudalics@gmx.at>
10797
10798 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
10799 whether decoding has modified buffer contents.
10800
10801 2007-08-24 Jason Rumney <jasonr@gnu.org>
10802
10803 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
10804 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
10805 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
10806 (init_svg_functions) [HAVE_NTGUI]: New function.
10807 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
10808 (svg_load_image): Use them.
10809 (svg_load_image) [HAVE_NTGUI]: Implement background.
10810
10811 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10812
10813 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
10814 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
10815 (LIBX): Remove @RSVG_LIBS@.
10816 (LIBES): Add $(RSVG_LIBS).
10817
10818 * image.c (svg_load_image): Blend with specified background if exists.
10819 Use IMAGE_BACKGROUND. Add Mac OS Support.
10820
10821 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
10822 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
10823 Remove macros.
10824 [MAC_OSX] (socket_callback): Do nothing.
10825 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
10826 ReceiveNextEvent.
10827 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
10828 socket_callback.
10829 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
10830
10831 2007-08-22 Glenn Morris <rgm@gnu.org>
10832
10833 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
10834
10835 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
10836
10837 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
10838
10839 * image.c: Add support for SVG images. Some additional comments
10840 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
10841 (svg_image_p): New function to test for SVG image.
10842 (svg_load): New function to load SVG image.
10843 (svg_load_image): New function, helper for svg_load.
10844 (Qsvg): New Lisp_object.
10845 (svg_keyword_index): New enum.
10846 (svg_format): New static `image_keyword' struct.
10847 (svg_type): New static `image_type' struct.
10848 (librsvg/rsvg.h): Include it.
10849
10850 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10851
10852 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
10853
10854 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10855
10856 * lread.c (Qold_style_backquotes): New var.
10857 (syms_of_lread): Init and staticpro it.
10858 (load_warn_old_style_backquotes): New fun.
10859 (Fload): Use them to warn about old style backquotes.
10860 (end_of_file_error, Fload): Remove unused vars.
10861
10862 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
10863
10864 * lread.c (Vold_style_backquotes): New var.
10865 (syms_of_lread): Init and export it to Elisp.
10866 (read1): Set it when we find an old-style (back)quote.
10867
10868 2007-08-22 Jason Rumney <jasonr@gnu.org>
10869
10870 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
10871
10872 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
10873
10874 * puresize.h (BASE_PURESIZE): Increase to 1140000.
10875
10876 2007-08-19 Richard Stallman <rms@gnu.org>
10877
10878 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
10879
10880 2007-08-19 Andreas Schwab <schwab@suse.de>
10881
10882 * alloc.c (pure): Round PURESIZE up.
10883
10884 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
10885
10886 * xterm.c (handle_one_xevent): Remove check that mouse click is in
10887 active frame.
10888
10889 2007-08-16 Richard Stallman <rms@gnu.org>
10890
10891 * eval.c (Fcommandp): Add parens to clarify.
10892
10893 * minibuf.c (Fall_completions): Use enum for type of table.
10894
10895 * emacs.c (USAGE2): Improve text.
10896
10897 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
10898
10899 * term.c (tty_default_color_capabilities): Declare static
10900 variables in file scope, to avoid HPUX compiler problem.
10901
10902 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
10903
10904 * gtkutil.c (update_frame_tool_bar): Use -1 as index
10905 to gtk_toolbar_insert.
10906
10907 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10908
10909 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
10910
10911 * insdel.c (reset_var_on_error): New fun.
10912 (signal_before_change, signal_after_change):
10913 Use it to reset (after|before)-change-functions to nil in case of error.
10914 Bind inhibit-modification-hooks to t.
10915 Don't bind (after|before)-change-functions to nil while they run.
10916
10917 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10918
10919 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
10920 filling pixmap with stippled background.
10921
10922 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10923
10924 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
10925 Don't use invisible frame as parent window for repositioning.
10926
10927 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
10928
10929 * print.c (new_backquote_output): Rename from old_backquote_output.
10930 (print): Inverse its logic (according to its name) so as to match the
10931 behavior of new_backquote_flag in lread.c.
10932
10933 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10934
10935 * gmalloc.c (posix_memalign): New function.
10936
10937 * macterm.c (frame_highlight, frame_unhighlight): Don't call
10938 ActivateControl/DeactivateControl here.
10939 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
10940 frame-notice-user-settings is non-nil.
10941 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
10942 for kEventParamFMFontStyle.
10943 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
10944 mac_pass_command_to_system and mac_pass_control_to_system here.
10945 (XTread_socket): Call ActivateControl/DeactivateControl here.
10946 (XTread_socket) [TARGET_API_MAC_CARBON]:
10947 Check mac_pass_command_to_system and mac_pass_control_to_system here.
10948 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
10949 for window repositioning.
10950
10951 2007-08-08 Glenn Morris <rgm@gnu.org>
10952
10953 * Replace `iff' in doc-strings and comments.
10954
10955 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
10956
10957 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
10958
10959 2007-08-07 Martin Rudalics <rudalics@gmx.at>
10960
10961 * fileio.c (Finsert_file_contents): Run format-decode and
10962 after_insert_file_functions on entire buffer when REPLACE is
10963 non-nil and inhibit modification_hooks and point_motion_hooks.
10964 For consistency, run after_insert_file_functions iff something
10965 got inserted. Move signal_after_change and update_compositions
10966 after code running after_insert_file_functions. Make sure that
10967 undo_list doesn't record intermediate steps of the decoding process.
10968
10969 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10970
10971 * emacs.c (main)
10972 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
10973 Call malloc_enable_thread on interactive startup.
10974
10975 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
10976 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
10977 [USE_PTHREAD]: Conditionalize with it.
10978 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
10979 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
10980 New functions.
10981
10982 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
10983
10984 * xdisp.c (redisplay_window): When restoring original buffer
10985 position, make sure it is still valid.
10986
10987 * image.c (png_load): Ignore png-supplied background color.
10988
10989 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10990
10991 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
10992 Use kCFAbsoluteTimeIntervalSince1970.
10993
10994 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
10995 New variable.
10996 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
10997 event loop should be quit.
10998 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
10999 Quit dialog event loop if quit_dialog_event_loop is set.
11000
11001 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
11002 (Selection): New typedef. Use instead of ScrapRef.
11003 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
11004 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
11005 (mac_clear_selection): Rename from clear_scrap.
11006 (get_flavor_type_from_symbol): New argument SEL and subsume function of
11007 scrap_has_target_type. All uses changed.
11008 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
11009 (mac_selection_has_target_p): New functions.
11010 (mac_put_selection_value): Rename from put_scrap_string.
11011 (mac_get_selection_value): Rename from get_scrap_string.
11012 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
11013 (put_scrap_private_timestamp, scrap_has_target_type)
11014 (get_scrap_private_timestamp): Remove functions.
11015 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
11016 (x_own_selection, x_get_local_selection):
11017 Use mac_valid_selection_value_p.
11018 (x_own_selection): Don't use put_scrap_private_timestamp.
11019 Record OWNERSHIP-INFO into Vselection_alist instead.
11020 (x_get_local_selection): Don't check type if request is local.
11021 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
11022 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
11023
11024 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
11025
11026 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
11027 add comment explaining why.
11028
11029 2007-08-03 Richard Stallman <rms@gnu.org>
11030
11031 * fileio.c (Fvisited_file_modtime): Use make_time.
11032
11033 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
11034
11035 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
11036 build.
11037
11038 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
11039
11040 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
11041
11042 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
11043
11044 * puresize.h (BASE_PURESIZE): Increase to 1130000.
11045
11046 2007-07-30 Richard Stallman <rms@gnu.org>
11047
11048 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
11049
11050 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
11051
11052 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
11053
11054 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
11055
11056 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
11057 remote default-directory.
11058
11059 * buffer.c (mode-line-format): Update doc string.
11060
11061 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11062
11063 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
11064 scroll bar gap.
11065 (x_scroll_bar_create): Set bar->fringe_extended_p.
11066 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
11067 on frame edge. Check fringe background extension. Don't clear
11068 extended fringe background area.
11069
11070 * w32term.h (struct scroll_bar): New member fringe_extended_p.
11071 (w32_fill_area): Enclose multiple statements with do ... while (0).
11072
11073 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
11074 Extend fringe background to scroll bar gap.
11075 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
11076 Set bar->fringe_extended_p.
11077 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
11078 Put leftmost/rightmost scroll bars on frame edge. Check fringe
11079 background extension. Don't clear extended fringe background area.
11080
11081 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
11082 New member fringe_extended_p.
11083
11084 2007-07-25 Glenn Morris <rgm@gnu.org>
11085
11086 * Relicense all FSF files to GPLv3 or later.
11087
11088 * COPYING: Switch to GPLv3.
11089
11090 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
11091
11092 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
11093
11094 * data.c (Finteractive_form): Check for the presence of an
11095 `interactive-form' symbol property more thoroughly.
11096
11097 * data.c (Finteractive_form): Use an `interactive-form' property if
11098 present, analogous to the function-documentation property.
11099
11100 2007-07-24 Jason Rumney <jasonr@gnu.org>
11101
11102 * w32fns.c (x_real_positions): Get real position from OS instead of
11103 calculating it.
11104
11105 2007-07-23 Jason Rumney <jasonr@gnu.org>
11106
11107 * filelock.c (current_lock_owner): Allow for @ sign in username.
11108
11109 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
11110
11111 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
11112 remote default-directory.
11113
11114 * buffer.c (mode-line-format): Describe above case in doc string.
11115
11116 2007-07-20 Eli Zaretskii <eliz@gnu.org>
11117
11118 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
11119 Define if not defined.
11120
11121 2007-07-18 Jason Rumney <jasonr@gnu.org>
11122
11123 * w32proc.c (w32_executable_type): Handle 64 bit executables.
11124
11125 2007-07-18 Richard Stallman <rms@gnu.org>
11126
11127 * data.c (Fsetq_default): Doc fix.
11128
11129 * eval.c (Fsetq): Doc fix.
11130
11131 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
11132
11133 * coding.c (Ffind_operation_coding_system):
11134 * eval.c (For, Fand): Doc fixes.
11135 Reported by Johan Bockgård.
11136
11137 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
11138
11139 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
11140
11141 * xterm.h: Declare x_ewmh_activate_frame.
11142
11143 * xterm.c (x_ewmh_activate_frame): New function.
11144 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
11145
11146 2007-07-17 Martin Rudalics <rudalics@gmx.at>
11147
11148 * window.c (Fdisplay_buffer): If largest or LRU window is the
11149 only window, split it even if it is not eligible for splitting.
11150 This restores the original behavior broken by the 2007-07-15
11151 change.
11152
11153 2007-07-17 Glenn Morris <rgm@gnu.org>
11154
11155 * abbrev.c (abbrev_check_chars): New function.
11156 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
11157 Call abbrev_check_chars to check abbrev characters are word
11158 constituents. Doc fix.
11159
11160 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
11161
11162 * process.c (Fstart_process, Fmake_network_process)
11163 (read_process_output): Fix up last changes.
11164
11165 2007-07-16 Eli Zaretskii <eliz@gnu.org>
11166
11167 * makefile.w32-in (clean): Don't delete *~.
11168
11169 2007-07-16 Andreas Schwab <schwab@suse.de>
11170
11171 * window.c (Fdisplay_buffer): Use NILP.
11172 (Fset_window_scroll_bars): Likewise.
11173
11174 2007-07-15 Martin Rudalics <rudalics@gmx.at>
11175
11176 * window.c (window_min_size_2): New function.
11177 (window_min_size_1, size_window, Fdisplay_buffer)
11178 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
11179 windows without mode- or header-lines when window-min-height is
11180 too small.
11181 (size_window): Reset nodelete_p after testing it, following an
11182 earlier note by Kim F. Storm.
11183 (display_buffer): Do not set split_height_threshold to twice the
11184 value of window_min_height to avoid changing the value of a
11185 customizable variable. Rather explicitly check whether the
11186 height of the window that shall be splitted is at least as large
11187 as split_height_threshold.
11188 (Fwindow_full_width_p): New defun.
11189 (syms_of_window): Defsubr it.
11190
11191 * window.h: Add EXFUN for Fwindow_full_width_p.
11192
11193 2007-07-14 Jason Rumney <jasonr@gnu.org>
11194
11195 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
11196
11197 2007-07-14 Richard Stallman <rms@gnu.org>
11198
11199 * eval.c (maybe_call_debugger): New function.
11200 (find_handler_clause): Use maybe_call_debugger.
11201 Call it when the handler says `debug'.
11202 Eliminate DEBUGGER_VALUE_PTR.
11203 (Fsignal): Eliminate debugger_value.
11204 (Qdebug): New variable.
11205 (syms_of_eval): Initialize it.
11206
11207 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
11208
11209 * eval.c (Fprogn):
11210 * keyboard.c (Ftrack_mouse):
11211 * print.c (Fwith_output_to_temp_buffer):
11212 * window.c (Fsave_window_excursion): Doc fix.
11213
11214 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
11215
11216 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
11217
11218 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
11219
11220 * process.h (struct Lisp_Process): Turn slots infd, outfd,
11221 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
11222 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
11223 read_output_delay, and read_output_skip from Lisp_Objects to ints.
11224 Remove unused encoding_carryover.
11225 * process.c: Adjust all functions accordingly.
11226
11227 2007-07-12 Richard Stallman <rms@gnu.org>
11228
11229 * term.c: Include unistd.h only if HAVE_UNISTD_H.
11230
11231 2007-07-11 Jason Rumney <jasonr@gnu.org>
11232
11233 * makefile.w32-in (LIBS): Include OLE32.
11234
11235 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
11236 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
11237
11238 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
11239
11240 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
11241 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
11242 from a Lisp_Object into a bare pointer.
11243 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
11244 Adjust the code correspondingly.
11245
11246 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
11247
11248 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
11249 (term_show_mouse_face): Remove unused var `j'.
11250 (handle_one_term_event): Remove unused vars `i' and `j'.
11251 Don't cast return value of ttyname since it's not necessary.
11252
11253 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
11254
11255 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
11256 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
11257
11258 * fns.c (map_char_table): Use an array of int for `indices' rather than
11259 an array of Lisp_Objects (which are only ever integers anyway).
11260 (Fmap_char_table): Update caller.
11261 * lisp.h: Update prototype.
11262 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
11263 * fontset.c (Ffontset_info):
11264 * casetab.c (set_case_table): Update callers.
11265
11266 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
11267
11268 * keymap.c (struct accessible_keymaps_data)
11269 (struct where_is_internal_data): New structures.
11270 (accessible_keymaps_1, where_is_internal_1): Use them to change
11271 interface to adhere to the one used by map_keymap.
11272 (Faccessible_keymaps, where_is_internal): Use map_keymap.
11273 (accessible_keymaps_char_table, where_is_internal_2): Remove.
11274
11275 * keymap.h (map_keymap_function_t): More informative prototype.
11276
11277 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
11278
11279 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
11280 (looking_at_1): Don't change search_regs and last_thing_searched
11281 if `inhibit-changing-match-data' is non-nil.
11282 (string_match_1, search_buffer, set_search_regs): Likewise.
11283 (syms_of_search): Add Lisp level definition for
11284 `inhibit-changing-match-data' and set it to nil.
11285 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
11286 start and end of the match, instead of using values in search_regs.
11287
11288 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
11289
11290 * minibuf.c (Fcompleting_read): New value `confirm-only'
11291 for `require-match'.
11292
11293 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
11294
11295 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
11296 part of the 2007-06-27 change to syms_of_fileio.
11297
11298 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11299
11300 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
11301 Check WINDOWP before using XWINDOW. Consolidate return statements.
11302
11303 2007-06-27 Richard Stallman <rms@gnu.org>
11304
11305 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
11306
11307 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
11308
11309 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
11310
11311 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11312
11313 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
11314 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
11315 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
11316 (_free_internal, memalign): Use them.
11317 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
11318 Initialize to PTHREAD_MUTEX_INITIALIZER.
11319 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
11320 (morecore_nolock): Rename from morecore. All uses changed.
11321 Use only nolock versions of internal allocation functions.
11322 (_malloc_internal_nolock, _realloc_internal_nolock)
11323 (_free_internal_nolock): New functions created from
11324 _malloc_internal, _realloc_internal, and _free_internal.
11325 (_malloc_internal, _realloc_internal, _free_internal): Use them.
11326 Copy hook value to automatic variable before its use.
11327 (memalign): Copy hook value to automatic variable before its use.
11328
11329 2007-06-26 Kenichi Handa <handa@m17n.org>
11330
11331 * coding.c (Ffind_operation_coding_system): Docstring improved.
11332 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
11333
11334 2007-06-25 David Kastrup <dak@gnu.org>
11335
11336 * keymap.c (Fcurrent_active_maps): Add `position' argument.
11337 (Fwhere_is_internal): Adjust call to `current-active-maps' to
11338 cater for additional parameter.
11339
11340 * keymap.h: Adjust number of parameters to `current-active-maps'.
11341
11342 * doc.c (Fsubstitute_command_keys): Adjust call of
11343 `current-active-maps'.
11344
11345 2007-06-25 David Kastrup <dak@gnu.org>
11346
11347 * callint.c (Fcall_interactively): Make the parsing of interactive
11348 specs somewhat more readable.
11349
11350 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11351
11352 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
11353 to scroll bar gap also when bitmap fills fringe. Draw only foreground
11354 if extended background has already been filled.
11355
11356 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11357
11358 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
11359 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
11360
11361 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
11362 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
11363 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
11364 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
11365 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
11366 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
11367 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
11368 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
11369 Run timers during dialog popup.
11370 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
11371
11372 2007-06-21 Jason Rumney <jasonr@gnu.org>
11373
11374 * image.c (convert_mono_to_color_image): Swap fore and background.
11375
11376 2007-06-20 Jason Rumney <jasonr@gnu.org>
11377
11378 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
11379 (w32_free_bdf_font): Unmap memory not handle.
11380
11381 2007-06-20 Sam Steingold <sds@gnu.org>
11382
11383 * gmalloc.c (__morecore): Fix the declaration to comply with the
11384 definition.
11385
11386 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
11387
11388 * w32term.c (w32_delete_display): Remove leftover declaration.
11389 (w32_define_cursor, w32_initialize): Make static.
11390
11391 * w32.c (_wsa_errlist): Fix typo in error message.
11392 (init_environment): Ignore any environment variable from the
11393 registry having a null value.
11394
11395 2007-06-20 Glenn Morris <rgm@gnu.org>
11396
11397 * Makefile.in (LIBGIF): Default to -lgif.
11398
11399 2007-06-17 Jason Rumney <jasonr@gnu.org>
11400
11401 * w32menu.c (add_menu_item): Don't use multibyte string functions on
11402 unicode strings.
11403
11404 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
11405
11406 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
11407 Fix typo in docstring.
11408
11409 2007-06-16 Eli Zaretskii <eliz@gnu.org>
11410
11411 * w32menu.c (add_menu_item): Escape `&' characters in menu items
11412 and their keybindings.
11413
11414 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
11415
11416 * composite.c (update_compositions): Fix last fix.
11417
11418 2007-06-14 Jason Rumney <jasonr@gnu.org>
11419
11420 * w32.c (get_process_times_fn): New function pointer.
11421 (globals_of_w32): Intialize it if present in kernel32.dll.
11422 (w32_get_internal_run_time): New function.
11423
11424 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
11425
11426 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
11427
11428 * composite.c (update_compositions): Check the validness of
11429 compositions.
11430
11431 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11432
11433 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
11434 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
11435
11436 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
11437 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
11438
11439 * macgui.h (USE_MAC_TOOLBAR): New define.
11440
11441 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
11442 Return immediately unless popup is activated.
11443
11444 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
11445 background to scroll bar gap.
11446 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
11447 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
11448 scroll bars on frame edge. Check fringe background extension.
11449 Don't clear extended fringe background area.
11450 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
11451 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
11452 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
11453 [USE_MAC_TOOLBAR]: New macros.
11454 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
11455 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
11456 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
11457 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
11458 [USE_MAC_TOOLBAR]: New functions.
11459 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
11460 manually if previous repositioning has failed.
11461 (mac_handle_keyboard_event): Use precomputed event kind.
11462 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
11463 as tool bar item click. Handle mouse movement over tool bar items.
11464
11465 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
11466 toolbar_win_gravity.
11467 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
11468 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
11469 Add externs.
11470
11471 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
11472 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
11473
11474 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
11475
11476 * image.c (search_image_cache): Remove unused variable.
11477
11478 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
11479
11480 * xfns.c, xmenu.c: Link to xaw3d if available.
11481
11482 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11483
11484 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
11485 frame_foreground and frame_background.
11486
11487 * image.c (lookup_image): Save frame foreground and background colors.
11488 (search_image_cache): Check if saved and current frame colors match.
11489
11490 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
11491
11492 * regex.c (regex_compile): Remove the `regnum' counter.
11493 Use bufp->re_nsub instead. Add support for \(?N:RE\).
11494
11495 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11496
11497 * term.c: Include intervals.h to declare Fget_text_property.
11498
11499 2007-06-10 Jason Rumney <jasonr@gnu.org>
11500
11501 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
11502
11503 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
11504
11505 * callint.c (Fcall_interactively):
11506 * editfns.c (Fdelete_and_extract_region):
11507 * fileio.c (Fread_file_name):
11508 * fns.c (Fmapconcat):
11509 * keyboard.c (cmd_error_internal):
11510 * keymap.c (Fkey_description):
11511 * lread.c (openp):
11512 * minibuf.c (read_minibuf):
11513 * search.c (wordify):
11514 * sunfns.c (sel_read):
11515 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
11516 * xfns.c (x_default_scroll_bar_color_parameter):
11517 * xmenu.c (menu_help_callback):
11518 * xselect.c (Fx_get_atom_name):
11519 * xterm.c (x_term_init): Use empty_unibyte_string.
11520
11521 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
11522
11523 * alloc.c (init_strings): Initialize canonical empty strings.
11524 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
11525 canonical empty string when the requested size is 0.
11526
11527 * emacs.c (empty_unibyte_string): Rename from empty_string.
11528 (empty_multibyte_string): New canonical empty string.
11529 (syms_of_emacs): Don't initialize empty_string.
11530
11531 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
11532 string, if appropriate.
11533 (empty_unibyte_string, empty_multibyte_string): New externs.
11534 (empty_string): Remove extern.
11535
11536 * lread.c (syms_of_lread): Use empty_unibyte_string.
11537
11538 2007-06-07 Jason Rumney <jasonr@gnu.org>
11539
11540 * s/ms-w32.h: Don't define HAVE_TZNAME.
11541
11542 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
11543
11544 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11545
11546 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
11547
11548 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
11549 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
11550
11551 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
11552 Don't call next handler.
11553 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
11554 Remove argument. Install handler to application.
11555 (set_frame_menubar): Don't change deep_p.
11556 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
11557 FRAME_OUTER_TO_INNER_DIFF_Y.
11558 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
11559 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
11560 [HAVE_DIALOGS]: New macros.
11561 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
11562 Use them.
11563 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
11564
11565 * macselect.c [MAC_OSX] (install_service_handler): Rename from
11566 init_service_handler. All callers changed. Return OSStatus value.
11567
11568 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
11569 All callers changed so as not to call SetPortWindowPort.
11570 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
11571 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
11572 mac_draw_string_common.
11573 (mac_draw_image_string_qd): Likewise.
11574 (mac_draw_string_common): Use them. Add INLINE.
11575 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
11576 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
11577 GetGlobalMouse.
11578 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
11579 and FRAME_OUTER_TO_INNER_DIFF_Y.
11580 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
11581 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
11582 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
11583 repositioning window to mac_handle_window_event.
11584 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
11585 saving window location to mac_handle_window_event
11586 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
11587 (install_menu_target_item_handler): Remove argument in extern.
11588 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
11589 Also accept command events.
11590 (do_keystroke): New function created from XTread_socket.
11591 (init_command_handler): Remove functions.
11592 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
11593 and save window location by kEventWindowShowing and kEventWindowHiding
11594 handlers here. Don't call next handler for window state change and
11595 focus events.
11596 (mac_handle_application_event, mac_handle_keyboard_event)
11597 [TARGET_API_MAC_CARBON]: New functions.
11598 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
11599 kEventWindowShowing and kEventWindowHiding events. Move installation
11600 of mouse, font, text input and menu target item handlers to
11601 install_application_handler.
11602 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
11603 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11604 New function.
11605 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11606 Register it.
11607 (XTread_socket) [TARGET_API_MAC_CARBON]:
11608 Consolidate SendEventToEventTarget calls.
11609 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
11610 Move application activation handler to mac_handle_application_event.
11611 Move keyboard handler to mac_handle_keyboard_event.
11612 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
11613 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
11614 init_command_handler. Call install_application_handler.
11615
11616 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
11617 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
11618
11619 2007-06-07 Glenn Morris <rgm@gnu.org>
11620
11621 * emacs.c (main): Use `emacs-copyright' in --version output.
11622
11623 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
11624
11625 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
11626
11627 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11628
11629 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
11630
11631 * macgui.h: Replace WindowPtr with WindowRef.
11632
11633 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
11634 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
11635 Replace ControlHandle with ControlRef.
11636 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
11637
11638 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
11639 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
11640 Replace ControlHandle with ControlRef.
11641 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
11642 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
11643
11644 * macterm.h (struct scroll_bar): Rename member control_handle_low
11645 and control_handle_high to control_ref_low and control_ref_high.
11646 All uses changed.
11647 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
11648 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
11649 respectively. All uses changed.
11650 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
11651 (install_window_handler, remove_window_handler): Replace WindowPtr
11652 with WindowRef in externs.
11653
11654 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
11655
11656 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
11657
11658 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
11659
11660 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
11661
11662 * frame.c (Fmouse_position, Fmouse_pixel_position):
11663 Condition on HAVE_GPM too.
11664
11665 * term.c (term_mouse_highlight): Remove unused variables.
11666 (Fterm_open_connection): Set gpm_zerobased to 1.
11667 (term_mouse_movement, term_mouse_click, handle_one_term_event):
11668 Use zero based co-ordinates.
11669 (handle_one_term_event): Report a drag as mouse movement too.
11670
11671 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
11672
11673 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
11674
11675 * image.c (search_image_cache): New function. Require background
11676 color match if background color is unspecified in the image spec.
11677 (uncache_image, lookup_image): Use it.
11678
11679 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
11680
11681 * window.c (Fshrink_window): Reflow docstring.
11682
11683 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
11684
11685 * Version 22.1 released.
11686
11687 2007-06-01 Richard Stallman <rms@gnu.org>
11688
11689 * xfns.c (x_encode_text): Add GCPRO.
11690
11691 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11692
11693 * xfns.c (x_set_name_internal): Save encoded name before
11694 x_encode_text in case string data is relocated.
11695
11696 2007-05-31 Richard Stallman <rms@gnu.org>
11697
11698 * buffer.c (syms_of_buffer): Doc fix.
11699
11700 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
11701
11702 * sysdep.c (init_sys_modes): Add rather than replace with
11703 O_NONBLOCK.
11704
11705 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
11706 term_mouse_moveto.
11707
11708 * termhooks.h (term_mouse_moveto): New extern.
11709
11710 * term.c (mouse_face_window): Rename...
11711 (Qmouse_face_window): ...to this.
11712 (term_show_mouse_face, term_clear_mouse_face)
11713 (term_mouse_highlight): Use Qmouse_face_window.
11714 (term_mouse_moveto): New function.
11715 (term_mouse_position): Make it work.
11716 (syms_of_term): Uncomment assignment to mouse_position_hook.
11717 Staticpro Qmouse_face_window.
11718
11719 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11720
11721 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
11722 around current_column call.
11723
11724 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
11725
11726 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
11727 * xdisp.c (next_element_from_buffer):
11728 * window.c (delete_window):
11729 * term.c (term_mouse_highlight):
11730 * msdos.c (getdefdir):
11731 * macterm.c (mac_create_bitmap_from_bitmap_data)
11732 (init_font_name_table):
11733 * fns.c (Fsxhash):
11734 * data.c (Fmake_local_variable):
11735 * ccl.c (ccl_driver): Likewise.
11736
11737 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11738
11739 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
11740 Call mac_wakeup_from_rne on window size change.
11741
11742 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
11743
11744 * image.c (uncache_image): Fix typo.
11745
11746 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
11747
11748 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
11749
11750 2007-05-22 Richard Stallman <rms@gnu.org>
11751
11752 * xterm.c (x_connection_closed): Remove NO_RETURN.
11753
11754 2007-05-22 Martin Rudalics <rudalics@gmx.at>
11755
11756 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
11757
11758 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
11759
11760 * image.c (uncache_image): New function.
11761 (Fimage_refresh): New function.
11762
11763 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
11764
11765 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
11766
11767 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
11768
11769 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
11770 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
11771
11772 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
11773
11774 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
11775 conditional on [HAVE_GPM_H].
11776
11777 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11778
11779 * syntax.c (skip_chars): Update syntax-table only after we checked that
11780 the new location is valid.
11781
11782 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11783
11784 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
11785 mac_get_window_bounds.
11786
11787 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
11788
11789 * Makefile.in (LIBGPM): Allow it to be set from configure.
11790 If set then link Emacs with it.
11791
11792 * config.in: Regenerate.
11793
11794 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
11795 New externs.
11796
11797 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
11798 Include gpm.h.
11799 (handle_one_term_event, term_gpm): New externs.
11800
11801 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
11802 and allow it to be interrupted by SIGIO.
11803
11804 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
11805 (wait_reading_process_output): Wait on gpm_fd too.
11806 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
11807 (add_gpm_wait_descriptor_called_flag): New variable.
11808 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
11809
11810 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
11811 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
11812 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
11813 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
11814 (make_lispy_event): Add case GPM_CLICK_EVENT.
11815 (read_avail_input): Handle mouse input.
11816
11817 * term.c (write_glyphs_with_face): New function.
11818 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
11819 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
11820 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
11821 (mouse_face_face_id, term_gpm, pos_x, pos_y)
11822 (last_mouse_x, last_mouse_y): New variables.
11823 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
11824 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
11825 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
11826 (Fterm_close_connection): New functions.
11827 (term_init): Initialise mouse_face_window.
11828
11829 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
11830
11831 * xdisp.c (redisplay_window): If first window line is a
11832 continuation line, recompute the new window start instead of
11833 recentering.
11834
11835 2007-05-18 Glenn Morris <rgm@gnu.org>
11836
11837 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
11838 Suggested by Alfred M. Szmidt <ams@gnu.org>.
11839
11840 2007-05-17 Glenn Morris <rgm@gnu.org>
11841
11842 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
11843
11844 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11845
11846 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
11847 dead key repeat and up events.
11848
11849 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
11850
11851 * image.c (pbm_load): Check image size for monochrome pbm.
11852
11853 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
11854
11855 * xterm.c (XTread_socket): Revert last change.
11856
11857 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
11858
11859 * image.c (pbm_load): Correctly check image size for greyscale pbm.
11860
11861 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
11862
11863 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11864
11865 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
11866 mixup (YAILOM).
11867
11868 2007-05-07 Andreas Schwab <schwab@suse.de>
11869
11870 * keymap.c (Flookup_key): Fix typo in last change.
11871
11872 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11873
11874 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
11875 mapping for unibyte strings.
11876
11877 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11878
11879 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
11880 (Fx_popup_dialog) [MAC_OSX]: Likewise.
11881
11882 2007-04-29 Richard Stallman <rms@gnu.org>
11883
11884 * insdel.c (replace_range): For undo, record insertion first.
11885
11886 2007-04-29 Andreas Schwab <schwab@suse.de>
11887
11888 * lisp.h (VECSIZE): Use OFFSETOF.
11889
11890 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11891
11892 * xdisp.c (try_window_reusing_current_matrix): Fix number of
11893 disabled lines.
11894
11895 2007-04-28 Richard Stallman <rms@gnu.org>
11896
11897 * lread.c (read_escape): In a string, \s is always space.
11898
11899 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
11900
11901 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
11902
11903 * gtkutil.c (xg_update_menubar, create_menus): Create empty
11904 submenu for menu bar items.
11905
11906 See ChangeLog.10 for earlier changes.
11907
11908 ;; Local Variables:
11909 ;; coding: utf-8
11910 ;; add-log-time-zone-rule: t
11911 ;; End:
11912
11913 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
11914
11915 This file is part of GNU Emacs.
11916
11917 GNU Emacs is free software: you can redistribute it and/or modify
11918 it under the terms of the GNU General Public License as published by
11919 the Free Software Foundation, either version 3 of the License, or
11920 (at your option) any later version.
11921
11922 GNU Emacs is distributed in the hope that it will be useful,
11923 but WITHOUT ANY WARRANTY; without even the implied warranty of
11924 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11925 GNU General Public License for more details.
11926
11927 You should have received a copy of the GNU General Public License
11928 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
11929
11930 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40