]> code.delx.au - gnu-emacs/blob - src/ChangeLog
* minibuf.c (keys_of_minibuf): Delete.
[gnu-emacs] / src / ChangeLog
1 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * minibuf.c (keys_of_minibuf): Delete.
4 * lisp.h (keys_of_minibuf): Delete.
5 * emacs.c (main): Don't call keys_of_minibuf.
6
7 2008-05-22 Kenichi Handa <handa@m17n.org>
8
9 * ftfont.c (ftfont_resolve_generic_family): Rename from
10 ftfont_list_generic_family. Return a single family for each
11 generic family.
12 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
13 (ftfont_list): Adjust for the change of
14 ftfont_resolve_generic_family. Call font_add_log.
15 (ftfont_match): Call font_add_log.
16
17 * font.h (Ffont_xlfd_name): EXFUN adjusted.
18 (FONT_DEBUG): Define it.
19 (font_add_log): Extern it.
20 (font_assert): Rename from xassert.
21
22 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
23 (xfont_list_family): Call font_add_log.
24 (xfont_match): Likewise.
25 (memq_no_quit): Delete.
26
27 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
28 call of Ffont_xlfd_name.
29
30 * xfaces.c (struct table_entry, slant_table, weight_table)
31 (swidth_table): Move to font.c.
32
33 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
34 xassert are changed to font_assert. Delete many unused variables.
35 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
36 New variables.
37 (struct table_entry): Move from xfaces.c and modified.
38 (weight_table, slant_table, width_table): Move from xfaces.c and
39 contents adjusted for the change of struct table_entry.
40 (font_style_to_value, font_style_symbolic): Adjut for the format
41 change of font_style_table.
42 (font_parse_family_registry): Don't overwrite existing foundry and
43 family of font_spec.
44 (font_score): Fix calculation of diff for sizes.
45 (font_sort_entites): Call font_add_log.
46 (font_delete_unmatched): Return a newly created list.
47 (font_list_entities): Fix previous change. Call font_add_log.
48 (font_matching_entity, font_open_entity, font_close_entity):
49 Call font_add_log.
50 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
51 (Finternal_set_font_style_table): Delete.
52 (BUILD_STYLE_TABLE): New macro.
53 (build_style_table): New function.
54 (Vfont_log, font_log_env_checked): New variables.
55 (font_add_log): New function.
56 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
57 Declare Lisp variables "font-weight-table", "font-slant-table",
58 "font-width-table", and "font-log". Initialize font_style_table.
59
60 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
61
62 * xterm.c (x_set_frame_alpha): Move declarations before statements.
63
64 2008-05-21 Seiji Zenitani <zenitani@mac.com>
65 Ryo Yoshitake <ryo@shiftmode.net>
66
67 * frame.c (Qalpha): Add a new frame parameter `alpha'.
68 (Vframe_alpha_lower_limit): New variable.
69 (x_set_alpha): New function.
70
71 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
72
73 * xfns.c (x-create-frame, Qalpha):
74 Initialize the frame parameter `alpha'.
75 * xterm.c (OPAQUE, OPACITY): New.
76 (x_set_frame_alpha): New function.
77 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
78
79 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
80 * w32fns.c (w32_frame_parm_handlers): Likewise.
81
82 2008-05-20 Jason Rumney <jasonr@gnu.org>
83
84 * w32font.c (add_font_entity_to_list): Don't add non-opentype
85 truetype fonts to opentype list.
86
87 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
88
89 * fontset.c (Ffontset_info): Doc fix.
90 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
91 <ignore-relative-composition>: Fix typos in docstrings.
92
93 * font.c (syms-of-font) <font-encoding-alist>:
94 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
95 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
96 (Ffont_otf_alternates): Doc fixes.
97
98 2008-05-20 Kenichi Handa <handa@m17n.org>
99
100 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
101 font.h through out the file.
102 (FONT_DRIVERS): Renamed from FONTOBJ.
103 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
104 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
105
106 * emacs.c (main): Call syms_of_font unconditionally.
107
108 * font.h (find_font_encoding): Extern it.
109
110 * font.c (Vfont_encoding_alist, find_font_encoding): Moved from
111 fontset.c.
112 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
113 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
114 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
115 only when HAVE_WINDOW_SYSTEM is defined.
116 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
117 when HAVE_WINDOW_SYSTEM is defined.
118
119 * fontset.c (Vfont_encoding_alist, find_font_encoding): Moved to
120 font.c.
121 (syms_of_fontset): Declaration of font-encoding-alist moved to
122 font.c.
123
124 * xfaces.c: Include font.h unconditionally.
125 (merge_face_ref, merge_face_vectors)
126 (Finternal_set_lisp_face_attribute): Cancel the previous change.
127
128 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
129
130 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
131 indirect_variable.
132 * eval.c (lisp_indirect_variable): New fun.
133 (Fuser_variable_p): Use it.
134
135 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
136
137 * lisp.h (indirect_variable):
138 * data.c (indirect_variable, let_shadows_buffer_binding_p):
139 Use Lisp_Symbol pointers rather than Lisp_Object.
140 Adjust callers.
141 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
142 To this end, change calling-convention.
143
144 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
145 if some non-hidden buffers are selected by string&pred.
146
147 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
148
149 * process.c (wait_reading_process_output): Always check status
150 when in batch mode.
151
152 2008-05-19 Kenichi Handa <handa@m17n.org>
153
154 * font.c (font_list_entities): Fix handling of cache.
155 (font_matching_entity): Likewise.
156
157 * ftfont.c (cs_iso8859_1): Delete.
158 (ft_face_cache): New variable.
159 (struct ftfont_info): New member fc_charset_idx;
160 (ftfont_build_basic_charsets): Delete.
161 (fc_charset_table): New variable.
162 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
163 . FC_CHARSET_IDX) as :font-entity property in the font entity.
164 Callers changed.
165 (ftfont_lookup_cache, ftfont_get_charset): New functions.
166 (ftfont_spec_pattern): New argument fc_charset_idx.
167 Check registry more rigidly. Change callers.
168 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
169 change of :font-entity property of the font.
170
171 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
172 property of the font.
173
174 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
175
176 * coding.c (Fcoding_system_p): Rename argument to match docstring.
177 (Funencodable_char_position, Fcheck_coding_systems_region)
178 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
179 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
180 (Ffind_operation_coding_system, Fset_coding_system_priority)
181 (Fcoding_system_eol_type): Doc fixes.
182
183 2008-05-17 Glenn Morris <rgm@gnu.org>
184
185 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
186
187 2008-05-16 Eli Zaretskii <eliz@gnu.org>
188
189 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
190 and st_gid.
191
192 * frame.c (Fdelete_frame): Don't call font_update_drivers if
193 HAVE_WINDOW_SYSTEM is not defined.
194
195 * xfaces.c (merge_face_ref, merge_face_vectors)
196 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
197 HAVE_WINDOW_SYSTEM is defined.
198 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
199
200 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
201
202 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
203
204 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
205
206 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
207
208 2008-05-15 Kenichi Handa <handa@m17n.org>
209
210 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
211 preference.
212
213 2008-05-15 Glenn Morris <rgm@gnu.org>
214
215 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
216
217 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
218
219 * fns.c (init_fns): Don't initialize weak_hash_tables here.
220 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
221
222 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
223
224 2008-05-15 Kenichi Handa <handa@m17n.org>
225
226 * ftfont.c (ftfont_list): Downcase family name to check generic
227 families.
228
229 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
230 font-spec for QCfont value.
231
232 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
233 buffer. Check the return value of it.
234
235 2008-05-14 Jason Rumney <jasonr@gnu.org>
236
237 * w32term.c (w32_get_glyph_overhangs): Remove.
238 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
239
240 2008-05-14 Kenichi Handa <handa@m17n.org>
241
242 * font.c (font_prop_validate): Make nil a valid value.
243 (font_clear_cache): Check if the cached vector of entities is nil
244 or not.
245
246 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
247
248 * emacs.c (main_thread): Conditionalize on
249 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
250 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
251
252 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
253 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
254 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
255
256 2008-05-14 Kenichi Handa <handa@m17n.org>
257
258 * coding.c (detect_coding_iso_2022): Ignore a coding category that
259 has no corresponding coding system.
260
261 2008-05-14 Jason Rumney <jasonr@gnu.org>
262
263 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
264
265 * w32font.h (w32font_open_internal): Update declaration.
266
267 * w32font.c (w32font_open_internal): Change last argument from
268 w32font_info struct to font object. Fill in font object from
269 font_entity. Get Outline metrics if possible. Use them to
270 calculate underline position and thickness. Use xlfd name as name
271 property. Don't set codepage.
272 (w32font_open): Pass font_object to w32font_open_internal. Don't
273 update dpyinfo->smallest_font_height and
274 dpyinfo->smallest_char_width.
275 (w32font_draw): Use s->font.
276 (clear_cached_metrics): Don't clear non-existent blocks.
277
278 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
279 font was not found.
280 (x_draw_glyph_string): Use underline position and thickness from
281 font.
282
283 * w32uniscribe.c (uniscribe_open): Pass font_object to
284 w32font_open_internal.
285
286 2008-05-14 Kenichi Handa <handa@m17n.org>
287
288 These changes are to delete all legacy font-handling codes, and
289 make Emacs use only font-backends.
290
291 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
292 (frame.o, image.o, print.o): Depend on $(FONTSRC).
293
294 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
295
296 * charset.h (Vcharset_non_preferred_head)
297 (Vcurrent_iso639_language): Extern them.
298
299 * charset.c (Vcharset_non_preferred_head): New variable.
300 (Vcurrent_iso639_language): New variable.
301 (syms_of_charset): Declare it as a Lisp variable.
302 (char_charset): Don't check non preferred charsets. As a last
303 resort, return charset_unicode.
304 (Fset_charset_priority): Update Vcharset_non_preferred_head.
305
306 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
307 conditionals. Don't check enable_font_backend. Delete all codes
308 used only when USE_FONT_BACKEND is not defined.
309
310 * dispextern.h (struct glyph_string): Change type of `font' to
311 `struct font *'.
312 (struct glyph_string): New member underline_position and
313 underline_thickness.
314 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
315 (struct face): Change type of `font' to `struct font *'. Remove
316 members `font_name', `font_info_id'.
317 (per_char_metric, encode_char): Delete externs.
318 (calc_pixel_width_or_height): Adjust the prototype.
319
320 * emacs.c (enable_font_backend): Delete extern.
321 (main): Don't set enable_font_backend. Don't check the command
322 line argument "-disable-font-backend".
323
324 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
325 (enum font_property_index): New members FONT_DPI_INDEX,
326 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
327 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
328 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
329 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
330 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
331 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
332 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
333 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
334 (struct font_spec, struct font_entity): New structs.
335 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
336 (struct font): Many members from old "struct font_info" moved to
337 here. Members font and entity deleted.
338 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
339 the new font-related objects.
340 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
341 (CHECK_FONT_GET_OBJECT): Likewise.
342 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
343 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
344 (struct font_driver): New members case_sensitive anc check. Type
345 of the member list and open changed.
346 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
347 (font_symbolic_width, font_find_object, font_get_spec)
348 (font_set_lface_from_name): Delete extern.
349 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New
350 EXFUNs.
351
352 * font.c: Include <strings.h>.
353 (enable_font_backend): Delete it.
354 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
355 (CHECK_VALIDATE_FONT_SPEC): Delete it.
356 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
357 (null_string): Delete it.
358 (null_vector): Make it static.
359 (font_family_alist): Delete it.
360 (Qnormal): Extern it.
361 (QCextra, QClanguage): Delete it.
362 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New
363 variables.
364 (font_make_spec, font_make_entity, font_make_object)
365 (font_intern_prop): Renamed from intern_downcase. Don't downcase
366 the string. Callers changed.
367 (font_pixel_size): Adjusted for the format change of font-related
368 objects.
369 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
370 (font_style_to_value, font_style_symbolic): New function.
371 (build_font_family_alist): Delete it.
372 (font_registry_charsets): Use Fassoc_string instead of
373 assq_no_quit.
374 (font_prop_validate_symbol): Don't return null_string.
375 (font_prop_validate_style): Adjusted for the change of
376 style-related values in a font vector.
377 (font_property_table): Delete entries for QClangauge and
378 QCantialias, add entries for QCavgwidth.
379 (get_font_prop_index): Delete the 2nd argument FROM.
380 (font_prop_validate): Arguments changed.
381 (font_put_extra): Adjusted for the change of font-related objects.
382 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
383 (font_parse_fcname, font_unparse_fcname)
384 (font_prepare_composition): Likewise.
385 (font_parse_family_registry): Renamed from font_merge_old_spec.
386 (otf_open): Delete the 1st arg entity.
387 (font_otf_capability): Adjusted for the above change.
388 (font_score): New arg alternate_families. Adjusted for the change
389 of font-related objects.
390 (font_sort_entites): New arg best_only.
391 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
392 Delete them.
393 (font_match_p): Check alternate families.
394 (font_find_object): Delete it.
395 (font_check_object): New function.
396 (font_clear_cache): Adjusted for the change of font-related
397 objects.
398 (font_delete_unmatched): New arg.
399 (font_list_entities): Call font_driver->list with a spec that
400 doesn't specify style-related properties.
401 (font_matching_entity): Arguments changed. Caller changed.
402 (font_open_entity): Adjusted for the change of font-related
403 objects.
404 (font_close_object, font_has_char, font_encode_char)
405 (font_get_name, font_get_spec): Likewise.
406 (font_spec_from_name, font_clear_prop, font_update_lface): New
407 functions.
408 (font_find_for_lface, font_open_for_lface, font_load_for_lface):
409 (font_prepare_for_face, font_done_for_face, font_open_by_name)
410 (font_at): Adjusted for the change of font-related objects.
411 (font_range): New function.
412 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
413 (Ffont_xlfd_name): Adjusted for the change of font-related
414 objects.
415 (Fcopy_font_spec, Fmerge_font_spec): New function.
416 (Ffont_family_list): Renamed from list-families.
417 (Finternal_set_font_style_table): Arguments changed.
418 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
419 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
420 change of font-related objects.
421 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new
422 symboles.
423
424 * fontset.h (struct font_info): Delete it. Most memnbers go to
425 struct font.
426 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
427 (enum FONT_SPEC_INDEX): Delete it.
428 (font_info, list_fonts_func, load_font_func, query_font_func)
429 (set_frame_fontset_func, find_ccl_program_func)
430 (get_font_repertory_func, new_fontset_from_font_name): Delete
431 externs.
432 (fontset_from_font_name): Extern it.
433 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
434 (FONT_INFO_FROM_FACE): Deleted.
435 (face_for_font): Adjust prototype.
436
437 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
438 conditionals. Don't check enable_font_backend. Delete all codes
439 used only when USE_FONT_BACKEND is not defined.
440 (get_font_info_func, list_font_func, load_font_func)
441 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
442 (get_font_repertory_func): Delete them.
443 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
444 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
445 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
446 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
447 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
448 (fontset_compare_rfontdef): New function.
449 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
450 ront-defs by qsort. Adjusted for the change of font-group vector.
451 (load_font_get_repertory): Deleted.
452 (fontset_find_font): Use new macros to ref/set elements of
453 font-def and rfont-def.
454 (fontset_font): Fix the timing of remembering that no font for C.
455 (free_face_fontset): Do nothing if the face has no fontset.
456 (face_suitable_for_char_p): Use new macros to ref/set elements of
457 rfont-def.
458 (face_for_char): Likewise. Call face_for_char with font_object.
459 (fs_load_font): Delete. Delete #pragma surrounding it.
460 (fs_query_fontset): Use strcasecmp instead of strcmp.
461 (generate_ascii_font_name): Adjusted for the format change of
462 font-spec.
463 (Fset_fontset_font): Likewise. Use new macros to set elements of
464 font-def.
465 (Fnew_fontset): Use font_unparse_xlfd to generate
466 FONTSET_ASCII (fontset).
467 (new_fontset_from_font_name): Deleted.
468 (fontset_from_font): Renamed from new_fontset_from_font. Check if
469 a fontset is already created for the font. FIx updating of
470 Vfontset_alias_alist.
471 (fontset_ascii_font): Deleted.
472 (Ffont_info): Adjusted for the format change of font-spec.
473 (Finternal_char_font): Likewise.
474 (Ffontset_info): Likewise.
475 (syms_of_fontset): Don't check load_font_func.
476
477 * fns.c (internal_equal): Handle PREV_FONT.
478
479 * frame.h: Delete USE_FONT_BACKEND conditional.
480
481 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
482 conditionals. Don't check enable_font_backend. Delete all codes
483 used only when USE_FONT_BACKEND is not defined.
484 (x_set_font): Call x_new_font, not x_new_fontset2.
485 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
486 already set for the frame.
487
488 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
489 a font-entity by font_make_entity. Use font_intern_prop instead
490 of intern_downcase. Use FONT_SET_STYLE to set a style-related
491 font property. If a font is scalable, set avgwidth property to 0.
492 Set font-entity property by font_put_extra.
493 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
494 (ffont_driver): Adjusted for the change of struct font_driver.
495 (ftfont_spec_pattern): New function.
496 (ftfont_list): Return a list, not vector.
497 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
498 (ftfont_list_family): Don't downcase names.
499 (ftfont_free_entity): Deleted.
500 (ftfont_open): Return a font-ojbect. Adjusted for the change of
501 struct font. Get underline_thickness and underline_position from
502 font property. Don't update dpyinfo->smallest_font_height and
503 dpyinfo->smallest_char_width.
504 (ftfont_close): Don't free `struct font'.
505 (ftfont_has_char): Adjusted for the format change of font-entity.
506 (ftfont_encode_char, ftfont_text_extents): Likewise.
507
508 * ftxfont.c (ftxfont_list): Return a list, not vector.
509 (ftxfont_open): Return a font-ojbect. Adjusted for the change of
510 struct font. Get underline_thickness and underline_position from
511 font property. Don't update dpyinfo->smallest_font_height and
512 dpyinfo->smallest_char_width.
513 (ftxfont_close): Don't decrese FRAME_X_DISPLAY_INFO (f)->n_fonts.
514 (ftxfont_draw): Adjusted for the change of struct font.
515
516 * image.c (image_ascent): Don't include "charset.h". Include
517 "character.h" and "font.h".
518
519 * lisp.h (enum pvec_type): New member PREV_FONT.
520 (Fassoc_string): EXFUN it.
521
522 * print.c: Include font.h.
523 (print_object): Handle font-related objects.
524
525 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
526 conditionals. Don't check enable_font_backend. Delete all codes
527 used only when USE_FONT_BACKEND is not defined.
528 (handle_auto_composed_prop): Do nothing if it->f is not on a
529 window system. Check how many following characters can be
530 displayed by the same font.
531 (calc_pixel_width_or_height): Type of the 4th arg is changed to
532 'struct font *'.
533 (get_char_face_and_encoding): Assign the whole encoding task to
534 the `encode-char' method of a font driver.
535 (fill_composite_glyph_string): Adjusted for the change of `struct
536 face' and `struct glyph_string'.
537 (fill_glyph_string): Likewise.
538 (get_per_char_metric): Arguments changed.
539 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
540 and `struct glyph_string'.
541 (produce_stretch_glyph, calc_line_height_property)
542 (x_produce_glyphs): Likewise.
543
544 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
545 conditionals. Don't check enable_font_backend. Delete all codes
546 used only when USE_FONT_BACKEND is not defined. Use
547 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
548 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
549 (Qp): Extern them.
550 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
551 Deleted.
552 (struct font_name): Deleted.
553 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
554 (compare_fonts_by_sort_order): New function.
555 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
556 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
557 Deleted.
558 (Fx_family_fonts): Use font_list_entities, and sort fonts by
559 compare_fonts_by_sort_order.
560 (Fx_font_family_list): Call Ffont_family_list.
561 (face_numeric_value, face_numeric_weight, face_numeric_slant)
562 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
563 (face_symbolic_slant, face_symbolic_swidth)
564 (split_font_name_into_vector, build_font_name_from_vector)
565 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
566 (font_rescale_ratio, split_font_name, build_font_name)
567 (free_font_names, sort_fonts, x_face_list_fonts)
568 (face_font_available_p, sorted_font_list, cmp_font_names)
569 (font_list_1, concat_font_list, font_list, remove_duplicates):
570 Deleted.
571 (Fx_list_fonts): Use Ffont_list.
572 (LFACE_AVGWIDTH): Deleted.
573 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
574 by FONTP.
575 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
576 (set_lface_from_font_name): Delete it.
577 (set_lface_from_font): Renamed from
578 set_lface_from_font_and_fontset. Caller changed. Don't set
579 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
580 for face.
581 (merge_face_vectors): Copy font-spec if necessary. Clear
582 properties of the font-spec if necessary.
583 (merge_face_ref): Clear properties of the font-spec if necessary.
584 (Finternal_set_lisp_face_attribute): Likewise.
585 (set_font_frame_param): Use font_load_for_lface to load a
586 font-object, and call Fmodify_frame_parameters with it.
587 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
588 font name by Ffont_xlfd_name.
589 (Finternal_lisp_face_attribute_values): Don't check QCweight,
590 QCslant, and QCwidth.
591 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
592 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
593 Compare fonts by EQ.
594 (lookup_non_ascii_face): Deleted.
595 (face_for_font): The 2nd argument changed.
596 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH. Check
597 atomic font properties by case insensitive.
598 (realize_non_ascii_face): Set face->overstrike correctly.
599 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
600 (dump_realized_face): Get font name from
601 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
602
603 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
604 conditionals. Don't check enable_font_backend. Delete all codes
605 used only when USE_FONT_BACKEND is not defined.
606 (xic_create_xfontset): Original code deleted and renamed from
607 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
608 (x_make_gc): Don't set GCFont in GCs.
609 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
610 opened by "fixed".
611 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
612 find_ccl_program_func, query_font_func, set_frame_fontset_func,
613 get_font_repertory_func.
614
615 * xfont.c: Include <stdlib.h> and "ccl.h".
616 (struct xfont_info): New structure.
617 (xfont_query_font): Deleted.
618 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
619 moved from xterm.c.
620 (xfont_driver): Adjusted for the change of struct font_driver.
621 (compare_font_names): New function.
622 (xfont_list_pattern): Sort font names case insensitively. Make
623 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
624 (xfont_list): Return a list, not vector.
625 (xfont_match): If the font doesn't have QCname property, generate
626 a name from the other font properties.
627 (xfont_open): Return a font-ojbect. Adjusted for the change of
628 struct font. Get underline_thickness and underline_position from
629 font property. Don't update dpyinfo->smallest_font_height and
630 dpyinfo->smallest_char_width.
631 (xfont_close): Don't free struct font.
632 (xfont_prepare_face): Adjusted for the change of struct font.
633 (xfont_done_face): Deleted.
634 (xfont_has_char): Adjusted for the change of struct font.
635 (xfont_encode_char, xfont_draw): Likewise.
636 (xfont_check): New function.
637
638 * xftfont.c (xftfont_list): Adjusted for the change of `list'
639 callback function.
640 (xftfont_match): Adjusted for the fontmat change of font-entity.
641 (xftfont_open): Adjusted for the format change of font-entity and
642 font-object. Adjusted for the change of struct font. Return a
643 font-object. Don't update dpyinfo->smallest_font_height and
644 dpyinfo->smallest_char_width.
645 (xftfont_close): Block input while calling XftFontClose.
646 (xftfont_prepare_face): Don't block input while calling
647 xftfont_get_colors. Adjusted for the change of struct font.
648 (xftfont_shape): Return value of error case fixed.
649
650 * xrdb.c (x_load_resources): Don't setup a fontset resource.
651
652 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
653 conditionals.
654 (FONT_WIDTH): Return (f)->max_width.
655 (struct x_display_info): Delete member `font'.
656 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
657 (x_find_ccl_program, x_get_font_repertory): Delete externs.
658 (struct x_output): Change type of `font' to `struct font *'.
659
660 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
661 conditionals. Don't check enable_font_backend. Delete all codes
662 used only when USE_FONT_BACKEND is not defined. Don't include
663 ccl.h.
664 (x_per_char_metric, x_encode_char): Deleted.
665 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
666 (x_compute_glyph_string_overhangs): Adjusted for the change of
667 `struct face'
668 (x_draw_glyph_string_foreground)
669 (x_draw_composite_glyph_string_foreground): Likewise.
670 (x_draw_glyph_string): Likewise. Use font->underline_position and
671 font->underline_thickness.
672 (x_new_font): Renamed from x_new_fontset2.
673 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
674 (x_check_font): Call `check' method of a font driver.
675 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
676 (x_query_font, x_get_font_repertory): Deleted.
677 (x_find_ccl_program): Renamed and moved to xfont.c.
678 (x_redisplay_interface): Adjusted for the change of `struct
679 redisplay_interface'.
680
681 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
682 conditionals. Don't check enable_font_backend. Delete all codes
683 used only when USE_FONT_BACKEND is not defined. Surround non-used
684 code by "#ifdef OLD_FONT" and "endif".
685 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
686
687 * w32font.h (struct w32font_info): New member.
688 (FONT_COMPAT): New macro.
689 (w32font_open_internal): Prototype adjusted.
690
691 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
692 OLD_FONT" and "endif".
693
694 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
695 conditionals. Don't check enable_font_backend. Delete all codes
696 used only when USE_FONT_BACKEND is not defined.
697 (w32font_open): Return a font-object. Make a font-object by
698 font_make_object. Adjusted for the change of struct w32font_info.
699 (w32font_close): Don't free struct font. Adjusted for the change
700 of struct w32font_info.
701 (w32font_encode_char, w32font_text_extents, w32font_draw):
702 Adjusted for the change of struct w32font_info.
703 (w32font_draw): Likewise.
704 (w32font_list_internal): Return a list, not vector.
705 (w32font_open_internal): Change the 4th arg to font-object.
706 Adjusted for the change of struct w32font_info and font-object
707 format.
708 (add_font_name_to_list): Don't downcase names.
709 (w32_enumfont_pattern_entity): Make a font-entity by
710 font_make_entity. Adjusted for the format change of font-entity.
711 Use FONT_SET_STYLE to set a style-related font property. If a
712 font is scalable, set avgwidth property to 0. Set font-entity
713 property by font_put_extra.
714 (font_matches_spec): Adjusted for the format change of
715 font-entity.
716 (w32_weight_table, w32_decode_weight): New variables.
717 (w32_encode_weight): New function.
718 (fill_in_logfont): Adjusted for the format change of font-spec.
719 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
720 weight value.
721 (w32font_driver): Adjusted for the change of struct font_driver.
722
723 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
724 conditionals. Don't check enable_font_backend. Surround non-used
725 code by "#ifdef OLD_FONT" and "endif".
726 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
727 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
728
729 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
730 conditionals. Don't check enable_font_backend. Delete all codes
731 used only when USE_FONT_BACKEND is not defined. Surround non-used
732 code by "#ifdef OLD_FONT" and "endif".
733
734 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
735 (uniscribe_open): Return value changed to font-object. Adjusted
736 for the format change of font-object.
737 (uniscribe_otf_capability): Adjusted for the change of struct
738 font.
739 (add_opentype_font_name_to_list): Don't downcase names.
740 (uniscribe_font_driver): Adjusted for the change of struct
741 font_driver.
742
743 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
744
745 * dispnew.c (update_frame_1): Check if tty output is still valid
746 before flushing it.
747
748 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
749
750 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
751 to Gtk+ menus.
752
753 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
754
755 * dired.c (file_name_completion): Tweak the code so as to always do it
756 in a single pass. Tighten the scope of some variables.
757
758 * dired.c (Qdefault_directory): New var.
759 (file_name_completion): Use it instead of Fexpand_file_name.
760 (syms_of_dired): Initialize it.
761
762 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
763
764 * fileio.c (double_dollars): Remove dead code.
765
766 2008-05-10 Eli Zaretskii <eliz@gnu.org>
767
768 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
769 Mention w32-get-true-file-attributes in doc string.
770
771 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
772
773 2008-05-09 Glenn Morris <rgm@gnu.org>
774
775 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
776 2008-04-23.
777
778 2008-05-09 Eli Zaretskii <eliz@gnu.org>
779
780 Support for reporting owner and group of each file on MS-Windows:
781 * dired.c (stat_uname, stat_gname): New functions, with special
782 implementation for w32.
783 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
784
785 * w32.c: Rename the_passwd_* to dflt_passwd_*.
786 (dflt_group_name): New static variable.
787 (dflt_group): Rename from the_group.
788 (init_user_info): Init dflt_group fields. Get user's group name
789 from LookupAccountSid.
790 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
791 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
792 New initialization states.
793 (globals_of_w32): Initialize them to zero. Initialize the default
794 group name to "None".
795 (GetFileSecurity_Name): New global var, the name of the function
796 to call for GetFileSecurity.
797 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
798 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
799 (get_file_security, get_security_descriptor_owner)
800 (get_security_descriptor_group, is_valid_sid)
801 (get_file_security_desc, get_rid, get_name_and_id)
802 (get_file_owner_and_group): New functions.
803 (stat): Use get_file_security_desc and get_file_owner_and_group to
804 report the owner and primary group of each file. Don't ignore the
805 high 32 bits of file's size, now that st_size is 64-bit wide.
806 Fix test when to get true file attributes.
807 (init_user_info): Use get_rid instead of equivalent inline code.
808 (fstat): Don't ignore the high 32 bits of file's size.
809
810 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
811
812 * image.c (png_load): Use correct bit-depth for setting background
813 color.
814
815 2008-05-08 Eli Zaretskii <eliz@gnu.org>
816
817 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
818 epa-hook.elc.
819
820 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
821
822 * font.c (Ffont_match_p): Don't use `iff' in docstring.
823
824 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
825
826 * macfns.c (Fx_create_frame): Make a copy of frame parameters
827 because the original parameters are in pure storage now.
828 (mac_window): Remove unused params. Update callers.
829
830 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
831
832 * lread.c (substitute_object_recurse): Use lower-level primitives.
833 Don't signal errors when traversing sub-char-tables.
834 Don't loop over all the possible characters when traversing char-tables.
835
836 * print.c (print_preprocess): Add sub-char-tables to the print-table,
837 just like we do in print.c.
838
839 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
840
841 * minibuf.c (Ftry_completion): Remove code left over from when we used
842 scmp instead of Fcompare_strings.
843
844 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
845
846 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
847
848 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
849
850 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
851 Create bitmap context in native byte order.
852
853 * macterm.c (XDrawLine)
854 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
855 context in native byte order.
856
857 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
858
859 * config.in: Regenerate.
860
861 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
862 New definitions for Image I/O support.
863 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
864 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
865 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
866 (mac_data_provider_release_data, image_load_image_io)
867 [USE_MAC_IMAGE_IO]: New functions.
868 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
869 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
870 (init_image_func_pointer) [MAC_OSX]: Remove function.
871 (image_load_quartz2d) [MAC_OSX]: Check availability of
872 CGImageCreateWithPNGDataProvider at compile time.
873 Use lowercase `false' for boolean constant.
874 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
875 Use image_load_image_io.
876 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
877 Don't check MyCGImageCreateWithPNGDataProvider.
878 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
879 Don't call init_image_func_pointer.
880
881 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
882
883 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
884 Make variable non-static.
885 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
886 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
887
888 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
889 (RED_FROM_ULONG): Mask off higher bits.
890 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
891
892 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
893 Include AvailabilityMacros.h.
894 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
895 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
896
897 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
898
899 * chartab.c (Fset_char_table_range): If range is t, really set all
900 chars to that value.
901
902 2008-05-03 Eli Zaretskii <eliz@gnu.org>
903
904 * dired.c (Ffile_attributes): Don't allow the device number become
905 negative.
906
907 2008-05-02 Daiki Ueno <ueno@unixuser.org>
908
909 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
910
911 2008-05-02 Juri Linkov <juri@jurta.org>
912
913 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
914 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
915 DEFAULT argument as a list of default values in docstrings.
916
917 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
918
919 * puresize.h (BASE_PURESIZE): Increase to 1210000.
920
921 2008-05-01 Martin Rudalics <rudalics@gmx.at>
922
923 * dispnew.c (change_frame_size_1): Preserve small windows when
924 shrinking frames by calling set_window_height|width with third
925 arg 2.
926
927 * window.h (struct window): Replace field too_small_ok by field
928 resize_proportionally.
929
930 * window.c (make_window): Initialize resize_proportionally.
931 (enlarge_window): Temporarily set resize_proportionally to make
932 sure that shrink_windows does scale the window proportionally.
933 (shrink_windows): When window has resize_proportionally set try
934 to shrink it proportionally by stealing from other windows.
935 (struct saved_window, Fset_window_configuration)
936 (compare_window_configurations): Handle resize_proportionally.
937 (WINDOW_TOTAL_SIZE): New macro.
938 (window_min_size, shrink_windows, size_window): Use it.
939 (check_min_window_sizes): Remove. Invalid values of
940 window-min-height|width are handled by window_min_size_2 now.
941 (size_window, Fsplit_window, enlarge_window)
942 (adjust_window_trailing_edge, grow_mini_window): Don't call
943 check_min_window_sizes.
944 (window_min_size_2, window_min_size_1, window_min_size):
945 New argument safe_p for retrieving "safe" minimum sizes.
946 (Fdisplay_buffer, Fsplit_window, enlarge_window):
947 (adjust_window_trailing_edge, grow_mini_window):
948 Adjust arguments of window_min_size... functions.
949 (shrink_windows): Argument min_size removed. New argument
950 safe_p allows shrinking windows to their safe minimum sizes.
951 Calculate minimum size and decide whether a window shall be
952 deleted for each window individually.
953 (size_window): When nodelete_p equals 2, tell shrink_windows to
954 delete windows only if their new minimum size is no more safe.
955 (shrink_window_lowest_first): Call window_min_size_1 to make
956 sure to preserve modeline of bottom-most window when resizing
957 the minibuffer.
958 (Fset_window_configuration, Fcurrent_window_configuration)
959 (compare_window_configurations): Do not handle
960 window-min-height|width any more.
961 (syms_of_window): Clarify window-min-height|width doc-strings.
962
963 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
964
965 * dired.c (file_name_completion): Fix up the encoding/decoding issue
966 some more. Copy some of the code from Ftry_completions.
967 Remove special case code that dates back to initial revision when the
968 slash was only added when necessary and that can't trigger nowadays.
969
970 2008-04-27 Kenichi Handa <handa@m17n.org>
971
972 * font.c (font_prop_validate): Signal `error' instead of `font'.
973
974 2008-04-29 Jason Rumney <jasonr@gnu.org>
975
976 * w32fns.c (Fw32_battery_status): New defun.
977 (syms_of_w32fns): Defsubr it.
978
979 2008-04-28 Andreas Schwab <schwab@suse.de>
980
981 * dired.c (file_name_completion): Fix another mixing of encoded
982 and decoded names.
983
984 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
985
986 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
987
988 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
989
990 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
991
992 2008-04-27 Andreas Schwab <schwab@suse.de>
993
994 * dired.c (file_name_completion): Fix inappropriate mixing of
995 encoded and decoded names.
996
997 * xterm.c (XTread_socket): Fix use of uninitialized variable.
998
999 * puresize.h (BASE_PURESIZE): Increase to 1200000.
1000
1001 2008-04-26 Eli Zaretskii <eliz@gnu.org>
1002
1003 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
1004 2008-03-31, it's not needed anymore with `struct stat' definition
1005 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
1006 for the same reasons.
1007
1008 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
1009
1010 * m/sparc.h: Additional redefinitions for GNU/Linux.
1011
1012 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1013
1014 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
1015 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
1016 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
1017 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
1018 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
1019 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
1020 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
1021 Likewise.
1022
1023 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
1024 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range):
1025 (mac_ax_number_of_characters): Add externs.
1026 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
1027 [USE_MAC_TSM]: Likewise.
1028 (mac_handle_text_input_event) [MAC_OSX]:
1029 Handle kEventTextInputOffsetToPos for no active input area case.
1030 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
1031 (mac_handle_document_access_event)
1032 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
1033 (install_application_handler) [MAC_OSX]: Register handlers for
1034 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
1035 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
1036 Register mac_handle_document_access_event.
1037
1038 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
1039 Make functions non-static.
1040
1041 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
1042
1043 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
1044 (read_file_name_completion_ignore_case, insert_default_directory)
1045 (Qdefault_directory): Move to minibuffer.el.
1046 (Fread_file_name): Call the new `read-file-name' instead.
1047
1048 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1049
1050 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
1051 Make function non-static.
1052 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
1053 Remove function.
1054 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
1055 Move to mactoolbox.c.
1056 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
1057
1058 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
1059 (mac_rect_make): New macro.
1060
1061 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
1062 instead of float.
1063 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
1064 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
1065 (XSetBackground) [USE_CG_DRAWING]: Likewise.
1066 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
1067 CGRectMake.
1068 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
1069 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
1070 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
1071 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
1072 instead of WindowRef in argument type.
1073 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
1074 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
1075 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
1076 instead of DISPLAY. All uses changed.
1077 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
1078 (x_calc_absolute_position): Simplify so as not to use
1079 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
1080
1081 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
1082 instead of WindowRef in argument type.
1083 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
1084 [TARGET_API_MAC_CARBON]: Remove externs.
1085 (create_apple_event, mac_event_parameters_to_lisp)
1086 [TARGET_API_MAC_CARBON]: Add externs.
1087
1088 * mactoolbox.c (Vmac_ts_script_language_on_focus)
1089 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
1090 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
1091 is clicked.
1092 (x_activate_menubar): Remove extern for saved_menu_event_location.
1093 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
1094 Move from mac.c.
1095
1096 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1097
1098 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
1099 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
1100
1101 2008-04-23 Jason Rumney <jasonr@gnu.org>
1102
1103 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
1104 attributes only for local files.
1105
1106 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
1107 default to Qlocal.
1108
1109 2008-04-22 Juri Linkov <juri@jurta.org>
1110
1111 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
1112 read-buffer-to-switch instead of using the letter "B".
1113
1114 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
1115
1116 * fileio.c (Qdefault_directory): New variable.
1117 (Fread_file_name): Use it to pass `dir' to the completion functions.
1118
1119 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
1120
1121 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
1122
1123 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
1124
1125 * keyboard.c (Vpre_help_message): Remove.
1126 (show_help_echo): Remove default C code.
1127
1128 * dired.c (directory_files_internal, file_name_completion):
1129 Only call ENCODE_FILE if the string is indeed decoded.
1130
1131 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1132
1133 * Makefile.in (TOOLKIT_DEFINES): Remove.
1134 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
1135
1136 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1137
1138 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
1139 (mactoolbox.o): New target.
1140
1141 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
1142 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
1143
1144 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
1145 Use mac_set_frame_window_background instead of XSetWindowBackground.
1146 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
1147 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
1148 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
1149 instead of SetWindowTitleWithCFString.
1150 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
1151 Move function to mactoolbox.c.
1152 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
1153 Use mac_set_window_modified instead of SetWindowModified.
1154 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
1155 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
1156 (Fx_focus_frame): Use mac_front_non_floating_window instead of
1157 FrontNonFloatingWindow. Use mac_activate_window instead of
1158 ActivateWindow. Use mac_active_non_floating_window instead of
1159 ActiveNonFloatingWindow.
1160 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
1161 Use mac_show_hourglass and mac_hide_hourglass.
1162 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
1163 instead of GetGlobalMouse.
1164 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
1165 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
1166 Use mac_bring_window_to_front instead of BringToFront.
1167 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
1168 mactoolbox.c.
1169 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
1170 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
1171 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
1172 mactoolbox.c.
1173
1174 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
1175 (XtPointer): Move typedef from macmenu.c.
1176 (enum button_type): Move enum from macmenu.c.
1177 (widget_value): Move typedef from macmenu.c.
1178 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
1179 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
1180 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
1181 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
1182 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
1183 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
1184 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
1185 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
1186 (Selection): Move typedef from macselect.c.
1187 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
1188 macterm.c.
1189 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
1190 (mac_is_window_collapsed, mac_bring_window_to_front)
1191 (mac_send_window_behind, mac_hide_window, mac_show_window)
1192 (mac_collapse_window, mac_front_non_floating_window)
1193 (mac_active_non_floating_window, mac_activate_window)
1194 (mac_move_window_structure, mac_move_window, mac_size_window)
1195 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
1196
1197 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
1198 (enum mac_menu_kind): Move enum to mactoolbox.c.
1199 (min_menu_id): Move variable to mactoolbox.c.
1200 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
1201 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
1202 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
1203 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
1204 [TARGET_API_MAC_CARBON]: Likewise.
1205 (XtPointer): Move typedef to macgui.h.
1206 (enum button_type): Move enum to macgui.h.
1207 (widget_value): Move typedef to macgui.h.
1208 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
1209 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
1210 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
1211 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
1212 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
1213 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
1214 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
1215 (popup_activated_flag): Make variable non-static.
1216 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
1217 (add_menu_item, fill_menu, dispose_menus):
1218 Move functions to mactoolbox.c.
1219 (restore_show_help_function, menu_target_item_handler)
1220 (install_menu_target_item_handler, mac_handle_dialog_event)
1221 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
1222 [TARGET_API_MAC_CARBON]: Likewise.
1223 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
1224 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
1225 (find_and_call_menu_selection, name_is_separator): Make function
1226 non-static.
1227 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
1228 to mactoolbox.c.
1229 (set_frame_menubar): Don't call install_menu_quit_handler.
1230 (menu_item_selection): New variable.
1231 (mac_menu_show): Use create_and_show_popup_menu.
1232 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
1233 selection but set variable menu_item_selection. All uses changed.
1234 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
1235 Call install_menu_quit_handler. Move to mactoolbox.c.
1236
1237 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
1238 (Selection): Move typedef to macgui.h.
1239 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
1240 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
1241 Make variables non-static.
1242 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
1243 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
1244 Make functions non-static.
1245 (Vmac_service_selection) [MAC_OSX]: Likewise.
1246 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
1247 (mac_valid_selection_target_p, mac_clear_selection)
1248 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
1249 (mac_put_selection_value, mac_selection_has_target_p)
1250 (mac_get_selection_value, mac_get_selection_target_list)
1251 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
1252 Move functions to mactoolbox.c.
1253 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
1254 Likewise.
1255 (copy_scrap_flavor_data, mac_handle_service_event)
1256 (install_service_handler) [MAC_OSX]: Likewise.
1257 (syms_of_macselect) <Vmac_dnd_known_types>:
1258 Use mac_dnd_default_known_types.
1259
1260 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
1261 Move to mactoolbox.c.
1262 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
1263 (Fx_selection_owner_p): Add EXFUN.
1264 (install_window_handler, remove_window_handler, XSetWindowBackground):
1265 Remove externs.
1266 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
1267 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
1268 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
1269 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
1270 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
1271 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
1272 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
1273 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
1274 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
1275 (create_and_show_popup_menu, mac_get_selection_from_symbol)
1276 (mac_valid_selection_target_p, mac_clear_selection)
1277 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
1278 (mac_put_selection_value, mac_selection_has_target_p)
1279 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
1280 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
1281 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
1282 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
1283 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
1284 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
1285 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
1286 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
1287 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
1288
1289 * mactoolbox.c: New file.
1290
1291 2008-04-18 Jason Rumney <jasonr@gnu.org>
1292
1293 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
1294
1295 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
1296
1297 * character.c (Fmultibyte_char_to_unibyte):
1298 Return latin1 chars unchanged.
1299
1300 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
1301 relocated if it points to `name'.
1302
1303 2008-04-17 Kenichi Handa <handa@m17n.org>
1304
1305 * data.c (Faset): Allow setting a multibyte character in an
1306 ASCII-only unibyte string.
1307
1308 * lisp.h (STRING_SET_MULTIBYTE): New macro.
1309
1310 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
1311
1312 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
1313 done in config.h.
1314
1315 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
1316
1317 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
1318 (Fchar_direction): Add usage in the docstring.
1319
1320 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
1321
1322 * keyboard.c (read_key_sequence): Remove always-true checks.
1323
1324 2008-04-14 Jason Rumney <jasonr@gnu.org>
1325
1326 * w32font.c (w32font_open_internal): Set max_bounds.descent in
1327 compatibility struct, for better underline positioning.
1328
1329 2008-04-13 David Hansen <david.hansen@gmx.net>
1330
1331 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
1332 string.
1333
1334 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
1335
1336 * m/hp800.h (XUINT, XSET): Remove.
1337
1338 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
1339
1340 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
1341 previous change.
1342
1343 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
1344
1345 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
1346 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
1347
1348 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1349
1350 * keymap.h (map_keymap_canonical): Declare.
1351 * xmenu.c (single_keymap_panes): Use it.
1352
1353 2008-04-11 Glenn Morris <rgm@gnu.org>
1354
1355 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
1356 set the target's value to that of the alias.
1357
1358 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
1359
1360 * term.c (set_tty_color_mode): Left over typo.
1361
1362 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
1363
1364 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
1365 only after check for file name handler functions. Signal, when
1366 native functionality is not supported.
1367 (syms_of_fileio): Declare it unconditionally.
1368
1369 2008-04-10 Jason Rumney <jasonr@gnu.org>
1370
1371 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
1372 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
1373
1374 * w32.c (logon_network_drive): Also logon to remote drives that
1375 are mapped to drive letters.
1376
1377 2008-04-10 Glenn Morris <rgm@gnu.org>
1378
1379 * xdisp.c (truncate-partial-width-windows): Doc fix.
1380
1381 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
1382
1383 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
1384 Move functions to minibuffer.el.
1385 (syms_of_fileio): Don't declare them.
1386
1387 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1388
1389 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
1390 (syms_of_minibuf): Remove its initialization.
1391
1392 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
1393
1394 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
1395
1396 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
1397
1398 2008-04-09 Jason Rumney <jasonr@gnu.org>
1399
1400 * makefile.w32-in (distclean): Delete makefile too.
1401 (maintainer-clean): New target.
1402
1403 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
1404
1405 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
1406 for new font backend and composite cases.
1407
1408 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
1409
1410 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
1411 Most of the code moved to run_timers.
1412 (do_pending_atimers): Call run_timers.
1413 (run_timers): New function.
1414
1415 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
1416 run atimers.
1417
1418 * process.c (wait_reading_process_output): The same as above.
1419
1420 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
1421
1422 * minibuf.c (last_exact_completion): Remove variable.
1423 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
1424 (complete_and_exit_1, complete_and_exit_2)
1425 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
1426 (Fdisplay_completion_list, display_completion_list_1)
1427 (Fminibuffer_completion_help, Fself_insert_and_exit)
1428 (Fexit_minibuffer, Fminibuffer_message): Move functions to
1429 minibuffer.el.
1430 (syms_of_minibuf): Remove corresponding initializations.
1431
1432 * keyboard.c (Qdeactivate_mark): New var.
1433 (command_loop_1): Use it to call `deactivate-mark'.
1434 (syms_of_keyboard): Initialize it.
1435
1436 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
1437 to another frame.
1438 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
1439 Don't call set_tty_color_mode.
1440 (store_frame_param): Reset previous_frame rather than call
1441 set_tty_color_mode.
1442 * term.c (set_tty_color_mode): Rewrite.
1443 * dispextern.h (set_tty_color_mode): New type.
1444 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
1445
1446 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
1447
1448 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
1449 for generic chars, which do not exist any more in emacs-unicode.
1450
1451 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
1452
1453 * coding.c (detect_coding_emacs_mule)
1454 (Ffind_operation_coding_system): Fix typo.
1455
1456 2008-04-08 Jason Rumney <jasonr@gnu.org>
1457
1458 * w32uniscribe.c (SNAME): Extract only symbol name.
1459
1460 * w32font.h (struct w32_metric_cache): New struct.
1461 (w32font_info): Use it.
1462 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
1463 (CACHE_BLOCKSIZE): New constants.
1464
1465 * w32font.c (Qja, Qko, Qzh): New symbols.
1466 (syms_of_w32font): Initialise them.
1467 (font_matches_spec): Use them to filter by language.
1468 (recompute_cached_metrics): Remove function.
1469 (compute_metrics, clear_cached_metrics): New functions.
1470 (w32font_encode_char): Use them to manage metric cache.
1471 (w32font_text_extents): Cache metrics for all glyphs on demand.
1472 Delay converting glyph indices to WORD until needed.
1473 (w32font_open_internal): Initialize metric cache to empty.
1474 (registry_to_w32_charset): Charset should always be a symbol.
1475 (fill_in_logfont, list_all_matching_fonts): Family should
1476 always be a symbol.
1477
1478 2008-04-06 Jason Rumney <jasonr@gnu.org>
1479
1480 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
1481 Give up if glyph indices not supported. Use uniscribe obtained
1482 ABC widths for individual metrics. Map glyph clusters back to
1483 characters using fClusterStart flag. Return number of glyphs
1484 produced, not chars processed.
1485 (uniscribe_shape): Map char at FROM to current glyph.
1486
1487 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1488
1489 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
1490 Use SetMenuItemHierarchicalMenu.
1491
1492 2008-04-05 Jason Rumney <jasonr@gnu.org>
1493
1494 * image.c (pbm_load): Allow color values up to 65535.
1495 Throw an error if max_color_idx is outside the supported range.
1496 Report an error when image size is invalid.
1497 Read two bytes at a time when raw images have max_color_idx above 255.
1498
1499 2008-04-05 Eli Zaretskii <eliz@gnu.org>
1500
1501 * w32.c (readdir): If FindFirstFile/FindNextFile return in
1502 cFileName a file name that includes `?' characters, use the 8+3
1503 alias in cAlternateFileName instead.
1504
1505 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
1506
1507 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
1508 append "CCL: Quitted" when the CCL program is quitted.
1509 (setup_ccl_program): Initialize ccl->quit_silently to zero.
1510
1511 * ccl.h (struct ccl_program): New member quit_silently.
1512
1513 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
1514
1515 * search.c (compile_pattern_1): Treat non-nil and non-string of
1516 search-spaces-regexp as nil.
1517
1518 * minibuf.c (Fassoc_string): Tweak docstring.
1519
1520 2008-04-05 Eli Zaretskii <eliz@gnu.org>
1521
1522 * dired.c (Ffile_attributes): Support inode numbers wider than 32
1523 bits. Remove ugly WINDOWSNT-specific kludge introduced on
1524 2008-03-14 to force inode be positive.
1525
1526 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
1527 _S_* ones, since we now use our own sys/stat.h.
1528 (stat, fstat): Don't mangle the inode number.
1529 (init_user_info): Don't restrict UID and GID to 0-60000 range.
1530
1531 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
1532
1533 * frame.h (struct frame): Give one more bit to `visible' since we use
1534 values larger than 1 to indicate obscured frames on ttys.
1535
1536 * keymap.c (Qkeymap_canonicalize): New var.
1537 (Fmap_keymap_internal): New fun.
1538 (describe_map): Use keymap-canonicalize.
1539
1540 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
1541 (Fundo_boundary): Set them.
1542 (syms_of_undo): Initialize them.
1543 (record_point): Use them instead of last_point_position*.
1544 (last_undo_buffer): Change type.
1545
1546 2008-04-04 Jason Rumney <jasonr@gnu.org>
1547
1548 * w32font.c (w32font_text_extents): Use font's ascent and descent.
1549 (recompute_cached_metrics): Don't set ascent and descent per char.
1550
1551 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
1552 (uniscribe_check_otf): Add GC protection before consing.
1553 Rearrange loop for counting features.
1554
1555 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
1556
1557 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
1558 buffer with byte-size of source buffer.
1559
1560 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
1561
1562 * callint.c (Fcall_interactively): Handle temporary region even
1563 when shift-select-mode is off.
1564
1565 2008-04-03 Jason Rumney <jasonr@gnu.org>
1566
1567 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
1568
1569 2008-04-03 Kenichi Handa <handa@m17n.org>
1570
1571 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
1572 (CATEGORY_MASK_UTF_16): Likewise.
1573 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
1574 binary file.
1575 (detect_coding): Add null-byte detection for a binary file.
1576 (detect_coding_system): Likewise.
1577
1578 2008-04-03 Jason Rumney <jasonr@gnu.org>
1579
1580 * w32uniscribe.c: New file.
1581
1582 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
1583
1584 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
1585
1586 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
1587 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
1588 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
1589 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
1590 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
1591 (Qphonetic): New symbols.
1592 (syms_of_w32font): Initialize them.
1593 (font_supported_scripts): Use them.
1594 (w32font_list_family): List all charsets.
1595 (w32font_text_extents, recompute_cached_metrics): Fix metric
1596 calculations.
1597 (w32_enumfont_pattern_entity): Make full_type a DWORD.
1598 Give opentype fonts their own format.
1599 (font_matches_spec): New arguments backend and logfont.
1600 Handle :otf spec for uniscribe backend.
1601 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
1602 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
1603
1604 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
1605 font backend.
1606 (globals_of_w32fns): Initialize uniscribe font backend.
1607
1608 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
1609 dependencies.
1610 (w32uniscribe.$(O)): New file to build.
1611 (FONT_OBJ): Include w32uniscribe.$(O).
1612 (LIBS): Add uniscribe libraries.
1613
1614 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
1615
1616 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
1617
1618 * callint.c (Vshift_select_mode): New var.
1619 (Finteractive): Document new ^ spec.
1620 (Fcall_interactively): Call handle-shift-selection if the ^ spec
1621 is present.
1622
1623 * keyboard.c (Vthis_command_keys_shift_translated): New var.
1624 (command_loop_1): Avoid running the direct display versions of
1625 forward-char and backward-char if shift-selection may occur.
1626 (read_key_sequence): Set Vthis_command_keys_shift_translated if
1627 shift-translation takes place.
1628
1629 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
1630 avoid clobbering by define-minor-mode.
1631
1632 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
1633 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
1634
1635 * syntax.c (Fforward_word): Add ^ interactive spec.
1636
1637 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
1638 (Fscroll_right): Add ^ interactive spec.
1639
1640 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
1641
1642 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
1643
1644 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
1645
1646 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
1647
1648 2008-03-31 Juri Linkov <juri@jurta.org>
1649
1650 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
1651
1652 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
1653
1654 * gtkutil.c (xg_set_geometry): Fix indentation.
1655 (xg_resize_outer_widget): Remove.
1656 (x_wm_size_hint_off): Fix indentation.
1657 (xg_frame_set_char_size): Call flush_and_sync after
1658 gtk_window_resize.
1659 (x_wm_set_size_hint): Pass NULL as geometry window to
1660 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
1661 Add menu bar and tool bar height to base height.
1662 (xg_update_frame_menubar, free_frame_menubar)
1663 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
1664 (update_frame_tool_bar, free_frame_tool_bar):
1665 Change xg_resize_outer_widget to xg_frame_set_char_size.
1666
1667 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
1668
1669 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
1670 (Fdbus_call_method): New parameter TIMEOUT.
1671 (dbus-send-signal): Optimize UNGCPRO call.
1672
1673 2008-03-29 Juri Linkov <juri@jurta.org>
1674
1675 * window.c (Fdisplay_buffer): Move call to
1676 Vsplit_window_preferred_function out of conditions that check
1677 if window is eligible for vertical splitting.
1678 When Vsplit_window_preferred_function is non-nil, call it and use
1679 its non-nil return value as window. Otherwise, continue doing
1680 vertical splitting using Fsplit_window with arg horflag=nil.
1681 (syms_of_window) <Vsplit_window_preferred_function>: Change the
1682 default value from `split-window' to nil.
1683
1684 2008-03-29 Juri Linkov <juri@jurta.org>
1685
1686 * callint.c (Fcall_interactively): Revert 2008-03-16 change
1687 for interactive code letters 'b' and 'B'.
1688
1689 2008-03-29 Eli Zaretskii <eliz@gnu.org>
1690
1691 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
1692 multibyte string.
1693
1694 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
1695
1696 * keyboard.c (pending_funcalls): New var.
1697 (timer_check): Run it.
1698 (syms_of_keyboard): Initialize it.
1699 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
1700 (Vdelete_terminal_functions): New vars.
1701 (syms_of_terminal): Initialize them.
1702 (Fdelete_terminal): Run delete-terminal-functions.
1703 * xdisp.c (safe_eval): Rewrite.
1704 (safe_call2): New fun.
1705 * frame.c (Qdelete_frame_functions): New var.
1706 (syms_of_frame): Initialize it.
1707 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
1708 * lisp.h (safe_call2, pending_funcalls): Declare.
1709
1710 2008-03-28 Andreas Schwab <schwab@suse.de>
1711
1712 * indent.c (Fmove_to_column): Move declaration before statements.
1713
1714 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
1715
1716 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
1717 (struct frame): Use bit fields for boolean vars.
1718
1719 * process.c (server_accept_connection): Simplify naming.
1720 (emacs_get_tty_pgrp): Use SDATA.
1721
1722 * coding.c (decode_coding_object): Fix last change.
1723
1724 2008-03-27 Jason Rumney <jasonr@gnu.org>
1725
1726 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
1727
1728 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
1729
1730 * charset.c (Fdefine_charset_internal): Change the way of
1731 registering charsets in Vcharset_order_list.
1732 (syms_of_charset): Make the charset `eight-bit' supplementary.
1733
1734 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
1735
1736 * regex.c (EXTEND_BUFFER): Change order of pointer addition
1737 operations, to avoid having the difference between pointers
1738 overflow.
1739
1740 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
1741
1742 * indent.c (check_display_width): New fun.
1743 (scan_for_column): Use it.
1744
1745 * data.c (syms_of_data): Mark most-positive-fixnum and
1746 most-negative-fixnum as constants.
1747
1748 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
1749
1750 * indent.c (scan_for_column): Extract from current_column_1.
1751 Merge with the same code from Fmove_to_column.
1752 (current_column_1, Fmove_to_column): Use it.
1753
1754 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
1755
1756 * keymap.c (map_keymap_internal): New fun.
1757 (map_keymap): Use it.
1758 (Fmap_keymap_internal): New fun.
1759 (Fmap_keymap): Remove left-out test from before make_save_value.
1760
1761 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
1762
1763 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
1764 Use XCAR/XCDR.
1765
1766 * process.h (struct Lisp_Process): Remove filter_multibyte.
1767 * process.c (QCfilter_multibyte): Remove.
1768 (setup_process_coding_systems): Don't use filter_multibyte.
1769 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
1770 (read_process_output): Don't adjust multibyteness to filter_multibyte.
1771 (Fset_process_filter_multibyte): Change the coding-system to
1772 approximate the previous behavior.
1773 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
1774 coding-system.
1775
1776 * coding.c (decode_coding_object): When not decoding into a buffer,
1777 obey the coding system's preference of (uni|multi)byte.
1778
1779 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
1780
1781 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
1782 every char is changed and has a different byte-length.
1783 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
1784 Fix int -> EMACS_INT.
1785
1786 2008-03-23 David Hansen <david.hansen@gmx.net>
1787
1788 * dbusbind.c (xd_read_message): Remove extra copying of message
1789 strings. Check for NULL `interface' or `member'.
1790
1791 2008-03-22 Eli Zaretskii <eliz@gnu.org>
1792
1793 * w32.c (readdir): If FindFirstFile/FindNextFile return in
1794 cFileName a file name that includes `?' characters, use the 8+3
1795 alias in cAlternateFileName instead.
1796
1797 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
1798
1799 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
1800
1801 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
1802
1803 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
1804 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
1805 work on current_buffer only instead (that was already the case
1806 for some of the code anyway).
1807 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
1808 (temp_set_point, temp_set_point_both): Use EMACS_INT.
1809 (SET_PT, SET_PT_BOTH): Adjust.
1810 * intervals.h (set_point, temp_set_point, set_point_both)
1811 (temp_set_point_both): Remove redundant declarations.
1812
1813 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
1814
1815 * fileio.c (Finsert_file_contents):
1816 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
1817 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
1818 when buffer != current_buffer anyway.
1819
1820 2008-03-20 Andreas Schwab <schwab@suse.de>
1821
1822 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
1823 as default.
1824
1825 2008-03-19 Jason Rumney <jasonr@gnu.org>
1826
1827 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
1828 (syms_of_w32fns): Initialize them.
1829 (HOURGLASS_ID): New constant.
1830 (x_window_to_frame): Don't check hourglass_window.
1831 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
1832 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
1833 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
1834 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
1835 Only change the cursor if hourglass is not active.
1836 (Fx_create_frame): Initialize frame's current_cursor.
1837 (hourglass_atimer): Remove.
1838 (hourglass_started): New function.
1839 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
1840 (show_hourglass): Adapt to w32, changing argument to frame.
1841
1842 * w32term.h (struct w32_output): Remove hourglass_window.
1843 Add current_cursor.
1844
1845 * eval.c (call_debugger, Fsignal):
1846 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
1847 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
1848 (Fexecute_extended_command, cancel_hourglass_unwind):
1849 * minibuf.c (read_minibuf):
1850 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
1851
1852 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
1853
1854 * window.c (run_funs): New fun.
1855 (run_window_configuration_change_hook): Use it to run the buffer-local
1856 and the global part of the hook.
1857
1858 * xdisp.c (format_mode_line_unwind_data): Add window argument.
1859 (unwind_format_mode_line): Restore selected window.
1860 (x_consider_frame_title, Fformat_mode_line): Set selected window.
1861
1862 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
1863
1864 * editfns.c (Fchar_equal): Check they are valid characters.
1865
1866 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
1867
1868 2008-03-17 Andreas Schwab <schwab@suse.de>
1869
1870 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
1871 against a charset.
1872
1873 * lisp.h (Fbuffer_list): Declare.
1874
1875 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
1876
1877 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
1878 handlebox_widget is != 0.
1879
1880 2008-03-16 Juri Linkov <juri@jurta.org>
1881
1882 * callint.c (Fcall_interactively): For interactive code letters
1883 'b' and 'B' put the buffer list into the list of default "future"
1884 values of the minibuffer.
1885
1886 2008-03-16 Andreas Schwab <schwab@suse.de>
1887
1888 * keyboard.c (read_key_sequence): Fix downcasing of letters with
1889 modifiers.
1890
1891 * regex.c (re_match_2_internal): Correct matching of a charset
1892 against latin-1 characters.
1893
1894 2008-03-16 Kenichi Handa <handa@m17n.org>
1895
1896 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
1897 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
1898 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
1899 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
1900 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
1901 CHAR_STRING_ADVANCE.
1902 (produce_chars): Fix for the case that the source and the
1903 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
1904 instead of CHAR_STRING_ADVANCE.
1905 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
1906 STRING_CHAR_ADVANCE.
1907
1908 2008-03-15 Andreas Schwab <schwab@suse.de>
1909
1910 * regex.c (re_match_2_internal): Correct matching of eight bit
1911 characters in unibyte strings.
1912
1913 2008-03-15 Martin Rudalics <rudalics@gmx.at>
1914
1915 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
1916 at end of range when it coincides with the end of the buffer.
1917
1918 2008-03-14 Eli Zaretskii <eliz@gnu.org>
1919
1920 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
1921
1922 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
1923
1924 2008-03-14 Jason Rumney <jasonr@gnu.org>
1925
1926 * editfns.c (initial_tz): New variable.
1927 (syms_of_editfns): Initialize it.
1928 (Fset_time_zone_rule): Set it when first called.
1929 Use it when TZSTRING is nil.
1930
1931 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
1932 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
1933 (monitor_from_point_fn, get_monitor_info_fn): New globals.
1934 (globals_of_w32fns): Initialize them.
1935 (compute_tip_xy): Use them to position tooltips.
1936
1937 2008-03-14 Glenn Morris <rgm@gnu.org>
1938
1939 * emacs.c (main): Revert previous change.
1940 (standard_args): Revert -internal-script back to -scriptload,
1941 and remove the long-option form.
1942
1943 2008-03-13 Glenn Morris <rgm@gnu.org>
1944
1945 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
1946 Remove option -enable-font-backend.
1947
1948 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
1949
1950 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
1951
1952 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
1953
1954 * xterm.c (x_connection_closed): For GTK: If this is the last
1955 terminal just exit without closing the display.
1956
1957 2008-03-11 Jason Rumney <jasonr@gnu.org>
1958
1959 * w32font.c (w32font_full_name): Use floor to round.
1960
1961 2008-03-10 dhruva <dhruvakm@gmail.com> (tiny change)
1962
1963 * sound.c (alsa_configure): Declare vol at beginning of block.
1964
1965 * fontset.c (Ffontset_info): Remove extra semicolon.
1966
1967 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
1968
1969 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
1970 size of resulting string.
1971
1972 2008-03-10 Jason Rumney <jasonr@gnu.org>
1973
1974 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
1975
1976 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1977
1978 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
1979 Don't pretend as if characters with display property haven't been
1980 consumed for string-replacing-string case.
1981
1982 2008-03-08 Kim F. Storm <storm@cua.dk>
1983
1984 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
1985 (get_next_display_element, next_element_from_string)
1986 (next_element_from_ellipsis, next_element_from_buffer): Use it.
1987
1988 2008-03-08 Andreas Schwab <schwab@suse.de>
1989
1990 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
1991
1992 2008-03-06 Jason Rumney <jasonr@gnu.org>
1993
1994 * w32font.c (w32_registry): Take font_type argument. Use ANSI
1995 when charset not specified. Only translate ANSI to unicode when
1996 font_type is truetype.
1997 (w32font_coverage_ok): New function.
1998 (add_font_entity_to_list): Use it to filter unsuitable fonts.
1999
2000 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
2001
2002 * lread.c (Fread_char): Resolve modifiers.
2003 (Fread_char_exclusive): Likewise.
2004
2005 * character.c (char_resolve_modifier_mask): New function.
2006 (char_string): Use char_resolve_modifier_mask.
2007 (Fchar_resolve_modifiers): New function.
2008 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
2009 function.
2010
2011 2008-03-04 Jason Rumney <jasonr@gnu.org>
2012
2013 * makefile.w32-in: Always include w32font.c in the build.
2014 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
2015
2016 2008-03-04 Andreas Schwab <schwab@suse.de>
2017
2018 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
2019 (versionclean): Likewise.
2020
2021 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
2022
2023 * .cvsignore: Add oo.
2024
2025 2008-03-03 Andreas Schwab <schwab@suse.de>
2026
2027 * coding.c (decode_coding_object): Inhibit gap shrinking while
2028 decoding in place.
2029
2030 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
2031
2032 * w32term.c: Remove unused include "gnu.h".
2033 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
2034
2035 * gnu.h: Rename to ...
2036 * emacs-icon.h: ... this.
2037 * xterm.c: Use emacs-icon.h instead of gnu.h.
2038 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
2039
2040 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
2041
2042 * w32font.c: Include math.h.
2043
2044 2008-03-03 Jason Rumney <jasonr@gnu.org>
2045
2046 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
2047 Compute options separately.
2048 (w32font_open_internal): Set glyph_idx before caching metrics.
2049
2050 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
2051 Define if system headers don't.
2052 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
2053 (w32font_encode_char): Don't declare here.
2054
2055 * w32font.c (Quniscribe, QCformat): New symbols.
2056 (syms_of_w32font): Define them.
2057 (w32font_has_char): Indicate uncertainty.
2058 (w32font_encode_char): Encode as glyph point. Make static.
2059 (recompute_cached_metrics): New function.
2060 (w32font_open_internal): Use it. Set font to use glyph points
2061 initially. Set format based on type of font.
2062 (w32font_text_extents, w32font_draw): Optionally use glyph points.
2063 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
2064 on it. Set format based on information available here.
2065 (add_font_entity_to_list): Identify backend based on opentype_only.
2066
2067 2008-03-02 Andreas Schwab <schwab@suse.de>
2068
2069 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
2070
2071 * coding.c (decode_coding_big5, produce_chars):
2072 Fix typos in last change.
2073
2074 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
2075
2076 * gnu.h: New icon.
2077
2078 2008-03-02 Kenichi Handa <handa@m17n.org>
2079
2080 * coding.c (decode_coding_utf_8): When eol-type of CODING is
2081 `dos', don't decode '\r' if that is the last in the source.
2082 (decode_coding_utf_16, decode_coding_emacs_mule)
2083 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
2084 (decode_coding_raw_text, decode_coding_charset): Likewise.
2085 (produce_chars): Don't decode EOL here. Use EMACS_INT.
2086
2087 2008-03-01 Jason Rumney <jasonr@gnu.org>
2088
2089 * w32font.c (w32font_full_name): Report point size for scalable fonts.
2090
2091 2008-03-01 Kim F. Storm <storm@cua.dk>
2092
2093 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
2094
2095 2008-03-01 Jason Rumney <jasonr@gnu.org>
2096
2097 * w32font.c (w32font_full_name): New function.
2098 (w32font_open_internal): Use it.
2099
2100 2008-03-01 Kim F. Storm <storm@cua.dk>
2101
2102 * dispnew.c (line_draw_cost): Fix invalid glyph check.
2103
2104 2008-03-01 Jason Rumney <jasonr@gnu.org>
2105
2106 * font.c (font_unparse_fcname): Increase len when style is a symbol.
2107
2108 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
2109
2110 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
2111 xg_frame_resized when the event is for the edit widget.
2112
2113 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
2114
2115 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
2116 set_char_size.
2117 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
2118 operations on widgets here. Just set frame size if needed.
2119 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
2120 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
2121 (x_wm_set_size_hint): Set size hints on the edit widget only, not
2122 the whole frame.
2123 (xg_create_tool_bar): Move attachement of the tool bar to
2124 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
2125 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
2126
2127 2008-03-01 Jason Rumney <jasonr@gnu.org>
2128
2129 * w32fns.c (w32_msg_pump): Disable debug code.
2130
2131 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2132
2133 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
2134
2135 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
2136
2137 * xdisp.c (next_overlay_string): Don't set
2138 overlay_strings_at_end_processed_p if we're currently reading from
2139 a display string.
2140
2141 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
2142
2143 * xdisp.c (get_overlay_strings_1): Fix typo.
2144
2145 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
2146
2147 * xdisp.c (get_overlay_strings_1): Add missing argument type.
2148
2149 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
2150
2151 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
2152
2153 * xdisp.c (display_mode_element): Cancel the previous change.
2154 (decode_mode_spec): Likewise.
2155 (handle_auto_composed_prop): Don't make composition if it->string
2156 is a string.
2157
2158 2008-02-27 Kim F. Storm <storm@cua.dk>
2159
2160 * lisp.h (GLYPH): Change type from int to struct with separate char
2161 and face_id members.
2162 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
2163 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
2164 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
2165 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
2166 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
2167 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
2168 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
2169 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
2170 handle new Lisp glyph code encoding, either an integer or a cons.
2171
2172 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
2173 (GLYPH_ALIAS): Delete.
2174 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
2175 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
2176 (GLYPH_FROM_CHAR): Replace macro by ...
2177 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
2178
2179 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
2180 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
2181 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
2182 (GLYPH_INVALID_P): New macro.
2183 (spec_glyph_lookup_face): Update prototype.
2184
2185 * dispnew.c (line_draw_cost): Adapt to new glyph type.
2186 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
2187 new glyph code encoding.
2188 (spec_glyph_lookup_face): No return value; update passed glyph instead.
2189 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
2190
2191 * xdisp.c (get_next_display_element, next_element_from_display_vector):
2192 Adapt to new glyph type and new glyph code encoding.
2193
2194 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
2195
2196 * indent.c (current_column, current_column_1, Fmove_to_column)
2197 (compute_motion): Adapt to new glyph code encoding.
2198
2199 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
2200
2201 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
2202
2203 * process.c (wait_reading_process_output): Check for window
2204 changes caused by timers.
2205 Suggested by Johan Bockgård.
2206
2207 2008-02-27 Glenn Morris <rgm@gnu.org>
2208
2209 * emacs.c (USAGE1): Add `--disable-font-backend'.
2210
2211 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
2212
2213 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
2214 is made to the buffer.
2215
2216 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
2217
2218 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
2219 (face_at_string_position):
2220 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
2221 (face_at_string_position):
2222 * xdisp.c (display_string, next_overlay_change):
2223 * buffer.h (overlays_at):
2224 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
2225 Update callers.
2226
2227 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
2228
2229 * editfns.c (Fformat): Doc fix.
2230
2231 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
2232
2233 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
2234 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
2235 (Ffont_otf_alternates, Fquery_font): Doc fixes.
2236
2237 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
2238
2239 * buffer.c (Fbuffer_swap_text): New function.
2240 (syms_of_buffer): Defsubr it.
2241
2242 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
2243
2244 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
2245
2246 2008-02-25 Jason Rumney <jasonr@gnu.org>
2247
2248 * w32font.c (w32font_draw): Draw one character at a time when padding.
2249
2250 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
2251
2252 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
2253 Handle a nil arg. Use run_window_configuration_change_hook.
2254 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
2255 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
2256 Use run_window_configuration_change_hook.
2257
2258 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
2259
2260 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
2261 1-pixel width.
2262
2263 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
2264
2265 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
2266 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
2267 if the glyph in the font is zero pixel with.
2268
2269 * dispextern.h (struct glyph_string): New member padding_p.
2270
2271 * w32font.c (w32font_draw): Pay attention to s->padding_p.
2272
2273 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
2274
2275 * xfont.c (xfont_draw): Pay attention to s->padding_p.
2276
2277 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
2278
2279 * font.c: If the font driver doesn't have `shape' function, return Qnil.
2280
2281 2008-02-25 Jason Rumney <jasonr@gnu.org>
2282
2283 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
2284
2285 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
2286
2287 Allow fine-grained image-cache flushing.
2288 * dispextern.h (struct image): Add `dependencies' field.
2289 (clear_image_caches): Change arg to Lisp_Object.
2290 * image.c (make_image): Initialize `dependencies' field.
2291 (clear_image_cache): Change arg to allow fine-grained flushing.
2292 Perform the flush even if image-cache-eviction-delay is nil.
2293 (clear_image_caches): Change arg to Lisp_Object.
2294 (Fclear_image_cache): Expand meaning of the argument.
2295 (mark_image): Mark `dependencies' field.
2296 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
2297 (lface_hash): Use XHASH rather than XFASTINT.
2298 (face_at_buffer_position): Fix int -> EMACS_INT position.
2299 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
2300 (select_frame_for_redisplay): Remove code duplication.
2301 (redisplay_internal): Adapt arg to call to clear_image_caches.
2302
2303 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
2304
2305 * s/vms4-0.h:
2306 * s/vms4-2.h:
2307 * s/vms4-4.h:
2308 * s/vms5-5.h: Remove, unused.
2309
2310 * s/irix5-2.h:
2311 * s/irix6-0.h:
2312 * s/riscos5.h:
2313 * s/mach-bsd4-3.h:
2314 * m/mips4.h: Remove files for obsolete systems.
2315
2316 * Makefile.in:
2317 * filelock.c:
2318 * unexmips.c:
2319 * m/hp9000s300.h:
2320 * m/iris4d.h:
2321 * s/aix3-1.h:
2322 * s/hpux.h:
2323 * s/msdos.h:
2324 * s/usg5-0.h:
2325 * s/usg5-2-2.h:
2326 * s/usg5-2.h:
2327 * s/usg5-3.h: Remove references to obsolete variables.
2328
2329 * s/irix5-0.h: Remove, move all the contents ...
2330 * s/irix6-5.h: ... here. Simplify.
2331 * config.in: Regenerate.
2332
2333 2008-02-24 Jason Rumney <jasonr@gnu.org>
2334
2335 * w32term.c (x_draw_glyph_string_background): Clear the background
2336 manually when cleartype is in use.
2337 (x_draw_glyph_string_foreground): Draw text transparently when
2338 cleartype is in use.
2339
2340 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
2341 a font into it unless we have to.
2342
2343 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
2344
2345 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
2346 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
2347
2348 2008-02-18 Jason Rumney <jasonr@gnu.org>
2349
2350 * w32fns.c (Fw32_shell_execute): Encode parameters.
2351
2352 2008-02-09 Eli Zaretskii <eliz@gnu.org>
2353
2354 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
2355
2356 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
2357
2358 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
2359
2360 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
2361
2362 * xterm.c (x_set_offset): Don't change the gravity if
2363 CHANGE_GRAVITY is -1.
2364
2365 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
2366
2367 * fileio.c (auto_save_error_occurred): New var.
2368 (auto_save_error): Set it.
2369 (Fdo_auto_save): Don't overwrite the error message if an auto-save
2370 error occurred.
2371
2372 2008-02-23 Eli Zaretskii <eliz@gnu.org>
2373
2374 * w32.c (globals_of_w32): Add initializations for
2375 g_b_init_get_sid_sub_authority and
2376 g_b_init_get_sid_sub_authority_count.
2377
2378 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
2379
2380 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
2381 (font_parse_xlfd): Use them for sanity check.
2382 (Finternal_set_font_style_table): Make sure the table is bijective.
2383
2384 Consolidate the image_cache to the terminal struct.
2385 * termhooks.h (P_): Remove redundant def.
2386 (struct terminal): New field `image_cache'.
2387 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
2388 of FRAME_X_IMAGE_CACHE.
2389 * xterm.h (struct x_display_info): Remove image_cache field.
2390 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
2391 * w32term.h (struct w32_display_info): Remove image_cache field.
2392 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
2393 * macterm.h (struct mac_display_info): Remove image_cache field.
2394 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
2395 * xterm.c (x_term_init):
2396 * w32term.c (w32_term_init):
2397 * macterm.c (mac_term_init): Set the image_cache in the terminal.
2398 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
2399 Remove declarations.
2400 (clear_image_caches, mark_image_cache): New declarations.
2401 * xfaces.c (clear_face_cache):
2402 * xdisp.c (redisplay_internal): Use clear_image_caches.
2403 * image.c (clear_image_cache): Don't check that a frame is on
2404 a window-system before checking if it shares the same cache.
2405 (clear_image_caches): New function.
2406 (Fclear_image_cache): Use it.
2407 (mark_image): Move from allo.c.
2408 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
2409 * alloc.c (mark_image, mark_image_cache): Move to image.c.
2410 (mark_object): Don't call mark_image_cache for frames.
2411 (mark_terminals): Call mark_image_cache.
2412
2413 * lisp.h (Fdelete_terminal): Declare.
2414
2415 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
2416 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
2417 wrong_type_argument.
2418
2419 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
2420
2421 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
2422 malayalam.el, and tamil.el. Add sinhala.el.
2423
2424 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
2425
2426 * xterm.c (x_connection_closed): Consolidate identical tests.
2427 (x_delete_terminal): Don't crash if called via x_connection_closed.
2428
2429 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
2430
2431 * xdisp.c (decode_mode_spec): New arg string.
2432 (display_mode_element): Adjust for the above change.
2433
2434 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
2435
2436 * callint.c (Fcall_interactively): Use AREF.
2437
2438 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
2439
2440 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
2441
2442 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
2443
2444 * xfns.c (Fx_show_tip): Set string to " " if empty.
2445
2446 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
2447
2448 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
2449 with Qt.
2450
2451 2008-02-17 Kenichi Handa <handa@m17n.org>
2452
2453 * ftfont.c (ftfont_shape): Return Lispy number.
2454
2455 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
2456 for GCs.
2457 (Finternal_set_font_selection_order): Call font_update_sort_order
2458 only when enable_font_backend is set.
2459 (realize_x_face): Set face->font_info to that of default face only
2460 when enable_font_backend is set.
2461
2462 * xdisp.c (handle_composition_prop): Set it->c to the fist
2463 characte of the composed region.
2464 (fill_composite_glyph_string): Set base_face->font_info to
2465 s->font_info. Get a face for ascii from base_face->ascii_face.
2466 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
2467 with a face already decided.
2468 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
2469 non-negative.
2470 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
2471 call font_prepare_composition unconditionally.
2472
2473 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
2474
2475 * xterm.h (struct x_display_info): New member font.
2476
2477 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
2478 (x_set_mouse_face_gc, x_new_font): Likewise.
2479 (x_term_init): Setup display_info->font.
2480 (x_delete_terminal): Free display_info->font.
2481
2482 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
2483
2484 * ftxfont.c (ftxfont_default_fid): Delete it.
2485 (ftxfont_open): Set xfont->fid to 0.
2486 (ftxfont_end_for_frame): Clear data specific to the frame and the
2487 font-driver.
2488
2489 * xftfont.c (xftfont_default_fid): Delete it.
2490 (xftfont_open): Set xfont->fid to 0.
2491
2492 * fontset.c (FONTSET_OBJLIST): New macro.
2493 (fontset_find_font): Update font-object list of the fontset.
2494 (free_realized_fontset): New function.
2495 (free_face_fontset): Call free_realized_fontset.
2496 (Ffont_info): Call font_close_object only when enable_font_backend
2497 is set.
2498
2499 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
2500 [HAVE_NTGUI]: Include w32term.h.
2501 [MAC_OS]: Include macterm.ch.
2502 (font_otf_ValueRecord): Use make_number.
2503 (font_finish_cache): Fix handling of reference count.
2504 (font_clear_cache): Update num_fonts.
2505 (font_open_entity): Update smallest_char_width and
2506 smallest_font_height of the frame.
2507 (font_close_object): Update num_fonts.
2508 (Fclear_font_cache): Fix finding the target cache data.
2509
2510 2008-02-16 Glenn Morris <rgm@gnu.org>
2511
2512 * fontset.c (Finternal_char_font): Fix compilation warning.
2513
2514 2008-02-16 Eli Zaretskii <eliz@gnu.org>
2515
2516 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
2517 instead of char arrays. Enlarge the size of array passed to
2518 get_token_information.
2519
2520 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
2521 warnings.
2522
2523 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
2524
2525 * .gdbinit: Don't set `args', it breaks gdb --args.
2526
2527 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
2528
2529 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
2530 within a narrowed buffer.
2531
2532 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
2533
2534 * coding.c (decode_coding_object, encode_coding_object):
2535 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
2536
2537 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
2538
2539 * coding.c (coding_set_destination): Use BEG_BYTE rather than
2540 hardcoding 1.
2541 (detect_coding_system):
2542 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
2543 (string_char_to_byte, string_byte_to_char, insert_from_gap):
2544 * insdel.c (insert_from_gap):
2545 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
2546 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
2547 (string_to_multibyte):
2548 * character.c (chars_in_text, multibyte_chars_in_text):
2549 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
2550
2551 * character.h (FETCH_STRING_CHAR_ADVANCE)
2552 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
2553 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
2554 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
2555
2556 * casefiddle.c (casify_region): Only call after-change and composition
2557 functions on the part of the region that was changed.
2558
2559 * keyboard.c (read_avail_input):
2560 * frame.c (Fdelete_frame): Call Fdelete_terminal.
2561
2562 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2563
2564 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
2565 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
2566
2567 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
2568
2569 * w32menu.c (push_submenu_start, push_submenu_end)
2570 (push_left_right_boundary, push_menu_pane, push_menu_item):
2571 * keyboard.c (read_key_sequence): Don't pass args with side effects
2572 to AREF, it fails when compiling with -DENABLE_CHECKING.
2573
2574 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
2575
2576 * Makefile.in (${lispsource}international/charprop.el):
2577 Delete this target.
2578
2579 * search.c (boyer_moore): Fix incorrect synching of the trunk and
2580 emacs-unicode-2.
2581
2582 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
2583
2584 * terminal.c (Fdelete_terminal): Clean up the `force' path.
2585
2586 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
2587
2588 * frame.c (Qnoelisp): New symbol.
2589 (syms_of_frame): Initialize it.
2590 (Fdelete_frame): Use it to distinguish a mere `force' passed from
2591 someharmles Elisp code, from a strong `force' from x_connection_closed.
2592 * frame.h (Qnoelisp): Declare.
2593 * xterm.c (x_connection_closed): Pass `noelisp'.
2594
2595 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
2596 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
2597 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
2598 rather than `int' for the type of `type'.
2599
2600 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
2601
2602 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
2603
2604 * Makefile.in (GNUC): Remove support for gcc-1.x.
2605
2606 2008-02-10 Richard Stallman <rms@gnu.org>
2607
2608 * lisp.h (ASET): Use AREF, not ASLOT.
2609
2610 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
2611
2612 * lisp.h (ASET): Check bounds.
2613
2614 2008-02-10 Glenn Morris <rgm@gnu.org>
2615
2616 * buffer.c (mode-name): Doc fix.
2617
2618 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
2619
2620 * Makefile.in:
2621 * emacs.c:
2622 * gmalloc.c:
2623 * keyboard.c:
2624 * lisp.h:
2625 * m/ibm370aix.h:
2626 * process.c:
2627 * regex.c:
2628 * s/hpux.h:
2629 * sysdep.c:
2630 * sysselect.h:
2631 * systty.h:
2632 * unexec.c:
2633 * w32term.c:
2634 * xsmfns.c:
2635 * xterm.c: Remove code that deals with obsolete variables.
2636
2637 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
2638
2639 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
2640 nothing else needs it anymore.
2641
2642 2008-02-09 Eli Zaretskii <eliz@gnu.org>
2643
2644 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
2645 instead of unibyte_char_to_multibyte.
2646
2647 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
2648
2649 * s/gnu-linux.h: Remove commented out code.
2650
2651 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
2652
2653 * Makefile.in: Update what RMS says about using autoconf.
2654 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
2655 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1):
2656 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
2657 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
2658
2659 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
2660
2661 * keymap.c (Fkey_description): Move side effect outside of macro call.
2662
2663 * xfaces.c (Finternal_make_lisp_face):
2664 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
2665
2666 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
2667 (syms_of_fontset): Use ASET.
2668
2669 * fns.c (concat): Move side effect outside of macro call.
2670 (hash_clear): Use ASET.
2671
2672 2008-02-08 Richard Stallman <rms@gnu.org>
2673
2674 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
2675 If FORCE, and frame has a surrogate minibuffer for another frame,
2676 delete the other frame first.
2677
2678 2008-02-07 Timo Savola <timo.savola@iki.fi>
2679
2680 * xterm.c (x_detect_focus_change): Handle embed client message.
2681 (handle_one_xevent): Ditto.
2682 (handle_one_xevent): If embedded and we get a button press/release,
2683 request focus.
2684 (xembed_set_info, xembed_send_message): New functions.
2685 (x_make_frame_visible): Call xembed_set_info if embedded.
2686 (x_make_frame_invisible): Call xembed_set_info if embedded.
2687 (x_term_init): Initialize Xatom_XEMBED.
2688 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
2689 (x_iconify_frame): Ditto.
2690
2691 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
2692 (enum xembed_info, enum xerm srmbed_message, enum xembed_focus)
2693 (enum xembed_modifier, enum xembed_accelerator): New.
2694 (xembed_set_info, xembed_send_message): Declare.
2695 (FRAME_X_EMBEDDED_P): New.
2696
2697 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
2698 gtk_plug_new.
2699
2700 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
2701 window ID of a frame.
2702 (x_window): Reparent frame if embedded.
2703 (Fx_create_frame): Don't set border width if embedded.
2704
2705 * emacs.c (USAGE3): Add --parent-id
2706 (standard_args): Ditto.
2707
2708 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
2709
2710 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
2711
2712 2008-02-07 Jim Meyering <meyering@redhat.com>
2713
2714 Use "do...while (0)", not "if (1)...else" in macro definitions.
2715 The latter provokes a warning from gcc about the empty else, when
2716 followed by ";". Also, without that trailing semicolon, it would
2717 silently swallow up any following statement.
2718 * syntax.h (SETUP_SYNTAX_TABLE):
2719 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
2720 * buffer.h (DECODE_POSITION): Likewise.
2721 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
2722 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
2723 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
2724 (FETCH_CHAR_ADVANCE): Likewise.
2725 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
2726
2727 2008-02-07 Jim Meyering <meyering@redhat.com>
2728
2729 * lread.c [lint]: Don't include <sys/inode.h>.
2730
2731 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
2732
2733 * xselect.c (x_handle_dnd_message):
2734 * xmenu.c (digest_single_submenu, xmenu_show):
2735 * xdisp.c (with_echo_area_buffer_unwind_data)
2736 (format_mode_line_unwind_data, unwind_format_mode_line)
2737 (display_menu_bar):
2738 * eval.c (Ffetch_bytecode):
2739 * doc.c (store_function_docstring):
2740 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
2741 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
2742 * buffer.c (add_overlay_mod_hooklist): Use ASET.
2743
2744 2008-02-07 Kenichi Handa <handa@m17n.org>
2745
2746 * ftxfont.c (ftxfont_open): Don't set
2747 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
2748
2749 * ftfont.c (ftfont_open): Fix previous change.
2750
2751 2008-02-06 Jason Rumney <jasonr@gnu.org>
2752
2753 * w32font.c (w32font_text_extents): Fill in lbearing metric.
2754 Use cached metrics for ASCII characters.
2755 (w32font_open_internal): Don't set font's owning_frame.
2756 Cache metrics for ASCII characters.
2757
2758 * w32font.h (struct w32font_info): Add ascii_metrics.
2759 Remove owning_frame.
2760
2761 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
2762
2763 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
2764 to negative value.
2765
2766 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
2767
2768 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
2769
2770 * charset.c (syms_of_charset): Set QCtest and Qeq.
2771
2772 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
2773
2774 * process.c (Fstart_process):
2775 * callproc.c (Fcall_process): Handle the case where
2776 Funhandled_file_name_directory returns nil.
2777
2778 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
2779 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
2780 * font.c (check_gstring): Use them and AREF to access the vector before
2781 we know it's really a gstring.
2782 (Ffont_shape_text): Fix typo.
2783 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Oject mixups.
2784
2785 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
2786 Declare.
2787
2788 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
2789
2790 2008-02-05 Jason Rumney <jasonr@gnu.org>
2791
2792 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
2793 Set smallest_font_height and smallest_char_width in display info.
2794
2795 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
2796
2797 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
2798
2799 2008-02-05 Miles Bader <miles@gnu.org>
2800
2801 * xfaces.c (get_lface_attributes, merge_named_face)
2802 (lookup_named_face, lookup_derived_face, realize_named_face):
2803 Revert 2008-02-01 change by cyd@stupidchicken.com.
2804
2805 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
2806
2807 * fontset.c (Ffontset_info): Handle the case of inhibitting the
2808 fallback fonts.
2809 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
2810
2811 2008-02-04 Jason Rumney <jasonr@gnu.org>
2812
2813 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
2814 set full_name.
2815 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
2816
2817 2008-02-03 Jason Rumney <jasonr@gnu.org>
2818
2819 * makefile.w32-in (OBJ1): Include font.o here.
2820 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
2821
2822 2008-02-02 Jason Rumney <jasonr@gnu.org>
2823
2824 * makefile.w32-in (temacs): Bump EMHEAP to 21.
2825
2826 2008-02-01 Jason Rumney <jasonr@gnu.org>
2827
2828 * s/cygwin.h: Define VIRT_ADDR_VARIES.
2829
2830 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
2831
2832 2008-02-01 Andreas Schwab <schwab@suse.de>
2833
2834 * Makefile.in (shortlisp, lisp): Update for rename of
2835 ../lisp/language/myanmar.el.
2836
2837 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
2838
2839 * xfaces.c (get_lface_attributes): Delete function.
2840 (merge_named_face, lookup_named_face, lookup_derived_face)
2841 (realize_named_face): Call lface_from_face_name directly, and use
2842 the fact that merge_face_vectors does not alter its FROM argument.
2843
2844 2008-02-01 Jason Rumney <jasonr@gnu.org>
2845
2846 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
2847 input in the default locale. Handle non-Unicode multibyte input.
2848
2849 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2850
2851 * fontset.c (reorder_font_vector): Exclude nil elements from the
2852 font group. Don't try multiple fonts.
2853 (fontset_font): Adjust for the above change.
2854 (Finternal_char_font): Return nil if the found font doesn't
2855 contain the character ch.
2856
2857 * Makefile.in (lisp, shortlisp): Add cham.el.
2858
2859 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2860
2861 * font.h (FONTP): Make it return 1 also for a font-object.
2862
2863 * .gdbinit (xfontset): New function.
2864
2865 * font.c (font_find_for_lface): Check if the character C is
2866 supported or not only for the first font.
2867
2868 * fontset.c (reorder_font_vector): Fix typo.
2869 (fontset_find_font): Don't add a font-spec specifying a script.
2870 Use 0 (not Qt) for the indication of empty font-group. Change the
2871 format of RFONT-DEF. Return Qt if no font in the font-group
2872 support the character.
2873 (fontset_font): Adjust for the above change. If no font was
2874 found the character, remember that.
2875 (face_for_char): Adjust for the change of RFONT-DEF.
2876 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
2877 no font for the target.
2878 (Finternal_char_font): Adjust for the change of RFONT-DEF.
2879
2880 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2881
2882 * font.c (font_load_for_face): Handle the case that the font in
2883 face->lface is a string.
2884
2885 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2886
2887 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
2888
2889 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2890
2891 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
2892 Fix previous change. If the frame is not on a window system,
2893 signal an error.
2894
2895 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2896
2897 * coding.c (decode_coding_object, encode_coding_object): Adjust
2898 marker positions after conversion.
2899
2900 * lisp.h (struct Lisp_Marker): New member need_adjustment.
2901
2902 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2903
2904 * font.c (font_find_for_lface): Fix the handling of the return
2905 value of font_has_char.
2906 (Ffont_shape_text): Fix previous change.
2907
2908 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
2909 (fontset_ref_and_range): Delete it.
2910 (fontset_find_font): Call char_table_ref_and_range instead of
2911 FONTSET_REF_AND_RANGE.
2912 (make_fontset): Don't setup font groups of Latin here.
2913 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
2914 (new_fontset_from_font): Make the specified font the default for
2915 all Latin characters.
2916
2917 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2918
2919 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
2920 is on a window system before accessing the fontset of the frame.
2921
2922 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2923
2924 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
2925
2926 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
2927 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
2928
2929 * font.c (Ffont_shape_text): If the font driver doesn't have a
2930 shaper function, make zero-width glyphs to have at least one-pixel
2931 width. Fix setting of `to' field of glyphs.
2932
2933 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2934
2935 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
2936 glyphs.
2937
2938 * font.h (struct font_driver): Improve docstring of member `shape'.
2939
2940 2008-02-01 Kenichi Handa <handa@m17n.org>
2941
2942 * composite.c (syms_of_composite): Fix docstring of
2943 auto-composition-function.
2944
2945 * font.h (LGLYPH_SIZE): New macro.
2946
2947 * font.c (Ffont_fill_gstring): Stop filling when a character not
2948 supported by the font is found.
2949 (Ffont_shape_text): When a shape callback function returns nil,
2950 try at most two more times with larger gstring.
2951 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
2952
2953 * xdisp.c (handle_auto_composed_prop): Change the argument to
2954 auto-composition-function.
2955
2956 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
2957 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
2958 Lispy glyph and store it in the lgstring.
2959
2960 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
2961
2962 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
2963
2964 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2965
2966 * font.c (Ffont_shape_text): Avoid unnecessary composition.
2967
2968 * fontset.c (Vfont_encoding_charset_alist): New variable.
2969 (syms_of_fontset): DEFVAR it.
2970 (reorder_font_vector, fontset_find_font): Optimize for the case of
2971 no need of reordering.
2972 (face_for_char): Map the charset property by
2973 Vfont_encoding_charset_alist.
2974
2975 2008-02-01 Jason Rumney <jasonr@gnu.org>
2976
2977 * w32font.c (logfonts_match): Don't check adstyle here.
2978 (font_matches_spec): Check here against physical font instead.
2979 (add_font_entity_to_list): Avoid some substitutions.
2980
2981 * font.c (font_parse_fcname): Default weight and slant to normal.
2982 (font_score): Prefer normal fonts if weight or slant unspecified.
2983 (font_score) [WINDOWSNT]: Scale weight difference down to closer
2984 match freetype scores.
2985
2986 2008-02-01 Jason Rumney <jasonr@gnu.org>
2987
2988 * w32font.c (w32font_text_extents): Don't use the frame stored in the
2989 font, as it may have been deleted.
2990 (w32_enumfont_pattern_entity): Map generic family to adstyle using
2991 most common hyphenless variation.
2992 (logfonts_match): Check generic family.
2993 (font_matches_spec): Don't check generic family here.
2994 (fill_in_logfont): Set generic family based on adstyle.
2995
2996 * w32font.h (w32font_get_cache): Update declaration.
2997
2998 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
2999
3000 * ftfont.c (ftfont_get_cache): Adjust the argument type.
3001
3002 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
3003 If none of the new drivers are available, call font_update_drivers
3004 with the old drivers.
3005
3006 * w32font.c (w32font_get_cache): Adjust the argument type.
3007
3008 * xfont.c (xfont_get_cache): Adjust the argument type.
3009
3010 * font.h (struct font_driver): Change argument type of get_cache.
3011
3012 * xftfont.c (xftfont_start_for_frame): Delete prototype.
3013
3014 * font.c (Ffont_get): Fix arguments to Fassoc.
3015 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
3016 (font_clear_cache): New function.
3017 (font_list_entities, font_matching_entity): Use font_get_cache.
3018 (font_update_drivers): Call font_clear_cache when finishing a driver.
3019
3020 * fontset.c (fontset_find_font): Fix previous change.
3021
3022 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3023
3024 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
3025 dpyinfo->font_table.
3026 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
3027 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
3028
3029 * font.c (font_at): Handle the case that the arg C is negative.
3030 Handle the unibyte case.
3031 (Ffont_at): Call font_at with the arg C -1.
3032
3033 * xdisp.c (handle_auto_composed_prop): Don't get a character at
3034 the position here, and call font_at with the arg C -1.
3035 Don't check the range of the existing composition at the point.
3036
3037 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3038
3039 * fontset.c (fontset_add): New args charset_id and family.
3040 Change caller.
3041 (load_font_get_repertory, fontset_find_font): Assume that
3042 font_spec is always a font-spec object.
3043 (Fset_fontset_font): Always store a font-spec object in a fontset.
3044
3045 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
3046 instead of get_property_and_range.
3047
3048 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3049
3050 * xftfont.c (struct xftfont_info): Delete the member ft_face.
3051 (xftfont_open): Don't keep locking face.
3052 (xftfont_close): Don't unlock face.
3053 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
3054
3055 * fontset.c (fontset_find_font): Don't prefer a font of
3056 supplementary charset.
3057
3058 2008-02-01 Kenichi Handa <handa@m17n.org>
3059
3060 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
3061 script, langsys_tag to langsys, new member script.
3062 (OTF_TAG_STR): Terminate by '\0'.
3063 (ftfont_get_open_type_spec): If :otf prop is is spec, Limit the
3064 listing to the script specified in that property. Fix arg to
3065 OTF_check_features.
3066
3067 2008-02-01 Jason Rumney <jasonr@gnu.org>
3068
3069 * w32font.h: New file.
3070
3071 * w32font.c: Include it.
3072 (struct w32font_info): Add owning_frame field. Move to w32font.h.
3073 (w32font_open): Set owning_frame.
3074 (w32font_text_extents): Use owning_frame.
3075 (struct font_callback_data): Add opentype_only field.
3076 (add_font_entity_to_list): Use it to filter fonts.
3077 Don't check against full name.
3078 (w32font_list_internal): New function.
3079 (w32font_list): Use it.
3080 (w32font_match_internal): New function.
3081 (w32font_match): Use it.
3082 (w32font_open_internal): New function.
3083 (w32font_open): Use it.
3084 (w32font_get_cache, w32font_close, w32font_has_char)
3085 (w32font_encode_char, w32font_text_extents, w32font_draw):
3086 Make non-static.
3087
3088 * makefile.w32-in (w32font.o): Depend on w32font.h.
3089
3090 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3091
3092 * charset.c (Fdefine_charset_internal): Record a supplementary
3093 charset at the tail of Vcharset_order_list.
3094
3095 * font.c (Ffont_shape_text): Fix the return value.
3096
3097 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
3098
3099 * xdisp.c (handle_auto_composed_prop): Fix previous change.
3100
3101 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3102
3103 * ftfont.c (struct OpenTypeSpec): New struct.
3104 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
3105 (ftfont_get_open_type_spec): New function.
3106 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
3107
3108 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
3109
3110 2008-02-01 Jason Rumney <jasonr@gnu.org>
3111
3112 * w32font.c (add_font_entity_to_list): Compare only the beginning
3113 of full name.
3114
3115 2008-02-01 Kenichi Handa <handa@m17n.org>
3116
3117 * xdisp.c (handle_auto_composed_prop): Simplify the code.
3118 Never return HANDLED_RECOMPUTE_PROPS.
3119
3120 2008-02-01 Kenichi Handa <handa@m17n.org>
3121
3122 * font.c (font_gstring_produce): Delete it.
3123
3124 * composite.h (COMPOSITION_METHOD):
3125 Handle COMPOSITION_WITH_GLYPH_STRING.
3126
3127 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3128
3129 * xfont.c (Qx): Delete.
3130 (syms_of_xfont): Don't initialize Qx.
3131
3132 * composite.h (enum composition_method):
3133 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
3134
3135 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3136
3137 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
3138 (choose_face_font): Accept new form of font-spec.
3139
3140 * frame.h (font_driver_list): Declare it unconditionally.
3141 (struct frame): Define members font_driver_list and font_data_list
3142 unconditionally.
3143
3144 * fontset.c: Include "font.h" unconditionally.
3145 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
3146 (Fset_fontset_font): Accept a font-spec object.
3147
3148 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
3149 PIXEL_SIZE part a wild card.
3150
3151 * dispextern.h (struct glyph_string): Define members clip and
3152 num_clips unconditionally.
3153 (struct face): Define members font_info and extra unconditionally.
3154
3155 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
3156 ftfont_info only when HAVE_LIBOTF is defined.
3157
3158 2008-02-01 Andreas Schwab <schwab@suse.de>
3159
3160 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
3161 and end.
3162
3163 2008-02-01 Jason Rumney <jasonr@gnu.org>
3164
3165 * w32font.c (w32font_driver): Add new fields.
3166
3167 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3168
3169 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
3170 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
3171 (LIBES): Add @M17N_FLT_CFLAGS@.
3172
3173 * composite.c (compose_text): Don't treat the new style
3174 composition specially.
3175
3176 * emacs.c (main): Call syms_of_font unconditionally.
3177
3178 * font.h (FONT_ENTITY_NOT_LOADABLE)
3179 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
3180 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
3181 (struct font_driver): New member shape.
3182 (font_registry_charsets): Extern it.
3183 (font_find_for_lface, font_prepare_composition): Adjust prototype.
3184 (font_otf_capability, font_drive_otf): Delete their externs.
3185
3186 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
3187 (font_charset_alist, font_registry_charsets): Move from xfont.c
3188 and rename.
3189 (font_prop_validate_otf): New function.
3190 (font_property_table): Register it for QCotf.
3191 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
3192 (font_drive_otf): Delete.
3193 (font_prepare_composition): New arg F. Adjust for the change of
3194 lispy gstring.
3195 (font_find_for_lface): New arg C.
3196 (font_load_for_face): Adjust for the change of font_find_for_lface.
3197 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
3198 lispy gstring.
3199 (Ffont_shape_text): New function.
3200 (Fopen_font): If the font size is not given, use 12-pixel.
3201 (Ffont_at): New arg STRING.
3202 (syms_of_font): Initalize font_charset_alist.
3203 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
3204 conditionally.
3205
3206 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
3207 fonts of the same font-spec. Change the format of RFONT-DEF.
3208 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
3209 Adjust for the change of RFONT-DEF.
3210 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
3211
3212 * ftfont.h: New file.
3213
3214 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
3215 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
3216 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
3217 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
3218 font_otf_capability and font_drive_otf, set ftfont_shape.
3219 (ftfont_list): Adjust for the change of :otf property value.
3220 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
3221 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
3222 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
3223 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.s
3224 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
3225 (otf_gstring, gstring, m17n_flt_initialized): New variables.
3226
3227 * w32term.c (x_draw_composite_glyph_string_foreground):
3228 Adjust for the change of lispy gstring.
3229
3230 * xdisp.c (handle_composition_prop): Adjust for the change of
3231 lispy gstring. Call a function for auto-composition with the
3232 third arg it->window.
3233 (fill_composite_glyph_string): Adjust for the change of lispy string.
3234 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
3235
3236 * xfaces.c (set_font_frame_param): Adjust for the change of
3237 font_find_for_lface.
3238
3239 * xfont.c (x_font_charset_alist): Move to font.c and rename.
3240 (xfont_registry_charsets): Likewise. Change caller.
3241 (syms_of_xfont): Don't handle x_font_charset_alist.
3242
3243 * xftfont.c: Include "ftfont.h".
3244 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
3245 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
3246 (xftfont_close) [HAVE_LIBOTF]: Close otf.
3247 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
3248 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
3249 Set xftfont_driver.shape to xftfont_shape.
3250
3251 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
3252 the change of lispy gstring.
3253
3254 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3255
3256 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
3257
3258 2008-02-01 Jason Rumney <jasonr@gnu.org>
3259
3260 * w32font.c (w32font_draw): Fill background manually.
3261
3262 2008-02-01 Jason Rumney <jasonr@gnu.org>
3263
3264 * font.c (Qfontp): Remove unused symbol.
3265 (QCantialias): New symbol.
3266 (syms_of_font): Define it.
3267 (font_property_table): Set a validator for QCantialias.
3268
3269 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
3270 Define if not already.
3271 (QCfamily): Share with xfaces.c.
3272 (Qstandard, Qsubpixel, Qnatural): New symbols.
3273 (syms_of_w32font): Define them. Don't define QCfamily here.
3274 (w32_antialias_type, lispy_antialias_type): New functions.
3275 (w32_enumfont_pattern_entity): New arg requested_font.
3276 Set antialias parameter if non-default was requested.
3277 (fill_in_logfont): Fill in lfQuality if :antialias specified.
3278
3279 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3280
3281 * lread.c (read1): Undo the previous change.
3282
3283 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
3284
3285 * frame.c (Fdelete_frame): Call font_update_drivers only when
3286 USE_FONT_BACKEND is defined.
3287
3288 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3289
3290 * font.h (struct font_bitmap): New member bits_per_pixel.
3291 (struct font_driver): New members start_for_frame and end_for_frame.
3292 (struct font_data_list): New struct.
3293 (font_put_frame_data, font_get_frame_data): Extern them.
3294
3295 * frame.h (struct frame): New member font_data_list.
3296
3297 * font.c (font_update_drivers): Call driver->start_for_frame and
3298 driver->end_for_frame at proper timings.
3299 (font_put_frame_data, font_get_frame_data): New functions.
3300 (Ffont_spec): Add usage in the docstring.
3301
3302 * frame.c (make_frame): Initialize f->font_data_list to NULL.
3303 (Fdelete_frame): Call font_update_drivers.
3304
3305 * xftfont.c (struct xftface_info): Delete the member xft_draw.
3306 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
3307 (xftfont_get_xft_draw): New function.
3308 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
3309 (xftfont_end_for_frame): New function.
3310 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
3311
3312 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
3313 Change argument. Cache GCs in the per-frame data.
3314 (struct ftxfont_frame_data): New struct.
3315 (ftxfont_draw_bitmap): New arg gc_fore and flush.
3316 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
3317 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
3318 (ftxfont_end_for_frame): New function.
3319 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
3320
3321 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
3322
3323 2008-02-01 Kenichi Handa <handa@m17n.org>
3324
3325 * xselect.c (Vselection_coding_system)
3326 (Vnext_selection_coding_system): Delete them.
3327 (syms_of_xselect): Don't declare selection-coding-system and
3328 next-selection-coding-system. They are declared in select.el.
3329
3330 2008-02-01 Jason Rumney <jasonr@gnu.org>
3331
3332 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
3333
3334 * w32fns.c: Include imm.h.
3335 (get_composition_string_fn, get_ime_context_fn): New optional
3336 system functions.
3337 (globals_of_w32fns): Load them from imm32.dll.
3338 (ignore_ime_char): New flag.
3339 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
3340 WM_IME_ENDCOMPOSITION messages.
3341
3342 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
3343 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
3344
3345 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3346
3347 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
3348 (READCHAR_REPORT_MULTIBYTE): New macro.
3349 (readchar): New 2nd arg MULTIBYTE.
3350 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
3351 Make symbol's name multibyte according to the multibyteness of the
3352 source.
3353
3354 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3355
3356 * xfaces.c (face_for_overlay_string): Call lookup_face with
3357 correct arguments (fix of synching with the trunk).
3358
3359 2008-02-01 Kenichi Handa <handa@m17n.org>
3360
3361 * font.c (font_prop_validate_symbol, font_prop_validate_style)
3362 (font_prop_validate_non_neg, font_prop_validate_spacing):
3363 Delete argument prop_index.
3364 (font_property_table): Change arguments to validater. Change Callers.
3365 (font_lispy_object): Delete.
3366 (font_at): Use font_find_object instead fo font_lispy_object.
3367
3368 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
3369
3370 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
3371 and file names.
3372
3373 2008-02-01 Jason Rumney <jasonr@gnu.org>
3374
3375 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
3376 (font_matches_spec): Remove debug output.
3377 (add_font_entity_to_list): Avoid using substituted fonts.
3378
3379 2008-02-01 Jason Rumney <jasonr@gnu.org>
3380
3381 * doc.c (Fsnarf_documentation):
3382 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
3383
3384 2008-02-01 Miles Bader <miles@gnu.org>
3385
3386 * dispextern.h (struct glyph_row): Only define "clip" field if
3387 HAVE_WINDOW_SYSTEM is defined.
3388
3389 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
3390
3391 Fix up multi-tty merge.
3392
3393 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
3394 and indentation.
3395
3396 * xfaces.c (free_realized_face, clear_face_gcs):
3397 Include font_done_for_face in the input_blocked section, just in case.
3398
3399 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
3400 (get_char_face_and_encoding): Undo last change and remove the *other*
3401 duplicate definition (i.e. keep the one that's better scoped and that
3402 includes code for the font-backend).
3403
3404 * terminal.c (create_terminal): Default keyboard_coding to
3405 `no-conversion' and terminal_coding to `undecided'.
3406
3407 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
3408
3409 * fontset.c (free_realized_fontsets): Check that the table entry does
3410 contain a fontset before trying to compare it to `base'.
3411
3412 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
3413 syms_of_charset, and syms_of_coding earlier because init_window_once
3414 now needs Vcoding_system_hash_table to be setup.
3415
3416 * coding.h (default_buffer_file_coding): Remove.
3417
3418 * coding.c (default_buffer_file_coding): Remove.
3419 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
3420 than ->symbol, and use the terminal-local coding system.
3421 (syms_of_coding): Don't setup the coding-systems that are not
3422 terminal-local.
3423 (Fdefine_coding_system_internal): Use XCAR/XCDR.
3424
3425 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
3426 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
3427
3428 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
3429 in chartab.c and were re-added here by mistake.
3430 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
3431
3432 * doc.c (Fsnarf_documentation):
3433 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
3434 src to etc.
3435
3436 * ChangeLog.10: Add mistakenly removed entry.
3437
3438 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
3439
3440 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
3441
3442 2008-02-01 Miles Bader <miles@gnu.org>
3443
3444 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
3445 Add extra args to FACE_FOR_CHAR.
3446
3447 2008-02-01 Kenichi Handa <handa@m17n.org>
3448
3449 * keymap.c (where_is_internal_1): If key is a cons, store the copy
3450 in sequence.
3451
3452 * chartab.c (map_sub_char_table, map_char_table): If the range
3453 contains just one character, call the function with that character
3454 even if the depth is not 3.
3455
3456 2008-02-01 Jason Rumney <jasonr@gnu.org>
3457
3458 * w32font.c (w32font_text_extents): Calculate metrics for the
3459 whole string.
3460
3461 2008-02-01 Jason Rumney <jasonr@gnu.org>
3462
3463 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
3464
3465 2008-02-01 Jason Rumney <jasonr@gnu.org>
3466
3467 * w32term.c (x_set_glyph_string_clipping): Use
3468 get_glyph_string_clip_rects.
3469 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
3470 Adjust for the change of struct glyph_string.
3471
3472 * w32font.c (w32font_draw): Do clipping here.
3473
3474 2008-02-01 Kenichi Handa <handa@m17n.org>
3475
3476 * xftfont.c (xftfont_draw): Adjust for the change of struct
3477 glyph_string.
3478
3479 * xterm.c (x_set_glyph_string_clipping): Use
3480 get_glyph_string_clip_rects.
3481 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
3482 Adjust for the change of struct glyph_string.
3483
3484 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
3485 the resulting clip(s}.
3486 (expose_overlaps): Add arg r. Change callers. Set it to
3487 row->clip temporarily.
3488 (expose_window): Redraw rows overlapping the exposed area.
3489
3490 * dispextern.h (struct glyph_row): New member clip.
3491 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
3492 clip_height, new member clip, and num_clips.
3493
3494 2008-02-01 Kenichi Handa <handa@m17n.org>
3495
3496 * data.c (Fchar_or_string_p): Fix docstring.
3497
3498 2008-02-01 Kenichi Handa <handa@m17n.org>
3499
3500 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
3501 create a temporal XftDraw object.
3502
3503 2008-02-01 Kenichi Handa <handa@m17n.org>
3504
3505 * font.c (Ffontp): Fix docstring.
3506
3507 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
3508 strong evidence of ISO-2022.
3509
3510 2008-02-01 Kenichi Handa <handa@m17n.org>
3511
3512 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
3513 SYNTAX_ENTRY_FOLLOW_PARENT.
3514
3515 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
3516
3517 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
3518 its type.
3519 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
3520 Update to the new type of weak_hash_tables and next_weak.
3521
3522 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
3523 a plain C pointer to Lisp_Hash_Table.
3524
3525 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
3526 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
3527 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
3528 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
3529 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
3530 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
3531 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
3532 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
3533 (GC_EQ): Remove since they've been identical to their non-GC_
3534 alter-egos ever since the markbit was eradicated.
3535
3536 * alloc.c:
3537 * buffer.c:
3538 * buffer.h:
3539 * data.c:
3540 * fileio.c:
3541 * filelock.c:
3542 * fns.c:
3543 * frame.h:
3544 * lisp.h:
3545 * macterm.c:
3546 * print.c:
3547 * process.c:
3548 * w32fns.c:
3549 * w32menu.c:
3550 * w32term.c:
3551 * xfns.c:
3552 * xmenu.c:
3553 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
3554
3555 2008-02-01 Kenichi Handa <handa@m17n.org>
3556
3557 * chartab.c (map_sub_char_table): Make it work for the top-level
3558 char-table. Fix handling of parent char-table.
3559 (map_char_table): Adjust for the above change.
3560
3561 2008-02-01 Jason Rumney <jasonr@gnu.org>
3562
3563 * w32font.c (Qgdi): Rename from Qw32.
3564
3565 2008-02-01 Jason Rumney <jasonr@gnu.org>
3566
3567 * w32bdf.c (get_quoted_string): Make function static.
3568
3569 2008-02-01 Kenichi Handa <handa@m17n.org>
3570
3571 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
3572 bigger ascent and descent than those of the font, use them as
3573 font's ascent and descent.
3574
3575 2008-02-01 Kenichi Handa <handa@m17n.org>
3576
3577 * Makefile.in (${lispsource}international/charprop.el): Move this
3578 target within "#ifdef HAVE_UNIDATA" and "#endif".
3579
3580 2008-02-01 Kenichi Handa <handa@m17n.org>
3581
3582 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
3583 (shortlisp): Add ../lisp/language/tai-viet.el.
3584
3585 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
3586
3587 * Makefile.in (${lispsource}international/charprop.el): Depend on
3588 temacs${EXEEXT}.
3589
3590 2008-02-01 Jason Rumney <jasonr@gnu.org>
3591
3592 * w32font.c (w32font_close): Delete the GDI font object.
3593
3594 * w32menu.c: Include character.h.
3595
3596 * w32proc.c: Likewise.
3597
3598 * w32select.c: Likewise.
3599
3600 * makefile.w32-in (w32proc.o): Depend on character.h.
3601
3602 2008-02-01 Jason Rumney <jasonr@gnu.org>
3603
3604 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
3605
3606 * w32menu.c (syms_of_w32menu): Likewise.
3607
3608 * w32proc.c (syms_of_ntproc): Likewise.
3609
3610 * w32select.c (syms_of_w32select): Likewise.
3611
3612 * w32term.c (syms_of_w32term): Likewise.
3613
3614 2008-02-01 Jason Rumney <jasonr@gnu.org>
3615
3616 * w32font.c (w32font_draw): Delete brush after using it.
3617
3618 2008-02-01 Jason Rumney <jasonr@gnu.org>
3619
3620 * w32font.c (w32font_open): Don't set font_idx.
3621 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
3622 to font settings.
3623 (w32font_draw): Fill background explicitly.
3624
3625 2008-02-01 Jason Rumney <jasonr@gnu.org>
3626
3627 * w32term.c (w32_initialize): Don't call w32font_initialize.
3628
3629 * w32font.c (w32font_info): Remove subranges.
3630 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
3631 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
3632 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
3633 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
3634 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
3635 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
3636 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
3637 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
3638 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
3639 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
3640 New symbols.
3641 (font_callback_data): New struct.
3642 (w32font_list, w32font_match): Use it.
3643 (w32font_open): Don't populate subranges.
3644 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
3645 (w32font_encode_char): Always return unicode code-point as-is.
3646 (w32font_text_extents): Supply a tranformation matrix to
3647 GetGlyphOutline. Never look up by glyph index. Avoid looping
3648 twice. Use unicode version of GetTexExtentPoint32 instead of
3649 glyph index version.
3650 (set_fonts_frame): Remove
3651 (w32_enumfont_pattern_entity): Add frame parameter, use it to
3652 set frame parameter. Use backward compatible fake foundries.
3653 Save generic family in extra slot under QCfamily. Make width slot
3654 constant. Save QCspacing value. Save list of scripts instead of
3655 binary subranges.
3656 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
3657 (add_font_entity_to_list): Use font_callback_data struct. Filter
3658 unwanted fonts.
3659 (add_one_font_entity_to_list): Use font_callback_data struct.
3660 (w32_registry): Default to iso10646_1.
3661 (fill_in_logfont): Use dpi from extra slot. Don't bother with
3662 string font registries. Don't fill in font name if it is a generic
3663 family name, fill family instead. Use spacing, family and script
3664 extra info to fill pitch, family and charset fields.
3665 (list_all_matching_fonts): Use font_callback_data struct.
3666 (unicode_range_for_char): Remove.
3667 (font_supported_scripts): New function.
3668 (w32font_initialize): Remove.
3669 (syms_of_w32font): Update which symbols are defined.
3670
3671 2008-02-01 Jason Rumney <jasonr@gnu.org>
3672
3673 * font.c (font_pixel_size): Reverse assq_no_quit args.
3674
3675 * w32term.h (FONT_WIDTH): Report max width, not average.
3676 (FONT_MAX_WIDTH): Remove.
3677 (FONT_AVG_WIDTH): New macro.
3678
3679 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
3680 redefinition of FONT_WIDTH.
3681
3682 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
3683 (w32_cache_char_metrics): Use FONT_WIDTH.
3684
3685 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
3686
3687 2008-02-01 Jason Rumney <jasonr@gnu.org>
3688
3689 * w32font.c (w32font_open): Make lfHeight negative.
3690
3691 * w32fns.c (x_default_font_parameter): Use new style font name.
3692 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
3693
3694 2008-02-01 Jason Rumney <jasonr@gnu.org>
3695
3696 * w32font.c (QCsubranges): New symbol.
3697 (w32font_open, w32font_has_char): Get subranges from subproperty
3698 of extra.
3699 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
3700 (syms_of_w32font): Define :subranges symbol.
3701
3702 * font.c (font_put_extra): Expose externally.
3703
3704 * font.h (font_put_extra): Move declaration from font.c.
3705
3706 * font.c (Ffont_get): Use font driver to determine otf capability.
3707 (adjust_anchor): Check if driver defines anchor_point before using.
3708
3709 * w32font.c (w32font_open): Handle size, height and pixel_size better.
3710 (w32font_draw): Use options.
3711 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
3712 Fix detection of truetype fonts.
3713 (registry_to_w32_charset): Handle charsets other than iso8859-1
3714 expressed as lisp symbols.
3715 (w32_registry): Express charset as lisp symbol.
3716 (fill_in_logfont): Reverse pixel and point height logic.
3717 Don't set width here. Set quality to default.
3718
3719 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
3720 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
3721
3722 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
3723 Remove redundant loop and allocation.
3724
3725 * makefile.w32-in (font.o, w32font.o): New objects.
3726 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
3727 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
3728
3729 * xdisp.c (fill_composite_glyph_string): Make the first arg to
3730 STORE_XCHARB a valid l-value.
3731
3732 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
3733 calculations for non-Truetype fonts.
3734 (x_draw_glyph_string): Sync with xterm.c.
3735 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]: Remove
3736 redundant code.
3737 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
3738
3739 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
3740 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
3741
3742 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
3743 (x_to_w32_charset, w32_to_x_charset): Expose externally.
3744
3745 * w32font.c: New file for w32 font backend.
3746
3747 2008-02-01 Kenichi Handa <handa@m17n.org>
3748
3749 * term.c: Don't include "buffer.h" twice.
3750
3751 2008-02-01 Kenichi Handa <handa@m17n.org>
3752
3753 * character.c (Funibyte_string): New function.
3754 (syms_of_character): Defsubr it.
3755
3756 2008-02-01 Jason Rumney <jasonr@gnu.org>
3757
3758 * w32term.c [USE_FONT_BACKEND]:
3759 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc):
3760 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly):
3761 (x_draw_glyph_string, x_draw_glyph_string_foreground):
3762 (x_draw_composite_glyph_string_foreground, x_new_fontset2):
3763 (x_free_frame_resources): Sync with xterm.c.
3764
3765 2008-02-01 Andreas Schwab <schwab@suse.de>
3766
3767 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
3768 char-table size.
3769
3770 2008-02-01 Kenichi Handa <handa@m17n.org>
3771
3772 * font.c (check_otf_features): Define it regardless of
3773 HAVE_LIBOTF.
3774
3775 2008-02-01 Kenichi Handa <handa@m17n.org>
3776
3777 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
3778 font_otf_gpos, add font_drive_otf.
3779
3780 * fontset.c (fontset_find_font): Pay attention to font size
3781 specified for a font.
3782 (reorder_font_vector): Check contents of font_def.
3783
3784 * font.c (struct otf_list): Delete it.
3785 (otf_list): Make it a lisp variable.
3786 (otf_open): Use lispy otf_list.
3787 (generate_otf_features): Rename from parse_gsub_gpos_spec.
3788 (check_otf_features): New function.
3789 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor): New
3790 functinos.
3791 (font_drive_otf): New function merging font_otf_gsub and
3792 font_otf_gpos.
3793 (font_open_for_lface): New arg spec. Change argument order.
3794 (font_load_for_face): Adjust for the change of font_open_for_lface.
3795 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
3796 Ffont_otf_gpos.
3797 (syms_of_font): Staticpro otf_list. Delete defsubr of
3798 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
3799
3800 * xfaces.c (set_font_frame_param): Adjust for the change of
3801 font_open_for_lface.
3802
3803 * font.h (font_open_for_lface): Adjust prototype.
3804 (struct font_driver): Delete members otf_gsub and otf_gpos, add
3805 member otf_drive.
3806 (font_otf_gsub, font_otf_gpos): Delete externs.
3807 (font_drive_otf): Extern it.
3808
3809 2008-02-01 Kenichi Handa <handa@m17n.org>
3810
3811 * font.c (font_at): If the window W is not on a window system,
3812 return Qnil.
3813
3814 * coding.c (produce_chars, encode_coding): Don't call
3815 insert_from_gap if no characters to produce.
3816
3817 2008-02-01 Kenichi Handa <handa@m17n.org>
3818
3819 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
3820 Fclear_face_cache.
3821
3822 * xfaces.c (face_for_font): Check also face->font==font->font.font.
3823
3824 2008-02-01 Miles Bader <miles@gnu.org>
3825
3826 * emacs.c (main): Change default value of `enable_font_backend' to 1.
3827 Parse "--disable-font-backend" option.
3828 (standard_args): Add "--disable-font-backend" option.
3829
3830 2008-02-01 Kenichi Handa <handa@m17n.org>
3831
3832 * fontset.c (fontset_find_font): New function.
3833 (fontset_font): Use fontset_find_font.
3834 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
3835 Register the specified font for all Latin characters.
3836 (new_fontset_from_font): Register the specified font for all Latin
3837 characters.
3838 (dump_fontset): For a realized fontset, include the base fontset
3839 name in the returned vector.
3840
3841 2008-02-01 Kenichi Handa <handa@m17n.org>
3842
3843 * character.h (CHAR_STRING): Cast C to unsigned on calling
3844 char_string.
3845
3846 * character.c (char_string): Type of arg C changed to unsigned.
3847 Signal an error if C is an invalid character code.
3848
3849 * editfns.c (general_insert_function, Fchar_to_string):
3850 Use CHARACTERP, not INTEGERP.
3851
3852 2008-02-01 Kenichi Handa <handa@m17n.org>
3853
3854 * character.h (MIN_MULTIBYTE_LEADING_CODE)
3855 (MAX_MULTIBYTE_LEADING_CODE): New macros.
3856
3857 * regex.c (analyse_first): Fix for multibyte characters in "case
3858 charset:" and "case categoryspec:".
3859
3860 2008-02-01 Andreas Schwab <schwab@suse.de>
3861
3862 * Makefile.in (LIBES): Move standard libraries to the end.
3863
3864 2008-02-01 Kenichi Handa <handa@m17n.org>
3865
3866 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
3867 nonzero, don't shrink the buffer nextb.
3868
3869 * buffer.h (struct buffer_text): New member inhibit_shrinking.
3870
3871 * coding.c (coding_alloc_by_making_gap): New arg offset.
3872 (alloc_destination): Call coding_alloc_by_making_gap with the arg
3873 offset.
3874 (decode_coding_iso_2022): Update coding->safe_charsets.
3875 (decode_coding_gap): Temporarily set
3876 current_buffer->text->inhibit_shrinking to 1.
3877
3878 2008-02-01 Kenichi Handa <handa@m17n.org>
3879
3880 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
3881 indexing into elements of s->cmp and s->char2b.
3882
3883 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
3884
3885 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
3886
3887 2008-02-01 Kenichi Handa <handa@m17n.org>
3888
3889 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
3890 target_multibyte instead of multibyte.
3891 (re_match_2_internal): Call bcmp_translate with target_multibyte.
3892 (bcmp_translate): Change the argument name from multibyte to
3893 target_multibyte.
3894
3895 2008-02-01 Kenichi Handa <handa@m17n.org>
3896
3897 These changes are to compile a regexp into a pattern that can be
3898 used both for multibyte and unibyte targets.
3899
3900 * Makefile.in (search.o): Depend on charset.h.
3901
3902 * character.c (multibyte_char_to_unibyte_safe): New function.
3903
3904 * search.c: Include "charset.h".
3905 (compile_pattern_1): Delete argument multibyte. Don't set
3906 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
3907 (compile_pattern): Don't compare cp->buf.target_multibyte.
3908 Compare cp->buf.charset_unibyte.
3909 (compile_pattern): Set cp->buf.target_multibyte.
3910
3911 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
3912
3913 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
3914
3915 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
3916 multibyte. Change callers.
3917 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
3918 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
3919 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
3920 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
3921 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
3922 (regex_compile): Make the compiled pattern usable both for
3923 multibyte and unibyte targets.
3924 (analyse_first): Make the fastmap usable both for multibyte and
3925 unibyte targets.
3926 (TRANSLATE_VIA_MULTIBYTE): Delete.
3927 (re_match_2_internal): Pay attention to the case that the
3928 multibyteness of bufp and target may be different.
3929
3930 2008-02-01 Kenichi Handa <handa@m17n.org>
3931
3932 * xdisp.c (x_produce_glyphs): When a font is not found, make the
3933 empty box occupy at least one column width.
3934
3935 2008-02-01 Miles Bader <miles@gnu.org>
3936
3937 * Makefile.in: Remove redundant HAVE_XFT clause.
3938
3939 2008-02-01 Kenichi Handa <handa@m17n.org>
3940
3941 * xrdb.c (x_load_resources): Setup the default fontSet X reource.
3942
3943 2008-02-01 Kenichi Handa <handa@m17n.org>
3944
3945 * fontset.c (Finternal_char_font): Fix for the case of POSITION
3946 being nil.
3947
3948 2008-02-01 Kenichi Handa <handa@m17n.org>
3949
3950 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
3951
3952 2008-02-01 Kenichi Handa <handa@m17n.org>
3953
3954 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
3955
3956 2008-02-01 Kenichi Handa <handa@m17n.org>
3957
3958 * search.c (simple_search): Fix previous change.
3959
3960 2008-02-01 Kenichi Handa <handa@m17n.org>
3961
3962 * xftfont.c (ftfont_font_format): Extern declaration.
3963
3964 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
3965
3966 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
3967 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
3968
3969 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
3970 (ftfont_font_format): Fix previous change.
3971
3972 * font.h (Ffont_xlfd_name): EXFUN it.
3973
3974 * font.c (font_parse_xlfd): Fix the array size of `f'.
3975 (register_font_driver): Use EQ to compare driver->type.
3976
3977 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
3978 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
3979 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
3980
3981 2008-02-01 Kenichi Handa <handa@m17n.org>
3982
3983 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
3984 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
3985
3986 2008-02-01 Kenichi Handa <handa@m17n.org>
3987
3988 * xfont.c (xfont_open): Set font->format.
3989
3990 * xftfont.c (xftfont_open): Set font->format.
3991
3992 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
3993 (ftfont_list): Include FC_FONTFORMAT in FcObject.
3994 (ftfont_open): Set font->format.
3995 (ftfont_font_format): New function.
3996
3997 * font.h (struct font): New memeber format.
3998
3999 * font.c (Qopentype): New variable.
4000 (syms_of_font): Defsym it.
4001 (Fquery_font): Change the format of the last element of the return
4002 value.
4003
4004 2008-02-01 Kenichi Handa <handa@m17n.org>
4005
4006 * xfns.c (xic_create_xfontset): Try the default fontset name as a
4007 last resort.
4008
4009 2008-02-01 Kenichi Handa <handa@m17n.org>
4010
4011 * coding.c (detect_coding_charset): Fix detection of multi-byte
4012 charset.
4013
4014 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
4015
4016 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
4017
4018 2008-02-01 Kenichi Handa <handa@m17n.org>
4019
4020 * xdisp.c (get_next_display_element): Set it->face_id for the
4021 first component of a composition.
4022 (x_produce_glyphs): Check if the font is changed or not for composition.
4023
4024 2008-02-01 Kenichi Handa <handa@m17n.org>
4025
4026 (get_next_display_element): Set it->face_id for the
4027 first component of a composition.
4028 (x_produce_glyphs): Check if the font is changed or not for composition.
4029
4030 2008-02-01 Kenichi Handa <handa@m17n.org>
4031
4032 * fontset.c (Qlatin): New variable.
4033 (syms_of_fontset): Define it as a lisp symbol.
4034 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
4035
4036 2008-02-01 Kenichi Handa <handa@m17n.org>
4037
4038 * font.c (font_unparse_fcname): Pay attention to the case that
4039 some of font property is a null string.
4040
4041 2008-02-01 Kenichi Handa <handa@m17n.org>
4042
4043 * term.c: Include "composite.h".
4044 (encode_terminal_code): Output all components of composition.
4045 Check the size of encode_terminal_src.
4046 (produce_glyphs): For composition, call produce_composite_glyph.
4047 (append_composite_glyph, produce_composite_glyph): New functions.
4048
4049 * xdisp.c (x_produce_glyphs): In handling composition, if a font
4050 is not found, get font_info from the current ascii face.
4051
4052 2008-02-01 Kenichi Handa <handa@m17n.org>
4053
4054 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
4055 buffer-file-name to Qnil before calling insert_from_buffer.
4056
4057 * font.c (font_unparse_fcname): Pay attention to the case that
4058 foundry is a null string.
4059
4060 2008-02-01 Kenichi Handa <handa@m17n.org>
4061
4062 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
4063
4064 * font.c (Qunicode_sip): New variable.
4065 (syms_of_font): Declare it as a Lisp symbol.
4066
4067 * font.h (Qunicode_sip): Extern it.
4068
4069 2008-02-01 Kenichi Handa <handa@m17n.org>
4070
4071 * composite.c (get_composition_id): Pay attention to TAB component.
4072
4073 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
4074 TAB. Adjust for the change of s->char2b which always points to
4075 the first elememnt of allocated memory.
4076
4077 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
4078
4079 * xdisp.c (handle_composition_prop): Set it->c to the first
4080 non-TAB component.
4081 (fill_composite_glyph_string): Change argument.
4082 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
4083 (x_produce_glyphs): Fix handling of left/right padding.
4084
4085 2008-02-01 Kenichi Handa <handa@m17n.org>
4086
4087 * coding.c (detect_coding_system): Fix for handling off
4088 inhibit_iso_escape_detection. Fix for the case that no coding
4089 system is defined for a specific coding category.
4090
4091 2008-02-01 Kenichi Handa <handa@m17n.org>
4092
4093 * font.c (font_matching_entity): Delete unused local var.
4094
4095 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
4096 opening a font.
4097
4098 * fileio.c (Finsert_file_contents): On recovering a file, assume
4099 Unix-like eol.
4100 (choose_write_coding_system): On auto-saving a file, force
4101 Unix-like eol.
4102
4103 * coding.c (setup_coding_system): Fix setting of
4104 coding->common_flags based on eol_type.
4105 (coding_inherit_eol_type): If PARENT is not nil, be sure to
4106 inherit from it.
4107
4108 2008-02-01 Kenichi Handa <handa@m17n.org>
4109
4110 * alloc.c (NSTATICS): Increas to 0x600.
4111
4112 2008-02-01 Kenichi Handa <handa@m17n.org>
4113
4114 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
4115 (ftfont_list): Don't check :name property.
4116 (ftfont_match): New function.
4117 (ftfont_pattern_entity): If the pattern doesn't contain
4118 FC_SPACING, don't assuce FC_MONO.
4119
4120 * font.h (struct font_driver): New member `match'.
4121 (font_update_drivers): Adjust prototype.
4122
4123 * font.c (font_parse_fcname, font_parse_name): Don't change :name
4124 property of FONT.
4125 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
4126 them unconditionally.
4127 (font_matching_entity): New function.
4128 (font_open_by_name): Try font_matching_entity if exact match is
4129 not found.
4130 (font_update_drivers): Delete the arg FONT. Return a list of
4131 actually used backends. Don't free faces, font caches here.
4132 Don't store data in frame parameters. Don't call x_set_font.
4133 (Ffont_spec): Store :name property as is.
4134 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
4135 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
4136 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
4137 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
4138 Call font->driver->otf_gsub instead of font_otf_gsub.
4139
4140 * frame.c (x_set_font_backend): Do more works that were done in
4141 font_update_drivers before.
4142
4143 * xfont.c (xfont_match): New function.
4144 (xfont_driver): Set xfont_driver.match to xfont_match.
4145 (xfont_draw): Set font in GC if necessary.
4146
4147 * ftxfont.c (ftxfont_match): New function.
4148 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
4149
4150 * xftfont.c (xftfont_match): New function.
4151 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
4152
4153 2008-02-01 Kenichi Handa <handa@m17n.org>
4154
4155 * font.h (struct font): New member scalable.
4156 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
4157 (font_otf_gsub): Adjust prototype.
4158
4159 * font.c (font_otf_capability): Fix handling of the default langsys.
4160 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
4161 Check the contents of SPEC.
4162 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
4163 (check_gstring): New function.
4164 (REPLACEMENT_CHARACTER): New macro.
4165 (font_otf_gsub): New arg alternate_subst. Be sure to set all
4166 glyph codes of GSTRING.
4167 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
4168 (font_prepare_composition): Set cmp->glyph_len.
4169 (font_open_entity): Set font->scalable.
4170 (Ffont_get): Handle :otf property.
4171 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
4172 functions.
4173 (Fquery_font): Use font->font.full_name.
4174 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
4175 Sfont_otf_alternates.
4176
4177 * ftfont.c (ftfont_open): Set font->font.full_name and
4178 font->font.name properly. Fix calculation of font->font.height
4179 and font->min_width.
4180
4181 * ftxfont.c (ftxfont_create_gcs): New function.
4182 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
4183 (ftxfont_draw_backgrond): Fix filling region.
4184 (ftxfont_default_fid): New function.
4185 (ftxfont_open): Set xfotn->fid to the return value of
4186 ftxfont_default_fid.
4187 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
4188 (ftxfont_done_face): Free only GCs that are created by
4189 ftxfont_create_gcs.
4190 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
4191
4192 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
4193 Clip to src->width, etc (not src->clip_XXX).
4194
4195 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
4196 FontBackend frame parameter.
4197
4198 2008-02-01 Kenichi Handa <handa@m17n.org>
4199
4200 * font.h (struct font_driver_list): New member `on'.
4201 (Fclear_font_cache): EXFUN it.
4202 (font_update_drivers): Extern it.
4203
4204 * font.c (font_unparse_fcname): Fix typo (swidth->width).
4205 (font_list_entities): Check driver_list->on.
4206 (register_font_driver): Initalize `on' member to 0.
4207 (font_update_drivers): New function.
4208 (Fclear_font_cache): Check driver_list->on.
4209
4210 * frame.h (Qfont_backend): Extern it.
4211 (x_set_font_backend): Extern it.
4212
4213 * frame.c (Qfont_backend): New variable.
4214 (frame_parms): New element for font-backend.
4215 (x_set_font_backend): New function.
4216
4217 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
4218 FontBackend frame parameter.
4219 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
4220 x_set_font_backend.
4221
4222 * xfont.c (xfont_list): Don't try listing by :name property if the
4223 name is not for XLFD.
4224
4225 2008-02-01 Kenichi Handa <handa@m17n.org>
4226
4227 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
4228 (LGLYPH_SET_TO): New macros.
4229 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
4230 element of G is vector or not.
4231 (font_at): Extern it.
4232
4233 * font.c: Include window.h.
4234 (font_lispy_object): New function.
4235 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
4236 end of valid glyph.
4237 (font_close_object): Fix getting (struct font *).
4238 (font_at): New function.
4239 (Ffont_get): If FONT is a font-object, get entity from it.
4240 (Ffont_make_gstring): Initialize elements of glyphs with nil.
4241 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
4242 range check.
4243 (Ffont_at): New function.
4244 (syms_of_font): Defsubr Sfont_at.
4245
4246 * xdisp.c (it_props): Move the entry for Qauto_composed to just
4247 before the entry for Qcomposition.
4248 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
4249 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
4250 the font in gstring.
4251 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
4252 LGLYPH_FORM (g) to detect the end of valid glyph.
4253 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
4254 we are composing with gstring.
4255
4256 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
4257 Check if adjustment is vector or not.
4258
4259 * Makefile.in (font.o): Make it depends on window.h.
4260
4261 2008-02-01 Kenichi Handa <handa@m17n.org>
4262
4263 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
4264 adjustment is vector or not.
4265
4266 2008-02-01 Miles Bader <miles@gnu.org>
4267
4268 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
4269
4270 2008-02-01 Kenichi Handa <handa@m17n.org>
4271
4272 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
4273 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
4274 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
4275
4276 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
4277 (DEVICE_DELTA): Fix typo.
4278 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
4279 LGLYPH format.
4280
4281 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
4282 the change of LGLYPH format.
4283
4284 2008-02-01 Kenichi Handa <handa@m17n.org>
4285
4286 * ftfont.c (ftfont_list): Fix typo.
4287 (ftfont_build_basic_charsets): Don't include letters with diacritics.
4288
4289 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
4290
4291 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
4292
4293 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
4294 xftface_info is non-NULL.
4295
4296 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
4297
4298 * ftfont.c (ftfont_list): Move misplaced #endif.
4299
4300 2008-02-01 Kenichi Handa <handa@m17n.org>
4301
4302 * ftfont.c (ftfont_list): Pay attention to the case that
4303 FC_CAPABILITY is not defined.
4304
4305 2008-02-01 Kenichi Handa <handa@m17n.org>
4306
4307 * xftfont.c (xftfont_open): Set charset related members to -1.
4308
4309 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
4310 QCname.
4311 (ftfont_open): Set charset related members to -1.
4312
4313 * fontset.c (Votf_script_alist): New variable.
4314 (syms_of_fontset): Initialize it.
4315 (fontset_font): Delete unused variable.
4316
4317 * fontset.h (Votf_script_alist): Extern it.
4318
4319 * font.c (font_find_for_lface): Optimize code.
4320
4321 * font.h (font_close_object, font_merge_old_spec): Extern them.
4322
4323 2008-02-01 Kenichi Handa <handa@m17n.org>
4324
4325 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
4326 (syms_of_font): Initialize them.
4327 (font_pixel_size): Allow float value in dpi.
4328 (font_prop_validate_type): Delete.
4329 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
4330 Change caller.
4331 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
4332 (font_prop_validate_extra): Delete.
4333 (font_prop_validate_spacing): New function.
4334 (font_property_table): Add elements for all known properties.
4335 (get_font_prop_index): Rename from check_font_prop_name. New
4336 argument FROM. Change caller.
4337 (font_prop_validate): Validate all known properties.
4338 (font_put_extra): Delete argument force. Change caller.
4339 (font_expand_wildcards): Make it static. Fix the way of shrinking
4340 the possible range.
4341 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
4342 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
4343 Change caller.
4344 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
4345 (font_parse_fcname): Delete argument merge. Fix parsing of point
4346 size. Don't validate properties values here. Change caller.
4347 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
4348 (font_open_by_name): Delete unused variable.
4349 (Ffont_spec): Likewise. Validate property values.
4350 (Ffont_match_p): New function.
4351
4352 * font.h (QCscalable): Extern it.
4353 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
4354
4355 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
4356
4357 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
4358 (xfont_list_pattern): New function.
4359 (xfont_list): Use xfont_list_pattern.
4360
4361 2008-02-01 Kenichi Handa <handa@m17n.org>
4362
4363 * font.h (Flist_fonts): EXFUN it.
4364
4365 2008-02-01 Jason Rumney <jasonr@gnu.org>
4366
4367 * w32term.c (w32_initialize): Add back smoothing_type and
4368 smoothing_enabled definitions.
4369
4370 2008-02-01 Kenichi Handa <handa@m17n.org>
4371
4372 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
4373 s->face->font on determining underline position.
4374
4375 2008-02-01 Kenichi Handa <handa@m17n.org>
4376
4377 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
4378 (font_has_char): Accept font-object too.
4379 (font_find_for_lface): Try at first with a size specified in face.
4380
4381 2008-02-01 Kenichi Handa <handa@m17n.org>
4382
4383 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
4384 font_open_by_name.
4385
4386 2008-02-01 Kenichi Handa <handa@m17n.org>
4387
4388 * font.h (QCspacing, QCdpi): Extern them.
4389 (enum font_spacing): New enum.
4390 (FONT_PIXEL_SIZE_QUANTUM): New macro.
4391
4392 * font.c (POINT_TO_PIXEL): Don't divice POINT by 10.
4393 (QCspacing, QCdpi): New variables.
4394 (syms_of_font): Initialize them.
4395 (font_pixel_size): New function.
4396 (font_put_extra): New function.
4397 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
4398 in FONT_EXTRA.
4399 (font_parse_fcname): Handle enumenrated values (e.g. bold).
4400 Fix handling font size. Add QCname property that contains only
4401 unknown properties.
4402 (font_score): Change argument. Change caller. Pay attention to
4403 FONT_PIXEL_SIZE_QUANTUM.
4404 (font_sort_entites, font_list_entities, font_find_for_lface)
4405 (font_open_for_lface, font_open_by_name): Fix handling of font size.
4406 (Ffont_spec): Add QCname property that contains only unknown properties.
4407
4408 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
4409 include weight in listing pattern, instead check weight of each
4410 listed font. Don't include scalable in pattern. Pay attention to
4411 FONT_PIXEL_SIZE_QUANTUM.
4412
4413 2008-02-01 Kenichi Handa <handa@m17n.org>
4414
4415 * font.c (font_parse_fcname): Fix parsing of point-size.
4416 (font_unparse_fcname): Produce symbolic names for style properties.
4417 (font_list_entities): Handle float size correctly.
4418 (font_open_by_name): Prefer `normal' property values if the name
4419 doesn't specify them.
4420
4421 * fontset.c (Finternal_char_font): Use font_get_name, not
4422 Ffont_xlfd_name.
4423
4424 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
4425 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
4426 pattern. Don't force scalable.
4427
4428 * xftfont.c (xftfont_open): For generating a name, start from
4429 96-byte buffer.
4430
4431 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
4432
4433 * frame.h (x_new_fontset2): Fix prototype.
4434
4435 2008-02-01 Kenichi Handa <handa@m17n.org>
4436
4437 * font.h (struct font_driver): Delete member parse_name.
4438 (font_match_p, font_get_spec, font_parse_fcname)
4439 (font_unparse_fcname): Extern them.
4440 (font_get_name): Adjust prototype.
4441
4442 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
4443 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
4444 (font_expand_wildcards): Fix handling ENCODING field. Avoid
4445 unnecessary checks for weight, slant, and swidth.
4446 (font_parse_fcname): New function.
4447 (font_unparse_fcname): New function.
4448 (font_parse_name): New function.
4449 (font_match_p): New function.
4450 (font_get_name): Change return value to Lisp string.
4451 (font_get_spec): New function.
4452 (Qunspecified, Qignore_defface): Don't extern them.
4453 (font_find_for_lface): Assume that LFACE is fully specified.
4454 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
4455 object, use it for FACE.
4456 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
4457 driver->parse_name.
4458 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
4459
4460 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
4461 prototype.
4462
4463 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
4464 argument F. Don't call Fnew_fontset. Instead, directly call
4465 make_fontset.
4466
4467 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
4468
4469 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
4470 of x_new_fontset2.
4471
4472 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
4473 (Qsans__serif): New variables.
4474 (ftfont_generic_family_list): New variable.
4475 (syms_of_ftfont): Initialize the above variables.
4476 (ftfont_pattern_entity): Delete argument NAME.
4477 (ftfont_list_generic_family): New function.
4478 (ftfont_parse_name): Delete this function.
4479 (ftfont_list): Try generic family only when FcFontList found no font.
4480 (ftfont_list_family): Fix args to FcObjectSetBuild.
4481
4482 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
4483 object in attrs[LFACE_FONT_INDEX].
4484 (set_lface_from_font_name): Cancel all changes for font-backend.
4485 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
4486 function.
4487 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
4488 font object in QCfont attribute.
4489 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
4490 (realize_default_face) [USE_FONT_BACKEND]: Call
4491 set_lface_from_font_and_fontset.
4492
4493 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
4494 "fixed", and signal error here if no suitable font was found.
4495
4496 * xfont.c (xfont_parse_name): Delete this function.
4497
4498 * xftfont.c (xftfont_open): Change coding style of error
4499 handling. Generate fontconfig's fontname pattern.
4500
4501 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
4502 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
4503
4504 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
4505 Both args FONTSET and FONT_OBJECT must be existing ones.
4506
4507 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4508
4509 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
4510
4511 2008-02-01 Kenichi Handa <handa@m17n.org>
4512
4513 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
4514
4515 * font.h (struct font): Fix typo.
4516
4517 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
4518 XLFD_XXX_INDEX.
4519 (enum xlfd_field_mask): New enum.
4520 (intern_font_field): Changed argument. Change caller. If digits
4521 are followed by non-digits, return a symbol.
4522 (font_expand_wildcards): New function.
4523 (font_parse_xlfd): Fix wildcard handling.
4524 (Ffont_spec): If :name is specified, reflect the info in the other
4525 properties.
4526
4527 * ftfont.c (ftfont_pattern_entity): Fix typo.
4528 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
4529 locale.
4530
4531 2008-02-01 Kenichi Handa <handa@m17n.org>
4532
4533 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
4534
4535 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
4536 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
4537 registry doesn't specify encoding part.
4538 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
4539 (font_open_by_name): At first try parsing the name.
4540 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
4541 as Lisp symbols.
4542
4543 * fontset.c (reorder_font_vector): Pay attention to the case that
4544 the 3rd element of font_def is nil.
4545 (fontset_font): For the default fontset, append one more fontset
4546 elements for a script-based font specification. Don't add script
4547 attribute on finding a font.
4548 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
4549 font name.
4550 (fontset_ascii_font): If a font can't be opened, return nil.
4551
4552 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
4553 (ftfont_pattern_entity): New function.
4554 (ftfont_get_cache): Assume that freetype_font_cache is already
4555 initialized.
4556 (ftfont_list): Handle the case that a file is specified in font
4557 name. Use ftfont_pattern_entity to generate entities.
4558 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
4559 (syms_of_ftfont): Initialize freetype_font_cache.
4560
4561 * xftfont.c (xftfont_open): Make the font name fontconfig's
4562 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
4563 (xftfont_close): Free font->font.name if not NULL.
4564
4565 * xfont.c (xfont_list): If script is specified for a font, return
4566 null_vector.
4567 (xfont_list_family): Declare argument type.
4568
4569 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
4570 name, set LFACE_FONT (lface) to nil.
4571
4572 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
4573 return Qnil.
4574
4575 2008-02-01 Kenichi Handa <handa@m17n.org>
4576
4577 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
4578 (standard_args): Add "-enable-font-backend".
4579
4580 2008-02-01 Kenichi Handa <handa@m17n.org>
4581
4582 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
4583 (struct xftdraw_list, xftdraw_list): Delete them.
4584 (register_xftdraw, check_xftdraw): Delete them.
4585 (xftfont_prepare_face): Don't call register_xftdraw.
4586 (xftfont_done_face): Don't call check_xftdraw.
4587 (xftfont_draw): Get backroudn color only when with_background is
4588 nonzero.
4589
4590 * xfont.c (xfont_encode_char): Fix calculation of char2b.
4591
4592 2008-02-01 Kenichi Handa <handa@m17n.org>
4593
4594 These changes are for the new font handling codes.
4595
4596 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
4597 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
4598 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
4599 (FONTSRC, FONTOBJ): New variables.
4600 (obj): Add $(FONTOBJ).
4601 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
4602 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
4603 @LIBOTF_LIBS@.
4604 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
4605 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
4606
4607 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
4608
4609 * character.h (Vscript_representative_chars): Extern it.
4610
4611 * character.c (Vscript_representative_chars): New variable.
4612 (syms_of_character): Declare it as a Lisp variable.
4613
4614 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
4615 enable_font_backend is nonzero, accept the composition method
4616 COMPOSITION_WITH_GLYPH_STRING.
4617
4618 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
4619 enumeration COMPOSITION_WITH_GLYPH_STRING.
4620
4621 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
4622 members clip_x, clip_y, clip_width, and clip_height.
4623 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
4624
4625 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
4626 --enable-font-backend. Call syms_of_font.
4627
4628 * fns.c (assoc_no_quit): New function.
4629
4630 * fontset.h (FONT_INFO_FROM_FACE): New macro.
4631 (face_for_font, new_fontset_from_font)
4632 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
4633
4634 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
4635 (fontset_font, fontset_ascii, face_for_char)
4636 (make_fontset_for_ascii_face, Ffont_info)
4637 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
4638 is nonzero, use font-backend mechanism.
4639 (find_font_encoding): Make it non-static.
4640 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
4641 New functions.
4642
4643 * frame.h (struct frame): New members resx and resy.
4644 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
4645 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
4646
4647 * frame.c [USE_FONT_BACKEND]: Include "font.h".
4648 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
4649
4650 * lisp.h (assoc_no_quit): Extern it.
4651
4652 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
4653 Through out the file, use FONT_INFO_FROM_FACE instead of
4654 FONT_INFO_FROM_ID, use get_per_char_metric instead of
4655 rif->per_char_metric.
4656 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
4657 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
4658 (get_glyph_face_and_encoding, fill_composite_glyph_string)
4659 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
4660 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
4661 nonzero, use font-backend mechanism.
4662 (get_per_char_metric): New function.
4663
4664 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
4665 (set_lface_from_font_name)
4666 (set_font_frame_param, free_realized_face)
4667 (prepare_face_for_display, clear_face_gcs)
4668 (Finternal_set_font_selection_order, realize_x_face)
4669 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
4670 font-backend mechanism.
4671 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
4672 (load_face_font) [USE_FONT_BACKEND]: Abort.
4673 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
4674 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
4675
4676 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
4677 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
4678 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
4679 nonzero, register all available font drivers. Call
4680 x_default_font_parameter for deciding a font.
4681 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
4682
4683 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
4684 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
4685 (x_set_glyph_string_clipping_exactly)
4686 (x_compute_glyph_string_overhangs)
4687 (x_draw_glyph_string_foreground)
4688 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
4689 (x_free_frame_resources) [USE_FONT_BACKEND]: If
4690 enable_font_backend is nonzero, use font-backend mechanism.
4691 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
4692
4693 2008-02-01 Kenichi Handa <handa@m17n.org>
4694
4695 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
4696 system_eol_type.
4697 (syms_of_coding): Initialize system_eol_type.
4698
4699 * process.c (Fset_process_coding_system): Inherit system's eol
4700 format if necessary.
4701
4702 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4703
4704 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
4705
4706 2008-02-01 Kenichi Handa <handa@m17n.org>
4707
4708 * coding.c (decode_eol): Pay attention to buffer relocation in
4709 del_range_2.
4710 (decode_coding): Call decode_eol before restoring undo_list.
4711
4712 2008-02-01 Kenichi Handa <handa@m17n.org>
4713
4714 * charset.c (Fdefine_charset_internal): Fix setting of
4715 emacs_mule_bytes.
4716
4717 2008-02-01 Kenichi Handa <handa@m17n.org>
4718
4719 * keyboard.c (read_char): Check if C is a character or not before
4720 looking up Vkeyboard_translate_table.
4721
4722 2008-02-01 Kenichi Handa <handa@m17n.org>
4723
4724 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
4725 condition to terminate the loop.
4726
4727 2008-02-01 Kenichi Handa <handa@m17n.org>
4728
4729 * coding.c (produce_composition): Compare charbuf[i] instead of
4730 args[i] against 0.
4731 (Fterminal_coding_system): Use EQ to compare Lisp objects.
4732
4733 2008-02-01 Kenichi Handa <handa@m17n.org>
4734
4735 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
4736 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
4737 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
4738 detect_coding.
4739 (emacs_mule_char): Handle old style (Emacs 20) component character
4740 of a composition.
4741 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
4742 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
4743 composition rule.
4744 (decode_coding_emacs_mule): Handle invalid bytes correctly.
4745
4746 2008-02-01 Kenichi Handa <handa@m17n.org>
4747
4748 * coding.c (encode_coding_ccl): Allocate destination dynamically
4749 when necessary.
4750
4751 2008-02-01 Kenichi Handa <handa@m17n.org>
4752
4753 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
4754 the loop. When quitted, show a proper error message.
4755
4756 2008-02-01 Kenichi Handa <handa@m17n.org>
4757
4758 * xterm.c (x_set_glyph_string_clipping_exactly): Set
4759 src->clip_head and src->clip_tail temporarily instead of src->hl.
4760
4761 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
4762 character sequence.
4763 (Fccl_execute_on_string): Use ASET, not XSET.
4764
4765 2008-02-01 Kenichi Handa <handa@m17n.org>
4766
4767 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
4768
4769 2008-02-01 Kenichi Handa <handa@m17n.org>
4770
4771 * coding.c (decode_coding): Fix the condition of terminating the
4772 decoding loop.
4773
4774 2008-02-01 Kenichi Handa <handa@m17n.org>
4775
4776 * data.c (Faset): On setting a character bigger than 255 in a
4777 unibyte string, signal an error instead of make the string multibyte.
4778
4779 2008-02-01 Kenichi Handa <handa@m17n.org>
4780
4781 * charset.c (map_charset_chars): Fix for ascii-compatible charset
4782 made by a mapping table.
4783
4784 2008-02-01 Kenichi Handa <handa@m17n.org>
4785
4786 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
4787 not.
4788 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
4789 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
4790
4791 * xterm.c (x_draw_composite_glyph_string_foreground): Check
4792 s->face is NULL or not.
4793
4794 2008-02-01 Kenichi Handa <handa@m17n.org>
4795
4796 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
4797 (x_draw_glyph_string): Fix drawing of right_overhang and
4798 left_overhang around/on cursor.
4799
4800 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
4801
4802 2008-02-01 Kenichi Handa <handa@m17n.org>
4803
4804 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
4805
4806 2008-02-01 Kenichi Handa <handa@m17n.org>
4807
4808 * coding.c (Fdefine_coding_system_internal)
4809 (Fdefine_coding_system_alias): Avoid a duplicated element in
4810 Vcoding_system_alist.
4811
4812 2008-02-01 Kenichi Handa <handa@m17n.org>
4813
4814 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
4815
4816 * coding.c (Qcoding_system_define_form): New variable.
4817 (syms_of_coding): Intern and staticpro it.
4818 (Fcoding_system_p): Check Qcoding_system_define_form.
4819 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
4820
4821 * coding.h (CODING_SYSTEM_P): If ID is not available, call
4822 Fcoding_system_p.
4823 (CHECK_CODING_SYSTEM): If ID is not available, call
4824 Fcheck_coding_system.
4825 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
4826 Try also Fcheck_coding_system.
4827
4828 2008-02-01 Kenichi Handa <handa@m17n.org>
4829
4830 * coding.c (code_conversion_restore): GCPRO arg.
4831
4832 2008-02-01 Kenichi Handa <handa@m17n.org>
4833
4834 * character.c (lisp_string_width): Check multibyteness of STRING.
4835
4836 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4837
4838 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
4839 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
4840 (decode_mac_font_name): Use decode_coding_c_string instead of
4841 decode_coding.
4842 (x_load_font): Initialize fontp->fontset to -1. Set
4843 fontp->encoding_type.
4844
4845 2008-02-01 Kenichi Handa <handa@m17n.org>
4846
4847 * search.c (search_buffer): Give up BM search on case-fold-search
4848 if one of a target character has a case-equivalence of different
4849 byte length even if that target charcter is an ASCII.
4850 (simple_search): Fix calculation of byte length of matched text.
4851 (boyer_moore): Fix handling of case-equivalent multibyte characters.
4852
4853 2008-02-01 Kenichi Handa <handa@m17n.org>
4854
4855 * coding.c (decode_coding): Fix handling of invalid bytes.
4856
4857 2008-02-01 Kenichi Handa <handa@m17n.org>
4858
4859 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
4860 Unicode characters.
4861
4862 2008-02-01 Kenichi Handa <handa@m17n.org>
4863
4864 * coding.c (encode_coding_object): If a pre-write-conversion
4865 function makes a new buffer, kill it.
4866
4867 2008-02-01 Kenichi Handa <handa@m17n.org>
4868
4869 * coding.c (QCascii_compatible_p): New variable.
4870 (syms_of_coding): Initialize it.
4871 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
4872 calling string_char.
4873 (record_conversion_result): Add `default:' case.
4874 (coding_charset_list): Delete unused variable `coding_type'.
4875 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
4876 property in the plist of the coding system.
4877 (Fcoding_system_put): Check QCascii_compatible_p.
4878
4879 2008-02-01 Miles Bader <miles@gnu.org>
4880
4881 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
4882 removed calculation of frame `f', as it's now used.
4883
4884 2008-02-01 Kenichi Handa <handa@m17n.org>
4885
4886 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
4887 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
4888 (UNIDATA): New variable.
4889 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
4890 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
4891 $(RUN_TEMACS) unconditionally.
4892
4893 2008-02-01 Kenichi Handa <handa@m17n.org>
4894
4895 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
4896 (admindir): New variable.
4897 ($(lispsource)international/charprop.el): New target.
4898
4899 2008-02-01 Miles Bader <miles@gnu.org>
4900
4901 * character.c (chars-in-region): Remove obsolete function.
4902 (syms_of_character): Remove its initialization.
4903
4904 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
4905
4906 * w32select.c (validate_coding_system)
4907 (setup_windows_coding_system): New functions.
4908 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
4909 setup_windows_coding_system.
4910 (setup_config, Fw32_get_clipboard_data): Use
4911 validate_coding_system.
4912 (Fx_selection_exists): Move call to setup_config to a place
4913 where signals are allowed.
4914
4915 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
4916 (Fcheck_coding_system): Add declarations.
4917
4918 2008-02-01 Kenichi Handa <handa@m17n.org>
4919
4920 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
4921
4922 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4923
4924 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
4925 string as the second argument for x_new_fontset.
4926
4927 2008-02-01 Kenichi Handa <handa@m17n.org>
4928
4929 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
4930 (encode_coding_object): Use safe_call instead of call2.
4931
4932 2008-02-01 Kenichi Handa <handa@m17n.org>
4933
4934 * fontset.c (Fset_fontset_font): Check family element of a given vector.
4935
4936 * Makefile.in (lisp): Include charprop.el.
4937
4938 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4939
4940 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
4941 Not sure if it's unnecessary.
4942
4943 2008-02-01 Steven Tamm <steventamm@mac.com>
4944
4945 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
4946 some possibly unnecessary fontset checking code that crashed
4947 when creating a new frame.
4948
4949 2008-02-01 Kenichi Handa <handa@m17n.org>
4950
4951 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
4952 lookup_face.
4953
4954 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
4955
4956 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
4957
4958 2008-02-01 Kenichi Handa <handa@m17n.org>
4959
4960 * coding.c: Cancel the change done in HEAD on 2008-02-01.
4961 (coding_charset_list): New function.
4962
4963 * coding.h (coding_charset_list): Extern it.
4964
4965 2008-02-01 Kenichi Handa <handa@m17n.org>
4966
4967 * fontset.c (Fset_fontset_font): Call find_font_encoding with
4968 concatenation of family and registry.
4969
4970 2008-02-01 Kenichi Handa <handa@m17n.org>
4971
4972 * character.h (BYTE8_STRING): Fix typo.
4973
4974 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
4975 string to multibyte (sync to HEAD).
4976
4977 * casefiddle.c (casify_region): Handle changes in byte-length
4978 using replace_range_2 (sync to HEAD).
4979
4980 2008-02-01 Andreas Schwab <schwab@suse.de>
4981
4982 * chartab.c (map_char_table): GCPRO table and arg.
4983
4984 2008-02-01 Kenichi Handa <handa@m17n.org>
4985
4986 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
4987 already at limit.
4988
4989 2008-02-01 Kenichi Handa <handa@m17n.org>
4990
4991 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
4992 instead of fast_c_string_match_ignore_case.
4993 (find_font_encoding): Change argument to Lisp_Object. Use
4994 fast_string_match_ignore_case instead of
4995 fast_c_string_match_ignore_case. Change caller.
4996
4997 2008-02-01 Kenichi Handa <handa@m17n.org>
4998
4999 * xdisp.c (get_next_display_element): In unibyte case, decide to
5000 display in octal form by checking a chacter by
5001 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
5002
5003 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
5004
5005 * character.c (unibyte_has_multibyte_table): New variable.
5006
5007 * character.h (unibyte_has_multibyte_table): Extern it.
5008 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
5009
5010 2008-02-01 Kenichi Handa <handa@m17n.org>
5011
5012 * coding.c (encode_coding_iso_2022): Fix handling of charset
5013 annotation.
5014
5015 2008-02-01 Kenichi Handa <handa@m17n.org>
5016
5017 * coding.c (setup_coding_system): If coding_system is nil, use
5018 Qundecided.
5019 (Fterminal_coding_system): Return nil if terminal coding system is
5020 `undecided'.
5021 (syms_of_coding): Define coding-system `undecided' here. Setup
5022 terminal_coding as `undecided'.
5023
5024 2008-02-01 Kenichi Handa <handa@m17n.org>
5025
5026 * xdisp.c (message_dolog, set_message_1): Call
5027 unibyte_char_to_multibyte with arg type int.
5028
5029 * lread.c (read1): Fix reading of a char-table.
5030
5031 * print.c (print_object): Include sub char-table in cicularities
5032 detection.
5033
5034 2008-02-01 Kenichi Handa <handa@m17n.org>
5035
5036 * keymap.c (where_is_internal_2): Fix for the case that KEY is a
5037 cons. Append the found sequences in car of ARGS instead of prepending.
5038
5039 2008-02-01 Kenichi Handa <handa@m17n.org>
5040
5041 * fileio.c (report_file_error): Make a unibyte string from
5042 strerror (errorno).
5043 (Fsubstitute_in_file_name): Fix the arg to
5044 unibyte_char_to_multibyte. It is evaluated twice.
5045
5046 2008-02-01 Kenichi Handa <handa@m17n.org>
5047
5048 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
5049
5050 2008-02-01 Kenichi Handa <handa@m17n.org>
5051
5052 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
5053 BOM is not found.
5054 (detect_coding, detect_coding_system): Optimization for ISO-2022
5055 when no 8-bit data is found.
5056
5057 2008-02-01 Jason Rumney <jasonr@gnu.org>
5058
5059 * w32fns.c (x_to_w32_font): Update to use new coding struct.
5060
5061 2008-02-01 Kenichi Handa <handa@m17n.org>
5062
5063 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
5064 CHARS.
5065
5066 2008-02-01 Steven Tamm <steventamm@mac.com>
5067
5068 * macterm.c (mac_encode_char): Add charset argument and update
5069 to use encoding_type.
5070 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
5071 switch to pure fontset.
5072 (decode_mac_font_name): Temporarily remove decoding.
5073 (x_font_name_to_mac_font_name): Temporarily remove encoding.
5074 (x_load_font): Temporarily remove encoding.
5075
5076 2008-02-01 Kenichi Handa <handa@m17n.org>
5077
5078 * xfaces.c (Fface_font): If frame is not on a window system,
5079 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
5080 refer to face->font.
5081 (split_font_name_into_vector, build_font_name_from_vector)
5082 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
5083 whne HAVE_WINDOW_SYSTEM is defined.
5084
5085 2008-02-01 Kenichi Handa <handa@m17n.org>
5086
5087 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
5088 (x_produce_glyphs): Fix setting of members of cmp in case
5089 cmp->glyph_len is zero.
5090
5091 * fontset.c (Fset_fontset_font): Fix docstring.
5092 (Ffontset_info): Make it backward compatible. New arg ALL.
5093
5094 2008-02-01 Kim F. Storm <storm@cua.dk>
5095
5096 * process.c (read_process_output): Grow decoding_buf when needed;
5097 this could cause a crash in allocate_string and compact_small_strings.
5098
5099 2008-02-01 Kenichi Handa <handa@m17n.org>
5100
5101 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
5102
5103 2008-02-01 Kenichi Handa <handa@m17n.org>
5104
5105 * coding.c (setup_coding_system): Set coding->common_flags
5106 correctly for raw-text.
5107 (consume_chars): On encoding unibyte text by raw-text, don't check
5108 multibyte form.
5109 (encode_coding): On encoding by raw-text, never use translation tables.
5110
5111 * fileio.c (e_write): Short cut for the case of no encoding.
5112
5113 2008-02-01 Kenichi Handa <handa@m17n.org>
5114
5115 * coding.c (detect_coding, detect_coding_system): Delete unused
5116 variables.
5117
5118 2008-02-01 Kenichi Handa <handa@m17n.org>
5119
5120 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
5121 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
5122
5123 2008-02-01 Kenichi Handa <handa@m17n.org>
5124
5125 * coding.c (Ffind_coding_systems_region_internal): Include
5126 raw-text and no-conversion in the result.
5127
5128 2008-02-01 Kenichi Handa <handa@m17n.org>
5129
5130 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
5131 (load_font_get_repertory): Delete unnecessary check of ENCODING of
5132 FONT_DEF.
5133 (font_def_arg, add_arg, from_arg, to_arg): New args.
5134 (set_fontset_font): Change argument.
5135 (Fset_fontset_font): Fix for the case that TARGET is a script
5136 name and charset name.
5137 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
5138
5139 2008-02-01 Kenichi Handa <handa@m17n.org>
5140
5141 * fontset.c (fontset_font): Rename from fontset_face. Change return
5142 value.
5143 (face_suitable_for_char_p, face_for_char): Adjust for the change
5144 of fontset_font.
5145 (make_fontset_for_ascii_face): Fix setting of the fontset element
5146 for ASCII.
5147 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
5148 to get a font name.
5149 (Ffontset_info): Adjust for the change of fontset_font.
5150
5151 * coding.c (emacs_mule_char): Check invalid code more regidly.
5152
5153 * character.h (LEADING_CODE_LATIN_1_MIN)
5154 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
5155
5156 2008-02-01 Kenichi Handa <handa@m17n.org>
5157
5158 * editfns.c (check_translation): New function.
5159 (Ftranslate_region_internal): Handle M:N mapping.
5160
5161 2008-02-01 Kenichi Handa <handa@m17n.org>
5162
5163 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
5164
5165 2008-02-01 Kenichi Handa <handa@m17n.org>
5166
5167 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
5168 goto invalid_code.
5169 (decode_coding_iso_2022): Fix handling of invalid designation.
5170
5171 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
5172 after calling code_conversion_save.
5173
5174 2008-02-01 Kenichi Handa <handa@m17n.org>
5175
5176 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
5177
5178 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
5179
5180 * fontset.c: Include "intervals.h".
5181 (fontset_face): Fix comparing of Lisp_Objects.
5182 (free_face_fontset, new_fontset_from_font_name): Fix
5183 Lisp_Object/int mixup.
5184
5185 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
5186
5187 * coding.c: Add many prototypes for static functions.
5188 (get_translation_table): Allow max_lookup to be NULL.
5189 (decode_coding, Ffind_coding_systems_region_internal)
5190 (Funencodable_char_position, Fcheck_coding_systems_region): Call
5191 get_translation_table with max_lookup NULL.
5192
5193 2008-02-01 Kenichi Handa <handa@m17n.org>
5194
5195 * coding.c (get_translation_table): Declare it as Lisp_Object.
5196 (LOOKUP_TRANSLATION_TABLE): New macro.
5197 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
5198 instead of CHAR_TABLE_REF.
5199
5200 2008-02-01 Kenichi Handa <handa@m17n.org>
5201
5202 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
5203 annotation data format.
5204 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
5205 Change arguments FROM and TO to single argument NCHARS. Change caller.
5206 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
5207 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
5208 (decode_coding_ccl, decode_coding_charset): Pay attention to
5209 coding->charbuf_used.
5210 (get_translation): New function.
5211 (produce_chars): New arguments translation_table and last_block.
5212 Translate characters here. Return number of carryover chars.
5213 Change caller.
5214 (produce_composition): New argument pos. Change caller.
5215 Adjust for the change of annotation data format.
5216 (produce_charset, produce_annotation): Likewise.
5217 (decode_coding, encode_coding): Don't call translate_chars.
5218 (consume_chars): New arg translation_table. Change caller.
5219 (translate_chars): Delete.
5220 (syms_of_coding): Make translation-table's number of extra slots 2.
5221
5222 2008-02-01 Kenichi Handa <handa@m17n.org>
5223
5224 * search.c (simple_search): Fix setting this_pos_byte in backward
5225 search.
5226
5227 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
5228 byte sequence.
5229 (detect_coding_ccl): Fix setting of the variable valids.
5230
5231 2008-02-01 Kenichi Handa <handa@m17n.org>
5232
5233 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
5234
5235 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
5236
5237 * editfns.c (Ftranslate_region_internal): Rename from
5238 Ftranslate_region. Accept a char-table in TABLE.
5239 (syms_of_editfns): Defsubr Stranslate_region_internal.
5240
5241 * xfaces.c (set_lface_from_font_name): If a font is specified for
5242 a frame, generate a fontset from the font.
5243 (build_scalable_font_name): If the scalable font is requested for
5244 a specific size, don't change that size.
5245 (try_font_list): Try a scalable font also in the case that a
5246 pattern string is specified.
5247
5248 2008-02-01 Kenichi Handa <handa@m17n.org>
5249
5250 * xfaces.c (Fface_font): New optional arg CHARACTER.
5251
5252 2008-02-01 Kenichi Handa <handa@m17n.org>
5253
5254 * charset.h (CHARSET_OFFSET): New macro.
5255
5256 2008-02-01 Kenichi Handa <handa@m17n.org>
5257
5258 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
5259
5260 * fontset.c (fontset_face): Handle the case that repertory is a
5261 char-table.
5262 (find_font_encoding): Return nil for unknown encoding.
5263 (Fset_fontset_font): Ignore a font of unknown encoding.
5264
5265 2008-02-01 Kenichi Handa <handa@m17n.org>
5266
5267 * keymap.c (describe_vector): Handle default value of a char table.
5268
5269 * fontset.c (fontset_face): Handle fallback fonts correctly.
5270 (Ffontset_info): Return infomation about fallback fonts.
5271
5272 2008-02-01 Kenichi Handa <handa@m17n.org>
5273
5274 * fontset.c (FONTSET_DEFAULT): New macro.
5275 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
5276 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
5277 the case that it is nil.
5278 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
5279 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
5280
5281 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
5282 subset or superset.
5283
5284 2008-02-01 Kenichi Handa <handa@m17n.org>
5285
5286 * emacs.c (main): Call init_charset after syms_of_XXX.
5287
5288 * charset.c (Vcharset_map_directory): Delete.
5289 (Vcharset_map_path): New variable
5290 (load_charset_map_from_file): Use Vcharset_map_path instead.
5291 (init_charset): Initialize Vcharset_map_path.
5292 (syms_of_charset): Delete declaration of "charset-map-directory",
5293 add declaration of "charset-map-path".
5294
5295 2008-02-01 Kenichi Handa <handa@m17n.org>
5296
5297 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
5298 ASCII only string.
5299
5300 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
5301
5302 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
5303 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
5304
5305 2008-02-01 Kenichi Handa <handa@m17n.org>
5306
5307 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
5308
5309 * coding.c (QCmnemonic, QCdefalut_char)
5310 (QCdecode_translation_table, QCencode_translation_table)
5311 (QCpost_read_conversion, QCpre_write_conversion): New variables.
5312 (get_translation_table): Return a list of translation tables if
5313 necessary.
5314 (decode_coding): Call get_translation_table with ENCODEP 0.
5315 (char_encodable_p): If translation_table is non-nil, always call
5316 translate_char.
5317 (Fdefine_coding_system_internal): Accept list of translation
5318 tables as :encode-translation-table and :decode-translation-table.
5319 (Fcoding_system_put): New function.
5320 (syms_of_coding): Declare new symbols. Defsubr
5321 Scoding_system_put.
5322 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
5323 typically JISX0212.
5324
5325 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
5326 when the charset is superset type.
5327
5328 * character.c (translate_char): Accept list of translation tables.
5329
5330 2008-02-01 Kenichi Handa <handa@m17n.org>
5331
5332 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
5333 (CODING_ATTR_TRANS_TBL): New macro.
5334
5335 * coding.c (get_translation_table): New function.
5336 (translate_chars): Fix the bug of skipping annotation data.
5337 (decode_coding, encode_coding): Utilize get_translation_table.
5338 (char_encodable_p, Funencodable_char_position): Translate char if
5339 necessary.
5340 (Ffind_coding_systems_region_internal)
5341 (Fcheck_coding_systems_region): Setup translation table for encode
5342 in a coding system attribute vector in advance.
5343 (Fdefine_coding_system_internal): Allow a symbol as translation
5344 table. For shift-jis type coding system, allow 4th charset.
5345
5346 2008-02-01 Kenichi Handa <handa@m17n.org>
5347
5348 * coding.c (decode_coding_sjis): Check the first byte rigidly.
5349
5350 * xdisp.c (get_next_display_element): Pass -1 as POS to
5351 FACE_FOR_CHAR if displaying a C-string.
5352
5353 2008-02-01 Kenichi Handa <handa@m17n.org>
5354
5355 * composite.c (get_composition_id): Handle xoff and yoff in a
5356 composition rule.
5357
5358 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
5359 (struct composition): New member lbearing and rbearing.
5360
5361 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
5362 (x_get_glyph_overhangs): Handle a composition glyph.
5363 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
5364
5365 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
5366 composition glyph.
5367
5368 2008-02-01 Kenichi Handa <handa@m17n.org>
5369
5370 * print.c: Include charset.h.
5371 (Vprint_charset_text_property): New variable.
5372 (Qdefault): Extern it.
5373 (PRINT_STRING_NON_CHARSET_FOUND)
5374 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
5375 (print_check_string_result): New variable.
5376 (print_check_string_charset_prop): New function.
5377 (print_prune_charset_plist): New variable.
5378 (print_prune_string_charset): New function.
5379 (print_object): Call print_prune_string_charset if
5380 Vprint_charset_text_property is not t.
5381 (print_interval): Print nothing if itnerval->plist is nil.
5382 (syms_of_print): Declare Vprint_charset_text_property as a lisp
5383 variable. Init and staticpro print_prune_charset_plist.
5384
5385 2008-02-01 Kenichi Handa <handa@m17n.org>
5386
5387 * fontset.c (new_fontset_from_font_name): Use the specified font
5388 for all characters in the new fontset.
5389
5390 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
5391 OBJECT args.
5392
5393 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
5394 OBJECT args for composition too.
5395
5396 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
5397 OBJECT args.
5398
5399 2008-02-01 Kenichi Handa <handa@m17n.org>
5400
5401 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
5402
5403 * fontset.c (reorder_font_vector): Adjust for the change of
5404 FONT_DEF format.
5405 (fontset_face): New arg id. Change caller.
5406 (face_for_char): New args pos and object.
5407 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF
5408 format.n
5409 (fs_query_fontset): Check NAME by Fassoc too.
5410 (Fset_fontset_font): Allow non-XLFD font name.
5411 (Ffontset_info): Adjust for the change of FONT_DEF format.
5412
5413 * fontset.h (face_for_char): Adjust prototype.
5414
5415 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
5416 (append_space, extend_face_to_end_of_line)
5417 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
5418 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
5419
5420 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
5421 POS and OBJECT args.
5422
5423 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
5424 POS and OBJECT args.
5425
5426 2008-02-01 Jason Rumney <jasonr@gnu.org>
5427
5428 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
5429 of GlobalAlloc'ed memory.
5430
5431 2008-02-01 Kenichi Handa <handa@m17n.org>
5432
5433 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
5434
5435 * charset.h (charset_table_used): Delete extern.
5436
5437 * charset.c (charset_table_used): Make it static.
5438 (map_charset_chars): Fix args to c_function with.
5439
5440 * chartab.c (map_sub_char_table_for_charset): Fix args to
5441 c_function with.
5442
5443 * coding.h (enum coding_result_code): Delete
5444 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
5445
5446 * coding.c (Qinsufficient_source, Qinconsistent_eol)
5447 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
5448 (Vlast_code_conversion_error): New variables.
5449 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
5450 (ONE_MORE_BYTE): Record error if any instead of signaling an
5451 error. If non-ASCII multibyte char is found, return the negative
5452 value of the code. All callers changed to check it.
5453 (ONE_MORE_BYTE_NO_CHECK): Likewise.
5454 (record_conversion_result): New function. Change all codes setting
5455 coding->result to call this function.
5456 (detect_coding_utf_8, decode_coding_utf_8)
5457 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
5458 Don't use the local variable incomplete.
5459 (emacs_mule_char): Change the second arg to `const'.
5460 (decode_coding): Fix of flushing out unprocessed data.
5461 (make_conversion_work_buffer): Fix making of a work buffer.
5462 (decode_coding_object): Return coding->dst_object.
5463
5464 * fontset.c (set_fontset_font): Fix args.
5465
5466 * lisp.h (CHARACTERBITS): Define as 22.
5467
5468 * process.c (send_process): Be sure to set coding->src_multibyte.
5469
5470 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
5471
5472 2008-02-01 Kenichi Handa <handa@m17n.org>
5473
5474 * xdisp.c (handle_auto_composed_prop): Give limit to
5475 Fnext_single_char_property_change.
5476
5477 2008-02-01 Kenichi Handa <handa@m17n.org>
5478
5479 * composite.c (syms_of_composite): Don't make the composition hash
5480 table weak.
5481
5482 * fontset.c (Fset_fontset_font): Fix docstring.
5483
5484 * lisp.h (detect_coding_system): Adjust prototype.
5485
5486 * fileio.c (kill_workbuf_unwind): Delete this function.
5487 (Finsert_file_contents): Adjust the call of detect_coding_system.
5488 Get conversion_buffer by code_conversion_save. Use the macor
5489 CODING_MAY_REQUIRE_DECODING. After decoding, update
5490 coding_system.
5491
5492 * coding.h (make_conversion_work_buffer): Delete extern.
5493 (code_conversion_save): Extern it.
5494
5495 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
5496 (CODING_GET_INFO): Delete argument eol_type. Change callers.
5497 (decode_coding_utf_8): Don't do eol converion.
5498 (detect_coding_utf_16): Check coding->src_chars, not
5499 coding->src_bytes. Add heuristics for those that have no signature.
5500 (decode_coding_emacs_mule, decode_coding_iso_2022)
5501 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
5502 Don't do eol converion.
5503 (adjust_coding_eol_type): Return a new coding system.
5504 (detect_coding): Don't detect eol. Fix for utf-16 detection.
5505 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
5506 each change.
5507 (decode_coding): Pay attention to undo_list. Do eol convesion for
5508 all types of coding-systems (if necessary).
5509 (Vcode_conversion_work_buf_list): Delete it.
5510 (Vcode_conversion_reused_workbuf): Rename from
5511 Vcode_conversion_reused_work_buf.
5512 (Vcode_conversion_workbuf_name): New variable.
5513 (reused_workbuf_in_use): New variable.
5514 (make_conversion_work_buffer): Delete the arg DEPTH.
5515 (code_conversion_restore): Change argument to cons.
5516 (code_conversion_save): Delete the argument BUFFER. Change callers.
5517 (detect_coding_system): New argument src_chars. Change callers.
5518 Fix for utf-16 detection.
5519 (init_coding_once): Don't use ISO_carriage_return.
5520 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
5521 reused_workbuf_in_use.
5522
5523 2008-02-01 Kenichi Handa <handa@m17n.org>
5524
5525 * keymap.c (store_in_keymap): Pay attention to the case that idx
5526 is a cons specifying a character range.
5527
5528 2008-02-01 Kenichi Handa <handa@m17n.org>
5529
5530 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
5531 HANDLED_RECOMPUTE_PROPS.
5532
5533 * coding.c (Fdefine_coding_system_internal): Fix checking of
5534 ascii compatibility.
5535
5536 2008-02-01 Kenichi Handa <handa@m17n.org>
5537
5538 * charset.c (find_charsets_in_text): Delete unused locale variable.
5539 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
5540
5541 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
5542 Resync charset_list to Vemacs_mule_charset_list.
5543
5544 * keymap.c (store_in_keymap): Pay attention to the case that idx
5545 is a cons specifying a character range.
5546
5547 2008-02-01 Kenichi Handa <handa@m17n.org>
5548
5549 * composite.c (update_compositions): Bind inhibit-read-only, etc
5550 to t before calling remove-list-of-text-properties.
5551
5552 * print.c (print_object): Always print ASCII chars as is.
5553
5554 2008-02-01 Kenichi Handa <handa@m17n.org>
5555
5556 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
5557
5558 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
5559 is a char table.
5560
5561 2008-02-01 Kenichi Handa <handa@m17n.org>
5562
5563 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
5564
5565 2008-02-01 Kenichi Handa <handa@m17n.org>
5566
5567 * xfaces.c (set_lface_from_font_name): Fix for the case that
5568 FONTNAME is not fontset name.
5569
5570 2008-02-01 Kenichi Handa <handa@m17n.org>
5571
5572 * fns.c (base64_encode_1): Fix previous change.
5573
5574 2008-02-01 Kenichi Handa <handa@m17n.org>
5575
5576 * fontset.c (set_fontset_font): New function.
5577 (Fset_fontset_font): If a font is specified for a charset, use
5578 map_charset_chars to store the font spec in a fontset.
5579
5580 2008-02-01 Kenichi Handa <handa@m17n.org>
5581
5582 * fontset.c (fontset_face): Create a fallback fontset on demand
5583 (make_fontset): Don't create a fallback fontset here.
5584 (free_face_fontset): Free a fallback fontset (if any) too.
5585 (n_auto_fontsets): Delete this variable.
5586 (auto_fontset_alist): New variable.
5587 (new_fontset_from_font_name): Check auto_fontset_alist.
5588 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
5589 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
5590 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
5591 Defsubr Sfontset_list_all.
5592
5593 2008-02-01 Kenichi Handa <handa@m17n.org>
5594
5595 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
5596
5597 2008-02-01 Kenichi Handa <handa@m17n.org>
5598
5599 * fontset.c (Fnew_fontset): Check NAME more rigidly.
5600
5601 2008-02-01 Kenichi Handa <handa@m17n.org>
5602
5603 * editfns.c (Fgoto_char): Fix docstring.
5604
5605 2008-02-01 Kenichi Handa <handa@m17n.org>
5606
5607 * insdel.c (insert_from_gap): Adjust intervals correctly.
5608
5609 2008-02-01 Jason Rumney <jasonr@gnu.org>
5610
5611 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
5612 (pfnGetFontUnicodeRanges): New dynamically loaded function.
5613 (w32_initialize): Try to load it.
5614 (x_get_font_repertory): Use it if available.
5615 (w32_encode_char): Add shortcut for unicode output.
5616
5617 * w32fns.c (w32_load_system_font): Default charset to -1.
5618 (x_to_w32_charset): Match all fonts for unicode.
5619 (w32_to_x_charset): New parameter matching. Don't return partial
5620 or wildcard charsets.
5621 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
5622 (w32_codepage_for_font): Return CP_UNICODE for unicode.
5623 (w32_to_x_font): Match charset to real charset.
5624 (enum_font_cb2): Always list unicode versions.
5625
5626 * makefile.w32-in (temacs): Increase EMHEAP.
5627
5628 2008-02-01 Jason Rumney <jasonr@gnu.org>
5629
5630 * w32term.c (w32_encode_char): New charset parameter.
5631 font_info.encoding becomes encoding_type.
5632 (x_get_font_repertory): New function. Warning: stub only!
5633 (x_new_font): Return quickly if font already set.
5634 (x_new_fontset): fontsetname parameter is Lisp_Object.
5635 Use new fs_query_fontset. Try new_fontset_from_font_name.
5636 Use fontset_name for return value.
5637
5638 * w32term.h: Declare x_get_font_repertory.
5639
5640 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
5641 place of find_charset_in_text. Use encode_coding_object in place
5642 of encode_coding.
5643 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
5644 decode_coding.
5645
5646 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
5647 of x_new_fontset.
5648 (w32_load_system_font): Initialize charset as unicode.
5649 font_info.encoding becomes encoding_type.
5650 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
5651 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
5652 (syms_of_w32fns): Set get_font_repertory_func.
5653
5654 * w32console.c: Include character.h. Use terminal_encode_buffer
5655 from term.c.
5656 (write_glyphs): Use new version of encode_terminal_code. Use
5657 encode_coding_object in place of encode_coding.
5658
5659 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
5660 encoding becomes encoding_type.
5661
5662 * term.c (terminal_encode_buffer): Make externally visible.
5663
5664 * makefile.w32-in: Add character.h dependancies.
5665 (character.o, chartab.o): New targets.
5666
5667 2008-02-01 Kenichi Handa <handa@m17n.org>
5668
5669 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
5670 CODING_ID_EOL_TYPE.
5671
5672 2008-02-01 Andreas Schwab <schwab@suse.de>
5673
5674 * coding.c (produce_chars): Revert last change.
5675
5676 2008-02-01 Kenichi Handa <handa@m17n.org>
5677
5678 * charset.h (charset_unicode): Extern it.
5679
5680 * charset.c (string_xstring_p): Check by (C >= 0x100).
5681 (find_charsets_in_text): Change format of the arc CHARSETS. New
5682 arg MULTIBYTE.
5683 (Ffind_charset_region, Ffind_charset_string): Adjust for the
5684 change of find_charsets_in_text.
5685 (Fsplit_char): Fix doc. Never return unknown.
5686
5687 * chartab.c (char_table_translate): Use CHARACTERP, not INETEGERP.
5688
5689 * coding.c (Fdefine_coding_system_alias): Update
5690 Vcoding_system_list.
5691
5692 * fontset.c (load_font_get_repertory): Pay attention to the case
5693 that ENCODING of a font is specified by a char-table.
5694
5695 * xterm.c (x_get_font_repertory): Handle the case that the
5696 encoding of font is other than Unicode.
5697
5698 2008-02-01 Kenichi Handa <handa@m17n.org>
5699
5700 * term.c (encode_terminal_code): Don't handle glyph-table. Check
5701 if a character is encodable by the terminal coding system. If
5702 not, produces proper number of `?'s. Update
5703 terminal_encode_buffer and terminal_encode_buf_size if necessary.
5704 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
5705
5706 2008-02-01 Kenichi Handa <handa@m17n.org>
5707
5708 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
5709 variables.
5710 (encode_terminal_code): Change argument. Encode multiple
5711 characters at once. Store the result of encoding in
5712 terminal_encode_buffer.
5713 (write_glyphs, insert_glyphs): Adjust for the change of
5714 encode_terminal_code.
5715 (term_init): Initialize terminal_encode_buffer and
5716 terminal_encode_buf_size.
5717
5718 * coding.c (consume_chars): If coding->src_object is nil, don't
5719 check annotation.
5720
5721 2008-02-01 Kenichi Handa <handa@m17n.org>
5722
5723 * character.c (char_string): Use ASCII_CHAR_P instead of
5724 SINGLE_BYTE_CHAR_P.
5725
5726 2008-02-01 Kenichi Handa <handa@m17n.org>
5727
5728 * xdisp.c (handle_auto_composed_prop): Check if the last
5729 characters of auto-composed region is newly composed with the
5730 following characters.
5731 (handle_composition_prop): Fix checking of point being inside
5732 composition.
5733
5734 2008-02-01 Kenichi Handa <handa@m17n.org>
5735
5736 * fns.c (concat): Don't change multibyteness of the result by
5737 concatenating an 8-bit character.
5738
5739 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
5740 multibyteness of the result when newelt is an 8-bit character.
5741
5742 2008-02-01 Dave Love <fx@gnu.org>
5743
5744 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
5745 EMACS_INT.
5746
5747 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
5748
5749 * xfaces.c (face_numeric_value): Declare dim size_t.
5750 (Finternal_lisp_face_equal_p): Remove unused f.
5751
5752 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
5753 (MATRIX_ROW): Remove unused vars.
5754 (draw_glyphs, x_insert_glyphs, fast_find_position)
5755 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
5756 byte/char counts.
5757
5758 * regex.c (regex_compile): Remove unused var.
5759
5760 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
5761
5762 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
5763 (Faccessible_keymaps, where_is_internal): Remove unused vars.
5764
5765 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
5766
5767 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
5768
5769 * fileio.c (Fwrite_region): Remove unused var.
5770
5771 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
5772 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
5773
5774 * composite.c (Fremove_list_of_text_properties): Declare.
5775
5776 * coding.c (inhibit_pre_post_conversion): Remove (unused).
5777 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
5778 (coding_inherit_eol_type): Remove unused attrs.
5779 (detect_coding): Cast arg of detect_eol.
5780
5781 * charset.c (syms_of_charset): Remove unused var p.
5782 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
5783 byte/char counts.
5784
5785 * casetab.c (set_case_table): Remove unused var.
5786
5787 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
5788 unused vars.
5789
5790 2008-02-01 Dave Love <fx@gnu.org>
5791
5792 * xterm.c (x_bitmap_mask): Declare.
5793
5794 2008-02-01 Dave Love <fx@gnu.org>
5795
5796 * xterm.c (x_term_init): Fix type error.
5797
5798 * lisp.h: Add Funibyte_char_to_multibyte.
5799
5800 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
5801 (Fset_coding_system_priority): Doc fix.
5802
5803 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
5804
5805 * indent.c (check_composition): Make start and end EMACS_INT.
5806
5807 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
5808
5809 * xdisp.c (handle_composition_prop, check_point_in_composition):
5810 Make buffer positions EMACS_INT.
5811
5812 * composite.c (find_composition, run_composition_function)
5813 (update_compositions, Ffind_composition_internal): Make buffer
5814 positions EMACS_INT.
5815
5816 * composite.h (find_composition, update_compositions): Make
5817 position args EMACS_INT.
5818
5819 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
5820
5821 * intervals.c (get_property_and_range):
5822 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
5823
5824 * unexalpha.c: Don't include varargs.h.
5825
5826 2008-02-01 Dave Love <fx@gnu.org>
5827
5828 * coding.h (ENCODE_UTF_8): New.
5829
5830 * Makefile.in (gtkutil.o): Depend on coding.h.
5831
5832 * coding.c (Fset_coding_system_priority): Doc fix.
5833
5834 2008-02-01 Kenichi Handa <handa@m17n.org>
5835
5836 * fileio.c (Finsert_file_contents): Call setup_coding_system in
5837 the case of auto saving.
5838
5839 2008-02-01 Andreas Schwab <schwab@suse.de>
5840
5841 * chartab.c (map_char_table, map_char_table_for_charset): Protect
5842 `range' from GC.
5843
5844 2008-02-01 Kenichi Handa <handa@m17n.org>
5845
5846 * coding.c (decode_coding_sjis): Check bytes more rigidly.
5847
5848 2008-02-01 Kenichi Handa <handa@m17n.org>
5849
5850 * fileio.c (choose_write_coding_system): Return a decided coding system.
5851 (Fwrite_region): Set Vlast_coding_system_used to the return value
5852 of choose_write_coding_system.
5853
5854 2008-02-01 Kenichi Handa <handa@m17n.org>
5855
5856 * charset.c (Fset_charset_priority): Pay attention to duplicated
5857 arguments.
5858
5859 * coding.c (QCcategory): New variable.
5860 (syms_of_coding): Defsym it. Set all elements of
5861 Vcoding_category_table and their symbol values.
5862 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
5863 coding-category-XXX, and coding-category-list.
5864 (Fdefine_coding_system_internal): Add category in the plist.
5865
5866 2008-02-01 Kenichi Handa <handa@m17n.org>
5867
5868 * callproc.c (Fcall_process): Handle carryover correctly.
5869
5870 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
5871 (raw_text_coding_system): Check NILP (coding_system).
5872 (coding_inherit_eol_type): Check NILP (coding_system) and
5873 NILP (parent).
5874 (consume_chars): Fix for the case of raw-text.
5875
5876 * process.c (read_process_output): Handle carryover correctly.
5877
5878 2008-02-01 Dave Love <fx@gnu.org>
5879
5880 * regex.c (re_search_2): Fix last change.
5881
5882 2008-02-01 Kenichi Handa <handa@m17n.org>
5883
5884 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
5885 target_multibyte. Even in a unibyte case, return a converted
5886 multibyte char.
5887 (GET_CHAR_AFTER): New macro.
5888 (PATFETCH): Translate via multibyte char.
5889 (HANDLE_UNIBYTE_RANGE): Delete this macro.
5890 (SETUP_MULTIBYTE_RANGE): New macro.
5891 (regex_compile): Setup compiled code so that its multibyteness
5892 matches that of a target. Fix the handling of "[X-YZ]" using
5893 SETUP_MULTIBYTE_RANGE.
5894 (analyse_first) <charset>: For filling fastmap for all multibyte
5895 characters, don't check by BASE_LEADING_CODE_P.
5896 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
5897 the same as RE_MULTIBYTE_P (bufp) now.
5898 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
5899 (TARGET_CHAR_AND_LENGTH): Delete this macro.
5900 (TRANSLATE_VIA_MULTIBYTE): New macro.
5901 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
5902 It is the same as RE_MULTIBYTE_P (bufp) now.
5903 <exactn>: Translate via multibyte.
5904 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
5905 translate it.
5906 <charset, charset_not>: Fetch a character by
5907 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
5908 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
5909 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
5910 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
5911 by GET_CHAR_AFTER.
5912 (bcmp_translate): Likewise.
5913
5914 * search.c (compile_pattern): Check the member target_multibyte,
5915 not the member multibyte of buf.
5916
5917 * lread.c (read1): While reading a string, set force_singlebyte
5918 and force_multibyte correctly.
5919
5920 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
5921 up of unibyte_to_multibyte_table.
5922
5923 2008-02-01 Kenichi Handa <handa@m17n.org>
5924
5925 * coding.c (setup_coding_system): If coding has
5926 post-read-conversion or pre-write-conversion, set
5927 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
5928 respectively.
5929 (decode_coding_gap): Run post-read-conversion if any.
5930
5931 * fileio.c (Finsert_file_contents): Even if we read into a
5932 unibyte buffer, check if we must decode the result or not.
5933
5934 2008-02-01 Kenichi Handa <handa@m17n.org>
5935
5936 * coding.c (make_conversion_work_buffer): Change the work buffer
5937 name to the same one as that of Emacs 21.
5938
5939 2008-02-01 Kenichi Handa <handa@m17n.org>
5940
5941 * coding.h (make_conversion_work_buffer): Adjust prototype.
5942 (code_conversion_restore): Don't extern it.
5943
5944 * coding.c (detected_mask): Delete unused variable.
5945 (decode_coding_iso_2022): Pay attention to the byte sequence of
5946 CTEXT extended segment, and retain those bytes as is.
5947 (decode_coding_ccl): Delete unused variable `valids'.
5948 (setup_coding_system): Delete unused variable `category'.
5949 (consume_chars): Delete unused variable `category'. Make it work
5950 for non-multibyte case.
5951 (make_conversion_work_buffer): Change argument.
5952 (saved_coding): Delete unused variable.
5953 (code_conversion_restore): Don't check saved_coding->destination.
5954 (code_conversion_save): New function.
5955 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
5956 instead of record_unwind_protect.
5957 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
5958 (detect_coding_system): Delete unused variable `mask'.
5959 (Fdefine_coding_system_internal): Delete unused vaiable id.
5960
5961 * fileio.c (kill_workbuf_unwind): New function.
5962 (Finsert_file_contents): On replacing, call
5963 make_conversion_work_buffer with correct args, and call
5964 record_unwind_protect with the first arg kill_workbuf_unwind.
5965
5966 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
5967
5968 2008-02-01 Kenichi Handa <handa@m17n.org>
5969
5970 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
5971 (fontset_add): Fix for the case that TO is less than TO1.
5972 (Ffontset_info): Don't use fallback fontset on checking the
5973 default fontset.
5974 (dump_fontset): New function for debugging.
5975
5976 * coding.c (Fdefine_coding_system_internal): Fix for the case that
5977 coding_type is Qcharset.
5978
5979 2008-02-01 Kenichi Handa <handa@m17n.org>
5980
5981 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
5982 (map_char_table): Don't inherit the value from the parent on
5983 initializing VAL. Adjust for the above change.
5984
5985 2008-02-01 Kenichi Handa <handa@m17n.org>
5986
5987 * coding.c (Qsignature, Qendian): Delete these variables.
5988 (syms_of_coding): Don't initialize them.
5989 (CATEGORY_MASK_UTF_16_AUTO): New macro.
5990 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
5991 detect_info->found.
5992 (decode_coding_utf_16): Don't detect BOM here.
5993 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
5994 is NOT utf_16_without_bom.
5995 (setup_coding_system): For a coding system of type utf-16, check
5996 if the attribute :endian is Qbig or not (not nil or not), and set
5997 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
5998 (detect_coding): If coding type is utf-16 and BOM detection is
5999 required, detect it.
6000 (Fdefine_coding_system_internal): For a coding system of type
6001 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
6002
6003 2008-02-01 Kenichi Handa <handa@m17n.org>
6004
6005 * coding.c (coding_set_source): Fix for the case that the current
6006 buffer is different from coding->src_object.
6007 (decode_coding_object): Don't use the conversion work buffer if
6008 DST_OBJECT is a buffer.
6009
6010 2008-02-01 Dave Love <fx@gnu.org>
6011
6012 * lread.c (read_emacs_mule_char) [len==2]: Index
6013 emacs_mule_charset correctly.
6014
6015 2008-02-01 Dave Love <fx@gnu.org>
6016
6017 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
6018 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
6019 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
6020 treated specially.)
6021 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
6022 (detected_mask): Remove Big5 bits.
6023
6024 2008-02-01 Kenichi Handa <handa@m17n.org>
6025
6026 The following changes are to make the font rescaling facility
6027 compatible with Emacs 21.
6028
6029 * xfaces.c (Vface_font_rescale_alist): Rename from
6030 Vface_resizing_fonts.
6031 (struct font_name): Rename member resizing_ratio to rescale_ratio.
6032 (font_rescale_ratio): Rename from font_resizing_ratio.
6033 (split_font_name): Set font->rescale_ratio.
6034 (better_font_p): Pay attention to font->rescale_ratio.
6035 (build_scalable_font_name): Likewise. Change RESX, and RESY
6036 fields.
6037 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
6038
6039 2008-02-01 Kenichi Handa <handa@m17n.org>
6040
6041 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
6042 (Qutf_16_le): Remove these variables.
6043 (syms_of_coding): Don't DEFSYM them.
6044 (decode_coding_utf_16): Fix handling of BOM.
6045 (encode_coding_utf_16): Fix handling of BOM.
6046
6047 2008-02-01 Kenichi Handa <handa@m17n.org>
6048
6049 * fileio.c (Finsert_file_contents): On replacing, before decoding
6050 the file into the work buffer, set point of the work buffer to the end.
6051
6052 2008-02-01 Dave Love <fx@gnu.org>
6053
6054 * coding.c (Fcheck_coding_systems_region): Fix type errors.
6055
6056 2008-02-01 Dave Love <fx@gnu.org>
6057
6058 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
6059 and fix C types.
6060
6061 2008-02-01 Kenichi Handa <handa@m17n.org>
6062
6063 * xdisp.c (SKIP_GLYPHS): New macro.
6064 (set_cursor_from_row): Pay attention to string display properties.
6065
6066 * category.c (copy_category_entry): Fix for the case that RANGE
6067 is an integer.
6068
6069 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
6070
6071 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
6072
6073 2008-02-01 Kenichi Handa <handa@m17n.org>
6074
6075 * charset.c (Fcharset_id_internal): New function.
6076 (syms_of_charset): Defsubr it.
6077
6078 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
6079 with the last arg charset_list acquired from coding.
6080 (Fdefine_coding_system_internal): For ccl-based coding system, fix
6081 the attribute coding_attr_ccl_valids.
6082
6083 * coding.h (enum define_coding_ccl_arg_index): Set the first
6084 member coding_arg_ccl_decoder to coding_arg_max.
6085
6086 * ccl.h (ccl_driver): Adjust prototype.
6087
6088 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
6089 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
6090 of DECODE_CAHR, ENCODE_CHAR, CHAR_CHARSET.
6091 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
6092 last arg Qnil.
6093
6094 2008-02-01 Kenichi Handa <handa@m17n.org>
6095
6096 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
6097 call encode_char.
6098
6099 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
6100
6101 2008-02-01 Dave Love <fx@gnu.org>
6102
6103 * composite.c (syms_of_composite): Make composition_hash_table weak.
6104
6105 2008-02-01 Kenichi Handa <handa@m17n.org>
6106
6107 * dispextern.h (check_face_attributes, generate_ascii_font_name)
6108 (font_name_registry): Don't extern them.
6109 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
6110
6111 * fontset.h (Qfontset): Don't extern it.
6112 (new_fontset_from_font_name): Extern it.
6113
6114 * fontset.c: Give 8 extra slots to fontset objects.
6115 (Qfontset_info): New variable.
6116 (syms_of_fontset): Defsym it.
6117 (FONTSET_FALLBACK): New macro.
6118 (fontset_face): Try also the default fontset.
6119 (make_fontset): Realize a fallback fontset from the default fontset.
6120 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
6121 using split_font_name_into_vector and build_font_name_from_vector.
6122 (Fset_fontset_font): Access the elements of font_spec by enum
6123 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
6124 name by using split_font_name_into_vector.
6125 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
6126 generate a proper font name from the fontset name. Update
6127 Vfontset_alias_alist.
6128 (n_auto_fontsets): New variable.
6129 (new_fontset_from_font_name): New function.
6130 (Ffont_info): Store the information about fonts generated from the
6131 default fontset in the first extra slot of the returned char-table.
6132
6133 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
6134 (font_name_registry): Delete function.
6135 (split_font_name_into_vector): New function.
6136 (build_font_name_from_vector): New function.
6137 (font_list): The argument REGISTRY is now a list of registry names.
6138 (choose_face_font): If we are choosing an ASCII font, and ATTRS
6139 specifies an explicit font name, return the name as is. Make a
6140 list of registy names.
6141
6142 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
6143 of x_new_fontset.
6144 (Fx_create_frame): Don't call x_new_fontset here. Just use
6145 x_list_fonts to check the existence of fonts.
6146
6147 * xterm.h (x_new_fontset): Adjust prototype.
6148
6149 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
6150 string. Use new_fontset_from_font_name to create a fontset from a
6151 font name.
6152
6153 2008-02-01 Kenichi Handa <handa@m17n.org>
6154
6155 * syntax.c (Vfind_word_boundary_function_table): New name for
6156 Vnext_word_boundary_function_table.
6157 (find-word-boundary-function-table): New name for
6158 next-word-boundary-function-table.
6159
6160 2008-02-01 Dave Love <fx@gnu.org>
6161
6162 * Makefile.in: Fix some dependencies.
6163
6164 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
6165 set it to nil before returning.
6166
6167 * composite.c (update_compositions): Fix type error.
6168
6169 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
6170
6171 2008-02-01 Kenichi Handa <handa@m17n.org>
6172
6173 * xterm.c (x_new_font): Optimize for the case that the font is
6174 already set for the frame.
6175
6176 2008-02-01 Kenichi Handa <handa@m17n.org>
6177
6178 * chartab.c (char_table_ascii): Check if the char table contents
6179 is sub-char-table or not.
6180 (char_table_set, char_table_set_range): Fix argument to
6181 char_table_ascii.
6182
6183 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
6184 (detect_coding_utf_8, detect_coding_utf_16)
6185 (detect_coding_emacs_mule, detect_coding_iso_2022)
6186 (detect_coding_sjis, detect_coding_big5)
6187 (detect_coding_ccl, detect_coding_charset): Change argument MASK
6188 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
6189 sequence is valid in this coding system. Change callers.
6190 (MAX_ANNOTATION_LENGTH): New macro.
6191 (ADD_ANNOTATION_DATA): New macro.
6192 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
6193 ADD_ANNOTATION_DATA. Change the format of annotation data.
6194 (ADD_CHARSET_DATA): New macro.
6195 (emacs_mule_char): New argument ID. Change callers.
6196 (decode_coding_emacs_mule, decode_coding_iso_2022)
6197 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
6198 Produce charset annotation data in coding->charbuf.
6199 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
6200 to charset annotation data in coding->charbuf.
6201 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
6202 coding->common_flags if the coding system is iso-2022 based and
6203 uses designation.
6204 (produce_composition): Adjust for the new annotation data format.
6205 (produce_charset): New function.
6206 (produce_annotation): Handle charset annotation.
6207 (handle_composition_annotation, handle_charset_annotation): New
6208 functions.
6209 (consume_chars): Handle charset annotation. Utilize the above two
6210 functions.
6211 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
6212 buffer, get the deleted text as a string and set
6213 coding->src_object to that string.
6214 (detect_coding, detect_coding_system): Use the new struct
6215 coding_detection_info.
6216
6217 * coding.h (struct coding_detection_info): New structure.
6218 (struct coding_system): Adjust prototype of the member `detector'.
6219 (CODING_ANNOTATE_CHARSET_MASK): New macro.
6220
6221 2008-02-01 Kenichi Handa <handa@m17n.org>
6222
6223 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
6224
6225 2008-02-01 Dave Love <fx@gnu.org>
6226
6227 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
6228 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
6229 to new local and nullify apropos_accumulate before returning.
6230 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
6231
6232 2008-02-01 Kenichi Handa <handa@m17n.org>
6233
6234 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
6235 correctly.
6236
6237 2008-02-01 Dave Love <fx@gnu.org>
6238
6239 * fns.c (Flanginfo): Call synchronize_system_time_locale.
6240
6241 2008-02-01 Kenichi Handa <handa@m17n.org>
6242
6243 The following changes are to make character composition happen
6244 automatically on displaying.
6245
6246 * Makefile.in (lisp, shortlisp): Add composite.elc.
6247
6248 * composite.h (Qauto_composed, Vauto_composition_function)
6249 (Qauto_composition_function): Extern them.
6250
6251 * composite.c (Vcomposition_function_table)
6252 (Qcomposition_function_table): Delete variables.
6253 (Qauto_composed, Vauto_composition_function)
6254 (Qauto_composition_function): New variables.
6255 (run_composition_function): Don't call
6256 compose-chars-after-function.
6257 (update_compositions): Clear `auto-composed' text property.
6258 (compose_chars_in_text): Delete this function.
6259 (syms_of_composite): Staticpro Qauto_composed and
6260 Qauto_composition_function. Declare Vauto_composition_function as
6261 a Lisp variable.
6262
6263 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
6264
6265 * xdisp.c (it_props): Add an entry for Qauto_composed.
6266 (handle_auto_composed_prop): New function.
6267
6268 * xselect.c (selection_data_to_lisp_data): Don't call
6269 compose_chars_in_text.
6270
6271 2008-02-01 Dave Love <fx@gnu.org>
6272
6273 * keyboard.c (read_char): Modify checking around use of
6274 Vkeyboard_translate_table.
6275
6276 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
6277 and fix C types.
6278
6279 2008-02-01 Kenichi Handa <handa@m17n.org>
6280
6281 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
6282 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6283 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
6284 the case that the last byte is '\r' correctly.
6285 (decode_coding): Flush out the unprocessed data correctly.
6286 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
6287
6288 2008-02-01 Dave Love <fx@gnu.org>
6289
6290 * xterm.c (XTread_socket): Fix changes for defined keysyms. Add
6291 XK_ISO... case.
6292 (xaw_scroll_callback): Revert last change.
6293
6294 2008-02-01 Kenichi Handa <handa@m17n.org>
6295
6296 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
6297
6298 2008-02-01 Kenichi Handa <handa@m17n.org>
6299
6300 * xfaces.c (Vface_resizing_fonts): New variable.
6301 (struct font_name): New member `resizing_ratio'.
6302 (font_resizing_ratio): New function.
6303 (split_font_name): Set font->resizing_ratio.
6304 (better_font_p): Pay attention to font->resizing_ratio.
6305 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
6306 RESX, and RESY fields.
6307 (try_alternative_families): Try scalable fonts if
6308 Vscalable_fonts_allowed is not Qt.
6309 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
6310
6311 2008-02-01 Dave Love <fx@gnu.org>
6312
6313 * xterm.c (xaw_scroll_callback): Cast correctly.
6314
6315 2008-02-01 Dave Love <fx@gnu.org>
6316
6317 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
6318 (lispy_kana_keys): Comment out.
6319 (make_lispy_event) [XK_kana_A]: Comment out.
6320
6321 * xterm.c (xaw_scroll_callback): Cast call_data.
6322 (XTread_socket): Deal with ASCII keysyms.
6323 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
6324
6325 2008-02-01 Dave Love <fx@gnu.org>
6326
6327 * xterm.c (Vx_keysym_table): New.
6328 (syms_of_xterm): Initialize it.
6329 (XTread_socket): Use it.
6330 From head: Eliminate incorrect optimization that tried to avoid
6331 decoding the output of X*LookupString.
6332 (x_get_font_repertory): Delete charset declaration.
6333
6334 2008-02-01 Kenichi Handa <handa@m17n.org>
6335
6336 * coding.c (detect_coding_charset): If only ASCII bytes are found,
6337 return 0.
6338 (Fdefine_coding_system_internal): Setup
6339 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
6340
6341 2008-02-01 Dave Love <fx@gnu.org>
6342
6343 * coding.c (Fcheck_coding_system): Doc fix.
6344
6345 * editfns.c (Finsert_byte): Return a proper value.
6346
6347 2008-02-01 Kenichi Handa <handa@m17n.org>
6348
6349 * coding.c (decode_coding): Fix args to translate_chars. Pay
6350 attention to Vstandard_translation_table_for_decode.
6351 (encode_coding): Fix args to translate_chars. Pay attention to
6352 Vstandard_translation_table_for_encode.
6353
6354 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
6355 SINGLE_BYTE_CHAR_P.
6356
6357 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
6358 not by SINGLE_BYTE_CHAR_P.
6359
6360 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
6361 SINGLE_BYTE_CHAR_P.
6362
6363 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
6364 SINGLE_BYTE_CHAR_P.
6365
6366 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
6367 by SINGLE_BYTE_CHAR_P.
6368
6369 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
6370 SINGLE_BYTE_CHAR_P.
6371
6372 2008-02-01 Dave Love <fx@gnu.org>
6373
6374 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
6375
6376 2008-02-01 Dave Love <fx@gnu.org>
6377
6378 * fns.c (Flanginfo): Fix typo.
6379
6380 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
6381
6382 2008-02-01 Kenichi Handa <handa@m17n.org>
6383
6384 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
6385 (detect_coding_emacs_mule, detect_coding_iso_2022)
6386 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
6387 incomplete byte sequence. Don't update *mask when correctly detected.
6388 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
6389 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
6390 (detect_coding, detect_coding_system): Adjust for the changes above.
6391
6392 2008-02-01 Kenichi Handa <handa@m17n.org>
6393
6394 * character.c (char_string): Rename from
6395 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
6396 (string_char): Rename from string_char.
6397
6398 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
6399 if C is greater than MAX_3_BYTE_CHAR.
6400 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
6401 string_char instead of string_char_with_unification.
6402
6403 2008-02-01 Dave Love <fx@gnu.org>
6404
6405 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
6406
6407 2008-02-01 Kenichi Handa <handa@m17n.org>
6408
6409 * keymap.c (push_key_description): Pay attention to force_multibyte.
6410
6411 * regex.c (re_search_2): Fix for the case of unibyte buffer.
6412
6413 2008-02-01 Dave Love <fx@gnu.org>
6414
6415 * charset.c (define_charset_internal): Rename `supprementary'.
6416
6417 * Makefile.in (lisp, shortlisp): Remove latin-N.
6418
6419 2008-02-01 Dave Love <fx@gnu.org>
6420
6421 * xfns.c (x_window, x_window): Use use_xim.
6422
6423 * xterm.c (use_xim): Initialize.
6424 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
6425 (x_term_init): Maybe set use_xim.
6426
6427 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
6428
6429 2008-02-01 Kenichi Handa <handa@m17n.org>
6430
6431 * search.c (search_buffer): Fix case-fold-search of multibyte
6432 characters.
6433 (boyer_moore): Rename the last argument to char_high_bits.
6434
6435 2008-02-01 Kenichi Handa <handa@m17n.org>
6436
6437 * xdisp.c (display_string): Fix for the case of zero width glyph.
6438
6439 * xfns.c (x_set_font): Change the error message of the case that
6440 x_new_fontset returns Qt.
6441
6442 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
6443 (Finternal_set_lisp_face_attribute): Use signal_error for the
6444 error of invalid fontset.
6445
6446 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
6447 fontset, return Qt.
6448
6449 2008-02-01 Dave Love <fx@gnu.org>
6450
6451 * unexelf.c (unexec): Make .got handling not SGI-specific.
6452
6453 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
6454
6455 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
6456
6457 * keyboard.c (read_key_sequence): Fix type error.
6458
6459 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
6460 type error.
6461
6462 * fontset.c (fontset_add): Return Lisp_Object.
6463
6464 2008-02-01 Dave Love <fx@gnu.org>
6465
6466 * charset.h (charset_ordered_list_tick): Declare extern.
6467
6468 2008-02-01 Kenichi Handa <handa@m17n.org>
6469
6470 The following changes (and some of 2008-02-01 changes of mine) are
6471 for handling syntax, category, and case conversion for unibyte
6472 characters by converting them to multibyte on the fly. With these
6473 changes, we don't have to setup syntax and case tables for unibyte
6474 characters in each language environment.
6475
6476 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
6477 multibyte if necessary.
6478
6479 * bytecode.c (Fbyte_code): Likewise.
6480
6481 * character.h (LEADING_CODE_LATIN_1_MIN)
6482 (LEADING_CODE_LATIN_1_MAX): New macros.
6483 (unibyte_to_multibyte_table): Extern it.
6484 (unibyte_char_to_multibyte): New macro.
6485 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
6486 (CHAR_LEADING_CODE): New macro.
6487 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
6488
6489 * character.c (unibyte_to_multibyte_table): New variable.
6490 (unibyte_char_to_multibyte): Move to character.h and define as macro.
6491 (multibyte_char_to_unibyte): If C is an eight-bit character,
6492 convert it to the corresponding byte value.
6493
6494 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
6495 not 1, singals an error. Update the elements of
6496 unibyte_to_multibyte_table.
6497 (init_charset_once): Initialize unibyte_to_multibyte_table.
6498 (syms_of_charset): Define the charset `iso-8859-1'.
6499
6500 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
6501 as is without converting it to unibyte. In a unibyte buffer,
6502 convert C to multibyte before checking the syntax.
6503
6504 * lisp.h (unibyte_char_to_multibyte): Delete extern.
6505
6506 * minibuf.c (Fminibuffer_complete_word): Use the macro
6507 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
6508
6509 * regex.h (struct re_pattern_buffer): New member target_multibyte.
6510
6511 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
6512 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
6513 that is zero, convert an eight-bit char to multibyte.
6514 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
6515 non-emacs case.
6516 (PATFETCH): Convert an eight-bit char to multibyte.
6517 (HANDLE_UNIBYTE_RANGE): New macro.
6518 (regex_compile): Setup the compiled pattern for multibyte chars
6519 even if the given regex string is unibyte. Use PATFETCH_RAW
6520 instead of PATFETCH in many places. To handle `charset'
6521 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
6522 only for ASCII chars.
6523 (analyse_first) <exactn>: Simplify because the compiled pattern
6524 is multibyte.
6525 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
6526 <charset>: Use CHAR_LEADING_CODE to get leading codes.
6527 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
6528 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
6529 multibyte always 1.
6530 (re_search_2): In emacs, set the locale variable multibyte to 1,
6531 otherwise to 0. New local variable target_multibyte. Check it
6532 to decide the multibyteness of STR1 and STR2. If
6533 target_multibyte is zero, convert unibyte chars to multibyte
6534 before translating and checking fastmap.
6535 (TARGET_CHAR_AND_LENGTH): New macro.
6536 (re_match_2_internal): In emacs, set the locale variable multibyte
6537 to 1, otherwise to 0. New local variable target_multibyte. Check
6538 it to decide the multibyteness of STR1 and STR2. Use
6539 TARGET_CHAR_AND_LENGTH to fetch a character from D.
6540 <charset, charset_not>: If multibyte is nonzero, check fastmap
6541 only for ASCII chars. Call bcmp_translate with
6542 target_multibyte, not with multibyte.
6543 <begline>: Declare the local variable C as `unsigned'.
6544 (bcmp_translate): Change the last arg name to target_multibyte.
6545
6546 * search.c (compile_pattern_1): Don't adjust the multibyteness of
6547 the regexp pattern and the matching target. Set cp->buf.multibyte
6548 to the multibyteness of the regexp pattern. Set
6549 cp->but.target_multibyte to the multibyteness of the matching target.
6550 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
6551 FETCH_STRING_CHAR_ADVANCE.
6552 (Freplace_match): Convert unibyte chars to multibyte.
6553
6554 * syntax.c (char_quoted, back_comment, scan_words)
6555 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
6556 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
6557 unibyte chars to multibyte.
6558 (skip_chars): Delete the arg syntaxp, and move the code for
6559 handling syntaxes to skip_syntaxes. Change callers.
6560 Fix the case that the multibyteness of STRING and the current
6561 buffer doesn't match.
6562 (skip_syntaxes): New function.
6563 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
6564 SINGLE_BYTE_CHAR_P.
6565
6566 2008-02-01 Kenichi Handa <handa@m17n.org>
6567
6568 * xfaces.c (QCfontset): New variable.
6569 (LFACE_FONTSET): New macro.
6570 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
6571 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
6572 (Finternal_set_lisp_face_attribute)
6573 (Finternal_get_lisp_face_attribute): Handle QCfontset.
6574 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
6575 check also LFACE_FONTSET_INDEX.
6576 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
6577 attrs[LFACE_FONT_INDEX].
6578 (syms_of_xfaces): Intern and staticpro QCfontset.
6579
6580 * dispextern.h (enum lface_attribute_index): New member
6581 LFACE_FONTSET_INDEX.
6582
6583 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
6584
6585 2008-02-01 Kenichi Handa <handa@m17n.org>
6586
6587 * coding.c (coding_set_destination): Fix coding->destination for
6588 the case converting a region.
6589 (encode_coding_utf_8): Encode eight-bit chars as single byte.
6590 (encode_coding_object): Fix coding->dst_pos and
6591 coding->dst_pos_byte for the case converting a region.
6592
6593 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
6594
6595 * character.h (BYTE8_STRING): New macro.
6596
6597 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
6598
6599 2008-02-01 Kenichi Handa <handa@m17n.org>
6600
6601 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
6602 characters by octal form.
6603
6604 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
6605
6606 * buffer.h (_fetch_multibyte_char_len): Delete extern.
6607 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
6608 _fetch_multibyte_char_len.
6609 (FETCH_CHAR_AS_MULTIBYTE): New macro.
6610
6611 * casetab.c (set_canon, set_identity, shuffle): Simplify.
6612
6613 * casefiddle.c (casify_object): Simplify. Handle the case that
6614 the case conversion change the byte length.
6615 (casify_region): Likewise.
6616
6617 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
6618
6619 * character.c (_fetch_multibyte_char_len): Delet this variable.
6620 (syms_of_character): Setup Vprintable_chars.
6621
6622 * editfns.c (Fchar_equal): Fix for the unibyte case.
6623 (Finsert_byte): New function.
6624 (syms_of_editfns): Defsubr it.
6625
6626 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
6627 of direct code 0x3ffff.
6628
6629 * search.c (Freplace_match): Fix for the unibyte case.
6630
6631 2008-02-01 Kenichi Handa <handa@m17n.org>
6632
6633 * lread.c (safe_to_load_p): Fix the logic.
6634
6635 * syntax.c (scan_words): Don't treat characters belonging to
6636 different scripts as constituting a word.
6637
6638 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
6639
6640 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
6641
6642 * emacs.c (main): In the case of --unibyte, instead of aborting on
6643 finding non-empty buffer, make it unibyte.
6644
6645 2008-02-01 Kenichi Handa <handa@m17n.org>
6646
6647 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
6648 to create a fontset.
6649
6650 2008-02-01 Dave Love <fx@gnu.org>
6651
6652 * character.c (Funibyte_char_to_multibyte): Doc fix.
6653
6654 * xfns.c [HAVE_STDLIB_H]: Fix last change.
6655
6656 2008-02-01 Kenichi Handa <handa@m17n.org>
6657
6658 * fontset.c (fontset_add): Make the type `int'.
6659 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
6660
6661 * character.c (unibyte_char_to_multibyte)
6662 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
6663 charset_unibyte, not charset_primary.
6664
6665 * charset.h (charset_unibyte): Extern it instead of charset_primary.
6666
6667 * charset.c (charset_unibyte): Rename from charset_primary.
6668 (Funibyte_charset): Rename from Fprimary_charset.
6669 (Fset_unibyte_charset): Rename from Fset_primary_charset.
6670 (syms_of_charset): Adjust for the above changes.
6671
6672 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
6673 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
6674 it->multibyte_p is zero.
6675
6676 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
6677 Delete extern.
6678
6679 2008-02-01 Kenichi Handa <handa@m17n.org>
6680
6681 * coding.c (Fdefine_coding_system_internal): Fix category setting
6682 for a coding system of type iso-2022.
6683
6684 2008-02-01 Kenichi Handa <handa@m17n.org>
6685
6686 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
6687
6688 2008-02-01 Kenichi Handa <handa@m17n.org>
6689
6690 * syntax.c (Vnext_word_boundary_function_table): New variable.
6691 (next-word-boundary-function-table): Declare it as a Lisp variable
6692 in syms_of_syntax.
6693 (scan_words): Call functions in Vnext_word_boundary_function_table
6694 if any.
6695
6696 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
6697
6698 * fontset.c (fs_load_font): If fontp->charset is not negative,
6699 return fontp without setting its members.
6700
6701 2008-02-01 Dave Love <fx@gnu.org>
6702
6703 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
6704
6705 * m/sparc.h (HAVE_ALLOCA): Delete.
6706
6707 * s/irix6-5.h: Don't include strings.h.
6708 (bcopy, bzero, bcmp): Don't undef.
6709
6710 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
6711
6712 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
6713 (TIOCSIGSEND): Don't test IRIX6.
6714 (bcopy, bzero, bcmp): Define conditionally.
6715
6716 2008-02-01 Kenichi Handa <handa@m17n.org>
6717
6718 * buffer.c (Qas, Qmake, Qto): New variables.
6719 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
6720 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
6721
6722 * callproc.c (Fcall_process): Don't call insert_1_both directly if
6723 we are inserting a process output into a multibyte buffer.
6724
6725 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
6726 multibyte_char_to_unibyte.
6727
6728 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
6729 by the primary charset, make it eight-bit char.
6730 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
6731
6732 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
6733 (charset_8_bit__control, charset_8_bit_graphic)
6734 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
6735 (define_charset_internal): New function.
6736 (syms_of_charset): Call define_charset_internal for pre-defined
6737 charsets.
6738
6739 * charset.h (charset_8_bit): Extern it.
6740
6741 * coding.c (make_conversion_work_buffer): Adjust for the change
6742 of Fset_buffer_multibyte.
6743 (encode_coding_raw_text): Increment p0 in the loop.
6744
6745 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
6746
6747 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
6748 for the change of Fset_buffer_multibyte.
6749
6750 * fns.c (Fstring_to_multibyte): New function.
6751 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
6752
6753 2008-02-01 Dave Love <fx@gnu.org>
6754
6755 * xfns.c (x_put_x_image): Declare args.
6756
6757 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
6758 (try_font_list): Declare an arg.
6759
6760 * xdisp.c (message2_nolog, set_message): Declare an arg.
6761
6762 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
6763
6764 * syntax.c (scan_sexps_forward): Declare an arg.
6765
6766 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
6767 Declare an arg.
6768
6769 * lisp.h (Fnew_fontset): Declare.
6770
6771 * keymap.c (push_key_description): Call CHARACTERP correctly.
6772
6773 * fontset.c (fontset_add): Declare args. Call make_number correctly.
6774 (face_for_char): Delete unused vars.
6775 (Fset_fontset_font): Doc fix. Delete unused vars.
6776
6777 * doc.c (Fsubstitute_command_keys): Delete unused vars.
6778
6779 * composite.c (update_compositions): Declare arg.
6780
6781 * cm.c (calccost, cmgoto): Declare args.
6782
6783 * charset.c: Remove `emacs' conditional. Doc fixes.
6784 (map_char_table_for_charset): Declare.
6785
6786 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
6787
6788 * ccl.c: Remove `emacs' conditional.
6789
6790 2008-02-01 Kenichi Handa <handa@m17n.org>
6791
6792 The following changes are to allow specifying multiple font
6793 patterns for a character range (specified by script or charset).
6794
6795 * Makefile.in (abbrev.o): Depend on syntax.h.
6796 (xfaces.o): Depend on charset.h.
6797
6798 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
6799 SINGLE_BYTE_CHAR_P.
6800
6801 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
6802
6803 * character.h (Vchar_script_table): Extern it.
6804
6805 * character.c (Vscript_alist): Delete.
6806 (Vchar_script_table, Qchar_script_table): New variable.
6807 (syms_of_character): Declare Vchar_script_table as a lisp variable
6808 and initialize it.
6809
6810 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
6811 have property char-table-extra-slots, make no extra slot.
6812
6813 * dispextern.h (struct face): Delete member `charset'.
6814 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
6815 SINGLE_BYTE_CHAR_P.
6816 (choose_face_font, lookup_non_ascii_face, font_name_registry):
6817 Add prototypes.
6818 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
6819 (generate_ascii_font_name): Rename from generate_ascii_font.
6820
6821 * fontset.h (get_font_repertory_func): New prototype.
6822 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
6823 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
6824
6825 * fontset.c (Qprepend, Qappend): New variables.
6826 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
6827 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
6828 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
6829 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
6830 (fontset_ref_and_range, fontset_add, reorder_font_vector)
6831 (load_font_get_repertory): New functions.
6832 (fontset_set): Delete.
6833 (fontset_face): New arg FACE. Return face ID, not face.
6834 Complete re-write to handle new fontset structure. Change caller.
6835 (free_face_fontset): Use ASET istead of AREF (X) = Y.
6836 (face_for_char): Don't call lookup_face.
6837 (make_fontset_for_ascii_face): New arg FACE.
6838 (fs_load_font): New arg CHARSET_ID. Don't check
6839 Vfont_encoding_alist here.
6840 (find_font_encoding): New function.
6841 (list_fontsets): Use STRINGP, not ! NILP.
6842 (accumulate_script_ranges): New function.
6843 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
6844 re-written to handle new fontset structure.
6845 (Ffontset_font): Return a copy of element.
6846 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
6847 docstring of font-encoding-alist.
6848
6849 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
6850 (Fset_fotset_font): Fix arguments to 5.
6851
6852 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
6853
6854 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
6855 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
6856 (highlight_trailing_whitespace): Adjust for the change of
6857 lookup_named_face.
6858
6859 * xfaces.c: Include charset.h.
6860 (load_face_font): Delete argument C. Change caller.
6861 (generate_ascii_font_name): Rename from generate_ascii_font.
6862 (font_name_registry): New function.
6863 (cache_face): Store ascii faces before non-ascii faces in buckets.
6864 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
6865 Lookup only ascii faces.
6866 (lookup_non_ascii_face): New function.
6867 (lookup_named_face): Delete argument C. Change caller.
6868 (lookup_derived_face): Delete argument C. Change caller.
6869 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
6870 a string, just call font_list with it.
6871 (choose_face_font): Delete arguments FACE and C. New arg
6872 FONT_SPEC. Change caller.
6873 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
6874 Change caller.
6875 (realize_non_ascii_face): New function.
6876 (realize_x_face): Call load_face_font here.
6877 (realize_tty_face): Delete argument C. Change caller.
6878 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
6879 get a face ID.
6880 (dump_realized_face): Don't print charset of FACE.
6881
6882 * xfns.c (x_set_font): Always call x_new_fontset and
6883 store_frame_parameter.
6884 (Fx_create_frame): Call x_new_fontset, not x_new_font.
6885 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
6886
6887 * xterm.h (x_get_font_repertory): Extern it.
6888
6889 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
6890 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
6891 it->multibyte_p is zero.
6892 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
6893 (x_new_fontset): If FONTSETNAME doesn't match any existing
6894 fontsets, create a new one.
6895 (x_get_font_repertory): New function.
6896
6897 2008-02-01 Kenichi Handa <handa@m17n.org>
6898
6899 * coding.c (Ffind_coding_systems_region_internal): Detect an
6900 ASCII only string correctly.
6901
6902 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
6903 version is 0.
6904
6905 2008-02-01 Kenichi Handa <handa@m17n.org>
6906
6907 * lread.c: Include "coding.h".
6908 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
6909 (load_each_byte, unread_char): New variables.
6910 (readchar_backlog): Delete.
6911 (readchar): Return a character unless load_each_byte is nonzero.
6912 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
6913 cons. If unread_char is not -1, simply return it.
6914 (unreadchar): Handle the case that readcharfun is
6915 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
6916 (read_multibyte): Delete.
6917 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
6918 (read_emacs_mule_char): New functions.
6919 (Fload): Even if the file doesn't have the extention ".elc", if
6920 safe_to_load_p returns a positive version number, assume that the
6921 file contains bytecompiled code. If the version is less than 22,
6922 load the file while decoding multibyte sequences by emacs-mule.
6923 (readevalloop): Don't use readchar_backlog.
6924 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
6925 (Fread_from_string): Pay attention to the case that STREAM is a cons.
6926 (read_escape): Delete the arg BYTEREP.
6927 (read1): Set load_each_byte to 1 temporarily while handling
6928 #@NUMBER. Don't call read_multibyte.
6929 (read_vector): Call Fread with a cons. If readcharfun is
6930 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
6931 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
6932 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
6933 and Qload_force_doc_strings.
6934
6935 2008-02-01 Kenichi Handa <handa@m17n.org>
6936
6937 * xdisp.c (face_before_or_after_it_pos): Call
6938 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
6939
6940 2008-02-01 Kenichi Handa <handa@m17n.org>
6941
6942 * character.h (TRAILING_CODE_P): New macro.
6943 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
6944 (string_char_with_unification): Fix prototype.
6945 (Vscript_alist): Extern it.
6946
6947 * character.c (Vscript_alist): New variable.
6948 (string_char_with_unification, str_as_unibyte)
6949 (string_escape_byte8): Add `const' to local variables.
6950 (syms_of_character): Declare script-alist as a Lisp variable.
6951
6952 * charset.h (Vcharset_ordered_list): Extern it.
6953 (charset_ordered_list_tick): Extern it.
6954 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
6955 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
6956 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
6957 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros
6958 (Funify_charset): Adjust for the change of Funify_charset.
6959
6960 * charset.c (charset_ordered_list_tick): New variable.
6961 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
6962 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
6963 deunify intead of unify a charset.
6964 (string_xstring_p): Add `const' to local variables.
6965 (find_charsets_in_text): Add `const' to arguemnts and local variables.
6966 (encode_char): Adjust for the change of Funify_charset. Fix
6967 detecting of invalid code.
6968 (Fset_charset_priority): Increment charset_ordered_list_tick.
6969 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
6970 and TO_CODE.
6971
6972 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
6973 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
6974 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
6975 (decode_coding_ccl, consume_chars)
6976 (Ffind_coding_systems_region_internal)
6977 (Fcheck_coding_systems_region): Add `const' to local variables.
6978
6979 * print.c (print_object): Use octal form for printing the
6980 contents of a bool vector.
6981
6982 2008-02-01 Dave Love <fx@gnu.org>
6983
6984 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
6985 <version == 20>: Refuse to load.
6986
6987 2008-02-01 Dave Love <fx@gnu.org>
6988
6989 * fns.c: Move coding.h.
6990 (Qcodeset, Qdays, Qmonths): New.
6991 (concat): Use CHARACTERP instead of INTERGERP.
6992 (Flocale_codeset): Delete.
6993 (Flanginfo): New function.
6994 (syms_of_fns): Change accordingly.
6995
6996 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
6997
6998 2008-02-01 Dave Love <fx@gnu.org>
6999
7000 * casetab.c (init_casetab_once, init_casetab_once): Fix
7001 CHAR_TABLE_SET call.
7002
7003 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
7004
7005 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
7006
7007 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
7008 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
7009 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
7010
7011 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
7012
7013 * coding.c (ENCODE_DESIGNATION, decode_eol)
7014 (make_conversion_work_buffer, code_conversion_restore)
7015 (Fdefine_coding_system_internal): Convert Lisp types.
7016 (code_conversion_restore): Use EQ, not ==.
7017 (Fencode_coding_string): Fix code_convert_string call.
7018
7019 * coding.h (code_convert_region): Fix prototype.
7020
7021 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
7022
7023 * fontset.c (fontset_ref, fontset_set, fs_load_font)
7024 (Ffontset_info): Convert Lisp types.
7025
7026 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
7027
7028 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
7029
7030 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
7031
7032 * chartab.c: Include "...h", not <...h> in some cases.
7033
7034 * callproc.c (Fcall_process): Remove unused variables.
7035
7036 2008-02-01 Dave Love <fx@gnu.org>
7037
7038 * coding.c (Fset_coding_system_priority): Allow null arg list.
7039
7040 2008-02-01 Dave Love <fx@gnu.org>
7041
7042 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
7043 (Fself_insert_and_exit): Use CHARACTERP.
7044
7045 * callproc.c (Fcall_process): Remove unused vars.
7046
7047 * xterm.c (XTread_socket): Add extra dead keysyms.
7048
7049 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
7050
7051 * dispextern.h: Remove prototypes for redraw_frame,
7052 redraw_garbaged_frames.
7053
7054 * cmds.c (Fself_insert_command): Use CHARACTERP.
7055
7056 * chartab.c (make_sub_char_table): Remove unused var.
7057 (Fset_char_table_default, Fmap_char_table): Doc fix.
7058
7059 * keymap.c (access_keymap): Remove generic char code.
7060 (push_key_description): Use CHARACTERP.
7061
7062 2008-02-01 Dave Love <fx@gnu.org>
7063
7064 * charset.c: Doc fixes.
7065 (Funify_charset): Extra checking.
7066
7067 2008-02-01 Dave Love <fx@gnu.org>
7068
7069 * lread.c: Remove some unused variables.
7070 (safe_to_load_p): If safe, return the magic number version byte.
7071 (Fload): Maybe use load-with-code-conversion.
7072
7073 2008-02-01 Kenichi Handa <handa@m17n.org>
7074
7075 * category.c (Fmodify_category_entry): Don't modify the contents
7076 of category_set for characters out of the range. Avoid
7077 unnecessary modification.
7078
7079 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
7080 Vchar_unify_table. The default value of the table is now nil.
7081
7082 * character.c (syms_of_character): Setup Vchar_width_table for
7083 eight-bit-control and raw-byte chars.
7084
7085 * charset.h (enum define_charset_arg_index): Delete
7086 charset_arg_parents and add charset_arg_subset and
7087 charset_arg_superset.
7088 (enum charset_attr_index): Delete charset_parents and add
7089 charset_subset and charset_superset.
7090 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
7091 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
7092 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
7093 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
7094 (CHARSET_SUPERSET): New macros.
7095 (charset_work): Extern it.
7096 (ENCODE_CHAR): Use charset_work.
7097 (CHAR_CHARSET_P): Adjust for the change of encoder format.
7098 (map_charset_chars): Extern it.
7099
7100 * charset.c (load_charset_map): Set the default value of encoder
7101 and deunifier char-tables to nil.
7102 (map_charset_chars): Change argument. Change callers. Use
7103 map_char_table_for_charset instead of map_char_table.
7104 (Fmap_charset_chars): New optional args from_code and to_code.
7105 (Fdefine_charset_internal): Adjust for the change of
7106 `define-charset' (:parents -> :subset or :superset).
7107 (charset_work): New variable.
7108 (encode_char, syms_of_charset): Adjust for the change of
7109 Fdefine_charset_internal.
7110 (Ffind_charset_string): Setup the vector `charsets' correctly.
7111
7112 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
7113 the previous change.
7114 (char_table_ref_and_range): Adjust for the above change.
7115 (map_sub_char_table_for_charset): New function.
7116 (map_char_table_for_charset): New function.
7117
7118 * keymap.c (describe_vector): Handle a char-table directly here.
7119 (describe_char_table): Delete.
7120
7121 * lisp.h (map_charset_chars): Delete.
7122
7123 2008-02-01 Dave Love <fx@gnu.org>
7124
7125 * fns.c (count_combining): Comment out (unused).
7126 (Flocale_codeset): New.
7127 (syms_of_fns): Defsubr it.
7128
7129 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
7130 (size_t): Remove.
7131
7132 2008-02-01 Dave Love <fx@gnu.org>
7133
7134 * Makefile.in (chartab.o): Depend on charset.h.
7135
7136 2008-02-01 Kenichi Handa <handa@m17n.org>
7137
7138 * character.c (syms_of_character): Set the default value of
7139 Vprintable_chars to Qnil.
7140
7141 2008-02-01 Dave Love <fx@gnu.org>
7142
7143 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
7144
7145 2008-02-01 Kenichi Handa <handa@m17n.org>
7146
7147 * charset.c (load_charset_map): Handle the case that from < to
7148 correctly.
7149
7150 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
7151 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
7152 Pay attention to raw-8-bit chars.
7153
7154 2008-02-01 Kenichi Handa <handa@m17n.org>
7155
7156 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
7157 It is not bytecompiled now.
7158
7159 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
7160 (charset_jisx0208): New variables.
7161 (Fdefine_charset_internal): Setup them if appropriate.
7162 (init_charset_once): Initialize them to -1.
7163
7164 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
7165 (charset_jisx0208): Extern them.
7166
7167 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro
7168 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
7169 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
7170 (setup_iso_safe_charsets): Fix arguments to Fassq.
7171 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
7172 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
7173 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
7174 (encode_coding_iso_2022): Change the 1st arg to
7175 ENCODE_ISO_CHARACTER to a variable.
7176
7177 2008-02-01 Kenichi Handa <handa@m17n.org>
7178
7179 * charset.h (enum define_charset_arg_index): New enums
7180 charset_arg_min_code and charset_arg_max_code.
7181 (struct charset): New member char_index_offset.
7182
7183 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
7184 Take charset->char_index_offset into account.
7185 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
7186 args[charset_arg_max_code]. Setup charset.char_index_offset.
7187 (syms_of_charset): Fix args to Fdefine_charset_internal.
7188
7189 2008-02-01 Dave Love <fx@gnu.org>
7190
7191 * coding.c (decode_coding_utf_8): Reject overlong sequences.
7192
7193 2008-02-01 Dave Love <fx@gnu.org>
7194
7195 * coding.c: Doc fixes.
7196 (Fcoding_system_aliases): Fix return value.
7197 (Qmac): Remove (duplicated) definition.
7198
7199 2008-02-01 Dave Love <fx@gnu.org>
7200
7201 * charset.c (Fcharset_priority_list, Fset_charset_priority): New
7202 functions.
7203
7204 * character.c (Fstring): Doc fix.
7205
7206 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
7207
7208 * fontset.c (Ffontset_info): Doc fix. Return charset names, not
7209 ids.
7210 (font-encoding-alist): Doc fix.
7211
7212 2008-02-01 Dave Love <fx@gnu.org>
7213
7214 * term.c (costs_set): Declare static, non-initialized for pcc.
7215 (encode_terminal_code): Remove unused var.
7216
7217 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
7218 for K&R.
7219
7220 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
7221
7222 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
7223 (suffixes): Move out of make_subsidiaries for K&R.
7224
7225 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
7226
7227 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
7228
7229 2008-02-01 Dave Love <fx@gnu.org>
7230
7231 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
7232
7233 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
7234
7235 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
7236
7237 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
7238
7239 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
7240
7241 2008-02-01 Kenichi Handa <handa@m17n.org>
7242
7243 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
7244 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
7245
7246 2008-02-01 Kenichi Handa <handa@m17n.org>
7247
7248 * coding.c (decode_coding_charset): Adjust for the change of
7249 Fdefine_coding_system_internal.
7250 (Fdefine_coding_system_internal): For a coding system of
7251 `charset' type, store a list of charset IDs in
7252 `charset_attr_charset_valids' element of coding attributes.
7253
7254 2008-02-01 Kenichi Handa <handa@m17n.org>
7255
7256 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
7257 (emacs_mule_char): New arg src. Delete arg `composition'. Change
7258 caller. Handle 2-byte and 3-byte charsets correctly.
7259 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
7260 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
7261 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
7262 (DECODE_EMACS_MULE_21_COMPOSITION): Call
7263 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
7264 sequence.
7265 (decode_coding_emacs_mule): Handle composition correctly. Rewind
7266 `src' and `consumed_chars' correctly before calling emacs_mule_char.
7267 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
7268 and alt&rule composition.
7269 (decode_coding_iso_2022): Handle composition correctly.
7270 (init_coding_once): Setup emacs_mule_bytes for private charsets.
7271
7272 * charset.c (Fdefine_charset_internal): Fix bug for the case of
7273 re-defining a charset. If the charset has :emacs-mule-id, setup
7274 emacs_mule_bytes.
7275 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
7276
7277 2008-02-01 Kenichi Handa <handa@m17n.org>
7278
7279 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
7280 (encode_coding_big5, encode_coding_charset): If coding requires safe
7281 encoding, produce a character specified by
7282 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
7283
7284 2008-02-01 Dave Love <fx@gnu.org>
7285
7286 * xterm.c (XSetIMValues): Declare.
7287
7288 * process.c: Conditionally include sys/wait.h, pty.h.
7289
7290 * print.c (print_object): Fix print format for 64-bit systems.
7291
7292 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
7293
7294 * buffer.c (emacs_strerror): Declare.
7295
7296 * fontset.c (Fclear_face_cache): Declare.
7297 (accumulate_font_info): Comment-out (unused).
7298 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
7299 variables.
7300
7301 * character.h (string_escape_byte8): Declare.
7302
7303 * charset.c (load_charset_map, load_charset_map_from_file): Remove
7304 unused vars.
7305 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
7306 (Fmap_charset_chars): Doc fix.
7307
7308 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
7309 (Fset_coding_system_priority, Fset_coding_system_priority)
7310 (Fdefine_coding_system_internal): Doc fix.
7311
7312 2008-02-01 Dave Love <fx@gnu.org>
7313
7314 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
7315
7316 2008-02-01 Kenichi Handa <handa@m17n.org>
7317
7318 * character.c (string_escape_byte8): Make multibyte string with
7319 correct size.
7320
7321 * charset.c (Fmake_char): Delete unnecessary code.
7322
7323 2008-02-01 Kenichi Handa <handa@m17n.org>
7324
7325 * xfns.c (x_encode_text): Allocate coding.destination here, and
7326 call encode_coding_object with dst_object Qnil.
7327
7328 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
7329 multibyte form correctly.
7330
7331 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
7332 against Vfont_encoding_alist.
7333
7334 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
7335 handling of charset list.
7336 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
7337 (decode_coding_object): Move point to coding->dst_pos before
7338 calling post-read-conversion function.
7339 (encode_coding_object): Give correct arguments to
7340 pre-write-conversion. Ignore the return value of
7341 pre-write-conversion function. Pay attention to the case that
7342 pre-write-conversion changes the current buffer. If dst_object is
7343 Qt, even if coding->src_bytes is zero, allocate at least one byte
7344 to coding->destination.
7345
7346 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
7347
7348 * charset.c (Fmake_char): Make it more backward compatible.
7349 (Fmap_charset_chars): Fix docstring.
7350
7351 2008-02-01 Dave Love <fx@gnu.org>
7352
7353 * coding.c: Doc fixes.
7354 (Fdefine_coding_system_alias): Use names, not symbols, in
7355 coding-system-alist.
7356
7357 2008-02-01 Kenichi Handa <handa@m17n.org>
7358
7359 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
7360 of calling free_realized_face.
7361
7362 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
7363
7364 * charset.c (read_hex): Don't treat SPC as a comment starter.
7365 (decode_char): If CODE_POINT_TO_INDEX retruns -1, always return -1.
7366 (Fdecode_char): Fix typo.
7367
7368 2008-02-01 Kenichi Handa <handa@m17n.org>
7369
7370 * charset.h (struct charset): New member `code_space_mask'.
7371
7372 * coding.c (coding_set_source): Delete the local variable beg_byte.
7373 (encode_coding_charset, Fdefine_coding_system_internal):
7374 Delete the local variable charset.
7375 (Fdefine_coding_system_internal): Setup
7376 attrs[coding_attr_charset_valids] correctly.
7377
7378 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
7379 member to check if CODE is valid or not.
7380 (Fdefine_charset_internal): Initialize `code_space_mask' member.
7381 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
7382 is within the range of charset->min_code and carset->max_code.
7383
7384 2008-02-01 Dave Love <fx@gnu.org>
7385
7386 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
7387
7388 * dispextern.h (generate_ascii_font): Fix return type.
7389
7390 * xfaces.c (generate_ascii_font): Fix arg declaration.
7391
7392 * coding.c (coding_inherit_eol_type)
7393 (Fset_terminal_coding_system_internal)
7394 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
7395
7396 2008-02-01 Kenichi Handa <handa@m17n.org>
7397
7398 * coding.c (decode_coding_charset, encode_coding_charset): Handle
7399 multiple charsets correctly.
7400
7401 2008-02-01 Kenichi Handa <handa@m17n.org>
7402
7403 * search.c (boyer_moore): Fix handling of mulitbyte character
7404 translation.
7405
7406 * xdisp.c (display_mode_element): When the variable `elt' is
7407 changed, update `this' and `lisp_string'.
7408
7409 2008-02-01 Kenichi Handa <handa@m17n.org>
7410
7411 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
7412
7413 * callproc.c (Fcall_process): Be sure to give the current buffer
7414 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
7415
7416 * charset.c (struct charset_map_entries): New struct.
7417 (load_charset_map): Rename from parse_charset_map. New args
7418 entries and n_entries. Change caller.
7419 (load_charset_map_from_file): Rename from load_charset_map.
7420 Change caller. New arg control_flag. Call load_charset_map at
7421 the tail.
7422 (load_charset_map_from_vector): New function.
7423 (Fdefine_charset_internal): Setup charset.compact_codes_p.
7424 (encode_char): If the charset is compact, change a character index
7425 to a code point.
7426
7427 * coding.c (coding_alloc_by_making_gap): Check the case that the
7428 source and destination are the same correctly.
7429 (decode_coding_raw_text): Set coding->consumed_char and
7430 coding->consumed to 0.
7431 (produce_chars): If coding->chars_at_source is nonzero, update
7432 coding->consumed_char and coding->consumed before calling
7433 alloc_destination.
7434 (Fdefine_coding_system_alias): Register ALIAS in
7435 Vcoding_system_alist.
7436 (syms_of_coding): Define `no-convesion' coding system at the tail.
7437
7438 * fileio.c (Finsert_file_contents): Set coding_system instead of
7439 val. If the current buffer is multibyte, always call
7440 decode_coding_gap.
7441
7442 * xfaces.c (try_font_list): Give higher priority to fontset's
7443 family than face's family.
7444
7445 2008-02-01 Kenichi Handa <handa@m17n.org>
7446
7447 * callproc.c (Fcall_process): Be sure to give the current buffer
7448 to decode_coding_c_string.
7449
7450 * xfaces.c (try_font_list): Give a family specified in a fontset
7451 higher priority than a family specified in a face.
7452
7453 2008-02-01 Kenichi Handa <handa@m17n.org>
7454
7455 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
7456 Fix arguments to insert_from_buffer.
7457
7458 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
7459
7460 2008-02-01 Kenichi Handa <handa@m17n.org>
7461
7462 * coding.c (produce_chars): Set the variable `multibytep' correctly.
7463 (decode_coding_gap): Set coding->dst_multibyte correctly.
7464
7465 2008-02-01 Kenichi Handa <handa@m17n.org>
7466
7467 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
7468 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
7469 (encode_coding_utf_16): Substitute coding->default_char for
7470 non-Unicode characters.
7471 (decode_coding): Don't call record_insert here.
7472 (setup_coding_system): Initialize `surrogate' of
7473 coding->spec.utf_16 to 0.
7474 (EMIT_ONE_BYTE): Fix for multibyte case.
7475
7476 * insdel.c (insert_from_gap): Call record_insert.
7477
7478 2008-02-01 Kenichi Handa <handa@m17n.org>
7479
7480 * casefiddle.c (casify_region): Fix multibyte case.
7481
7482 * character.c (c_string_width): Add return type `int'.
7483 (char_string_with_unification): Delete arg ADVANCED.
7484
7485 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
7486 (CHAR_STRING): Adjust for the change of char_string_with_unification.
7487 (CHAR_STRING_ADVANCE): Make it do-while statement.
7488
7489 * chartab.c (sub_char_table_set_range): Optimize for the case
7490 DEPTH == 3. Add workaround code for a GCC optimization bug.
7491
7492 * charset.c (parse_charset_map): Remove an unused variable.
7493
7494 * coding.c: Delete unused variables.
7495
7496 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
7497 earlier. If inserted is zero and the coding system doesn't
7498 require flushing, don't call decode_coding_gap.
7499
7500 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
7501
7502 2008-02-01 Kenichi Handa <handa@m17n.org>
7503
7504 The following changes are for using Unicode as an internal
7505 character model, and use UTF-8 format for buffer/string
7506 representation.
7507
7508 * .gdbinit (xchartable): Adjust for the change of char table structure.
7509 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
7510
7511 * Makefile.in (obj): Add character.o and chartab.o.
7512 (lisp, shortlisp): Remove utf-8.elc:
7513 (*.o): For many files, change dependency on charset.h to
7514 character.h, and add dependency on character.h.
7515 (character.o, chartab.o): New targets.
7516
7517 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
7518 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
7519 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
7520 of "charset.h".
7521
7522 * dired.c, filelock.c: Include "character.h".
7523
7524 * alloc.c: Include "character.h" instead of "charset.h".
7525 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
7526 (syms_of_alloc): Remove defsubr for Smake_char_table.
7527
7528 * buffer.c: Include "character.h" instead of "charset.h", don't
7529 include "coding.h".
7530 (Fset_buffer_multibyte): Adjust for UTF-8.
7531
7532 * buffer.h: EXFUN Fbuffer_live_p.
7533
7534 * callproc.c: Include "character.h" instead of "charset.h".
7535 (Fcall_process): Big change for the new code-conversion APIs.
7536
7537 * casetab.c: Include "character.h" instead of "charset.h".
7538 (set_canon, set_identity, shuffle): Adjust for the new
7539 map_char_table spec.
7540 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
7541 accessing the char table structure.
7542
7543 * chartab.c: New file that implements char table.
7544
7545 * category.c: Include "character.h".
7546 (copy_category_entry): New function.
7547 (copy_category_table): Call map_char_table and copy_category_entry.
7548 (Fmake_category_table): Initialize all top-vel slots.
7549 (char_category_set): New function.
7550 (modify_lower_category_set): Delete.
7551 (Fmodify_category_entry): Call char_table_ref_and_range.
7552
7553 * category.h (CATEGORY_SET): Just call char_category_set.
7554
7555 * ccl.c: Include "character.h".
7556 (Qccl, Qcclp): New variables.
7557 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
7558 it's less than 256.
7559 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
7560 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
7561 and DST type.
7562 (ccl_driver): Change types of argument, adjust code accordingly.
7563 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
7564 ccl_driver.
7565 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
7566
7567 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
7568 New members src_multibyte, dst_multibyte, consumed, and produced.
7569 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
7570 (CODING_SPEC_CCL_PROGRAM): New macro.
7571 (ccl_driver): Update prototype.
7572 (Qccl, Qcclp, Fccl_program_p): Extern them.
7573 (CHECK_CCL_PROGRAM): New macro.
7574
7575 * character.c, character.h, chartab.c: New files.
7576
7577 * charset.c: Mostly re-written. Move character and multibyte sequence
7578 handling codes to character.c.
7579
7580 * charset.h: Mostly re-written. Move character and multibyte sequence
7581 handling codes to character.h.
7582
7583 * coding.c, coding.h: Mostly re-written.
7584
7585 * composite.c: Include "character.h" instead of "charset.h".
7586 (CHAR_WIDTH): Move to character.h.
7587 (HASH_KEY, HASH_VALUE): Delete.
7588
7589 * composite.h (enum composition_method): Change order of enumeration
7590 symbols.
7591
7592 * data.c: Include "character.h" instead of "charset.h".
7593 (Faref): Call CHAR_TABLE_REF for a char table.
7594 (Faset): Call CHAR_TABLE_SET for a char table.
7595
7596 * dispextern.h (free_realized_face, check_face_attribytes)
7597 (generate_ascii_font): Extern them.
7598 (free_realized_multibyte_face): Delete extern.
7599
7600 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
7601 table structure.
7602
7603 * editfns.c: Include "character.h" instead of "charset.h".
7604 (Fchar_to_string): Always call CHAR_STRING.
7605
7606 * emacs.c (main): Call init_charset_once, init_charset,
7607 syms_of_chartab, and syms_of_character.
7608
7609 * fileio.c: Include "character.h" instead of "charset.h".
7610 (Finsert_file_contents): Big change for the new code-conversion API.
7611 (choose_write_coding_system, Fwrite_region): Likewise.
7612 (build_annotations_2): Delete.
7613 (e_write): Big change for the new code-conversion API.
7614
7615 * fns.c: Include "character.h" instead of "charset.h".
7616 (copy_sub_char_table): Move to chartab.c.
7617 (Fcopy_sequence): Call copy_char_table for a char table.
7618 (concat): Delete codes calling count_multibyte.
7619 (string_char_to_byte, string_byte_to_char): Adjust for the new
7620 multibyte form.
7621 (internal_equal): Adjust for the change of char table structure.
7622 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
7623 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
7624 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
7625 (char_table_translate, optimize_sub_char_table)
7626 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
7627 chartab.c.
7628 (char_table_ref_and_index): Delete.
7629 (HASH_KEY, HASH_VALUE): Move to lisp.h.
7630 (Fmd5): Call preferred_coding_system instead of accessing
7631 Vcoding_category_list. Adjust for the new code-conversion API.
7632 (syms_of_fns): Move defsubr for char table related functions to
7633 chartab.c.
7634
7635 * fontset.c: Mostly re-written.
7636
7637 * fontset.h (struct font_info): Change type of the member encoding_type.
7638 (enum FONT_SPEC_INDEX): New enum.
7639 (fontset_font_pattern, fs_load_font): Update prototype.
7640 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
7641
7642 * indent.c: Include "character.h" instead of "charset.h".
7643 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
7644
7645 * insdel.c: Include "character.h" instead of "charset.h".
7646 (copy_text): Don't refer to Vnonascii_translation_table.
7647 (insert_from_gap): New function.
7648
7649 * keyboard.c: Include "character.h" instead of "charset.h".
7650 (command_loop_1): Never call direct_output_forward_char before
7651 a non-ASCII character.
7652 (read_char): If Vkeyboard_translate_table is a char table, always
7653 translate a character.
7654
7655 * keymap.c: Include "character.h".
7656 (store_in_keymap): Handle the case that IDX is a cons.
7657 (Fdefine_key): Handle the case that KEY is a cons and the car part
7658 is also a cons (range).
7659 (push_key_description): Adjust for the new character code.
7660 (describe_vector): Call describe_char_table for a char table.
7661 (describe_char_table): New function.
7662
7663 * keymap.h (describe_char_table): Extern it.
7664
7665 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
7666 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
7667 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
7668 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
7669 Delete.
7670 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
7671 structure.
7672 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
7673 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
7674 (CHARTAB_SIZE_BITS_3): New macros.
7675 (chartab_size): Extern it.
7676 (struct Lisp_Char_Table): Re-design.
7677 (struct Lisp_Sub_Char_Table): New structure.
7678 (HASH_KEY, HASH_VALUE): Move from fns.c.
7679 (CHARACTERBITS): Define as 22.
7680 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
7681 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
7682 (GC_SUB_CHAR_TABLE_P): New macro.
7683 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
7684 (code_convert_string_norecord): Deleted extern.
7685 (init_character_once, syms_of_character, init_charset)
7686 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
7687
7688 * lread.c: Include "character.h".
7689 (read_multibyte): New arg NBYTES.
7690 (read_escape): Change the meaning of returned *BYTEREP.
7691 (to_multibyte): Delete.
7692 (read1): Adjust the handling of char table and string.
7693
7694 * print.c: Include "character.h" instead of "charset.h".
7695 (print_string): Convert 8-bit raw bytes to octal form by
7696 string_escape_byte8.
7697 (print_object): Adjust for the new multibyte form. Print 8-bit
7698 raw bytes always in octal form. Handle sub char table correctly.
7699
7700 * process.c: Include "character.h" instead of "charset.h".
7701 (read_process_output, send_process): Adjust for the new
7702 code-conversion API.
7703
7704 * puresize.h (BASE_PURESIZE): Increase.
7705
7706 * regex.c: Include "character.h" instead of "charset.h".
7707 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
7708 (regex_compile): Accept a range whose starting and ending
7709 character have different leading bytes.
7710 (analyse_first): Adjust for the above change.
7711
7712 * search.c: Include "character.h" instead of "charset.h".
7713 (search_buffer, boyer_moore): Adjust for the new multibyte form.
7714 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
7715
7716 * syntax.c: Include "character.h" instead of "charset.h".
7717 (syntax_parent_lookup): Delete.
7718 (Fmodify_syntax_entry): Accept a cons as CHAR.
7719 (skip_chars): Adjust for the new multibyte form.
7720 (init_syntax_once): Call char_table_set_range instead of directly
7721 accessing the structure of a char table.
7722
7723 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
7724 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
7725 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
7726 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
7727
7728 * term.c: Include "buffer.h" and "character.h".
7729 (encode_terminal_code, write_glyphs): Adjust for the new
7730 code-conversion API.
7731 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
7732
7733 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
7734
7735 * xdisp.c: Include "character.h".
7736 (get_next_display_element): Adjust for the new multibyte form.
7737 (disp_char_vector): Adjust for the new char table structure.
7738 (decode_mode_spec_coding): Adjust for the new structure of
7739 coding system.
7740 (decode_mode_spec): Adjust for the new code-conversion API.
7741
7742 * xfaces.c: Include "character.h" instead of "charset.h".
7743 (load_face_font): Adjust for the change of choose_face_font and
7744 FS_LOAD_FONT.
7745 (generate_ascii_font): New function.
7746 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
7747 (set_font_frame_param): Adjust for the change of choose_face_font.
7748 (free_realized_face): Make it public.
7749 (free_realized_faces_for_fontset): Rename from
7750 free_realized_multibyte_face. Free also faces realized for ASCII.
7751 (choose_face_font): Change arguments. Adjust for the change of
7752 fontset_font_pattern and FS_LOAD_FONT.
7753
7754 * xfns.c: Include "character.h".
7755 (x_encode_text): Adjust for the new code-conversion API.
7756
7757 * xselect.c: Don't include "charset.h".
7758 (selection_data_to_lisp_data): Adjust for the new code conversion API.
7759
7760 * xterm.c: Include "character.h".
7761 (x_encode_char): New argument CHARSET. Change caller.
7762 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
7763 Call ENCODE_CHAR instead of SPLIT_CHAR.
7764 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
7765 CHAR_WIDTH instead of CHARSET_WIDTH.
7766 (XTread_socket): Adjust for the new code-conversion API.
7767 (x_new_font): Adjust for the change of FS_LOAD_FONT.
7768 (x_load_font): Adjust for the change of struct font.
7769
7770 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
7771
7772 * xfaces.c (face_at_buffer_position): Remove unused vars.
7773
7774 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7775
7776 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
7777 Fix overflow checking.
7778
7779 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7780
7781 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
7782 Cancel previous change.
7783
7784 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
7785
7786 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
7787 ccl->eight_bit_control. Fix check for buffer overflow.
7788 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
7789 (ccl_driver): Initialize extra_bytes to 0.
7790
7791 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
7792
7793 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
7794 return it ORed with ctrl_modifier.
7795
7796 2008-01-29 Miles Bader <miles@gnu.org>
7797
7798 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
7799
7800 2008-01-28 Jason Rumney <jasonr@gnu.org>
7801
7802 * w32.c (stat): Don't double check for networked drive.
7803
7804 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
7805
7806 * window.c (run_window_configuration_change_hook): New function.
7807 Code extracted from set_window_buffer. Set the selected frame.
7808 (set_window_buffer): Use it.
7809 * window.h (run_window_configuration_change_hook): Declare.
7810 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
7811
7812 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
7813
7814 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
7815
7816 * Makefile.in: Remove references to unused macros.
7817
7818 2008-01-26 Eli Zaretskii <eliz@gnu.org>
7819
7820 * w32.c (g_b_init_get_sid_sub_authority)
7821 (g_b_init_get_sid_sub_authority_count): New static variables.
7822 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
7823 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
7824 (init_user_info): Use them to retrieve uid and gid.
7825 Use 500/513, the Windows defaults, as Administrator's uid/gid.
7826 (fstat): Use pw_uid and pw_gid from the_passwd structure for
7827 st_uid and st_gid of the file.
7828
7829 2008-01-26 Jason Rumney <jasonr@gnu.org>
7830
7831 * w32.c (logon_network_drive): New function.
7832 (stat): Use it.
7833
7834 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
7835
7836 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
7837 invisible text covered with an ellipsis.
7838
7839 2008-01-25 Richard Stallman <rms@gnu.org>
7840
7841 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
7842 jump back to beginning. Move some other initializations after that.
7843 (Qwindow_text_change_functions, Vwindow_text_change_functions):
7844 New variables.
7845 (syms_of_xdisp): Init them.
7846
7847 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
7848
7849 * buffer.c (reset_buffer_local_variables):
7850 Implement `permanent-local-hook'.
7851 (Qpermanent_local_hook): New variable.
7852 (syms_of_buffer): Init and staticpro it.
7853
7854 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
7855
7856 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
7857
7858 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
7859
7860 * fns.c (Fclrhash): Return TABLE.
7861
7862 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7863
7864 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
7865 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
7866 is set even without positional changes.
7867 (x_scroll_bar_clear): Set bar->redraw_needed_p.
7868
7869 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
7870
7871 2008-01-23 Jason Rumney <jasonr@gnu.org>
7872
7873 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
7874
7875 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
7876 the unicode range available in MULE by locale-coding-system.
7877 Improve dbcs lead byte detection. Set event timestamp and modifiers
7878 earlier.
7879
7880 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7881
7882 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
7883 [MAC_OSX] (init_mac_osx_environment): Initialize it.
7884 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
7885 when used on child processes.
7886
7887 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
7888
7889 * dbusbind.c (Fdbus_method_return_internal): Rename from
7890 Fdbus_method_return.
7891 (Fdbus_unregister_object): Move to dbus.el.
7892 (Fdbus_call_method, Fdbus_method_return_internal)
7893 (Fdbus_send_signal): Improve debug messages.
7894
7895 2008-01-20 Martin Rudalics <rudalics@gmx.at>
7896
7897 * undo.c (undo_inhibit_record_point): New variable.
7898 (syms_of_undo): Initialize it.
7899 (record_point): Don't record point when undo_inhibit_record_point
7900 is set.
7901
7902 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
7903
7904 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
7905
7906 * xdisp.c (Qauto_hscroll_mode): New var.
7907 (syms_of_xdisp): Initialize it.
7908 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
7909 window's buffer.
7910 (hscroll_windows): Don't check automatic_hscrolling_p here.
7911
7912 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
7913 vscroll if we're setting window-buffer to the value it already has.
7914
7915 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
7916
7917 * m/intel386.h: Remove references to XENIX.
7918
7919 2008-01-17 Andreas Schwab <schwab@suse.de>
7920
7921 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
7922 instead of HAVE_X86_64_LIB64_DIR.
7923 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
7924
7925 2008-01-17 Glenn Morris <rgm@gnu.org>
7926
7927 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
7928 to HAVE_X86_64_LIB64_DIR.
7929
7930 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
7931
7932 * s/irix3-3.h:
7933 * s/irix4-0.h:
7934 * s/386-ix.h:
7935 * s/domain.h:
7936 * s/hpux9-x11r4.h:
7937 * s/hpux9shxr4.h: Remove files for systems no longer supported.
7938
7939 * sysdep.c: Remove code containing references to symbols defined
7940 by unsupported systems.
7941
7942 2008-01-16 Glenn Morris <rgm@gnu.org>
7943
7944 * coding.c (select-safe-coding-system-function): Doc fix.
7945
7946 2008-01-15 Glenn Morris <rgm@gnu.org>
7947
7948 * config.in: Revert 2008-01-13 change: this is a generated file.
7949
7950 2008-01-13 Tom Tromey <tromey@redhat.com>
7951
7952 * lisp.h: Fix typo.
7953
7954 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
7955
7956 * m/sequent-ptx.h:
7957 * m/sequent.h:
7958 * s/ptx.h:
7959 * s/ptx4-2.h:
7960 * s/ptx4.h: Remove files for systems no longer supported.
7961
7962 * callproc.c (Fcall_process): Fix previous change.
7963
7964 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
7965
7966 * unexsunos4.c: Remove file, system not supported anymore.
7967
7968 * m/mips.h:
7969 * m/intel386.h:
7970 * callproc.c:
7971 * config.in:
7972 * ecrt0.c:
7973 * emacs.c:
7974 * fileio.c:
7975 * frame.c:
7976 * getpagesize.h:
7977 * keyboard.c:
7978 * lread.c:
7979 * process.c:
7980 * puresize.h:
7981 * sysdep.c:
7982 * systty.h:
7983 * syswait.h:
7984 * unexec.c:
7985 * xdisp.c:
7986 * alloc.c: Remove code containing references to symbols defined by
7987 unsupported systems.
7988
7989 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
7990
7991 * coding.c (detect_coding_mask): Fix previous change.
7992
7993 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
7994
7995 * coding.c (detect_coding_iso2022): New arg
7996 latin_extra_code_state. Allow Latin extra codes only
7997 when *latin_extra_code_state is nonzero.
7998 (detect_coding_mask): If there is a NULL byte, detect the encoding
7999 as UTF-16 or binary. If Latin extra codes exist, detect the
8000 encoding as ISO-2022 only when there's no other proper encoding is
8001 found.
8002
8003 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8004
8005 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
8006 #ifdef MAC_OS.
8007
8008 2008-01-08 Richard Stallman <rms@gnu.org>
8009
8010 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
8011
8012 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
8013
8014 * keyboard.c (parse_menu_item): Don't enclose key bindings on
8015 menu bar in parentheses.
8016
8017 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
8018
8019 * m/7300.h:
8020 * m/acorn.h:
8021 * m/alliant-2800.h:
8022 * m/alliant.h:
8023 * m/alliant1.h:
8024 * m/alliant4.h:
8025 * m/altos.h:
8026 * m/amdahl.h:
8027 * m/apollo.h:
8028 * m/att3b.h:
8029 * m/aviion-intel.h:
8030 * m/aviion.h:
8031 * m/celerity.h:
8032 * m/clipper.h:
8033 * m/cnvrgnt.h:
8034 * m/convex.h:
8035 * m/cydra5.h:
8036 * m/delta88k.h:
8037 * m/dpx2.h:
8038 * m/dual.h:
8039 * m/elxsi.h:
8040 * m/f301.h:
8041 * m/gould-np1.h:
8042 * m/gould.h:
8043 * m/i860.h:
8044 * m/ibmps2-aix.h:
8045 * m/ibmrt-aix.h:
8046 * m/ibmrt.h:
8047 * m/irist.h:
8048 * m/is386.h:
8049 * m/isi-ov.h:
8050 * m/mega68.h:
8051 * m/mg1.h:
8052 * m/news-r6.h:
8053 * m/news-risc.h:
8054 * m/news.h:
8055 * m/nh3000.h:
8056 * m/nh4000.h:
8057 * m/ns16000.h:
8058 * m/ns32000.h:
8059 * m/nu.h:
8060 * m/orion.h:
8061 * m/orion105.h:
8062 * m/paragon.h:
8063 * m/pfa50.h:
8064 * m/plexus.h:
8065 * m/pyramid.h:
8066 * m/pyrmips.h:
8067 * m/sh3el.h:
8068 * m/sps7.h:
8069 * m/sr2k.h:
8070 * m/stride.h:
8071 * m/sun1.h:
8072 * m/sun2.h:
8073 * m/sun3-68881.h:
8074 * m/sun3-fpa.h:
8075 * m/sun3-soft.h:
8076 * m/sun3.h:
8077 * m/sun386.h:
8078 * m/symmetry.h:
8079 * m/tad68k.h:
8080 * m/tahoe.h:
8081 * m/targon31.h:
8082 * m/tek4300.h:
8083 * m/tekxd88.h:
8084 * m/tower32.h:
8085 * m/tower32v3.h:
8086 * m/ustation.h:
8087 * m/wicat.h:
8088 * m/xps100.h:
8089 * s/cxux.h:
8090 * s/cxux7.h:
8091 * s/dgux.h:
8092 * s/dgux4.h:
8093 * s/dgux5-4-3.h:
8094 * s/dgux5-4r2.h:
8095 * s/esix.h:
8096 * s/esix5r4.h:
8097 * s/hiuxmpp.h:
8098 * s/hiuxwe2.h:
8099 * s/iris3-5.h:
8100 * s/iris3-6.h:
8101 * s/isc2-2.h:
8102 * s/isc3-0.h:
8103 * s/isc4-0.h:
8104 * s/isc4-1.h:
8105 * s/newsos5.h:
8106 * s/newsos6.h:
8107 * s/osf1.h:
8108 * s/osf5-0.h:
8109 * s/riscix1-1.h:
8110 * s/riscix12.h:
8111 * s/sco4.h:
8112 * s/sco5.h:
8113 * s/sunos4-0.h:
8114 * s/sunos4-1.h:
8115 * s/sunos413.h:
8116 * s/sunos4shr.h:
8117 * s/umax.h:
8118 * s/unipl5-2.h:
8119 * s/xenix.h:
8120 * cxux-crt0.s:
8121 * unexapollo.c:
8122 * unexconvex.c:
8123 * unexenix.c:
8124 * unexsni.c: Remove files for systems no longer supported.
8125
8126 * m/intel386.h: Remove references to unsupported systems.
8127
8128 * w32.c (get_emacs_configuration): Remove reference to i860.
8129
8130 * sysdep.c: Remove dead code.
8131
8132 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
8133
8134 * s/rtu.h:
8135 * m/masscomp.h: Remove files. Platform is obsolete.
8136
8137 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
8138
8139 * dbusbind.c (Fdbus_method_return): New function.
8140 (xd_read_message): Add the serial number to the event.
8141 (Fdbus_register_method): Activate the function.
8142
8143 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
8144
8145 * keyboard.c (read_key_sequence): Fix typo.
8146
8147 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
8148
8149 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
8150 (xd_signature, xd_append_arg): Handle element type detection for
8151 empty arrays.
8152 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
8153 SDATA () calls; this must be solved more general.
8154 (Fdbus_register_signal): Use SBYTES instead of strlen.
8155
8156 2008-01-03 Magnus Henoch <magnus@zemdatav>
8157
8158 * dbusbind.c (xd_append_arg): Use unsigned char instead of
8159 unsigned int for byte values (necessary for big-endian platform).
8160 (Fdbus_call_method): Handle the case of no returned arguments.
8161
8162 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
8163
8164 * dbusbind.c (xd_read_message): Use non-static input_event struct.
8165
8166 2007-12-31 Magnus Henoch <mange@freemail.hu>
8167
8168 * dbusbind.c (xd_signature): Signature of variant is just "v".
8169
8170 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
8171
8172 * dbusbind.c: Fix several errors and compiler warnings.
8173 Reported by Tom Tromey <tromey@redhat.com>
8174 (XD_ERROR, XD_DEBUG_MESSAGE)
8175 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
8176 (xd_append_arg): Part for basic D-Bus types rewitten.
8177 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
8178 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
8179 appropriate.
8180 (xd_read_message): Return Qnil. Don't signal an error; it is not
8181 useful during event reading.
8182 (Fdbus_register_signal): Signal an error if the check for
8183 FUNCTIONP fails.
8184 (Fdbus_register_method): New function. The implementation is not
8185 complete, the call of the function signals an error therefore.
8186 (Fdbus_unregister_object): New function, renamed from
8187 Fdbus_unregister_signal. The initial check signals an error, if
8188 the object is not well formed.
8189
8190 2007-12-30 Richard Stallman <rms@gnu.org>
8191
8192 * textprop.c (get_char_property_and_overlay):
8193 Signal error if POSITION is out of range in a buffer.
8194
8195 2007-12-29 Martin Rudalics <rudalics@gmx.at>
8196
8197 * w32fns.c (Fx_create_frame): Make copy of frame parameters
8198 because the original parameters are in pure storage now.
8199
8200 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8201
8202 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
8203
8204 2007-12-22 Eli Zaretskii <eliz@gnu.org>
8205
8206 * callint.c (syms_of_callint) <command-history>: Add reference to
8207 history-length in the doc string.
8208
8209 2007-12-17 Jason Rumney <jasonr@gnu.org>
8210
8211 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
8212 before passing as wParam.
8213
8214 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
8215
8216 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
8217 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
8218 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
8219 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
8220 as number.
8221 (Fdbus_call_method): Fix docstring.
8222
8223 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
8224
8225 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
8226 New macros.
8227 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
8228 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
8229 Simplify.
8230 (xd_signature): New function.
8231 (xd_append_arg): Compute also signatures. Major rewrite.
8232 (xd_retrieve_arg): Make debug messages friendly.
8233 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
8234 Check for signatures of arguments.
8235
8236 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
8237
8238 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
8239 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
8240 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
8241 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
8242 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
8243 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
8244 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
8245 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
8246 (xd_retrieve_value): Remove. Functionality included in ...
8247 (xd_append_arg): New function.
8248 (Fdbus_call_method, Fdbus_send_signal): Apply it.
8249
8250 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
8251
8252 * dbusbind.c (top): Include <stdio.h>.
8253 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
8254 dbus_message_new_method_call and dbus_message_new_signal.
8255 (Fdbus_register_signal): Rename unique_name to uname.
8256 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
8257 non-existing unique name. Fix typos in matching rule. Return an
8258 object which is useful in Fdbus_unregister_signal.
8259 (Fdbus_unregister_signal): Reimplementation, in order to remove
8260 only the corresponding entry.
8261 (Vdbus_registered_functions_table): Change the order of entries.
8262 Apply these changes in xd_read_message and Fdbus_register_signal.
8263
8264 2007-12-16 Andreas Schwab <schwab@suse.de>
8265
8266 * fileio.c (Finsert_file_contents): Fix overflow check to not
8267 depend on undefined integer overflow.
8268
8269 2007-12-14 Jason Rumney <jasonr@gnu.org>
8270
8271 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
8272 for characters above 127.
8273
8274 2007-12-13 Jason Rumney <jasonr@gnu.org>
8275
8276 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
8277 before dereferencing array.
8278 (lookup_vk_code): Remove zero comparison.
8279
8280 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
8281
8282 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
8283 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
8284 Use `unsigned int' instead of `uint'.
8285 (xd_read_message, Fdbus_register_signal): Split expressions into
8286 multiple lines before operators "&&" and "||", according to the
8287 GNU Coding Standards.
8288
8289 2007-12-14 Eli Zaretskii <eliz@gnu.org>
8290
8291 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
8292
8293 2007-12-12 Juri Linkov <juri@jurta.org>
8294
8295 * buffer.c (Frename_buffer): In interactive spec replace
8296 `read-buffer' with `read-string' that uses `buffer-name-history'
8297 as history, and the current buffer's name as default.
8298
8299 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
8300
8301 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
8302 manipulating the backtrace manually.
8303 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
8304 (struct backtrace, backtrace_list): Remove.
8305 (command_loop_1): Remove dead var `no_direct'.
8306
8307 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
8308 preserve non-built-in buffer-local variables.
8309 (Fkill_all_local_variables): Don't re-create&re-set permanent
8310 buffer-local variables.
8311
8312 2007-12-09 Juri Linkov <juri@jurta.org>
8313
8314 * buffer.c (Frename_buffer): Change interactive spec from "s" to
8315 Lisp code that uses `read-buffer' with current buffer as default.
8316
8317 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
8318
8319 * dbusbind.c (xd_read_message): Generate an event for every
8320 registered handler. There might be several handlers registered
8321 for the same signal.
8322 (Fdbus_register_signal): Don't overwrite a registration for the
8323 same signal. Add a new registration if handlers are different.
8324 (Vdbus_registered_functions_table): Rework doc string.
8325
8326 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
8327
8328 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
8329 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
8330 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
8331 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
8332 Unify argument lists.
8333 (xd_read_message, Fdbus_register_signal): Reorder and extend event
8334 arguments and hash table keys. Use unique name for service.
8335 (Fdbus_unregister_signal): Remove checks.
8336 (Vdbus_registered_functions_table): Fix doc string.
8337
8338 2007-12-05 Magnus Henoch <mange@freemail.hu>
8339
8340 * process.c (make_process): Initialize pty_flag to 0.
8341
8342 2007-12-05 Jason Rumney <jasonr@gnu.org>
8343
8344 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
8345 specified XBMs.
8346
8347 2007-12-05 Richard Stallman <rms@gnu.org>
8348
8349 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
8350
8351 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8352
8353 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
8354 New variable.
8355 (mac_try_close_socket) [MAC_OSX]: New function.
8356 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
8357 Update cfsockets_for_select. Replace invalid CFRunLoop source.
8358
8359 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
8360 Use mac_try_close_socket.
8361
8362 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8363
8364 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
8365 reloc_base.
8366 (copy_dysymtab): Compute relocation base here.
8367 (rebase_reloc_address) [__ppc64__]: New function.
8368 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
8369 changed.
8370
8371 2007-12-05 Jason Rumney <jasonr@gnu.org>
8372
8373 * w32proc.c (sys_spawnve): Quote args with wildcards.
8374
8375 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8376
8377 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
8378 __objc_* sections.
8379 (unrelocate) [_LP64]: Set relocation base to address of data segment.
8380
8381 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
8382
8383 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
8384 Move check for Vdbus_registered_functions_table to
8385 xd_read_queued_messages.
8386 (xd_read_queued_messages): Protect xd_read_message calls by
8387 internal_condition_case_1.
8388
8389 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
8390
8391 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
8392 Qdbus_system_bus and Qdbus_session_bus, respectively.
8393 (Vdbus_intern_symbols): Remove.
8394 (Vdbus_registered_functions_table): New hash table.
8395 (XD_SYMBOL_INTERN_SYMBOL): Remove.
8396 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
8397 Rewrite in order to manage registered functions by hash table
8398 Vdbus_registered_functions_table.
8399
8400 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
8401
8402 * xterm.c: Update URL to Window Manager Specification in comment.
8403
8404 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
8405
8406 * config.in (HAVE_DBUS): Add.
8407
8408 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
8409 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
8410 (obj): Add $(DBUS_OBJ).
8411 (LIBES): Add $(DBUS_LIBS).
8412 (dbusbind.o): New target.
8413
8414 * dbusbind.c: New file.
8415
8416 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
8417
8418 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
8419 (Qdbus_event): New Lisp symbol.
8420 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
8421 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
8422 (keys_of_keyboard ): Define dbus-event.
8423
8424 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
8425
8426 2007-12-01 Richard Stallman <rms@gnu.org>
8427
8428 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
8429
8430 2007-11-30 Jason Rumney <jasonr@gnu.org>
8431
8432 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
8433 (w32con_reset_terminal_modes): Clear screen buffer.
8434 (w32_face_attributes): Don't use color indexes that are out of range.
8435 Only reverse the default colors.
8436
8437 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
8438 WINDOWSNT.
8439
8440 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
8441
8442 2007-11-29 Jason Rumney <jasonr@gnu.org>
8443
8444 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
8445 (w32_face_attributes): Use Vtty_defined_color_alist to determine
8446 if the terminal colors are initialized.
8447 (unspecified_fg, unspecified_bg): Remove unused declarations.
8448
8449 2007-11-29 Andreas Schwab <schwab@suse.de>
8450
8451 * keyboard.c (apply_modifiers): Fix typo.
8452
8453 2007-11-29 Richard Stallman <rms@gnu.org>
8454
8455 * keymap.c (Fcurrent_local_map): Doc fix.
8456
8457 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
8458
8459 * s/gnu-kfreebsd.h: New file.
8460
8461 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
8462
8463 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
8464 Don't cast redundantly.
8465
8466 * keyboard.c (KEY_TO_CHAR): New macro.
8467 (parse_modifiers, apply_modifiers): Accept integer arguments.
8468 (read_key_sequence): Use them to unify the "shift->unshift" mapping
8469 for chars and symbol keys.
8470 After doing such remapping, apply function-key-map again.
8471
8472 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
8473
8474 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
8475 compiled anymore.
8476
8477 2007-11-26 Andreas Schwab <schwab@suse.de>
8478
8479 * process.c (list_processes_1): Fix indentation level of the
8480 command column.
8481
8482 2007-11-23 Andreas Schwab <schwab@suse.de>
8483
8484 * editfns.c (Fformat): Handle %c specially since it requires the
8485 argument to be of type int.
8486
8487 2007-11-23 Markus Triska <markus.triska@gmx.at>
8488
8489 * emacs.c (main): Call init_editfns before init_process, since
8490 init_process sets Vprocess_connection_type depending on OS release.
8491
8492 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
8493
8494 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
8495 (find_symbol_value): Use do_symval_forwarding.
8496
8497 * data.c (set_internal): Set the value in the `cons-cell' (for
8498 Buffer_Local_values) not only for frame-local variables.
8499
8500 2007-11-22 Andreas Schwab <schwab@suse.de>
8501
8502 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
8503 values to sprintf.
8504 * keymap.c (Fsingle_key_description): Likewise.
8505 * print.c (print_object): Likewise.
8506
8507 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
8508
8509 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
8510 file for image is nil.
8511
8512 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
8513
8514 * term.c: Include stdarg.h.
8515 (fatal): Implement using varargs.
8516 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
8517
8518 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8519
8520 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
8521 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
8522 Update call to buffer_slot_type_mismatch.
8523 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
8524 (buffer_slot_type_mismatch): Update.
8525 * buffer.c (buffer_local_types): Remove.
8526 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
8527 (defvar_per_buffer): Set the type in the buffer_objfwd.
8528
8529 2007-11-21 Jason Rumney <jasonr@gnu.org>
8530
8531 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
8532 CreateFileMapping returns NULL on failure.
8533
8534 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
8535
8536 * search.c (Fset_match_data): Remove the `evaporate' feature.
8537 (unwind_set_match_data): Don't use the `evaporate' feature.
8538
8539 2007-11-21 Jason Rumney <jasonr@gnu.org>
8540
8541 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
8542
8543 * w32console.c (w32con_write_glyphs): Remove unused variables.
8544
8545 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
8546
8547 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
8548
8549 * s/darwin.h (MULTI_KBOARD): Remove.
8550
8551 * macfns.c (x_create_tip_frame, Fx_create_frame)
8552 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
8553
8554 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
8555
8556 * buffer.c (Fbuffer_local_value): Remove redundant test.
8557 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
8558 than in `current-buffer' to match the comment.
8559 Do the swap using swap_in_global_binding.
8560
8561 * data.c (store_symval_forwarding, set_internal):
8562 * eval.c (specbind): Remove dead code.
8563
8564 * coding.c (detect_coding, Fupdate_coding_systems_internal):
8565 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
8566 Since we do not want to see internal Lisp_*fwd objects here.
8567
8568 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
8569
8570 * sysdep.c (init_system_name): Use getaddrinfo if available.
8571
8572 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
8573 (x_scroll_bar_note_movement): start, end, with, height in struct
8574 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
8575
8576 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
8577
8578 * puresize.h (BASE_PURESIZE): Increase to 1190000.
8579
8580 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
8581
8582 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
8583 This undoes Richard's change of 14-Oct-2002.
8584
8585 * alloc.c (allocate_other_vector):
8586 * lisp.h (allocate_other_vector): Remove.
8587
8588 * window.c (struct save_window_data): Move non-lisp data to the end
8589 and make it `int' rather than Lisp_Object.
8590 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
8591 Done wrap/unwrap integer values.
8592 (Fset_window_configuration, compare_window_configurations):
8593 Update use of fields to their new types.
8594
8595 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
8596 Turn integer fields into `int'. Merge x_window_low and x_window_high.
8597 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
8598 (SET_SCROLL_BAR_X_WINDOW): Remove.
8599 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
8600 Access the new x_window field directly.
8601 * xterm.c (x_scroll_bar_create): Use a pseudovector.
8602 Don't wrap/unwrap integers into Lisp_Objects.
8603 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
8604 (x_scroll_bar_report_motion):
8605 Don't wrap/unwrap integers into Lisp_Objects.
8606 (x_term_init): Use SDATA.
8607 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
8608 (x_scroll_bar_set_handle, x_scroll_bar_remove)
8609 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
8610 (x_scroll_bar_report_motion, x_scroll_bar_clear):
8611 * xfns.c (x_set_background_color):
8612 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
8613 Access the new x_window field directly.
8614
8615 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
8616 (allocate_pseudovector): Make non-static.
8617
8618 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
8619 (allocate_pseudovector): Declare.
8620 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
8621
8622 2007-11-15 Andreas Schwab <schwab@suse.de>
8623
8624 * editfns.c (Fformat): Correctly format EMACS_INT values.
8625 Also take precision into account when formatting an integer.
8626
8627 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
8628
8629 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
8630
8631 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
8632 (syms_of_keyboard): Defsubr it.
8633
8634 * data.c (swap_in_global_binding): Fix longstanding bug where
8635 store_symval_forwarding was not called with the right second argument,
8636 thus causing objfwd-ing from being dropped.
8637
8638 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
8639
8640 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
8641 (Fx_display_pixel_height, Fx_display_planes)
8642 (Fx_display_color_cells, Fx_server_max_request_size)
8643 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
8644 (Fx_display_visual_class, Fx_display_save_under):
8645 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
8646 (Fx_display_pixel_height, Fx_display_planes)
8647 (Fx_display_color_cells, Fx_server_max_request_size)
8648 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
8649 (Fx_display_mm_height, Fx_display_mm_width)
8650 (Fx_display_backing_store, Fx_display_visual_class)
8651 (Fw32_select_font, Fx_display_save_under):
8652 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
8653 (Fx_display_pixel_height, Fx_display_planes)
8654 (Fx_display_color_cells, Fx_server_max_request_size)
8655 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
8656 (Fx_display_save_under): Fix typos in docstrings.
8657
8658 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
8659
8660 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
8661 corresponding to deleted entries; they are an implementation detail.
8662 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
8663 Remove variables.
8664 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
8665 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
8666 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
8667 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
8668 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
8669 (Fw32_define_rgb_color, Fw32_load_color_file)
8670 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
8671 Fix typos in docstrings.
8672 (Fx_server_version): Reflow docstring.
8673 (Fw32_shell_execute): Doc fixes.
8674
8675 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
8676
8677 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
8678 if w32_parse_hot_key returned nil.
8679
8680 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
8681
8682 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
8683
8684 2007-11-09 Jason Rumney <jasonr@gnu.org>
8685
8686 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
8687
8688 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
8689
8690 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
8691 Remove W32_SCROLL_BAR_CLICK_EVENT.
8692
8693 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
8694 Add MULTIMEDIA_KEY_EVENT.
8695
8696 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
8697 (lispy_multimedia_keys) [WINDOWSNT]: New array.
8698 (make_lispy_event) [WINDOWSNT]: Use it to translate
8699 MULTIMEDIA_KEY_EVENT.
8700
8701 * w32term.h (WM_APPCOMMAND): Define if not already.
8702 (GET_APPCOMMAND_LPARAM): Likewise.
8703
8704 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
8705 WM_APPCOMMAND.
8706
8707 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
8708 (syms_of_w32fns): Export and initialize it.
8709 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
8710
8711 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
8712
8713 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
8714 twice.
8715
8716 * xdisp.c (handle_face_prop): Fix last change.
8717
8718 2007-11-09 Richard Stallman <rms@gnu.org>
8719
8720 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
8721 not just for after-strings and before-strings.
8722 Call face_for_overlay_string and pass the overlay to it.
8723 (handle_display_prop): Determine whether property came from an overlay.
8724 Pass OVERLAY arg to handle_single_display_spec.
8725 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
8726 (load_overlay_strings): Fill in it->string_overlays.
8727 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
8728
8729 * xfaces.c (face_for_overlay_string): Function renamed from
8730 face_at_buffer_position_no_overlays, and add arg OVERLAY.
8731
8732 * dispextern.h (struct it): New elt string_overlays.
8733 New elt from_overlay, also in stack.
8734 Rearrange a few elements.
8735 (face_for_overlay_string): Decl renamed from
8736 face_at_buffer_position_no_overlays, and add argument.
8737
8738 2007-11-09 Richard Stallman <rms@gnu.org>
8739
8740 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
8741 to get the base face for an overlay string.
8742
8743 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
8744
8745 * xfaces.c (face_at_buffer_position_no_overlays): New function.
8746
8747 * xdisp.c (handle_stop): Move some code out of loop.
8748
8749 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8750
8751 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
8752 Fix conversion from Lisp object to ATSUFontID.
8753
8754 2007-11-09 Jason Rumney <jasonr@gnu.org>
8755
8756 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
8757
8758 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8759
8760 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
8761 Don't assume regions are aligned to page boundary.
8762 (print_load_command_name): Add LC_UUID if defined.
8763
8764 2007-11-09 Richard Stallman <rms@gnu.org>
8765
8766 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
8767
8768 2007-11-07 Jason Rumney <jasonr@gnu.org>
8769
8770 * s/windows95.h: Remove.
8771
8772 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
8773
8774 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
8775 abort with a message on unhandled store_type values.
8776
8777 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
8778
8779 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
8780 Remove HAVE_X11R5 and HAVE_X11R4.
8781
8782 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
8783
8784 * Makefile.in: Remove references to sunfns.c and sunfns.o.
8785
8786 2007-11-01 Johan Bockgård <bojohan@gnu.org>
8787
8788 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
8789 Don't set s->stippled_p here, since it has already been set by
8790 x_set_glyph_string_gc from x_draw_glyph_string.
8791
8792 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
8793
8794 * sunfns.c: Remove file.
8795
8796 * m/sun386.h:
8797 * m/sun2.h:
8798 * m/sparc.h: Remove Sun windows code.
8799
8800 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
8801
8802 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
8803 (init_keyboard): Set current_kboard's window-system to nil.
8804 (tty_read_avail_input): Typo.
8805 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
8806
8807 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
8808
8809 * s/usg5-4.h:
8810 * s/usg5-3.h:
8811 * s/ptx.h:
8812 * m/is386.h:
8813 * m/ibmps2-aix.h:
8814 * Makefile.in: Remove all mentions of X10.
8815
8816 * dispnew.c (syms_of_display): Don't mention version 10.
8817
8818 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
8819
8820 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
8821 ($(BLD)/abbrev.$(O)): Remove.
8822
8823 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8824
8825 Rewrite abbrev.c in Elisp.
8826 * image.c (Qcount): Don't declare as extern.
8827 (syms_of_image): Initialize and staticpro `Qcount'.
8828 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
8829 * emacs.c (main): Don't call syms_of_abbrev.
8830 * Makefile.in (obj): Remove abbrev.o.
8831 (abbrev.o): Remove.
8832 * abbrev.c: Remove.
8833
8834 2007-10-26 Martin Rudalics <rudalics@gmx.at>
8835
8836 * window.c (window_min_size_2): Don't count header-line.
8837
8838 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
8839
8840 * frame.h (struct frame): Move all bit fields after the first bit
8841 field to take advantage of the available space. Group all the
8842 chars together to reduce wasted space due to padding.
8843
8844 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
8845
8846 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
8847
8848 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
8849 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
8850 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
8851 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
8852 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
8853 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
8854 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
8855 (last_marked, mark_object_loop_halt): Make static.
8856
8857 * frame.c (syms_of_frame) <delete-frame-functions>:
8858 Fix typo in docstring.
8859
8860 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
8861
8862 * w32.c (init_environment): Fix tiny memory leak.
8863 (w32_get_resource): Remove unused variable `ok'.
8864
8865 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8866
8867 Make `window-system' into a keyboard-local variable (rather than
8868 frame-local as done originally by multi-tty).
8869
8870 * keyboard.h (struct kboard): Add Vwindow_system.
8871 * keyboard.c (init_kboard): Set a default for Vwindow_system.
8872 (mark_kboards): Mark Vwindow_system.
8873
8874 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
8875 (init_display): Don't set the obsolete `window-system' frame-param.
8876
8877 * xterm.c (x_term_init):
8878 * w32term.c (w32_create_terminal):
8879 * term.c (init_tty): Set Vwindow_system.
8880 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
8881 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
8882
8883 * xfns.c (Fx_create_frame, x_create_tip_frame):
8884 * w32fns.c (Fx_create_frame, x_create_tip_frame):
8885 * macfns.c (Fx_create_frame):
8886 Don't set the obsolete `window-system' frame-param.
8887
8888 * frame.h (Qwindow_system): Remove.
8889 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
8890 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
8891
8892 2007-10-24 Richard Stallman <rms@gnu.org>
8893
8894 * frame.c (x_figure_window_size): For fullscreen case,
8895 set USPosition | PPosition without clobbering rest of window_prompting.
8896
8897 * keyboard.c (Fcurrent_idle_time): Doc fix.
8898
8899 * print.c (Fwith_output_to_temp_buffer): Doc fix.
8900
8901 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
8902
8903 * process.c (unwind_request_sigio): Only define if __ultrix__.
8904
8905 * callproc.c (child_setup): Remove spurious *.
8906
8907 * lisp.h (Fget_text_property): Declare.
8908 (have_menus_p): Declare it here rather than in sys-dep header files.
8909 * macterm.h (have_menus_p):
8910 * msdos.h (have_menus_p):
8911 * xterm.h (have_menus_p): Remove.
8912
8913 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
8914 (Fmake_variable_frame_local): Just check the variable's const-ness
8915 rather than checking nil or t.
8916
8917 2007-10-22 Jason Rumney <jasonr@gnu.org>
8918
8919 * w32fns.c: Include math.h.
8920 (w32_abort): Declaration moved to nt/config.nt.
8921
8922 * s/ms-w32.h (HAVE_STDLIB_H): Define.
8923 (abort): Redefinition moved to nt/config.nt.
8924
8925 * m/windowsnt.h: Remove.
8926
8927 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
8928
8929 * emacs.c (Fdump_emacs): Fix typo in message.
8930 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
8931 <installation-directory>: Reflow docstring.
8932
8933 2007-10-22 Juri Linkov <juri@jurta.org>
8934
8935 * minibuf.c: Allow minibuffer default to be a list of default values.
8936 With empty input use the first element of this list as returned default.
8937 (string_to_object)
8938 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
8939 (read_minibuf): If defalt is cons, set histstring to its car.
8940 (Fread_string): If default_value is cons, set val to its car.
8941 (Fread_buffer): If def is cons, use its car.
8942 (Fcompleting_read): If defalt is cons, set val to its car.
8943
8944 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
8945
8946 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
8947
8948 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
8949
8950 * doc.c (Fdocumentation): Check for advice in all cases.
8951
8952 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
8953
8954 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
8955
8956 2007-10-19 Richard Stallman <rms@gnu.org>
8957
8958 * doc.c (Fdocumentation): Check for and handle an advised function.
8959
8960 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
8961
8962 * process.c (Fset_process_filter): Doc fix.
8963
8964 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
8965
8966 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
8967 which caused key-translation-map to applied repeatedly (thus breaking
8968 double-mode).
8969
8970 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8971
8972 * xselect.c (x_own_selection, x_handle_selection_clear)
8973 (x_clear_frame_selections):
8974 * w32menu.c (list_of_panes, list_of_items):
8975 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
8976 * textprop.c (validate_plist, interval_has_all_properties)
8977 (interval_has_some_properties, interval_has_some_properties_list)
8978 (add_properties, text_property_list):
8979 * process.c (Fget_buffer_process, list_processes_1, status_notify):
8980 * minibuf.c (Fassoc_string):
8981 * macselect.c (x_own_selection, x_clear_frame_selections)
8982 (Fx_disown_selection_internal):
8983 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
8984 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
8985
8986 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
8987
8988 * process.c: Link to libs for calling res_init() if available.
8989 (Fmake_network_process): Call res_init() before getaddrinfo or
8990 gethostbyname, if possible.
8991
8992 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
8993
8994 * lread.c (read1): Set pvectype for char_tables.
8995
8996 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
8997 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
8998 Add type checks.
8999 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
9000
9001 * alloc.c (free_misc): Use XMISCTYPE.
9002 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
9003
9004 2007-10-17 Glenn Morris <rgm@gnu.org>
9005
9006 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
9007 (syms_of_minibuf): Add Qcompletion_ignore_case.
9008 * dired.c (Qcompletion_ignore_case): Change to external.
9009 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
9010 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
9011 (Fread_file_name): Use it rather than intern'ing.
9012
9013 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
9014 (Fread_coding_system): Ignore case of user input.
9015
9016 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9017
9018 * xdisp.c (handle_display_prop): Ignore display specs after
9019 replacing one when string text is being replaced.
9020 (handle_single_display_spec): Pretend as if characters with display
9021 property haven't been consumed only when buffer text is being replaced.
9022
9023 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
9024
9025 * xfns.c (Fx_create_frame, Fx_display_list):
9026 * window.c (window_fixed_size_p, enlarge_window)
9027 (shrink_window_lowest_first):
9028 * macterm.c (init_font_name_table):
9029 * macfns.c (Fx_create_frame, Fx_display_list):
9030 * lread.c (close_load_descs):
9031 * keyboard.c (read_char_x_menu_prompt):
9032 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
9033 * coding.c (code_convert_region_unwind): Test the type of an object
9034 rather than just !NILP before extracting data from it.
9035
9036 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
9037
9038 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
9039 (XMISCANY): New macro.
9040 (XMISCTYPE): Use it.
9041 (struct Lisp_Misc_Any): New type.
9042 (union Lisp_Misc): Use it.
9043 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
9044 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
9045 (find_symbol_value, set_internal, default_value, Fset_default)
9046 (Fmake_variable_buffer_local, Fmake_local_variable)
9047 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
9048 (Flocal_variable_if_set_p, Fvariable_binding_locus):
9049 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
9050 * alloc.c (allocate_buffer): Set the size and tag.
9051 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
9052 Use XMISCANY.
9053 (die): Follow the GNU convention for error messages.
9054 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
9055 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
9056 tag any more.
9057 (set_buffer_internal_1):
9058 * frame.c (store_frame_param):
9059 * eval.c (specbind):
9060 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
9061
9062 * doc.c (Fsnarf_documentation): Simplify.
9063
9064 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
9065
9066 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
9067 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
9068
9069 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
9070
9071 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
9072
9073 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
9074
9075 * eval.c (do_autoload): Don't save autoloads.
9076
9077 * data.c (Ffset): Save autoload of the function being set.
9078
9079 2007-10-07 John Paul Wallington <jpw@pobox.com>
9080
9081 * xfns.c (x_create_tip_frame): Set the `display-type' frame
9082 parameter before setting up faces.
9083
9084 2007-10-13 Eli Zaretskii <eliz@gnu.org>
9085
9086 * ccl.c (Fregister_code_conversion_map):
9087 * keyboard.c (append_tool_bar_item): Reformat last change.
9088
9089 * lisp.h (eabs): Rename from `abs'. All callers changed.
9090
9091 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
9092
9093 * buffer.c (add_overlay_mod_hooklist):
9094 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
9095 * fontset.c (make_fontset):
9096 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
9097 (append_tool_bar_item):
9098 * macmenu.c (grow_menu_items):
9099 * w32menu.c (grow_menu_items):
9100 * xmenu.c (grow_menu_items): Use larger_vector.
9101
9102 2007-10-13 Eli Zaretskii <eliz@gnu.org>
9103
9104 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
9105 selected frame'' on MSDOS).
9106
9107 2007-10-12 Martin Rudalics <rudalics@gmx.at>
9108
9109 * frame.c (Qexplicit_name): New variable.
9110 (x_report_frame_params): Report it in parameter alist.
9111 (syms_of_frame): Intern and staticpro it.
9112
9113 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
9114
9115 * macfns.c (x_create_tip_frame): Set terminal for frame.
9116
9117 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
9118
9119 * frame.c (Qenvironment): Remove.
9120 (syms_of_frame) <Qenvironment>: Don't initialize.
9121 (Fdelete_frame): Don't treat the `environment' param specially.
9122 * frame.h (Qenvironment): Don't declare.
9123 * callproc.c (set_initial_environment): Don't set unused frame param.
9124
9125 * frame.c (Fframe_with_environment): Remove.
9126 (syms_of_frame) <Sframe_with_environment>: Don't declare.
9127
9128 * lisp.h (Fframe_with_environment): Don't declare.
9129
9130 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
9131
9132 * indent.c (indent_tabs_mode, last_known_column)
9133 (last_known_column_modified): Make static.
9134 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
9135
9136 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
9137
9138 * puresize.h (BASE_PURESIZE): Increase to 1170000.
9139
9140 2007-10-09 Jason Rumney <jasonr@gnu.org>
9141
9142 * w32term.c (x_set_window_size): Disable code that attempts to tell
9143 Lisp code about a size change before it actually happens.
9144
9145 2007-10-09 Richard Stallman <rms@gnu.org>
9146
9147 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
9148 return HANDLED_RETURN.
9149
9150 2007-10-08 Martin Rudalics <rudalics@gmx.at>
9151
9152 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
9153 when there's an unread command event.
9154
9155 * frame.c (focus_follows_mouse): Move here from frame.el to allow
9156 window autoselection act appropriately when leaving selected frame.
9157 (syms_of_frame): Initialize focus_follows_mouse.
9158 * frame.h (focus_follows_mouse): Extern it.
9159 * macterm.c (XTread_socket): When focus_follows_mouse is nil
9160 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
9161 * msdos.c (dos_rawgetc): Likewise.
9162 * w32term.c (w32_read_socket): Likewise.
9163 * xterm.c (handle_one_xevent): Likewise.
9164 * xdisp.c (syms_of_xdisp): In doc-string of
9165 mouse-autoselect-window mention focus-follows-mouse.
9166
9167 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9168
9169 * macterm.c (mac_load_query_font): Fix missing return value.
9170 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
9171 Add BLOCK_INPUT.
9172
9173 2007-10-08 Richard Stallman <rms@gnu.org>
9174
9175 * xdisp.c (get_window_cursor_type): Implement documented behavior
9176 for cursor-in-non-selected-windows = t.
9177
9178 2007-10-08 Jason Rumney <jasonr@gnu.org>
9179
9180 * w32.c (w32_get_resource): Always close registry keys.
9181
9182 2007-10-08 Jason Rumney <jasonr@gnu.org>
9183
9184 * makefile.w32-in (LIBS): Add COMCTL32.
9185
9186 * w32fns.c (globals_of_w32fns): Init common controls.
9187
9188 2007-10-08 Richard Stallman <rms@gnu.org>
9189
9190 * image.c (our_memory_buffer): Rename from omfib_buffer.
9191
9192 2007-10-08 Richard Stallman <rms@gnu.org>
9193
9194 * buffer.c (Foverlays_at): Doc fix.
9195
9196 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
9197
9198 * fns.c (Fplist_put): Preserve uneven tail data.
9199
9200 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
9201
9202 * termhooks.h (enum event_kind): Remove trailing comma.
9203
9204 * frame.h (enum): Remove trailing comma.
9205
9206 2007-10-08 Dhuvra Krishnamurthy <dhuvrakm@gmail.com> (tiny change)
9207
9208 * w32proc.c (delete_child): Don't terminate threads of zombies.
9209
9210 2007-10-08 Martin Rudalics <rudalics@gmx.at>
9211
9212 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
9213
9214 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
9215 last-repeatable-command.
9216 (init_kboard): Initialize Vlast_repeatable_command.
9217 (command_loop_1): Set it to real_this_command unless that was
9218 bound to an input event.
9219 (mark_kboards): Mark it.
9220
9221 2007-10-08 Richard Stallman <rms@gnu.org>
9222
9223 * eval.c (condition-case): Doc fix.
9224
9225 2007-10-08 Masatake YAMATO <jet@gyve.org>
9226
9227 * xfaces.c (tty_supports_face_attributes_p): Fix code
9228 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
9229 was copied and not edited.
9230
9231 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
9232
9233 Add new `input-decode-map' keymap and use it for terminal
9234 escape sequences.
9235 * keyboard.h (struct kboard): Add Vinput_decode_map.
9236 Remove Vlocal_key_translation_map.
9237 * keyboard.c (read_key_sequence): Add support for input-decode-map.
9238 (init_kboard): Init input-decode-map.
9239 Replace local-key-translation-map back with key-translation-map.
9240 (syms_of_keyboard): Declare input-decode-map.
9241 Remove local-key-translation-map. Update docstrings.
9242 (mark_kboards): Mark Vinput_decode_map.
9243 Don't mark Vlocal_key_translation_map.
9244 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
9245 Replace local-key-translation-map back with key-translation-map.
9246 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
9247 Bind in input-decode-map rather than function-key-map.
9248
9249 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
9250 This was made redundant by the previous introduction of XSETPVECTYPE.
9251
9252 2007-10-09 Richard Stallman <rms@gnu.org>
9253
9254 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
9255
9256 2007-09-29 Richard Stallman <rms@gnu.org>
9257
9258 * eval.c (internal_condition_case_2, internal_condition_case_1)
9259 (internal_condition_case): Reenable abort if x_catching_errors ()
9260 to see if that really happens and why.
9261
9262 2007-10-06 Andreas Schwab <schwab@suse.de>
9263
9264 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
9265
9266 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
9267
9268 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
9269
9270 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
9271
9272 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
9273
9274 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
9275
9276 * window.h (struct window):
9277 * window.c (struct save_window_data, struct saved_window):
9278 * termhooks.h (struct terminal):
9279 * process.h (struct Lisp_Process):
9280 * frame.h (struct frame):
9281 * buffer.h (struct buffer):
9282 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
9283 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
9284 The size field of (pseudo)vectors is now unsigned.
9285 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
9286
9287 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
9288 Turn `count' into an integer.
9289
9290 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
9291 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
9292 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
9293 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
9294 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
9295
9296 * alloc.c (allocate_pseudovector): New fun.
9297 (ALLOCATE_PSEUDOVECTOR): New macro.
9298 (allocate_window, allocate_terminal, allocate_frame)
9299 (allocate_process): Use it.
9300 (mark_vectorlike): New function.
9301 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
9302 (mark_terminals): Use it.
9303 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
9304 (Fmake_byte_code): Use XSETPVECTYPE.
9305
9306 * frame.c (Fframe_parameters): Minor simplification.
9307
9308 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
9309
9310 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
9311
9312 * buffer.c (Fget_buffer_create, init_buffer_once):
9313 * lread.c (defsubr):
9314 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
9315
9316 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
9317 defined differently in the m/*.h files.
9318 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
9319 (XSETPVECTYPE): New macro.
9320 (XSETPSEUDOVECTOR): Use it.
9321
9322 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
9323 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
9324
9325 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
9326 * lread.c (defvar_per_buffer):
9327 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
9328
9329 * window.c (candidate_window_p): Only consider as visible frames that
9330 are on the same terminal.
9331
9332 * m/ibms390x.h (MARKBIT): Remove unused macro.
9333
9334 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
9335
9336 * lread.c (Fload): Fix typo in docstring.
9337
9338 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
9339
9340 * floatfns.c (Fexpt): Manually check for overflows, so that a power
9341 of a non-zero value can't yield zero.
9342
9343 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
9344
9345 * term.c (term_clear_mouse_face, term_mouse_highlight)
9346 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
9347
9348 * print.c (safe_debug_print): Use XHASH.
9349
9350 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
9351 Lisp elements such as tags.
9352 (XHASH): New macro.
9353 (EQ): Use it.
9354 (SREF, SSET, STRING_COPYIN): Use SDATA.
9355 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
9356
9357 * alloc.c (mark_terminal): Remove left-over declaration.
9358 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
9359 (allocate_vectorlike): Remove type argument. Adjust callers.
9360 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
9361 Only handle the one remaining MEM_TYPE_VECTORLIKE.
9362
9363 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
9364 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
9365 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
9366 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
9367 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
9368 Use them.
9369
9370 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
9371 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
9372 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
9373
9374 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
9375
9376 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
9377 loaded by default.
9378
9379 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
9380
9381 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
9382 on this tty.
9383 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
9384
9385 * term.c (mouse_face_window): Rename from Qmouse_face_window.
9386 Update all users.
9387 (handle_one_term_event): Use Gpm_DrawPointer.
9388 (Fgpm_mouse_start): Rename from Fterm_open_connection.
9389 Signal errors instead of returning nil. Always return nil.
9390 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
9391 Make it a noop if gpm-mouse was not activated.
9392 (syms_of_term): Update names.
9393
9394 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
9395
9396 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
9397 (init_sys_modes): Check that gpm_tty is the current tty.
9398
9399 * alloc.c (allocate_terminal): Set the vector size to only count the
9400 lisp fields. Initialize those to nil.
9401 (mark_object): Don't treat terminals specially.
9402 (mark_terminal): Remove.
9403 (mark_terminals): Use mark_object instead.
9404
9405 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
9406 the GC to the beginning.
9407
9408 * indent.h:
9409 * indent.c: Use EMACS_INT for ints coming from Elisp data.
9410
9411 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
9412
9413 2007-09-25 Jason Rumney <jasonr@gnu.org>
9414
9415 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
9416
9417 * w32console.c (create_w32cons_output): Remove.
9418
9419 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
9420
9421 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
9422 (reset_sys_modes): Use reset_terminal_modes_hook.
9423
9424 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
9425
9426 * eval.c (do_autoload): Don't output any message.
9427
9428 2007-09-24 Juri Linkov <juri@jurta.org>
9429
9430 * emacs.c (standard_args): Change priority of "--no-splash"
9431 from 40 to 3. Add "--no-desktop" with the same priority.
9432
9433 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
9434
9435 * alloc.c (gc_sweep): Check cons cell mark bits word by word
9436 and optimize the case where they are all 1.
9437
9438 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
9439
9440 * lisp.h (abs): Define if not defined.
9441 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
9442 Don't define `abs', since it's defined in lisp.h.
9443
9444 2007-09-22 Eli Zaretskii <eliz@gnu.org>
9445
9446 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
9447 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
9448 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
9449 (init_tty): Use DEV_TTY instead of "/dev/tty".
9450 [WINDOWSNT]: No need to protect from NAME arg being null.
9451
9452 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
9453
9454 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
9455 up the tty state.
9456
9457 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9458
9459 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
9460 (gpm_tty): Change its type.
9461 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
9462 (gpm_tty): Change its type and initialize it.
9463 (Fterm_open_connection): Check the frame is indeed a tty.
9464 Use the new gpm_tty.
9465 (Fterm_close_connection): Use the new gpm_tty.
9466 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
9467 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
9468
9469 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
9470
9471 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
9472 underline_color, to draw strike-through.
9473
9474 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
9475
9476 * lisp.h (allocate_terminal): Declare.
9477
9478 * window.c (candidate_window_p): Consider frames that are being placed
9479 by the user as somewhere between visible and iconified.
9480 (window_loop): Prefer windows on the current frame.
9481 (Fselect_window): Move the use of select-frame to the beginning so we
9482 can just delegate all the work (it'll call us back anyway).
9483
9484 * frame.c (Qdisplay_environment_variable):
9485 * frame.h (Qdisplay_environment_variable): Delete.
9486
9487 * .gdbinit (xbacktrace): Print the arg's address rather than the value
9488 of the first arg, since that value may be a union.
9489
9490 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
9491 parameter rather than Qdisplay_environment_variable. If all else
9492 fails, look for DISPLAY in initial-environment.
9493
9494 2007-09-21 Glenn Morris <rgm@gnu.org>
9495
9496 * Makefile.in (emacstool): Remove target.
9497 (lisp, shortlisp): Remove termdev.elc.
9498
9499 2007-09-21 Markus Triska <markus.triska@gmx.at>
9500
9501 * xterm.c (x_delete_display): Compile session management conditionally.
9502
9503 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
9504
9505 * callproc.c (getenv_internal_1): New function.
9506 (getenv_internal): Use it.
9507 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
9508
9509 * terminal.c (get_terminal): Don't accept ints to represent terminals.
9510 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
9511 (Fset_terminal_parameter): Work with dead terminals as well.
9512 (Fmodify_terminal_parameters): Remove.
9513
9514 * terminal.c (get_terminal): Handle terminals.
9515 Make sure the terminal returned is live.
9516 (create_terminal): Use allocate_terminal.
9517 (mark_terminals): Move to alloc.c.
9518 (delete_terminal): Use terminal->name as liveness status.
9519 NULL out fields after freeing their contents.
9520 Don't deallocate the object.
9521 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
9522 rather than an int.
9523 (Fterminal_live_p): Accept non-integer arguments.
9524 (Fterminal_list): Return terminal objects rather than an ints.
9525
9526 * alloc.c (enum mem_type): New member for `terminal' objects.
9527 (allocate_terminal): New function.
9528 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
9529 Handle terminals.
9530 (mark_terminal): New fun.
9531 (mark_terminals): Move from terminal.c.
9532
9533 * term.c (get_tty_terminal): Don't treat output_initial specially.
9534 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
9535 (delete_tty): Use terminal->name as liveness status.
9536
9537 * termhooks.h (struct terminal): Make it into a pseudovector.
9538 Remove `deleted' replaced by checking `name's nullness.
9539
9540 * print.c (print_object): Handle terminals.
9541
9542 * lisp.h (enum pvec_type): New `terminal' pseudovector.
9543 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
9544
9545 * frame.c (make_terminal_frame):
9546 * keyboard.c (tty_read_avail_input):
9547 * w32term.c (x_delete_terminal):
9548 * xfns.c (Fx_create_frame, x_create_tip_frame):
9549 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
9550
9551 2007-09-20 Glenn Morris <rgm@gnu.org>
9552
9553 * process.c (Fmake_network_process): Doc fix.
9554
9555 2007-09-19 Jason Rumney <jasonr@gnu.org>
9556
9557 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
9558
9559 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
9560
9561 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
9562 Fix a C warning regarding variable constness.
9563
9564 * xterm.c (handle_one_xevent): Fix a C warning.
9565
9566 2007-09-18 Jason Rumney <jasonr@gnu.org>
9567
9568 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
9569
9570 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
9571
9572 * gtkutil.c (gdpy_def): New variable.
9573 (xg_initialize): Initialize gdpy_def.
9574 (xg_display_close): If no other display exists, set gdpy_def to a
9575 new connection.
9576
9577 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
9578
9579 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
9580 when we have no file name for the icon.
9581 (xg_tool_bar_expose_callback): Remove.
9582 (xg_create_tool_bar): Don't connect expose signal to
9583 xg_tool_bar_expose_callback.
9584 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
9585
9586 2007-09-16 Andreas Schwab <schwab@suse.de>
9587
9588 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
9589 values instead of zapping them.
9590
9591 2007-09-14 Glenn Morris <rgm@gnu.org>
9592
9593 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
9594 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
9595 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
9596 scope and rename to omfib_buffer for clarity.
9597 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
9598
9599 2007-09-14 Kenichi Handa <handa@m17n.org>
9600
9601 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
9602
9603 2007-09-13 Jason Rumney <jasonr@gnu.org>
9604
9605 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
9606
9607 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
9608
9609 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
9610 (mac_term_init): Call here instead, passing rif.
9611
9612 2007-09-13 Glenn Morris <rgm@gnu.org>
9613
9614 * s/hpux.h: No longer define `static' as nothing.
9615
9616 2007-09-13 Johan Bockgård <bojohan@gnu.org>
9617
9618 * callint.c (Fcall_interactively): Remove unused var `fun'.
9619
9620 2007-09-12 Romain Francoise <romain@orebokech.com>
9621
9622 * window.c (prefer_window_split_horizontally, display_buffer):
9623 Revert 2007-09-08 change.
9624
9625 2007-09-12 Glenn Morris <rgm@gnu.org>
9626
9627 * alloca.c: Remove file.
9628 * Makefile.in (alloca): Do not undef.
9629 (allocaobj, alloca.o): Remove.
9630 (otherobj): Remove allocaobj.
9631 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
9632 * regex.c (C_ALLOCA): Remove all references and code that was only
9633 used when this was defined.
9634 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
9635 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
9636 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
9637
9638 * Makefile.in (SOURCES, unlock, relock): Delete.
9639
9640 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
9641 (menu_grab_callback): All uses changed.
9642
9643 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
9644 (x_reply_selection_request): All uses changed.
9645
9646 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
9647
9648 * lread.c (load_warn_old_style_backquotes): Change message to look
9649 better when it appears in the middle of byte-compiler messages.
9650
9651 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
9652
9653 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
9654
9655 * xterm.c (x_create_terminal): Add comment.
9656
9657 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
9658
9659 2007-09-10 Richard Stallman <rms@gnu.org>
9660
9661 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
9662
9663 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
9664
9665 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
9666 (DEFUN): Document `intspec', use it instead of `prompt'.
9667
9668 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
9669
9670 * data.c (Finteractive_form): If the interactive specification starts
9671 with a `(', use it as a Lisp form.
9672
9673 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
9674 name and file modes.
9675
9676 * callint.c (Fcall_interactively): Comment fixes.
9677
9678 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
9679
9680 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
9681 and compiled functions.
9682
9683 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
9684
9685 * window.c (prefer_window_split_horizontally): New variable.
9686 (display_buffer): Consider splitting window horizontally depending
9687 on prefer_window_split_horizontally.
9688
9689 2007-09-08 Eli Zaretskii <eliz@gnu.org>
9690
9691 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
9692
9693 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9694
9695 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
9696
9697 * frame.c (x_set_frame_parameters): Check number is positive before
9698 using XFASTINT.
9699
9700 * window.c (freeze_window_start): Don't presume selected_window holds
9701 a window object.
9702 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
9703
9704 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
9705
9706 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
9707
9708 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
9709
9710 * window.c (Vsplit_window_preferred_function): New var.
9711 (Fdisplay_buffer): Use it.
9712 (syms_of_window): Export, and initialize it.
9713
9714 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
9715
9716 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
9717
9718 2007-09-06 Glenn Morris <rgm@gnu.org>
9719
9720 * gtkutil.c (menu_grab_callback) <cnt>:
9721 * xselect.c (x_reply_selection_request) <cnt>: Move static
9722 variable to file scope.
9723
9724 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
9725
9726 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
9727 consistent values of selected_frame and selected_window.
9728
9729 2007-09-04 Jason Rumney <jasonr@gnu.org>
9730
9731 * w32console.c (initialize_w32_display): Zero unused hooks.
9732
9733 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
9734
9735 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
9736 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
9737
9738 2007-09-04 Jason Rumney <jasonr@gnu.org>
9739
9740 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
9741 in w32console.c. Set up input. Remove XXX comments that have been
9742 confirmed as correct.
9743
9744 * s/ms-w32.h (MULTI_KBOARD): Define.
9745
9746 * w32console.c (one_and_only_w32cons): Remove.
9747 (initialize_w32_display): Take terminal argument.
9748
9749 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
9750 initialize_w32_display.
9751 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
9752
9753 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
9754
9755 * keyboard.c (discard_mouse_events): Discard it.
9756 (make_lispy_event): Translate it to a lisp event.
9757 (lispy_wheel_names): Add wheel-left and right events.
9758 (syms_of_keyboard): Enlarge wheel_syms.
9759
9760 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
9761 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
9762
9763 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
9764
9765 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
9766 from WM_MOUSEHWHEEL.
9767 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
9768
9769 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
9770 terminal.
9771
9772 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
9773 keyboard for the terminal.
9774
9775 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
9776
9777 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
9778 (Vresume_tty_hook): Rename from Vresume_tty_functions.
9779 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
9780 and resume-tty-function to resume-tty-hook.
9781 (Fsuspend_tty, Fresume_tty): Use new names.
9782
9783 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
9784
9785 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
9786 if it starts with "n:".
9787
9788 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
9789
9790 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
9791
9792 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
9793
9794 * frame.h:
9795 * frame.c (Qterm_environment_variable): Remove.
9796 (syms_of_frame): Don't init and staticpro it.
9797
9798 * callproc.c (getenv_internal): Remove special case for $TERM.
9799
9800 * callproc.c (Vinitial_environment): New variable.
9801 (set_initial_environment): Initialize it.
9802 (syms_of_callproc): Declare it.
9803 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
9804 TERM under which a process runs is never related to the TERM in which
9805 Emacs is running.
9806
9807 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
9808
9809 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
9810 * s/darwin.h: ... do it here.
9811
9812 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
9813
9814 * lisp.h (set_initial_environment): Rename from set_global_environment.
9815
9816 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
9817 removed by mistake on the multi-tty branch.
9818
9819 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
9820 (Fmodify_frame_parameters): Return a value.
9821
9822 * image.c (png_load): Comment-out var only used in commented-out code.
9823
9824 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
9825 before passing it to mark_object.
9826
9827 * xfaces.c (internal_resolve_face_name): Return a value.
9828 (internal_resolve_face_name, resolve_face_name_error): Comment out.
9829
9830 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
9831 (x_icon): Comment-out var only used in commented-out code.
9832
9833 2007-08-29 Romain Francoise <romain@orebokech.com>
9834
9835 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
9836 QUIT hasn't been provided.
9837
9838 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
9839
9840 * callproc.c (child_setup, getenv_internal): Use the
9841 display-environment-variable and term-environment-variable frame params.
9842 (set_initial_environment): Initialise Vprocess_environment.
9843
9844 * config.in: Disable multi-keyboard support on a mac.
9845
9846 * frame.c (Qterm_environment_variable)
9847 (Qdisplay_environment_variable): New variables.
9848 (syms_of_frame): Intern and staticpro them.
9849 (Fmake_terminal_frame): Disable output method test.
9850
9851 * frame.h: Declare them here.
9852
9853 * macfns.c (x_set_mouse_color): Get rif from the frame.
9854 (x_set_tool_bar_lines): Don't use updating_frame.
9855 (mac_window): Add 2 new parameters for consistency with other systems.
9856 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
9857 frame parameters following what is done in X11 and w32. Don't use
9858 FRAME_MAC_DISPLAY_INFO.
9859 (Fx_open_connection, start_hourglass): Remove window-system check.
9860 (x_create_tip_frame): Get the keyboard from the terminal.
9861
9862 * macmenu.c: Reorder includes.
9863 (Fx_popup_menu): Use terminal specific mouse_position_hook.
9864
9865 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
9866 terminal parameter.
9867 (x_clear_frame): Add a frame parameter.
9868 (note_mouse_movement): Get rif from the frame.
9869 (mac_term_init): Initialize the terminal.
9870 (mac_initialize): Make static and move terminal initialization ...
9871 (mac_create_terminal): ... to this new function.
9872
9873 * macterm.h (struct mac_display_info): Add terminal.
9874 (mac_initialize): Delete declaration.
9875
9876 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
9877
9878 * sysdep.c: Comment out text after #endif.
9879
9880 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
9881 is defined. Better initialize ttys in windows. Use terminal
9882 specific mouse_position_hook.
9883
9884 * termhooks.h (union display_info): Add mac_display_info.
9885
9886 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
9887 Set the default minibuffer frame, window_system and the rest of the
9888 frame parameters following what is done in X11.
9889
9890 * w32term.c (w32_initialize): Make static.
9891
9892 * xselect.c (x_handle_selection_clear): Only access
9893 terminal->kboard when MULTI_KBOARD is defined.
9894
9895 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
9896 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
9897
9898 2007-08-29 Jason Rumney <jasonr@gnu.org>
9899
9900 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
9901 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
9902
9903 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
9904 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
9905
9906 * keyboard.c (restore_kboard_configuration): Only define when
9907 MULTI_KBOARD defined.
9908
9909 * makefile.w32-in: Update dependancies from Makefile.in.
9910 (OBJ1): Add terminal.$(O)
9911
9912 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
9913 Don't define function body.
9914 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
9915
9916 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
9917
9918 * w32.c (request_sigio, unrequest_sigio): Remove.
9919
9920 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
9921 (w32con_clear_frame, w32con_clear_end_of_line)
9922 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
9923 (w32con_delete_glyphs, w32con_set_terminal_window)
9924 (scroll_line, w32_sys_ring_bell): Add frame arg.
9925 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
9926 Add terminal arg.
9927 (PICK_FRAME): Remove.
9928 (w32con_write_glyphs): Use frame specific terminal coding.
9929 (one_and_only_w32cons): New global variable.
9930 (initialize_w32_display): Use it for storing hooks.
9931 (create_w32cons_output): New function.
9932
9933 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
9934 arg a frame.
9935
9936 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
9937 Set window_system.
9938 (x_set_tool_bar_lines): Don't use updating_frame.
9939 (Fx_create_frame): Set terminal and ref count.
9940 (Fx_open_connection): Remove window-system check.
9941
9942 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
9943
9944 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
9945 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
9946 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
9947 Add frame arg.
9948 (x_delete_terminal, w32_create_terminal): New functions.
9949 (w32_term_init): Create a terminal.
9950 (w32_initialize): Move terminal specific initialization to
9951 w32_create_terminal.
9952
9953 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
9954 (w32_clear_rect, w32_clear_area): Use background from frame.
9955 (w32_display_info): Add terminal.
9956 (w32_sys_ring_bell, x_delete_display): Declare here.
9957
9958 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
9959
9960 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
9961
9962 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
9963
9964 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
9965 Fix get_named_tty calls for the controlling tty.
9966
9967 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
9968
9969 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
9970
9971 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
9972
9973 * term.c (tty_insert_glyphs): Add missing first parameter.
9974
9975 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
9976
9977 * buffer.c (Fbuffer_list, Fbury_buffer):
9978 Take frame->buried_buffer_list into account.
9979
9980 * cm.c (current_tty): New variable, for cmputc().
9981 (cmputc): Use it.
9982 (cmcheckmagic): Add tty parameter, look up terminal streams there.
9983 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
9984 (cmgoto): Add tty parameter. Pass it on to calccost().
9985 Use emacs_tputs() instead of tputs().
9986
9987 * cm.h (emacs_tputs): New macro to set current_tty, and then call
9988 tputs().
9989 (current_tty): New variable, for cmputc().
9990 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
9991
9992 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
9993 (internal_condition_case, internal_condition_case_1)
9994 (internal_condition_case_2): Don't abort when x_catching_errors.
9995
9996 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
9997 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
9998 prevent crashes caused by bogus longjmps in read_char.
9999
10000 * keymap.h (Fset_keymap_parent): Add EXFUN.
10001
10002 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
10003 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
10004 Remove redundant definition.
10005
10006 * macfns.c (x_set_mouse_color, x_make_gc):
10007 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10008
10009 * w32term.c (x_free_frame_resources):
10010 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10011 (w32_initialize): Use the accessor macros for terminal characteristics.
10012
10013 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
10014 Use the accessor macros for terminal characteristics.
10015 * msdos.c (internal_terminal_init): Use the accessor macros for
10016 terminal characteristics.
10017 (ScreenVisualBell, internal_terminal_init):
10018 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10019
10020 * termopts.h (no_redraw_on_reenter): Declare.
10021
10022 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
10023 (mark_terminals, mark_ttys): Declare.
10024 (Fgarbage_collect): Call them.
10025 (mark_object): Mark buried_buffer_list.
10026
10027 * prefix-args.c: Include stdlib.h for exit.
10028
10029 * syssignal.h: Add comment.
10030
10031 * indent.c: Include stdio.h.
10032
10033 * window.h (Vinitial_window_system): Declare.
10034 (Vwindow_system): Delete declaration.
10035
10036 * fontset.c (Finternal_char_font): Use FRAME_RIF.
10037
10038 * image.c (lookup_image): Don't initialize `c' until the xasserts
10039 have been run.
10040
10041 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
10042 FRAME_FOREGROUND_PIXEL.
10043
10044 * print.c (print_preprocess): Don't lose print_depth levels while
10045 iterating.
10046
10047 * widget.c (update_from_various_frame_slots):
10048 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10049
10050 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
10051 frames.
10052 (window_internal_height): Remove bogus make_number call.
10053 (init_window_once): Call make_terminal_frame with two zero parameters.
10054
10055 * fileio.c (Fread_file_name): Update comment.
10056
10057 * callint.c (Fcall_interactively):
10058 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
10059 Make sure it is correctly unwound.
10060
10061 * xsmfns.c (x_session_close): New function.
10062
10063 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
10064 Delete declarations.
10065
10066 * xterm.h: Remove declaration for x_fully_uncatch_errors.
10067 (x_output): Remove background_pixel and foreground_pixel fields.
10068 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
10069 (x_delete_device):
10070 (x_session_close): Declare.
10071
10072 * lread.c: Include setjmp.h. Update declaration of `read_char'.
10073 (read_filtered_event): Call `read_char' with a local
10074 `wrong_kboard_jmpbuf'.
10075
10076 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
10077 Don't call single_kboard_state. Use FRAME_RIF.
10078
10079 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
10080 systems.
10081
10082 * lisp.h (set_process_environment): Rename to `set_global_environment'.
10083 (Fframe_with_environment, Fset_input_meta_mode)
10084 (Fset_quit_char): EXFUN.
10085 (x_create_device, tty_output, terminal, tty_display_info): Declare.
10086 (init_sys_modes, reset_sys_modes): Update prototypes.
10087 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
10088
10089 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
10090 Vlocal_key_translation_map, and Vkeyboard_translate_table.
10091 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
10092 Delete declarations.
10093 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
10094 (temporarily_switch_to_single_kboard, tty_read_avail_input):
10095 New declarations.
10096
10097 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
10098 already does that during init_display(). Call syms_of_keymap
10099 before syms_of_keyboard. Call `syms_of_terminal'.
10100 Call set_initial_environment, not set_process_environment.
10101 (shut_down_emacs): Call reset_all_sys_modes() instead of
10102 reset_sys_modes().
10103
10104 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
10105 (internal_resolve_face_name, resolve_face_name_error): New functions.
10106 (resolve_face_name): Protect against loops and errors thrown by Fget.
10107 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
10108 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
10109
10110 * scroll.c: Replace CURTTY() with local variables throughout the
10111 file (where applicable).
10112 (calculate_scrolling, calculate_direct_scrolling)
10113 (scrolling_1, scroll_cost): Use the accessor macros for terminal
10114 characteristics.
10115
10116 * keymap.c (Vfunction_key_map): Remove.
10117 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
10118 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
10119 (Vkey_translation_map): Remove.
10120 (syms_of_keymap): Remove DEFVAR for key-translation-map.
10121 (Fdescribe_buffer_bindings):
10122 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
10123 Update for terminal-local key-translation-map.
10124
10125 * Makefile.in (callproc.o): Update dependencies.
10126 (lisp, shortlisp): Add termdev.elc.
10127 (obj): Add terminal.o.
10128 (terminal.o): Add dependencies.
10129 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
10130 (data.o, fns.o): Add termhooks.h dependency.
10131 (SOME_MACHINE_LISP): Add dnd.elc.
10132 (minibuf.o): Fix typo.
10133 Update dependencies.
10134
10135 * data.c (do_symval_forwarding, store_symval_forwarding)
10136 (find_symbol_value): Use the selected frame's keyboard, not
10137 current_kboard.
10138
10139 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
10140 Vwindow_system.
10141
10142 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
10143 Fmenu_bar_open.
10144 (syms_of_xmenu): Update defsubr.
10145 (mouse_position_for_popup, Fx_popup_menu)
10146 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
10147 (set_frame_menubar, free_frame_menubar)
10148 (create_and_show_popup_menu, xmenu_show, )
10149 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
10150 an X frame.
10151
10152 * xselect.c (x_own_selection): Abort if not an X frame.
10153 (some_frame_on_display): Check if it is an X frame.
10154 (x_handle_selection_clear): Deal with MULTI_KBOARD.
10155
10156 * coding.c: Include frame.h and termhooks.h.
10157 (terminal_coding, keyboard_coding): Delete.
10158 (Fset_terminal_coding_system_internal):
10159 (Fset_keyboard_coding_system_internal):
10160 (Fkeyboard_coding_system):
10161 (Fterminal_coding_system): Add a terminal parameter.
10162 Get terminal_coding from the terminal.
10163 (init_coding_once): Don't call setup_coding_system here.
10164
10165 * dispextern.h (set_scroll_region, turn_off_insert)
10166 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
10167 (tty_clear_end_of_line, tty_setup_colors)
10168 (delete_tty, updating_frame)
10169 (produce_special_glyphs, produce_glyphs, write_glyphs)
10170 (insert_glyphs): Remove.
10171 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
10172 (tty_turn_off_highlight, get_tty_size): Add declaration.
10173 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
10174
10175 * frame.h (enum output_method): Add output_initial.
10176 (struct x_output): Delete.
10177 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
10178 Access foreground_pixel and background_pixel directly from the frame.
10179 (tty_display): Delete.
10180 (struct frame): Add buried_buffer_list, foreground_pixel,
10181 background_pixel and terminal. Delete kboard
10182 (union output_data): Add tty.
10183 (FRAME_KBOARD): Get the kboard from the terminal.
10184 (FRAME_INITIAL_P): New macro.
10185 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
10186 (Qterm_environment_variable, Qdisplay_environment_variable)
10187 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
10188 New declarations.
10189
10190 * termchar.h (tty_output, tty_display_info): New structures.
10191 (tty_list): Declare.
10192 (FRAME_TTY, CURTTY): New macros.
10193 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
10194 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
10195 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
10196 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
10197
10198 * callproc.c: Include frame.h and termhooks.h, for terminal
10199 parameters.
10200 (add_env): New function.
10201 (child_setup): Use it.
10202 (child_setup, getenv_internal): Handle the new Vprocess_environment.
10203 (getenv_internal): Fix get_terminal_param call.
10204 (Fgetenv_internal, egetenv): Update doc.
10205 (syms_of_callproc): Initialize Vprocess_environment to nil.
10206 Register and initialize them. Remove obsolete defvars. Update doc
10207 strings.
10208 (child_setup): Handle Vlocal_environment_variables.
10209 (getenv_internal): Add terminal parameter.
10210 Handle Vlocal_environment_variables.
10211 (Fgetenv_internal): Add terminal parameter.
10212 (child_setup, getenv_internal, Fgetenv_internal): Store the local
10213 environment in a frame (not terminal) parameter. Update doc strings.
10214 (set_initial_environment): Rename from set_global_environment.
10215 Store Emacs environment in initial frame parameter.
10216
10217 * xdisp.c (redisplay_internal): Update references to
10218 `previous_terminal_frame'.
10219 (display_mode_line, Fformat_mode_line): Replace calls to
10220 `push_frame_kboard' with `push_kboard'.
10221 (get_glyph_string_clip_rects): Add extra parentheses and
10222 braces to prevent compiler warnings.
10223 (calc_pixel_width_or_height): Add xassert to check that the
10224 frame is alive. Don't call `lookup_image' on a termcap frame.
10225 (message2_nolog, message3_nolog, redisplay_internal)
10226 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
10227 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
10228 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
10229 (Fx_display_pixel_width, Fx_display_pixel_height)
10230 (Fx_display_planes, Fx_display_color_cells)
10231 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
10232 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
10233 (Fx_display_backing_store, Fx_display_visual_class)
10234 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
10235 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
10236
10237 * xfns.c (x_set_foreground_color x_set_background_color)
10238 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
10239 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10240 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
10241 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
10242 terminal that is being deleted.
10243 (Fx_create_frame): Use `store_frame_param' to set `window-system'
10244 frame parameter, and make sure it overrides any user-supplied setting.
10245 (Fx_close_connection, Fx_synchronize): Unify argument names with
10246 the rest of the DEFUNs.
10247
10248 * dispnew.c (Fsend_string_to_terminal): Update call to
10249 `get_tty_terminal'.
10250 (Fredraw_frame, Fsend_string_to_terminal)
10251 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
10252 FRAME_TERMCAP_P and FRAME_TTY.
10253 (window_change_signal): Don't believe width/height values that are
10254 impossibly small.
10255 (Vinitial_window_system): Rename from Vwindow_system.
10256 (termscript, Wcm, rif): Delete.
10257
10258 * termhooks.h (struct terminal): New struct containing the
10259 previously global text display hooks and new members NAME,
10260 DELETED and PARAM_ALIST.
10261 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
10262 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
10263 (FRAME_RIF): New macros.
10264 (get_terminal_param, get_device): New declarations.
10265 (termscript): Delete declaration.
10266
10267 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
10268 (XTflash, x_free_frame_resources, x_scroll_bar_create)
10269 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
10270 FRAME_FOREGROUND_PIXEL.
10271 (x_fully_uncatch_errors): Disable definition.
10272 (x_scroll_bar_expose): Fix reference to foreground pixel.
10273 (XTread_socket): Disable loop on all X displays.
10274 (x_delete_terminal): Don't set terminal->deleted and let
10275 delete_terminal delete the frames on the terminal.
10276 (x_delete_display): Doc update to reflect changes in
10277 delete_terminal.
10278 (x_display_info) <terminal>: Move member earlier in the struct.
10279 (deleting_tty): Remove old variable.
10280 (Fsuspend_tty): Call clear_tty_hooks.
10281 (Fresume_tty, init_tty): Call set_tty_hooks.
10282 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
10283 errors on X frames.
10284 (x_catch_errors_unwind): Abort if x_error_message is NULL.
10285 (handle_one_xevent): Initialize `f' to NULL.
10286 (x_delete_terminal, x_create_terminal): New functions.
10287 (XTset_terminal_modes, XTreset_terminal_modes)
10288 (XTread_socket, x_connection_closed, x_term_init)
10289 (x_term_init, x_delete_display): Add terminal parameter.
10290 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
10291 X connections.
10292
10293 * frame.c: Include termchar.h.
10294 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
10295 (Qwindow_system, Qenvironment, Qterm_environment_variable)
10296 (Qdisplay_environment_variable): New vars.
10297 (Fframep): Deal with output_initial.
10298 (Fframe-live-p): Doc fix.
10299 (Fwindow-system): New function.
10300 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
10301 (make_terminal_frame): Don't create frames on a terminal that is
10302 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
10303 (store_frame_param): Check for found_for_frame before calling XFRAME.
10304 (Fmake_terminal_frame): Handle NULL tty names correctly.
10305 (syms_of_frame): Enhance doc string of `default-frame-alist'.
10306 (Fdelete_frame): Remove unused variable `count'. Don't allow other
10307 frames to refer to a deleted frame in their 'environment parameter.
10308 (Fframe_with_environment): New function.
10309 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
10310 (get_future_frame_param): New function.
10311 (Fmake_terminal_frame): Use it.
10312 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
10313
10314 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
10315 * sysdep.c (reset_sys_modes): Update for renames.
10316
10317 * keyboard.c (tty_read_avail_input): New function.
10318 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
10319 (syms_of_keyboard): Defsubr them.
10320 (Fset_input_meta_mode, Fset_quit_char): New functions.
10321 (Fset_input_mode): Split to above functions.
10322
10323 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
10324 parameter. Use it in call to `read_char'.
10325 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
10326 Set wrong_kboard_jmpbuf correctly in recursive calls.
10327 Use current_kboard to access Vkeyboard_translate_table.
10328 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
10329 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
10330 Update longjmp invocations. Remember the original current_kboard,
10331 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
10332 changes it. Comment out unnecessary calls to
10333 `record_single_kboard_state' and `any_kboard_state'.
10334 Update recursive calls.
10335 (wrong_kboard_jmpbuf): Remove global variable.
10336 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
10337 Handle deleted interrupted_kboards correctly; that is a legal
10338 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
10339 and read_char calls. Abort if interrupted_kboard died in read_char.
10340 (any_kboard_state, single_kboard_state)
10341 (push_frame_kboard): Remove function.
10342 (pop_kboard): Switch out of single_kboard mode if the kboard has
10343 been deleted. Remove unused variable. Help debugging by not
10344 changing current_kboard unnecessarily. Set current_kboard to the
10345 kboard of the selected frame when the stored kboard object has
10346 been deleted before pop_kboard.
10347 (temporarily_switch_to_single_kboard): Change first parameter to a
10348 frame pointer. Throw an error when caller wants to change kboards
10349 while in single_kboard mode. Don't push_kboard if we weren't in
10350 single kboard state. Don't pop_kboard if we popped into any
10351 kboard state.
10352 (restore_kboard_configuration): Abort if pop_kboard changed the
10353 kboard in single_kboard mode. Call pop_kboard only after setting
10354 up single_kboard mode.
10355 (Frecursive_edit): Switch to single_kboard mode only in nested
10356 command loops.
10357 (cmd_error, command_loop, command_loop_1, timer_check):
10358 Comment out unnecessary call to `any_kboard_state' and
10359 `record_single_kboard_state'.
10360 (delete_kboard): Exit single_kboard mode if we have just deleted
10361 that kboard. Use FRAME_KBOARD.
10362 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
10363 `fatal_error_signal'.
10364 (record_single_kboard_state): Don't push_kboard if we weren't in
10365 single kboard state. Don't pop_kboard if we popped into any
10366 kboard state.
10367 (push_frame_kboard): Rename to push_kboard.
10368 (kbd_buffer_get_event): Use FRAME_TERMINAL.
10369 (read_avail_input): Read input from all terminals.
10370 (mark_kboards): Also mark Vkeyboard_translate_table.
10371 (kbd_buffer_store_event_hold): Simplify condition.
10372 (read_key_sequence): Reinitialize fkey and keytran at each replay.
10373 (Vkeyboard_translate_table): Move to struct kboard.
10374 (init_kboard): Initialize Vkeyboard_translate_table.
10375 (syms_of_keyboard): Use DEFVAR_KBOARD to define
10376 Vkeyboard_translate_table. Update doc strings. Update docs of
10377 local-function-key-map and function-key-map.
10378
10379 * terminal.c: New file.
10380
10381 * term.c: Include errno.h.
10382 (Vring_bell_function, device_list, initial_device)
10383 (next_device_id, ring_bell, update_begin, update_end)
10384 (set_terminal_window, cursor_to, raw_cursor_to)
10385 (clear_to_end, clear_frame, clear_end_of_line)
10386 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
10387 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
10388 (syms_of_term): Move their initialization to terminal.c.
10389 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
10390 (Ftty_display_color_cells)
10391 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
10392 (clear_tty_hooks, set_tty_hooks)
10393 (init_tty, maybe_fatal): New functions.
10394 (Ftty_type): Return nil if terminal is not on a tty instead of
10395 throwing an error. Doc update.
10396 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
10397 Doc update. Initialize new subrs and variables.
10398 (delete_tty): Use terminal->deleted.
10399 (tty_set_terminal_modes): Rename from set_terminal_modes.
10400 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
10401 (set_scroll_region): Rename to `tty_set_scroll_region'.
10402 (turn_on_insert): Rename to `tty_turn_on_insert'.
10403 (turn_off_insert): Rename to `tty_turn_off_insert'.
10404 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
10405 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
10406 (toggle_highligh): Rename to `tty_toggle_highlight'.
10407 (background_highlight): Rename to `tty_background_highlight'.
10408 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
10409 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
10410 (tty_set_scroll_region, tty_background_highlight)
10411 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
10412 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
10413 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
10414 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
10415 Add static modifier.
10416 (tty_reset_terminal_modes, tty_set_terminal_window)
10417 (tty_set_scroll_region, tty_background_highlight)
10418 (tty_highlight_if_desired, tty_cursor_to)
10419 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
10420 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
10421 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
10422 renames.
10423
10424 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
10425
10426 * keyboard.c: Qrtl is new.
10427 (parse_tool_bar_item): Handle :rtl keyword.
10428 (syms_of_keyboard): Intern :rtl keyword.
10429
10430 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
10431
10432 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
10433 so no Lisp code is executed.
10434 (file_for_image, find_rtl_image): New functions.
10435 (xg_get_image_for_pixmap): Use file_for_image
10436 (update_frame_tool_bar): If direction is RTL, use RTL image if
10437 defined. Use Gtk stock images if defined.
10438
10439 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10440
10441 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
10442 for nonexistent or zero-width glyph in composition glyph.
10443
10444 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
10445
10446 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
10447
10448 * xdisp.c (Finvisible_p): New function.
10449 (syms_of_xdisp): defsubr it.
10450
10451 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
10452
10453 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
10454 Doc fixes.
10455
10456 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10457
10458 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
10459
10460 2007-08-24 Martin Rudalics <rudalics@gmx.at>
10461
10462 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
10463 whether decoding has modified buffer contents.
10464
10465 2007-08-24 Jason Rumney <jasonr@gnu.org>
10466
10467 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
10468 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
10469 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
10470 (init_svg_functions) [HAVE_NTGUI]: New function.
10471 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
10472 (svg_load_image): Use them.
10473 (svg_load_image) [HAVE_NTGUI]: Implement background.
10474
10475 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10476
10477 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
10478 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
10479 (LIBX): Remove @RSVG_LIBS@.
10480 (LIBES): Add $(RSVG_LIBS).
10481
10482 * image.c (svg_load_image): Blend with specified background if exists.
10483 Use IMAGE_BACKGROUND. Add Mac OS Support.
10484
10485 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
10486 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
10487 Remove macros.
10488 [MAC_OSX] (socket_callback): Do nothing.
10489 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
10490 ReceiveNextEvent.
10491 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
10492 socket_callback.
10493 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
10494
10495 2007-08-22 Glenn Morris <rgm@gnu.org>
10496
10497 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
10498
10499 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
10500
10501 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
10502
10503 * image.c: Add support for SVG images. Some additional comments
10504 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
10505 (svg_image_p): New function to test for SVG image.
10506 (svg_load): New function to load SVG image.
10507 (svg_load_image): New function, helper for svg_load.
10508 (Qsvg): New Lisp_object.
10509 (svg_keyword_index): New enum.
10510 (svg_format): New static `image_keyword' struct.
10511 (svg_type): New static `image_type' struct.
10512 (librsvg/rsvg.h): Include it.
10513
10514 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
10515
10516 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
10517
10518 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
10519
10520 * lread.c (Qold_style_backquotes): New var.
10521 (syms_of_lread): Init and staticpro it.
10522 (load_warn_old_style_backquotes): New fun.
10523 (Fload): Use them to warn about old style backquotes.
10524 (end_of_file_error, Fload): Remove unused vars.
10525
10526 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
10527
10528 * lread.c (Vold_style_backquotes): New var.
10529 (syms_of_lread): Init and export it to Elisp.
10530 (read1): Set it when we find an old-style (back)quote.
10531
10532 2007-08-22 Jason Rumney <jasonr@gnu.org>
10533
10534 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
10535
10536 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
10537
10538 * puresize.h (BASE_PURESIZE): Increase to 1140000.
10539
10540 2007-08-19 Richard Stallman <rms@gnu.org>
10541
10542 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
10543
10544 2007-08-19 Andreas Schwab <schwab@suse.de>
10545
10546 * alloc.c (pure): Round PURESIZE up.
10547
10548 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
10549
10550 * xterm.c (handle_one_xevent): Remove check that mouse click is in
10551 active frame.
10552
10553 2007-08-16 Richard Stallman <rms@gnu.org>
10554
10555 * eval.c (Fcommandp): Add parens to clarify.
10556
10557 * minibuf.c (Fall_completions): Use enum for type of table.
10558
10559 * emacs.c (USAGE2): Improve text.
10560
10561 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
10562
10563 * term.c (tty_default_color_capabilities): Declare static
10564 variables in file scope, to avoid HPUX compiler problem.
10565
10566 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
10567
10568 * gtkutil.c (update_frame_tool_bar): Use -1 as index
10569 to gtk_toolbar_insert.
10570
10571 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
10572
10573 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
10574
10575 * insdel.c (reset_var_on_error): New fun.
10576 (signal_before_change, signal_after_change):
10577 Use it to reset (after|before)-change-functions to nil in case of error.
10578 Bind inhibit-modification-hooks to t.
10579 Don't bind (after|before)-change-functions to nil while they run.
10580
10581 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10582
10583 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
10584 filling pixmap with stippled background.
10585
10586 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10587
10588 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
10589 Don't use invisible frame as parent window for repositioning.
10590
10591 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
10592
10593 * print.c (new_backquote_output): Rename from old_backquote_output.
10594 (print): Inverse its logic (according to its name) so as to match the
10595 behavior of new_backquote_flag in lread.c.
10596
10597 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10598
10599 * gmalloc.c (posix_memalign): New function.
10600
10601 * macterm.c (frame_highlight, frame_unhighlight): Don't call
10602 ActivateControl/DeactivateControl here.
10603 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
10604 frame-notice-user-settings is non-nil.
10605 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
10606 for kEventParamFMFontStyle.
10607 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
10608 mac_pass_command_to_system and mac_pass_control_to_system here.
10609 (XTread_socket): Call ActivateControl/DeactivateControl here.
10610 (XTread_socket) [TARGET_API_MAC_CARBON]:
10611 Check mac_pass_command_to_system and mac_pass_control_to_system here.
10612 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
10613 for window repositioning.
10614
10615 2007-08-08 Glenn Morris <rgm@gnu.org>
10616
10617 * Replace `iff' in doc-strings and comments.
10618
10619 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
10620
10621 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
10622
10623 2007-08-07 Martin Rudalics <rudalics@gmx.at>
10624
10625 * fileio.c (Finsert_file_contents): Run format-decode and
10626 after_insert_file_functions on entire buffer when REPLACE is
10627 non-nil and inhibit modification_hooks and point_motion_hooks.
10628 For consistency, run after_insert_file_functions iff something
10629 got inserted. Move signal_after_change and update_compositions
10630 after code running after_insert_file_functions. Make sure that
10631 undo_list doesn't record intermediate steps of the decoding process.
10632
10633 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10634
10635 * emacs.c (main)
10636 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
10637 Call malloc_enable_thread on interactive startup.
10638
10639 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
10640 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
10641 [USE_PTHREAD]: Conditionalize with it.
10642 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
10643 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
10644 New functions.
10645
10646 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
10647
10648 * xdisp.c (redisplay_window): When restoring original buffer
10649 position, make sure it is still valid.
10650
10651 * image.c (png_load): Ignore png-supplied background color.
10652
10653 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10654
10655 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
10656 Use kCFAbsoluteTimeIntervalSince1970.
10657
10658 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
10659 New variable.
10660 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
10661 event loop should be quit.
10662 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
10663 Quit dialog event loop if quit_dialog_event_loop is set.
10664
10665 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
10666 (Selection): New typedef. Use instead of ScrapRef.
10667 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
10668 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
10669 (mac_clear_selection): Rename from clear_scrap.
10670 (get_flavor_type_from_symbol): New argument SEL and subsume function of
10671 scrap_has_target_type. All uses changed.
10672 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
10673 (mac_selection_has_target_p): New functions.
10674 (mac_put_selection_value): Rename from put_scrap_string.
10675 (mac_get_selection_value): Rename from get_scrap_string.
10676 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
10677 (put_scrap_private_timestamp, scrap_has_target_type)
10678 (get_scrap_private_timestamp): Remove functions.
10679 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
10680 (x_own_selection, x_get_local_selection):
10681 Use mac_valid_selection_value_p.
10682 (x_own_selection): Don't use put_scrap_private_timestamp.
10683 Record OWNERSHIP-INFO into Vselection_alist instead.
10684 (x_get_local_selection): Don't check type if request is local.
10685 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
10686 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
10687
10688 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
10689
10690 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
10691 add comment explaining why.
10692
10693 2007-08-03 Richard Stallman <rms@gnu.org>
10694
10695 * fileio.c (Fvisited_file_modtime): Use make_time.
10696
10697 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
10698
10699 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
10700 build.
10701
10702 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
10703
10704 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
10705
10706 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
10707
10708 * puresize.h (BASE_PURESIZE): Increase to 1130000.
10709
10710 2007-07-30 Richard Stallman <rms@gnu.org>
10711
10712 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
10713
10714 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
10715
10716 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
10717
10718 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
10719
10720 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
10721 remote default-directory.
10722
10723 * buffer.c (mode-line-format): Update doc string.
10724
10725 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10726
10727 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
10728 scroll bar gap.
10729 (x_scroll_bar_create): Set bar->fringe_extended_p.
10730 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
10731 on frame edge. Check fringe background extension. Don't clear
10732 extended fringe background area.
10733
10734 * w32term.h (struct scroll_bar): New member fringe_extended_p.
10735 (w32_fill_area): Enclose multiple statements with do ... while (0).
10736
10737 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
10738 Extend fringe background to scroll bar gap.
10739 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
10740 Set bar->fringe_extended_p.
10741 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
10742 Put leftmost/rightmost scroll bars on frame edge. Check fringe
10743 background extension. Don't clear extended fringe background area.
10744
10745 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
10746 New member fringe_extended_p.
10747
10748 2007-07-25 Glenn Morris <rgm@gnu.org>
10749
10750 * Relicense all FSF files to GPLv3 or later.
10751
10752 * COPYING: Switch to GPLv3.
10753
10754 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
10755
10756 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
10757
10758 * data.c (Finteractive_form): Check for the presence of an
10759 `interactive-form' symbol property more thoroughly.
10760
10761 * data.c (Finteractive_form): Use an `interactive-form' property if
10762 present, analogous to the function-documentation property.
10763
10764 2007-07-24 Jason Rumney <jasonr@gnu.org>
10765
10766 * w32fns.c (x_real_positions): Get real position from OS instead of
10767 calculating it.
10768
10769 2007-07-23 Jason Rumney <jasonr@gnu.org>
10770
10771 * filelock.c (current_lock_owner): Allow for @ sign in username.
10772
10773 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
10774
10775 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
10776 remote default-directory.
10777
10778 * buffer.c (mode-line-format): Describe above case in doc string.
10779
10780 2007-07-20 Eli Zaretskii <eliz@gnu.org>
10781
10782 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
10783 Define if not defined.
10784
10785 2007-07-18 Jason Rumney <jasonr@gnu.org>
10786
10787 * w32proc.c (w32_executable_type): Handle 64 bit executables.
10788
10789 2007-07-18 Richard Stallman <rms@gnu.org>
10790
10791 * data.c (Fsetq_default): Doc fix.
10792
10793 * eval.c (Fsetq): Doc fix.
10794
10795 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
10796
10797 * coding.c (Ffind_operation_coding_system):
10798 * eval.c (For, Fand): Doc fixes.
10799 Reported by Johan Bockgård.
10800
10801 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
10802
10803 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
10804
10805 * xterm.h: Declare x_ewmh_activate_frame.
10806
10807 * xterm.c (x_ewmh_activate_frame): New function.
10808 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
10809
10810 2007-07-17 Martin Rudalics <rudalics@gmx.at>
10811
10812 * window.c (Fdisplay_buffer): If largest or LRU window is the
10813 only window, split it even if it is not eligible for splitting.
10814 This restores the original behavior broken by the 2007-07-15
10815 change.
10816
10817 2007-07-17 Glenn Morris <rgm@gnu.org>
10818
10819 * abbrev.c (abbrev_check_chars): New function.
10820 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
10821 Call abbrev_check_chars to check abbrev characters are word
10822 constituents. Doc fix.
10823
10824 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
10825
10826 * process.c (Fstart_process, Fmake_network_process)
10827 (read_process_output): Fix up last changes.
10828
10829 2007-07-16 Eli Zaretskii <eliz@gnu.org>
10830
10831 * makefile.w32-in (clean): Don't delete *~.
10832
10833 2007-07-16 Andreas Schwab <schwab@suse.de>
10834
10835 * window.c (Fdisplay_buffer): Use NILP.
10836 (Fset_window_scroll_bars): Likewise.
10837
10838 2007-07-15 Martin Rudalics <rudalics@gmx.at>
10839
10840 * window.c (window_min_size_2): New function.
10841 (window_min_size_1, size_window, Fdisplay_buffer)
10842 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
10843 windows without mode- or header-lines when window-min-height is
10844 too small.
10845 (size_window): Reset nodelete_p after testing it, following an
10846 earlier note by Kim F. Storm.
10847 (display_buffer): Do not set split_height_threshold to twice the
10848 value of window_min_height to avoid changing the value of a
10849 customizable variable. Rather explicitly check whether the
10850 height of the window that shall be splitted is at least as large
10851 as split_height_threshold.
10852 (Fwindow_full_width_p): New defun.
10853 (syms_of_window): Defsubr it.
10854
10855 * window.h: Add EXFUN for Fwindow_full_width_p.
10856
10857 2007-07-14 Jason Rumney <jasonr@gnu.org>
10858
10859 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
10860
10861 2007-07-14 Richard Stallman <rms@gnu.org>
10862
10863 * eval.c (maybe_call_debugger): New function.
10864 (find_handler_clause): Use maybe_call_debugger.
10865 Call it when the handler says `debug'.
10866 Eliminate DEBUGGER_VALUE_PTR.
10867 (Fsignal): Eliminate debugger_value.
10868 (Qdebug): New variable.
10869 (syms_of_eval): Initialize it.
10870
10871 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
10872
10873 * eval.c (Fprogn):
10874 * keyboard.c (Ftrack_mouse):
10875 * print.c (Fwith_output_to_temp_buffer):
10876 * window.c (Fsave_window_excursion): Doc fix.
10877
10878 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
10879
10880 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
10881
10882 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
10883
10884 * process.h (struct Lisp_Process): Turn slots infd, outfd,
10885 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
10886 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
10887 read_output_delay, and read_output_skip from Lisp_Objects to ints.
10888 Remove unused encoding_carryover.
10889 * process.c: Adjust all functions accordingly.
10890
10891 2007-07-12 Richard Stallman <rms@gnu.org>
10892
10893 * term.c: Include unistd.h only if HAVE_UNISTD_H.
10894
10895 2007-07-11 Jason Rumney <jasonr@gnu.org>
10896
10897 * makefile.w32-in (LIBS): Include OLE32.
10898
10899 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
10900 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
10901
10902 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
10903
10904 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
10905 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
10906 from a Lisp_Object into a bare pointer.
10907 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
10908 Adjust the code correspondingly.
10909
10910 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
10911
10912 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
10913 (term_show_mouse_face): Remove unused var `j'.
10914 (handle_one_term_event): Remove unused vars `i' and `j'.
10915 Don't cast return value of ttyname since it's not necessary.
10916
10917 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
10918
10919 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
10920 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
10921
10922 * fns.c (map_char_table): Use an array of int for `indices' rather than
10923 an array of Lisp_Objects (which are only ever integers anyway).
10924 (Fmap_char_table): Update caller.
10925 * lisp.h: Update prototype.
10926 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
10927 * fontset.c (Ffontset_info):
10928 * casetab.c (set_case_table): Update callers.
10929
10930 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
10931
10932 * keymap.c (struct accessible_keymaps_data)
10933 (struct where_is_internal_data): New structures.
10934 (accessible_keymaps_1, where_is_internal_1): Use them to change
10935 interface to adhere to the one used by map_keymap.
10936 (Faccessible_keymaps, where_is_internal): Use map_keymap.
10937 (accessible_keymaps_char_table, where_is_internal_2): Remove.
10938
10939 * keymap.h (map_keymap_function_t): More informative prototype.
10940
10941 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
10942
10943 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
10944 (looking_at_1): Don't change search_regs and last_thing_searched
10945 if `inhibit-changing-match-data' is non-nil.
10946 (string_match_1, search_buffer, set_search_regs): Likewise.
10947 (syms_of_search): Add Lisp level definition for
10948 `inhibit-changing-match-data' and set it to nil.
10949 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
10950 start and end of the match, instead of using values in search_regs.
10951
10952 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
10953
10954 * minibuf.c (Fcompleting_read): New value `confirm-only'
10955 for `require-match'.
10956
10957 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10958
10959 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
10960 part of the 2007-06-27 change to syms_of_fileio.
10961
10962 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10963
10964 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
10965 Check WINDOWP before using XWINDOW. Consolidate return statements.
10966
10967 2007-06-27 Richard Stallman <rms@gnu.org>
10968
10969 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
10970
10971 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
10972
10973 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
10974
10975 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10976
10977 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
10978 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
10979 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
10980 (_free_internal, memalign): Use them.
10981 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
10982 Initialize to PTHREAD_MUTEX_INITIALIZER.
10983 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
10984 (morecore_nolock): Rename from morecore. All uses changed.
10985 Use only nolock versions of internal allocation functions.
10986 (_malloc_internal_nolock, _realloc_internal_nolock)
10987 (_free_internal_nolock): New functions created from
10988 _malloc_internal, _realloc_internal, and _free_internal.
10989 (_malloc_internal, _realloc_internal, _free_internal): Use them.
10990 Copy hook value to automatic variable before its use.
10991 (memalign): Copy hook value to automatic variable before its use.
10992
10993 2007-06-26 Kenichi Handa <handa@m17n.org>
10994
10995 * coding.c (Ffind_operation_coding_system): Docstring improved.
10996 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
10997
10998 2007-06-25 David Kastrup <dak@gnu.org>
10999
11000 * keymap.c (Fcurrent_active_maps): Add `position' argument.
11001 (Fwhere_is_internal): Adjust call to `current-active-maps' to
11002 cater for additional parameter.
11003
11004 * keymap.h: Adjust number of parameters to `current-active-maps'.
11005
11006 * doc.c (Fsubstitute_command_keys): Adjust call of
11007 `current-active-maps'.
11008
11009 2007-06-25 David Kastrup <dak@gnu.org>
11010
11011 * callint.c (Fcall_interactively): Make the parsing of interactive
11012 specs somewhat more readable.
11013
11014 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11015
11016 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
11017 to scroll bar gap also when bitmap fills fringe. Draw only foreground
11018 if extended background has already been filled.
11019
11020 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11021
11022 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
11023 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
11024
11025 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
11026 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
11027 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
11028 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
11029 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
11030 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
11031 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
11032 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
11033 Run timers during dialog popup.
11034 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
11035
11036 2007-06-21 Jason Rumney <jasonr@gnu.org>
11037
11038 * image.c (convert_mono_to_color_image): Swap fore and background.
11039
11040 2007-06-20 Jason Rumney <jasonr@gnu.org>
11041
11042 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
11043 (w32_free_bdf_font): Unmap memory not handle.
11044
11045 2007-06-20 Sam Steingold <sds@gnu.org>
11046
11047 * gmalloc.c (__morecore): Fix the declaration to comply with the
11048 definition.
11049
11050 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
11051
11052 * w32term.c (w32_delete_display): Remove leftover declaration.
11053 (w32_define_cursor, w32_initialize): Make static.
11054
11055 * w32.c (_wsa_errlist): Fix typo in error message.
11056 (init_environment): Ignore any environment variable from the
11057 registry having a null value.
11058
11059 2007-06-20 Glenn Morris <rgm@gnu.org>
11060
11061 * Makefile.in (LIBGIF): Default to -lgif.
11062
11063 2007-06-17 Jason Rumney <jasonr@gnu.org>
11064
11065 * w32menu.c (add_menu_item): Don't use multibyte string functions on
11066 unicode strings.
11067
11068 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
11069
11070 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
11071 Fix typo in docstring.
11072
11073 2007-06-16 Eli Zaretskii <eliz@gnu.org>
11074
11075 * w32menu.c (add_menu_item): Escape `&' characters in menu items
11076 and their keybindings.
11077
11078 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
11079
11080 * composite.c (update_compositions): Fix last fix.
11081
11082 2007-06-14 Jason Rumney <jasonr@gnu.org>
11083
11084 * w32.c (get_process_times_fn): New function pointer.
11085 (globals_of_w32): Intialize it if present in kernel32.dll.
11086 (w32_get_internal_run_time): New function.
11087
11088 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
11089
11090 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
11091
11092 * composite.c (update_compositions): Check the validness of
11093 compositions.
11094
11095 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11096
11097 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
11098 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
11099
11100 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
11101 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
11102
11103 * macgui.h (USE_MAC_TOOLBAR): New define.
11104
11105 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
11106 Return immediately unless popup is activated.
11107
11108 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
11109 background to scroll bar gap.
11110 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
11111 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
11112 scroll bars on frame edge. Check fringe background extension.
11113 Don't clear extended fringe background area.
11114 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
11115 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
11116 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
11117 [USE_MAC_TOOLBAR]: New macros.
11118 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
11119 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
11120 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
11121 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
11122 [USE_MAC_TOOLBAR]: New functions.
11123 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
11124 manually if previous repositioning has failed.
11125 (mac_handle_keyboard_event): Use precomputed event kind.
11126 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
11127 as tool bar item click. Handle mouse movement over tool bar items.
11128
11129 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
11130 toolbar_win_gravity.
11131 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
11132 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
11133 Add externs.
11134
11135 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
11136 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
11137
11138 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
11139
11140 * image.c (search_image_cache): Remove unused variable.
11141
11142 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
11143
11144 * xfns.c, xmenu.c: Link to xaw3d if available.
11145
11146 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11147
11148 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
11149 frame_foreground and frame_background.
11150
11151 * image.c (lookup_image): Save frame foreground and background colors.
11152 (search_image_cache): Check if saved and current frame colors match.
11153
11154 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
11155
11156 * regex.c (regex_compile): Remove the `regnum' counter.
11157 Use bufp->re_nsub instead. Add support for \(?N:RE\).
11158
11159 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11160
11161 * term.c: Include intervals.h to declare Fget_text_property.
11162
11163 2007-06-10 Jason Rumney <jasonr@gnu.org>
11164
11165 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
11166
11167 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
11168
11169 * callint.c (Fcall_interactively):
11170 * editfns.c (Fdelete_and_extract_region):
11171 * fileio.c (Fread_file_name):
11172 * fns.c (Fmapconcat):
11173 * keyboard.c (cmd_error_internal):
11174 * keymap.c (Fkey_description):
11175 * lread.c (openp):
11176 * minibuf.c (read_minibuf):
11177 * search.c (wordify):
11178 * sunfns.c (sel_read):
11179 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
11180 * xfns.c (x_default_scroll_bar_color_parameter):
11181 * xmenu.c (menu_help_callback):
11182 * xselect.c (Fx_get_atom_name):
11183 * xterm.c (x_term_init): Use empty_unibyte_string.
11184
11185 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
11186
11187 * alloc.c (init_strings): Initialize canonical empty strings.
11188 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
11189 canonical empty string when the requested size is 0.
11190
11191 * emacs.c (empty_unibyte_string): Rename from empty_string.
11192 (empty_multibyte_string): New canonical empty string.
11193 (syms_of_emacs): Don't initialize empty_string.
11194
11195 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
11196 string, if appropriate.
11197 (empty_unibyte_string, empty_multibyte_string): New externs.
11198 (empty_string): Remove extern.
11199
11200 * lread.c (syms_of_lread): Use empty_unibyte_string.
11201
11202 2007-06-07 Jason Rumney <jasonr@gnu.org>
11203
11204 * s/ms-w32.h: Don't define HAVE_TZNAME.
11205
11206 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
11207
11208 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11209
11210 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
11211
11212 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
11213 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
11214
11215 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
11216 Don't call next handler.
11217 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
11218 Remove argument. Install handler to application.
11219 (set_frame_menubar): Don't change deep_p.
11220 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
11221 FRAME_OUTER_TO_INNER_DIFF_Y.
11222 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
11223 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
11224 [HAVE_DIALOGS]: New macros.
11225 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
11226 Use them.
11227 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
11228
11229 * macselect.c [MAC_OSX] (install_service_handler): Rename from
11230 init_service_handler. All callers changed. Return OSStatus value.
11231
11232 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
11233 All callers changed so as not to call SetPortWindowPort.
11234 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
11235 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
11236 mac_draw_string_common.
11237 (mac_draw_image_string_qd): Likewise.
11238 (mac_draw_string_common): Use them. Add INLINE.
11239 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
11240 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
11241 GetGlobalMouse.
11242 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
11243 and FRAME_OUTER_TO_INNER_DIFF_Y.
11244 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
11245 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
11246 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
11247 repositioning window to mac_handle_window_event.
11248 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
11249 saving window location to mac_handle_window_event
11250 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
11251 (install_menu_target_item_handler): Remove argument in extern.
11252 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
11253 Also accept command events.
11254 (do_keystroke): New function created from XTread_socket.
11255 (init_command_handler): Remove functions.
11256 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
11257 and save window location by kEventWindowShowing and kEventWindowHiding
11258 handlers here. Don't call next handler for window state change and
11259 focus events.
11260 (mac_handle_application_event, mac_handle_keyboard_event)
11261 [TARGET_API_MAC_CARBON]: New functions.
11262 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
11263 kEventWindowShowing and kEventWindowHiding events. Move installation
11264 of mouse, font, text input and menu target item handlers to
11265 install_application_handler.
11266 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
11267 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11268 New function.
11269 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11270 Register it.
11271 (XTread_socket) [TARGET_API_MAC_CARBON]:
11272 Consolidate SendEventToEventTarget calls.
11273 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
11274 Move application activation handler to mac_handle_application_event.
11275 Move keyboard handler to mac_handle_keyboard_event.
11276 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
11277 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
11278 init_command_handler. Call install_application_handler.
11279
11280 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
11281 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
11282
11283 2007-06-07 Glenn Morris <rgm@gnu.org>
11284
11285 * emacs.c (main): Use `emacs-copyright' in --version output.
11286
11287 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
11288
11289 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
11290
11291 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11292
11293 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
11294
11295 * macgui.h: Replace WindowPtr with WindowRef.
11296
11297 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
11298 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
11299 Replace ControlHandle with ControlRef.
11300 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
11301
11302 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
11303 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
11304 Replace ControlHandle with ControlRef.
11305 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
11306 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
11307
11308 * macterm.h (struct scroll_bar): Rename member control_handle_low
11309 and control_handle_high to control_ref_low and control_ref_high.
11310 All uses changed.
11311 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
11312 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
11313 respectively. All uses changed.
11314 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
11315 (install_window_handler, remove_window_handler): Replace WindowPtr
11316 with WindowRef in externs.
11317
11318 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
11319
11320 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
11321
11322 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
11323
11324 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
11325
11326 * frame.c (Fmouse_position, Fmouse_pixel_position):
11327 Condition on HAVE_GPM too.
11328
11329 * term.c (term_mouse_highlight): Remove unused variables.
11330 (Fterm_open_connection): Set gpm_zerobased to 1.
11331 (term_mouse_movement, term_mouse_click, handle_one_term_event):
11332 Use zero based co-ordinates.
11333 (handle_one_term_event): Report a drag as mouse movement too.
11334
11335 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
11336
11337 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
11338
11339 * image.c (search_image_cache): New function. Require background
11340 color match if background color is unspecified in the image spec.
11341 (uncache_image, lookup_image): Use it.
11342
11343 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
11344
11345 * window.c (Fshrink_window): Reflow docstring.
11346
11347 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
11348
11349 * Version 22.1 released.
11350
11351 2007-06-01 Richard Stallman <rms@gnu.org>
11352
11353 * xfns.c (x_encode_text): Add GCPRO.
11354
11355 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11356
11357 * xfns.c (x_set_name_internal): Save encoded name before
11358 x_encode_text in case string data is relocated.
11359
11360 2007-05-31 Richard Stallman <rms@gnu.org>
11361
11362 * buffer.c (syms_of_buffer): Doc fix.
11363
11364 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
11365
11366 * sysdep.c (init_sys_modes): Add rather than replace with
11367 O_NONBLOCK.
11368
11369 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
11370 term_mouse_moveto.
11371
11372 * termhooks.h (term_mouse_moveto): New extern.
11373
11374 * term.c (mouse_face_window): Rename...
11375 (Qmouse_face_window): ...to this.
11376 (term_show_mouse_face, term_clear_mouse_face)
11377 (term_mouse_highlight): Use Qmouse_face_window.
11378 (term_mouse_moveto): New function.
11379 (term_mouse_position): Make it work.
11380 (syms_of_term): Uncomment assignment to mouse_position_hook.
11381 Staticpro Qmouse_face_window.
11382
11383 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11384
11385 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
11386 around current_column call.
11387
11388 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
11389
11390 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
11391 * xdisp.c (next_element_from_buffer):
11392 * window.c (delete_window):
11393 * term.c (term_mouse_highlight):
11394 * msdos.c (getdefdir):
11395 * macterm.c (mac_create_bitmap_from_bitmap_data)
11396 (init_font_name_table):
11397 * fns.c (Fsxhash):
11398 * data.c (Fmake_local_variable):
11399 * ccl.c (ccl_driver): Likewise.
11400
11401 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11402
11403 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
11404 Call mac_wakeup_from_rne on window size change.
11405
11406 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
11407
11408 * image.c (uncache_image): Fix typo.
11409
11410 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
11411
11412 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
11413
11414 2007-05-22 Richard Stallman <rms@gnu.org>
11415
11416 * xterm.c (x_connection_closed): Remove NO_RETURN.
11417
11418 2007-05-22 Martin Rudalics <rudalics@gmx.at>
11419
11420 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
11421
11422 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
11423
11424 * image.c (uncache_image): New function.
11425 (Fimage_refresh): New function.
11426
11427 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
11428
11429 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
11430
11431 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
11432
11433 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
11434 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
11435
11436 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
11437
11438 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
11439 conditional on [HAVE_GPM_H].
11440
11441 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
11442
11443 * syntax.c (skip_chars): Update syntax-table only after we checked that
11444 the new location is valid.
11445
11446 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11447
11448 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
11449 mac_get_window_bounds.
11450
11451 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
11452
11453 * Makefile.in (LIBGPM): Allow it to be set from configure.
11454 If set then link Emacs with it.
11455
11456 * config.in: Regenerate.
11457
11458 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
11459 New externs.
11460
11461 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
11462 Include gpm.h.
11463 (handle_one_term_event, term_gpm): New externs.
11464
11465 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
11466 and allow it to be interrupted by SIGIO.
11467
11468 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
11469 (wait_reading_process_output): Wait on gpm_fd too.
11470 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
11471 (add_gpm_wait_descriptor_called_flag): New variable.
11472 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
11473
11474 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
11475 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
11476 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
11477 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
11478 (make_lispy_event): Add case GPM_CLICK_EVENT.
11479 (read_avail_input): Handle mouse input.
11480
11481 * term.c (write_glyphs_with_face): New function.
11482 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
11483 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
11484 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
11485 (mouse_face_face_id, term_gpm, pos_x, pos_y)
11486 (last_mouse_x, last_mouse_y): New variables.
11487 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
11488 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
11489 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
11490 (Fterm_close_connection): New functions.
11491 (term_init): Initialise mouse_face_window.
11492
11493 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
11494
11495 * xdisp.c (redisplay_window): If first window line is a
11496 continuation line, recompute the new window start instead of
11497 recentering.
11498
11499 2007-05-18 Glenn Morris <rgm@gnu.org>
11500
11501 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
11502 Suggested by Alfred M. Szmidt <ams@gnu.org>.
11503
11504 2007-05-17 Glenn Morris <rgm@gnu.org>
11505
11506 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
11507
11508 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11509
11510 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
11511 dead key repeat and up events.
11512
11513 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
11514
11515 * image.c (pbm_load): Check image size for monochrome pbm.
11516
11517 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
11518
11519 * xterm.c (XTread_socket): Revert last change.
11520
11521 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
11522
11523 * image.c (pbm_load): Correctly check image size for greyscale pbm.
11524
11525 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
11526
11527 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11528
11529 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
11530 mixup (YAILOM).
11531
11532 2007-05-07 Andreas Schwab <schwab@suse.de>
11533
11534 * keymap.c (Flookup_key): Fix typo in last change.
11535
11536 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
11537
11538 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
11539 mapping for unibyte strings.
11540
11541 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11542
11543 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
11544 (Fx_popup_dialog) [MAC_OSX]: Likewise.
11545
11546 2007-04-29 Richard Stallman <rms@gnu.org>
11547
11548 * insdel.c (replace_range): For undo, record insertion first.
11549
11550 2007-04-29 Andreas Schwab <schwab@suse.de>
11551
11552 * lisp.h (VECSIZE): Use OFFSETOF.
11553
11554 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11555
11556 * xdisp.c (try_window_reusing_current_matrix): Fix number of
11557 disabled lines.
11558
11559 2007-04-28 Richard Stallman <rms@gnu.org>
11560
11561 * lread.c (read_escape): In a string, \s is always space.
11562
11563 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
11564
11565 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
11566
11567 * gtkutil.c (xg_update_menubar, create_menus): Create empty
11568 submenu for menu bar items.
11569
11570 See ChangeLog.10 for earlier changes.
11571
11572 ;; Local Variables:
11573 ;; coding: utf-8
11574 ;; add-log-time-zone-rule: t
11575 ;; End:
11576
11577 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
11578
11579 This file is part of GNU Emacs.
11580
11581 GNU Emacs is free software: you can redistribute it and/or modify
11582 it under the terms of the GNU General Public License as published by
11583 the Free Software Foundation, either version 3 of the License, or
11584 (at your option) any later version.
11585
11586 GNU Emacs is distributed in the hope that it will be useful,
11587 but WITHOUT ANY WARRANTY; without even the implied warranty of
11588 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11589 GNU General Public License for more details.
11590
11591 You should have received a copy of the GNU General Public License
11592 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
11593
11594 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40