* frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
[bpt/emacs.git] / src / ChangeLog
1 2008-11-28 Seiji Zenitani <zenitani@mac.com>
2
3 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
4
5 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
6
7 * nsterm.m (x_set_frame_alpha): New function.
8
9 2008-11-27 Eli Zaretskii <eliz@gnu.org>
10
11 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
12
13 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
14
15 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
16 pointer to check_face_name.
17
18 2008-11-27 Kenichi Handa <handa@m17n.org>
19
20 * category.h (SET_CATEGORY_SET): Call set_category_set.
21 (set_category_set): Extern it.
22
23 * category.c (hash_get_category_set): New function.
24 (Fmodify_category_entry): Adjusted for the change of
25 char_table_ref_and_range. Call hash_get_category_set to get a
26 category set to store in the table.
27
28 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
29 Funify_charset.
30
31 * charset.h (enum charset_method): Delete
32 CHARSET_METHOD_MAP_DEFERRED.
33 (DECODE_CHAR): Check if the decoder vector is ready.
34 (ENCODE_CHAR): Check if the encoder char-table is ready.
35 (maybe_unify_char): Extern it.
36
37 * charset.c (Vchar_unified_charset_table): Delete it.
38 (inhibit_load_charset_map): New variable.
39 (temp_charset_work): New variable.
40 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
41 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
42 New macros.
43 (load_charset_map): Meaning of control_flag changed. If
44 inhibit_load_charset_map is nonzero, setup a table in
45 temp_charset_work.
46 (load_charset): New argument control_flag.
47 (map_charset_for_dump): New function.
48 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
49 map_charset_for_dump.
50 (Fdefine_charset_internal): If the charset method is MAP, load
51 mapping tables by calling load_charset.
52 (Funify_charset): Don't load a mapping table but directly set
53 Vchar_unify_table.
54 (maybe_unify_char): New function.
55 (decode_char): Don't handle the deleted method MAP_DEFERRED.
56 Handle the case of inhibit_load_charset_map being nonzero.
57 (encode_char): Don't handle the deleted method MAP_DEFERRED.
58 Handle the case of inhibit_load_charset_map being nonzero.
59 (Fclear_charset_maps): Just free temp_charset_work.
60 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
61 variable.
62
63 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
64 change of char_table_ref_and_range.
65 (char_table_ref_and_range): Change the meaning of argument FROM
66 and TO. Now the caller must provide initial values for *FROM
67 and *TO.
68
69 * fontset.c (fontset_add): Adjusted for the change of
70 char_table_ref_and_range.
71 (fontset_get_font_group): Likewise.
72 (Ffontset_info): Likewise.
73
74 * keymap.c (describe_vector): Adjusted for the change of
75 char_table_ref_and_range. For char-table, put boundary between
76 non-ASCII and 8-bit characters.
77
78 * print.c (print_object): For bool-vector, delete unnecessary
79 check of ASCII_BYTE_P.
80
81 2008-11-26 Jason Rumney <jasonr@gnu.org>
82
83 * w32font.c (w32font_open_internal): Don't include external
84 leading in font height.
85
86 2008-11-26 Glenn Morris <rgm@gnu.org>
87
88 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
89 redefinition with ifdef. (Bug#1383)
90
91 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
92
93 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
94
95 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
96
97 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
98 New EmacsView methods.
99 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
100 Fixes bug #1048,1357,1414.
101
102 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
103
104 Fix bug #1362.
105 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
106 is not an indexed color.
107 * nsterm.m (free_indexed_color): Add argument checking.
108 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
109
110 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
111
112 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
113 Document confirm-after-completion value for
114 minibuffer-completion-confirm.
115
116 2008-11-24 Jason Rumney <jasonr@gnu.org>
117
118 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
119 warning.
120
121 2008-11-23 Jason Rumney <jasonr@gnu.org>
122
123 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
124 restored before returning.
125
126 * w32font.c (check_face_name): New function.
127 (add_font_entity_to_list): Use it to filter out common substituted
128 fonts.
129
130 2008-11-22 Martin Rudalics <rudalics@gmx.at>
131
132 * buffer.c (Fswitch_to_buffer): Reword and mention new option
133 confirm-nonexistent-file-or-buffer in doc-string.
134
135 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
136
137 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
138 Fix copy/paste typo. Add checks.
139
140 2008-11-21 Kenichi Handa <handa@m17n.org>
141
142 * coding.c (detect_coding_iso_2022): Reject invalid composition
143 sequence.
144 (DECODE_COMPOSITION_START): If the current source is the last
145 block, and the current composition doesn't end, regard this
146 sequence as invalid.
147 (decode_coding_iso_2022): Handle invalid composition sequence.
148
149 2008-11-20 Martin Rudalics <rudalics@gmx.at>
150
151 * window.c (coordinates_in_window): Don't return
152 ON_VERTICAL_BORDER for the rightmost position of a mode/header
153 line when the window is not the rightmost one. (Bug#1372)
154
155 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
156
157 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
158
159 2008-11-15 Eli Zaretskii <eliz@gnu.org>
160
161 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
162 and bright_bg if noninteractive is non-zero.
163
164 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
165
166 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
167 x_draw_glyph_string_background.
168
169 * w32term.c (x_draw_glyph_string): Likewise.
170
171 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
172
173 * xterm.c (x_draw_glyph_string): Stop drawing the background of
174 the next glyph string once past the overhang width.
175
176 * nsterm.m (ns_draw_glyph_string): Likewise.
177
178 * w32term.c (x_draw_glyph_string): Likewise.
179
180 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
181
182 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
183 double file close.
184
185 2008-11-14 Martin Rudalics <rudalics@gmx.at>
186
187 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
188 dedicated status of window before attempting to display another
189 buffer in it.
190
191 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
192
193 * msdos.c (Fmsdos_long_file_names):
194 (syms_of_msdos) <dos-unsupported-char-glyph>:
195 * dosfns.c (Fint86): Fix typos in docstrings.
196
197 2008-11-14 Eli Zaretskii <eliz@gnu.org>
198
199 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
200
201 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
202
203 * puresize.h (BASE_PURESIZE): Increase to 1260000.
204
205 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
206
207 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
208
209 * frame.h: Negative alpha means "don't touch".
210
211 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
212
213 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
214
215 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
216
217 * hftctl.c:
218 * chpdef.h:
219 * acldef.h: Remove files used only for systems no longer supported.
220
221 * Makefile.in: Fix .o alphabetical ordering.
222 (hftctl.o): Remove dependency, file removed.
223 (keymap.o, print.o): Depend on charset.h.
224
225 2008-11-10 Kenichi Handa <handa@m17n.org>
226
227 * character.c (Fget_byte): Fix and make it faster for unibyte
228 target.
229
230 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
231
232 * dired.c (file_name_completion): If completion_ignore_case is
233 enabled, ignore case when checking completion-regexp-list.
234
235 2008-11-08 Eli Zaretskii <eliz@gnu.org>
236
237 * vm-limit.c (get_lim_data): Fix last change.
238
239 2008-11-08 Kenichi Handa <handa@m17n.org>
240
241 * character.c (Fget_byte): New function.
242 (syms_of_character): Defsubr Fget_byte.
243
244 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
245
246 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
247 cursor position is valid after scrolling.
248
249 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
250
251 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
252
253 2008-11-06 Glenn Morris <rgm@gnu.org>
254
255 * xterm.c (handle_one_xevent): Don't let popup menus cause
256 mouse-autoselect-window related window switching. (Bug#1261)
257
258 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
259
260 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
261
262 2008-11-04 Andreas Schwab <schwab@suse.de>
263
264 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
265
266 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
267
268 * xfns.c (Fx_wm_set_size_hint): New function.
269
270 2008-11-03 Martin Rudalics <rudalics@gmx.at>
271
272 * textprop.c (Fprevious_single_char_property_change): Return 0
273 when there's no change in a string. (Bug#1301)
274
275 2008-11-02 Martin Rudalics <rudalics@gmx.at>
276
277 * frame.c (do_switch_frame): New argument NORECORD passed to
278 Fselect_window.
279 (Fselect_frame): New argument NORECORD passed to
280 do_switch_frame.
281 (Fset_frame_selected_window): New argument NORECORD passed to
282 Fselect_frame.
283 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
284 in call of do_switch_frame.
285 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
286 Handle NORECORD argument in call of Fselect_frame.
287 * lisp.h (do_switch_frame, Fselect_frame)
288 (Fset_frame_selected_window): Adjust declarations.
289 * window.c (select_frame_norecord): New function.
290 (run_window_configuration_change_hook): Use it and call
291 Fselect_frame with NORECORD set.
292 (Fselect_window): Pass NORECORD to Fselect_frame.
293 (Fset_window_configuration): Handle NORECORD argument in call of
294 do_switch_frame.
295 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
296 Fset_frame_selected_window.
297 * keyboard.c (command_loop_1): Handle NORECORD in call of
298 Fselect_frame (currently ifdefd).
299
300 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
301
302 * emacs.c (USAGE2): Untabify.
303
304 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
305
306 * composite.c (fill_gstring_header): Fix copy/paste typo.
307
308 2008-10-31 Martin Rudalics <rudalics@gmx.at>
309
310 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
311 (Fother_window): Rename argument and rewrite doc-string.
312 (select_window_norecord): Fix return value. (Bug#1276)
313
314 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
315
316 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
317 new frames overriding foreground for tooltips. Based on similar patch
318 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
319
320 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
321
322 * emacs.c (Fdaemon_initialized): Initialize nfd.
323
324 2008-10-29 Martin Rudalics <rudalics@gmx.at>
325
326 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
327 (Fwindow_text_height): Clarify doc-strings.
328 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
329 doc-string of window-scroll-functions.
330
331 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
332
333 * category.c (syms_of_category): Fix typo in docstring.
334
335 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
336
337 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
338 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
339 Fix typos in docstrings.
340
341 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
342
343 * emacs.c (daemon_pipe): Make non-static.
344 (IS_DAEMON): Move definition ...
345 * lisp.h (IS_DAEMON): ... here.
346 (daemon_pipe): Declare.
347 (is_daemon): Remove.
348 * dispnew.c (init_display): Use IS_DAEMON.
349
350 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
351
352 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
353 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
354
355 * emacs.c (is_daemon): Remove.
356 (main): Don't set is_daemon.
357 (IS_DAEMON): New macro.
358 (Fdaemonp, Fdaemon_initialized): Use it.
359 (Fdaemon_initialized): Write a char into the pipe to make sure the
360 parent exits.
361 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
362
363 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
364
365 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
366 over-sized glyph, draw it with the default glyph width.
367
368 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
369 glyph, draw it with the default glyph width.
370
371 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
372 glyph, draw it with the default glyph width.
373
374 * xdisp.c (try_scrolling): When computing the distance from the
375 scroll margin to PT, try moving some distance past the window
376 bottom before giving up.
377
378 2008-10-27 Martin Rudalics <rudalics@gmx.at>
379
380 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
381 (Fset_window_buffer): Explain in doc-string that a window can be
382 "strongly" dedicated to its buffer.
383
384 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
385
386 * emacs.c (daemon_name): New variable.
387 (main): Deal with --daemon=SERVER_NAME.
388 (Fdaemonp): Return a name if one was passed to --daemon.
389
390 2008-10-26 Romain Francoise <romain@orebokech.com>
391
392 * emacs.c (daemon_pipe): New variable.
393 (main): Create a pipe before forking, make the parent exit only after
394 the child has closed its end of the pipe. Move closing the
395 descriptors ...
396 (Fdaemon_initialized): ... here. New function.
397
398 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
399
400 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
401 the previous unoptimized table.
402
403 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
404 the distinction between non-nil and non-t value of `dedicated'.
405
406 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
407
408 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
409 read_char_minibuf_menu_text is large enough to hold the menu string.
410
411 2008-10-25 Martin Rudalics <rudalics@gmx.at>
412
413 * window.c (Fget_buffer_window, Fdelete_windows_on)
414 (Freplace_buffer_in_windows): Make buffer argument optional and
415 rename to buffer_or_name.
416
417 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
418
419 * xdisp.c (handle_single_display_spec, handle_display_prop):
420 Undo 2005-05-16 change.
421 (handle_stop): Pop iterator if it's loaded with an empty string.
422 (get_overlay_strings_1): Don't save iterator if it's loaded with
423 an empty string (bug#1201).
424
425 2008-10-24 Kenichi Handa <handa@m17n.org>
426
427 * ftfont.c (ftfont_otf_features): Fix previous change.
428 (ftfont_otf_capability): Check FeatureList.FeatureCount before
429 calling ftfont_otf_features.
430
431 2008-10-24 Kenichi Handa <handa@m17n.org>
432
433 * font.c (font_match_p): Fix for the case that a vector of
434 characters is in script-representative-chars.
435
436 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
437
438 * dbusbind.c (xd_in_read_queued_messages): New variable.
439 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
440 (xd_read_queued_messages): Catch Qdbus_error from the macros.
441 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
442 macro. (Bug#1186).
443
444 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
445
446 * s/sol2-10.h: New file.
447
448 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
449
450 * xdisp.c (fill_glyph_string): Fix typo in source (though the
451 poor beast has survived 9+ years and the jump from xterm.c!).
452
453 2008-10-23 Martin Rudalics <rudalics@gmx.at>
454
455 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
456 Reword doc-string.
457 (Fbury_buffer): In doc-string say what happens to the buffer's window.
458
459 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
460
461 * character.c (syms_of_character) <script-representative-chars>:
462 <unicode-category-table>: Doc fixes.
463
464 2008-10-23 Noah Friedman <friedman@splode.com>
465
466 * coding.c (make_conversion_work_buffer): Check that
467 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
468 Fget_buffer_create.
469
470 2008-10-23 Kenichi Handa <handa@m17n.org>
471
472 * font.c (font_add_log): Check the values of extra properties.
473
474 2008-10-22 Martin Rudalics <rudalics@gmx.at>
475
476 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
477 Reword doc-string.
478 (Fset_window_parameter): Use NILP.
479 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
480 (Frecenter): Use "selected" instead of "current" window in doc-strings.
481
482 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
483
484 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
485
486 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
487
488 * nsfns.m (ns_appkit_version): New function.
489 (x-server-version): Use it.
490 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
491 (x-server-vendor): Don't check_ns().
492
493 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
494
495 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
496
497 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
498 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
499
500 2008-10-22 Kenichi Handa <handa@m17n.org>
501
502 * syntax.c (scan_words): Call word_boundary_p instead of comparing
503 scripts.
504
505 * category.c (word_boundary_p): Check scripts instead of charset.
506 Handle nil value in word-separating-categories and
507 word-combining-categories.
508 (syms_of_category): Fix docstrings of word-separating-categories
509 and word-combining-categories.
510
511 2008-10-21 Eli Zaretskii <eliz@gnu.org>
512
513 * coding.c (Fencode_coding_region, Fdecode_coding_region)
514 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
515
516 2008-10-21 Martin Rudalics <rudalics@gmx.at>
517
518 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
519 Rename arg "buffer" to "buffer_or_name".
520 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
521 it optional.
522 (no_switch_window): Remove since the return value is not used.
523 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
524 Consider window as dedicated when Fwindow_dedicated_p returns a
525 non-nil value.
526 * lisp.h: Remove prototype for no_switch_window.
527
528 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
529
530 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
531 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined
532
533 2008-10-21 Kenichi Handa <handa@m17n.org>
534
535 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
536 check Vlatin_extra_code_table.
537
538 2008-10-20 Eli Zaretskii <eliz@gnu.org>
539
540 * fileio.c (Fset_file_modes): Doc fix.
541
542 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
543
544 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
545 in arrays.
546
547 2008-10-19 Martin Rudalics <rudalics@gmx.at>
548
549 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
550 Mention kill-buffer in doc-string.
551 (Fset_window_buffer): Reinsert tem check removed in last commit.
552 (Fenlarge_window, Fshrink_window): Have argument names and
553 doc-string follow Elisp manual more closely.
554
555 2008-10-18 Eli Zaretskii <eliz@gnu.org>
556
557 * fileio.c (Fset_file_modes): Doc fix.
558
559 2008-10-18 Martin Rudalics <rudalics@gmx.at>
560
561 * window.c (Fwindow_width, Fset_window_start)
562 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
563 (Fdelete_windows_on, Freplace_buffer_in_windows):
564 Make doc-strings follow code and Elisp manual more closely.
565 (Fwindow_dedicated_p): Make window argument optional.
566 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
567 (Fset_window_buffer): Respect any non-nil dedicated value for
568 window. Rename "buffer" argument to "buffer_or_name".
569
570 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
571
572 * m/sh3.h: New file, machine description for SuperH.
573
574 2008-10-17 Martin Rudalics <rudalics@gmx.at>
575
576 * window.c (Fsplit_window): Rename arg horflag to horizontal.
577
578 2008-10-17 Kenichi Handa <handa@m17n.org>
579
580 * ftfont.c (ftfont_otf_features): Fix indexing
581 gsub_gpos->FeatureList.Feature. Check the validity of indices.
582
583 2008-10-16 Magnus Henoch <mange@freemail.hu>
584
585 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
586 (Fdbus_call_method_asynchronously): Ditto.
587 This change makes C-h f display the argument list.
588
589 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
590
591 * fileio.c (Fexpand_file_name): Doc fix.
592
593 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
594 of :foreground and :background equivalent to unspecified (20.x
595 compatibility).
596
597 2008-10-15 Eli Zaretskii <eliz@gnu.org>
598
599 * buffer.c (syms_of_buffer): Doc fix.
600
601 2008-10-14 Kenichi Handa <handa@m17n.org>
602
603 * font.c (font_clear_prop): When clearing font width, clear the
604 average width field too.
605
606 2008-10-12 Andreas Schwab <schwab@suse.de>
607
608 * ftfont.c (ftfont_shape_by_flt): Make static.
609 * ftfont.h (ftfont_shape_by_flt): Don't declare.
610
611 * font.c: Don't include <m17n-flt.h>.
612
613 2008-10-10 Eli Zaretskii <eliz@gnu.org>
614
615 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
616
617 2008-10-09 Eli Zaretskii <eliz@gnu.org>
618
619 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
620 away code.
621
622 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
623
624 * dispnew.c (update_text_area): Avoid looping due to large glyph
625 overhangs (bug#1070).
626
627 2008-10-09 Kenichi Handa <handa@m17n.org>
628
629 * fontset.c (face_for_char): If face->fontset is negative, just
630 return ascii_face.
631
632 * font.c (font_delete_unmatched): Fix previous change.
633 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
634
635 2008-10-09 Martin Rudalics <rudalics@gmx.at>
636
637 * frame.c (Fraise_frame): On text-only terminals select frame in
638 order to make it visible. (Bug#1061)
639
640 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
641
642 * fontset.c (fontset_find_font): Check frame validity.
643
644 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
645
646 * gtkutil.c (xg_display_open): Reset default display if none exists.
647 (xg_display_close): Allow Emacs to close all displays (bug#985).
648
649 2008-10-06 Andreas Schwab <schwab@suse.de>
650
651 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
652
653 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
654
655 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
656
657 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
658
659 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
660 during initialization.
661
662 2008-10-04 Eli Zaretskii <eliz@gnu.org>
663
664 * xdisp.c (redisplay_internal): If frame switched, redisplay the
665 whole thing on MSDOS frames as well as on a TTY.
666
667 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
668 well as for TTY.
669 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
670 well as on a TTY.
671
672 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
673 as well as for TTY.
674
675 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
676
677 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
678 MSDOS frames as well.
679
680 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
681
682 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
683 correct arguments.
684 * menu.c (find_and_return_menu_selection) Add cast.
685
686 2008-10-03 Glenn Morris <rgm@gnu.org>
687
688 * emacs.c (USAGE1): Add --daemon.
689
690 2008-10-02 Eli Zaretskii <eliz@gnu.org>
691
692 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
693 100, so it's in percents as advertised.
694
695 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
696
697 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
698 (ns_output.current_cursor, ns_output.desired_cursor)
699 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
700 (FRAME_NEW_CURSOR_COLOR): Remove.
701
702 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
703 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
704 enumeration (HOLLOW_BOX_CURSOR, etc.).
705
706 * nsterm.m (ns_frame_rehighlight): Remove commented code.
707 (draw_window_cursor): Simplify code.
708 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
709 Don't change cursor type. In latter, call rehighlight instead of doing
710 updates manually.
711 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
712 Use core Emacs cursor types.
713
714 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
715
716 2008-10-02 Martin Rudalics <rudalics@gmx.at>
717
718 * process.c (Faccept_process_output): Fix doc-string.
719
720 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
721
722 * gmalloc.c (__sbrk): Also define for uClibc.
723
724 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
725 for uClibc.
726
727 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
728
729 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
730 styles.
731 (nsfont_open): Reenable the cache.
732
733 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
734
735 * font.c (font_matching_entity): Reflect ATTRS in font selection.
736 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
737
738 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
739
740 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
741 a suspended terminal.
742
743 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
744
745 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
746
747 2008-09-30 Eli Zaretskii <eliz@gnu.org>
748
749 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
750
751 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
752
753 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
754 in a continued line coincides with a line beginning.
755
756 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
757
758 * nsfont.m (nsfont_trait_distance): Fix bug.
759 (nsfont_list): Return a list rather than a vector (syncs with Handa
760 changes of 2008-05-14).
761 (nsfont_open): Improve logging.
762
763 2008-09-29 Andreas Schwab <schwab@suse.de>
764
765 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
766
767 2008-09-28 Martin Rudalics <rudalics@gmx.at>
768
769 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
770 name as char-resolve-modifiers.
771 Reported by: Markus Triska <markus.triska@gmx.at>
772
773 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
774
775 * dispnew.c (init_display): Return earlier when running as a daemon.
776
777 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
778
779 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
780
781 2008-09-27 Eli Zaretskii <eliz@gnu.org>
782
783 * composite.c (Fcomposition_get_gstring)
784 (Fcompose_region_internal, Fcompose_string_internal)
785 (Ffind_composition_internal): Doc fix.
786 (syms_of_composite) <compose-chars-after-function>: Doc fix.
787 (syms_of_composite) <auto-composition-function>: Doc fix.
788 (syms_of_composite) <composition-function-table>: Doc fix.
789
790 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
791
792 * search.c (wordify): New argument for lax word-ends.
793 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
794
795 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
796
797 * lisp.h (is_daemon): Declare.
798 * dispnew.c (init_display): Do not try to initialize the terminal
799 when running as a daemon.
800
801 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
802
803 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
804 x_display_pixel_height.
805
806 2008-09-22 Martin Rudalics <rudalics@gmx.at>
807
808 * undo.c (record_point): Don't call Fundo_boundary for first
809 change. (Bug#731)
810
811 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
812
813 * emacs.c (Fdaemonp): Doc fix.
814
815 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
816
817 * emacs.c (main): Place #ifdef in the proper place.
818
819 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
820
821 * emacs.c (standard_args): Add --daemon.
822 (main): Disconnect from the terminal when --daemon is passed.
823 (is_daemon): New variable.
824 (Fdaemonp): New function.
825 (syms_of_emacs): Defsubr it.
826
827 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
828
829 * xdisp.c (get_next_display_element): Handle string display
830 correctly when checking for the end of a box run.
831
832 2008-09-20 Glenn Morris <rgm@gnu.org>
833
834 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
835 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
836 (Frename_file): Avoid copying to trash if a rename involves
837 a delete. (Bug#964).
838
839 2008-09-20 Eli Zaretskii <eliz@gnu.org>
840
841 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
842 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
843 frames as well as termcap frames.
844 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
845 get_named_tty.
846
847 2008-09-19 Eli Zaretskii <eliz@gnu.org>
848
849 * process.c (procfs_system_process_attributes): Fix cmdline in
850 case /proc/PID/cmdline is empty.
851
852 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
853 x_display_pixel_height.
854
855 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
856
857 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
858
859 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
860 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
861
862 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
863
864 * dispextern.h (struct it): Move line_wrap away from the middle of
865 bitfields. Move voffset in struct iterator_stack_entry after the
866 bitfields. Move tab_width near after another short.
867
868 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
869
870 * frame.h (struct frame): Move alpha from the middle of bitfields.
871
872 * window.h (struct window): Move frozen_window_start_p after the
873 rest of the bitfields to reduce padding.
874
875 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
876
877 * xterm.h (x_display_info): Remove `height' and `width' members.
878
879 * nsterm.h (ns_display_info): Remove `height' and `width' members.
880
881 * w32term.h (w32_display_info): Remove `height', `width',
882 `height_in', and `width_in' members.
883
884 * xterm.c (x_display_pixel_height, x_display_pixel_width):
885 New functions.
886 (x_calc_absolute_position): Use them.
887 (x_term_init): Omit removed `height' and `width' members.
888
889 * w32term.c (x_display_pixel_height, x_display_pixel_width):
890 New functions.
891 (w32_read_socket, x_calc_absolute_position): Use them.
892 (w32_initialize_display_info, w32_term_init): Omit removed members
893 of w32_display_info.
894
895 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
896 New functions.
897 (ns_initialize_display_info): Omit removed members of ns_display_info.
898
899 * xterm.c (x_display_pixel_height, x_display_pixel_width):
900 New functions.
901 (x_calc_absolute_position): Use them.
902 (x_term_init): Omit removed `height' and `width' members.
903
904 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
905 (compute_tip_xy):
906 * frame.c (x_fullscreen_adjust):
907 * xmenu.c (menu_position_func): Use x_display_pixel_height and
908 x_display_pixel_width.
909
910 2008-09-18 Kenichi Handa <handa@m17n.org>
911
912 * composite.c (fill_gstring_header): Don't check FROM and TO here.
913 (composition_compute_stop_pos): Fix handling of static composition.
914 (Fcomposition_get_gstring): Check FROM and TO at first.
915
916 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
917
918 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Oject
919 mixup (YAILOM).
920
921 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
922
923 * indent.c (Fvertical_motion): Use position reported by iterator
924 instead of PT for determining screen motion (bug#943).
925
926 2008-09-17 Romain Francoise <romain@orebokech.com>
927
928 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
929
930 2008-09-17 Kenichi Handa <handa@m17n.org>
931
932 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
933
934 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
935 if necessary.
936
937 2008-09-16 Kenichi Handa <handa@m17n.org>
938
939 * coding.c (make_conversion_work_buffer): Avoid calling
940 Fget_buffer_create if it is not necessary.
941
942 2008-09-15 Martin Rudalics <rudalics@gmx.at>
943
944 * window.c (Fselect_window): Don't update window_select_count and
945 use_time when norecord is not nil.
946
947 2008-09-14 Kenichi Handa <handa@m17n.org>
948
949 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
950 specpdl_ptr.
951
952 2008-09-12 Kenichi Handa <handa@m17n.org>
953
954 * indent.c (scan_for_column): Don't handle automatic composition
955 if the current buffer is not associated with a window.
956
957 * composite.c (composition_reseat_it): If the current buffer is
958 not associated with a window, ignore the automatic composition.
959 (find_automatic_composition): Likewise.
960
961 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
962
963 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
964 (Fgpm_mouse_stop): Use it.
965 * termhooks.h (close_gpm): Declare.
966 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
967 connection if Gpm_GetEvent fails.
968
969 * window.c (set_window_buffer): Always preserve current-buffer.
970
971 2008-09-12 Glenn Morris <rgm@gnu.org>
972
973 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
974
975 2008-09-11 Glenn Morris <rgm@gnu.org>
976
977 * charset.c (charset-map-path): Doc fix.
978
979 2008-09-10 Kenichi Handa <handa@m17n.org>
980
981 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
982
983 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
984 compose a grapheme cluster with the preceding base glyph.
985
986 * composite.c (composition_compute_stop_pos): Fix previous change.
987 Reset cmp_it->id to -1 at first.
988
989 2008-09-10 Glenn Morris <rgm@gnu.org>
990
991 * Makefile.in (character.o, chartab.o): Fix config.h typo.
992
993 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
994
995 * keyboard.c (read_key_sequence): Reapply translation maps when
996 switching keyboards.
997
998 2008-09-09 Kenichi Handa <handa@m17n.org>
999
1000 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
1001 characters.
1002
1003 * composite.c (FORWARD_CHAR): Fix calculation
1004 of (POSITION).pos_byte.
1005 (composition_compute_stop_pos): Limit the search of composition to
1006 at most 500 characters ahead. If we reach the limit or find a
1007 newline, set cmp_it->ch to -2 and return 0.
1008 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
1009
1010 2008-09-08 Kenichi Handa <handa@m17n.org>
1011
1012 * indent.c (Fvertical_motion): Be sure to set
1013 it_overshoot_expected if it.cmp_it.id is non-negative.
1014
1015 2008-09-07 Andreas Schwab <schwab@suse.de>
1016
1017 * callproc.c (Fcall_process): Don't hold references to string data
1018 across garbage collection. Move initialisation of new_argv down
1019 to avoid compiler bug.
1020
1021 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1022
1023 * process.c (Fsystem_process_attributes): Doc fix.
1024
1025 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
1026
1027 * callproc.c (Fcall_process): Canonicalize current directory name.
1028
1029 * xdisp.c (move_it_to): When moving by vpos, ensure that the
1030 iterator advances to the next line if the current line ends in a
1031 continued tab.
1032
1033 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
1034
1035 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
1036 member to point to cmp_from.
1037
1038 * xdisp.c: Doc fix for references to gidx data member.
1039
1040 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
1041
1042 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
1043
1044 2008-09-07 Kenichi Handa <handa@m17n.org>
1045
1046 * composite.c (FORWARD_CHAR): Check STOP after
1047 incrementing (POSITION).pos.
1048
1049 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
1050
1051 * process.c (Fsystem_process_attributes): Doc fix.
1052
1053 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
1054
1055 * keyboard.c (Ftop_level): Doc fix.
1056
1057 2008-09-06 Eli Zaretskii <eliz@gnu.org>
1058
1059 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
1060 minibuffer, don't let lower part of menu invade the echo area.
1061
1062 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
1063 "char *q" to access menu text and advance through it. Revert the
1064 change that displayed ">" instead of ASCII character 0x10.
1065
1066 2008-09-05 Eli Zaretskii <eliz@gnu.org>
1067
1068 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
1069 toggle boxes and radio buttons on MS-DOS as well.
1070
1071 2008-09-05 Kenichi Handa <handa@m17n.org>
1072
1073 * composite.c (autocmp_chars): Check lookback count.
1074 (composition_compute_stop_pos): Set cmp_it->lookback.
1075 (composition_reseat_it): Check lookback count.
1076 (struct position_record): New struct.
1077 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
1078 (find_automatic_composition): New function.
1079 (composition_adjust_point): Use find_automatic_composition.
1080
1081 * dispextern.h (struct composition_it): New member lookback.
1082
1083 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
1084
1085 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
1086 if moving by a single line.
1087
1088 2008-09-02 Andreas Schwab <schwab@suse.de>
1089
1090 * xterm.c (x_delete_display): Fix merge error.
1091
1092 * fileio.c (Fexpand_file_name): Remove unused variables.
1093
1094 2008-09-02 Eli Zaretskii <eliz@gnu.org>
1095
1096 * fileio.c (Fexpand_file_name): Copy argument `name' into local
1097 storage on all platforms, not just on DOS_NT.
1098
1099 2008-09-02 Jason Rumney <jasonr@gnu.org>
1100
1101 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
1102 Ensure mouse is not grabbed after menu is finished.
1103
1104 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
1105
1106 * xfaces.c (Finternal_set_alternative_font_family_alist)
1107 (Finternal_set_alternative_font_registry_alist): Properly copy
1108 entire alist structure.
1109
1110 2008-09-01 Kenichi Handa <handa@m17n.org>
1111
1112 * ftfont.c (ftfont_spec_pattern): Don't create a charset of the
1113 representative chars of the script is a vector.
1114 (ftfont_list): Handle the case the representative chars of the
1115 script is a vector.
1116
1117 * character.c (syms_of_character): Docstring of
1118 script-representative-chars fixed.
1119
1120 2008-08-31 Eli Zaretskii <eliz@gnu.org>
1121
1122 * msdos.c (BUILD_CHAR_GLYPH): New macro.
1123 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
1124 the menu. Allocate larger buffer for `text', to account for
1125 possible ^C characters.
1126
1127 2008-08-31 Martin Rudalics <rudalics@gmx.at>
1128
1129 * xdisp.c (prepare_menu_bars): Don't call
1130 Vwindow_size_change_functions with arg Qt.
1131
1132 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
1133
1134 * font.h (font_range):
1135 * fileio.c (report_file_error):
1136 * composite.c (composition_update_it): Yet another int/Lisp_Oject mixup.
1137
1138 2008-08-30 Glenn Morris <rgm@gnu.org>
1139
1140 * data.c (Fmake_variable_frame_local): Doc fix.
1141
1142 * frame.c (Fmodify_frame_parameters): Doc fix.
1143
1144 2008-08-30 Eli Zaretskii <eliz@gnu.org>
1145
1146 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
1147 needed by GetTokenInformation.
1148 (w32_system_process_attributes): Check return values of all system
1149 APIs.
1150
1151 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
1152 only when the state changes.
1153 (IT_update_begin, IT_update_end): Add termscript trace.
1154
1155 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
1156 clipboard is unavailable. Set dst to NULL if it doesn't point to
1157 malloc'ed data.
1158 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
1159 passing random values to xfree.
1160
1161 * dispnew.c (init_display): Set `tty's association in frame's
1162 parameters alist to the name of the terminal device, if that is known.
1163
1164 2008-08-29 Jason Rumney <jasonr@gnu.org>
1165
1166 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
1167
1168 2008-08-29 Eli Zaretskii <eliz@gnu.org>
1169
1170 * composite.c (fill_gstring_body): Avoid compiler warnings.
1171
1172 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
1173 LGLYPH_SET_CODE to avoid compiler warnings.
1174
1175 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h
1176
1177 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
1178
1179 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
1180 LGLYPH_SET_CODE.
1181
1182 2008-08-29 Kenichi Handa <handa@m17n.org>
1183
1184 * fileio.c (report_file_error): Don't downcase the first character
1185 of errstring if it is still unibyte.
1186
1187 2008-08-29 Kenichi Handa <handa@m17n.org>
1188
1189 These changes are to re-implement the automatic composition so
1190 that it doesn't use text properties.
1191
1192 * Makefile.in (ftfont.o): Depend on composite.h.
1193 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
1194
1195 * character.h (Vunicode_category_table): Extern it.
1196
1197 * character.c (Vunicode_category_table): New variable.
1198 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
1199
1200 * chartab.c (optimize_sub_char_table): Perform more greedy
1201 optimization.
1202
1203 * composite.h (enum composition_method):
1204 Delete COMPOSITION_WITH_GLYPH_STRING.
1205 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
1206 (Vcomposition_function_table): Extern it.
1207 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
1208 (composition_gstring_put_cache, composition_gstring_from_id)
1209 (composition_gstring_p, composition_gstring_width)
1210 (composition_compute_stop_pos, composition_reseat_it)
1211 (composition_update_it, composition_adjust_point): Extern them.
1212 (Fcomposition_get_gstring): EXFUN it.
1213
1214 * composite.c: Include window.h, frame.h, dispextern.h font.h.
1215 (Vcomposition_function_table)
1216 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
1217 (gstring_hash_table, gstring_work, gstring_work_headers):
1218 New variables.
1219 (gstring_lookup_cache, composition_gstring_put_cache)
1220 (composition_gstring_from_id, composition_gstring_p)
1221 (composition_gstring_width, fill_gstring_header)
1222 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
1223 (composition_reseat_it, composition_update_it)
1224 (composition_adjust_point, Fcomposition_get_gstring): New functions.
1225 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
1226 and gstring_work_headers. DEFVAR_LISP composition-function-table.
1227 Defsubr compostion_get_gstring.
1228
1229 * dispextern.h (struct glyph): New union u.cmp. Delete the member
1230 cmp_id.
1231 (struct glyph_string): Delete the member gidx. New members
1232 cmp_id, cmp_from, and cmp_to.
1233 (enum it_method): Delete GET_FROM_COMPOSITION.
1234 (struct composition_it): New struct.
1235 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
1236 Delete c, len, cmp_id, cmp_len in u.comp.
1237
1238 * font.h (enum lgstring_indices): Delete it.
1239 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
1240 (enum lglyph_indices): Likewise.
1241 (font_range): Adjust extern.
1242 (font_fill_lglyph_metrics): Extern it.
1243
1244 * font.c (QCf): New variable.
1245 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
1246 (font_prepare_composition): Delete this function.
1247 (font_range): Type and arguments changed.
1248 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
1249 (font_fill_lglyph_metrics): New function.
1250 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
1251 (syms_of_font): DEFSYM QCf. Delete defsubr for
1252 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
1253 Defsubr Sfont_shape_gstring.
1254
1255 * fontset.h (font_for_char): Extern it.
1256
1257 * fontset.c (font_for_char): New function.
1258
1259 * ftfont.c: Include composite.h.
1260 (ftfont_resolve_generic_family): Add langset "en" to pattern.
1261 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
1262
1263 * indent.c: Include composite.h and dispextern.h.
1264 (check_composition): Delete this function.
1265 (scan_for_column): Handle composition by
1266 composition_compute_stop_pos, composition_reseat_it, and
1267 composition_update_it.
1268 (compute_motion): Likewise.
1269 (Fvertical_motion): Fix checking of composition.
1270
1271 * keyboard.c (adjust_point_for_property): Check composition by
1272 composition_adjust_point.
1273
1274 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
1275 struct glyph_string.
1276
1277 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
1278 (append_composite_glyph): Adjust for the change of struct it and
1279 struct glyph.
1280 (produce_composite_glyph): Likewise.
1281
1282 * w32term.c (x_draw_composite_glyph_string_foreground):
1283 Adjust for the change of struct glyph_string.
1284 (x_draw_glyph_string): Likewise.
1285
1286 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
1287 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
1288
1289 * xdisp.c: Include font.h.
1290 (it_props): Delete the entry for Qauto_composed.
1291 (init_iterator): Initialize it->cmp_it.id to -1.
1292 (compute_stop_pos): Call composition_compute_stop_pos.
1293 (face_before_or_after_it_pos): Adjust for the change of struct it.
1294 (handle_auto_composed_prop): Delete it.
1295 (handle_composition_prop): Handle only static composition.
1296 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
1297 from xassert. Initialize it->cmp_it.stop_pos.
1298 (push_it): Adjust for the change of struct it.
1299 (pop_it): Likewise.
1300 (get_next_element): Delete next_element_from_composition.
1301 (CHAR_COMPOSED_P): New macro.
1302 (get_next_display_element): For automatic composition, get a face
1303 from the font in the glyph-string.
1304 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
1305 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
1306 (next_element_from_string): Check if the character at the current
1307 position is composed by CHAR_COMPOSED_P.
1308 (next_element_from_buffer): Likewise.
1309 (next_element_from_composition): Adjust for the change of struct
1310 it. Update it->cmp_it.
1311 (dump_glyph): Adjust for the change of struct glyph.
1312 (fill_composite_glyph_string): Adjust for the change of struct
1313 it and struct glyph. Don't handle automatic composition here.
1314 (fill_gstring_glyph_string): New function.
1315 (x_get_glyph_overhangs): Handle automatic composition.
1316 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
1317 (BUILD_GSTRING_GLYPH_STRING): New macro.
1318 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
1319 automatic composition.
1320 (append_composite_glyph): Adjust for the change of struct it and
1321 struct glyph.
1322 (x_produce_glyphs): Adjust for the change of struct it.
1323
1324 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
1325 the change of struct glyph_string.
1326 (x_draw_glyph_string): Likewise.
1327
1328 2008-08-29 Glenn Morris <rgm@gnu.org>
1329
1330 * buffer.c (word-wrap): Doc fix.
1331 * xdisp.c (truncate-partial-width-windows): Doc fix.
1332 Increase default to 50.
1333
1334 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
1335
1336 * xdisp.c (update_tool_bar_unwind): New function.
1337 (update_tool_bar): Temporarily set selected frame before building
1338 tool-bar items.
1339
1340 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
1341
1342 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
1343 snprintf, respectively.
1344 (xd_append_arg): Convert strings with Fstring_make_unibyte.
1345
1346 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
1347
1348 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
1349 LDFLAGS to GNUstep CC invocation.
1350
1351 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
1352
1353 * indent.c (Fvertical_motion): Revert last change. Handle the
1354 general case where we are moving forward, and PT spans multiple
1355 screen lines.
1356
1357 * eval.c (find_handler_clause): Temporarily increase
1358 max-lisp-eval-depth while printing the backtrace buffer, to
1359 guarantee that help-mode code can run.
1360
1361 2008-08-27 Eli Zaretskii <eliz@gnu.org>
1362
1363 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
1364 colors under -rv.
1365 (IT_set_frame_parameters): Don't swap foreground and background
1366 colors if `(reverse . t)' is present in the frame properties.
1367 (internal_terminal_init): Call init_frame_faces only for the
1368 initial frame.
1369
1370 2008-08-27 Andreas Schwab <schwab@suse.de>
1371
1372 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
1373
1374 2008-08-27 Andreas Schwab <schwab@suse.de>
1375
1376 * search.c (search_buffer): Set char_base to zero only at the end.
1377
1378 2008-08-27 Kenichi Handa <handa@m17n.org>
1379
1380 * fileio.c (report_file_error): Fix handling of multibyte error string.
1381
1382 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
1383
1384 * xterm.c (x_term_init): Temporarily hide the partially
1385 initialized terminal while calling vendor-specific-keysyms.
1386
1387 2008-08-26 Eli Zaretskii <eliz@gnu.org>
1388
1389 * msdos.c (internal_terminal_init): Most initializations done only
1390 once, especially initial_screen_colors[] and termscript open.
1391
1392 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
1393
1394 * eval.c (Fcondition_case): Doc fix.
1395
1396 * widgetprv.h (EmacsFramePart): Change font member to the new font
1397 struct.
1398
1399 * widget.c: Include character.h and font.h for XSETFONT.
1400 (setup_frame_gcs): Compute X font id from font struct, just once.
1401
1402 2008-08-26 Eli Zaretskii <eliz@gnu.org>
1403
1404 * term.c (get_named_tty): Fix last change.
1405
1406 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
1407
1408 * indent.c (Fvertical_motion): If moving forward starting from a
1409 multi-line string, move the iterator to the last line of that string.
1410
1411 2008-08-25 Eli Zaretskii <eliz@gnu.org>
1412
1413 * frame.c (do_switch_frame): Mark previously displayed frame as
1414 obscured for FRAME_MSDOS_P frames as well.
1415
1416 2008-08-24 Eli Zaretskii <eliz@gnu.org>
1417
1418 * frame.c (make_terminal_frame): Initialize f->terminal,
1419 f->terminal->reference_count, and scroll bars on MS-DOS as well.
1420 Set the top frame to newly created frame.
1421 (Fmake_terminal_frame): Reuse the_only_display_info.
1422
1423 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
1424 estimating available memory.
1425
1426 2008-08-23 David Reitter <david.reitter@gmail.com>
1427
1428 * nsterm.m (ns_draw_window_cursor): Don't call
1429 NSDisableScreenUpdates and NSEnableScreenUpdates on
1430 non-NS_IMPL_COCOA systems.
1431
1432 2008-08-23 Andreas Schwab <schwab@suse.de>
1433
1434 * process.c (procfs_system_process_attributes): Fix use of
1435 uninitialized variables.
1436
1437 2008-08-23 Eli Zaretskii <eliz@gnu.org>
1438
1439 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
1440
1441 * dispnew.c (init_display): Remove MS-DOS specific conditions for
1442 calling tty-set-up-initial-frame-faces.
1443
1444 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
1445 Allow MSDOS frames along with X frames.
1446
1447 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
1448 addition to output_termcap.
1449
1450 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
1451
1452 * termchar.h (FRAME_TTY): Support output_msdos_raw.
1453 (struct tty_display_info) [MSDOS]: Add fields related to mouse
1454 highlight.
1455
1456 * process.c [!subprocesses]: Define QCname.
1457 (syms_of_process): Intern and staticpro it.
1458
1459 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
1460 Adjust for changes in encoding/decoding routines.
1461 Use encode_coding_object and decode_coding_object instead of
1462 encode_coding and decode_coding.
1463
1464 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
1465
1466 * dosfns.c: Include frame.h before termhooks.h.
1467 (dos_cleanup): Use CURTTY ()->termscript instead of a global
1468 variable termscript.
1469
1470 * s/msdos.h (USER_FULL_NAME): Define.
1471 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
1472
1473 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
1474 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
1475 pw->pw_gecos.
1476
1477 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
1478 SELECTED_FRAME as additional (1st) argument.
1479 (tty_read_avail_input): Handle output_msdos_raw in
1480 addition to output_termcap.
1481
1482 * msdos.c: Include frame.h before termhooks.h.
1483 (mouse_on, mouse_off, mouse_moveto, mouse_init)
1484 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
1485 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
1486 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
1487 (IT_set_terminal_modes, IT_reset_terminal_modes)
1488 (IT_set_frame_parameters): Use tty->termscript instead of a global
1489 variable termscript.
1490 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
1491 global variable terminal_coding. Don't refer to
1492 Vnonascii_translation_table.
1493 (internal_terminal_init): Set Vwindow_system in current_kboard.
1494 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
1495 Announce date and time of session start, if termscript is open.
1496 Don't zero out the_only_display_info (it is done in
1497 term.c:init_tty). Open termscript only of not already open.
1498 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
1499 here instead of dos_ttraw. Don't initialize display if this is an
1500 initial tty. Don't set FRAME_FONT.
1501 (Vwindow_system_version): Bump to 23.
1502 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
1503 is available, set up mouse_position_hook.
1504 (dos_ttraw, IT_set_terminal_modes): If called with initial
1505 terminal, do nothing.
1506 (IT_set_frame_parameters): Handle the Qtty_type frame
1507 parameter by calling internal_terminal_init.
1508 (dos_set_window_size, show_mouse_face)
1509 (clear_mouse_face, IT_note_mode_line_highlight)
1510 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
1511 (dos_rawgetc): Use tty_display_info instead of x_display_info.
1512 (initialize_msdos_display): New function.
1513 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
1514 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
1515 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
1516 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
1517 Accept additional argument: a pointer to a frame. Update all callers.
1518 (request_sigio, unrequest_sigio): Don't define, now defined on
1519 sysdep.c.
1520 (IT_write_glyphs): Rewrite to use encode_terminal_code.
1521
1522 * term.c [MSDOS]: Include msdos.h.
1523 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
1524 conditional to DOS_NT. Allow only one call to this function in a
1525 session. Don't allocate a new struct tty_display_info; instead,
1526 reuse the_only_display_info. Call get_tty_size to get screen
1527 dimensions. Call init_baud_rate to set bad_rate.
1528 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
1529 (Fsuspend_tty) [MSDOS]: Don't close input and output.
1530 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
1531 (get_tty_terminal, get_named_tty, Ftty_type)
1532 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
1533 output_termcap.
1534 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
1535 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
1536 only when subprocesses are supported
1537
1538 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
1539 f->output_data.x.
1540 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
1541 terminal devices.
1542
1543 * msdos.h Remove definition of struct x_display_info and struct
1544 x_output.
1545 (FRAME_FONT): Use output_data.tty.
1546 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
1547 (struct x_display_info): Rename from display_info. Update all users in
1548 msdos.c.
1549 (struct x_output): Remove background_pixel and foreground_pixel.
1550 (the_only_display_info): Rename from the_only_x_display.
1551 (dos_ttraw): Update prototype.
1552
1553 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
1554 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
1555
1556 2008-08-23 Jason Rumney <jasonr@gnu.org>
1557
1558 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
1559 (fn_TIFFSetDirectory): New library function used.
1560 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
1561 (tiff_load): Use :index to select among multiple images. Set count
1562 property when multiple images exist.
1563 (gif_format): Use :index, not :image.
1564
1565 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
1566
1567 * xdisp.c (try_scrolling): Check INT_MAX instead of
1568 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
1569 to obtain INT_MAX.
1570
1571 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
1572
1573 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
1574
1575 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
1576
1577 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
1578 GNUstep library location.
1579
1580 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
1581
1582 * xfaces.c (x_update_menu_appearance): Check validity of menu font
1583 before using it.
1584
1585 * puresize.h (BASE_PURESIZE): Increase to 1250000.
1586
1587 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
1588
1589 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
1590 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
1591 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
1592 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
1593 (EmacsApp-cursor_blink_handler): Remove declaration.
1594 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
1595 match 01 Feb 2008 changes in xterm.c.
1596 (ns_read_socket): Add cast to avoid warning.
1597 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
1598 GNUstep.
1599
1600 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
1601
1602 * xselect.c (x_get_foreign_selection): Return nil if desired
1603 selection could not be obtained, instead of signalling an error.
1604
1605 2008-08-20 David Reitter <david.reitter@gmail.com>
1606
1607 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
1608 * nsterm.m: Remove ns-specific code for cursor blinking.
1609 (ns_draw_window_cursor): Clear cursor properly rather than
1610 redrawing the area. Respect width of bar cursors.
1611 These changes enable the use of generic blink-cursor-mode and
1612 generic cursor types in NS and support smooth cursor movements (do
1613 not blink off after command).
1614 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
1615 Nextstep, too.
1616
1617 2008-08-19 Kenichi Handa <handa@m17n.org>
1618
1619 * font.c (Vfont_log_deferred): New variable.
1620 (font_add_log): Check Vfont_log_deferred.
1621 (font_deferred_log): New function.
1622
1623 * font.h (font_deferred_log): Extern it.
1624
1625 * fontset.c (reorder_font_vector): Use encoding charset of fonts
1626 for sorting.
1627 (face_for_char): Use deferred log.
1628
1629 2008-08-18 Kenichi Handa <handa@m17n.org>
1630
1631 * fontset.c (face_for_char): Add font log.
1632
1633 * font.c (font_add_log): Add the font properties :script, :lang,
1634 and :otf in the log.
1635
1636 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
1637
1638 * xdisp.c: Remove dead code.
1639 (handle_invisible_prop, next_overlay_string): Defer call to
1640 setup_for_ellipsis.
1641 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
1642
1643 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
1644
1645 * xfaces.c (lookup_derived_face): Properly handle possible zero
1646 return value of get_lface_attributes.
1647 (merge_faces): Don't tell lookup_derived_face to signal an error
1648 if face is not found.
1649
1650 * dired.c (Fdirectory_files): Doc fix.
1651
1652 * process.c (make_process): Initialize kill_without_query struct
1653 member.
1654
1655 2008-08-15 Eli Zaretskii <eliz@gnu.org>
1656
1657 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
1658 Alternative calculation of totphys for Visual Studio 6.
1659
1660 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
1661
1662 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
1663 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
1664 All users changed.
1665 (stat): Only root directory passed to GetDriveType. Allow RAM
1666 disk as well as local fixed disk when w32-get-true-file-attributes
1667 is set to `local'.
1668 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
1669 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
1670 (w32_cached_id, w32_add_to_cache): New functions.
1671 (get_name_and_id): Look account names in the cache before calling
1672 lookup_account_sid.
1673 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
1674 New initialization flags.
1675 (globals_of_w32): Initialize them to zero.
1676 (w32_system_process_attributes): Use w32_cached_id and
1677 w32_add_to_cache.
1678
1679 2008-08-14 Lawrence Mitchell <wence@gmx.li>
1680
1681 * lread.c (Fread_char, Fread_char_exclusive): If no character
1682 event is read before timeout is reached, return nil, rather than
1683 converting to a number.
1684
1685 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
1686
1687 * fns.c (use_dialog_box): Doc fix.
1688
1689 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
1690 on OS X.
1691
1692 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
1693
1694 * frame.c (Qns_parse_geometry): New var.
1695 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
1696
1697 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
1698
1699 * xdisp.c (x_produce_glyphs): Handle the case when font has no
1700 space character in calculating tabs.
1701
1702 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
1703
1704 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
1705
1706 2008-08-10 Glenn Morris <rgm@gnu.org>
1707
1708 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
1709 silence gcc "limited range of data type" warnings in some
1710 make_fixnum_or_float calls.
1711
1712 2008-08-09 Eli Zaretskii <eliz@gnu.org>
1713
1714 * w32.c (w32_system_process_attributes): If the process does not
1715 exist, return nil.
1716
1717 * w32.c: Include thelp32.h, psapi.h and coding.h.
1718 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
1719 declarations.
1720 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
1721 (Process32Next_Proc): New typedefs.
1722 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
1723 (g_b_init_process32_next, g_b_init_open_thread_token)
1724 (g_b_init_impersonate_self, g_b_init_revert_to_self)
1725 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
1726 (g_b_init_get_process_working_set_size)
1727 (g_b_init_global_memory_status_ex): New static variables.
1728 (globals_of_w32): Initialize them.
1729 (create_toolhelp32_snapshot, process32_first, process32_next)
1730 (open_thread_token, impersonate_self, revert_to_self)
1731 (get_process_memory_info, get_process_working_set_size)
1732 (global_memory_status, global_memory_status_ex): New wrapper
1733 functions.
1734 (w32_list_system_processes, w32_system_process_attributes)
1735 (enable_privilege, restore_privilege, ltime, process_times):
1736 New functions.
1737 (convert_time_raw): New function.
1738 (convert_time): Remove conversion of FILETIME into time in 100
1739 nsec units, call convert_time_raw instead.
1740
1741 * process.h (w32_list_system_processes, w32_system_process_attributes):
1742 Add prototypes.
1743 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
1744 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
1745 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
1746 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
1747
1748 * process.c (Fsystem_process_attributes): Doc fix.
1749
1750 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
1751
1752 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
1753 a continued multi-char glyph; if so, advance to the actual glyph.
1754
1755 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
1756
1757 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
1758
1759 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
1760 (.m.o): Use it.
1761 * config.in: Regenerate.
1762
1763 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
1764
1765 * xdisp.c (redisplay_window): Revert last change.
1766 (try_window): Check bottom scroll margin too.
1767
1768 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
1769
1770 * config.in: Regenerate.
1771
1772 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
1773 -list-load-path-shadows'.
1774 (nsgui.h): Reduce number of things depending on it.
1775
1776 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
1777
1778 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
1779 instead of window-end which does the wrong thing at eob.
1780 (try_cursor_movement): Minor optimization.
1781 (redisplay_window): If scroll margin is defined, don't assume
1782 window doesn't need scrolling.
1783
1784 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
1785
1786 * config.in: Regenerate.
1787
1788 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
1789 (mostlyclean): Don't delete *.d under NS.
1790
1791 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
1792
1793 2008-08-06 Kenichi Handa <handa@m17n.org>
1794
1795 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
1796
1797 2008-08-06 Andreas Schwab <schwab@suse.de>
1798
1799 * config.in: Regenerate.
1800
1801 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
1802
1803 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
1804 forcing a window start.
1805
1806 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
1807 (auto_save_1): Update modtime when auto-save-list-file-name is on.
1808
1809 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
1810
1811 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
1812 argument.
1813
1814 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
1815
1816 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
1817 <scroll-down-aggressively, before-change-functions>:
1818 <after-change-functions>: Reflow docstrings.
1819
1820 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
1821 Ken Raeburn <raeburn@gnu.org>
1822
1823 Dock menu customization, based on a patch by Ken Raeburn, plus some
1824 other fixes.
1825 * nsmenu.m (dockMenu): New variable.
1826 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
1827
1828 * nsterm.h (dockMenu): Declare.
1829
1830 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
1831 (ns_term_init): Initialize dockMenu.
1832 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
1833 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
1834 left.
1835
1836 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
1837
1838 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
1839
1840 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
1841
1842 * config.in: Regenerate.
1843
1844 2008-08-04 Seiji Zenitani <zenitani@mac.com>
1845
1846 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
1847
1848 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
1849
1850 * nsterm.h (find_and_call_menu_selection): Fix prototype.
1851
1852 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
1853
1854 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
1855
1856 * keyboard.h: Comment an #endif.
1857
1858 * lisp.h (have_menus_p): Adjust comment.
1859
1860 * menu.c (find_and_return_menu_selection): Fix comparison with
1861 client_data.
1862
1863 * nsmenu.m (popup_activated_flag): New variable.
1864 (popup_activated): New function.
1865 (menu-or-popup-active-p): New exported lisp definition.
1866 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
1867 when popup done.
1868 (ns_popup_dialog): Set popup_activated_flag.
1869
1870 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
1871 version for GNUstep (handled by conditional typedef in nsterm.m).
1872 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
1873 in rgb.txt).
1874
1875 * process.c (init_process): Use DARWIN_OS, not DARWIN.
1876
1877 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
1878
1879 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
1880
1881 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
1882 shortcircuit if popup_activated like GTK and X toolkit.
1883
1884 * m/inter386.h: Change DARWIN to DARWIN_OS.
1885
1886 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
1887 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
1888 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
1889 comment on NO_SOCK_SIGIO.
1890
1891 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
1892
1893 * nsterm.m (windowDidResize): Remove stopModal call.
1894
1895 2008-08-03 Andreas Schwab <schwab@suse.de>
1896
1897 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
1898 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
1899
1900 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
1901
1902 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
1903 Don't use uninitialized pointer variable when using getrlimit.
1904
1905 2008-08-02 Jason Rumney <jasonr@gnu.org>
1906
1907 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
1908
1909 2008-08-02 Eli Zaretskii <eliz@gnu.org>
1910
1911 * alloc.c (NSTATICS): Bump to 0x640.
1912
1913 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
1914
1915 * lisp.h: Add prototype for directory_files_internal.
1916
1917 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
1918 New functions.
1919 (syms_of_process): Defsubr them. Add initializations for various
1920 Q* symbols used in procfs_system_process_attributes.
1921 (procfs_list_system_processes, procfs_system_process_attributes)
1922 [HAVE_PROCFS]: New functions.
1923 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
1924 (procfs_get_total_memory): New functions.
1925
1926 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
1927
1928 * xfaces.c (Fx_load_color_file): Fix previous change;
1929 it is #ifdef WINDOWSNT, not WINDOWS_NT.
1930
1931 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
1932
1933 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
1934
1935 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
1936
1937 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
1938
1939 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
1940
1941 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
1942
1943 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
1944 define NSApplicationDelegateReplySuccess.
1945 (EmacsView -converstationIdentifier): Use long instead of
1946 NSInteger for GNUstep, since it doesn't have NSInteger.
1947
1948 * xmenu.c: Revert last change.
1949
1950 * keyboard.h: Fix last change.
1951
1952 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
1953
1954 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
1955 on Windows.
1956
1957 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
1958
1959 Warning clearing and clean-up in NS port.
1960 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
1961 Add prototypes.
1962 * nsgui.h (FACE_DEFAULT): Remove, unused.
1963 (XGCValues): Change colors to unsigned long.
1964 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
1965 nsterm.m.
1966 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
1967 (ns_list_fonts): Remove, unused.
1968 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
1969 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
1970 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
1971 (nsfont_draw): Compare face colors to 0, not nil.
1972 * nsmenu.m (struct widget_value): Drop unneeded declaration.
1973 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
1974 (-addSubmenuWithTitle:): Use NSMenuItem class.
1975 (ns_popup_menu): Use NO, not NULL, for enabled setting.
1976 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
1977 (ns_clip_to_row): Make gc arg a BOOL.
1978 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
1979 ns_clip_to_row() call.
1980 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
1981 used). Cast FRAME_FONT assignments.
1982 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
1983 (ns_string_to_lispmod): Change arg to const char.
1984 (ns_term_init): Use NSMenuItem class.
1985 (EmacsApp -openFile:): Move to different section of file.
1986 (EmacsApp -application:openFiles:): Don't return a value, call
1987 -replyToOpenOrPrint:.
1988 (EmacsView -keyDown:): Fix up cast.
1989 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
1990 (EmacsView -menuDown:): Cast tag in call to
1991 find_and_call_menu_selection().
1992 (ns_list_fonts): Remove, unused.
1993 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
1994 (ns_fontname_to_xlfd): Make static.
1995 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
1996 Remove prototypes (now in keyboard.h).
1997 (next_menubar_widget_id): Remove, unused.
1998 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
1999 Remove prototypes (now in keyboard.h).
2000 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
2001
2002 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
2003
2004 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
2005 (floatfns.o): Depend on syssignal.h.
2006 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
2007
2008 * systty.h: Fix previous change that removed BSD_TERMIOS.
2009 Add comments to #ifdefs.
2010
2011 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
2012
2013 * w32fns.c (w32-load-color-file): Remove.
2014 (x-open-connection): Use renamed Fx_load_color_file.
2015 * xfaces.c (x-load-color-file): Add.
2016 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
2017 Emacs.clr.
2018 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
2019
2020 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
2021
2022 * dbusbind.c (Fdbus_call_method_asynchronously)
2023 (Fdbus_method_error_internal): New defuns.
2024 (xd_read_message): Handle also reply messages.
2025 (Vdbus_registered_functions_table): Extend docstring.
2026
2027 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
2028
2029 * keyboard.c (gobble_input): Fix previous change.
2030
2031 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
2032
2033 * bitmaps/README:
2034 * xfns.c:
2035 * termcap.c:
2036 * term.c:
2037 * syswait.h:
2038 * systty.h:
2039 * systime.h:
2040 * syssignal.h:
2041 * sysdep.c:
2042 * process.h:
2043 * process.c:
2044 * print.c:
2045 * ndir.h:
2046 * lread.c:
2047 * keyboard.c:
2048 * getpagesize.h:
2049 * floatfns.c:
2050 * fileio.c:
2051 * emacs.c:
2052 * doc.c:
2053 * dispnew.c:
2054 * dired.c:
2055 * data.c:
2056 * callproc.c:
2057 * buffer.c:
2058 * README:
2059 * Makefile.in:
2060 * s/template.h:
2061 * s/msdos.h:
2062 * m/vax.h: Remove VMS support.
2063 * s/vms.h:
2064 * vlimit.h:
2065 * uaf.h:
2066 * temacs.opt:
2067 * param.h:
2068 * ioctl.h: Remove file.
2069
2070 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
2071
2072 * s/ms-w32.h (MULTI_KBOARD): Remove.
2073 * xterm.c:
2074 * xselect.c:
2075 * xfns.c:
2076 * window.c:
2077 * w32term.c:
2078 * w32fns.c:
2079 * terminal.c:
2080 * termhooks.h:
2081 * term.c:
2082 * sysdep.c:
2083 * keyboard.h:
2084 * keyboard.c:
2085 * frame.h:
2086 * frame.c:
2087 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
2088 * config.in: Regenerate.
2089
2090 2008-07-30 Jason Rumney <jasonr@gnu.org>
2091
2092 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
2093
2094 * w32font.c (w32font_encode_char): Leave as unicode if in range.
2095 (w32font_open_internal): Get unicode version of textmetrics.
2096 Don't enable or disable glyph indices here.
2097 (w32font_open): Disable use of glyph indices.
2098
2099 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
2100
2101 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
2102
2103 * minibuf.c (Vread_buffer_function): Doc fix.
2104
2105 2008-07-30 John Paul Wallington <jpw@pobox.com>
2106
2107 * minibuf.c (read_buffer_completion_ignore_case): New var.
2108 (Fread_buffer): Use it.
2109
2110 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
2111
2112 * systty.h (sensemode): Remove empty #if. Remove reference to
2113 BSD_TERMIOS, unused.
2114
2115 * sysdep.c: Remove reference to DGUX.
2116 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
2117
2118 * config.in: Regenerate.
2119
2120 2008-07-30 Jason Rumney <jasonr@gnu.org>
2121
2122 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
2123
2124 2008-07-29 Jason Rumney <jasonr@gnu.org>
2125
2126 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
2127 is populated.
2128 (uniscribe_encode_char): Always use uniscribe.
2129 Avoid using context if cache is populated.
2130
2131 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
2132
2133 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
2134 open menu.
2135
2136 * gtkutil.c (menu_nav_ended): Remove.
2137 (create_menus): Remove signal connect for menu_nav_ended.
2138
2139 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
2140
2141 * xdisp.c (redisplay_window): Check return value of
2142 compute_window_start_on_continuation_line before forcing a window
2143 start.
2144
2145 2008-07-28 Jason Rumney <jasonr@gnu.org>
2146
2147 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
2148
2149 * w32term.c (w32_enable_unicode_output, cleartype_active):
2150 Remove obsolete display options.
2151 (x_draw_glyph_string_background): Don't use old cleartype_active
2152 workaround.
2153 (w32_initialize): Remove cleartype_active initialization.
2154 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
2155
2156 2008-07-28 Andreas Schwab <schwab@suse.de>
2157
2158 * lisp.h (init_weak_hash_tables, syms_of_font)
2159 (xd_read_queued_messages, syms_of_dbusbind): Declare.
2160 (remove_hash_entry): Don't declare.
2161 * eval.c (maybe_call_debugger): Make static and move before use.
2162 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
2163 * xdisp.c: Include "gtkutil.h" if USE_GTK.
2164 * xterm.h (x_set_frame_alpha): Declare.
2165
2166 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
2167
2168 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
2169 (create_menus): Connect selection-done to menu_nav_ended.
2170
2171 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
2172
2173 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
2174 Set Vx_resource_name to a fallback. Replace read of 'buffered'
2175 parameter with read of 'alpha' one.
2176 (Qns_frame_parameter): Remove.
2177 * nsselection.m (selection-coding-system)
2178 (next-selection-coding-system, Vselection_coding_system)
2179 (Vnext_selection_coding_system): Drop.
2180
2181 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
2182
2183 * nsfns.m (do-applescript, do_applescript): Rename to
2184 ns-do-applescript, ns_do_applescript, and move within file.
2185
2186 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2187
2188 Remove support for Mac Carbon.
2189 * mactoolbox.c:
2190 * macterm.h:
2191 * macterm.c:
2192 * macselect.c:
2193 * macmenu.c:
2194 * macgui.h:
2195 * macfns.c:
2196 * mac.c: Remove file.
2197 * s/darwin.h:
2198 * m/intel386.h:
2199 * xfaces.c:
2200 * xdisp.c:
2201 * window.c:
2202 * tparam.c:
2203 * termhooks.h:
2204 * termcap.c:
2205 * term.c:
2206 * syssignal.h:
2207 * sysselect.h:
2208 * sysdep.c:
2209 * process.c:
2210 * lread.c:
2211 * lisp.h:
2212 * keyboard.c:
2213 * image.c:
2214 * fringe.c:
2215 * frame.h:
2216 * frame.c:
2217 * fontset.c:
2218 * font.h:
2219 * font.c:
2220 * fns.c:
2221 * fileio.c:
2222 * emacs.c:
2223 * dispnew.c:
2224 * dispextern.h:
2225 * config.in:
2226 * atimer.c:
2227 * Makefile.in: Remove code for Carbon
2228
2229 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2230
2231 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
2232
2233 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2234
2235 * macterm.h (kCGBitmapByteOrder32Host): New define for
2236 non-universal SDKs.
2237
2238 * image.c (mac_create_cg_image_from_image, image_load_image_io)
2239 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
2240
2241 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
2242 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
2243
2244 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
2245
2246 * w32inevt.c: Include dispextern.h.
2247
2248 2008-07-26 Andreas Schwab <schwab@suse.de>
2249
2250 * print.c (print_object): Fix off-by-one in last change.
2251
2252 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
2253
2254 * term.c (syms_of_term): Don't initialize default_orig_pair,
2255 default_set_foreground and default_set_background on Windows.
2256
2257 2008-07-25 Jason Rumney <jasonr@gnu.org>
2258
2259 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
2260 ScriptItemize. Clean up return value checking. Remove unused
2261 variables.
2262 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
2263 shaping engine.
2264
2265 * w32font.c (w32font_has_char): Handle the case where we can't
2266 determine the script for a character.
2267
2268 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
2269
2270 * term.c (syms_of_term): Initialize default_orig_pair,
2271 default_set_foreground, and default_set_background.
2272
2273 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
2274 clash (bug#86).
2275 (getloadavg): Callers changed.
2276
2277 * image.c (svg_load_image): Fix last change.
2278 (svg_load_image): Use rsvg_handle_get_dimensions to check that
2279 image size is valid. Use g_object_unref instead of deprecated
2280 rsvg_handle_free to free rsvg handle.
2281 (x_from_xcolors): Don't initialize pixmap (silence compiler).
2282
2283 2008-07-25 Jason Rumney <jasonr@gnu.org>
2284
2285 * w32font.c (w32font_encode_char): Encode characters outside BMP as
2286 surrogates before looking up glyph index.
2287 (w32font_text_extents): Encode as surrogates if falling back to
2288 functions that need UTF-16 wide chars.
2289
2290 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
2291 BMP as surrogates before looking up glyph index.
2292
2293 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
2294
2295 * image.c (svg_load_image): Check for failure in return value of
2296 rsvg_handle_get_pixbuf. Free rsvg handle when done.
2297
2298 2008-07-25 Jason Rumney <jasonr@gnu.org>
2299
2300 * w32font.c (Fx_select_font): Reverse sense of second arg.
2301
2302 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
2303
2304 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
2305 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
2306
2307 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
2308 (PURESIZE): Use it.
2309
2310 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
2311
2312 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
2313 * m/alpha.h (TEXT_END):
2314 * m/ibmrs6000.h (TEXT_END):
2315 * m/macppc.h (TEXT_END):
2316 * s/darwin.h (TEXT_END):
2317 * s/msdos.h (TEXT_END): Remove, unused.
2318 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
2319 * s/cygwin.h: Remove comment.
2320
2321 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
2322 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
2323 * m/intel386.h (DOT_GLOBAL_START):
2324 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
2325 (USG): Remove, file not used on USG platforms.
2326
2327 * Makefile.in (HAVE_X11): Remove empty #else.
2328
2329 2008-07-24 Andreas Schwab <schwab@suse.de>
2330
2331 * fileio.c (Finsert_file_contents): Properly adjust undo list
2332 after format conversion.
2333
2334 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
2335
2336 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
2337 (menu_nav_ended): Remove.
2338 (create_menus): Remove signal connect for menu_nav_ended.
2339 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
2340 create_menus.
2341 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
2342
2343 2008-07-23 Jason Rumney <jasonr@gnu.org>
2344
2345 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
2346 with opened font.
2347 (w32font_open): Set font type to gdi.
2348
2349 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
2350
2351 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
2352
2353 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
2354 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
2355 defines it.
2356 * unexec.c (ADDR_CORRECT): Define unconditionally.
2357
2358 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
2359
2360 * unexec.c: Remove code depending on !COFF and USG, the file is
2361 not used for such systems.
2362
2363 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
2364 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
2365 (LD_SWITCH_SYSTEM_1): Remove, update users.
2366
2367 * s/darwin.h (DATA_END):
2368 * m/intel386.h (DATA_END):
2369 * m/ibmrs6000.h (DATA_END):
2370 * m/alpha.h (DATA_END): Remove, unused.
2371
2372 * config.in: Regenerate.
2373 * s/ms-w32.h (subprocesses): Define unconditionally.
2374 * s/template.h (subprocesses): Update comment.
2375 * s/vms.h (subprocesses):
2376 * s/usg5-4.h (subprocesses):
2377 * s/hpux10-20.h (subprocesses):
2378 * s/gnu-linux.h (subprocesses):
2379 * s/cygwin.h (subprocesses):
2380 * s/bsd-common.h (subprocesses):
2381 * s/aix4-2.h (subprocesses):
2382 * s/darwin.h (subprocesses): Do not define, defined by default now.
2383
2384 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
2385 Remove all references.
2386 (temacs): Add GNUstep specific ld flags.
2387
2388 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
2389 similarly to what X does.
2390
2391 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
2392
2393 * nsfns.m (x-list-fonts): Remove.
2394 (syms_of_nsfns): Drop the x-list-fonts declaration.
2395 * nsterm.m: Get rid of remaining "//" comments.
2396
2397 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
2398
2399 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
2400
2401 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
2402 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
2403 (Fns_own_selection_internal, Fx_disown_selection_internal)
2404 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
2405
2406 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
2407 ... */' style of docstrings. Doc fixes.
2408
2409 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
2410
2411 * terminfo.c (UP, BC, PC): Undo previous change.
2412
2413 * nsfns.m: Rename ns prefixed functions/variables to the
2414 corresponding x versions. Update references.
2415
2416 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
2417
2418 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
2419
2420 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
2421
2422 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
2423 Remove forwarding functions.
2424 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
2425 non-static.
2426 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
2427 non-static.
2428 (ns_frame_parm_handlers): Use the new names.
2429 (syms_of_nsfns): Move to the end of file.
2430
2431 * nsterm.m (syms_of_nsterm): Move to the end of file.
2432
2433 * dispnew.c (init_display): Remove code for X10.
2434
2435 2008-07-22 Jason Rumney <jasonr@gnu.org>
2436
2437 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
2438 bare drive.
2439
2440 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
2441
2442 * nsterm.m (syms_of_nsterm): Remove debugging println.
2443
2444 2008-07-22 David Reitter <david.reitter@gmail.com>
2445
2446 * nsfns.m (do_applescript, F_do_applescript): NS version of the
2447 Carbon implementation of the same functionality: execute arbitrary
2448 AppleScript code.
2449
2450 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
2451
2452 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
2453 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
2454 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
2455 (Fx_display_mm_height, Fx_display_mm_width)
2456 (Fx_display_backing_store, Fx_display_visual_class)
2457 (Fx_display_save_under, Fx_open_connection)
2458 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
2459 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
2460 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
2461 (Fx_display_pixel_width, Fx_display_pixel_height)
2462 (Fx_display_usable_bounds, Fx_display_planes)
2463 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
2464 ... */' style of docstrings.
2465
2466 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
2467
2468 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
2469 on this platform.
2470 (mips):
2471 * m/iris4d.h (mips): Do not define.
2472 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
2473
2474 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
2475
2476 * image.c:
2477 * nsfns.m:
2478 * nsselect.m:
2479 * nsterm.h:
2480 * nsterm.m: Rename ns prefixed functions/variables to the
2481 corresponding x versions. Update references.
2482
2483 * m/ibms390x.h (NO_REMAP): Do not undefine.
2484
2485 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
2486
2487 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
2488
2489 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
2490 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
2491 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
2492 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
2493 (Fns_display_mm_height, Fns_display_mm_width)
2494 (Fns_display_backing_store, Fns_display_visual_class)
2495 (Fns_display_save_under, Fns_open_connection)
2496 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
2497 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
2498 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
2499 (Fns_display_pixel_width, Fns_display_pixel_height)
2500 (Fns_display_usable_bounds, Fx_display_planes)
2501 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
2502
2503 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
2504
2505 * print.c (print_object): Check print_depth before searching for
2506 circularities.
2507
2508 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
2509
2510 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
2511 only sprintf.
2512
2513 2008-07-21 Kenichi Handa <handa@m17n.org>
2514
2515 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
2516
2517 2008-07-20 Andreas Schwab <schwab@suse.de>
2518
2519 * syntax.c (find_start_pos, find_start_value)
2520 (find_start_value_byte, find_start_begv, find_defun_start)
2521 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
2522
2523 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
2524
2525 * s/sol2-3.h: Insert contents of s/sol2.h.
2526 (LD_SWITCH_SYSTEM): Remove redundant definition.
2527 * s/sol2.h: Remove, unused.
2528
2529 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
2530
2531 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
2532
2533 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
2534
2535 * Makefile.in (ns_appdir): Fix typo in find command.
2536
2537 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
2538
2539 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
2540
2541 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
2542 added not supported anymore.
2543
2544 * s/usg5-4-2.h (LIBS_SYSTEM):
2545 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
2546
2547 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
2548 * s/lynxos.h (GETPGRP_NO_ARG):
2549 * s/hpux10-20.h (NO_SIOCTL_H):
2550 * s/gnu.h (GETPGRP_NO_ARG):
2551 * s/gnu-linux.h (NO_SIOCTL_H):
2552 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
2553 * s/cygwin.h (GETPGRP_NO_ARG):
2554 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
2555 (C_DEBUG_SWITCH): Remove duplicate definition.
2556
2557 * m/ibms390.h: Remove boilerplate comments.
2558
2559 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
2560
2561 * process.c (HAVE_SERIAL): Consolidate ifdefs.
2562 (wait_reading_process_output): Remove code for SunOS, platform not
2563 supported anymore. Use SOLARIS2 instead of sun.
2564
2565 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
2566
2567 * font.c (font_open_by_name): Under NS, default lface height to zero.
2568 (font_open_for_lface): Under NS, set size based on frame fontsize.
2569 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
2570 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
2571
2572 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
2573
2574 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
2575 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
2576 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
2577 YES/NO.
2578 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
2579 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
2580 * Makefile.in (clean): Clear out build destination dir.
2581
2582 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
2583
2584 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
2585 xterm, xselect.
2586 * lisp.h: Remove declaration of hash_remove.
2587 * nsgui.h: Remove redefinitions of hash_remove.
2588 * fns.c (hash_remove): Rename to hash_remove_from_table.
2589
2590 2008-07-19 Seiji Zenitani <zenitani@mac.com>
2591
2592 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
2593 strdup() the family UTF8String before modifying it.
2594
2595 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
2596
2597 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
2598 NS_FACE_BACKGROUND with 0 instead of nil.
2599 * nsfont.m (nsfont_draw): Same.
2600
2601 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
2602
2603 * nsfns.m (ns_set_background_color): Fix crash.
2604
2605 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
2606
2607 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
2608
2609 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
2610
2611 * puresize.h (BASE_PURESIZE): Increase to 1240000.
2612
2613 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2614
2615 * gtkutil.c: Include <config.h> instead of "config.h".
2616
2617 * lisp.h (Foverlay_buffer): Add EXFUN.
2618
2619 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
2620 child process to complete child_setup. Undo 2005-09-21 change.
2621
2622 * s/darwin.h: Mention setsid after vfork.
2623
2624 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2625
2626 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
2627 Depend on macgui.h.
2628
2629 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
2630 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
2631
2632 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
2633 and f19.
2634 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
2635
2636 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
2637 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
2638 Remove enumerators.
2639
2640 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
2641 Check if FACE_FROM_ID returns NULL.
2642
2643 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
2644
2645 * w32inevt.c (change_frame_size): Remove extern declaration.
2646 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
2647 change_frame_size.
2648
2649 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
2650
2651 * getloadavg.c: Revert last change (2008-07-15).
2652
2653 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
2654
2655 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
2656 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc) set
2657 from configure.
2658
2659 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
2660
2661 * s/sol2.h:
2662 * s/sol2-4.h: Reorganize conditionals.
2663
2664 * ecrt0.c: Remove code depending on m68000, not used anymore.
2665
2666 * fns.c (hash_remove): Make static.
2667 * lisp.h (hash_remove): Don't prototype.
2668
2669 * m/ibmrs6000.h:
2670 * m/ibms390x.h:
2671 * m/macppc.h: Remove boilerplate comments.
2672
2673 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
2674 Solaris, which does not need them.
2675
2676 * m/vax.h: Remove comments about unsupported systems.
2677
2678 * s/darwin.h: Reorganize ifdefs.
2679
2680 2008-07-17 Andreas Schwab <schwab@suse.de>
2681
2682 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
2683
2684 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
2685
2686 Use SDATA. Follow coding convention of placing operators at
2687 beginning of next line rather than end of previous line, and placing
2688 spaces around infix operators.
2689
2690 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
2691 in case it was defined already.
2692 USE @GNUSTEP_MAKEFILES@ rather than envvars.
2693 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
2694 ns_default.
2695 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
2696 Lisp_Objects.
2697 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
2698 (ns_defined_color, ns_color_to_lisp): Declare.
2699 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
2700 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
2701 it's accepted even with USE_LISP_UNION_TYPE.
2702 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
2703 (update_frame_tool_bar): Remove apparently obsolete tests for
2704 non-integerness of f->tool_bar_lines.
2705 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
2706 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
2707 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
2708 (nsfont_open): Don't confuse NULL for Qnil.
2709 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
2710 * menu.h (find_and_call_menu_selection):
2711 * menu.c (find_and_call_menu_selection): Use just int for vector size.
2712 (find_and_return_menu_selection): Always return something.
2713 * frame.h: Include dispextern.h for Display_Info.
2714 (display_x_get_resource): Declare.
2715
2716 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
2717
2718 * syntax.c: Remove stdio.h include accidentally introduced in
2719 Emacs.app commit.
2720 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
2721 NS_IMPL_COCOA.
2722 * keyboard.c (handle_async_input, input_available_signal): Remove
2723 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
2724
2725 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
2726
2727 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
2728 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
2729 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
2730 Use SDATA.
2731
2732 * keymap.c: Remove all NS-specific code.
2733 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
2734 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
2735 where_is_preferred_modifier, return a different value depending on how
2736 preferred is the binding.
2737 (where_is_internal): Adjust accordingly.
2738 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
2739 Adjust to new preferred_sequence_p.
2740 (syms_of_keymap): Declare `where-is-preferred-modifier'.
2741 * keyboard.c (parse_solitary_modifier): Not static any more.
2742 * keyboard.h (parse_solitary_modifier): Declare.
2743
2744 2008-07-16 Andreas Schwab <schwab@suse.de>
2745
2746 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
2747 of easymenu.
2748
2749 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
2750
2751 * xdisp.c (move_it_in_display_line): Account for word wrap, so
2752 that we don't move off the line.
2753
2754 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
2755
2756 * keyboard.c (Qsuper): Remove.
2757 (parse_menu_item): Don't call where_is_internal specially for NS.
2758
2759 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
2760
2761 * s/gnu-linux.h: Remove boilerplate comments.
2762
2763 * m/alpha.h (__ELF__): Consolidate conditions.
2764
2765 * m/m68k.h (linux): Use GNU_LINUX instead.
2766 Remove boilerplate comments.
2767
2768 * m/intel386.h: Undo refactoring from previous change.
2769 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
2770 too, remove dead code.
2771 (linux): Use GNU_LINUX instead.
2772
2773 2008-07-16 Jason Rumney <jasonr@gnu.org>
2774
2775 * w32gui.h: Repeat 26 June changes lost by last change.
2776
2777 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
2778
2779 * systty.h: Remove code for Aix on 386, unsupported platform.
2780
2781 * s/ms-w32.h: Remove boilerplate comments.
2782 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
2783
2784 * s/gnu-linux.h (TERM): Remove support.
2785 (HAVE_SYSVIPC): Remove, unused.
2786 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
2787 for this system.
2788
2789 * process.c: Remove support for IRIS, unused.
2790 Remove support for TERM, not relevant anymore.
2791
2792 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
2793 used with the definition.
2794
2795 * s/aix4-2.h (static): Do not undef.
2796
2797 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
2798 only used on Aix.
2799 (HAVE_SYSVIPC): Remove, unused.
2800
2801 * m/hp800.h (CANNOT_DUMP): Do not undef.
2802
2803 * m/alpha.h: Fix comment.
2804
2805 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
2806 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
2807 used by this configuration.
2808 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
2809 * unexec.c: Remove code depending on HPUX and
2810 USG_SHARED_LIBRARIES, not used with this file. Remove code
2811 depending on IRIS, unused. Remove if 0-ed code.
2812
2813 * s/template.h: Remove comments about static.
2814
2815 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
2816 Remove if 0-ed code.
2817 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
2818 were the same as the default.
2819 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
2820 Remove boilerplate comments.
2821 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
2822 (HAVE_SYSVIPC): Remove, unused.
2823 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
2824
2825 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
2826 Remove boilerplate comments.
2827 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
2828 Remove boilerplate comments.
2829 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
2830 Remove boilerplate comments.
2831 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
2832
2833 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
2834 USG systems which do not use DATA_SEG_BITS.
2835 Refactor code. Remove boilerplate comments.
2836
2837 * m/ibms390.h:
2838 * m/m68k.h:
2839 * s/bsd-common.h:
2840 * s/cygwin.h:
2841 * s/darwin.h:
2842 * s/freebsd.h:
2843 * s/gnu.h:
2844 * s/msdos.h: Remove boilerplate comments.
2845
2846 * m/iris4d.h: Remove boilerplate comments and code for systems that
2847 do not use this file.
2848 (IRIS_4D): Remove, unused.
2849
2850 * m/mips.h: Remove boilerplate comments and code for systems that
2851 do not use this file.
2852 (SIGN_EXTEND_CHAR):
2853 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
2854 * unexmips.c: Remove file, unused.
2855
2856 * editfns.c (Fuser_full_name): Replace the only use of
2857 USER_FULL_NAME with its value.
2858 * config.in: Regenerate.
2859
2860 2008-07-16 David Reitter <david.reitter@gmail.com>
2861
2862 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
2863 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
2864
2865 2008-07-16 Glenn Morris <rgm@gnu.org>
2866
2867 * emacs.c (system-type): Doc fix.
2868
2869 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
2870
2871 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
2872 If the cache doesn't work, let's fix it, rather than work around it.
2873
2874 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
2875
2876 * Makefile.in: Correct additions for nsfont.o in last commit.
2877 * nsfont.m: New file (forgot last commit).
2878
2879 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
2880
2881 * callproc.c (set_initial_environment): Initialize
2882 Vprocess_environment under CANNOT_DUMP (fixes crash when
2883 batch-compiling for bootstrap).
2884
2885 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
2886 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2887
2888 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
2889 fix crash due to different init order.
2890
2891 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
2892
2893 Changes and additions for NeXTstep windowing system (Cocoa and
2894 GNUstep) support.
2895
2896 * Makefile.in:
2897 * config.in: Support defines and build commands for NS port.
2898 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
2899 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
2900 * dispextern.h: Include nsgui.h and add needed typedefs under NS
2901 windowing.
2902 (struct face): Add synth_ital field.
2903 * dispnew.c: Include nsterm.h when compiling under NS windowing.
2904 (init_display): Initialize Vinitial_window_system to "ns" when so
2905 compiled.
2906 * emacs.c: Include GSConfig.h when compiling under GNUstep.
2907 (display_arg): Use under NS.
2908 (main): Under NS, allocate autorelease pool and handle command line
2909 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
2910 (standard_args): Add NS-specific args.
2911 (shut_down_emacs): Shut down NS terminal if compiled under NS.
2912 * font.c (DEFAULT_ENCODING): New variable.
2913 (font_find_for_lface): Use it.
2914 (syms_of_font): Load syms_of_nsfont under NS.
2915 * font.h: Declare nsfont_driver when compiled under NS.
2916 * fontset.c: When compiling under NS, include nsterm.h.
2917 (fontset_from_font): Autoconstruct fontset under NS.
2918 * frame.c (various): Under NS, include nsterm.h, add Qns window system
2919 symbol, document and use it.
2920 (do_switch_frame): When for_deletion under Cocoa, add
2921 Fraise_frame(Qnil).
2922 (x_set_frame_parameters): Ensure font attribute changes are picked up.
2923 (x_get_arg): Allow "yes" and "no" as boolean values.
2924 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
2925 Qright under Cocoa.
2926 (focus-follows-mouse): Default to 0 under NS.
2927 * frame.h (enum output_method): Add output_ns.
2928 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
2929 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
2930 (FRAME_WINDOW_P): NS-specific definition.
2931 * fringe.c (max_used_fringe_bitmap): Make public.
2932 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
2933 (getloadavg): Use NeXT code under descendant OS's.
2934 * image.c (includes and header section, x_create_bitmap_from_data)
2935 (x_create_bitmap_from_file, free_bitmap_record, image_background)
2936 (image_background_transparent, x_clear_image_1)
2937 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
2938 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
2939 (x_to_xcolors, x_from_xcolors, x_disable_image)
2940 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
2941 other GUIs, including XPM support using code originally written for
2942 Carbon GUI.
2943 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
2944 using NS API.
2945 (image_ascent): Use font metrics macros instead of direct struct field
2946 access.
2947 * keyboard.c (includes): Add nsterm.h when compiling under NS.
2948 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
2949 Also, handle NS as GTK for menu bar purposes.
2950 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
2951 toolkit where they differ.
2952 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
2953 use cachelist, still needed under NS.
2954 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
2955 (struct widget_value): Define it here for menu.c.
2956 * keymap.c (includes): Include modifier internals.
2957 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
2958 NS.
2959 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
2960 support for preferring sequences using certain modifiers, specified by
2961 the FIRSTONLY argument.
2962 * lisp.h (hash_remove): Rename to avoid name clash when compiling
2963 under NS GNUstep implementation.
2964 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
2965 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
2966 * menu.c: Include nsterm.h under NS.
2967 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
2968 (free_menubar_widget_tree_value, update_submenu_strings)
2969 (find_and_call_menu_selection): Treat NS as X and NT.
2970 (find_and_return_menu_selection): New function, used for popup menus.
2971 * nsgui.h:
2972 * nsterm.h:
2973 * nsfns.m:
2974 * nsimage.m:
2975 * nsmenu.m:
2976 * nsselect.m:
2977 * nsterm.m: New files.
2978 * process.c (wait_reading_process_output): Under NS, call ns_select()
2979 instead of plain select().
2980 * syntax.c (char_quoted): Under NS, avoid a crash when called near
2981 beginning of buffer.
2982 * sysselect.h (init_process): Rename when compiling under Cocoa to
2983 avoid name conflict.
2984 * termhooks.h (display_info): Add ns_display_info to union.
2985 * terminal.c (Fterminal_live_p): Add ns to terminal types.
2986 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
2987 COCOA environment.
2988 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
2989 unexec() signature. (Note, this will dump, but the resulting file
2990 crashes; unexosx is used instead; keeping around for reference and
2991 possible aid in getting dump working under GNUstep.)
2992 * w32gui.h (button_type, widget_value): Remove definitions (now in
2993 keyboard.h).
2994 * window.c: Include nsterm.h when compiling under NS.
2995 * xdisp.c (includes): Include nsterm.h when compiling under NS.
2996 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
2997 other GUI windowing systems.
2998 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
2999 GTK.
3000 (x_consider_frame_title): Under NS, set icon type and frame
3001 modified-state indicator; use ns_set_name_as_filename() when using
3002 formatted title.
3003 (update_window_cursor): Make public when compiling under NS.
3004 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
3005 (hourglass_atimer, Vhourglass_delay
3006 * xfaces.c (header section, init_frame_faces, clear_font_table)
3007 (defined_color, unload_color, x_face_list_fonts)
3008 (prepare_face_for_display): Add NS support parallel to other GUIs.
3009 Emulate GCs like other non-X GUIs.
3010 (split_font_name): Don't lowercase font name under NS.
3011 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
3012 under NS.
3013 * s/darwin.h: Add support for compilation under NS.
3014
3015 2008-07-15 Jason Rumney <jasonr@gnu.org>
3016
3017 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
3018 (w32_show_hourglass): Rename from show_hourglass.
3019 (w32_hide_hourglass): Rename from hide_hourglass.
3020 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
3021 (Vhourglass_delay): Declare extern.
3022 (hourglass_started): Remove.
3023
3024 * xdisp.c (Vhourglass_delay): Remove static.
3025 (hourglass_started, start_hourglass, cancel_hourglass):
3026 Don't include these versions on WINDOWSNT.
3027
3028 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
3029
3030 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
3031 variables (formerly in xfns.c).
3032 (show_hourglass, hide_hourglass): New prototypes (same).
3033 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
3034 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
3035 in xfns.c).
3036 (syms_of_xdisp): Declare/initialize display-hourglass,
3037 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
3038 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
3039 formerly in xfns.c.
3040 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
3041 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
3042 (start_hourglass, cancel_hourglass): Remove.
3043 (show_hourglass, hide_hourglass): Remove prototypes and static
3044 modifiers.
3045 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
3046 hourglass_atimer, hourglass_shown_p declaration/initialization.
3047 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
3048 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
3049 (start_hourglass, cancel_hourglass): Remove.
3050 (show_hourglass, hide_hourglass): Remove prototypes and static
3051 modifiers.
3052 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
3053 hourglass_atimer, hourglass_shown_p declaration/initialization.
3054 * w32fns.c (display_hourglass_p, Vhourglass_delay)
3055 (DEFAULT_HOURGLASS_DELAY): Remove.
3056 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
3057 hourglass_shown_p declaration/initialization.
3058
3059 2008-07-14 Jason Rumney <jasonr@gnu.org>
3060
3061 * w32fns.c (w32_get_arg): Remove wrapper function.
3062 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
3063 directly.
3064 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
3065
3066 2008-07-14 Kenichi Handa <handa@m17n.org>
3067
3068 * xfont.c (xfont_open): Add workaround for X's bug.
3069
3070 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
3071
3072 * fontset.c: Include <stdio.h> unconditionally.
3073
3074 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
3075
3076 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
3077 for filtering.
3078
3079 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
3080
3081 * s/vms.h: Use __GNUC__ instead of _GNUC_.
3082
3083 * m/macppc.h:
3084 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
3085
3086 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
3087 (SPECIAL_EMACS_INT):
3088 * m/ia64.h (SPECIAL_EMACS_INT):
3089 * m/amdx86-64.h (SPECIAL_EMACS_INT):
3090 * s/gnu.h (NLIST_STRUCT):
3091 * s/aix4-2.h (X11R5_INHIBIT_I18N):
3092 * s/gnu-linux.h (LINUX):
3093 * s/msdos.h (HAVE_FACES):
3094 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
3095
3096 * systty.h:
3097 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
3098 anymore.
3099
3100 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
3101
3102 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
3103 always defined as int.
3104
3105 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
3106 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
3107 * s/gnu-linux.h (HAVE_WAIT_HEADER):
3108 * s/freebsd.h (HAVE_WAIT_HEADER):
3109 * s/bsd-common.h (HAVE_UNION_WAIT):
3110 * s/aix4-2.h (HAVE_WAIT_HEADER):
3111 * m/mips.h (HAVE_UNION_WAIT):
3112 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
3113 (COFF, static): Do not define, they are undefined later in the file.
3114
3115 * process.c (update_status): Don't use a union.
3116 (status_convert):
3117 (sigchld_handler): Use int instead of WAITTYPE.
3118
3119 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
3120
3121 * indent.c (Fvertical_motion): Restore hscroll before moving to
3122 goal column.
3123
3124 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
3125
3126 * lisp.h: Remove left over code.
3127
3128 2008-07-11 Andreas Schwab <schwab@suse.de>
3129
3130 * lisp.h: Fix logic in last change.
3131
3132 * menu.h: New file.
3133 * menu.c: Include it.
3134 * xmenu.c: Likewise.
3135 * Makefile.in: Update dependencies.
3136
3137 2008-07-11 Kenichi Handa <handa@m17n.org>
3138
3139 * fontset.c (fontset_from_font): Cancel the previous change.
3140
3141 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
3142
3143 * lisp.h:
3144 * w32heap.c:
3145 * emacs.c:
3146 * alloc.c: Replace all references of NO_UNION_TYPE with
3147 USE_LISP_UNION_TYPE.
3148
3149 * m/xtensa.h (NO_UNION_TYPE):
3150 * m/vax.h (NO_UNION_TYPE):
3151 * m/template.h (NO_UNION_TYPE):
3152 * m/sparc.h (NO_UNION_TYPE):
3153 * m/mips.h (NO_UNION_TYPE):
3154 * m/macppc.h (NO_UNION_TYPE):
3155 * m/m68k.h (NO_UNION_TYPE):
3156 * m/iris4d.h (NO_UNION_TYPE):
3157 * m/intel386.h (NO_UNION_TYPE):
3158 * m/ibms390x.h (NO_UNION_TYPE):
3159 * m/ibms390.h (NO_UNION_TYPE):
3160 * m/ibmrs6000.h (NO_UNION_TYPE):
3161 * m/ia64.h (NO_UNION_TYPE):
3162 * m/hp800.h (NO_UNION_TYPE):
3163 * m/arm.h (NO_UNION_TYPE):
3164 * m/amdx86-64.h (NO_UNION_TYPE):
3165 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
3166 defining it the same.
3167
3168 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
3169
3170 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
3171
3172 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
3173
3174 * fileio.c:
3175 * sysdep.c
3176 * systty.h:
3177 * m/ibmrs6000.h:
3178 * m/iris4d.h:
3179 * s/aix4-2.h:
3180 * s/freebsd.h:
3181 * s/gnu-linux.h:
3182 * s/hpux10-20.h:
3183 * s/hpux11.h:
3184 * s/netbsd.h:
3185 * s/sol2-3.h:
3186 * s/sol2-4.h:
3187 * s/sol2.h:
3188 * s/usg5-4.h:
3189 * s/vms.h: Remove references to unused variables.
3190
3191 2008-07-10 Andreas Schwab <schwab@suse.de>
3192
3193 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
3194 pattern before matching the generic family.
3195
3196 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
3197
3198 * unexec.c:
3199 * s/vms.h:
3200 * s/usg5-4-2.h:
3201 * s/sol2-5.h:
3202 * s/freebsd.h:
3203 * s/darwin.h: Remove dead code.
3204
3205 * m/template.h:
3206 * m/sparc.h:
3207 * m/mips.h:
3208 * m/m68k.h:
3209 * m/iris4d.h:
3210 * m/intel386.h:
3211 * m/ibms390x.h:
3212 * m/ibms390.h:
3213 * m/ia64.h:
3214 * m/hp800.h:
3215 * m/arm.h:
3216 * m/amdx86-64.h: Remove dead code and references to unused
3217 and compiler defined symbols.
3218
3219 * unexmips.c:
3220 * unexelf.c: Remove references to desupported systems.
3221
3222 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
3223
3224 * m/powermac.h: Remove boilerplate comments.
3225 (NO_REMAP): Remove unused definition.
3226
3227 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
3228 define them.
3229
3230 2008-07-10 Kenichi Handa <handa@m17n.org>
3231
3232 * xfont.c (xfont_open): Log the reason of failure.
3233
3234 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
3235
3236 * fontset.c (fontset_get_font_group):
3237 * font.c (font_check_otf): Specify argument types.
3238
3239 2008-07-09 Kenichi Handa <handa@m17n.org>
3240
3241 * coding.c (detect_coding_utf_8): Set detect_info->found only when
3242 non-ASCII char is found.
3243
3244 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
3245 (reorder_font_vector): Change the arg preferred_family to font.
3246 Prefer the spec matching with font.
3247 (fontset_get_font_group): New function.
3248 (fontset_find_font): Change the format of an element of a realized
3249 fontset. Use fontset_get_font_group.
3250 (fontset_font): Try the current fontset, the default fontset, the
3251 fallbacks of the current fontset, and the fallbacks of the default
3252 fontset in this order.
3253 (face_for_char): Delete the shortcut to use the current font.
3254 (fontset_from_font): Don't set fonts for Latin in the fontset.
3255
3256 * font.h (font_make_object, font_match_p): Adjust prototypes.
3257
3258 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
3259
3260 * font.c (font_make_object): New arg entity and pixelsize.
3261 (font_check_otf_features, font_check_otf): New functions.
3262 (font_match_p): Check :lang, :script, and :otf properties.
3263
3264 * xfont.c (xfont_open): Adjust it for the change of
3265 font_make_object.
3266 (xfont_text_extents): Fix initial setting of metrics.
3267
3268 * ftfont.c (struct ftfont_info): New member index, delete member
3269 fc_charset_idx. Make the member order compatible with struct
3270 xftfont_info.
3271 (fc_charset_table): Change charset names to registry names.
3272 (ftfont_pattern_entity): Delete the args registry and
3273 fc_charset_idx. Change the value of :font-entity property
3274 to (FONTNAME . INDEX). Always set :registry property to
3275 `iso10646-1'.
3276 (struct ftfont_cache_data): New struct.
3277 (ftfont_lookup_cache): New arg for_face.
3278 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
3279 (ftfont_driver): Set the member otf_capability.
3280 (ftfont_get_charset): Adjust it for the change of
3281 fc_charset_table.
3282 (OTF_TAG_SYM): New macro.
3283 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
3284 for the change of fc_charset_table.
3285 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
3286 ftfont_pattern_entity. Add FC_INDEX to objset.
3287 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
3288 and ftfont_pattern_entity.
3289 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
3290 font_make_object, struct ftfont_info.
3291 (ftfont_has_char): Use ftfont_get_fc_charset.
3292 (ftfont_otf_features, ftfont_otf_capability): New functions.
3293 (ftfont_shape): Use ftfont_get_otf.
3294 (ftfont_text_extents): Fix initial setting of metrics.
3295
3296 * xftfont.c (struct xftfont_info): New member ft_size. Make the
3297 member order compatible with struct ftfont_info.
3298 (xftfont_open): Add FC_CHARSET to the pattern. Set
3299 xftfont_info->ft_size. Don't unlock the face. Check BDF
3300 properties if appropriate.
3301 (xftfont_close): Unlock the face.
3302 (xftfont_anchor_point, xftfont_shape): Deleted.
3303 (syms_of_xftfont): Don't set members anchor_point and shape of
3304 xftfont_driver.
3305
3306 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
3307 font_make_object.
3308
3309 * w32font.c (w32font_open): Adjust it for the change of
3310 font_make_object.
3311 (w32font_open_internal): Don't set properties of font_object here.
3312
3313 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
3314
3315 * macfns.c (x_create_tip_frame):
3316 * w32fns.c (x_create_tip_frame):
3317 * xfns.c (x_create_tip_frame): Pass parameter argument to
3318 face-set-after-frame-default.
3319
3320 * xfaces.c (Finternal_merge_in_global_face): Save merged
3321 attributes for the default face back into the face vector.
3322
3323 2008-07-08 Andreas Schwab <schwab@suse.de>
3324
3325 * fontset.h: Declare fontset_from_font. Don't declare
3326 new_fontset_from_font and fontset_from_font_name.
3327 * xterm.c: Include "fontset.h".
3328 * Makefile.in (xterm.o): Update dependencies.
3329
3330 2008-07-08 Glenn Morris <rgm@gnu.org>
3331
3332 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
3333 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
3334
3335 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
3336
3337 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
3338 (x_set_frame_parameters): Don't bind it.
3339
3340 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
3341
3342 * w32fns.c (map_w32_filename): Declare extern.
3343
3344 2008-07-07 Jason Rumney <jasonr@gnu.org>
3345
3346 * w32term.c (WS_EX_LAYERED): Define if not already.
3347
3348 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
3349
3350 * xfaces.c (set_font_frame_param): Don't try to set the font
3351 parameter if it is still unspecified in the lface.
3352
3353 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
3354
3355 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
3356 face if it didn't already exist.
3357
3358 * xdisp.c (try_window_id): Give up if word-wrapping is on.
3359
3360 2008-07-05 Andreas Schwab <schwab@suse.de>
3361
3362 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
3363
3364 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
3365
3366 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
3367 word-wrapping.
3368 (IT_DISPLAYING_WHITESPACE): New macro.
3369 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
3370 when word-wrapping. Simplify word-wrapping logic. Use correct
3371 pixel positions when saving copies of the iterator.
3372 (display_line): Use proper wrap point if the last character on a
3373 line was preceded by whitespace.
3374
3375 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
3376
3377 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
3378
3379 2008-07-04 Kenichi Handa <handa@m17n.org>
3380
3381 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
3382
3383 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
3384
3385 2008-07-02 Jason Rumney <jasonr@gnu.org>
3386
3387 * xfns.c (syms_of_xfns): Only define x-select-font when both
3388 HAVE_FREETYPE and USE_GTK
3389
3390 * xdisp.c (next_element_from_display_vector): Move assignment out
3391 of if statement.
3392
3393 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
3394
3395 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
3396
3397 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
3398 (syms_of_fileio): Initialize and export them.
3399 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
3400
3401 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
3402 (Fsystem_move_file_to_trash): New function.
3403 (syms_of_w32fns): Export it to lisp.
3404
3405 2008-07-01 Jason Rumney <jasonr@gnu.org>
3406
3407 * w32font.c (w32font_text_extents): Don't count overhang as part
3408 of width.
3409
3410 2008-06-30 Miles Bader <miles@gnu.org>
3411
3412 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
3413 Add `avoid_cursor_p' field.
3414
3415 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
3416 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
3417 (append_glyph, append_composite_glyph, produce_image_glyph)
3418 (append_stretch_glyph): Initialize avoid_cursor_p.
3419 (get_it_property): Rename from `get_line_height_property'.
3420 (x_produce_glyphs): Use get_it_property.
3421 (handle_line_prefix, push_display_prop): New functions.
3422 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
3423 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
3424 New variables.
3425 (syms_of_xdisp): Initialize them.
3426
3427 2008-06-30 Kenichi Handa <handa@m17n.org>
3428
3429 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
3430 XftDefaultSubstitute (they are called in XftFontMatch).
3431 (xftfont_open): Fix args to ftfont_font_format.
3432
3433 * ftfont.c (fc_charset_table): New member lang.
3434 (ftfont_resolve_generic_family): New arg pattern.
3435 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
3436 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
3437 (ftfont_open): Fix args to ftfont_font_format.
3438 (ftfont_font_format): New arg filename.
3439
3440 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
3441
3442 * xfaces.c (Finternal_merge_in_global_face): If default face was
3443 modified, realize it again. Update the font face attribute.
3444
3445 2008-06-29 Jason Rumney <jasonr@gnu.org>
3446
3447 * w32term.c (x_set_frame_alpha): Fix logic.
3448
3449 2008-06-29 Kenichi Handa <handa@m17n.org>
3450
3451 * fontset.c (Finternal_char_font): Return font-object instead of
3452 font-name.
3453
3454 * composite.c (get_composition_id): Fix the width calculation for TAB.
3455
3456 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
3457
3458 * indent.c (Fvertical_motion): Properly handle float column arg.
3459
3460 2008-06-28 Jason Rumney <jasonr@gnu.org>
3461
3462 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
3463 (pfnSetLayeredWindowAttributes): New function pointer.
3464 (w32_initialize): Initialize it when supported.
3465 (x_set_frame_alpha): New function.
3466
3467 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
3468 (w32_frame_parm_handlers): Set alpha handler.
3469
3470 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
3471
3472 2008-06-27 Jason Rumney <jasonr@gnu.org>
3473
3474 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
3475 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
3476 (w32_to_x_charset, x_to_w32_charset)
3477 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
3478 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
3479 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
3480 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
3481 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
3482 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
3483 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
3484 (Qw32_charset_unicode): Remove.
3485 (syms_of_w32fns): Update for above changes.
3486
3487 * w32font.c (w32_to_x_charset, x_to_w32_charset)
3488 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
3489 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
3490 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
3491 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
3492 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
3493 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
3494 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
3495 (syms_of_w32font): Update for above changes.
3496
3497 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
3498
3499 * s/usg5-4.h: Fix previous change: keep the correct branch of a
3500 removed #if.
3501 (USG_SHARED_LIBRARIES): Remove duplicate definition.
3502
3503 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
3504 Eli Zaretskii <eliz@gnu.org>
3505
3506 * makefile.w32-in (LOCAL_FLAGS):
3507 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
3508
3509 * sysdep.c (_spawnlp, _getpid):
3510 Declare with explicit _cdecl instead of _CRTAPI1.
3511
3512 * editfns.c (Fget_internal_run_time):
3513 Check for WINDOWSNT with #ifdef, not #if.
3514
3515 2008-06-26 Jason Rumney <jasonr@gnu.org>
3516
3517 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
3518
3519 * w32term.c (x_draw_glyph_string_foreground)
3520 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
3521 Use FONT_HANDLE macro.
3522 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
3523
3524 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
3525 (uniscribe_encode_char): Use FONT_HANDLE macro.
3526
3527 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
3528 (w32font_text_extents): Use precast w32_font.
3529 (w32font_close): Free cached metrics.
3530 (w32font_open_internal): Allocate space for name on stack.
3531
3532 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
3533
3534 * xdisp.c (extend_face_to_end_of_line): Fix last change.
3535
3536 2008-06-26 Jason Rumney <jasonr@gnu.org>
3537
3538 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
3539 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
3540
3541 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
3542
3543 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
3544
3545 2008-06-26 Jason Rumney <jasonr@gnu.org>
3546
3547 * w32bdf.c, w32bdf.h: Remove obsolete files.
3548
3549 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
3550
3551 * w32gui.h: Don't include w32bdf.h.
3552 (XCharStruct, enum w32_char_font_type, W32FontStruct):
3553 Remove obsolete font support.
3554
3555 * w32font.h (struct w32font_info): Remove compat_w32_font.
3556 Add hfont member.
3557 (FONT_COMPAT): Remove obsolete macro.
3558
3559 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
3560 (w32font_encode_char, w32font_text_extents): Use new hfont member.
3561 (w32font_open_internal): Remove compat code. Set new hfont member.
3562 (Fx_select_font): Use new hfont member.
3563
3564 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
3565 (uniscribe_encode_char): Use new hfont member.
3566
3567 * w32term.c (x_draw_glyph_string_foreground)
3568 (x_draw_composite_glyph_string_foreground): Use new hfont member.
3569 (x_draw_glyph_string): Use metrics in w32font_info.
3570
3571 2008-06-26 Kenichi Handa <handa@m17n.org>
3572
3573 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
3574
3575 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
3576
3577 * unexnext.c:
3578 * m/ews4800.h:
3579 * m/hp9000s300.h:
3580 * m/ibm370aix.h:
3581 * m/mips-siemens.h:
3582 * m/ncr386.h:
3583 * m/next.h:
3584 * m/pmax.h:
3585 * m/powerpcle.h:
3586 * m/tandem-s2.h:
3587 * s/386bsd.h:
3588 * s/bsd386.h:
3589 * s/bsd4-1.h:
3590 * s/bsd4-2.h:
3591 * s/bsdos2-1.h:
3592 * s/bsdos2.h:
3593 * s/bsdos3.h:
3594 * s/bsdos4.h:
3595 * s/nextstep.h:
3596 * s/ultrix4-3.h:
3597 * s/usg5-0.h:
3598 * s/usg5-2-2.h:
3599 * s/usg5-2.h:
3600 * s/usg5-4-3.h:
3601 * s/ux4800.h:
3602 * s/uxpds.h:
3603 * s/uxpv.h: Remove support for obsolete systems.
3604 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
3605 Remove, insert contents in s/hpux-10.20.h.
3606 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
3607 Remove, insert contents in s/aix4-2.h.
3608 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
3609 * s/bsd4-3.h: Rename to ...
3610 * s/bsd-common.h: ... this.
3611 * data.c:
3612 * doc.c:
3613 * ecrt0.c:
3614 * emacs.c:
3615 * fileio.c:
3616 * floatfns.c:
3617 * keyboard.c:
3618 * mem-limits.h:
3619 * print.c:
3620 * process.c:
3621 * sysdep.c:
3622 * syssignal.h:
3623 * systty.h:
3624 * syswait.h:
3625 * term.c:
3626 * unexec.c:
3627 * unexelf.c:
3628 * unexhp9k800.c:
3629 * m/hp800.h:
3630 * m/ibmrs6000.h:
3631 * m/mips.h:
3632 * m/vax.h:
3633 * s/darwin.h:
3634 * s/freebsd.h:
3635 * s/gnu.h:
3636 * s/ms-w32.h:
3637 * s/msdos.h:
3638 * s/netbsd.h:
3639 * s/template.h: Remove references to obsolete variables.
3640
3641 * Makefile.in: Add dependencies for all unexec files.
3642 (admindir): Remove unused variable.
3643 (UNEXEC_SRC): Remove references.
3644
3645 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
3646
3647 * xfns.c (x_default_font_parameter): If Xft is available, first
3648 try Monospace-12 for the default font.
3649
3650 2008-06-25 Jason Rumney <jasonr@gnu.org>
3651
3652 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
3653
3654 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
3655
3656 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
3657
3658 * buffer.c (syms_of_buffer): Remove default-word-wrap.
3659
3660 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
3661
3662 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
3663 <scroll-conservatively>: Fix typo in docstring.
3664
3665 * xselect.c (Fx_send_client_event): Doc fix.
3666
3667 2008-06-25 Kenichi Handa <handa@m17n.org>
3668
3669 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
3670
3671 * font.c (font_parse_fcname): Remove unused variables.
3672 (font_sort_entites): Delete the arg SPEC. Caller changed.
3673 Fix for the case of ! best_only.
3674 (font_delete_unmatched): Check DPI and AVGWIDTH too.
3675
3676 * lisp.h (Fstring_to_unibyte): EXFUN it.
3677
3678 * character.h (str_to_unibyte): Extern it.
3679
3680 * character.c (str_to_unibyte): New function.
3681
3682 * fns.c (Fstring_to_unibyte): New function.
3683 (syms_of_fns): Defsubr it.
3684
3685 2008-06-24 Kenichi Handa <handa@m17n.org>
3686
3687 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
3688 DPI too.
3689 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
3690
3691 2008-06-24 Andreas Schwab <schwab@suse.de>
3692
3693 * Makefile.in (${lispsource}loaddefs.el): Rename from
3694 ../lisp/loaddefs.el.
3695 (bootstrap-clean): Do what distclean does but don't remove
3696 Makefile.
3697 (distclean): Depend on bootstrap-clean and remove Makefile.
3698
3699 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
3700
3701 * buffer.h (struct buffer): New member word_wrap.
3702
3703 * buffer.c (syms_of_buffer): New variables default-word-wrap and
3704 word-wrap.
3705 (init_buffer_once): Initialize them.
3706
3707 * dispextern.h (struct it): Replace bool truncate_lines_p with a
3708 line_wrap enum possessing three possible values.
3709
3710 * termopts.h: Replace truncate_partial_width_windows with
3711 Vtruncate_partial_width_windows.
3712
3713 * dispnew.c (direct_output_for_insert): Avoid direct output when
3714 inserting a space with word wrap on.
3715
3716 * indent.c (compute_motion): Obey integer values of
3717 truncate-partial-width-windows.
3718
3719 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
3720 replacing truncate_partial_width_windows.
3721 (init_iterator): If Vtruncate_partial_width_windows is an integer,
3722 truncate only if the window width is below that integer.
3723 (start_display, resize_mini_window, produce_stretch_glyph)
3724 (display_string, move_it_in_display_line_to): Use line_wrap.
3725 (back_to_previous_visible_line_start, reseat_1): Reset
3726 string_from_display_prop_p.
3727 (display_line): Extend default face to end of line when wrapping.
3728
3729 2008-06-24 Kim F. Storm <storm@cua.dk>
3730
3731 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
3732 to wrap continued lines at word boundaries.
3733
3734 2008-06-24 Jason Rumney <jasonr@gnu.org>
3735
3736 * font.c (Ffont_face_attributes): Multiply pixel size before point
3737 conversion to avoid multiplying rounding error.
3738
3739 2008-06-23 Jason Rumney <jasonr@gnu.org>
3740
3741 * w32term.c (x_draw_glyph_string_background)
3742 (x_draw_glyph_string): Remove old bdf font code.
3743
3744 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
3745
3746 2008-06-22 Kenichi Handa <handa@m17n.org>
3747
3748 * font.c (font_find_for_lface): Try the adstyle specified in
3749 the property of LFACE_FONT of LFACE (if any).
3750
3751 2008-06-21 Seiji Zenitani <zenitani@mac.com>
3752 Ryo Yoshitake <ryo@shiftmode.net>
3753
3754 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
3755
3756 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
3757
3758 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
3759 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
3760 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
3761 (witness-emacs): Remove.
3762 (lisp, shortlisp): Move loaddefs.el earlier.
3763 (mostlyclean): Forget about witness-emacs.
3764
3765 2008-06-22 Glenn Morris <rgm@gnu.org>
3766
3767 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
3768 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
3769
3770 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
3771
3772 * Makefile.in (PRECOMP): Remove.
3773 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
3774 (witness-emacs): Run `compile-first'.
3775 (.el.elc): Use the new compile-onefile target.
3776
3777 2008-06-21 Kenichi Handa <handa@m17n.org>
3778
3779 * xftfont.c (xftfont_open): Handle QCembolden only when
3780 FC_EMBOLDEN is defined.
3781
3782 2008-06-21 Andreas Schwab <schwab@suse.de>
3783
3784 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
3785 (.el.elc): Likewise.
3786
3787 2008-06-21 Miles Bader <miles@gnu.org>
3788
3789 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
3790 build dir, not the lisp source dir.
3791
3792 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
3793
3794 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
3795 (bootstrapclean): Remove.
3796 (.el.elc): New rule.
3797 (PRECOMP): New var.
3798 (../lisp/subdirs.el): Remove.
3799 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
3800 (witness-emacs): New target.
3801 (mostlyclean): Remove witness-emacs as well.
3802 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
3803 Add witness-emacs dependency.
3804
3805 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
3806
3807 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
3808 defined by the font.
3809
3810 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
3811
3812 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
3813 (bootstrap-clean): New target that keeps TAGS around.
3814 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
3815 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
3816
3817 2008-06-20 Jason Rumney <jasonr@gnu.org>
3818
3819 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
3820 Remove obsolete font code.
3821
3822 * w32font.c (font_matches_spec): Use csb bitfield from font signature
3823 to determine language support.
3824
3825 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
3826
3827 * sysdep.c (cfsetspeed): New fun extracted from the code.
3828 (cfmakeraw): Move before first use.
3829
3830 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
3831
3832 * sysdep.c (cfmakeraw): Provide fallback implementation.
3833 (serial_configure): Provide fallback implementation of cfsetspeed.
3834
3835 2008-06-20 Kenichi Handa <handa@m17n.org>
3836
3837 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
3838 the pattern.
3839
3840 * fontset.c (fontset_from_font): Copy font_spec before changing
3841 the elements.
3842
3843 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
3844
3845 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
3846
3847 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
3848 for explicit `font' parameters.
3849
3850 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
3851
3852 2008-06-19 Kenichi Handa <handa@m17n.org>
3853
3854 * frame.c: Include <ctype.h>.
3855 (x_set_font_backend): Allow spacing characters in the X resource
3856 for FontBackend.
3857
3858 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
3859
3860 * w32fns.c, xfns.c (Qfont_param): New var.
3861 (syms_of_w32fns): Initialize it.
3862 (x_default_font_parameter): Record explicit `font' into
3863 `font-parameter'.
3864
3865 2008-06-18 Kenichi Handa <handa@m17n.org>
3866
3867 * font.c (font_parse_xlfd): Fix previous change.
3868 (font_parse_fcname): Don't use :fc-unknown-spec.
3869 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
3870 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
3871 (font_add_log): Prepend the driver name to the resulting fonts.
3872
3873 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
3874 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
3875 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
3876
3877 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
3878 (QCembolden): New variables.
3879 (syms_of_xftfont): DEFSYM them.
3880 (xftfont_open): Call XftFontMatch. Don't trust the result of
3881 XftTextExtents8 if the pixel_size is less than 5.
3882
3883 2008-06-18 Andreas Schwab <schwab@suse.de>
3884
3885 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
3886 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
3887
3888 2008-06-18 Jason Rumney <jasonr@gnu.org>
3889
3890 * w32font.c (w32font_list, w32font_match): Add logging.
3891
3892 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
3893
3894 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
3895
3896 * font.c (font_parse_fcname): Store divider characters for
3897 unknown-spec list. For known key symbols, intern using correct
3898 symbol name.
3899
3900 2008-06-17 Kenichi Handa <handa@m17n.org>
3901
3902 * xfaces.c (realize_default_face): If the frame is not on window
3903 system, set the fontset of face to nil.
3904
3905 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
3906
3907 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
3908
3909 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
3910
3911 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
3912 (build_font_name_from_vector): Delete externs.
3913
3914 * xfaces.c (struct font_name): Don't declare.
3915
3916 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
3917
3918 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
3919
3920 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
3921
3922 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
3923
3924 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
3925
3926 * font.c (Ffont_spec): Fix usage in docstring.
3927 (Ffont_face_attributes): Doc fix.
3928
3929 2008-06-16 Andreas Schwab <schwab@suse.de>
3930
3931 * font.c (Ffont_face_attributes): Fix definition.
3932
3933 2008-06-16 Jason Rumney <jasonr@gnu.org>
3934
3935 * font.h (font_style_symbolic_from_value): Remove.
3936
3937 * font.c (font_style_symbolic_from_value): Remove.
3938 (font_style_symbolic): Revert to pre 2008-06-13 version.
3939
3940 * w32font.c (w32_to_fc_weight): New function.
3941 (w32font_full_name, logfont_to_fcname): Use it.
3942
3943 2008-06-16 Kenichi Handa <handa@m17n.org>
3944
3945 * font.c (font_check_object): Delete it.
3946 (font_clear_cache): Check if a font-object is alive.
3947 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
3948 font-object to nil.
3949 (font_close_object): Don't check FONT_CLOSE_OBJECT.
3950 (font_at): Don't call font_check_object.
3951 (Ffont_get): Return a symbol for :weight, :slant, and :width.
3952
3953 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
3954
3955 * puresize.h (BASE_PURESIZE): Increase to 1230000.
3956
3957 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
3958
3959 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
3960
3961 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
3962
3963 * font.c (font_parse_fcname): Only one decimal point.
3964 (font_unparse_fcname): Handle data in family and foundry indices
3965 as symbols, not strings.
3966 (font_unparse_gtkname, Ffont_face_attributes): New functions.
3967
3968 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
3969
3970 * font.h (font_unparse_gtkname): Add prototype.
3971
3972 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
3973
3974 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
3975
3976 2008-06-15 Andreas Schwab <schwab@suse.de>
3977
3978 * font.c (font_update_drivers): Fix crash when no drivers match.
3979
3980 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
3981
3982 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
3983 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
3984
3985 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
3986
3987 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
3988
3989 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
3990
3991 * process.c (Fserial_process_configure, Fprocess_send_eof):
3992 Use EQ to compare Lisp_Objects.
3993
3994 2008-06-13 Jason Rumney <jasonr@gnu.org>
3995
3996 * w32fns.c (Fw32_select_font): Remove old font API function.
3997
3998 * w32font.c (logfont_to_fcname): New function.
3999 (Fx_select_font): New font dialog function compatible with
4000 GTK/fontconfig version.
4001
4002 * font.c (font_style_symbolic_from_value): New function.
4003 (font_style_symbolic): Use it.
4004
4005 * font.h (font_style_symbolic_from_value): Declare new function.
4006
4007 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
4008
4009 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
4010 <font-width-table>: Fix typos in docstrings.
4011
4012 2008-06-13 Daniel Engeler <engeler@gmail.com>
4013
4014 These changes add serial port access.
4015 * process.c: Add HAVE_SERIAL.
4016 (Fdelete_process, Fprocess_status, Fset_process_buffer)
4017 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
4018 (list_processes_1, select_wrapper, Fstop_process)
4019 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
4020 (status_notify): Modify to handle serial processes.
4021 [HAVE_SERIAL] (Fserial_process_configure)
4022 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
4023 New functions.
4024 * process.h (struct Lisp_Process): Add `type'.
4025 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
4026 New functions.
4027 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
4028 serial ports.
4029 (serial_open, serial_configure) New functions.
4030 * w32.h: Add FILE_SERIAL.
4031 (struct _child_process): Add ovl_read, ovl_write.
4032
4033 2008-06-13 Kenichi Handa <handa@m17n.org>
4034
4035 * dispextern.h (enum lface_attribute_index): New member
4036 LFACE_FOUNDRY_INDEX.
4037
4038 * font.c (font_score): Delete arg alternate_families. Check only
4039 weight, slant, width, and size. Ignore the difference of alias
4040 style symbols.
4041 (font_sort_entites): Adjust for the above change. Reflect the
4042 order of font-driver to scores.
4043 (font_list_entities): Don't check alternate_familes here.
4044 (font_clear_prop): Handle foundry.
4045 (font_update_lface): Don't parse "foundry-family" form here.
4046 Handle FONT_FOUNDRY_INDEX.
4047 (font_find_for_lface): Likewise. Handle alternate families here.
4048 If registry is nil, try iso8859-1 and ascii-0.
4049 (font_open_for_lface): Pay attention to size in ENTITY.
4050 (font_open_by_name): Simplify by calling font_load_for_lface.
4051 (free_font_driver_list): Delete it.
4052 (font_update_drivers): Preserve the order of backends.
4053 (syms_of_font): Setting of sort_shift_bits adjusted for the change
4054 of font_score and font_sort_entites.
4055 (font_update_sort_order): Likewise.
4056
4057 * xfaces.c (LFACE_FOUNDRY): New macro.
4058 (check_lface_attrs): Check foundry.
4059 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
4060 (merge_face_vectors): Check foundry.
4061 (merge_face_ref): Likewise.
4062 (Finternal_set_lisp_face_attribute): Likewise.
4063 (x_update_menu_appearance): Likewise.
4064 (Finternal_get_lisp_face_attribute): Likewise.
4065 (lface_hash): Likewise.
4066 (lface_same_font_attributes_p): Likewise.
4067 (x_supports_face_attributes_p): Likewise.
4068 (tty_supports_face_attributes_p): Likewise.
4069 (Finternal_set_alternative_font_family_alist): Intern strings.
4070 (Finternal_set_alternative_font_registry_alist): Downcase strings.
4071 (realize_default_face): Set LFACE_FOUNDRY (lface).
4072
4073 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
4074 font-driver at first.
4075
4076 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
4077
4078 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
4079
4080 * lread.c (Fload): Use xfree, not free on saved_doc_string.
4081
4082 2008-06-12 Jim Meyering <meyering@redhat.com>
4083
4084 Make unexec_free handle NULL the same way free does.
4085 * unexmacosx.c (unexec_free): Ignore a NULL argument.
4086
4087 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
4088
4089 * character.h (CHAR_TO_BYTE_SAFE): New macro.
4090 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
4091 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
4092 (WEAK_ALIAS): Simplify.
4093 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
4094 when searching a unibyte buffer.
4095
4096 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
4097
4098 * xfns.c (Fx_select_font): Rename from x-font-dialog.
4099
4100 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
4101
4102 * w32font.c: Include ctype.h.
4103
4104 2008-06-11 Jason Rumney <jasonr@gnu.org>
4105
4106 * w32font.c (w32font_encode_char): Detect missing glyphs that are
4107 misreported as space.
4108 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
4109 as aliases for registry iso10646-1.
4110
4111 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4112
4113 * buffer.c (clone_per_buffer_values): Skip `name'.
4114
4115 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
4116
4117 * font.c (font_parse_fcname): Fix last change; accept decimal
4118 points in font size.
4119
4120 2008-06-10 Jason Rumney <jasonr@gnu.org>
4121
4122 * w32uniscribe.c (add_opentype_font_name_to_list):
4123 Skip non unicode fonts.
4124
4125 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
4126
4127 * xfns.c (Fx_font_dialog): New function.
4128
4129 * gtkutil.c (xg_dialog_response_cb): Rename from
4130 xg_file_response_callback.
4131 (pop_down_dialog): Rename from pop_down_file_dialog.
4132 (xg_get_file_name): Callers changed.
4133 (xg_get_font_name): New function.
4134
4135 * gtkutil.h (xg_get_font_name): Insert prototype.
4136
4137 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
4138
4139 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
4140 x_underline_minimum_display_offset.
4141 (syms_of_xdisp): Declare it here rather than in xterm.c.
4142 * dispextern.h (underline_minimum_offset): Declare it.
4143 * w32term.c (x_draw_glyph_string): Use it.
4144 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
4145 (syms_of_xterm): Don't declare it any more.
4146 (x_draw_glyph_string): Adjust to the new name.
4147
4148 2008-06-10 David De La Harpe Golden <david@harpegolden.net> (tiny change)
4149
4150 * xterm.c (x_underline_minimum_display_offset): New var.
4151 (x_draw_glyph_string): Use it.
4152 (syms_of_xterm): Declare it.
4153
4154 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
4155
4156 * font.c (font_parse_fcname): Accept GTK-style font names too.
4157
4158 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
4159
4160 * dired.c (file_name_completion): Don't return t if the match is exact
4161 but with different capitalization.
4162 * minibuf.c (Ftry_completion): Simplify.
4163
4164 * window.c (Vwindow_point_insertion_type): New var.
4165 (set_window_buffer): Use it.
4166 (syms_of_window): Init and export it to Lisp.
4167
4168 2008-06-10 Kenichi Handa <handa@m17n.org>
4169
4170 * font.h (font_intern_prop): Prototype adjusted.
4171
4172 * font.c (font_intern_prop): New arg force_symbol.
4173 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
4174 Adjust for the change of font_intern_prop.
4175
4176 * ftfont.c (ftfont_pattern_entity):
4177 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
4178 (w32_registry):
4179 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
4180 the change of font_intern_prop.
4181
4182 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
4183
4184 * w32menu.c (digest_single_submenu): Declare extern.
4185
4186 2008-06-09 Jason Rumney <jasonr@gnu.org>
4187
4188 * w32term.c (x_make_frame_visible): Use alternate restore flags.
4189
4190 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
4191 (parse_single_submenu): Remove.
4192 (digest_single_submenu): Remove.
4193 (syms_of_w32menu): Don't initialise variables that have moved
4194 to menu.c.
4195 (set_frame_menubar): Sync with version in xmenu.c.
4196 (w32_menu_show): Sync with xmenu_show in xmenu.c.
4197
4198 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
4199 Make static again.
4200
4201 2008-06-09 Jason Rumney <jasonr@gnu.org>
4202
4203 Changes to w32 files related to the move of common menu code
4204 to menu.c on 2008-06-08 by Chong Yidong.
4205
4206 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
4207 defs to w32gui.h.
4208 (single_keymap_panes, push_menu_item, push_menu_pane):
4209 Make globally visible.
4210
4211 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
4212 (local_free, malloc_widget_value, free_widget_value)
4213 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
4214 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
4215 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
4216 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
4217 (menu_items, menu_items_allocated, menu_items_used)
4218 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
4219 (init_menu_items, finish_menu_items, discard_menu_items)
4220 (grow_menu_items, push_submenu_start, push_submenu_end)
4221 (push_left_right_boundary, push_menu_pane, push_menu_item)
4222 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
4223 (free_menubar_widget_tree_value, parse_single_submenu)
4224 (update_submenu_strings): Remove functions.
4225 (xmalloc_widget_value): Remove and declare extern.
4226
4227 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
4228 (OBJ1): Build it.
4229
4230 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
4231 (local_heap, local_alloc, local_free, malloc_widget_value)
4232 (free_widget_value): Define here.
4233
4234 2008-06-09 Kenichi Handa <handa@m17n.org>
4235
4236 * font.h (Qascii_0): Extern it.
4237
4238 * font.c (Qascii_0): New variable.
4239 (syms_of_font): DEFSYM it.
4240 (font_open_by_name): If the registry "iso8859-1" fails, try also
4241 "ascii-0".
4242
4243 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
4244
4245 2008-06-08 Kenichi Handa <handa@m17n.org>
4246
4247 * .gdbinit (xfont): New command.
4248
4249 2008-06-08 Andreas Schwab <schwab@suse.de>
4250
4251 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
4252 * Makefile.in (menu.o): Update dependencies.
4253
4254 * Makefile.in (obj): Always add menu.o.
4255 * emacs.c (main): Always call syms_of_menu.
4256 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
4257
4258 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
4259
4260 * Makefile.in: Compile menu.c.
4261
4262 * lisp.h: Declare syms_of_menu.
4263
4264 * emacs.c (main): Call syms_of_menu.
4265
4266 * keyboard.h: Relocate platform-independent menu definitions from
4267 xmenu.c.
4268
4269 * menu.c: New file. Relocate platform-independent menu
4270 definitions from xmenu.c. Suggested by Adrian Robert.
4271
4272 * xmenu.c: Remove platform-independent menu definitions.
4273 (menu_items menu_items_inuse, menu_items_allocated)
4274 (menu_items_used, menu_items_n_panes)
4275 (menu_items_submenu_depth): Move to keyboard.h.
4276 (init_menu_items, finish_menu_items, unuse_menu_items)
4277 (discard_menu_items, restore_menu_items, save_menu_items)
4278 (grow_menu_items, push_submenu_start, push_submenu_end)
4279 (push_left_right_boundary, push_menu_pane, push_menu_item)
4280 (keymap_panes, single_keymap_panes, single_menu_item)
4281 (list_of_panes, list_of_items, find_and_call_menu_selection)
4282 (xmalloc_widget_value, free_menubar_widget_value_tree)
4283 (parse_single_submenu, digest_single_submenu)
4284 (update_submenu_strings): Move to menu.c.
4285
4286 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
4287
4288 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
4289
4290 2008-06-06 Miles Bader <miles@gnu.org>
4291
4292 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
4293 face, not frame default.
4294
4295 2008-06-05 Martin Rudalics <rudalics@gmx.at>
4296
4297 * window.c (pop_up_windows, pop_up_frames)
4298 (display_buffer_reuse_frames, Vpop_up_frame_function)
4299 (Vdisplay_buffer_function, Veven_window_heights)
4300 (Vspecial_display_buffer_names, Vspecial_display_regexps)
4301 (Vspecial_display_function, Vsame_window_buffer_names)
4302 (Vsame_window_regexps, split_height_threshold)
4303 (Vsplit_window_preferred_function): Move those vars to window.el.
4304 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
4305 (Fdisplay_buffer): Move those functions to window.el.
4306 (syms_of_window): Remove corresponding declarations.
4307 (display_buffer): New function.
4308 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
4309 * dispnew.c (Flast_nonminibuf_frame): New function.
4310 * buffer.c (Fpop_to_buffer): Move to window.el.
4311
4312 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4313
4314 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
4315
4316 2008-06-05 Kenichi Handa <handa@m17n.org>
4317
4318 * coding.c (detect_coding): Fix previous change.
4319 (detect_coding_system): Likewise.
4320
4321 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4322
4323 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
4324
4325 * keymap.c (Vminibuffer_local_filename_must_match_map):
4326 Rename from Vminibuffer_local_must_match_filename_map.
4327 (syms_of_keymap):
4328 * minibuf.c (Fcompleting_read): Adjust accordingly.
4329 * commands.h: Rename declaration as well.
4330
4331 2008-06-05 Kenichi Handa <handa@m17n.org>
4332
4333 * font.c (Ffont_spec): Don't use font_parse_family_registry for
4334 family name.
4335 (Ffont_put): Likewise.
4336
4337 * fontset.c (fontset_find_font): Call font_open_for_lface with the
4338 current font-spec.
4339
4340 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
4341 is unspecified.
4342
4343 * xfaces.c (realize_x_face): If the font-related face attributes
4344 are the same as those of default face, realize a new fontset from
4345 default->fontset.
4346 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
4347
4348 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
4349
4350 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
4351 (move_it_in_display_line): New wrapper.
4352
4353 * window.c (window_scroll_pixel_based_preserve_x)
4354 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
4355 (window_scroll_pixel_based, window_scroll_line_based):
4356 Use them to preserve column positions.
4357 (syms_of_window): Initialize them.
4358
4359 * indent.c (Fvertical_motion): Extend first arg to allow passing an
4360 (HPOS . VPOS) pair.
4361
4362 * dispextern.h (move_it_in_display_line): Declare.
4363
4364 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
4365
4366 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
4367 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
4368 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
4369
4370 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
4371
4372 * window.c (Fset_window_parameter): Doc fix.
4373 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
4374
4375 2008-06-04 Joakim Verona <joakim@verona.se>
4376
4377 * window.h (struct window): Add new member window_parameters.
4378
4379 * window.c (Fwindow_parameters, Fwindow_parameter)
4380 (Fset_window_parameter): New defuns.
4381 (syms_of_window): Defsubr the new defuns.
4382 (make_window): Initialize window_parameters to nil.
4383
4384 2008-06-04 John Paul Wallington <jpw@pobox.com>
4385
4386 * eval.c (Fdefmacro): Doc fix.
4387
4388 2008-06-04 Kenichi Handa <handa@m17n.org>
4389
4390 * coding.c (detect_coding): Fix handling of coding->head_ascii.
4391 Be sure to call setup_coding_system when we find a proper coding system.
4392 (detect_coding_system): Fix handling of coding->head_ascii.
4393
4394 2008-06-03 Andreas Schwab <schwab@suse.de>
4395
4396 * font.c (font_prop_validate_spacing): Fix last change.
4397
4398 2008-06-03 Kenichi Handa <handa@m17n.org>
4399
4400 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
4401 (font_parse_fcname): Fix handling of unknown key.
4402
4403 * xfont.c (xfont_list): Try an alias.
4404
4405 * charset.c (char_charset): Return NULL if the arg charset_list is
4406 specified and C doesn't belong to any of them.
4407
4408 2008-06-02 Chip Coldwell <coldwell@redhat.com>
4409
4410 * font.c (font_pixel_size): Don't take cdr of an integer.
4411
4412 2008-06-02 Jim Meyering <meyering@redhat.com>
4413
4414 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
4415 * alloc.c (xfree): Return right away for a NULL arg.
4416 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
4417 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
4418 * mac.c (create_apple_event_from_event_ref): Likewise.
4419 (create_apple_event_from_drag_ref, cfstring_create_normalized):
4420 Likewise.
4421 * doprnt.c (doprnt1): Likewise.
4422 * frame.c (frame): Likewise.
4423 * keyboard.c (wipe_kboard): Likewise.
4424 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
4425 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
4426 * term.c (tty_default_color_capabilities, maybe_fatal)
4427 (delete_tty): Likewise.
4428 * w16select.c (string): Likewise.
4429 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
4430 * w32bdf.c (w32_free_bdf_font): Likewise.
4431 * w32fns.c (w32_unload_font): Likewise.
4432 * w32font.c (w32font_close): Likewise.
4433 * window.c (size_window): Likewise.
4434 * xselect.c (receive_incremental_selection): Likewise.
4435 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
4436 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
4437 * w32.c (stat): Likewise.
4438
4439 Remove useless if-before-free tests.
4440 * editfns.c (Fset_time_zone_rule): Likewise.
4441 * lread.c (nosuffix): Likewise.
4442 * ralloc.c (get_bloc): Likewise.
4443 * regex.c (reg_free): Likewise.
4444 * xftfont.c (xftfont_open, xftfont_close): Likewise.
4445 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
4446 * xsmfns.c (smc_save_yourself_CB): Likewise.
4447
4448 2008-06-02 Kenichi Handa <handa@m17n.org>
4449
4450 * font.c (font_find_for_lface): Handle float font size.
4451 (font_open_for_lface): Likewise.
4452
4453 * xfaces.c (x_supports_face_attributes_p): Check face->font before
4454 comparing the properties.
4455
4456 2008-06-01 Jason Rumney <jasonr@gnu.org>
4457
4458 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
4459 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
4460 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
4461 Don't add empty script list.
4462 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
4463
4464 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
4465
4466 * Makefile.in (dot, dotdot): Remove, update users.
4467 ".." has been used elsewhere in the file for a long time.
4468 (LIBXT_STATIC): Remove conditional based on unused variable.
4469
4470 2008-06-01 Miles Bader <miles@gnu.org>
4471
4472 * xfaces.c (Vface_remapping_alist): New variable.
4473 (syms_of_xfaces): Initialize it.
4474 (enum named_merge_point_kind): New type.
4475 (struct named_merge_point): Add `named_merge_point_kind' field.
4476 (push_named_merge_point): Make cycle detection respect different
4477 named-merge-point kinds.
4478 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
4479 Remove face-name alias resolution.
4480 (lface_from_face_name): New definition using
4481 `lface_from_face_name_no_resolve'.
4482 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
4483 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
4484 (get_lface_attributes): New definition that layers face-remapping on
4485 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
4486 (lookup_basic_face): New function.
4487 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
4488 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
4489 `get_lface_attributes'.
4490 (face_at_buffer_position): Use `lookup_basic_face' to lookup
4491 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
4492 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
4493
4494 * xdisp.c (init_iterator): Pass base_face_id through
4495 `lookup_basic_face' when we actually use it as a face-id.
4496 (handle_single_display_prop): Use `lookup_basic_face' to lookup
4497 DEFAULT_FACE_ID.
4498
4499 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
4500 lookup the initial face-id.
4501
4502 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
4503
4504 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
4505
4506 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
4507 (Fremove_text_properties): Fix typos in docstrings.
4508
4509 2008-05-31 Kenichi Handa <handa@m17n.org>
4510
4511 * font.c (font_list_entities): Fix the car part of data to be
4512 stored in the cache.
4513
4514 * ftfont.c (ftfont_font_format): Don't use strcasestr.
4515
4516 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4517
4518 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
4519 Add a `test' argument so another predicate than `equal' can be used.
4520 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
4521 (map_char_table): Remove unused vars `c' and `i'.
4522 * lisp.h (Foptimize_char_table): Adjust declaration.
4523 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
4524
4525 2008-05-30 Kenichi Handa <handa@m17n.org>
4526
4527 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
4528 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
4529 defined.
4530
4531 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
4532
4533 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
4534 (Fmake_variable_frame_local): Disallow mixing buffer-local and
4535 frame-local settings for the same variable.
4536
4537 2008-05-30 Kenichi Handa <handa@m17n.org>
4538
4539 * fontset.c (Ffont_info): Move to font.c.
4540 (syms_of_fontset): Delete defsubr of Sfont_info.
4541
4542 * font.c (font_style_to_value, font_score): Delete casting of the
4543 args to xstcasecmp.
4544 (register_font_driver): Increment num_font_drivers only when
4545 registering the driver globally.
4546 (Ffont_info): Move from fontset.c. Handle a font object too.
4547 (syms_of_font): Defsubr Sfont_info.
4548
4549 2008-05-29 Kenichi Handa <handa@m17n.org>
4550
4551 * coding.h (enum define_coding_utf8_arg_index): New enum.
4552 (enum coding_attr_index): Change coding_attr_utf_16_bom to
4553 coding_attr_utf_bom.
4554 (enum utf_bom_type): Rename from utf_16_bom_type.
4555 (struct utf_16_spec): Adjust for the above change.
4556 (struct coding_system): Add utf_8_bom in `spec' union.
4557
4558 * coding.c (CODING_UTF_8_BOM): New macro.
4559 (enum coding_category): Delete coding_category_utf_8, add
4560 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
4561 coding_category_utf_8_sig.
4562 (CATEGORY_MASK_UTF_8): Delete it.
4563 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
4564 (CATEGORY_MASK_UTF_8_SIG): New macros.
4565 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
4566 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
4567 CATEGORY_MASK_UTF_8_SIG.
4568 (CATEGORY_MASK_UTF_8): New macro.
4569 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
4570 (detect_coding_utf_8): Check BOM.
4571 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
4572 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
4573 (encode_coding_utf_16): Likewise.
4574 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
4575 (detect_coding, detect_coding_system): Handle utf-8-auto.
4576 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
4577 (syms_of_coding): Fix setting up of Vcoding_category_table.
4578
4579 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
4580
4581 * process.c (Faccept_process_output): If `millisec' is non-nil,
4582 `seconds' default to 0.
4583 (wait_reading_process_output): Also return non-nil if we read output
4584 from a non-running process.
4585
4586 2008-05-29 Jason Rumney <jasonr@gnu.org>
4587
4588 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
4589 `raster' specified.
4590 (add_font_entity_to_list): Allow non-opentype truetype fonts back
4591 in the uniscribe backend, but disallow any font that has no
4592 unicode subrange support.
4593
4594 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
4595
4596 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
4597 Fix typos in docstrings.
4598
4599 2008-05-29 Kenichi Handa <handa@m17n.org>
4600
4601 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
4602 (Fx_family_fonts): Set frame correctly.
4603
4604 2008-05-28 Jason Rumney <jasonr@gnu.org>
4605
4606 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
4607
4608 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
4609
4610 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
4611 calling build_annotations.
4612
4613 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
4614
4615 * coding.c (Fdecode_coding_region, Fencode_coding_region)
4616 (Fencode_coding_string):
4617 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
4618 <latin-extra-code-table>: Fix typos in docstrings.
4619 (syms_of_coding) <coding-system-alist>: Doc fix.
4620 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
4621
4622 2008-05-28 Kenichi Handa <handa@m17n.org>
4623
4624 * fontset.c (Ffont_info): Don't call font_close_object.
4625
4626 * font.c (font_parse_family_registry): Use Ffont_put to validate
4627 foundry and family.
4628 (font_delete_unmatched): Don't check spacing.
4629 (font_list_entities): Add spacing to the spec to list fonts.
4630
4631 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
4632 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
4633
4634 * coding.c (encode_coding_raw_text): Fix previous change.
4635 (encode_coding_object): When the dst_object is a buffer and is
4636 different from src_object, move gap to PT.
4637
4638 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
4639
4640 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
4641
4642 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
4643
4644 * coding.c (encode_coding_raw_text): Set coding->produced_char for
4645 all branches. Compute it differently.
4646
4647 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
4648
4649 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
4650
4651 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
4652 into "else if () ... else ...".
4653
4654 2008-05-27 Jason Rumney <jasonr@gnu.org>
4655
4656 * w32font.c (w32font_open_internal): Determine if glyph indices
4657 are likely to work here.
4658
4659 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
4660
4661 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
4662 draw overlap glyphs with appropriate highlighting.
4663
4664 2008-05-27 Kenichi Handa <handa@m17n.org>
4665
4666 * xfont.c (xfont_open): Fix calculation of font->average_width.
4667
4668 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
4669
4670 * casefiddle.c (casify_object): Try to guess better whether the
4671 argument is a byte or a char.
4672
4673 2008-05-26 Andreas Schwab <schwab@suse.de>
4674
4675 * xselect.c (x_reply_selection_request): Properly handle format == 32.
4676 Always send multiples of format size.
4677
4678 * xterm.c (x_set_frame_alpha): Fix type mismatch.
4679
4680 2008-05-26 Jason Rumney <jasonr@gnu.org>
4681
4682 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
4683 (compute_metrics): Don't set failure if we just cleared the cache.
4684 (w32_weight_table): Remove unused variable.
4685 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
4686 backwards compatibility.
4687
4688 2008-05-25 Kenichi Handa <handa@m17n.org>
4689
4690 * w32term.c (x_draw_glyph_string):
4691 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
4692
4693 * xfaces.c: Delete unused function prototypes.
4694 (xstrlwr, font_frame): Delete them.
4695 (clear_face_cache): Delete unused variable.
4696
4697 * xftfont.c (xftfont_open): Delete unused variable.
4698 If underline_thickness is not 1, adjust underline_position.
4699
4700 * ftxfont.c (ftxfont_open): Delete unused variable.
4701
4702 * fontset.c (face_for_char): Optimize for the case of no charset
4703 property.
4704
4705 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
4706 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
4707 (otf_open, font_otf_capability, generate_otf_features)
4708 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
4709 Comment out by surrounding "#if 0" and "#endif" for the moment.
4710 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
4711 (syms_of_font): Codes for accessing above commented out.
4712
4713 2008-05-24 Eli Zaretskii <eliz@gnu.org>
4714
4715 * w32proc.c: Include dispextern.h.
4716
4717 * w32.c: Include dispextern.h.
4718
4719 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
4720
4721 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
4722 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
4723 Fix typos in docstrings.
4724
4725 2008-05-23 Jason Rumney <jasonr@gnu.org>
4726
4727 * xsmfns.c: Remove includes that are already included by config.h.
4728
4729 2008-05-23 Kenichi Handa <handa@m17n.org>
4730
4731 * charset.c (Qemacs, charset_emacs): New variables.
4732 (char_charset): Fix for non-Unicode characters.
4733 (syms_of_charset): Define charset_emacs.
4734
4735 * w32term.c (x_draw_glyph_string): Be sure to update
4736 s->underline_thickness and s->underline_position. Be sure to draw
4737 underline within the current line area.
4738
4739 * xterm.c (x_draw_glyph_string): Be sure to update
4740 s->underline_thickness and s->underline_position. Be sure to draw
4741 underline within the current line area.
4742
4743 * fontset.c: Delete unused variables and add casting for char *
4744 throughout the file.
4745 (fontset_font): Try the fallback fonts of the current fontset
4746 before consulting the default fontset.
4747
4748 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
4749
4750 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
4751
4752 2008-05-22 Jason Rumney <jasonr@gnu.org>
4753
4754 * font.c: Don't include strings.h.
4755
4756 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
4757
4758 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
4759 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
4760 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
4761 to call xstrcasecmp.
4762
4763 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
4764
4765 * fontset.c (fs_query_fontset): Use xstrcasecmp.
4766
4767 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
4768
4769 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
4770
4771 2008-05-22 Kenichi Handa <handa@m17n.org>
4772
4773 * puresize.h (BASE_PURESIZE): Increase to 1220000.
4774
4775 * font.c (font_prop_validate_style): Adjust for the format
4776 change of font_style_table.
4777
4778 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
4779 two args.
4780
4781 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
4782 two args.
4783
4784 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
4785
4786 * minibuf.c (keys_of_minibuf): Delete.
4787 * lisp.h (keys_of_minibuf): Delete.
4788 * emacs.c (main): Don't call keys_of_minibuf.
4789
4790 2008-05-22 Kenichi Handa <handa@m17n.org>
4791
4792 * ftfont.c (ftfont_resolve_generic_family): Rename from
4793 ftfont_list_generic_family. Return a single family for each
4794 generic family.
4795 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
4796 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
4797 Call font_add_log.
4798 (ftfont_match): Call font_add_log.
4799
4800 * font.h (Ffont_xlfd_name): EXFUN adjusted.
4801 (FONT_DEBUG): Define it.
4802 (font_add_log): Extern it.
4803 (font_assert): Rename from xassert.
4804
4805 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
4806 (xfont_list_family): Call font_add_log.
4807 (xfont_match): Likewise.
4808 (memq_no_quit): Delete.
4809
4810 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
4811 call of Ffont_xlfd_name.
4812
4813 * xfaces.c (struct table_entry, slant_table, weight_table)
4814 (swidth_table): Move to font.c.
4815
4816 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
4817 xassert are changed to font_assert. Delete many unused variables.
4818 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
4819 New variables.
4820 (struct table_entry): Move from xfaces.c and modified.
4821 (weight_table, slant_table, width_table): Move from xfaces.c and
4822 contents adjusted for the change of struct table_entry.
4823 (font_style_to_value, font_style_symbolic): Adjust for the
4824 format change of font_style_table.
4825 (font_parse_family_registry): Don't overwrite existing foundry and
4826 family of font_spec.
4827 (font_score): Fix calculation of diff for sizes.
4828 (font_sort_entites): Call font_add_log.
4829 (font_delete_unmatched): Return a newly created list.
4830 (font_list_entities): Fix previous change. Call font_add_log.
4831 (font_matching_entity, font_open_entity, font_close_entity):
4832 Call font_add_log.
4833 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
4834 (Finternal_set_font_style_table): Delete.
4835 (BUILD_STYLE_TABLE): New macro.
4836 (build_style_table): New function.
4837 (Vfont_log, font_log_env_checked): New variables.
4838 (font_add_log): New function.
4839 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
4840 Declare Lisp variables "font-weight-table", "font-slant-table",
4841 "font-width-table", and "font-log". Initialize font_style_table.
4842
4843 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
4844
4845 * xterm.c (x_set_frame_alpha): Move declarations before statements.
4846
4847 2008-05-21 Seiji Zenitani <zenitani@mac.com>
4848 Ryo Yoshitake <ryo@shiftmode.net>
4849
4850 * frame.c (Qalpha): Add a new frame parameter `alpha'.
4851 (Vframe_alpha_lower_limit): New variable.
4852 (x_set_alpha): New function.
4853
4854 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
4855
4856 * xfns.c (x-create-frame, Qalpha):
4857 Initialize the frame parameter `alpha'.
4858 * xterm.c (OPAQUE, OPACITY): New.
4859 (x_set_frame_alpha): New function.
4860 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
4861
4862 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
4863 * w32fns.c (w32_frame_parm_handlers): Likewise.
4864
4865 2008-05-20 Jason Rumney <jasonr@gnu.org>
4866
4867 * w32font.c (add_font_entity_to_list): Don't add non-opentype
4868 truetype fonts to opentype list.
4869
4870 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
4871
4872 * fontset.c (Ffontset_info): Doc fix.
4873 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
4874 <ignore-relative-composition>: Fix typos in docstrings.
4875
4876 * font.c (syms-of-font) <font-encoding-alist>:
4877 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
4878 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
4879 (Ffont_otf_alternates): Doc fixes.
4880
4881 2008-05-20 Kenichi Handa <handa@m17n.org>
4882
4883 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
4884 font.h through out the file.
4885 (FONT_DRIVERS): Rename from FONTOBJ.
4886 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
4887 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
4888
4889 * emacs.c (main): Call syms_of_font unconditionally.
4890
4891 * font.h (find_font_encoding): Extern it.
4892
4893 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
4894 fontset.c.
4895 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
4896 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
4897 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
4898 only when HAVE_WINDOW_SYSTEM is defined.
4899 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
4900 when HAVE_WINDOW_SYSTEM is defined.
4901
4902 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
4903 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
4904
4905 * xfaces.c: Include font.h unconditionally.
4906 (merge_face_ref, merge_face_vectors)
4907 (Finternal_set_lisp_face_attribute): Cancel the previous change.
4908
4909 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
4910
4911 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
4912 indirect_variable.
4913 * eval.c (lisp_indirect_variable): New fun.
4914 (Fuser_variable_p): Use it.
4915
4916 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
4917
4918 * lisp.h (indirect_variable):
4919 * data.c (indirect_variable, let_shadows_buffer_binding_p):
4920 Use Lisp_Symbol pointers rather than Lisp_Object.
4921 Adjust callers.
4922 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
4923 To this end, change calling-convention.
4924
4925 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
4926 if some non-hidden buffers are selected by string&pred.
4927
4928 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
4929
4930 * process.c (wait_reading_process_output): Always check status
4931 when in batch mode.
4932
4933 2008-05-19 Kenichi Handa <handa@m17n.org>
4934
4935 * font.c (font_list_entities): Fix handling of cache.
4936 (font_matching_entity): Likewise.
4937
4938 * ftfont.c (cs_iso8859_1): Delete.
4939 (ft_face_cache): New variable.
4940 (struct ftfont_info): New member fc_charset_idx.
4941 (ftfont_build_basic_charsets): Delete.
4942 (fc_charset_table): New variable.
4943 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
4944 . FC_CHARSET_IDX) as :font-entity property in the font entity.
4945 Callers changed.
4946 (ftfont_lookup_cache, ftfont_get_charset): New functions.
4947 (ftfont_spec_pattern): New argument fc_charset_idx.
4948 Check registry more rigidly. Change callers.
4949 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
4950 change of :font-entity property of the font.
4951
4952 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
4953 property of the font.
4954
4955 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
4956
4957 * coding.c (Fcoding_system_p): Rename argument to match docstring.
4958 (Funencodable_char_position, Fcheck_coding_systems_region)
4959 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
4960 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
4961 (Ffind_operation_coding_system, Fset_coding_system_priority)
4962 (Fcoding_system_eol_type): Doc fixes.
4963
4964 2008-05-17 Glenn Morris <rgm@gnu.org>
4965
4966 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
4967
4968 2008-05-16 Eli Zaretskii <eliz@gnu.org>
4969
4970 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
4971 and st_gid.
4972
4973 * frame.c (Fdelete_frame): Don't call font_update_drivers if
4974 HAVE_WINDOW_SYSTEM is not defined.
4975
4976 * xfaces.c (merge_face_ref, merge_face_vectors)
4977 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
4978 HAVE_WINDOW_SYSTEM is defined.
4979 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
4980
4981 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
4982
4983 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
4984
4985 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4986
4987 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
4988
4989 2008-05-15 Kenichi Handa <handa@m17n.org>
4990
4991 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
4992 preference.
4993
4994 2008-05-15 Glenn Morris <rgm@gnu.org>
4995
4996 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
4997
4998 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
4999
5000 * fns.c (init_fns): Don't initialize weak_hash_tables here.
5001 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
5002
5003 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
5004
5005 2008-05-15 Kenichi Handa <handa@m17n.org>
5006
5007 * ftfont.c (ftfont_list): Downcase family name to check generic
5008 families.
5009
5010 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
5011 font-spec for QCfont value.
5012
5013 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
5014 buffer. Check the return value of it.
5015
5016 2008-05-14 Jason Rumney <jasonr@gnu.org>
5017
5018 * w32term.c (w32_get_glyph_overhangs): Remove.
5019 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
5020
5021 2008-05-14 Kenichi Handa <handa@m17n.org>
5022
5023 * font.c (font_prop_validate): Make nil a valid value.
5024 (font_clear_cache): Check if the cached vector of entities is nil
5025 or not.
5026
5027 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5028
5029 * emacs.c (main_thread): Conditionalize on
5030 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
5031 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
5032
5033 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
5034 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
5035 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
5036
5037 2008-05-14 Kenichi Handa <handa@m17n.org>
5038
5039 * coding.c (detect_coding_iso_2022): Ignore a coding category that
5040 has no corresponding coding system.
5041
5042 2008-05-14 Jason Rumney <jasonr@gnu.org>
5043
5044 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
5045
5046 * w32font.h (w32font_open_internal): Update declaration.
5047
5048 * w32font.c (w32font_open_internal): Change last argument from
5049 w32font_info struct to font object. Fill in font object from
5050 font_entity. Get Outline metrics if possible. Use them to
5051 calculate underline position and thickness. Use xlfd name as name
5052 property. Don't set codepage.
5053 (w32font_open): Pass font_object to w32font_open_internal. Don't
5054 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
5055 (w32font_draw): Use s->font.
5056 (clear_cached_metrics): Don't clear non-existent blocks.
5057
5058 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
5059 font was not found.
5060 (x_draw_glyph_string): Use underline position and thickness from font.
5061
5062 * w32uniscribe.c (uniscribe_open): Pass font_object to
5063 w32font_open_internal.
5064
5065 2008-05-14 Kenichi Handa <handa@m17n.org>
5066
5067 These changes are to delete all legacy font-handling codes, and
5068 make Emacs use only font-backends.
5069
5070 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
5071 (frame.o, image.o, print.o): Depend on $(FONTSRC).
5072
5073 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
5074
5075 * charset.h (Vcharset_non_preferred_head)
5076 (Vcurrent_iso639_language): Extern them.
5077
5078 * charset.c (Vcharset_non_preferred_head): New variable.
5079 (Vcurrent_iso639_language): New variable.
5080 (syms_of_charset): Declare it as a Lisp variable.
5081 (char_charset): Don't check non preferred charsets. As a last
5082 resort, return charset_unicode.
5083 (Fset_charset_priority): Update Vcharset_non_preferred_head.
5084
5085 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
5086 conditionals. Don't check enable_font_backend. Delete all codes
5087 used only when USE_FONT_BACKEND is not defined.
5088
5089 * dispextern.h (struct glyph_string): Change type of `font' to
5090 `struct font *'.
5091 (struct glyph_string): New member underline_position and
5092 underline_thickness.
5093 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
5094 (struct face): Change type of `font' to `struct font *'. Remove
5095 members `font_name', `font_info_id'.
5096 (per_char_metric, encode_char): Delete externs.
5097 (calc_pixel_width_or_height): Adjust the prototype.
5098
5099 * emacs.c (enable_font_backend): Delete extern.
5100 (main): Don't set enable_font_backend. Don't check the command
5101 line argument "-disable-font-backend".
5102
5103 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
5104 (enum font_property_index): New members FONT_DPI_INDEX,
5105 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
5106 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
5107 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
5108 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
5109 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
5110 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
5111 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
5112 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
5113 (struct font_spec, struct font_entity): New structs.
5114 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
5115 (struct font): Many members from old "struct font_info" moved to
5116 here. Members font and entity deleted.
5117 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
5118 the new font-related objects.
5119 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
5120 (CHECK_FONT_GET_OBJECT): Likewise.
5121 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
5122 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
5123 (struct font_driver): New members case_sensitive anc check. Type
5124 of the member list and open changed.
5125 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
5126 (font_symbolic_width, font_find_object, font_get_spec)
5127 (font_set_lface_from_name): Delete extern.
5128 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
5129
5130 * font.c: Include <strings.h>.
5131 (enable_font_backend): Delete it.
5132 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
5133 (CHECK_VALIDATE_FONT_SPEC): Delete it.
5134 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
5135 (null_string): Delete it.
5136 (null_vector): Make it static.
5137 (font_family_alist): Delete it.
5138 (Qnormal): Extern it.
5139 (QCextra, QClanguage): Delete it.
5140 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
5141 (font_make_spec, font_make_entity, font_make_object)
5142 (font_intern_prop): Renamed from intern_downcase. Don't downcase
5143 the string. Callers changed.
5144 (font_pixel_size): Adjusted for the format change of font-related
5145 objects.
5146 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
5147 (font_style_to_value, font_style_symbolic): New function.
5148 (build_font_family_alist): Delete it.
5149 (font_registry_charsets): Use Fassoc_string instead of
5150 assq_no_quit.
5151 (font_prop_validate_symbol): Don't return null_string.
5152 (font_prop_validate_style): Adjusted for the change of
5153 style-related values in a font vector.
5154 (font_property_table): Delete entries for QClanguage and
5155 QCantialias, add entries for QCavgwidth.
5156 (get_font_prop_index): Delete the 2nd argument FROM.
5157 (font_prop_validate): Arguments changed.
5158 (font_put_extra): Adjusted for the change of font-related objects.
5159 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
5160 (font_parse_fcname, font_unparse_fcname)
5161 (font_prepare_composition): Likewise.
5162 (font_parse_family_registry): Renamed from font_merge_old_spec.
5163 (otf_open): Delete the 1st arg entity.
5164 (font_otf_capability): Adjusted for the above change.
5165 (font_score): New arg alternate_families. Adjusted for the change
5166 of font-related objects.
5167 (font_sort_entites): New arg best_only.
5168 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
5169 Delete them.
5170 (font_match_p): Check alternate families.
5171 (font_find_object): Delete it.
5172 (font_check_object): New function.
5173 (font_clear_cache): Adjusted for the change of font-related objects.
5174 (font_delete_unmatched): New arg.
5175 (font_list_entities): Call font_driver->list with a spec that
5176 doesn't specify style-related properties.
5177 (font_matching_entity): Arguments changed. Caller changed.
5178 (font_open_entity): Adjusted for the change of font-related objects.
5179 (font_close_object, font_has_char, font_encode_char)
5180 (font_get_name, font_get_spec): Likewise.
5181 (font_spec_from_name, font_clear_prop, font_update_lface):
5182 New functions.
5183 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
5184 (font_prepare_for_face, font_done_for_face, font_open_by_name)
5185 (font_at): Adjusted for the change of font-related objects.
5186 (font_range): New function.
5187 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
5188 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
5189 (Fcopy_font_spec, Fmerge_font_spec): New function.
5190 (Ffont_family_list): Renamed from list-families.
5191 (Finternal_set_font_style_table): Arguments changed.
5192 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
5193 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
5194 change of font-related objects.
5195 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
5196
5197 * fontset.h (struct font_info): Delete it. Most members go to
5198 struct font.
5199 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
5200 (enum FONT_SPEC_INDEX): Delete it.
5201 (font_info, list_fonts_func, load_font_func, query_font_func)
5202 (set_frame_fontset_func, find_ccl_program_func)
5203 (get_font_repertory_func, new_fontset_from_font_name): Delete
5204 externs.
5205 (fontset_from_font_name): Extern it.
5206 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
5207 (FONT_INFO_FROM_FACE): Deleted.
5208 (face_for_font): Adjust prototype.
5209
5210 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
5211 conditionals. Don't check enable_font_backend. Delete all codes
5212 used only when USE_FONT_BACKEND is not defined.
5213 (get_font_info_func, list_font_func, load_font_func)
5214 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
5215 (get_font_repertory_func): Delete them.
5216 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
5217 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
5218 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
5219 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
5220 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
5221 (fontset_compare_rfontdef): New function.
5222 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
5223 rfont-defs by qsort. Adjusted for the change of font-group vector.
5224 (load_font_get_repertory): Deleted.
5225 (fontset_find_font): Use new macros to ref/set elements of
5226 font-def and rfont-def.
5227 (fontset_font): Fix the timing of remembering that no font for C.
5228 (free_face_fontset): Do nothing if the face has no fontset.
5229 (face_suitable_for_char_p): Use new macros to ref/set elements of
5230 rfont-def.
5231 (face_for_char): Likewise. Call face_for_char with font_object.
5232 (fs_load_font): Delete. Delete #pragma surrounding it.
5233 (fs_query_fontset): Use strcasecmp instead of strcmp.
5234 (generate_ascii_font_name): Adjusted for the format change of
5235 font-spec.
5236 (Fset_fontset_font): Likewise. Use new macros to set elements of
5237 font-def.
5238 (Fnew_fontset): Use font_unparse_xlfd to generate
5239 FONTSET_ASCII (fontset).
5240 (new_fontset_from_font_name): Deleted.
5241 (fontset_from_font): Renamed from new_fontset_from_font. Check if
5242 a fontset is already created for the font. FIx updating of
5243 Vfontset_alias_alist.
5244 (fontset_ascii_font): Deleted.
5245 (Ffont_info): Adjusted for the format change of font-spec.
5246 (Finternal_char_font): Likewise.
5247 (Ffontset_info): Likewise.
5248 (syms_of_fontset): Don't check load_font_func.
5249
5250 * fns.c (internal_equal): Handle PREV_FONT.
5251
5252 * frame.h: Delete USE_FONT_BACKEND conditional.
5253
5254 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
5255 conditionals. Don't check enable_font_backend. Delete all codes
5256 used only when USE_FONT_BACKEND is not defined.
5257 (x_set_font): Call x_new_font, not x_new_fontset2.
5258 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
5259 already set for the frame.
5260
5261 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
5262 a font-entity by font_make_entity. Use font_intern_prop instead
5263 of intern_downcase. Use FONT_SET_STYLE to set a style-related
5264 font property. If a font is scalable, set avgwidth property to 0.
5265 Set font-entity property by font_put_extra.
5266 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
5267 (ffont_driver): Adjusted for the change of struct font_driver.
5268 (ftfont_spec_pattern): New function.
5269 (ftfont_list): Return a list, not vector.
5270 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
5271 (ftfont_list_family): Don't downcase names.
5272 (ftfont_free_entity): Deleted.
5273 (ftfont_open): Return a font-object. Adjusted for the change of
5274 struct font. Get underline_thickness and underline_position from
5275 font property. Don't update dpyinfo->smallest_font_height and
5276 dpyinfo->smallest_char_width.
5277 (ftfont_close): Don't free `struct font'.
5278 (ftfont_has_char): Adjusted for the format change of font-entity.
5279 (ftfont_encode_char, ftfont_text_extents): Likewise.
5280
5281 * ftxfont.c (ftxfont_list): Return a list, not vector.
5282 (ftxfont_open): Return a font-object. Adjusted for the change of
5283 struct font. Get underline_thickness and underline_position from
5284 font property. Don't update dpyinfo->smallest_font_height and
5285 dpyinfo->smallest_char_width.
5286 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
5287 (ftxfont_draw): Adjusted for the change of struct font.
5288
5289 * image.c (image_ascent): Don't include "charset.h". Include
5290 "character.h" and "font.h".
5291
5292 * lisp.h (enum pvec_type): New member PREV_FONT.
5293 (Fassoc_string): EXFUN it.
5294
5295 * print.c: Include font.h.
5296 (print_object): Handle font-related objects.
5297
5298 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
5299 conditionals. Don't check enable_font_backend. Delete all codes
5300 used only when USE_FONT_BACKEND is not defined.
5301 (handle_auto_composed_prop): Do nothing if it->f is not on a
5302 window system. Check how many following characters can be
5303 displayed by the same font.
5304 (calc_pixel_width_or_height): Type of the 4th arg is changed to
5305 'struct font *'.
5306 (get_char_face_and_encoding): Assign the whole encoding task to
5307 the `encode-char' method of a font driver.
5308 (fill_composite_glyph_string): Adjusted for the change of `struct
5309 face' and `struct glyph_string'.
5310 (fill_glyph_string): Likewise.
5311 (get_per_char_metric): Arguments changed.
5312 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
5313 and `struct glyph_string'.
5314 (produce_stretch_glyph, calc_line_height_property)
5315 (x_produce_glyphs): Likewise.
5316
5317 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
5318 conditionals. Don't check enable_font_backend. Delete all codes
5319 used only when USE_FONT_BACKEND is not defined. Use
5320 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
5321 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
5322 (Qp): Extern them.
5323 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
5324 Deleted.
5325 (struct font_name): Deleted.
5326 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
5327 (compare_fonts_by_sort_order): New function.
5328 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
5329 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
5330 Deleted.
5331 (Fx_family_fonts): Use font_list_entities, and sort fonts by
5332 compare_fonts_by_sort_order.
5333 (Fx_font_family_list): Call Ffont_family_list.
5334 (face_numeric_value, face_numeric_weight, face_numeric_slant)
5335 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
5336 (face_symbolic_slant, face_symbolic_swidth)
5337 (split_font_name_into_vector, build_font_name_from_vector)
5338 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
5339 (font_rescale_ratio, split_font_name, build_font_name)
5340 (free_font_names, sort_fonts, x_face_list_fonts)
5341 (face_font_available_p, sorted_font_list, cmp_font_names)
5342 (font_list_1, concat_font_list, font_list, remove_duplicates):
5343 Deleted.
5344 (Fx_list_fonts): Use Ffont_list.
5345 (LFACE_AVGWIDTH): Deleted.
5346 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
5347 by FONTP.
5348 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
5349 (set_lface_from_font_name): Delete it.
5350 (set_lface_from_font): Renamed from
5351 set_lface_from_font_and_fontset. Caller changed. Don't set
5352 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
5353 for face.
5354 (merge_face_vectors): Copy font-spec if necessary.
5355 Clear properties of the font-spec if necessary.
5356 (merge_face_ref): Clear properties of the font-spec if necessary.
5357 (Finternal_set_lisp_face_attribute): Likewise.
5358 (set_font_frame_param): Use font_load_for_lface to load a
5359 font-object, and call Fmodify_frame_parameters with it.
5360 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
5361 font name by Ffont_xlfd_name.
5362 (Finternal_lisp_face_attribute_values): Don't check QCweight,
5363 QCslant, and QCwidth.
5364 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
5365 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
5366 Compare fonts by EQ.
5367 (lookup_non_ascii_face): Deleted.
5368 (face_for_font): The 2nd argument changed.
5369 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
5370 Check atomic font properties by case insensitive.
5371 (realize_non_ascii_face): Set face->overstrike correctly.
5372 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
5373 (dump_realized_face): Get font name from
5374 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
5375
5376 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
5377 conditionals. Don't check enable_font_backend. Delete all codes
5378 used only when USE_FONT_BACKEND is not defined.
5379 (xic_create_xfontset): Original code deleted and renamed from
5380 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
5381 (x_make_gc): Don't set GCFont in GCs.
5382 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
5383 opened by "fixed".
5384 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
5385 find_ccl_program_func, query_font_func, set_frame_fontset_func,
5386 get_font_repertory_func.
5387
5388 * xfont.c: Include <stdlib.h> and "ccl.h".
5389 (struct xfont_info): New structure.
5390 (xfont_query_font): Deleted.
5391 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
5392 moved from xterm.c.
5393 (xfont_driver): Adjusted for the change of struct font_driver.
5394 (compare_font_names): New function.
5395 (xfont_list_pattern): Sort font names case insensitively. Make
5396 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
5397 (xfont_list): Return a list, not vector.
5398 (xfont_match): If the font doesn't have QCname property, generate
5399 a name from the other font properties.
5400 (xfont_open): Return a font-object. Adjusted for the change of
5401 struct font. Get underline_thickness and underline_position from
5402 font property. Don't update dpyinfo->smallest_font_height and
5403 dpyinfo->smallest_char_width.
5404 (xfont_close): Don't free struct font.
5405 (xfont_prepare_face): Adjusted for the change of struct font.
5406 (xfont_done_face): Deleted.
5407 (xfont_has_char): Adjusted for the change of struct font.
5408 (xfont_encode_char, xfont_draw): Likewise.
5409 (xfont_check): New function.
5410
5411 * xftfont.c (xftfont_list): Adjusted for the change of `list'
5412 callback function.
5413 (xftfont_match): Adjusted for the format change of font-entity.
5414 (xftfont_open): Adjusted for the format change of font-entity and
5415 font-object. Adjusted for the change of struct font. Return a
5416 font-object. Don't update dpyinfo->smallest_font_height and
5417 dpyinfo->smallest_char_width.
5418 (xftfont_close): Block input while calling XftFontClose.
5419 (xftfont_prepare_face): Don't block input while calling
5420 xftfont_get_colors. Adjusted for the change of struct font.
5421 (xftfont_shape): Return value of error case fixed.
5422
5423 * xrdb.c (x_load_resources): Don't setup a fontset resource.
5424
5425 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
5426 conditionals.
5427 (FONT_WIDTH): Return (f)->max_width.
5428 (struct x_display_info): Delete member `font'.
5429 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
5430 (x_find_ccl_program, x_get_font_repertory): Delete externs.
5431 (struct x_output): Change type of `font' to `struct font *'.
5432
5433 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
5434 conditionals. Don't check enable_font_backend. Delete all codes
5435 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
5436 (x_per_char_metric, x_encode_char): Deleted.
5437 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
5438 (x_compute_glyph_string_overhangs): Adjusted for the change of
5439 `struct face'.
5440 (x_draw_glyph_string_foreground)
5441 (x_draw_composite_glyph_string_foreground): Likewise.
5442 (x_draw_glyph_string): Likewise. Use font->underline_position and
5443 font->underline_thickness.
5444 (x_new_font): Renamed from x_new_fontset2.
5445 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
5446 (x_check_font): Call `check' method of a font driver.
5447 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
5448 (x_query_font, x_get_font_repertory): Deleted.
5449 (x_find_ccl_program): Renamed and moved to xfont.c.
5450 (x_redisplay_interface): Adjusted for the change of `struct
5451 redisplay_interface'.
5452
5453 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
5454 conditionals. Don't check enable_font_backend. Delete all codes
5455 used only when USE_FONT_BACKEND is not defined. Surround non-used
5456 code by "#ifdef OLD_FONT" and "endif".
5457 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
5458
5459 * w32font.h (struct w32font_info): New member.
5460 (FONT_COMPAT): New macro.
5461 (w32font_open_internal): Prototype adjusted.
5462
5463 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
5464 OLD_FONT" and "endif".
5465
5466 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
5467 conditionals. Don't check enable_font_backend. Delete all codes
5468 used only when USE_FONT_BACKEND is not defined.
5469 (w32font_open): Return a font-object. Make a font-object by
5470 font_make_object. Adjusted for the change of struct w32font_info.
5471 (w32font_close): Don't free struct font. Adjusted for the change
5472 of struct w32font_info.
5473 (w32font_encode_char, w32font_text_extents, w32font_draw):
5474 Adjusted for the change of struct w32font_info.
5475 (w32font_draw): Likewise.
5476 (w32font_list_internal): Return a list, not vector.
5477 (w32font_open_internal): Change the 4th arg to font-object.
5478 Adjusted for the change of struct w32font_info and font-object format.
5479 (add_font_name_to_list): Don't downcase names.
5480 (w32_enumfont_pattern_entity): Make a font-entity by
5481 font_make_entity. Adjusted for the format change of font-entity.
5482 Use FONT_SET_STYLE to set a style-related font property. If a
5483 font is scalable, set avgwidth property to 0. Set font-entity
5484 property by font_put_extra.
5485 (font_matches_spec): Adjusted for the format change of font-entity.
5486 (w32_weight_table, w32_decode_weight): New variables.
5487 (w32_encode_weight): New function.
5488 (fill_in_logfont): Adjusted for the format change of font-spec.
5489 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
5490 weight value.
5491 (w32font_driver): Adjusted for the change of struct font_driver.
5492
5493 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
5494 conditionals. Don't check enable_font_backend. Surround non-used
5495 code by "#ifdef OLD_FONT" and "endif".
5496 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
5497 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
5498
5499 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
5500 conditionals. Don't check enable_font_backend. Delete all codes
5501 used only when USE_FONT_BACKEND is not defined. Surround non-used
5502 code by "#ifdef OLD_FONT" and "endif".
5503
5504 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
5505 (uniscribe_open): Return value changed to font-object.
5506 Adjusted for the format change of font-object.
5507 (uniscribe_otf_capability): Adjusted for the change of struct font.
5508 (add_opentype_font_name_to_list): Don't downcase names.
5509 (uniscribe_font_driver): Adjusted for the change of struct
5510 font_driver.
5511
5512 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
5513
5514 * dispnew.c (update_frame_1): Check if tty output is still valid
5515 before flushing it.
5516
5517 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
5518
5519 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
5520 to Gtk+ menus.
5521
5522 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
5523
5524 * dired.c (file_name_completion): Tweak the code so as to always do it
5525 in a single pass. Tighten the scope of some variables.
5526
5527 * dired.c (Qdefault_directory): New var.
5528 (file_name_completion): Use it instead of Fexpand_file_name.
5529 (syms_of_dired): Initialize it.
5530
5531 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
5532
5533 * fileio.c (double_dollars): Remove dead code.
5534
5535 2008-05-10 Eli Zaretskii <eliz@gnu.org>
5536
5537 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
5538 Mention w32-get-true-file-attributes in doc string.
5539
5540 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
5541
5542 2008-05-09 Glenn Morris <rgm@gnu.org>
5543
5544 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
5545 2008-04-23.
5546
5547 2008-05-09 Eli Zaretskii <eliz@gnu.org>
5548
5549 Support for reporting owner and group of each file on MS-Windows:
5550 * dired.c (stat_uname, stat_gname): New functions, with special
5551 implementation for w32.
5552 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
5553
5554 * w32.c: Rename the_passwd_* to dflt_passwd_*.
5555 (dflt_group_name): New static variable.
5556 (dflt_group): Rename from the_group.
5557 (init_user_info): Init dflt_group fields. Get user's group name
5558 from LookupAccountSid.
5559 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
5560 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
5561 New initialization states.
5562 (globals_of_w32): Initialize them to zero. Initialize the default
5563 group name to "None".
5564 (GetFileSecurity_Name): New global var, the name of the function
5565 to call for GetFileSecurity.
5566 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
5567 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
5568 (get_file_security, get_security_descriptor_owner)
5569 (get_security_descriptor_group, is_valid_sid)
5570 (get_file_security_desc, get_rid, get_name_and_id)
5571 (get_file_owner_and_group): New functions.
5572 (stat): Use get_file_security_desc and get_file_owner_and_group to
5573 report the owner and primary group of each file. Don't ignore the
5574 high 32 bits of file's size, now that st_size is 64-bit wide.
5575 Fix test when to get true file attributes.
5576 (init_user_info): Use get_rid instead of equivalent inline code.
5577 (fstat): Don't ignore the high 32 bits of file's size.
5578
5579 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
5580
5581 * image.c (png_load): Use correct bit-depth for setting background
5582 color.
5583
5584 2008-05-08 Eli Zaretskii <eliz@gnu.org>
5585
5586 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
5587 epa-hook.elc.
5588
5589 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
5590
5591 * font.c (Ffont_match_p): Don't use `iff' in docstring.
5592
5593 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
5594
5595 * macfns.c (Fx_create_frame): Make a copy of frame parameters
5596 because the original parameters are in pure storage now.
5597 (mac_window): Remove unused params. Update callers.
5598
5599 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
5600
5601 * lread.c (substitute_object_recurse): Use lower-level primitives.
5602 Don't signal errors when traversing sub-char-tables.
5603 Don't loop over all the possible characters when traversing char-tables.
5604
5605 * print.c (print_preprocess): Add sub-char-tables to the print-table,
5606 just like we do in print.c.
5607
5608 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
5609
5610 * minibuf.c (Ftry_completion): Remove code left over from when we used
5611 scmp instead of Fcompare_strings.
5612
5613 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
5614
5615 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
5616
5617 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5618
5619 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
5620 Create bitmap context in native byte order.
5621
5622 * macterm.c (XDrawLine)
5623 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
5624 context in native byte order.
5625
5626 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5627
5628 * config.in: Regenerate.
5629
5630 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
5631 New definitions for Image I/O support.
5632 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5633 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
5634 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
5635 (mac_data_provider_release_data, image_load_image_io)
5636 [USE_MAC_IMAGE_IO]: New functions.
5637 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
5638 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
5639 (init_image_func_pointer) [MAC_OSX]: Remove function.
5640 (image_load_quartz2d) [MAC_OSX]: Check availability of
5641 CGImageCreateWithPNGDataProvider at compile time.
5642 Use lowercase `false' for boolean constant.
5643 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
5644 Use image_load_image_io.
5645 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
5646 Don't check MyCGImageCreateWithPNGDataProvider.
5647 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
5648 Don't call init_image_func_pointer.
5649
5650 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
5651
5652 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
5653 Make variable non-static.
5654 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
5655 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
5656
5657 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
5658 (RED_FROM_ULONG): Mask off higher bits.
5659 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
5660
5661 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
5662 Include AvailabilityMacros.h.
5663 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
5664 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
5665
5666 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
5667
5668 * chartab.c (Fset_char_table_range): If range is t, really set all
5669 chars to that value.
5670
5671 2008-05-03 Eli Zaretskii <eliz@gnu.org>
5672
5673 * dired.c (Ffile_attributes): Don't allow the device number become
5674 negative.
5675
5676 2008-05-02 Daiki Ueno <ueno@unixuser.org>
5677
5678 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
5679
5680 2008-05-02 Juri Linkov <juri@jurta.org>
5681
5682 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
5683 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
5684 DEFAULT argument as a list of default values in docstrings.
5685
5686 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
5687
5688 * puresize.h (BASE_PURESIZE): Increase to 1210000.
5689
5690 2008-05-01 Martin Rudalics <rudalics@gmx.at>
5691
5692 * dispnew.c (change_frame_size_1): Preserve small windows when
5693 shrinking frames by calling set_window_height|width with third
5694 arg 2.
5695
5696 * window.h (struct window): Replace field too_small_ok by field
5697 resize_proportionally.
5698
5699 * window.c (make_window): Initialize resize_proportionally.
5700 (enlarge_window): Temporarily set resize_proportionally to make
5701 sure that shrink_windows does scale the window proportionally.
5702 (shrink_windows): When window has resize_proportionally set try
5703 to shrink it proportionally by stealing from other windows.
5704 (struct saved_window, Fset_window_configuration)
5705 (compare_window_configurations): Handle resize_proportionally.
5706 (WINDOW_TOTAL_SIZE): New macro.
5707 (window_min_size, shrink_windows, size_window): Use it.
5708 (check_min_window_sizes): Remove. Invalid values of
5709 window-min-height|width are handled by window_min_size_2 now.
5710 (size_window, Fsplit_window, enlarge_window)
5711 (adjust_window_trailing_edge, grow_mini_window): Don't call
5712 check_min_window_sizes.
5713 (window_min_size_2, window_min_size_1, window_min_size):
5714 New argument safe_p for retrieving "safe" minimum sizes.
5715 (Fdisplay_buffer, Fsplit_window, enlarge_window)
5716 (adjust_window_trailing_edge, grow_mini_window):
5717 Adjust arguments of window_min_size... functions.
5718 (shrink_windows): Argument min_size removed. New argument
5719 safe_p allows shrinking windows to their safe minimum sizes.
5720 Calculate minimum size and decide whether a window shall be
5721 deleted for each window individually.
5722 (size_window): When nodelete_p equals 2, tell shrink_windows to
5723 delete windows only if their new minimum size is no more safe.
5724 (shrink_window_lowest_first): Call window_min_size_1 to make
5725 sure to preserve modeline of bottom-most window when resizing
5726 the minibuffer.
5727 (Fset_window_configuration, Fcurrent_window_configuration)
5728 (compare_window_configurations): Do not handle
5729 window-min-height|width any more.
5730 (syms_of_window): Clarify window-min-height|width doc-strings.
5731
5732 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
5733
5734 * dired.c (file_name_completion): Fix up the encoding/decoding issue
5735 some more. Copy some of the code from Ftry_completions.
5736 Remove special case code that dates back to initial revision when the
5737 slash was only added when necessary and that can't trigger nowadays.
5738
5739 2008-04-27 Kenichi Handa <handa@m17n.org>
5740
5741 * font.c (font_prop_validate): Signal `error' instead of `font'.
5742
5743 2008-04-29 Jason Rumney <jasonr@gnu.org>
5744
5745 * w32fns.c (Fw32_battery_status): New defun.
5746 (syms_of_w32fns): Defsubr it.
5747
5748 2008-04-28 Andreas Schwab <schwab@suse.de>
5749
5750 * dired.c (file_name_completion): Fix another mixing of encoded
5751 and decoded names.
5752
5753 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
5754
5755 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
5756
5757 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
5758
5759 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
5760
5761 2008-04-27 Andreas Schwab <schwab@suse.de>
5762
5763 * dired.c (file_name_completion): Fix inappropriate mixing of
5764 encoded and decoded names.
5765
5766 * xterm.c (XTread_socket): Fix use of uninitialized variable.
5767
5768 * puresize.h (BASE_PURESIZE): Increase to 1200000.
5769
5770 2008-04-26 Eli Zaretskii <eliz@gnu.org>
5771
5772 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
5773 2008-03-31, it's not needed anymore with `struct stat' definition
5774 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
5775 for the same reasons.
5776
5777 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
5778
5779 * m/sparc.h: Additional redefinitions for GNU/Linux.
5780
5781 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5782
5783 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
5784 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
5785 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
5786 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
5787 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
5788 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
5789 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
5790 Likewise.
5791
5792 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
5793 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
5794 (mac_ax_number_of_characters): Add externs.
5795 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
5796 [USE_MAC_TSM]: Likewise.
5797 (mac_handle_text_input_event) [MAC_OSX]:
5798 Handle kEventTextInputOffsetToPos for no active input area case.
5799 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
5800 (mac_handle_document_access_event)
5801 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
5802 (install_application_handler) [MAC_OSX]: Register handlers for
5803 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
5804 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
5805 Register mac_handle_document_access_event.
5806
5807 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
5808 Make functions non-static.
5809
5810 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
5811
5812 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
5813 (read_file_name_completion_ignore_case, insert_default_directory)
5814 (Qdefault_directory): Move to minibuffer.el.
5815 (Fread_file_name): Call the new `read-file-name' instead.
5816
5817 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5818
5819 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
5820 Make function non-static.
5821 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
5822 Remove function.
5823 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
5824 Move to mactoolbox.c.
5825 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
5826
5827 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
5828 (mac_rect_make): New macro.
5829
5830 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
5831 instead of float.
5832 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
5833 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
5834 (XSetBackground) [USE_CG_DRAWING]: Likewise.
5835 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
5836 CGRectMake.
5837 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
5838 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
5839 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
5840 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
5841 instead of WindowRef in argument type.
5842 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
5843 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
5844 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
5845 instead of DISPLAY. All uses changed.
5846 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
5847 (x_calc_absolute_position): Simplify so as not to use
5848 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
5849
5850 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
5851 instead of WindowRef in argument type.
5852 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
5853 [TARGET_API_MAC_CARBON]: Remove externs.
5854 (create_apple_event, mac_event_parameters_to_lisp)
5855 [TARGET_API_MAC_CARBON]: Add externs.
5856
5857 * mactoolbox.c (Vmac_ts_script_language_on_focus)
5858 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
5859 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
5860 is clicked.
5861 (x_activate_menubar): Remove extern for saved_menu_event_location.
5862 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
5863 Move from mac.c.
5864
5865 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5866
5867 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
5868 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
5869
5870 2008-04-23 Jason Rumney <jasonr@gnu.org>
5871
5872 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
5873 attributes only for local files.
5874
5875 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
5876 default to Qlocal.
5877
5878 2008-04-22 Juri Linkov <juri@jurta.org>
5879
5880 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
5881 read-buffer-to-switch instead of using the letter "B".
5882
5883 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
5884
5885 * fileio.c (Qdefault_directory): New variable.
5886 (Fread_file_name): Use it to pass `dir' to the completion functions.
5887
5888 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
5889
5890 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
5891
5892 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
5893
5894 * keyboard.c (Vpre_help_message): Remove.
5895 (show_help_echo): Remove default C code.
5896
5897 * dired.c (directory_files_internal, file_name_completion):
5898 Only call ENCODE_FILE if the string is indeed decoded.
5899
5900 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
5901
5902 * Makefile.in (TOOLKIT_DEFINES): Remove.
5903 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
5904
5905 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5906
5907 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
5908 (mactoolbox.o): New target.
5909
5910 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
5911 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
5912
5913 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
5914 Use mac_set_frame_window_background instead of XSetWindowBackground.
5915 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
5916 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
5917 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
5918 instead of SetWindowTitleWithCFString.
5919 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
5920 Move function to mactoolbox.c.
5921 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
5922 Use mac_set_window_modified instead of SetWindowModified.
5923 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
5924 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
5925 (Fx_focus_frame): Use mac_front_non_floating_window instead of
5926 FrontNonFloatingWindow. Use mac_activate_window instead of
5927 ActivateWindow. Use mac_active_non_floating_window instead of
5928 ActiveNonFloatingWindow.
5929 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
5930 Use mac_show_hourglass and mac_hide_hourglass.
5931 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
5932 instead of GetGlobalMouse.
5933 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
5934 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
5935 Use mac_bring_window_to_front instead of BringToFront.
5936 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
5937 mactoolbox.c.
5938 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
5939 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
5940 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
5941 mactoolbox.c.
5942
5943 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
5944 (XtPointer): Move typedef from macmenu.c.
5945 (enum button_type): Move enum from macmenu.c.
5946 (widget_value): Move typedef from macmenu.c.
5947 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
5948 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
5949 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
5950 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
5951 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
5952 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
5953 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
5954 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
5955 (Selection): Move typedef from macselect.c.
5956 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
5957 macterm.c.
5958 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
5959 (mac_is_window_collapsed, mac_bring_window_to_front)
5960 (mac_send_window_behind, mac_hide_window, mac_show_window)
5961 (mac_collapse_window, mac_front_non_floating_window)
5962 (mac_active_non_floating_window, mac_activate_window)
5963 (mac_move_window_structure, mac_move_window, mac_size_window)
5964 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
5965
5966 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
5967 (enum mac_menu_kind): Move enum to mactoolbox.c.
5968 (min_menu_id): Move variable to mactoolbox.c.
5969 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
5970 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
5971 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
5972 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
5973 [TARGET_API_MAC_CARBON]: Likewise.
5974 (XtPointer): Move typedef to macgui.h.
5975 (enum button_type): Move enum to macgui.h.
5976 (widget_value): Move typedef to macgui.h.
5977 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
5978 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
5979 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
5980 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
5981 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
5982 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
5983 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
5984 (popup_activated_flag): Make variable non-static.
5985 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
5986 (add_menu_item, fill_menu, dispose_menus):
5987 Move functions to mactoolbox.c.
5988 (restore_show_help_function, menu_target_item_handler)
5989 (install_menu_target_item_handler, mac_handle_dialog_event)
5990 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
5991 [TARGET_API_MAC_CARBON]: Likewise.
5992 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
5993 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
5994 (find_and_call_menu_selection, name_is_separator): Make function
5995 non-static.
5996 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
5997 to mactoolbox.c.
5998 (set_frame_menubar): Don't call install_menu_quit_handler.
5999 (menu_item_selection): New variable.
6000 (mac_menu_show): Use create_and_show_popup_menu.
6001 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
6002 selection but set variable menu_item_selection. All uses changed.
6003 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
6004 Call install_menu_quit_handler. Move to mactoolbox.c.
6005
6006 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
6007 (Selection): Move typedef to macgui.h.
6008 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
6009 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
6010 Make variables non-static.
6011 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
6012 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
6013 Make functions non-static.
6014 (Vmac_service_selection) [MAC_OSX]: Likewise.
6015 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
6016 (mac_valid_selection_target_p, mac_clear_selection)
6017 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
6018 (mac_put_selection_value, mac_selection_has_target_p)
6019 (mac_get_selection_value, mac_get_selection_target_list)
6020 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
6021 Move functions to mactoolbox.c.
6022 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
6023 Likewise.
6024 (copy_scrap_flavor_data, mac_handle_service_event)
6025 (install_service_handler) [MAC_OSX]: Likewise.
6026 (syms_of_macselect) <Vmac_dnd_known_types>:
6027 Use mac_dnd_default_known_types.
6028
6029 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
6030 Move to mactoolbox.c.
6031 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
6032 (Fx_selection_owner_p): Add EXFUN.
6033 (install_window_handler, remove_window_handler, XSetWindowBackground):
6034 Remove externs.
6035 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
6036 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
6037 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
6038 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
6039 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
6040 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
6041 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
6042 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
6043 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
6044 (create_and_show_popup_menu, mac_get_selection_from_symbol)
6045 (mac_valid_selection_target_p, mac_clear_selection)
6046 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
6047 (mac_put_selection_value, mac_selection_has_target_p)
6048 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
6049 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
6050 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
6051 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
6052 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
6053 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
6054 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
6055 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
6056 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
6057
6058 * mactoolbox.c: New file.
6059
6060 2008-04-18 Jason Rumney <jasonr@gnu.org>
6061
6062 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
6063
6064 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
6065
6066 * character.c (Fmultibyte_char_to_unibyte):
6067 Return latin1 chars unchanged.
6068
6069 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
6070 relocated if it points to `name'.
6071
6072 2008-04-17 Kenichi Handa <handa@m17n.org>
6073
6074 * data.c (Faset): Allow setting a multibyte character in an
6075 ASCII-only unibyte string.
6076
6077 * lisp.h (STRING_SET_MULTIBYTE): New macro.
6078
6079 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
6080
6081 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
6082 done in config.h.
6083
6084 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
6085
6086 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
6087 (Fchar_direction): Add usage in the docstring.
6088
6089 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
6090
6091 * keyboard.c (read_key_sequence): Remove always-true checks.
6092
6093 2008-04-14 Jason Rumney <jasonr@gnu.org>
6094
6095 * w32font.c (w32font_open_internal): Set max_bounds.descent in
6096 compatibility struct, for better underline positioning.
6097
6098 2008-04-13 David Hansen <david.hansen@gmx.net>
6099
6100 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
6101 string.
6102
6103 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
6104
6105 * m/hp800.h (XUINT, XSET): Remove.
6106
6107 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
6108
6109 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
6110 previous change.
6111
6112 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
6113
6114 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
6115 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
6116
6117 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6118
6119 * keymap.h (map_keymap_canonical): Declare.
6120 * xmenu.c (single_keymap_panes): Use it.
6121
6122 2008-04-11 Glenn Morris <rgm@gnu.org>
6123
6124 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
6125 set the target's value to that of the alias.
6126
6127 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6128
6129 * term.c (set_tty_color_mode): Left over typo.
6130
6131 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
6132
6133 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
6134 only after check for file name handler functions. Signal, when
6135 native functionality is not supported.
6136 (syms_of_fileio): Declare it unconditionally.
6137
6138 2008-04-10 Jason Rumney <jasonr@gnu.org>
6139
6140 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
6141 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
6142
6143 * w32.c (logon_network_drive): Also logon to remote drives that
6144 are mapped to drive letters.
6145
6146 2008-04-10 Glenn Morris <rgm@gnu.org>
6147
6148 * xdisp.c (truncate-partial-width-windows): Doc fix.
6149
6150 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
6151
6152 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
6153 Move functions to minibuffer.el.
6154 (syms_of_fileio): Don't declare them.
6155
6156 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
6157
6158 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
6159 (syms_of_minibuf): Remove its initialization.
6160
6161 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
6162
6163 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
6164
6165 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
6166
6167 2008-04-09 Jason Rumney <jasonr@gnu.org>
6168
6169 * makefile.w32-in (distclean): Delete makefile too.
6170 (maintainer-clean): New target.
6171
6172 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
6173
6174 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
6175 for new font backend and composite cases.
6176
6177 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
6178
6179 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
6180 Most of the code moved to run_timers.
6181 (do_pending_atimers): Call run_timers.
6182 (run_timers): New function.
6183
6184 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
6185 run atimers.
6186
6187 * process.c (wait_reading_process_output): The same as above.
6188
6189 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
6190
6191 * minibuf.c (last_exact_completion): Remove variable.
6192 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
6193 (complete_and_exit_1, complete_and_exit_2)
6194 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
6195 (Fdisplay_completion_list, display_completion_list_1)
6196 (Fminibuffer_completion_help, Fself_insert_and_exit)
6197 (Fexit_minibuffer, Fminibuffer_message): Move functions to
6198 minibuffer.el.
6199 (syms_of_minibuf): Remove corresponding initializations.
6200
6201 * keyboard.c (Qdeactivate_mark): New var.
6202 (command_loop_1): Use it to call `deactivate-mark'.
6203 (syms_of_keyboard): Initialize it.
6204
6205 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
6206 to another frame.
6207 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
6208 Don't call set_tty_color_mode.
6209 (store_frame_param): Reset previous_frame rather than call
6210 set_tty_color_mode.
6211 * term.c (set_tty_color_mode): Rewrite.
6212 * dispextern.h (set_tty_color_mode): New type.
6213 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
6214
6215 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
6216
6217 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
6218 for generic chars, which do not exist any more in emacs-unicode.
6219
6220 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
6221
6222 * coding.c (detect_coding_emacs_mule)
6223 (Ffind_operation_coding_system): Fix typo.
6224
6225 2008-04-08 Jason Rumney <jasonr@gnu.org>
6226
6227 * w32uniscribe.c (SNAME): Extract only symbol name.
6228
6229 * w32font.h (struct w32_metric_cache): New struct.
6230 (w32font_info): Use it.
6231 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
6232 (CACHE_BLOCKSIZE): New constants.
6233
6234 * w32font.c (Qja, Qko, Qzh): New symbols.
6235 (syms_of_w32font): Initialise them.
6236 (font_matches_spec): Use them to filter by language.
6237 (recompute_cached_metrics): Remove function.
6238 (compute_metrics, clear_cached_metrics): New functions.
6239 (w32font_encode_char): Use them to manage metric cache.
6240 (w32font_text_extents): Cache metrics for all glyphs on demand.
6241 Delay converting glyph indices to WORD until needed.
6242 (w32font_open_internal): Initialize metric cache to empty.
6243 (registry_to_w32_charset): Charset should always be a symbol.
6244 (fill_in_logfont, list_all_matching_fonts): Family should
6245 always be a symbol.
6246
6247 2008-04-06 Jason Rumney <jasonr@gnu.org>
6248
6249 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
6250 Give up if glyph indices not supported. Use uniscribe obtained
6251 ABC widths for individual metrics. Map glyph clusters back to
6252 characters using fClusterStart flag. Return number of glyphs
6253 produced, not chars processed.
6254 (uniscribe_shape): Map char at FROM to current glyph.
6255
6256 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6257
6258 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
6259 Use SetMenuItemHierarchicalMenu.
6260
6261 2008-04-05 Jason Rumney <jasonr@gnu.org>
6262
6263 * image.c (pbm_load): Allow color values up to 65535.
6264 Throw an error if max_color_idx is outside the supported range.
6265 Report an error when image size is invalid.
6266 Read two bytes at a time when raw images have max_color_idx above 255.
6267
6268 2008-04-05 Eli Zaretskii <eliz@gnu.org>
6269
6270 * w32.c (readdir): If FindFirstFile/FindNextFile return in
6271 cFileName a file name that includes `?' characters, use the 8+3
6272 alias in cAlternateFileName instead.
6273
6274 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
6275
6276 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
6277 append "CCL: Quitted" when the CCL program is quitted.
6278 (setup_ccl_program): Initialize ccl->quit_silently to zero.
6279
6280 * ccl.h (struct ccl_program): New member quit_silently.
6281
6282 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
6283
6284 * search.c (compile_pattern_1): Treat non-nil and non-string of
6285 search-spaces-regexp as nil.
6286
6287 * minibuf.c (Fassoc_string): Tweak docstring.
6288
6289 2008-04-05 Eli Zaretskii <eliz@gnu.org>
6290
6291 * dired.c (Ffile_attributes): Support inode numbers wider than 32
6292 bits. Remove ugly WINDOWSNT-specific kludge introduced on
6293 2008-03-14 to force inode be positive.
6294
6295 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
6296 _S_* ones, since we now use our own sys/stat.h.
6297 (stat, fstat): Don't mangle the inode number.
6298 (init_user_info): Don't restrict UID and GID to 0-60000 range.
6299
6300 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
6301
6302 * frame.h (struct frame): Give one more bit to `visible' since we use
6303 values larger than 1 to indicate obscured frames on ttys.
6304
6305 * keymap.c (Qkeymap_canonicalize): New var.
6306 (Fmap_keymap_internal): New fun.
6307 (describe_map): Use keymap-canonicalize.
6308
6309 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
6310 (Fundo_boundary): Set them.
6311 (syms_of_undo): Initialize them.
6312 (record_point): Use them instead of last_point_position*.
6313 (last_undo_buffer): Change type.
6314
6315 2008-04-04 Jason Rumney <jasonr@gnu.org>
6316
6317 * w32font.c (w32font_text_extents): Use font's ascent and descent.
6318 (recompute_cached_metrics): Don't set ascent and descent per char.
6319
6320 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
6321 (uniscribe_check_otf): Add GC protection before consing.
6322 Rearrange loop for counting features.
6323
6324 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
6325
6326 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
6327 buffer with byte-size of source buffer.
6328
6329 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
6330
6331 * callint.c (Fcall_interactively): Handle temporary region even
6332 when shift-select-mode is off.
6333
6334 2008-04-03 Jason Rumney <jasonr@gnu.org>
6335
6336 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
6337
6338 2008-04-03 Kenichi Handa <handa@m17n.org>
6339
6340 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
6341 (CATEGORY_MASK_UTF_16): Likewise.
6342 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
6343 binary file.
6344 (detect_coding): Add null-byte detection for a binary file.
6345 (detect_coding_system): Likewise.
6346
6347 2008-04-03 Jason Rumney <jasonr@gnu.org>
6348
6349 * w32uniscribe.c: New file.
6350
6351 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
6352
6353 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
6354
6355 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
6356 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
6357 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
6358 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
6359 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
6360 (Qphonetic): New symbols.
6361 (syms_of_w32font): Initialize them.
6362 (font_supported_scripts): Use them.
6363 (w32font_list_family): List all charsets.
6364 (w32font_text_extents, recompute_cached_metrics): Fix metric
6365 calculations.
6366 (w32_enumfont_pattern_entity): Make full_type a DWORD.
6367 Give opentype fonts their own format.
6368 (font_matches_spec): New arguments backend and logfont.
6369 Handle :otf spec for uniscribe backend.
6370 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
6371 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
6372
6373 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
6374 font backend.
6375 (globals_of_w32fns): Initialize uniscribe font backend.
6376
6377 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
6378 dependencies.
6379 (w32uniscribe.$(O)): New file to build.
6380 (FONT_OBJ): Include w32uniscribe.$(O).
6381 (LIBS): Add uniscribe libraries.
6382
6383 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
6384
6385 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
6386
6387 * callint.c (Vshift_select_mode): New var.
6388 (Finteractive): Document new ^ spec.
6389 (Fcall_interactively): Call handle-shift-selection if the ^ spec
6390 is present.
6391
6392 * keyboard.c (Vthis_command_keys_shift_translated): New var.
6393 (command_loop_1): Avoid running the direct display versions of
6394 forward-char and backward-char if shift-selection may occur.
6395 (read_key_sequence): Set Vthis_command_keys_shift_translated if
6396 shift-translation takes place.
6397
6398 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
6399 avoid clobbering by define-minor-mode.
6400
6401 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
6402 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
6403
6404 * syntax.c (Fforward_word): Add ^ interactive spec.
6405
6406 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
6407 (Fscroll_right): Add ^ interactive spec.
6408
6409 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
6410
6411 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
6412
6413 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
6414
6415 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
6416
6417 2008-03-31 Juri Linkov <juri@jurta.org>
6418
6419 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
6420
6421 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
6422
6423 * gtkutil.c (xg_set_geometry): Fix indentation.
6424 (xg_resize_outer_widget): Remove.
6425 (x_wm_size_hint_off): Fix indentation.
6426 (xg_frame_set_char_size): Call flush_and_sync after
6427 gtk_window_resize.
6428 (x_wm_set_size_hint): Pass NULL as geometry window to
6429 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
6430 Add menu bar and tool bar height to base height.
6431 (xg_update_frame_menubar, free_frame_menubar)
6432 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
6433 (update_frame_tool_bar, free_frame_tool_bar):
6434 Change xg_resize_outer_widget to xg_frame_set_char_size.
6435
6436 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
6437
6438 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
6439 (Fdbus_call_method): New parameter TIMEOUT.
6440 (dbus-send-signal): Optimize UNGCPRO call.
6441
6442 2008-03-29 Juri Linkov <juri@jurta.org>
6443
6444 * window.c (Fdisplay_buffer): Move call to
6445 Vsplit_window_preferred_function out of conditions that check
6446 if window is eligible for vertical splitting.
6447 When Vsplit_window_preferred_function is non-nil, call it and use
6448 its non-nil return value as window. Otherwise, continue doing
6449 vertical splitting using Fsplit_window with arg horflag=nil.
6450 (syms_of_window) <Vsplit_window_preferred_function>: Change the
6451 default value from `split-window' to nil.
6452
6453 2008-03-29 Juri Linkov <juri@jurta.org>
6454
6455 * callint.c (Fcall_interactively): Revert 2008-03-16 change
6456 for interactive code letters 'b' and 'B'.
6457
6458 2008-03-29 Eli Zaretskii <eliz@gnu.org>
6459
6460 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
6461 multibyte string.
6462
6463 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
6464
6465 * keyboard.c (pending_funcalls): New var.
6466 (timer_check): Run it.
6467 (syms_of_keyboard): Initialize it.
6468 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
6469 (Vdelete_terminal_functions): New vars.
6470 (syms_of_terminal): Initialize them.
6471 (Fdelete_terminal): Run delete-terminal-functions.
6472 * xdisp.c (safe_eval): Rewrite.
6473 (safe_call2): New fun.
6474 * frame.c (Qdelete_frame_functions): New var.
6475 (syms_of_frame): Initialize it.
6476 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
6477 * lisp.h (safe_call2, pending_funcalls): Declare.
6478
6479 2008-03-28 Andreas Schwab <schwab@suse.de>
6480
6481 * indent.c (Fmove_to_column): Move declaration before statements.
6482
6483 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
6484
6485 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
6486 (struct frame): Use bit fields for boolean vars.
6487
6488 * process.c (server_accept_connection): Simplify naming.
6489 (emacs_get_tty_pgrp): Use SDATA.
6490
6491 * coding.c (decode_coding_object): Fix last change.
6492
6493 2008-03-27 Jason Rumney <jasonr@gnu.org>
6494
6495 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
6496
6497 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
6498
6499 * charset.c (Fdefine_charset_internal): Change the way of
6500 registering charsets in Vcharset_order_list.
6501 (syms_of_charset): Make the charset `eight-bit' supplementary.
6502
6503 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
6504
6505 * regex.c (EXTEND_BUFFER): Change order of pointer addition
6506 operations, to avoid having the difference between pointers
6507 overflow.
6508
6509 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
6510
6511 * indent.c (check_display_width): New fun.
6512 (scan_for_column): Use it.
6513
6514 * data.c (syms_of_data): Mark most-positive-fixnum and
6515 most-negative-fixnum as constants.
6516
6517 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
6518
6519 * indent.c (scan_for_column): Extract from current_column_1.
6520 Merge with the same code from Fmove_to_column.
6521 (current_column_1, Fmove_to_column): Use it.
6522
6523 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
6524
6525 * keymap.c (map_keymap_internal): New fun.
6526 (map_keymap): Use it.
6527 (Fmap_keymap_internal): New fun.
6528 (Fmap_keymap): Remove left-out test from before make_save_value.
6529
6530 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
6531
6532 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
6533 Use XCAR/XCDR.
6534
6535 * process.h (struct Lisp_Process): Remove filter_multibyte.
6536 * process.c (QCfilter_multibyte): Remove.
6537 (setup_process_coding_systems): Don't use filter_multibyte.
6538 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
6539 (read_process_output): Don't adjust multibyteness to filter_multibyte.
6540 (Fset_process_filter_multibyte): Change the coding-system to
6541 approximate the previous behavior.
6542 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
6543 coding-system.
6544
6545 * coding.c (decode_coding_object): When not decoding into a buffer,
6546 obey the coding system's preference of (uni|multi)byte.
6547
6548 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
6549
6550 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
6551 every char is changed and has a different byte-length.
6552 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
6553 Fix int -> EMACS_INT.
6554
6555 2008-03-23 David Hansen <david.hansen@gmx.net>
6556
6557 * dbusbind.c (xd_read_message): Remove extra copying of message
6558 strings. Check for NULL `interface' or `member'.
6559
6560 2008-03-22 Eli Zaretskii <eliz@gnu.org>
6561
6562 * w32.c (readdir): If FindFirstFile/FindNextFile return in
6563 cFileName a file name that includes `?' characters, use the 8+3
6564 alias in cAlternateFileName instead.
6565
6566 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
6567
6568 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
6569
6570 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6571
6572 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
6573 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
6574 work on current_buffer only instead (that was already the case
6575 for some of the code anyway).
6576 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
6577 (temp_set_point, temp_set_point_both): Use EMACS_INT.
6578 (SET_PT, SET_PT_BOTH): Adjust.
6579 * intervals.h (set_point, temp_set_point, set_point_both)
6580 (temp_set_point_both): Remove redundant declarations.
6581
6582 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
6583
6584 * fileio.c (Finsert_file_contents):
6585 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
6586 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
6587 when buffer != current_buffer anyway.
6588
6589 2008-03-20 Andreas Schwab <schwab@suse.de>
6590
6591 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
6592 as default.
6593
6594 2008-03-19 Jason Rumney <jasonr@gnu.org>
6595
6596 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
6597 (syms_of_w32fns): Initialize them.
6598 (HOURGLASS_ID): New constant.
6599 (x_window_to_frame): Don't check hourglass_window.
6600 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
6601 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
6602 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
6603 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
6604 Only change the cursor if hourglass is not active.
6605 (Fx_create_frame): Initialize frame's current_cursor.
6606 (hourglass_atimer): Remove.
6607 (hourglass_started): New function.
6608 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
6609 (show_hourglass): Adapt to w32, changing argument to frame.
6610
6611 * w32term.h (struct w32_output): Remove hourglass_window.
6612 Add current_cursor.
6613
6614 * eval.c (call_debugger, Fsignal):
6615 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
6616 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
6617 (Fexecute_extended_command, cancel_hourglass_unwind):
6618 * minibuf.c (read_minibuf):
6619 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
6620
6621 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
6622
6623 * window.c (run_funs): New fun.
6624 (run_window_configuration_change_hook): Use it to run the buffer-local
6625 and the global part of the hook.
6626
6627 * xdisp.c (format_mode_line_unwind_data): Add window argument.
6628 (unwind_format_mode_line): Restore selected window.
6629 (x_consider_frame_title, Fformat_mode_line): Set selected window.
6630
6631 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
6632
6633 * editfns.c (Fchar_equal): Check they are valid characters.
6634
6635 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
6636
6637 2008-03-17 Andreas Schwab <schwab@suse.de>
6638
6639 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
6640 against a charset.
6641
6642 * lisp.h (Fbuffer_list): Declare.
6643
6644 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
6645
6646 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
6647 handlebox_widget is != 0.
6648
6649 2008-03-16 Juri Linkov <juri@jurta.org>
6650
6651 * callint.c (Fcall_interactively): For interactive code letters
6652 'b' and 'B' put the buffer list into the list of default "future"
6653 values of the minibuffer.
6654
6655 2008-03-16 Andreas Schwab <schwab@suse.de>
6656
6657 * keyboard.c (read_key_sequence): Fix downcasing of letters with
6658 modifiers.
6659
6660 * regex.c (re_match_2_internal): Correct matching of a charset
6661 against latin-1 characters.
6662
6663 2008-03-16 Kenichi Handa <handa@m17n.org>
6664
6665 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
6666 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
6667 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
6668 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
6669 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
6670 CHAR_STRING_ADVANCE.
6671 (produce_chars): Fix for the case that the source and the
6672 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
6673 instead of CHAR_STRING_ADVANCE.
6674 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
6675 STRING_CHAR_ADVANCE.
6676
6677 2008-03-15 Andreas Schwab <schwab@suse.de>
6678
6679 * regex.c (re_match_2_internal): Correct matching of eight bit
6680 characters in unibyte strings.
6681
6682 2008-03-15 Martin Rudalics <rudalics@gmx.at>
6683
6684 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
6685 at end of range when it coincides with the end of the buffer.
6686
6687 2008-03-14 Eli Zaretskii <eliz@gnu.org>
6688
6689 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
6690
6691 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
6692
6693 2008-03-14 Jason Rumney <jasonr@gnu.org>
6694
6695 * editfns.c (initial_tz): New variable.
6696 (syms_of_editfns): Initialize it.
6697 (Fset_time_zone_rule): Set it when first called.
6698 Use it when TZSTRING is nil.
6699
6700 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
6701 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
6702 (monitor_from_point_fn, get_monitor_info_fn): New globals.
6703 (globals_of_w32fns): Initialize them.
6704 (compute_tip_xy): Use them to position tooltips.
6705
6706 2008-03-14 Glenn Morris <rgm@gnu.org>
6707
6708 * emacs.c (main): Revert previous change.
6709 (standard_args): Revert -internal-script back to -scriptload,
6710 and remove the long-option form.
6711
6712 2008-03-13 Glenn Morris <rgm@gnu.org>
6713
6714 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
6715 Remove option -enable-font-backend.
6716
6717 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
6718
6719 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
6720
6721 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
6722
6723 * xterm.c (x_connection_closed): For GTK: If this is the last
6724 terminal just exit without closing the display.
6725
6726 2008-03-11 Jason Rumney <jasonr@gnu.org>
6727
6728 * w32font.c (w32font_full_name): Use floor to round.
6729
6730 2008-03-10 dhruva <dhruvakm@gmail.com> (tiny change)
6731
6732 * sound.c (alsa_configure): Declare vol at beginning of block.
6733
6734 * fontset.c (Ffontset_info): Remove extra semicolon.
6735
6736 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
6737
6738 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
6739 size of resulting string.
6740
6741 2008-03-10 Jason Rumney <jasonr@gnu.org>
6742
6743 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
6744
6745 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6746
6747 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
6748 Don't pretend as if characters with display property haven't been
6749 consumed for string-replacing-string case.
6750
6751 2008-03-08 Kim F. Storm <storm@cua.dk>
6752
6753 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
6754 (get_next_display_element, next_element_from_string)
6755 (next_element_from_ellipsis, next_element_from_buffer): Use it.
6756
6757 2008-03-08 Andreas Schwab <schwab@suse.de>
6758
6759 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
6760
6761 2008-03-06 Jason Rumney <jasonr@gnu.org>
6762
6763 * w32font.c (w32_registry): Take font_type argument. Use ANSI
6764 when charset not specified. Only translate ANSI to unicode when
6765 font_type is truetype.
6766 (w32font_coverage_ok): New function.
6767 (add_font_entity_to_list): Use it to filter unsuitable fonts.
6768
6769 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
6770
6771 * lread.c (Fread_char): Resolve modifiers.
6772 (Fread_char_exclusive): Likewise.
6773
6774 * character.c (char_resolve_modifier_mask): New function.
6775 (char_string): Use char_resolve_modifier_mask.
6776 (Fchar_resolve_modifiers): New function.
6777 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
6778 function.
6779
6780 2008-03-04 Jason Rumney <jasonr@gnu.org>
6781
6782 * makefile.w32-in: Always include w32font.c in the build.
6783 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
6784
6785 2008-03-04 Andreas Schwab <schwab@suse.de>
6786
6787 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
6788 (versionclean): Likewise.
6789
6790 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
6791
6792 * .cvsignore: Add oo.
6793
6794 2008-03-03 Andreas Schwab <schwab@suse.de>
6795
6796 * coding.c (decode_coding_object): Inhibit gap shrinking while
6797 decoding in place.
6798
6799 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
6800
6801 * w32term.c: Remove unused include "gnu.h".
6802 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
6803
6804 * gnu.h: Rename to ...
6805 * emacs-icon.h: ... this.
6806 * xterm.c: Use emacs-icon.h instead of gnu.h.
6807 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
6808
6809 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
6810
6811 * w32font.c: Include math.h.
6812
6813 2008-03-03 Jason Rumney <jasonr@gnu.org>
6814
6815 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
6816 Compute options separately.
6817 (w32font_open_internal): Set glyph_idx before caching metrics.
6818
6819 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
6820 Define if system headers don't.
6821 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
6822 (w32font_encode_char): Don't declare here.
6823
6824 * w32font.c (Quniscribe, QCformat): New symbols.
6825 (syms_of_w32font): Define them.
6826 (w32font_has_char): Indicate uncertainty.
6827 (w32font_encode_char): Encode as glyph point. Make static.
6828 (recompute_cached_metrics): New function.
6829 (w32font_open_internal): Use it. Set font to use glyph points
6830 initially. Set format based on type of font.
6831 (w32font_text_extents, w32font_draw): Optionally use glyph points.
6832 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
6833 on it. Set format based on information available here.
6834 (add_font_entity_to_list): Identify backend based on opentype_only.
6835
6836 2008-03-02 Andreas Schwab <schwab@suse.de>
6837
6838 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
6839
6840 * coding.c (decode_coding_big5, produce_chars):
6841 Fix typos in last change.
6842
6843 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
6844
6845 * gnu.h: New icon.
6846
6847 2008-03-02 Kenichi Handa <handa@m17n.org>
6848
6849 * coding.c (decode_coding_utf_8): When eol-type of CODING is
6850 `dos', don't decode '\r' if that is the last in the source.
6851 (decode_coding_utf_16, decode_coding_emacs_mule)
6852 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
6853 (decode_coding_raw_text, decode_coding_charset): Likewise.
6854 (produce_chars): Don't decode EOL here. Use EMACS_INT.
6855
6856 2008-03-01 Jason Rumney <jasonr@gnu.org>
6857
6858 * w32font.c (w32font_full_name): Report point size for scalable fonts.
6859
6860 2008-03-01 Kim F. Storm <storm@cua.dk>
6861
6862 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
6863
6864 2008-03-01 Jason Rumney <jasonr@gnu.org>
6865
6866 * w32font.c (w32font_full_name): New function.
6867 (w32font_open_internal): Use it.
6868
6869 2008-03-01 Kim F. Storm <storm@cua.dk>
6870
6871 * dispnew.c (line_draw_cost): Fix invalid glyph check.
6872
6873 2008-03-01 Jason Rumney <jasonr@gnu.org>
6874
6875 * font.c (font_unparse_fcname): Increase len when style is a symbol.
6876
6877 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
6878
6879 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
6880 xg_frame_resized when the event is for the edit widget.
6881
6882 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
6883
6884 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
6885 set_char_size.
6886 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
6887 operations on widgets here. Just set frame size if needed.
6888 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
6889 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
6890 (x_wm_set_size_hint): Set size hints on the edit widget only, not
6891 the whole frame.
6892 (xg_create_tool_bar): Move attachment of the tool bar to
6893 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
6894 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
6895
6896 2008-03-01 Jason Rumney <jasonr@gnu.org>
6897
6898 * w32fns.c (w32_msg_pump): Disable debug code.
6899
6900 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6901
6902 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
6903
6904 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
6905
6906 * xdisp.c (next_overlay_string): Don't set
6907 overlay_strings_at_end_processed_p if we're currently reading from
6908 a display string.
6909
6910 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
6911
6912 * xdisp.c (get_overlay_strings_1): Fix typo.
6913
6914 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
6915
6916 * xdisp.c (get_overlay_strings_1): Add missing argument type.
6917
6918 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
6919
6920 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
6921
6922 * xdisp.c (display_mode_element): Cancel the previous change.
6923 (decode_mode_spec): Likewise.
6924 (handle_auto_composed_prop): Don't make composition if it->string
6925 is a string.
6926
6927 2008-02-27 Kim F. Storm <storm@cua.dk>
6928
6929 * lisp.h (GLYPH): Change type from int to struct with separate char
6930 and face_id members.
6931 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
6932 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
6933 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
6934 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
6935 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
6936 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
6937 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
6938 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
6939 handle new Lisp glyph code encoding, either an integer or a cons.
6940
6941 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
6942 (GLYPH_ALIAS): Delete.
6943 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
6944 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
6945 (GLYPH_FROM_CHAR): Replace macro by ...
6946 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
6947
6948 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
6949 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
6950 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
6951 (GLYPH_INVALID_P): New macro.
6952 (spec_glyph_lookup_face): Update prototype.
6953
6954 * dispnew.c (line_draw_cost): Adapt to new glyph type.
6955 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
6956 new glyph code encoding.
6957 (spec_glyph_lookup_face): No return value; update passed glyph instead.
6958 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
6959
6960 * xdisp.c (get_next_display_element, next_element_from_display_vector):
6961 Adapt to new glyph type and new glyph code encoding.
6962
6963 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
6964
6965 * indent.c (current_column, current_column_1, Fmove_to_column)
6966 (compute_motion): Adapt to new glyph code encoding.
6967
6968 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
6969
6970 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
6971
6972 * process.c (wait_reading_process_output): Check for window
6973 changes caused by timers.
6974 Suggested by Johan Bockgård.
6975
6976 2008-02-27 Glenn Morris <rgm@gnu.org>
6977
6978 * emacs.c (USAGE1): Add `--disable-font-backend'.
6979
6980 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
6981
6982 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
6983 is made to the buffer.
6984
6985 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
6986
6987 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
6988 (face_at_string_position):
6989 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
6990 (face_at_string_position):
6991 * xdisp.c (display_string, next_overlay_change):
6992 * buffer.h (overlays_at):
6993 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
6994 Update callers.
6995
6996 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
6997
6998 * editfns.c (Fformat): Doc fix.
6999
7000 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
7001
7002 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
7003 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
7004 (Ffont_otf_alternates, Fquery_font): Doc fixes.
7005
7006 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
7007
7008 * buffer.c (Fbuffer_swap_text): New function.
7009 (syms_of_buffer): Defsubr it.
7010
7011 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
7012
7013 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
7014
7015 2008-02-25 Jason Rumney <jasonr@gnu.org>
7016
7017 * w32font.c (w32font_draw): Draw one character at a time when padding.
7018
7019 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
7020
7021 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
7022 Handle a nil arg. Use run_window_configuration_change_hook.
7023 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
7024 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
7025 Use run_window_configuration_change_hook.
7026
7027 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
7028
7029 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
7030 1-pixel width.
7031
7032 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
7033
7034 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
7035 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
7036 if the glyph in the font is zero pixel with.
7037
7038 * dispextern.h (struct glyph_string): New member padding_p.
7039
7040 * w32font.c (w32font_draw): Pay attention to s->padding_p.
7041
7042 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
7043
7044 * xfont.c (xfont_draw): Pay attention to s->padding_p.
7045
7046 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
7047
7048 * font.c: If the font driver doesn't have `shape' function, return Qnil.
7049
7050 2008-02-25 Jason Rumney <jasonr@gnu.org>
7051
7052 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
7053
7054 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
7055
7056 Allow fine-grained image-cache flushing.
7057 * dispextern.h (struct image): Add `dependencies' field.
7058 (clear_image_caches): Change arg to Lisp_Object.
7059 * image.c (make_image): Initialize `dependencies' field.
7060 (clear_image_cache): Change arg to allow fine-grained flushing.
7061 Perform the flush even if image-cache-eviction-delay is nil.
7062 (clear_image_caches): Change arg to Lisp_Object.
7063 (Fclear_image_cache): Expand meaning of the argument.
7064 (mark_image): Mark `dependencies' field.
7065 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
7066 (lface_hash): Use XHASH rather than XFASTINT.
7067 (face_at_buffer_position): Fix int -> EMACS_INT position.
7068 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
7069 (select_frame_for_redisplay): Remove code duplication.
7070 (redisplay_internal): Adapt arg to call to clear_image_caches.
7071
7072 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
7073
7074 * s/vms4-0.h:
7075 * s/vms4-2.h:
7076 * s/vms4-4.h:
7077 * s/vms5-5.h: Remove, unused.
7078
7079 * s/irix5-2.h:
7080 * s/irix6-0.h:
7081 * s/riscos5.h:
7082 * s/mach-bsd4-3.h:
7083 * m/mips4.h: Remove files for obsolete systems.
7084
7085 * Makefile.in:
7086 * filelock.c:
7087 * unexmips.c:
7088 * m/hp9000s300.h:
7089 * m/iris4d.h:
7090 * s/aix3-1.h:
7091 * s/hpux.h:
7092 * s/msdos.h:
7093 * s/usg5-0.h:
7094 * s/usg5-2-2.h:
7095 * s/usg5-2.h:
7096 * s/usg5-3.h: Remove references to obsolete variables.
7097
7098 * s/irix5-0.h: Remove, move all the contents ...
7099 * s/irix6-5.h: ... here. Simplify.
7100 * config.in: Regenerate.
7101
7102 2008-02-24 Jason Rumney <jasonr@gnu.org>
7103
7104 * w32term.c (x_draw_glyph_string_background): Clear the background
7105 manually when cleartype is in use.
7106 (x_draw_glyph_string_foreground): Draw text transparently when
7107 cleartype is in use.
7108
7109 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
7110 a font into it unless we have to.
7111
7112 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
7113
7114 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
7115 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
7116
7117 2008-02-18 Jason Rumney <jasonr@gnu.org>
7118
7119 * w32fns.c (Fw32_shell_execute): Encode parameters.
7120
7121 2008-02-09 Eli Zaretskii <eliz@gnu.org>
7122
7123 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
7124
7125 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
7126
7127 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
7128
7129 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
7130
7131 * xterm.c (x_set_offset): Don't change the gravity if
7132 CHANGE_GRAVITY is -1.
7133
7134 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
7135
7136 * fileio.c (auto_save_error_occurred): New var.
7137 (auto_save_error): Set it.
7138 (Fdo_auto_save): Don't overwrite the error message if an auto-save
7139 error occurred.
7140
7141 2008-02-23 Eli Zaretskii <eliz@gnu.org>
7142
7143 * w32.c (globals_of_w32): Add initializations for
7144 g_b_init_get_sid_sub_authority and
7145 g_b_init_get_sid_sub_authority_count.
7146
7147 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
7148
7149 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
7150 (font_parse_xlfd): Use them for sanity check.
7151 (Finternal_set_font_style_table): Make sure the table is bijective.
7152
7153 Consolidate the image_cache to the terminal struct.
7154 * termhooks.h (P_): Remove redundant def.
7155 (struct terminal): New field `image_cache'.
7156 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
7157 of FRAME_X_IMAGE_CACHE.
7158 * xterm.h (struct x_display_info): Remove image_cache field.
7159 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
7160 * w32term.h (struct w32_display_info): Remove image_cache field.
7161 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
7162 * macterm.h (struct mac_display_info): Remove image_cache field.
7163 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
7164 * xterm.c (x_term_init):
7165 * w32term.c (w32_term_init):
7166 * macterm.c (mac_term_init): Set the image_cache in the terminal.
7167 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
7168 Remove declarations.
7169 (clear_image_caches, mark_image_cache): New declarations.
7170 * xfaces.c (clear_face_cache):
7171 * xdisp.c (redisplay_internal): Use clear_image_caches.
7172 * image.c (clear_image_cache): Don't check that a frame is on
7173 a window-system before checking if it shares the same cache.
7174 (clear_image_caches): New function.
7175 (Fclear_image_cache): Use it.
7176 (mark_image): Move from allo.c.
7177 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
7178 * alloc.c (mark_image, mark_image_cache): Move to image.c.
7179 (mark_object): Don't call mark_image_cache for frames.
7180 (mark_terminals): Call mark_image_cache.
7181
7182 * lisp.h (Fdelete_terminal): Declare.
7183
7184 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
7185 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
7186 wrong_type_argument.
7187
7188 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
7189
7190 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
7191 malayalam.el, and tamil.el. Add sinhala.el.
7192
7193 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
7194
7195 * xterm.c (x_connection_closed): Consolidate identical tests.
7196 (x_delete_terminal): Don't crash if called via x_connection_closed.
7197
7198 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
7199
7200 * xdisp.c (decode_mode_spec): New arg string.
7201 (display_mode_element): Adjust for the above change.
7202
7203 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
7204
7205 * callint.c (Fcall_interactively): Use AREF.
7206
7207 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
7208
7209 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
7210
7211 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
7212
7213 * xfns.c (Fx_show_tip): Set string to " " if empty.
7214
7215 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
7216
7217 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
7218 with Qt.
7219
7220 2008-02-17 Kenichi Handa <handa@m17n.org>
7221
7222 * ftfont.c (ftfont_shape): Return Lispy number.
7223
7224 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
7225 for GCs.
7226 (Finternal_set_font_selection_order): Call font_update_sort_order
7227 only when enable_font_backend is set.
7228 (realize_x_face): Set face->font_info to that of default face only
7229 when enable_font_backend is set.
7230
7231 * xdisp.c (handle_composition_prop): Set it->c to the fist
7232 character of the composed region.
7233 (fill_composite_glyph_string): Set base_face->font_info to
7234 s->font_info. Get a face for ascii from base_face->ascii_face.
7235 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
7236 with a face already decided.
7237 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
7238 non-negative.
7239 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
7240 call font_prepare_composition unconditionally.
7241
7242 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
7243
7244 * xterm.h (struct x_display_info): New member font.
7245
7246 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
7247 (x_set_mouse_face_gc, x_new_font): Likewise.
7248 (x_term_init): Setup display_info->font.
7249 (x_delete_terminal): Free display_info->font.
7250
7251 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
7252
7253 * ftxfont.c (ftxfont_default_fid): Delete it.
7254 (ftxfont_open): Set xfont->fid to 0.
7255 (ftxfont_end_for_frame): Clear data specific to the frame and the
7256 font-driver.
7257
7258 * xftfont.c (xftfont_default_fid): Delete it.
7259 (xftfont_open): Set xfont->fid to 0.
7260
7261 * fontset.c (FONTSET_OBJLIST): New macro.
7262 (fontset_find_font): Update font-object list of the fontset.
7263 (free_realized_fontset): New function.
7264 (free_face_fontset): Call free_realized_fontset.
7265 (Ffont_info): Call font_close_object only when enable_font_backend
7266 is set.
7267
7268 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
7269 [HAVE_NTGUI]: Include w32term.h.
7270 [MAC_OS]: Include macterm.ch.
7271 (font_otf_ValueRecord): Use make_number.
7272 (font_finish_cache): Fix handling of reference count.
7273 (font_clear_cache): Update num_fonts.
7274 (font_open_entity): Update smallest_char_width and
7275 smallest_font_height of the frame.
7276 (font_close_object): Update num_fonts.
7277 (Fclear_font_cache): Fix finding the target cache data.
7278
7279 2008-02-16 Glenn Morris <rgm@gnu.org>
7280
7281 * fontset.c (Finternal_char_font): Fix compilation warning.
7282
7283 2008-02-16 Eli Zaretskii <eliz@gnu.org>
7284
7285 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
7286 instead of char arrays. Enlarge the size of array passed to
7287 get_token_information.
7288
7289 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
7290 warnings.
7291
7292 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
7293
7294 * .gdbinit: Don't set `args', it breaks gdb --args.
7295
7296 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
7297
7298 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
7299 within a narrowed buffer.
7300
7301 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
7302
7303 * coding.c (decode_coding_object, encode_coding_object):
7304 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
7305
7306 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
7307
7308 * coding.c (coding_set_destination): Use BEG_BYTE rather than
7309 hardcoding 1.
7310 (detect_coding_system):
7311 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
7312 (string_char_to_byte, string_byte_to_char, insert_from_gap):
7313 * insdel.c (insert_from_gap):
7314 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
7315 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
7316 (string_to_multibyte):
7317 * character.c (chars_in_text, multibyte_chars_in_text):
7318 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
7319
7320 * character.h (FETCH_STRING_CHAR_ADVANCE)
7321 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
7322 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
7323 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
7324
7325 * casefiddle.c (casify_region): Only call after-change and composition
7326 functions on the part of the region that was changed.
7327
7328 * keyboard.c (read_avail_input):
7329 * frame.c (Fdelete_frame): Call Fdelete_terminal.
7330
7331 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
7332
7333 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
7334 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
7335
7336 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
7337
7338 * w32menu.c (push_submenu_start, push_submenu_end)
7339 (push_left_right_boundary, push_menu_pane, push_menu_item):
7340 * keyboard.c (read_key_sequence): Don't pass args with side effects
7341 to AREF, it fails when compiling with -DENABLE_CHECKING.
7342
7343 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
7344
7345 * Makefile.in (${lispsource}international/charprop.el):
7346 Delete this target.
7347
7348 * search.c (boyer_moore): Fix incorrect synching of the trunk and
7349 emacs-unicode-2.
7350
7351 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
7352
7353 * terminal.c (Fdelete_terminal): Clean up the `force' path.
7354
7355 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
7356
7357 * frame.c (Qnoelisp): New symbol.
7358 (syms_of_frame): Initialize it.
7359 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
7360 harmless Elisp code, from a strong `force' from x_connection_closed.
7361 * frame.h (Qnoelisp): Declare.
7362 * xterm.c (x_connection_closed): Pass `noelisp'.
7363
7364 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
7365 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
7366 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
7367 rather than `int' for the type of `type'.
7368
7369 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
7370
7371 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
7372
7373 * Makefile.in (GNUC): Remove support for gcc-1.x.
7374
7375 2008-02-10 Richard Stallman <rms@gnu.org>
7376
7377 * lisp.h (ASET): Use AREF, not ASLOT.
7378
7379 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
7380
7381 * lisp.h (ASET): Check bounds.
7382
7383 2008-02-10 Glenn Morris <rgm@gnu.org>
7384
7385 * buffer.c (mode-name): Doc fix.
7386
7387 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
7388
7389 * Makefile.in:
7390 * emacs.c:
7391 * gmalloc.c:
7392 * keyboard.c:
7393 * lisp.h:
7394 * m/ibm370aix.h:
7395 * process.c:
7396 * regex.c:
7397 * s/hpux.h:
7398 * sysdep.c:
7399 * sysselect.h:
7400 * systty.h:
7401 * unexec.c:
7402 * w32term.c:
7403 * xsmfns.c:
7404 * xterm.c: Remove code that deals with obsolete variables.
7405
7406 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
7407
7408 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
7409 nothing else needs it anymore.
7410
7411 2008-02-09 Eli Zaretskii <eliz@gnu.org>
7412
7413 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
7414 instead of unibyte_char_to_multibyte.
7415
7416 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
7417
7418 * s/gnu-linux.h: Remove commented out code.
7419
7420 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
7421
7422 * Makefile.in: Update what RMS says about using autoconf.
7423 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
7424 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
7425 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
7426 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
7427
7428 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
7429
7430 * keymap.c (Fkey_description): Move side effect outside of macro call.
7431
7432 * xfaces.c (Finternal_make_lisp_face):
7433 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
7434
7435 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
7436 (syms_of_fontset): Use ASET.
7437
7438 * fns.c (concat): Move side effect outside of macro call.
7439 (hash_clear): Use ASET.
7440
7441 2008-02-08 Richard Stallman <rms@gnu.org>
7442
7443 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
7444 If FORCE, and frame has a surrogate minibuffer for another frame,
7445 delete the other frame first.
7446
7447 2008-02-07 Timo Savola <timo.savola@iki.fi>
7448
7449 * xterm.c (x_detect_focus_change): Handle embed client message.
7450 (handle_one_xevent): Ditto.
7451 (handle_one_xevent): If embedded and we get a button press/release,
7452 request focus.
7453 (xembed_set_info, xembed_send_message): New functions.
7454 (x_make_frame_visible): Call xembed_set_info if embedded.
7455 (x_make_frame_invisible): Call xembed_set_info if embedded.
7456 (x_term_init): Initialize Xatom_XEMBED.
7457 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
7458 (x_iconify_frame): Ditto.
7459
7460 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
7461 (enum xembed_info, enum xembed_message, enum xembed_focus)
7462 (enum xembed_modifier, enum xembed_accelerator): New.
7463 (xembed_set_info, xembed_send_message): Declare.
7464 (FRAME_X_EMBEDDED_P): New.
7465
7466 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
7467 gtk_plug_new.
7468
7469 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
7470 window ID of a frame.
7471 (x_window): Reparent frame if embedded.
7472 (Fx_create_frame): Don't set border width if embedded.
7473
7474 * emacs.c (USAGE3): Add --parent-id.
7475 (standard_args): Ditto.
7476
7477 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
7478
7479 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
7480
7481 2008-02-07 Jim Meyering <meyering@redhat.com>
7482
7483 Use "do...while (0)", not "if (1)...else" in macro definitions.
7484 The latter provokes a warning from gcc about the empty else, when
7485 followed by ";". Also, without that trailing semicolon, it would
7486 silently swallow up any following statement.
7487 * syntax.h (SETUP_SYNTAX_TABLE)
7488 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
7489 * buffer.h (DECODE_POSITION): Likewise.
7490 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
7491 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
7492 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
7493 (FETCH_CHAR_ADVANCE): Likewise.
7494 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
7495
7496 2008-02-07 Jim Meyering <meyering@redhat.com>
7497
7498 * lread.c [lint]: Don't include <sys/inode.h>.
7499
7500 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
7501
7502 * xselect.c (x_handle_dnd_message):
7503 * xmenu.c (digest_single_submenu, xmenu_show):
7504 * xdisp.c (with_echo_area_buffer_unwind_data)
7505 (format_mode_line_unwind_data, unwind_format_mode_line)
7506 (display_menu_bar):
7507 * eval.c (Ffetch_bytecode):
7508 * doc.c (store_function_docstring):
7509 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
7510 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
7511 * buffer.c (add_overlay_mod_hooklist): Use ASET.
7512
7513 2008-02-07 Kenichi Handa <handa@m17n.org>
7514
7515 * ftxfont.c (ftxfont_open): Don't set
7516 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
7517
7518 * ftfont.c (ftfont_open): Fix previous change.
7519
7520 2008-02-06 Jason Rumney <jasonr@gnu.org>
7521
7522 * w32font.c (w32font_text_extents): Fill in lbearing metric.
7523 Use cached metrics for ASCII characters.
7524 (w32font_open_internal): Don't set font's owning_frame.
7525 Cache metrics for ASCII characters.
7526
7527 * w32font.h (struct w32font_info): Add ascii_metrics.
7528 Remove owning_frame.
7529
7530 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
7531
7532 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
7533 to negative value.
7534
7535 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
7536
7537 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
7538
7539 * charset.c (syms_of_charset): Set QCtest and Qeq.
7540
7541 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
7542
7543 * process.c (Fstart_process):
7544 * callproc.c (Fcall_process): Handle the case where
7545 Funhandled_file_name_directory returns nil.
7546
7547 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
7548 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
7549 * font.c (check_gstring): Use them and AREF to access the vector before
7550 we know it's really a gstring.
7551 (Ffont_shape_text): Fix typo.
7552 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Oject mixups.
7553
7554 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
7555 Declare.
7556
7557 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
7558
7559 2008-02-05 Jason Rumney <jasonr@gnu.org>
7560
7561 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
7562 Set smallest_font_height and smallest_char_width in display info.
7563
7564 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
7565
7566 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
7567
7568 2008-02-05 Miles Bader <miles@gnu.org>
7569
7570 * xfaces.c (get_lface_attributes, merge_named_face)
7571 (lookup_named_face, lookup_derived_face, realize_named_face):
7572 Revert 2008-02-01 change by cyd@stupidchicken.com.
7573
7574 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
7575
7576 * fontset.c (Ffontset_info): Handle the case of inhibitting the
7577 fallback fonts.
7578 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
7579
7580 2008-02-04 Jason Rumney <jasonr@gnu.org>
7581
7582 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
7583 set full_name.
7584 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
7585
7586 2008-02-03 Jason Rumney <jasonr@gnu.org>
7587
7588 * makefile.w32-in (OBJ1): Include font.o here.
7589 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
7590
7591 2008-02-02 Jason Rumney <jasonr@gnu.org>
7592
7593 * makefile.w32-in (temacs): Bump EMHEAP to 21.
7594
7595 2008-02-01 Jason Rumney <jasonr@gnu.org>
7596
7597 * s/cygwin.h: Define VIRT_ADDR_VARIES.
7598
7599 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
7600
7601 2008-02-01 Andreas Schwab <schwab@suse.de>
7602
7603 * Makefile.in (shortlisp, lisp): Update for rename of
7604 ../lisp/language/myanmar.el.
7605
7606 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
7607
7608 * xfaces.c (get_lface_attributes): Delete function.
7609 (merge_named_face, lookup_named_face, lookup_derived_face)
7610 (realize_named_face): Call lface_from_face_name directly, and use
7611 the fact that merge_face_vectors does not alter its FROM argument.
7612
7613 2008-02-01 Jason Rumney <jasonr@gnu.org>
7614
7615 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
7616 input in the default locale. Handle non-Unicode multibyte input.
7617
7618 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7619
7620 * fontset.c (reorder_font_vector): Exclude nil elements from the
7621 font group. Don't try multiple fonts.
7622 (fontset_font): Adjust for the above change.
7623 (Finternal_char_font): Return nil if the found font doesn't
7624 contain the character ch.
7625
7626 * Makefile.in (lisp, shortlisp): Add cham.el.
7627
7628 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7629
7630 * font.h (FONTP): Make it return 1 also for a font-object.
7631
7632 * .gdbinit (xfontset): New function.
7633
7634 * font.c (font_find_for_lface): Check if the character C is
7635 supported or not only for the first font.
7636
7637 * fontset.c (reorder_font_vector): Fix typo.
7638 (fontset_find_font): Don't add a font-spec specifying a script.
7639 Use 0 (not Qt) for the indication of empty font-group. Change the
7640 format of RFONT-DEF. Return Qt if no font in the font-group
7641 support the character.
7642 (fontset_font): Adjust for the above change. If no font was
7643 found the character, remember that.
7644 (face_for_char): Adjust for the change of RFONT-DEF.
7645 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
7646 no font for the target.
7647 (Finternal_char_font): Adjust for the change of RFONT-DEF.
7648
7649 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7650
7651 * font.c (font_load_for_face): Handle the case that the font in
7652 face->lface is a string.
7653
7654 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7655
7656 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
7657
7658 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7659
7660 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
7661 Fix previous change. If the frame is not on a window system,
7662 signal an error.
7663
7664 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7665
7666 * coding.c (decode_coding_object, encode_coding_object): Adjust
7667 marker positions after conversion.
7668
7669 * lisp.h (struct Lisp_Marker): New member need_adjustment.
7670
7671 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7672
7673 * font.c (font_find_for_lface): Fix the handling of the return
7674 value of font_has_char.
7675 (Ffont_shape_text): Fix previous change.
7676
7677 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
7678 (fontset_ref_and_range): Delete it.
7679 (fontset_find_font): Call char_table_ref_and_range instead of
7680 FONTSET_REF_AND_RANGE.
7681 (make_fontset): Don't setup font groups of Latin here.
7682 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
7683 (new_fontset_from_font): Make the specified font the default for
7684 all Latin characters.
7685
7686 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7687
7688 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
7689 is on a window system before accessing the fontset of the frame.
7690
7691 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7692
7693 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
7694
7695 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
7696 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
7697
7698 * font.c (Ffont_shape_text): If the font driver doesn't have a
7699 shaper function, make zero-width glyphs to have at least one-pixel
7700 width. Fix setting of `to' field of glyphs.
7701
7702 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7703
7704 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
7705 glyphs.
7706
7707 * font.h (struct font_driver): Improve docstring of member `shape'.
7708
7709 2008-02-01 Kenichi Handa <handa@m17n.org>
7710
7711 * composite.c (syms_of_composite): Fix docstring of
7712 auto-composition-function.
7713
7714 * font.h (LGLYPH_SIZE): New macro.
7715
7716 * font.c (Ffont_fill_gstring): Stop filling when a character not
7717 supported by the font is found.
7718 (Ffont_shape_text): When a shape callback function returns nil,
7719 try at most two more times with larger gstring.
7720 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
7721
7722 * xdisp.c (handle_auto_composed_prop): Change the argument to
7723 auto-composition-function.
7724
7725 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
7726 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
7727 Lispy glyph and store it in the lgstring.
7728
7729 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
7730
7731 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
7732
7733 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7734
7735 * font.c (Ffont_shape_text): Avoid unnecessary composition.
7736
7737 * fontset.c (Vfont_encoding_charset_alist): New variable.
7738 (syms_of_fontset): DEFVAR it.
7739 (reorder_font_vector, fontset_find_font): Optimize for the case of
7740 no need of reordering.
7741 (face_for_char): Map the charset property by
7742 Vfont_encoding_charset_alist.
7743
7744 2008-02-01 Jason Rumney <jasonr@gnu.org>
7745
7746 * w32font.c (logfonts_match): Don't check adstyle here.
7747 (font_matches_spec): Check here against physical font instead.
7748 (add_font_entity_to_list): Avoid some substitutions.
7749
7750 * font.c (font_parse_fcname): Default weight and slant to normal.
7751 (font_score): Prefer normal fonts if weight or slant unspecified.
7752 (font_score) [WINDOWSNT]: Scale weight difference down to closer
7753 match freetype scores.
7754
7755 2008-02-01 Jason Rumney <jasonr@gnu.org>
7756
7757 * w32font.c (w32font_text_extents): Don't use the frame stored in the
7758 font, as it may have been deleted.
7759 (w32_enumfont_pattern_entity): Map generic family to adstyle using
7760 most common hyphenless variation.
7761 (logfonts_match): Check generic family.
7762 (font_matches_spec): Don't check generic family here.
7763 (fill_in_logfont): Set generic family based on adstyle.
7764
7765 * w32font.h (w32font_get_cache): Update declaration.
7766
7767 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7768
7769 * ftfont.c (ftfont_get_cache): Adjust the argument type.
7770
7771 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
7772 If none of the new drivers are available, call font_update_drivers
7773 with the old drivers.
7774
7775 * w32font.c (w32font_get_cache): Adjust the argument type.
7776
7777 * xfont.c (xfont_get_cache): Adjust the argument type.
7778
7779 * font.h (struct font_driver): Change argument type of get_cache.
7780
7781 * xftfont.c (xftfont_start_for_frame): Delete prototype.
7782
7783 * font.c (Ffont_get): Fix arguments to Fassoc.
7784 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
7785 (font_clear_cache): New function.
7786 (font_list_entities, font_matching_entity): Use font_get_cache.
7787 (font_update_drivers): Call font_clear_cache when finishing a driver.
7788
7789 * fontset.c (fontset_find_font): Fix previous change.
7790
7791 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7792
7793 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
7794 dpyinfo->font_table.
7795 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
7796 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
7797
7798 * font.c (font_at): Handle the case that the arg C is negative.
7799 Handle the unibyte case.
7800 (Ffont_at): Call font_at with the arg C -1.
7801
7802 * xdisp.c (handle_auto_composed_prop): Don't get a character at
7803 the position here, and call font_at with the arg C -1.
7804 Don't check the range of the existing composition at the point.
7805
7806 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7807
7808 * fontset.c (fontset_add): New args charset_id and family.
7809 Change caller.
7810 (load_font_get_repertory, fontset_find_font): Assume that
7811 font_spec is always a font-spec object.
7812 (Fset_fontset_font): Always store a font-spec object in a fontset.
7813
7814 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
7815 instead of get_property_and_range.
7816
7817 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7818
7819 * xftfont.c (struct xftfont_info): Delete the member ft_face.
7820 (xftfont_open): Don't keep locking face.
7821 (xftfont_close): Don't unlock face.
7822 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
7823
7824 * fontset.c (fontset_find_font): Don't prefer a font of
7825 supplementary charset.
7826
7827 2008-02-01 Kenichi Handa <handa@m17n.org>
7828
7829 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
7830 script, langsys_tag to langsys, new member script.
7831 (OTF_TAG_STR): Terminate by '\0'.
7832 (ftfont_get_open_type_spec): If :otf prop is is spec, Limit the
7833 listing to the script specified in that property. Fix arg to
7834 OTF_check_features.
7835
7836 2008-02-01 Jason Rumney <jasonr@gnu.org>
7837
7838 * w32font.h: New file.
7839
7840 * w32font.c: Include it.
7841 (struct w32font_info): Add owning_frame field. Move to w32font.h.
7842 (w32font_open): Set owning_frame.
7843 (w32font_text_extents): Use owning_frame.
7844 (struct font_callback_data): Add opentype_only field.
7845 (add_font_entity_to_list): Use it to filter fonts.
7846 Don't check against full name.
7847 (w32font_list_internal): New function.
7848 (w32font_list): Use it.
7849 (w32font_match_internal): New function.
7850 (w32font_match): Use it.
7851 (w32font_open_internal): New function.
7852 (w32font_open): Use it.
7853 (w32font_get_cache, w32font_close, w32font_has_char)
7854 (w32font_encode_char, w32font_text_extents, w32font_draw):
7855 Make non-static.
7856
7857 * makefile.w32-in (w32font.o): Depend on w32font.h.
7858
7859 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7860
7861 * charset.c (Fdefine_charset_internal): Record a supplementary
7862 charset at the tail of Vcharset_order_list.
7863
7864 * font.c (Ffont_shape_text): Fix the return value.
7865
7866 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
7867
7868 * xdisp.c (handle_auto_composed_prop): Fix previous change.
7869
7870 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7871
7872 * ftfont.c (struct OpenTypeSpec): New struct.
7873 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
7874 (ftfont_get_open_type_spec): New function.
7875 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
7876
7877 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
7878
7879 2008-02-01 Jason Rumney <jasonr@gnu.org>
7880
7881 * w32font.c (add_font_entity_to_list): Compare only the beginning
7882 of full name.
7883
7884 2008-02-01 Kenichi Handa <handa@m17n.org>
7885
7886 * xdisp.c (handle_auto_composed_prop): Simplify the code.
7887 Never return HANDLED_RECOMPUTE_PROPS.
7888
7889 2008-02-01 Kenichi Handa <handa@m17n.org>
7890
7891 * font.c (font_gstring_produce): Delete it.
7892
7893 * composite.h (COMPOSITION_METHOD):
7894 Handle COMPOSITION_WITH_GLYPH_STRING.
7895
7896 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7897
7898 * xfont.c (Qx): Delete.
7899 (syms_of_xfont): Don't initialize Qx.
7900
7901 * composite.h (enum composition_method):
7902 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
7903
7904 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7905
7906 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
7907 (choose_face_font): Accept new form of font-spec.
7908
7909 * frame.h (font_driver_list): Declare it unconditionally.
7910 (struct frame): Define members font_driver_list and font_data_list
7911 unconditionally.
7912
7913 * fontset.c: Include "font.h" unconditionally.
7914 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
7915 (Fset_fontset_font): Accept a font-spec object.
7916
7917 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
7918 PIXEL_SIZE part a wild card.
7919
7920 * dispextern.h (struct glyph_string): Define members clip and
7921 num_clips unconditionally.
7922 (struct face): Define members font_info and extra unconditionally.
7923
7924 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
7925 ftfont_info only when HAVE_LIBOTF is defined.
7926
7927 2008-02-01 Andreas Schwab <schwab@suse.de>
7928
7929 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
7930 and end.
7931
7932 2008-02-01 Jason Rumney <jasonr@gnu.org>
7933
7934 * w32font.c (w32font_driver): Add new fields.
7935
7936 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
7937
7938 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
7939 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
7940 (LIBES): Add @M17N_FLT_CFLAGS@.
7941
7942 * composite.c (compose_text): Don't treat the new style
7943 composition specially.
7944
7945 * emacs.c (main): Call syms_of_font unconditionally.
7946
7947 * font.h (FONT_ENTITY_NOT_LOADABLE)
7948 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
7949 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
7950 (struct font_driver): New member shape.
7951 (font_registry_charsets): Extern it.
7952 (font_find_for_lface, font_prepare_composition): Adjust prototype.
7953 (font_otf_capability, font_drive_otf): Delete their externs.
7954
7955 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
7956 (font_charset_alist, font_registry_charsets): Move from xfont.c
7957 and rename.
7958 (font_prop_validate_otf): New function.
7959 (font_property_table): Register it for QCotf.
7960 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
7961 (font_drive_otf): Delete.
7962 (font_prepare_composition): New arg F. Adjust for the change of
7963 lispy gstring.
7964 (font_find_for_lface): New arg C.
7965 (font_load_for_face): Adjust for the change of font_find_for_lface.
7966 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
7967 lispy gstring.
7968 (Ffont_shape_text): New function.
7969 (Fopen_font): If the font size is not given, use 12-pixel.
7970 (Ffont_at): New arg STRING.
7971 (syms_of_font): Initalize font_charset_alist.
7972 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
7973 conditionally.
7974
7975 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
7976 fonts of the same font-spec. Change the format of RFONT-DEF.
7977 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
7978 Adjust for the change of RFONT-DEF.
7979 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
7980
7981 * ftfont.h: New file.
7982
7983 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
7984 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
7985 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
7986 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
7987 font_otf_capability and font_drive_otf, set ftfont_shape.
7988 (ftfont_list): Adjust for the change of :otf property value.
7989 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
7990 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
7991 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
7992 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
7993 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
7994 (otf_gstring, gstring, m17n_flt_initialized): New variables.
7995
7996 * w32term.c (x_draw_composite_glyph_string_foreground):
7997 Adjust for the change of lispy gstring.
7998
7999 * xdisp.c (handle_composition_prop): Adjust for the change of
8000 lispy gstring. Call a function for auto-composition with the
8001 third arg it->window.
8002 (fill_composite_glyph_string): Adjust for the change of lispy string.
8003 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
8004
8005 * xfaces.c (set_font_frame_param): Adjust for the change of
8006 font_find_for_lface.
8007
8008 * xfont.c (x_font_charset_alist): Move to font.c and rename.
8009 (xfont_registry_charsets): Likewise. Change caller.
8010 (syms_of_xfont): Don't handle x_font_charset_alist.
8011
8012 * xftfont.c: Include "ftfont.h".
8013 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
8014 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
8015 (xftfont_close) [HAVE_LIBOTF]: Close otf.
8016 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
8017 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
8018 Set xftfont_driver.shape to xftfont_shape.
8019
8020 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
8021 the change of lispy gstring.
8022
8023 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8024
8025 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
8026
8027 2008-02-01 Jason Rumney <jasonr@gnu.org>
8028
8029 * w32font.c (w32font_draw): Fill background manually.
8030
8031 2008-02-01 Jason Rumney <jasonr@gnu.org>
8032
8033 * font.c (Qfontp): Remove unused symbol.
8034 (QCantialias): New symbol.
8035 (syms_of_font): Define it.
8036 (font_property_table): Set a validator for QCantialias.
8037
8038 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
8039 Define if not already.
8040 (QCfamily): Share with xfaces.c.
8041 (Qstandard, Qsubpixel, Qnatural): New symbols.
8042 (syms_of_w32font): Define them. Don't define QCfamily here.
8043 (w32_antialias_type, lispy_antialias_type): New functions.
8044 (w32_enumfont_pattern_entity): New arg requested_font.
8045 Set antialias parameter if non-default was requested.
8046 (fill_in_logfont): Fill in lfQuality if :antialias specified.
8047
8048 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8049
8050 * lread.c (read1): Undo the previous change.
8051
8052 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
8053
8054 * frame.c (Fdelete_frame): Call font_update_drivers only when
8055 USE_FONT_BACKEND is defined.
8056
8057 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8058
8059 * font.h (struct font_bitmap): New member bits_per_pixel.
8060 (struct font_driver): New members start_for_frame and end_for_frame.
8061 (struct font_data_list): New struct.
8062 (font_put_frame_data, font_get_frame_data): Extern them.
8063
8064 * frame.h (struct frame): New member font_data_list.
8065
8066 * font.c (font_update_drivers): Call driver->start_for_frame and
8067 driver->end_for_frame at proper timings.
8068 (font_put_frame_data, font_get_frame_data): New functions.
8069 (Ffont_spec): Add usage in the docstring.
8070
8071 * frame.c (make_frame): Initialize f->font_data_list to NULL.
8072 (Fdelete_frame): Call font_update_drivers.
8073
8074 * xftfont.c (struct xftface_info): Delete the member xft_draw.
8075 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
8076 (xftfont_get_xft_draw): New function.
8077 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
8078 (xftfont_end_for_frame): New function.
8079 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
8080
8081 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
8082 Change argument. Cache GCs in the per-frame data.
8083 (struct ftxfont_frame_data): New struct.
8084 (ftxfont_draw_bitmap): New arg gc_fore and flush.
8085 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
8086 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
8087 (ftxfont_end_for_frame): New function.
8088 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
8089
8090 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
8091
8092 2008-02-01 Kenichi Handa <handa@m17n.org>
8093
8094 * xselect.c (Vselection_coding_system)
8095 (Vnext_selection_coding_system): Delete them.
8096 (syms_of_xselect): Don't declare selection-coding-system and
8097 next-selection-coding-system. They are declared in select.el.
8098
8099 2008-02-01 Jason Rumney <jasonr@gnu.org>
8100
8101 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
8102
8103 * w32fns.c: Include imm.h.
8104 (get_composition_string_fn, get_ime_context_fn): New optional
8105 system functions.
8106 (globals_of_w32fns): Load them from imm32.dll.
8107 (ignore_ime_char): New flag.
8108 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
8109 WM_IME_ENDCOMPOSITION messages.
8110
8111 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
8112 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
8113
8114 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8115
8116 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
8117 (READCHAR_REPORT_MULTIBYTE): New macro.
8118 (readchar): New 2nd arg MULTIBYTE.
8119 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
8120 Make symbol's name multibyte according to the multibyteness of the
8121 source.
8122
8123 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8124
8125 * xfaces.c (face_for_overlay_string): Call lookup_face with
8126 correct arguments (fix of synching with the trunk).
8127
8128 2008-02-01 Kenichi Handa <handa@m17n.org>
8129
8130 * font.c (font_prop_validate_symbol, font_prop_validate_style)
8131 (font_prop_validate_non_neg, font_prop_validate_spacing):
8132 Delete argument prop_index.
8133 (font_property_table): Change arguments to validater. Change Callers.
8134 (font_lispy_object): Delete.
8135 (font_at): Use font_find_object instead fo font_lispy_object.
8136
8137 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
8138
8139 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
8140 and file names.
8141
8142 2008-02-01 Jason Rumney <jasonr@gnu.org>
8143
8144 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
8145 (font_matches_spec): Remove debug output.
8146 (add_font_entity_to_list): Avoid using substituted fonts.
8147
8148 2008-02-01 Jason Rumney <jasonr@gnu.org>
8149
8150 * doc.c (Fsnarf_documentation):
8151 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
8152
8153 2008-02-01 Miles Bader <miles@gnu.org>
8154
8155 * dispextern.h (struct glyph_row): Only define "clip" field if
8156 HAVE_WINDOW_SYSTEM is defined.
8157
8158 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8159
8160 Fix up multi-tty merge.
8161
8162 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
8163 and indentation.
8164
8165 * xfaces.c (free_realized_face, clear_face_gcs):
8166 Include font_done_for_face in the input_blocked section, just in case.
8167
8168 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
8169 (get_char_face_and_encoding): Undo last change and remove the *other*
8170 duplicate definition (i.e. keep the one that's better scoped and that
8171 includes code for the font-backend).
8172
8173 * terminal.c (create_terminal): Default keyboard_coding to
8174 `no-conversion' and terminal_coding to `undecided'.
8175
8176 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
8177
8178 * fontset.c (free_realized_fontsets): Check that the table entry does
8179 contain a fontset before trying to compare it to `base'.
8180
8181 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
8182 syms_of_charset, and syms_of_coding earlier because init_window_once
8183 now needs Vcoding_system_hash_table to be setup.
8184
8185 * coding.h (default_buffer_file_coding): Remove.
8186
8187 * coding.c (default_buffer_file_coding): Remove.
8188 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
8189 than ->symbol, and use the terminal-local coding system.
8190 (syms_of_coding): Don't setup the coding-systems that are not
8191 terminal-local.
8192 (Fdefine_coding_system_internal): Use XCAR/XCDR.
8193
8194 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
8195 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
8196
8197 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
8198 in chartab.c and were re-added here by mistake.
8199 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
8200
8201 * doc.c (Fsnarf_documentation):
8202 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
8203 src to etc.
8204
8205 * ChangeLog.10: Add mistakenly removed entry.
8206
8207 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
8208
8209 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
8210
8211 2008-02-01 Miles Bader <miles@gnu.org>
8212
8213 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
8214 Add extra args to FACE_FOR_CHAR.
8215
8216 2008-02-01 Kenichi Handa <handa@m17n.org>
8217
8218 * keymap.c (where_is_internal_1): If key is a cons, store the copy
8219 in sequence.
8220
8221 * chartab.c (map_sub_char_table, map_char_table): If the range
8222 contains just one character, call the function with that character
8223 even if the depth is not 3.
8224
8225 2008-02-01 Jason Rumney <jasonr@gnu.org>
8226
8227 * w32font.c (w32font_text_extents): Calculate metrics for the
8228 whole string.
8229
8230 2008-02-01 Jason Rumney <jasonr@gnu.org>
8231
8232 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
8233
8234 2008-02-01 Jason Rumney <jasonr@gnu.org>
8235
8236 * w32term.c (x_set_glyph_string_clipping): Use
8237 get_glyph_string_clip_rects.
8238 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
8239 Adjust for the change of struct glyph_string.
8240
8241 * w32font.c (w32font_draw): Do clipping here.
8242
8243 2008-02-01 Kenichi Handa <handa@m17n.org>
8244
8245 * xftfont.c (xftfont_draw): Adjust for the change of struct
8246 glyph_string.
8247
8248 * xterm.c (x_set_glyph_string_clipping): Use
8249 get_glyph_string_clip_rects.
8250 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
8251 Adjust for the change of struct glyph_string.
8252
8253 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
8254 the resulting clip(s}.
8255 (expose_overlaps): Add arg r. Change callers. Set it to
8256 row->clip temporarily.
8257 (expose_window): Redraw rows overlapping the exposed area.
8258
8259 * dispextern.h (struct glyph_row): New member clip.
8260 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
8261 clip_height, new member clip, and num_clips.
8262
8263 2008-02-01 Kenichi Handa <handa@m17n.org>
8264
8265 * data.c (Fchar_or_string_p): Fix docstring.
8266
8267 2008-02-01 Kenichi Handa <handa@m17n.org>
8268
8269 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
8270 create a temporary XftDraw object.
8271
8272 2008-02-01 Kenichi Handa <handa@m17n.org>
8273
8274 * font.c (Ffontp): Fix docstring.
8275
8276 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
8277 strong evidence of ISO-2022.
8278
8279 2008-02-01 Kenichi Handa <handa@m17n.org>
8280
8281 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
8282 SYNTAX_ENTRY_FOLLOW_PARENT.
8283
8284 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
8285
8286 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
8287 its type.
8288 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
8289 Update to the new type of weak_hash_tables and next_weak.
8290
8291 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
8292 a plain C pointer to Lisp_Hash_Table.
8293
8294 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
8295 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
8296 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
8297 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
8298 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
8299 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
8300 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
8301 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
8302 (GC_EQ): Remove since they've been identical to their non-GC_
8303 alter-egos ever since the markbit was eradicated.
8304
8305 * alloc.c:
8306 * buffer.c:
8307 * buffer.h:
8308 * data.c:
8309 * fileio.c:
8310 * filelock.c:
8311 * fns.c:
8312 * frame.h:
8313 * lisp.h:
8314 * macterm.c:
8315 * print.c:
8316 * process.c:
8317 * w32fns.c:
8318 * w32menu.c:
8319 * w32term.c:
8320 * xfns.c:
8321 * xmenu.c:
8322 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
8323
8324 2008-02-01 Kenichi Handa <handa@m17n.org>
8325
8326 * chartab.c (map_sub_char_table): Make it work for the top-level
8327 char-table. Fix handling of parent char-table.
8328 (map_char_table): Adjust for the above change.
8329
8330 2008-02-01 Jason Rumney <jasonr@gnu.org>
8331
8332 * w32font.c (Qgdi): Rename from Qw32.
8333
8334 2008-02-01 Jason Rumney <jasonr@gnu.org>
8335
8336 * w32bdf.c (get_quoted_string): Make function static.
8337
8338 2008-02-01 Kenichi Handa <handa@m17n.org>
8339
8340 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
8341 bigger ascent and descent than those of the font, use them as
8342 font's ascent and descent.
8343
8344 2008-02-01 Kenichi Handa <handa@m17n.org>
8345
8346 * Makefile.in (${lispsource}international/charprop.el): Move this
8347 target within "#ifdef HAVE_UNIDATA" and "#endif".
8348
8349 2008-02-01 Kenichi Handa <handa@m17n.org>
8350
8351 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
8352 (shortlisp): Add ../lisp/language/tai-viet.el.
8353
8354 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
8355
8356 * Makefile.in (${lispsource}international/charprop.el): Depend on
8357 temacs${EXEEXT}.
8358
8359 2008-02-01 Jason Rumney <jasonr@gnu.org>
8360
8361 * w32font.c (w32font_close): Delete the GDI font object.
8362
8363 * w32menu.c: Include character.h.
8364
8365 * w32proc.c: Likewise.
8366
8367 * w32select.c: Likewise.
8368
8369 * makefile.w32-in (w32proc.o): Depend on character.h.
8370
8371 2008-02-01 Jason Rumney <jasonr@gnu.org>
8372
8373 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
8374
8375 * w32menu.c (syms_of_w32menu): Likewise.
8376
8377 * w32proc.c (syms_of_ntproc): Likewise.
8378
8379 * w32select.c (syms_of_w32select): Likewise.
8380
8381 * w32term.c (syms_of_w32term): Likewise.
8382
8383 2008-02-01 Jason Rumney <jasonr@gnu.org>
8384
8385 * w32font.c (w32font_draw): Delete brush after using it.
8386
8387 2008-02-01 Jason Rumney <jasonr@gnu.org>
8388
8389 * w32font.c (w32font_open): Don't set font_idx.
8390 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
8391 to font settings.
8392 (w32font_draw): Fill background explicitly.
8393
8394 2008-02-01 Jason Rumney <jasonr@gnu.org>
8395
8396 * w32term.c (w32_initialize): Don't call w32font_initialize.
8397
8398 * w32font.c (w32font_info): Remove subranges.
8399 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
8400 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
8401 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
8402 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
8403 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
8404 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
8405 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
8406 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
8407 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
8408 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
8409 New symbols.
8410 (font_callback_data): New struct.
8411 (w32font_list, w32font_match): Use it.
8412 (w32font_open): Don't populate subranges.
8413 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
8414 (w32font_encode_char): Always return unicode code-point as-is.
8415 (w32font_text_extents): Supply a transformation matrix to
8416 GetGlyphOutline. Never look up by glyph index. Avoid looping
8417 twice. Use unicode version of GetTexExtentPoint32 instead of
8418 glyph index version.
8419 (set_fonts_frame): Remove.
8420 (w32_enumfont_pattern_entity): Add frame parameter, use it to
8421 set frame parameter. Use backward compatible fake foundries.
8422 Save generic family in extra slot under QCfamily. Make width slot
8423 constant. Save QCspacing value. Save list of scripts instead of
8424 binary subranges.
8425 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
8426 (add_font_entity_to_list): Use font_callback_data struct. Filter
8427 unwanted fonts.
8428 (add_one_font_entity_to_list): Use font_callback_data struct.
8429 (w32_registry): Default to iso10646_1.
8430 (fill_in_logfont): Use dpi from extra slot. Don't bother with
8431 string font registries. Don't fill in font name if it is a generic
8432 family name, fill family instead. Use spacing, family and script
8433 extra info to fill pitch, family and charset fields.
8434 (list_all_matching_fonts): Use font_callback_data struct.
8435 (unicode_range_for_char): Remove.
8436 (font_supported_scripts): New function.
8437 (w32font_initialize): Remove.
8438 (syms_of_w32font): Update which symbols are defined.
8439
8440 2008-02-01 Jason Rumney <jasonr@gnu.org>
8441
8442 * font.c (font_pixel_size): Reverse assq_no_quit args.
8443
8444 * w32term.h (FONT_WIDTH): Report max width, not average.
8445 (FONT_MAX_WIDTH): Remove.
8446 (FONT_AVG_WIDTH): New macro.
8447
8448 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
8449 redefinition of FONT_WIDTH.
8450
8451 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
8452 (w32_cache_char_metrics): Use FONT_WIDTH.
8453
8454 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
8455
8456 2008-02-01 Jason Rumney <jasonr@gnu.org>
8457
8458 * w32font.c (w32font_open): Make lfHeight negative.
8459
8460 * w32fns.c (x_default_font_parameter): Use new style font name.
8461 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
8462
8463 2008-02-01 Jason Rumney <jasonr@gnu.org>
8464
8465 * w32font.c (QCsubranges): New symbol.
8466 (w32font_open, w32font_has_char): Get subranges from subproperty
8467 of extra.
8468 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
8469 (syms_of_w32font): Define :subranges symbol.
8470
8471 * font.c (font_put_extra): Expose externally.
8472
8473 * font.h (font_put_extra): Move declaration from font.c.
8474
8475 * font.c (Ffont_get): Use font driver to determine otf capability.
8476 (adjust_anchor): Check if driver defines anchor_point before using.
8477
8478 * w32font.c (w32font_open): Handle size, height and pixel_size better.
8479 (w32font_draw): Use options.
8480 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
8481 Fix detection of truetype fonts.
8482 (registry_to_w32_charset): Handle charsets other than iso8859-1
8483 expressed as lisp symbols.
8484 (w32_registry): Express charset as lisp symbol.
8485 (fill_in_logfont): Reverse pixel and point height logic.
8486 Don't set width here. Set quality to default.
8487
8488 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
8489 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
8490
8491 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
8492 Remove redundant loop and allocation.
8493
8494 * makefile.w32-in (font.o, w32font.o): New objects.
8495 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
8496 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
8497
8498 * xdisp.c (fill_composite_glyph_string): Make the first arg to
8499 STORE_XCHARB a valid l-value.
8500
8501 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
8502 calculations for non-Truetype fonts.
8503 (x_draw_glyph_string): Sync with xterm.c.
8504 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
8505 Remove redundant code.
8506 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
8507
8508 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
8509 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
8510
8511 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
8512 (x_to_w32_charset, w32_to_x_charset): Expose externally.
8513
8514 * w32font.c: New file for w32 font backend.
8515
8516 2008-02-01 Kenichi Handa <handa@m17n.org>
8517
8518 * term.c: Don't include "buffer.h" twice.
8519
8520 2008-02-01 Kenichi Handa <handa@m17n.org>
8521
8522 * character.c (Funibyte_string): New function.
8523 (syms_of_character): Defsubr it.
8524
8525 2008-02-01 Jason Rumney <jasonr@gnu.org>
8526
8527 * w32term.c [USE_FONT_BACKEND]:
8528 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
8529 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
8530 (x_draw_glyph_string, x_draw_glyph_string_foreground)
8531 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
8532 (x_free_frame_resources): Sync with xterm.c.
8533
8534 2008-02-01 Andreas Schwab <schwab@suse.de>
8535
8536 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
8537 char-table size.
8538
8539 2008-02-01 Kenichi Handa <handa@m17n.org>
8540
8541 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
8542
8543 2008-02-01 Kenichi Handa <handa@m17n.org>
8544
8545 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
8546 font_otf_gpos, add font_drive_otf.
8547
8548 * fontset.c (fontset_find_font): Pay attention to font size
8549 specified for a font.
8550 (reorder_font_vector): Check contents of font_def.
8551
8552 * font.c (struct otf_list): Delete it.
8553 (otf_list): Make it a lisp variable.
8554 (otf_open): Use lispy otf_list.
8555 (generate_otf_features): Rename from parse_gsub_gpos_spec.
8556 (check_otf_features): New function.
8557 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
8558 New functions.
8559 (font_drive_otf): New function merging font_otf_gsub and
8560 font_otf_gpos.
8561 (font_open_for_lface): New arg spec. Change argument order.
8562 (font_load_for_face): Adjust for the change of font_open_for_lface.
8563 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
8564 Ffont_otf_gpos.
8565 (syms_of_font): Staticpro otf_list. Delete defsubr of
8566 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
8567
8568 * xfaces.c (set_font_frame_param): Adjust for the change of
8569 font_open_for_lface.
8570
8571 * font.h (font_open_for_lface): Adjust prototype.
8572 (struct font_driver): Delete members otf_gsub and otf_gpos, add
8573 member otf_drive.
8574 (font_otf_gsub, font_otf_gpos): Delete externs.
8575 (font_drive_otf): Extern it.
8576
8577 2008-02-01 Kenichi Handa <handa@m17n.org>
8578
8579 * font.c (font_at): If the window W is not on a window system,
8580 return Qnil.
8581
8582 * coding.c (produce_chars, encode_coding): Don't call
8583 insert_from_gap if no characters to produce.
8584
8585 2008-02-01 Kenichi Handa <handa@m17n.org>
8586
8587 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
8588 Fclear_face_cache.
8589
8590 * xfaces.c (face_for_font): Check also face->font==font->font.font.
8591
8592 2008-02-01 Miles Bader <miles@gnu.org>
8593
8594 * emacs.c (main): Change default value of `enable_font_backend' to 1.
8595 Parse "--disable-font-backend" option.
8596 (standard_args): Add "--disable-font-backend" option.
8597
8598 2008-02-01 Kenichi Handa <handa@m17n.org>
8599
8600 * fontset.c (fontset_find_font): New function.
8601 (fontset_font): Use fontset_find_font.
8602 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
8603 Register the specified font for all Latin characters.
8604 (new_fontset_from_font): Register the specified font for all Latin
8605 characters.
8606 (dump_fontset): For a realized fontset, include the base fontset
8607 name in the returned vector.
8608
8609 2008-02-01 Kenichi Handa <handa@m17n.org>
8610
8611 * character.h (CHAR_STRING): Cast C to unsigned on calling
8612 char_string.
8613
8614 * character.c (char_string): Type of arg C changed to unsigned.
8615 Signal an error if C is an invalid character code.
8616
8617 * editfns.c (general_insert_function, Fchar_to_string):
8618 Use CHARACTERP, not INTEGERP.
8619
8620 2008-02-01 Kenichi Handa <handa@m17n.org>
8621
8622 * character.h (MIN_MULTIBYTE_LEADING_CODE)
8623 (MAX_MULTIBYTE_LEADING_CODE): New macros.
8624
8625 * regex.c (analyse_first): Fix for multibyte characters in "case
8626 charset:" and "case categoryspec:".
8627
8628 2008-02-01 Andreas Schwab <schwab@suse.de>
8629
8630 * Makefile.in (LIBES): Move standard libraries to the end.
8631
8632 2008-02-01 Kenichi Handa <handa@m17n.org>
8633
8634 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
8635 nonzero, don't shrink the buffer nextb.
8636
8637 * buffer.h (struct buffer_text): New member inhibit_shrinking.
8638
8639 * coding.c (coding_alloc_by_making_gap): New arg offset.
8640 (alloc_destination): Call coding_alloc_by_making_gap with the arg
8641 offset.
8642 (decode_coding_iso_2022): Update coding->safe_charsets.
8643 (decode_coding_gap): Temporarily set
8644 current_buffer->text->inhibit_shrinking to 1.
8645
8646 2008-02-01 Kenichi Handa <handa@m17n.org>
8647
8648 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
8649 indexing into elements of s->cmp and s->char2b.
8650
8651 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
8652
8653 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
8654
8655 2008-02-01 Kenichi Handa <handa@m17n.org>
8656
8657 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
8658 target_multibyte instead of multibyte.
8659 (re_match_2_internal): Call bcmp_translate with target_multibyte.
8660 (bcmp_translate): Change the argument name from multibyte to
8661 target_multibyte.
8662
8663 2008-02-01 Kenichi Handa <handa@m17n.org>
8664
8665 These changes are to compile a regexp into a pattern that can be
8666 used both for multibyte and unibyte targets.
8667
8668 * Makefile.in (search.o): Depend on charset.h.
8669
8670 * character.c (multibyte_char_to_unibyte_safe): New function.
8671
8672 * search.c: Include "charset.h".
8673 (compile_pattern_1): Delete argument multibyte. Don't set
8674 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
8675 (compile_pattern): Don't compare cp->buf.target_multibyte.
8676 Compare cp->buf.charset_unibyte.
8677 (compile_pattern): Set cp->buf.target_multibyte.
8678
8679 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
8680
8681 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
8682
8683 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
8684 multibyte. Change callers.
8685 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
8686 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
8687 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
8688 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
8689 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
8690 (regex_compile): Make the compiled pattern usable both for
8691 multibyte and unibyte targets.
8692 (analyse_first): Make the fastmap usable both for multibyte and
8693 unibyte targets.
8694 (TRANSLATE_VIA_MULTIBYTE): Delete.
8695 (re_match_2_internal): Pay attention to the case that the
8696 multibyteness of bufp and target may be different.
8697
8698 2008-02-01 Kenichi Handa <handa@m17n.org>
8699
8700 * xdisp.c (x_produce_glyphs): When a font is not found, make the
8701 empty box occupy at least one column width.
8702
8703 2008-02-01 Miles Bader <miles@gnu.org>
8704
8705 * Makefile.in: Remove redundant HAVE_XFT clause.
8706
8707 2008-02-01 Kenichi Handa <handa@m17n.org>
8708
8709 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
8710
8711 2008-02-01 Kenichi Handa <handa@m17n.org>
8712
8713 * fontset.c (Finternal_char_font): Fix for the case of POSITION
8714 being nil.
8715
8716 2008-02-01 Kenichi Handa <handa@m17n.org>
8717
8718 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
8719
8720 2008-02-01 Kenichi Handa <handa@m17n.org>
8721
8722 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
8723
8724 2008-02-01 Kenichi Handa <handa@m17n.org>
8725
8726 * search.c (simple_search): Fix previous change.
8727
8728 2008-02-01 Kenichi Handa <handa@m17n.org>
8729
8730 * xftfont.c (ftfont_font_format): Extern declaration.
8731
8732 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
8733
8734 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
8735 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
8736
8737 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
8738 (ftfont_font_format): Fix previous change.
8739
8740 * font.h (Ffont_xlfd_name): EXFUN it.
8741
8742 * font.c (font_parse_xlfd): Fix the array size of `f'.
8743 (register_font_driver): Use EQ to compare driver->type.
8744
8745 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
8746 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
8747 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
8748
8749 2008-02-01 Kenichi Handa <handa@m17n.org>
8750
8751 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
8752 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
8753
8754 2008-02-01 Kenichi Handa <handa@m17n.org>
8755
8756 * xfont.c (xfont_open): Set font->format.
8757
8758 * xftfont.c (xftfont_open): Set font->format.
8759
8760 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
8761 (ftfont_list): Include FC_FONTFORMAT in FcObject.
8762 (ftfont_open): Set font->format.
8763 (ftfont_font_format): New function.
8764
8765 * font.h (struct font): New member format.
8766
8767 * font.c (Qopentype): New variable.
8768 (syms_of_font): Defsym it.
8769 (Fquery_font): Change the format of the last element of the return
8770 value.
8771
8772 2008-02-01 Kenichi Handa <handa@m17n.org>
8773
8774 * xfns.c (xic_create_xfontset): Try the default fontset name as a
8775 last resort.
8776
8777 2008-02-01 Kenichi Handa <handa@m17n.org>
8778
8779 * coding.c (detect_coding_charset): Fix detection of multi-byte
8780 charset.
8781
8782 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
8783
8784 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
8785
8786 2008-02-01 Kenichi Handa <handa@m17n.org>
8787
8788 * xdisp.c (get_next_display_element): Set it->face_id for the
8789 first component of a composition.
8790 (x_produce_glyphs): Check if the font is changed or not for composition.
8791
8792 2008-02-01 Kenichi Handa <handa@m17n.org>
8793
8794 * fontset.c (Qlatin): New variable.
8795 (syms_of_fontset): Define it as a lisp symbol.
8796 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
8797
8798 2008-02-01 Kenichi Handa <handa@m17n.org>
8799
8800 * font.c (font_unparse_fcname): Pay attention to the case that
8801 some of font property is a null string.
8802
8803 2008-02-01 Kenichi Handa <handa@m17n.org>
8804
8805 * term.c: Include "composite.h".
8806 (encode_terminal_code): Output all components of composition.
8807 Check the size of encode_terminal_src.
8808 (produce_glyphs): For composition, call produce_composite_glyph.
8809 (append_composite_glyph, produce_composite_glyph): New functions.
8810
8811 * xdisp.c (x_produce_glyphs): In handling composition, if a font
8812 is not found, get font_info from the current ascii face.
8813
8814 2008-02-01 Kenichi Handa <handa@m17n.org>
8815
8816 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
8817 buffer-file-name to Qnil before calling insert_from_buffer.
8818
8819 * font.c (font_unparse_fcname): Pay attention to the case that
8820 foundry is a null string.
8821
8822 2008-02-01 Kenichi Handa <handa@m17n.org>
8823
8824 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
8825
8826 * font.c (Qunicode_sip): New variable.
8827 (syms_of_font): Declare it as a Lisp symbol.
8828
8829 * font.h (Qunicode_sip): Extern it.
8830
8831 2008-02-01 Kenichi Handa <handa@m17n.org>
8832
8833 * composite.c (get_composition_id): Pay attention to TAB component.
8834
8835 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
8836 TAB. Adjust for the change of s->char2b which always points to
8837 the first element of allocated memory.
8838
8839 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
8840
8841 * xdisp.c (handle_composition_prop): Set it->c to the first
8842 non-TAB component.
8843 (fill_composite_glyph_string): Change argument.
8844 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
8845 (x_produce_glyphs): Fix handling of left/right padding.
8846
8847 2008-02-01 Kenichi Handa <handa@m17n.org>
8848
8849 * coding.c (detect_coding_system): Fix for handling off
8850 inhibit_iso_escape_detection. Fix for the case that no coding
8851 system is defined for a specific coding category.
8852
8853 2008-02-01 Kenichi Handa <handa@m17n.org>
8854
8855 * font.c (font_matching_entity): Delete unused local var.
8856
8857 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
8858 opening a font.
8859
8860 * fileio.c (Finsert_file_contents): On recovering a file, assume
8861 Unix-like eol.
8862 (choose_write_coding_system): On auto-saving a file, force
8863 Unix-like eol.
8864
8865 * coding.c (setup_coding_system): Fix setting of
8866 coding->common_flags based on eol_type.
8867 (coding_inherit_eol_type): If PARENT is not nil, be sure to
8868 inherit from it.
8869
8870 2008-02-01 Kenichi Handa <handa@m17n.org>
8871
8872 * alloc.c (NSTATICS): Increas to 0x600.
8873
8874 2008-02-01 Kenichi Handa <handa@m17n.org>
8875
8876 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
8877 (ftfont_list): Don't check :name property.
8878 (ftfont_match): New function.
8879 (ftfont_pattern_entity): If the pattern doesn't contain
8880 FC_SPACING, don't assume FC_MONO.
8881
8882 * font.h (struct font_driver): New member `match'.
8883 (font_update_drivers): Adjust prototype.
8884
8885 * font.c (font_parse_fcname, font_parse_name): Don't change :name
8886 property of FONT.
8887 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
8888 them unconditionally.
8889 (font_matching_entity): New function.
8890 (font_open_by_name): Try font_matching_entity if exact match is
8891 not found.
8892 (font_update_drivers): Delete the arg FONT. Return a list of
8893 actually used backends. Don't free faces, font caches here.
8894 Don't store data in frame parameters. Don't call x_set_font.
8895 (Ffont_spec): Store :name property as is.
8896 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
8897 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
8898 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
8899 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
8900 Call font->driver->otf_gsub instead of font_otf_gsub.
8901
8902 * frame.c (x_set_font_backend): Do more works that were done in
8903 font_update_drivers before.
8904
8905 * xfont.c (xfont_match): New function.
8906 (xfont_driver): Set xfont_driver.match to xfont_match.
8907 (xfont_draw): Set font in GC if necessary.
8908
8909 * ftxfont.c (ftxfont_match): New function.
8910 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
8911
8912 * xftfont.c (xftfont_match): New function.
8913 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
8914
8915 2008-02-01 Kenichi Handa <handa@m17n.org>
8916
8917 * font.h (struct font): New member scalable.
8918 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
8919 (font_otf_gsub): Adjust prototype.
8920
8921 * font.c (font_otf_capability): Fix handling of the default langsys.
8922 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
8923 Check the contents of SPEC.
8924 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
8925 (check_gstring): New function.
8926 (REPLACEMENT_CHARACTER): New macro.
8927 (font_otf_gsub): New arg alternate_subst. Be sure to set all
8928 glyph codes of GSTRING.
8929 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
8930 (font_prepare_composition): Set cmp->glyph_len.
8931 (font_open_entity): Set font->scalable.
8932 (Ffont_get): Handle :otf property.
8933 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
8934 functions.
8935 (Fquery_font): Use font->font.full_name.
8936 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
8937 Sfont_otf_alternates.
8938
8939 * ftfont.c (ftfont_open): Set font->font.full_name and
8940 font->font.name properly. Fix calculation of font->font.height
8941 and font->min_width.
8942
8943 * ftxfont.c (ftxfont_create_gcs): New function.
8944 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
8945 (ftxfont_draw_backgrond): Fix filling region.
8946 (ftxfont_default_fid): New function.
8947 (ftxfont_open): Set xfont->fid to the return value of
8948 ftxfont_default_fid.
8949 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
8950 (ftxfont_done_face): Free only GCs that are created by
8951 ftxfont_create_gcs.
8952 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
8953
8954 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
8955 Clip to src->width, etc (not src->clip_XXX).
8956
8957 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
8958 FontBackend frame parameter.
8959
8960 2008-02-01 Kenichi Handa <handa@m17n.org>
8961
8962 * font.h (struct font_driver_list): New member `on'.
8963 (Fclear_font_cache): EXFUN it.
8964 (font_update_drivers): Extern it.
8965
8966 * font.c (font_unparse_fcname): Fix typo (swidth->width).
8967 (font_list_entities): Check driver_list->on.
8968 (register_font_driver): Initalize `on' member to 0.
8969 (font_update_drivers): New function.
8970 (Fclear_font_cache): Check driver_list->on.
8971
8972 * frame.h (Qfont_backend): Extern it.
8973 (x_set_font_backend): Extern it.
8974
8975 * frame.c (Qfont_backend): New variable.
8976 (frame_parms): New element for font-backend.
8977 (x_set_font_backend): New function.
8978
8979 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
8980 FontBackend frame parameter.
8981 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
8982 x_set_font_backend.
8983
8984 * xfont.c (xfont_list): Don't try listing by :name property if the
8985 name is not for XLFD.
8986
8987 2008-02-01 Kenichi Handa <handa@m17n.org>
8988
8989 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
8990 (LGLYPH_SET_TO): New macros.
8991 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
8992 element of G is vector or not.
8993 (font_at): Extern it.
8994
8995 * font.c: Include window.h.
8996 (font_lispy_object): New function.
8997 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
8998 end of valid glyph.
8999 (font_close_object): Fix getting (struct font *).
9000 (font_at): New function.
9001 (Ffont_get): If FONT is a font-object, get entity from it.
9002 (Ffont_make_gstring): Initialize elements of glyphs with nil.
9003 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
9004 range check.
9005 (Ffont_at): New function.
9006 (syms_of_font): Defsubr Sfont_at.
9007
9008 * xdisp.c (it_props): Move the entry for Qauto_composed to just
9009 before the entry for Qcomposition.
9010 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
9011 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
9012 the font in gstring.
9013 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
9014 LGLYPH_FORM (g) to detect the end of valid glyph.
9015 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
9016 we are composing with gstring.
9017
9018 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
9019 Check if adjustment is vector or not.
9020
9021 * Makefile.in (font.o): Make it depends on window.h.
9022
9023 2008-02-01 Kenichi Handa <handa@m17n.org>
9024
9025 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
9026 adjustment is vector or not.
9027
9028 2008-02-01 Miles Bader <miles@gnu.org>
9029
9030 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
9031
9032 2008-02-01 Kenichi Handa <handa@m17n.org>
9033
9034 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
9035 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
9036 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
9037
9038 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
9039 (DEVICE_DELTA): Fix typo.
9040 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
9041 LGLYPH format.
9042
9043 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
9044 the change of LGLYPH format.
9045
9046 2008-02-01 Kenichi Handa <handa@m17n.org>
9047
9048 * ftfont.c (ftfont_list): Fix typo.
9049 (ftfont_build_basic_charsets): Don't include letters with diacritics.
9050
9051 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
9052
9053 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
9054
9055 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
9056 xftface_info is non-NULL.
9057
9058 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
9059
9060 * ftfont.c (ftfont_list): Move misplaced #endif.
9061
9062 2008-02-01 Kenichi Handa <handa@m17n.org>
9063
9064 * ftfont.c (ftfont_list): Pay attention to the case that
9065 FC_CAPABILITY is not defined.
9066
9067 2008-02-01 Kenichi Handa <handa@m17n.org>
9068
9069 * xftfont.c (xftfont_open): Set charset related members to -1.
9070
9071 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
9072 QCname.
9073 (ftfont_open): Set charset related members to -1.
9074
9075 * fontset.c (Votf_script_alist): New variable.
9076 (syms_of_fontset): Initialize it.
9077 (fontset_font): Delete unused variable.
9078
9079 * fontset.h (Votf_script_alist): Extern it.
9080
9081 * font.c (font_find_for_lface): Optimize code.
9082
9083 * font.h (font_close_object, font_merge_old_spec): Extern them.
9084
9085 2008-02-01 Kenichi Handa <handa@m17n.org>
9086
9087 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
9088 (syms_of_font): Initialize them.
9089 (font_pixel_size): Allow float value in dpi.
9090 (font_prop_validate_type): Delete.
9091 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
9092 Change caller.
9093 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
9094 (font_prop_validate_extra): Delete.
9095 (font_prop_validate_spacing): New function.
9096 (font_property_table): Add elements for all known properties.
9097 (get_font_prop_index): Rename from check_font_prop_name. New
9098 argument FROM. Change caller.
9099 (font_prop_validate): Validate all known properties.
9100 (font_put_extra): Delete argument force. Change caller.
9101 (font_expand_wildcards): Make it static. Fix the way of shrinking
9102 the possible range.
9103 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
9104 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
9105 Change caller.
9106 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
9107 (font_parse_fcname): Delete argument merge. Fix parsing of point
9108 size. Don't validate properties values here. Change caller.
9109 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
9110 (font_open_by_name): Delete unused variable.
9111 (Ffont_spec): Likewise. Validate property values.
9112 (Ffont_match_p): New function.
9113
9114 * font.h (QCscalable): Extern it.
9115 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
9116
9117 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
9118
9119 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
9120 (xfont_list_pattern): New function.
9121 (xfont_list): Use xfont_list_pattern.
9122
9123 2008-02-01 Kenichi Handa <handa@m17n.org>
9124
9125 * font.h (Flist_fonts): EXFUN it.
9126
9127 2008-02-01 Jason Rumney <jasonr@gnu.org>
9128
9129 * w32term.c (w32_initialize): Add back smoothing_type and
9130 smoothing_enabled definitions.
9131
9132 2008-02-01 Kenichi Handa <handa@m17n.org>
9133
9134 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
9135 s->face->font on determining underline position.
9136
9137 2008-02-01 Kenichi Handa <handa@m17n.org>
9138
9139 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
9140 (font_has_char): Accept font-object too.
9141 (font_find_for_lface): Try at first with a size specified in face.
9142
9143 2008-02-01 Kenichi Handa <handa@m17n.org>
9144
9145 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
9146 font_open_by_name.
9147
9148 2008-02-01 Kenichi Handa <handa@m17n.org>
9149
9150 * font.h (QCspacing, QCdpi): Extern them.
9151 (enum font_spacing): New enum.
9152 (FONT_PIXEL_SIZE_QUANTUM): New macro.
9153
9154 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
9155 (QCspacing, QCdpi): New variables.
9156 (syms_of_font): Initialize them.
9157 (font_pixel_size): New function.
9158 (font_put_extra): New function.
9159 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
9160 in FONT_EXTRA.
9161 (font_parse_fcname): Handle enumerated values (e.g. bold).
9162 Fix handling font size. Add QCname property that contains only
9163 unknown properties.
9164 (font_score): Change argument. Change caller. Pay attention to
9165 FONT_PIXEL_SIZE_QUANTUM.
9166 (font_sort_entites, font_list_entities, font_find_for_lface)
9167 (font_open_for_lface, font_open_by_name): Fix handling of font size.
9168 (Ffont_spec): Add QCname property that contains only unknown properties.
9169
9170 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
9171 include weight in listing pattern, instead check weight of each
9172 listed font. Don't include scalable in pattern. Pay attention to
9173 FONT_PIXEL_SIZE_QUANTUM.
9174
9175 2008-02-01 Kenichi Handa <handa@m17n.org>
9176
9177 * font.c (font_parse_fcname): Fix parsing of point-size.
9178 (font_unparse_fcname): Produce symbolic names for style properties.
9179 (font_list_entities): Handle float size correctly.
9180 (font_open_by_name): Prefer `normal' property values if the name
9181 doesn't specify them.
9182
9183 * fontset.c (Finternal_char_font): Use font_get_name, not
9184 Ffont_xlfd_name.
9185
9186 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
9187 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
9188 pattern. Don't force scalable.
9189
9190 * xftfont.c (xftfont_open): For generating a name, start from
9191 96-byte buffer.
9192
9193 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
9194
9195 * frame.h (x_new_fontset2): Fix prototype.
9196
9197 2008-02-01 Kenichi Handa <handa@m17n.org>
9198
9199 * font.h (struct font_driver): Delete member parse_name.
9200 (font_match_p, font_get_spec, font_parse_fcname)
9201 (font_unparse_fcname): Extern them.
9202 (font_get_name): Adjust prototype.
9203
9204 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
9205 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
9206 (font_expand_wildcards): Fix handling ENCODING field. Avoid
9207 unnecessary checks for weight, slant, and swidth.
9208 (font_parse_fcname): New function.
9209 (font_unparse_fcname): New function.
9210 (font_parse_name): New function.
9211 (font_match_p): New function.
9212 (font_get_name): Change return value to Lisp string.
9213 (font_get_spec): New function.
9214 (Qunspecified, Qignore_defface): Don't extern them.
9215 (font_find_for_lface): Assume that LFACE is fully specified.
9216 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
9217 object, use it for FACE.
9218 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
9219 driver->parse_name.
9220 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
9221
9222 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
9223 prototype.
9224
9225 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
9226 argument F. Don't call Fnew_fontset. Instead, directly call
9227 make_fontset.
9228
9229 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
9230
9231 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
9232 of x_new_fontset2.
9233
9234 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
9235 (Qsans__serif): New variables.
9236 (ftfont_generic_family_list): New variable.
9237 (syms_of_ftfont): Initialize the above variables.
9238 (ftfont_pattern_entity): Delete argument NAME.
9239 (ftfont_list_generic_family): New function.
9240 (ftfont_parse_name): Delete this function.
9241 (ftfont_list): Try generic family only when FcFontList found no font.
9242 (ftfont_list_family): Fix args to FcObjectSetBuild.
9243
9244 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
9245 object in attrs[LFACE_FONT_INDEX].
9246 (set_lface_from_font_name): Cancel all changes for font-backend.
9247 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
9248 function.
9249 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
9250 font object in QCfont attribute.
9251 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
9252 (realize_default_face) [USE_FONT_BACKEND]: Call
9253 set_lface_from_font_and_fontset.
9254
9255 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
9256 "fixed", and signal error here if no suitable font was found.
9257
9258 * xfont.c (xfont_parse_name): Delete this function.
9259
9260 * xftfont.c (xftfont_open): Change coding style of error
9261 handling. Generate fontconfig's fontname pattern.
9262
9263 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
9264 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
9265
9266 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
9267 Both args FONTSET and FONT_OBJECT must be existing ones.
9268
9269 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9270
9271 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
9272
9273 2008-02-01 Kenichi Handa <handa@m17n.org>
9274
9275 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
9276
9277 * font.h (struct font): Fix typo.
9278
9279 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
9280 XLFD_XXX_INDEX.
9281 (enum xlfd_field_mask): New enum.
9282 (intern_font_field): Changed argument. Change caller. If digits
9283 are followed by non-digits, return a symbol.
9284 (font_expand_wildcards): New function.
9285 (font_parse_xlfd): Fix wildcard handling.
9286 (Ffont_spec): If :name is specified, reflect the info in the other
9287 properties.
9288
9289 * ftfont.c (ftfont_pattern_entity): Fix typo.
9290 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
9291 locale.
9292
9293 2008-02-01 Kenichi Handa <handa@m17n.org>
9294
9295 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
9296
9297 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
9298 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
9299 registry doesn't specify encoding part.
9300 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
9301 (font_open_by_name): At first try parsing the name.
9302 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
9303 as Lisp symbols.
9304
9305 * fontset.c (reorder_font_vector): Pay attention to the case that
9306 the 3rd element of font_def is nil.
9307 (fontset_font): For the default fontset, append one more fontset
9308 elements for a script-based font specification. Don't add script
9309 attribute on finding a font.
9310 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
9311 font name.
9312 (fontset_ascii_font): If a font can't be opened, return nil.
9313
9314 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
9315 (ftfont_pattern_entity): New function.
9316 (ftfont_get_cache): Assume that freetype_font_cache is already
9317 initialized.
9318 (ftfont_list): Handle the case that a file is specified in font
9319 name. Use ftfont_pattern_entity to generate entities.
9320 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
9321 (syms_of_ftfont): Initialize freetype_font_cache.
9322
9323 * xftfont.c (xftfont_open): Make the font name fontconfig's
9324 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
9325 (xftfont_close): Free font->font.name if not NULL.
9326
9327 * xfont.c (xfont_list): If script is specified for a font, return
9328 null_vector.
9329 (xfont_list_family): Declare argument type.
9330
9331 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
9332 name, set LFACE_FONT (lface) to nil.
9333
9334 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
9335 return Qnil.
9336
9337 2008-02-01 Kenichi Handa <handa@m17n.org>
9338
9339 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
9340 (standard_args): Add "-enable-font-backend".
9341
9342 2008-02-01 Kenichi Handa <handa@m17n.org>
9343
9344 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
9345 (struct xftdraw_list, xftdraw_list): Delete them.
9346 (register_xftdraw, check_xftdraw): Delete them.
9347 (xftfont_prepare_face): Don't call register_xftdraw.
9348 (xftfont_done_face): Don't call check_xftdraw.
9349 (xftfont_draw): Get background color only when with_background is
9350 nonzero.
9351
9352 * xfont.c (xfont_encode_char): Fix calculation of char2b.
9353
9354 2008-02-01 Kenichi Handa <handa@m17n.org>
9355
9356 These changes are for the new font handling codes.
9357
9358 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
9359 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
9360 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
9361 (FONTSRC, FONTOBJ): New variables.
9362 (obj): Add $(FONTOBJ).
9363 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
9364 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
9365 @LIBOTF_LIBS@.
9366 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
9367 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
9368
9369 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
9370
9371 * character.h (Vscript_representative_chars): Extern it.
9372
9373 * character.c (Vscript_representative_chars): New variable.
9374 (syms_of_character): Declare it as a Lisp variable.
9375
9376 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
9377 enable_font_backend is nonzero, accept the composition method
9378 COMPOSITION_WITH_GLYPH_STRING.
9379
9380 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
9381 enumeration COMPOSITION_WITH_GLYPH_STRING.
9382
9383 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
9384 members clip_x, clip_y, clip_width, and clip_height.
9385 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
9386
9387 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
9388 --enable-font-backend. Call syms_of_font.
9389
9390 * fns.c (assoc_no_quit): New function.
9391
9392 * fontset.h (FONT_INFO_FROM_FACE): New macro.
9393 (face_for_font, new_fontset_from_font)
9394 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
9395
9396 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
9397 (fontset_font, fontset_ascii, face_for_char)
9398 (make_fontset_for_ascii_face, Ffont_info)
9399 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
9400 is nonzero, use font-backend mechanism.
9401 (find_font_encoding): Make it non-static.
9402 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
9403 New functions.
9404
9405 * frame.h (struct frame): New members resx and resy.
9406 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
9407 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
9408
9409 * frame.c [USE_FONT_BACKEND]: Include "font.h".
9410 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
9411
9412 * lisp.h (assoc_no_quit): Extern it.
9413
9414 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
9415 Through out the file, use FONT_INFO_FROM_FACE instead of
9416 FONT_INFO_FROM_ID, use get_per_char_metric instead of
9417 rif->per_char_metric.
9418 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
9419 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
9420 (get_glyph_face_and_encoding, fill_composite_glyph_string)
9421 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
9422 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
9423 nonzero, use font-backend mechanism.
9424 (get_per_char_metric): New function.
9425
9426 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
9427 (set_lface_from_font_name)
9428 (set_font_frame_param, free_realized_face)
9429 (prepare_face_for_display, clear_face_gcs)
9430 (Finternal_set_font_selection_order, realize_x_face)
9431 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
9432 font-backend mechanism.
9433 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
9434 (load_face_font) [USE_FONT_BACKEND]: Abort.
9435 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
9436 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
9437
9438 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
9439 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
9440 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
9441 nonzero, register all available font drivers. Call
9442 x_default_font_parameter for deciding a font.
9443 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
9444
9445 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
9446 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
9447 (x_set_glyph_string_clipping_exactly)
9448 (x_compute_glyph_string_overhangs)
9449 (x_draw_glyph_string_foreground)
9450 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
9451 (x_free_frame_resources) [USE_FONT_BACKEND]: If
9452 enable_font_backend is nonzero, use font-backend mechanism.
9453 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
9454
9455 2008-02-01 Kenichi Handa <handa@m17n.org>
9456
9457 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
9458 system_eol_type.
9459 (syms_of_coding): Initialize system_eol_type.
9460
9461 * process.c (Fset_process_coding_system): Inherit system's eol
9462 format if necessary.
9463
9464 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9465
9466 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
9467
9468 2008-02-01 Kenichi Handa <handa@m17n.org>
9469
9470 * coding.c (decode_eol): Pay attention to buffer relocation in
9471 del_range_2.
9472 (decode_coding): Call decode_eol before restoring undo_list.
9473
9474 2008-02-01 Kenichi Handa <handa@m17n.org>
9475
9476 * charset.c (Fdefine_charset_internal): Fix setting of
9477 emacs_mule_bytes.
9478
9479 2008-02-01 Kenichi Handa <handa@m17n.org>
9480
9481 * keyboard.c (read_char): Check if C is a character or not before
9482 looking up Vkeyboard_translate_table.
9483
9484 2008-02-01 Kenichi Handa <handa@m17n.org>
9485
9486 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
9487 condition to terminate the loop.
9488
9489 2008-02-01 Kenichi Handa <handa@m17n.org>
9490
9491 * coding.c (produce_composition): Compare charbuf[i] instead of
9492 args[i] against 0.
9493 (Fterminal_coding_system): Use EQ to compare Lisp objects.
9494
9495 2008-02-01 Kenichi Handa <handa@m17n.org>
9496
9497 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
9498 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
9499 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
9500 detect_coding.
9501 (emacs_mule_char): Handle old style (Emacs 20) component character
9502 of a composition.
9503 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
9504 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
9505 composition rule.
9506 (decode_coding_emacs_mule): Handle invalid bytes correctly.
9507
9508 2008-02-01 Kenichi Handa <handa@m17n.org>
9509
9510 * coding.c (encode_coding_ccl): Allocate destination dynamically
9511 when necessary.
9512
9513 2008-02-01 Kenichi Handa <handa@m17n.org>
9514
9515 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
9516 the loop. When quitted, show a proper error message.
9517
9518 2008-02-01 Kenichi Handa <handa@m17n.org>
9519
9520 * xterm.c (x_set_glyph_string_clipping_exactly): Set
9521 src->clip_head and src->clip_tail temporarily instead of src->hl.
9522
9523 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
9524 character sequence.
9525 (Fccl_execute_on_string): Use ASET, not XSET.
9526
9527 2008-02-01 Kenichi Handa <handa@m17n.org>
9528
9529 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
9530
9531 2008-02-01 Kenichi Handa <handa@m17n.org>
9532
9533 * coding.c (decode_coding): Fix the condition of terminating the
9534 decoding loop.
9535
9536 2008-02-01 Kenichi Handa <handa@m17n.org>
9537
9538 * data.c (Faset): On setting a character bigger than 255 in a
9539 unibyte string, signal an error instead of make the string multibyte.
9540
9541 2008-02-01 Kenichi Handa <handa@m17n.org>
9542
9543 * charset.c (map_charset_chars): Fix for ascii-compatible charset
9544 made by a mapping table.
9545
9546 2008-02-01 Kenichi Handa <handa@m17n.org>
9547
9548 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
9549 not.
9550 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
9551 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
9552
9553 * xterm.c (x_draw_composite_glyph_string_foreground): Check
9554 s->face is NULL or not.
9555
9556 2008-02-01 Kenichi Handa <handa@m17n.org>
9557
9558 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
9559 (x_draw_glyph_string): Fix drawing of right_overhang and
9560 left_overhang around/on cursor.
9561
9562 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
9563
9564 2008-02-01 Kenichi Handa <handa@m17n.org>
9565
9566 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
9567
9568 2008-02-01 Kenichi Handa <handa@m17n.org>
9569
9570 * coding.c (Fdefine_coding_system_internal)
9571 (Fdefine_coding_system_alias): Avoid a duplicated element in
9572 Vcoding_system_alist.
9573
9574 2008-02-01 Kenichi Handa <handa@m17n.org>
9575
9576 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
9577
9578 * coding.c (Qcoding_system_define_form): New variable.
9579 (syms_of_coding): Intern and staticpro it.
9580 (Fcoding_system_p): Check Qcoding_system_define_form.
9581 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
9582
9583 * coding.h (CODING_SYSTEM_P): If ID is not available, call
9584 Fcoding_system_p.
9585 (CHECK_CODING_SYSTEM): If ID is not available, call
9586 Fcheck_coding_system.
9587 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
9588 Try also Fcheck_coding_system.
9589
9590 2008-02-01 Kenichi Handa <handa@m17n.org>
9591
9592 * coding.c (code_conversion_restore): GCPRO arg.
9593
9594 2008-02-01 Kenichi Handa <handa@m17n.org>
9595
9596 * character.c (lisp_string_width): Check multibyteness of STRING.
9597
9598 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9599
9600 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
9601 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
9602 (decode_mac_font_name): Use decode_coding_c_string instead of
9603 decode_coding.
9604 (x_load_font): Initialize fontp->fontset to -1. Set
9605 fontp->encoding_type.
9606
9607 2008-02-01 Kenichi Handa <handa@m17n.org>
9608
9609 * search.c (search_buffer): Give up BM search on case-fold-search
9610 if one of a target character has a case-equivalence of different
9611 byte length even if that target charcter is an ASCII.
9612 (simple_search): Fix calculation of byte length of matched text.
9613 (boyer_moore): Fix handling of case-equivalent multibyte characters.
9614
9615 2008-02-01 Kenichi Handa <handa@m17n.org>
9616
9617 * coding.c (decode_coding): Fix handling of invalid bytes.
9618
9619 2008-02-01 Kenichi Handa <handa@m17n.org>
9620
9621 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
9622 Unicode characters.
9623
9624 2008-02-01 Kenichi Handa <handa@m17n.org>
9625
9626 * coding.c (encode_coding_object): If a pre-write-conversion
9627 function makes a new buffer, kill it.
9628
9629 2008-02-01 Kenichi Handa <handa@m17n.org>
9630
9631 * coding.c (QCascii_compatible_p): New variable.
9632 (syms_of_coding): Initialize it.
9633 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
9634 calling string_char.
9635 (record_conversion_result): Add `default:' case.
9636 (coding_charset_list): Delete unused variable `coding_type'.
9637 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
9638 property in the plist of the coding system.
9639 (Fcoding_system_put): Check QCascii_compatible_p.
9640
9641 2008-02-01 Miles Bader <miles@gnu.org>
9642
9643 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
9644 removed calculation of frame `f', as it's now used.
9645
9646 2008-02-01 Kenichi Handa <handa@m17n.org>
9647
9648 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
9649 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
9650 (UNIDATA): New variable.
9651 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
9652 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
9653 $(RUN_TEMACS) unconditionally.
9654
9655 2008-02-01 Kenichi Handa <handa@m17n.org>
9656
9657 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
9658 (admindir): New variable.
9659 ($(lispsource)international/charprop.el): New target.
9660
9661 2008-02-01 Miles Bader <miles@gnu.org>
9662
9663 * character.c (chars-in-region): Remove obsolete function.
9664 (syms_of_character): Remove its initialization.
9665
9666 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
9667
9668 * w32select.c (validate_coding_system)
9669 (setup_windows_coding_system): New functions.
9670 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
9671 setup_windows_coding_system.
9672 (setup_config, Fw32_get_clipboard_data): Use
9673 validate_coding_system.
9674 (Fx_selection_exists): Move call to setup_config to a place
9675 where signals are allowed.
9676
9677 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
9678 (Fcheck_coding_system): Add declarations.
9679
9680 2008-02-01 Kenichi Handa <handa@m17n.org>
9681
9682 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
9683
9684 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9685
9686 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
9687 string as the second argument for x_new_fontset.
9688
9689 2008-02-01 Kenichi Handa <handa@m17n.org>
9690
9691 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
9692 (encode_coding_object): Use safe_call instead of call2.
9693
9694 2008-02-01 Kenichi Handa <handa@m17n.org>
9695
9696 * fontset.c (Fset_fontset_font): Check family element of a given vector.
9697
9698 * Makefile.in (lisp): Include charprop.el.
9699
9700 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9701
9702 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
9703 Not sure if it's unnecessary.
9704
9705 2008-02-01 Steven Tamm <steventamm@mac.com>
9706
9707 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
9708 some possibly unnecessary fontset checking code that crashed
9709 when creating a new frame.
9710
9711 2008-02-01 Kenichi Handa <handa@m17n.org>
9712
9713 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
9714 lookup_face.
9715
9716 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
9717
9718 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
9719
9720 2008-02-01 Kenichi Handa <handa@m17n.org>
9721
9722 * coding.c: Cancel the change done in HEAD on 2008-02-01.
9723 (coding_charset_list): New function.
9724
9725 * coding.h (coding_charset_list): Extern it.
9726
9727 2008-02-01 Kenichi Handa <handa@m17n.org>
9728
9729 * fontset.c (Fset_fontset_font): Call find_font_encoding with
9730 concatenation of family and registry.
9731
9732 2008-02-01 Kenichi Handa <handa@m17n.org>
9733
9734 * character.h (BYTE8_STRING): Fix typo.
9735
9736 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
9737 string to multibyte (sync to HEAD).
9738
9739 * casefiddle.c (casify_region): Handle changes in byte-length
9740 using replace_range_2 (sync to HEAD).
9741
9742 2008-02-01 Andreas Schwab <schwab@suse.de>
9743
9744 * chartab.c (map_char_table): GCPRO table and arg.
9745
9746 2008-02-01 Kenichi Handa <handa@m17n.org>
9747
9748 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
9749 already at limit.
9750
9751 2008-02-01 Kenichi Handa <handa@m17n.org>
9752
9753 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
9754 instead of fast_c_string_match_ignore_case.
9755 (find_font_encoding): Change argument to Lisp_Object. Use
9756 fast_string_match_ignore_case instead of
9757 fast_c_string_match_ignore_case. Change caller.
9758
9759 2008-02-01 Kenichi Handa <handa@m17n.org>
9760
9761 * xdisp.c (get_next_display_element): In unibyte case, decide to
9762 display in octal form by checking a character by
9763 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
9764
9765 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
9766
9767 * character.c (unibyte_has_multibyte_table): New variable.
9768
9769 * character.h (unibyte_has_multibyte_table): Extern it.
9770 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
9771
9772 2008-02-01 Kenichi Handa <handa@m17n.org>
9773
9774 * coding.c (encode_coding_iso_2022): Fix handling of charset
9775 annotation.
9776
9777 2008-02-01 Kenichi Handa <handa@m17n.org>
9778
9779 * coding.c (setup_coding_system): If coding_system is nil, use
9780 Qundecided.
9781 (Fterminal_coding_system): Return nil if terminal coding system is
9782 `undecided'.
9783 (syms_of_coding): Define coding-system `undecided' here. Setup
9784 terminal_coding as `undecided'.
9785
9786 2008-02-01 Kenichi Handa <handa@m17n.org>
9787
9788 * xdisp.c (message_dolog, set_message_1): Call
9789 unibyte_char_to_multibyte with arg type int.
9790
9791 * lread.c (read1): Fix reading of a char-table.
9792
9793 * print.c (print_object): Include sub char-table in circularities
9794 detection.
9795
9796 2008-02-01 Kenichi Handa <handa@m17n.org>
9797
9798 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
9799 Append the found sequences in car of ARGS instead of prepending.
9800
9801 2008-02-01 Kenichi Handa <handa@m17n.org>
9802
9803 * fileio.c (report_file_error): Make a unibyte string from
9804 strerror (errorno).
9805 (Fsubstitute_in_file_name): Fix the arg to
9806 unibyte_char_to_multibyte. It is evaluated twice.
9807
9808 2008-02-01 Kenichi Handa <handa@m17n.org>
9809
9810 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
9811
9812 2008-02-01 Kenichi Handa <handa@m17n.org>
9813
9814 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
9815 BOM is not found.
9816 (detect_coding, detect_coding_system): Optimization for ISO-2022
9817 when no 8-bit data is found.
9818
9819 2008-02-01 Jason Rumney <jasonr@gnu.org>
9820
9821 * w32fns.c (x_to_w32_font): Update to use new coding struct.
9822
9823 2008-02-01 Kenichi Handa <handa@m17n.org>
9824
9825 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
9826 CHARS.
9827
9828 2008-02-01 Steven Tamm <steventamm@mac.com>
9829
9830 * macterm.c (mac_encode_char): Add charset argument and update
9831 to use encoding_type.
9832 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
9833 switch to pure fontset.
9834 (decode_mac_font_name): Temporarily remove decoding.
9835 (x_font_name_to_mac_font_name): Temporarily remove encoding.
9836 (x_load_font): Temporarily remove encoding.
9837
9838 2008-02-01 Kenichi Handa <handa@m17n.org>
9839
9840 * xfaces.c (Fface_font): If frame is not on a window system,
9841 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
9842 refer to face->font.
9843 (split_font_name_into_vector, build_font_name_from_vector)
9844 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
9845 when HAVE_WINDOW_SYSTEM is defined.
9846
9847 2008-02-01 Kenichi Handa <handa@m17n.org>
9848
9849 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
9850 (x_produce_glyphs): Fix setting of members of cmp in case
9851 cmp->glyph_len is zero.
9852
9853 * fontset.c (Fset_fontset_font): Fix docstring.
9854 (Ffontset_info): Make it backward compatible. New arg ALL.
9855
9856 2008-02-01 Kim F. Storm <storm@cua.dk>
9857
9858 * process.c (read_process_output): Grow decoding_buf when needed;
9859 this could cause a crash in allocate_string and compact_small_strings.
9860
9861 2008-02-01 Kenichi Handa <handa@m17n.org>
9862
9863 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
9864
9865 2008-02-01 Kenichi Handa <handa@m17n.org>
9866
9867 * coding.c (setup_coding_system): Set coding->common_flags
9868 correctly for raw-text.
9869 (consume_chars): On encoding unibyte text by raw-text, don't check
9870 multibyte form.
9871 (encode_coding): On encoding by raw-text, never use translation tables.
9872
9873 * fileio.c (e_write): Short cut for the case of no encoding.
9874
9875 2008-02-01 Kenichi Handa <handa@m17n.org>
9876
9877 * coding.c (detect_coding, detect_coding_system): Delete unused
9878 variables.
9879
9880 2008-02-01 Kenichi Handa <handa@m17n.org>
9881
9882 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
9883 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
9884
9885 2008-02-01 Kenichi Handa <handa@m17n.org>
9886
9887 * coding.c (Ffind_coding_systems_region_internal): Include
9888 raw-text and no-conversion in the result.
9889
9890 2008-02-01 Kenichi Handa <handa@m17n.org>
9891
9892 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
9893 (load_font_get_repertory): Delete unnecessary check of ENCODING of
9894 FONT_DEF.
9895 (font_def_arg, add_arg, from_arg, to_arg): New args.
9896 (set_fontset_font): Change argument.
9897 (Fset_fontset_font): Fix for the case that TARGET is a script
9898 name and charset name.
9899 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
9900
9901 2008-02-01 Kenichi Handa <handa@m17n.org>
9902
9903 * fontset.c (fontset_font): Rename from fontset_face. Change return
9904 value.
9905 (face_suitable_for_char_p, face_for_char): Adjust for the change
9906 of fontset_font.
9907 (make_fontset_for_ascii_face): Fix setting of the fontset element
9908 for ASCII.
9909 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
9910 to get a font name.
9911 (Ffontset_info): Adjust for the change of fontset_font.
9912
9913 * coding.c (emacs_mule_char): Check invalid code more rigidly.
9914
9915 * character.h (LEADING_CODE_LATIN_1_MIN)
9916 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
9917
9918 2008-02-01 Kenichi Handa <handa@m17n.org>
9919
9920 * editfns.c (check_translation): New function.
9921 (Ftranslate_region_internal): Handle M:N mapping.
9922
9923 2008-02-01 Kenichi Handa <handa@m17n.org>
9924
9925 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
9926
9927 2008-02-01 Kenichi Handa <handa@m17n.org>
9928
9929 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
9930 goto invalid_code.
9931 (decode_coding_iso_2022): Fix handling of invalid designation.
9932
9933 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
9934 after calling code_conversion_save.
9935
9936 2008-02-01 Kenichi Handa <handa@m17n.org>
9937
9938 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
9939
9940 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
9941
9942 * fontset.c: Include "intervals.h".
9943 (fontset_face): Fix comparing of Lisp_Objects.
9944 (free_face_fontset, new_fontset_from_font_name): Fix
9945 Lisp_Object/int mixup.
9946
9947 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
9948
9949 * coding.c: Add many prototypes for static functions.
9950 (get_translation_table): Allow max_lookup to be NULL.
9951 (decode_coding, Ffind_coding_systems_region_internal)
9952 (Funencodable_char_position, Fcheck_coding_systems_region): Call
9953 get_translation_table with max_lookup NULL.
9954
9955 2008-02-01 Kenichi Handa <handa@m17n.org>
9956
9957 * coding.c (get_translation_table): Declare it as Lisp_Object.
9958 (LOOKUP_TRANSLATION_TABLE): New macro.
9959 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
9960 instead of CHAR_TABLE_REF.
9961
9962 2008-02-01 Kenichi Handa <handa@m17n.org>
9963
9964 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
9965 annotation data format.
9966 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
9967 Change arguments FROM and TO to single argument NCHARS. Change caller.
9968 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
9969 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
9970 (decode_coding_ccl, decode_coding_charset): Pay attention to
9971 coding->charbuf_used.
9972 (get_translation): New function.
9973 (produce_chars): New arguments translation_table and last_block.
9974 Translate characters here. Return number of carryover chars.
9975 Change caller.
9976 (produce_composition): New argument pos. Change caller.
9977 Adjust for the change of annotation data format.
9978 (produce_charset, produce_annotation): Likewise.
9979 (decode_coding, encode_coding): Don't call translate_chars.
9980 (consume_chars): New arg translation_table. Change caller.
9981 (translate_chars): Delete.
9982 (syms_of_coding): Make translation-table's number of extra slots 2.
9983
9984 2008-02-01 Kenichi Handa <handa@m17n.org>
9985
9986 * search.c (simple_search): Fix setting this_pos_byte in backward
9987 search.
9988
9989 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
9990 byte sequence.
9991 (detect_coding_ccl): Fix setting of the variable valids.
9992
9993 2008-02-01 Kenichi Handa <handa@m17n.org>
9994
9995 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
9996
9997 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
9998
9999 * editfns.c (Ftranslate_region_internal): Rename from
10000 Ftranslate_region. Accept a char-table in TABLE.
10001 (syms_of_editfns): Defsubr Stranslate_region_internal.
10002
10003 * xfaces.c (set_lface_from_font_name): If a font is specified for
10004 a frame, generate a fontset from the font.
10005 (build_scalable_font_name): If the scalable font is requested for
10006 a specific size, don't change that size.
10007 (try_font_list): Try a scalable font also in the case that a
10008 pattern string is specified.
10009
10010 2008-02-01 Kenichi Handa <handa@m17n.org>
10011
10012 * xfaces.c (Fface_font): New optional arg CHARACTER.
10013
10014 2008-02-01 Kenichi Handa <handa@m17n.org>
10015
10016 * charset.h (CHARSET_OFFSET): New macro.
10017
10018 2008-02-01 Kenichi Handa <handa@m17n.org>
10019
10020 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
10021
10022 * fontset.c (fontset_face): Handle the case that repertory is a
10023 char-table.
10024 (find_font_encoding): Return nil for unknown encoding.
10025 (Fset_fontset_font): Ignore a font of unknown encoding.
10026
10027 2008-02-01 Kenichi Handa <handa@m17n.org>
10028
10029 * keymap.c (describe_vector): Handle default value of a char table.
10030
10031 * fontset.c (fontset_face): Handle fallback fonts correctly.
10032 (Ffontset_info): Return infomation about fallback fonts.
10033
10034 2008-02-01 Kenichi Handa <handa@m17n.org>
10035
10036 * fontset.c (FONTSET_DEFAULT): New macro.
10037 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
10038 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
10039 the case that it is nil.
10040 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
10041 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
10042
10043 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
10044 subset or superset.
10045
10046 2008-02-01 Kenichi Handa <handa@m17n.org>
10047
10048 * emacs.c (main): Call init_charset after syms_of_XXX.
10049
10050 * charset.c (Vcharset_map_directory): Delete.
10051 (Vcharset_map_path): New variable.
10052 (load_charset_map_from_file): Use Vcharset_map_path instead.
10053 (init_charset): Initialize Vcharset_map_path.
10054 (syms_of_charset): Delete declaration of "charset-map-directory",
10055 add declaration of "charset-map-path".
10056
10057 2008-02-01 Kenichi Handa <handa@m17n.org>
10058
10059 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
10060 ASCII only string.
10061
10062 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
10063
10064 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
10065 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
10066
10067 2008-02-01 Kenichi Handa <handa@m17n.org>
10068
10069 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
10070
10071 * coding.c (QCmnemonic, QCdefalut_char)
10072 (QCdecode_translation_table, QCencode_translation_table)
10073 (QCpost_read_conversion, QCpre_write_conversion): New variables.
10074 (get_translation_table): Return a list of translation tables if
10075 necessary.
10076 (decode_coding): Call get_translation_table with ENCODEP 0.
10077 (char_encodable_p): If translation_table is non-nil, always call
10078 translate_char.
10079 (Fdefine_coding_system_internal): Accept list of translation
10080 tables as :encode-translation-table and :decode-translation-table.
10081 (Fcoding_system_put): New function.
10082 (syms_of_coding): Declare new symbols. Defsubr
10083 Scoding_system_put.
10084 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
10085 typically JISX0212.
10086
10087 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
10088 when the charset is superset type.
10089
10090 * character.c (translate_char): Accept list of translation tables.
10091
10092 2008-02-01 Kenichi Handa <handa@m17n.org>
10093
10094 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
10095 (CODING_ATTR_TRANS_TBL): New macro.
10096
10097 * coding.c (get_translation_table): New function.
10098 (translate_chars): Fix the bug of skipping annotation data.
10099 (decode_coding, encode_coding): Utilize get_translation_table.
10100 (char_encodable_p, Funencodable_char_position): Translate char if
10101 necessary.
10102 (Ffind_coding_systems_region_internal)
10103 (Fcheck_coding_systems_region): Setup translation table for encode
10104 in a coding system attribute vector in advance.
10105 (Fdefine_coding_system_internal): Allow a symbol as translation
10106 table. For shift-jis type coding system, allow 4th charset.
10107
10108 2008-02-01 Kenichi Handa <handa@m17n.org>
10109
10110 * coding.c (decode_coding_sjis): Check the first byte rigidly.
10111
10112 * xdisp.c (get_next_display_element): Pass -1 as POS to
10113 FACE_FOR_CHAR if displaying a C-string.
10114
10115 2008-02-01 Kenichi Handa <handa@m17n.org>
10116
10117 * composite.c (get_composition_id): Handle xoff and yoff in a
10118 composition rule.
10119
10120 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
10121 (struct composition): New member lbearing and rbearing.
10122
10123 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
10124 (x_get_glyph_overhangs): Handle a composition glyph.
10125 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
10126
10127 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
10128 composition glyph.
10129
10130 2008-02-01 Kenichi Handa <handa@m17n.org>
10131
10132 * print.c: Include charset.h.
10133 (Vprint_charset_text_property): New variable.
10134 (Qdefault): Extern it.
10135 (PRINT_STRING_NON_CHARSET_FOUND)
10136 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
10137 (print_check_string_result): New variable.
10138 (print_check_string_charset_prop): New function.
10139 (print_prune_charset_plist): New variable.
10140 (print_prune_string_charset): New function.
10141 (print_object): Call print_prune_string_charset if
10142 Vprint_charset_text_property is not t.
10143 (print_interval): Print nothing if interval->plist is nil.
10144 (syms_of_print): Declare Vprint_charset_text_property as a lisp
10145 variable. Init and staticpro print_prune_charset_plist.
10146
10147 2008-02-01 Kenichi Handa <handa@m17n.org>
10148
10149 * fontset.c (new_fontset_from_font_name): Use the specified font
10150 for all characters in the new fontset.
10151
10152 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
10153 OBJECT args.
10154
10155 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
10156 OBJECT args for composition too.
10157
10158 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
10159 OBJECT args.
10160
10161 2008-02-01 Kenichi Handa <handa@m17n.org>
10162
10163 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
10164
10165 * fontset.c (reorder_font_vector): Adjust for the change of
10166 FONT_DEF format.
10167 (fontset_face): New arg id. Change caller.
10168 (face_for_char): New args pos and object.
10169 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
10170 (fs_query_fontset): Check NAME by Fassoc too.
10171 (Fset_fontset_font): Allow non-XLFD font name.
10172 (Ffontset_info): Adjust for the change of FONT_DEF format.
10173
10174 * fontset.h (face_for_char): Adjust prototype.
10175
10176 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
10177 (append_space, extend_face_to_end_of_line)
10178 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
10179 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
10180
10181 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
10182 POS and OBJECT args.
10183
10184 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
10185 POS and OBJECT args.
10186
10187 2008-02-01 Jason Rumney <jasonr@gnu.org>
10188
10189 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
10190 of GlobalAlloc'ed memory.
10191
10192 2008-02-01 Kenichi Handa <handa@m17n.org>
10193
10194 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
10195
10196 * charset.h (charset_table_used): Delete extern.
10197
10198 * charset.c (charset_table_used): Make it static.
10199 (map_charset_chars): Fix args to c_function with.
10200
10201 * chartab.c (map_sub_char_table_for_charset): Fix args to
10202 c_function with.
10203
10204 * coding.h (enum coding_result_code): Delete
10205 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
10206
10207 * coding.c (Qinsufficient_source, Qinconsistent_eol)
10208 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
10209 (Vlast_code_conversion_error): New variables.
10210 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
10211 (ONE_MORE_BYTE): Record error if any instead of signaling an
10212 error. If non-ASCII multibyte char is found, return the negative
10213 value of the code. All callers changed to check it.
10214 (ONE_MORE_BYTE_NO_CHECK): Likewise.
10215 (record_conversion_result): New function. Change all codes setting
10216 coding->result to call this function.
10217 (detect_coding_utf_8, decode_coding_utf_8)
10218 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
10219 Don't use the local variable incomplete.
10220 (emacs_mule_char): Change the second arg to `const'.
10221 (decode_coding): Fix of flushing out unprocessed data.
10222 (make_conversion_work_buffer): Fix making of a work buffer.
10223 (decode_coding_object): Return coding->dst_object.
10224
10225 * fontset.c (set_fontset_font): Fix args.
10226
10227 * lisp.h (CHARACTERBITS): Define as 22.
10228
10229 * process.c (send_process): Be sure to set coding->src_multibyte.
10230
10231 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
10232
10233 2008-02-01 Kenichi Handa <handa@m17n.org>
10234
10235 * xdisp.c (handle_auto_composed_prop): Give limit to
10236 Fnext_single_char_property_change.
10237
10238 2008-02-01 Kenichi Handa <handa@m17n.org>
10239
10240 * composite.c (syms_of_composite): Don't make the composition hash
10241 table weak.
10242
10243 * fontset.c (Fset_fontset_font): Fix docstring.
10244
10245 * lisp.h (detect_coding_system): Adjust prototype.
10246
10247 * fileio.c (kill_workbuf_unwind): Delete this function.
10248 (Finsert_file_contents): Adjust the call of detect_coding_system.
10249 Get conversion_buffer by code_conversion_save. Use the macro
10250 CODING_MAY_REQUIRE_DECODING. After decoding, update
10251 coding_system.
10252
10253 * coding.h (make_conversion_work_buffer): Delete extern.
10254 (code_conversion_save): Extern it.
10255
10256 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
10257 (CODING_GET_INFO): Delete argument eol_type. Change callers.
10258 (decode_coding_utf_8): Don't do eol converion.
10259 (detect_coding_utf_16): Check coding->src_chars, not
10260 coding->src_bytes. Add heuristics for those that have no signature.
10261 (decode_coding_emacs_mule, decode_coding_iso_2022)
10262 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
10263 Don't do eol converion.
10264 (adjust_coding_eol_type): Return a new coding system.
10265 (detect_coding): Don't detect eol. Fix for utf-16 detection.
10266 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
10267 each change.
10268 (decode_coding): Pay attention to undo_list. Do eol conversion for
10269 all types of coding-systems (if necessary).
10270 (Vcode_conversion_work_buf_list): Delete it.
10271 (Vcode_conversion_reused_workbuf): Rename from
10272 Vcode_conversion_reused_work_buf.
10273 (Vcode_conversion_workbuf_name): New variable.
10274 (reused_workbuf_in_use): New variable.
10275 (make_conversion_work_buffer): Delete the arg DEPTH.
10276 (code_conversion_restore): Change argument to cons.
10277 (code_conversion_save): Delete the argument BUFFER. Change callers.
10278 (detect_coding_system): New argument src_chars. Change callers.
10279 Fix for utf-16 detection.
10280 (init_coding_once): Don't use ISO_carriage_return.
10281 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
10282 reused_workbuf_in_use.
10283
10284 2008-02-01 Kenichi Handa <handa@m17n.org>
10285
10286 * keymap.c (store_in_keymap): Pay attention to the case that idx
10287 is a cons specifying a character range.
10288
10289 2008-02-01 Kenichi Handa <handa@m17n.org>
10290
10291 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
10292 HANDLED_RECOMPUTE_PROPS.
10293
10294 * coding.c (Fdefine_coding_system_internal): Fix checking of
10295 ascii compatibility.
10296
10297 2008-02-01 Kenichi Handa <handa@m17n.org>
10298
10299 * charset.c (find_charsets_in_text): Delete unused locale variable.
10300 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
10301
10302 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
10303 Resync charset_list to Vemacs_mule_charset_list.
10304
10305 * keymap.c (store_in_keymap): Pay attention to the case that idx
10306 is a cons specifying a character range.
10307
10308 2008-02-01 Kenichi Handa <handa@m17n.org>
10309
10310 * composite.c (update_compositions): Bind inhibit-read-only, etc
10311 to t before calling remove-list-of-text-properties.
10312
10313 * print.c (print_object): Always print ASCII chars as is.
10314
10315 2008-02-01 Kenichi Handa <handa@m17n.org>
10316
10317 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
10318
10319 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
10320 is a char table.
10321
10322 2008-02-01 Kenichi Handa <handa@m17n.org>
10323
10324 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
10325
10326 2008-02-01 Kenichi Handa <handa@m17n.org>
10327
10328 * xfaces.c (set_lface_from_font_name): Fix for the case that
10329 FONTNAME is not fontset name.
10330
10331 2008-02-01 Kenichi Handa <handa@m17n.org>
10332
10333 * fns.c (base64_encode_1): Fix previous change.
10334
10335 2008-02-01 Kenichi Handa <handa@m17n.org>
10336
10337 * fontset.c (set_fontset_font): New function.
10338 (Fset_fontset_font): If a font is specified for a charset, use
10339 map_charset_chars to store the font spec in a fontset.
10340
10341 2008-02-01 Kenichi Handa <handa@m17n.org>
10342
10343 * fontset.c (fontset_face): Create a fallback fontset on demand.
10344 (make_fontset): Don't create a fallback fontset here.
10345 (free_face_fontset): Free a fallback fontset (if any) too.
10346 (n_auto_fontsets): Delete this variable.
10347 (auto_fontset_alist): New variable.
10348 (new_fontset_from_font_name): Check auto_fontset_alist.
10349 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
10350 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
10351 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
10352 Defsubr Sfontset_list_all.
10353
10354 2008-02-01 Kenichi Handa <handa@m17n.org>
10355
10356 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
10357
10358 2008-02-01 Kenichi Handa <handa@m17n.org>
10359
10360 * fontset.c (Fnew_fontset): Check NAME more rigidly.
10361
10362 2008-02-01 Kenichi Handa <handa@m17n.org>
10363
10364 * editfns.c (Fgoto_char): Fix docstring.
10365
10366 2008-02-01 Kenichi Handa <handa@m17n.org>
10367
10368 * insdel.c (insert_from_gap): Adjust intervals correctly.
10369
10370 2008-02-01 Jason Rumney <jasonr@gnu.org>
10371
10372 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
10373 (pfnGetFontUnicodeRanges): New dynamically loaded function.
10374 (w32_initialize): Try to load it.
10375 (x_get_font_repertory): Use it if available.
10376 (w32_encode_char): Add shortcut for unicode output.
10377
10378 * w32fns.c (w32_load_system_font): Default charset to -1.
10379 (x_to_w32_charset): Match all fonts for unicode.
10380 (w32_to_x_charset): New parameter matching. Don't return partial
10381 or wildcard charsets.
10382 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
10383 (w32_codepage_for_font): Return CP_UNICODE for unicode.
10384 (w32_to_x_font): Match charset to real charset.
10385 (enum_font_cb2): Always list unicode versions.
10386
10387 * makefile.w32-in (temacs): Increase EMHEAP.
10388
10389 2008-02-01 Jason Rumney <jasonr@gnu.org>
10390
10391 * w32term.c (w32_encode_char): New charset parameter.
10392 font_info.encoding becomes encoding_type.
10393 (x_get_font_repertory): New function. Warning: stub only!
10394 (x_new_font): Return quickly if font already set.
10395 (x_new_fontset): fontsetname parameter is Lisp_Object.
10396 Use new fs_query_fontset. Try new_fontset_from_font_name.
10397 Use fontset_name for return value.
10398
10399 * w32term.h: Declare x_get_font_repertory.
10400
10401 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
10402 place of find_charset_in_text. Use encode_coding_object in place
10403 of encode_coding.
10404 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
10405 decode_coding.
10406
10407 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
10408 of x_new_fontset.
10409 (w32_load_system_font): Initialize charset as unicode.
10410 font_info.encoding becomes encoding_type.
10411 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
10412 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
10413 (syms_of_w32fns): Set get_font_repertory_func.
10414
10415 * w32console.c: Include character.h. Use terminal_encode_buffer
10416 from term.c.
10417 (write_glyphs): Use new version of encode_terminal_code. Use
10418 encode_coding_object in place of encode_coding.
10419
10420 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
10421 encoding becomes encoding_type.
10422
10423 * term.c (terminal_encode_buffer): Make externally visible.
10424
10425 * makefile.w32-in: Add character.h dependancies.
10426 (character.o, chartab.o): New targets.
10427
10428 2008-02-01 Kenichi Handa <handa@m17n.org>
10429
10430 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
10431 CODING_ID_EOL_TYPE.
10432
10433 2008-02-01 Andreas Schwab <schwab@suse.de>
10434
10435 * coding.c (produce_chars): Revert last change.
10436
10437 2008-02-01 Kenichi Handa <handa@m17n.org>
10438
10439 * charset.h (charset_unicode): Extern it.
10440
10441 * charset.c (string_xstring_p): Check by (C >= 0x100).
10442 (find_charsets_in_text): Change format of the arc CHARSETS. New
10443 arg MULTIBYTE.
10444 (Ffind_charset_region, Ffind_charset_string): Adjust for the
10445 change of find_charsets_in_text.
10446 (Fsplit_char): Fix doc. Never return unknown.
10447
10448 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
10449
10450 * coding.c (Fdefine_coding_system_alias): Update
10451 Vcoding_system_list.
10452
10453 * fontset.c (load_font_get_repertory): Pay attention to the case
10454 that ENCODING of a font is specified by a char-table.
10455
10456 * xterm.c (x_get_font_repertory): Handle the case that the
10457 encoding of font is other than Unicode.
10458
10459 2008-02-01 Kenichi Handa <handa@m17n.org>
10460
10461 * term.c (encode_terminal_code): Don't handle glyph-table. Check
10462 if a character is encodable by the terminal coding system. If
10463 not, produces proper number of `?'s. Update
10464 terminal_encode_buffer and terminal_encode_buf_size if necessary.
10465 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
10466
10467 2008-02-01 Kenichi Handa <handa@m17n.org>
10468
10469 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
10470 variables.
10471 (encode_terminal_code): Change argument. Encode multiple
10472 characters at once. Store the result of encoding in
10473 terminal_encode_buffer.
10474 (write_glyphs, insert_glyphs): Adjust for the change of
10475 encode_terminal_code.
10476 (term_init): Initialize terminal_encode_buffer and
10477 terminal_encode_buf_size.
10478
10479 * coding.c (consume_chars): If coding->src_object is nil, don't
10480 check annotation.
10481
10482 2008-02-01 Kenichi Handa <handa@m17n.org>
10483
10484 * character.c (char_string): Use ASCII_CHAR_P instead of
10485 SINGLE_BYTE_CHAR_P.
10486
10487 2008-02-01 Kenichi Handa <handa@m17n.org>
10488
10489 * xdisp.c (handle_auto_composed_prop): Check if the last
10490 characters of auto-composed region is newly composed with the
10491 following characters.
10492 (handle_composition_prop): Fix checking of point being inside
10493 composition.
10494
10495 2008-02-01 Kenichi Handa <handa@m17n.org>
10496
10497 * fns.c (concat): Don't change multibyteness of the result by
10498 concatenating an 8-bit character.
10499
10500 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
10501 multibyteness of the result when newelt is an 8-bit character.
10502
10503 2008-02-01 Dave Love <fx@gnu.org>
10504
10505 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
10506 EMACS_INT.
10507
10508 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
10509
10510 * xfaces.c (face_numeric_value): Declare dim size_t.
10511 (Finternal_lisp_face_equal_p): Remove unused f.
10512
10513 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
10514 (MATRIX_ROW): Remove unused vars.
10515 (draw_glyphs, x_insert_glyphs, fast_find_position)
10516 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
10517 byte/char counts.
10518
10519 * regex.c (regex_compile): Remove unused var.
10520
10521 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
10522
10523 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
10524 (Faccessible_keymaps, where_is_internal): Remove unused vars.
10525
10526 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
10527
10528 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
10529
10530 * fileio.c (Fwrite_region): Remove unused var.
10531
10532 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
10533 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
10534
10535 * composite.c (Fremove_list_of_text_properties): Declare.
10536
10537 * coding.c (inhibit_pre_post_conversion): Remove (unused).
10538 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
10539 (coding_inherit_eol_type): Remove unused attrs.
10540 (detect_coding): Cast arg of detect_eol.
10541
10542 * charset.c (syms_of_charset): Remove unused var p.
10543 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
10544 byte/char counts.
10545
10546 * casetab.c (set_case_table): Remove unused var.
10547
10548 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
10549 unused vars.
10550
10551 2008-02-01 Dave Love <fx@gnu.org>
10552
10553 * xterm.c (x_bitmap_mask): Declare.
10554
10555 2008-02-01 Dave Love <fx@gnu.org>
10556
10557 * xterm.c (x_term_init): Fix type error.
10558
10559 * lisp.h: Add Funibyte_char_to_multibyte.
10560
10561 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
10562 (Fset_coding_system_priority): Doc fix.
10563
10564 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
10565
10566 * indent.c (check_composition): Make start and end EMACS_INT.
10567
10568 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
10569
10570 * xdisp.c (handle_composition_prop, check_point_in_composition):
10571 Make buffer positions EMACS_INT.
10572
10573 * composite.c (find_composition, run_composition_function)
10574 (update_compositions, Ffind_composition_internal): Make buffer
10575 positions EMACS_INT.
10576
10577 * composite.h (find_composition, update_compositions): Make
10578 position args EMACS_INT.
10579
10580 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
10581
10582 * intervals.c (get_property_and_range):
10583 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
10584
10585 * unexalpha.c: Don't include varargs.h.
10586
10587 2008-02-01 Dave Love <fx@gnu.org>
10588
10589 * coding.h (ENCODE_UTF_8): New.
10590
10591 * Makefile.in (gtkutil.o): Depend on coding.h.
10592
10593 * coding.c (Fset_coding_system_priority): Doc fix.
10594
10595 2008-02-01 Kenichi Handa <handa@m17n.org>
10596
10597 * fileio.c (Finsert_file_contents): Call setup_coding_system in
10598 the case of auto saving.
10599
10600 2008-02-01 Andreas Schwab <schwab@suse.de>
10601
10602 * chartab.c (map_char_table, map_char_table_for_charset): Protect
10603 `range' from GC.
10604
10605 2008-02-01 Kenichi Handa <handa@m17n.org>
10606
10607 * coding.c (decode_coding_sjis): Check bytes more rigidly.
10608
10609 2008-02-01 Kenichi Handa <handa@m17n.org>
10610
10611 * fileio.c (choose_write_coding_system): Return a decided coding system.
10612 (Fwrite_region): Set Vlast_coding_system_used to the return value
10613 of choose_write_coding_system.
10614
10615 2008-02-01 Kenichi Handa <handa@m17n.org>
10616
10617 * charset.c (Fset_charset_priority): Pay attention to duplicated
10618 arguments.
10619
10620 * coding.c (QCcategory): New variable.
10621 (syms_of_coding): Defsym it. Set all elements of
10622 Vcoding_category_table and their symbol values.
10623 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
10624 coding-category-XXX, and coding-category-list.
10625 (Fdefine_coding_system_internal): Add category in the plist.
10626
10627 2008-02-01 Kenichi Handa <handa@m17n.org>
10628
10629 * callproc.c (Fcall_process): Handle carryover correctly.
10630
10631 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
10632 (raw_text_coding_system): Check NILP (coding_system).
10633 (coding_inherit_eol_type): Check NILP (coding_system) and
10634 NILP (parent).
10635 (consume_chars): Fix for the case of raw-text.
10636
10637 * process.c (read_process_output): Handle carryover correctly.
10638
10639 2008-02-01 Dave Love <fx@gnu.org>
10640
10641 * regex.c (re_search_2): Fix last change.
10642
10643 2008-02-01 Kenichi Handa <handa@m17n.org>
10644
10645 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
10646 target_multibyte. Even in a unibyte case, return a converted
10647 multibyte char.
10648 (GET_CHAR_AFTER): New macro.
10649 (PATFETCH): Translate via multibyte char.
10650 (HANDLE_UNIBYTE_RANGE): Delete this macro.
10651 (SETUP_MULTIBYTE_RANGE): New macro.
10652 (regex_compile): Setup compiled code so that its multibyteness
10653 matches that of a target. Fix the handling of "[X-YZ]" using
10654 SETUP_MULTIBYTE_RANGE.
10655 (analyse_first) <charset>: For filling fastmap for all multibyte
10656 characters, don't check by BASE_LEADING_CODE_P.
10657 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
10658 the same as RE_MULTIBYTE_P (bufp) now.
10659 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
10660 (TARGET_CHAR_AND_LENGTH): Delete this macro.
10661 (TRANSLATE_VIA_MULTIBYTE): New macro.
10662 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
10663 It is the same as RE_MULTIBYTE_P (bufp) now.
10664 <exactn>: Translate via multibyte.
10665 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
10666 translate it.
10667 <charset, charset_not>: Fetch a character by
10668 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
10669 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
10670 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
10671 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
10672 by GET_CHAR_AFTER.
10673 (bcmp_translate): Likewise.
10674
10675 * search.c (compile_pattern): Check the member target_multibyte,
10676 not the member multibyte of buf.
10677
10678 * lread.c (read1): While reading a string, set force_singlebyte
10679 and force_multibyte correctly.
10680
10681 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
10682 up of unibyte_to_multibyte_table.
10683
10684 2008-02-01 Kenichi Handa <handa@m17n.org>
10685
10686 * coding.c (setup_coding_system): If coding has
10687 post-read-conversion or pre-write-conversion, set
10688 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
10689 respectively.
10690 (decode_coding_gap): Run post-read-conversion if any.
10691
10692 * fileio.c (Finsert_file_contents): Even if we read into a
10693 unibyte buffer, check if we must decode the result or not.
10694
10695 2008-02-01 Kenichi Handa <handa@m17n.org>
10696
10697 * coding.c (make_conversion_work_buffer): Change the work buffer
10698 name to the same one as that of Emacs 21.
10699
10700 2008-02-01 Kenichi Handa <handa@m17n.org>
10701
10702 * coding.h (make_conversion_work_buffer): Adjust prototype.
10703 (code_conversion_restore): Don't extern it.
10704
10705 * coding.c (detected_mask): Delete unused variable.
10706 (decode_coding_iso_2022): Pay attention to the byte sequence of
10707 CTEXT extended segment, and retain those bytes as is.
10708 (decode_coding_ccl): Delete unused variable `valids'.
10709 (setup_coding_system): Delete unused variable `category'.
10710 (consume_chars): Delete unused variable `category'. Make it work
10711 for non-multibyte case.
10712 (make_conversion_work_buffer): Change argument.
10713 (saved_coding): Delete unused variable.
10714 (code_conversion_restore): Don't check saved_coding->destination.
10715 (code_conversion_save): New function.
10716 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
10717 instead of record_unwind_protect.
10718 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
10719 (detect_coding_system): Delete unused variable `mask'.
10720 (Fdefine_coding_system_internal): Delete unused variable id.
10721
10722 * fileio.c (kill_workbuf_unwind): New function.
10723 (Finsert_file_contents): On replacing, call
10724 make_conversion_work_buffer with correct args, and call
10725 record_unwind_protect with the first arg kill_workbuf_unwind.
10726
10727 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
10728
10729 2008-02-01 Kenichi Handa <handa@m17n.org>
10730
10731 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
10732 (fontset_add): Fix for the case that TO is less than TO1.
10733 (Ffontset_info): Don't use fallback fontset on checking the
10734 default fontset.
10735 (dump_fontset): New function for debugging.
10736
10737 * coding.c (Fdefine_coding_system_internal): Fix for the case that
10738 coding_type is Qcharset.
10739
10740 2008-02-01 Kenichi Handa <handa@m17n.org>
10741
10742 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
10743 (map_char_table): Don't inherit the value from the parent on
10744 initializing VAL. Adjust for the above change.
10745
10746 2008-02-01 Kenichi Handa <handa@m17n.org>
10747
10748 * coding.c (Qsignature, Qendian): Delete these variables.
10749 (syms_of_coding): Don't initialize them.
10750 (CATEGORY_MASK_UTF_16_AUTO): New macro.
10751 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
10752 detect_info->found.
10753 (decode_coding_utf_16): Don't detect BOM here.
10754 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
10755 is NOT utf_16_without_bom.
10756 (setup_coding_system): For a coding system of type utf-16, check
10757 if the attribute :endian is Qbig or not (not nil or not), and set
10758 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
10759 (detect_coding): If coding type is utf-16 and BOM detection is
10760 required, detect it.
10761 (Fdefine_coding_system_internal): For a coding system of type
10762 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
10763
10764 2008-02-01 Kenichi Handa <handa@m17n.org>
10765
10766 * coding.c (coding_set_source): Fix for the case that the current
10767 buffer is different from coding->src_object.
10768 (decode_coding_object): Don't use the conversion work buffer if
10769 DST_OBJECT is a buffer.
10770
10771 2008-02-01 Dave Love <fx@gnu.org>
10772
10773 * lread.c (read_emacs_mule_char) [len==2]: Index
10774 emacs_mule_charset correctly.
10775
10776 2008-02-01 Dave Love <fx@gnu.org>
10777
10778 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
10779 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
10780 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
10781 treated specially.)
10782 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
10783 (detected_mask): Remove Big5 bits.
10784
10785 2008-02-01 Kenichi Handa <handa@m17n.org>
10786
10787 The following changes are to make the font rescaling facility
10788 compatible with Emacs 21.
10789
10790 * xfaces.c (Vface_font_rescale_alist): Rename from
10791 Vface_resizing_fonts.
10792 (struct font_name): Rename member resizing_ratio to rescale_ratio.
10793 (font_rescale_ratio): Rename from font_resizing_ratio.
10794 (split_font_name): Set font->rescale_ratio.
10795 (better_font_p): Pay attention to font->rescale_ratio.
10796 (build_scalable_font_name): Likewise. Change RESX, and RESY
10797 fields.
10798 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
10799
10800 2008-02-01 Kenichi Handa <handa@m17n.org>
10801
10802 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
10803 (Qutf_16_le): Remove these variables.
10804 (syms_of_coding): Don't DEFSYM them.
10805 (decode_coding_utf_16): Fix handling of BOM.
10806 (encode_coding_utf_16): Fix handling of BOM.
10807
10808 2008-02-01 Kenichi Handa <handa@m17n.org>
10809
10810 * fileio.c (Finsert_file_contents): On replacing, before decoding
10811 the file into the work buffer, set point of the work buffer to the end.
10812
10813 2008-02-01 Dave Love <fx@gnu.org>
10814
10815 * coding.c (Fcheck_coding_systems_region): Fix type errors.
10816
10817 2008-02-01 Dave Love <fx@gnu.org>
10818
10819 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
10820 and fix C types.
10821
10822 2008-02-01 Kenichi Handa <handa@m17n.org>
10823
10824 * xdisp.c (SKIP_GLYPHS): New macro.
10825 (set_cursor_from_row): Pay attention to string display properties.
10826
10827 * category.c (copy_category_entry): Fix for the case that RANGE
10828 is an integer.
10829
10830 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
10831
10832 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
10833
10834 2008-02-01 Kenichi Handa <handa@m17n.org>
10835
10836 * charset.c (Fcharset_id_internal): New function.
10837 (syms_of_charset): Defsubr it.
10838
10839 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
10840 with the last arg charset_list acquired from coding.
10841 (Fdefine_coding_system_internal): For ccl-based coding system, fix
10842 the attribute coding_attr_ccl_valids.
10843
10844 * coding.h (enum define_coding_ccl_arg_index): Set the first
10845 member coding_arg_ccl_decoder to coding_arg_max.
10846
10847 * ccl.h (ccl_driver): Adjust prototype.
10848
10849 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
10850 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
10851 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
10852 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
10853 last arg Qnil.
10854
10855 2008-02-01 Kenichi Handa <handa@m17n.org>
10856
10857 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
10858 call encode_char.
10859
10860 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
10861
10862 2008-02-01 Dave Love <fx@gnu.org>
10863
10864 * composite.c (syms_of_composite): Make composition_hash_table weak.
10865
10866 2008-02-01 Kenichi Handa <handa@m17n.org>
10867
10868 * dispextern.h (check_face_attributes, generate_ascii_font_name)
10869 (font_name_registry): Don't extern them.
10870 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
10871
10872 * fontset.h (Qfontset): Don't extern it.
10873 (new_fontset_from_font_name): Extern it.
10874
10875 * fontset.c: Give 8 extra slots to fontset objects.
10876 (Qfontset_info): New variable.
10877 (syms_of_fontset): Defsym it.
10878 (FONTSET_FALLBACK): New macro.
10879 (fontset_face): Try also the default fontset.
10880 (make_fontset): Realize a fallback fontset from the default fontset.
10881 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
10882 using split_font_name_into_vector and build_font_name_from_vector.
10883 (Fset_fontset_font): Access the elements of font_spec by enum
10884 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
10885 name by using split_font_name_into_vector.
10886 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
10887 generate a proper font name from the fontset name. Update
10888 Vfontset_alias_alist.
10889 (n_auto_fontsets): New variable.
10890 (new_fontset_from_font_name): New function.
10891 (Ffont_info): Store the information about fonts generated from the
10892 default fontset in the first extra slot of the returned char-table.
10893
10894 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
10895 (font_name_registry): Delete function.
10896 (split_font_name_into_vector): New function.
10897 (build_font_name_from_vector): New function.
10898 (font_list): The argument REGISTRY is now a list of registry names.
10899 (choose_face_font): If we are choosing an ASCII font, and ATTRS
10900 specifies an explicit font name, return the name as is. Make a
10901 list of registy names.
10902
10903 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
10904 of x_new_fontset.
10905 (Fx_create_frame): Don't call x_new_fontset here. Just use
10906 x_list_fonts to check the existence of fonts.
10907
10908 * xterm.h (x_new_fontset): Adjust prototype.
10909
10910 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
10911 string. Use new_fontset_from_font_name to create a fontset from a
10912 font name.
10913
10914 2008-02-01 Kenichi Handa <handa@m17n.org>
10915
10916 * syntax.c (Vfind_word_boundary_function_table): New name for
10917 Vnext_word_boundary_function_table.
10918 (find-word-boundary-function-table): New name for
10919 next-word-boundary-function-table.
10920
10921 2008-02-01 Dave Love <fx@gnu.org>
10922
10923 * Makefile.in: Fix some dependencies.
10924
10925 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
10926 set it to nil before returning.
10927
10928 * composite.c (update_compositions): Fix type error.
10929
10930 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
10931
10932 2008-02-01 Kenichi Handa <handa@m17n.org>
10933
10934 * xterm.c (x_new_font): Optimize for the case that the font is
10935 already set for the frame.
10936
10937 2008-02-01 Kenichi Handa <handa@m17n.org>
10938
10939 * chartab.c (char_table_ascii): Check if the char table contents
10940 is sub-char-table or not.
10941 (char_table_set, char_table_set_range): Fix argument to
10942 char_table_ascii.
10943
10944 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
10945 (detect_coding_utf_8, detect_coding_utf_16)
10946 (detect_coding_emacs_mule, detect_coding_iso_2022)
10947 (detect_coding_sjis, detect_coding_big5)
10948 (detect_coding_ccl, detect_coding_charset): Change argument MASK
10949 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
10950 sequence is valid in this coding system. Change callers.
10951 (MAX_ANNOTATION_LENGTH): New macro.
10952 (ADD_ANNOTATION_DATA): New macro.
10953 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
10954 ADD_ANNOTATION_DATA. Change the format of annotation data.
10955 (ADD_CHARSET_DATA): New macro.
10956 (emacs_mule_char): New argument ID. Change callers.
10957 (decode_coding_emacs_mule, decode_coding_iso_2022)
10958 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
10959 Produce charset annotation data in coding->charbuf.
10960 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
10961 to charset annotation data in coding->charbuf.
10962 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
10963 coding->common_flags if the coding system is iso-2022 based and
10964 uses designation.
10965 (produce_composition): Adjust for the new annotation data format.
10966 (produce_charset): New function.
10967 (produce_annotation): Handle charset annotation.
10968 (handle_composition_annotation, handle_charset_annotation): New
10969 functions.
10970 (consume_chars): Handle charset annotation. Utilize the above two
10971 functions.
10972 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
10973 buffer, get the deleted text as a string and set
10974 coding->src_object to that string.
10975 (detect_coding, detect_coding_system): Use the new struct
10976 coding_detection_info.
10977
10978 * coding.h (struct coding_detection_info): New structure.
10979 (struct coding_system): Adjust prototype of the member `detector'.
10980 (CODING_ANNOTATE_CHARSET_MASK): New macro.
10981
10982 2008-02-01 Kenichi Handa <handa@m17n.org>
10983
10984 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
10985
10986 2008-02-01 Dave Love <fx@gnu.org>
10987
10988 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
10989 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
10990 to new local and nullify apropos_accumulate before returning.
10991 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
10992
10993 2008-02-01 Kenichi Handa <handa@m17n.org>
10994
10995 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
10996 correctly.
10997
10998 2008-02-01 Dave Love <fx@gnu.org>
10999
11000 * fns.c (Flanginfo): Call synchronize_system_time_locale.
11001
11002 2008-02-01 Kenichi Handa <handa@m17n.org>
11003
11004 The following changes are to make character composition happen
11005 automatically on displaying.
11006
11007 * Makefile.in (lisp, shortlisp): Add composite.elc.
11008
11009 * composite.h (Qauto_composed, Vauto_composition_function)
11010 (Qauto_composition_function): Extern them.
11011
11012 * composite.c (Vcomposition_function_table)
11013 (Qcomposition_function_table): Delete variables.
11014 (Qauto_composed, Vauto_composition_function)
11015 (Qauto_composition_function): New variables.
11016 (run_composition_function): Don't call
11017 compose-chars-after-function.
11018 (update_compositions): Clear `auto-composed' text property.
11019 (compose_chars_in_text): Delete this function.
11020 (syms_of_composite): Staticpro Qauto_composed and
11021 Qauto_composition_function. Declare Vauto_composition_function as
11022 a Lisp variable.
11023
11024 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
11025
11026 * xdisp.c (it_props): Add an entry for Qauto_composed.
11027 (handle_auto_composed_prop): New function.
11028
11029 * xselect.c (selection_data_to_lisp_data): Don't call
11030 compose_chars_in_text.
11031
11032 2008-02-01 Dave Love <fx@gnu.org>
11033
11034 * keyboard.c (read_char): Modify checking around use of
11035 Vkeyboard_translate_table.
11036
11037 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
11038 and fix C types.
11039
11040 2008-02-01 Kenichi Handa <handa@m17n.org>
11041
11042 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
11043 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
11044 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
11045 the case that the last byte is '\r' correctly.
11046 (decode_coding): Flush out the unprocessed data correctly.
11047 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
11048
11049 2008-02-01 Dave Love <fx@gnu.org>
11050
11051 * xterm.c (XTread_socket): Fix changes for defined keysyms.
11052 Add XK_ISO... case.
11053 (xaw_scroll_callback): Revert last change.
11054
11055 2008-02-01 Kenichi Handa <handa@m17n.org>
11056
11057 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
11058
11059 2008-02-01 Kenichi Handa <handa@m17n.org>
11060
11061 * xfaces.c (Vface_resizing_fonts): New variable.
11062 (struct font_name): New member `resizing_ratio'.
11063 (font_resizing_ratio): New function.
11064 (split_font_name): Set font->resizing_ratio.
11065 (better_font_p): Pay attention to font->resizing_ratio.
11066 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
11067 RESX, and RESY fields.
11068 (try_alternative_families): Try scalable fonts if
11069 Vscalable_fonts_allowed is not Qt.
11070 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
11071
11072 2008-02-01 Dave Love <fx@gnu.org>
11073
11074 * xterm.c (xaw_scroll_callback): Cast correctly.
11075
11076 2008-02-01 Dave Love <fx@gnu.org>
11077
11078 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
11079 (lispy_kana_keys): Comment out.
11080 (make_lispy_event) [XK_kana_A]: Comment out.
11081
11082 * xterm.c (xaw_scroll_callback): Cast call_data.
11083 (XTread_socket): Deal with ASCII keysyms.
11084 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
11085
11086 2008-02-01 Dave Love <fx@gnu.org>
11087
11088 * xterm.c (Vx_keysym_table): New.
11089 (syms_of_xterm): Initialize it.
11090 (XTread_socket): Use it.
11091 From head: Eliminate incorrect optimization that tried to avoid
11092 decoding the output of X*LookupString.
11093 (x_get_font_repertory): Delete charset declaration.
11094
11095 2008-02-01 Kenichi Handa <handa@m17n.org>
11096
11097 * coding.c (detect_coding_charset): If only ASCII bytes are found,
11098 return 0.
11099 (Fdefine_coding_system_internal): Setup
11100 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
11101
11102 2008-02-01 Dave Love <fx@gnu.org>
11103
11104 * coding.c (Fcheck_coding_system): Doc fix.
11105
11106 * editfns.c (Finsert_byte): Return a proper value.
11107
11108 2008-02-01 Kenichi Handa <handa@m17n.org>
11109
11110 * coding.c (decode_coding): Fix args to translate_chars. Pay
11111 attention to Vstandard_translation_table_for_decode.
11112 (encode_coding): Fix args to translate_chars. Pay attention to
11113 Vstandard_translation_table_for_encode.
11114
11115 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
11116 SINGLE_BYTE_CHAR_P.
11117
11118 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
11119 not by SINGLE_BYTE_CHAR_P.
11120
11121 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
11122 SINGLE_BYTE_CHAR_P.
11123
11124 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
11125 SINGLE_BYTE_CHAR_P.
11126
11127 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
11128 by SINGLE_BYTE_CHAR_P.
11129
11130 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
11131 SINGLE_BYTE_CHAR_P.
11132
11133 2008-02-01 Dave Love <fx@gnu.org>
11134
11135 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
11136
11137 2008-02-01 Dave Love <fx@gnu.org>
11138
11139 * fns.c (Flanginfo): Fix typo.
11140
11141 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
11142
11143 2008-02-01 Kenichi Handa <handa@m17n.org>
11144
11145 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
11146 (detect_coding_emacs_mule, detect_coding_iso_2022)
11147 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
11148 incomplete byte sequence. Don't update *mask when correctly detected.
11149 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
11150 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
11151 (detect_coding, detect_coding_system): Adjust for the changes above.
11152
11153 2008-02-01 Kenichi Handa <handa@m17n.org>
11154
11155 * character.c (char_string): Rename from
11156 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
11157 (string_char): Rename from string_char.
11158
11159 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
11160 if C is greater than MAX_3_BYTE_CHAR.
11161 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
11162 string_char instead of string_char_with_unification.
11163
11164 2008-02-01 Dave Love <fx@gnu.org>
11165
11166 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
11167
11168 2008-02-01 Kenichi Handa <handa@m17n.org>
11169
11170 * keymap.c (push_key_description): Pay attention to force_multibyte.
11171
11172 * regex.c (re_search_2): Fix for the case of unibyte buffer.
11173
11174 2008-02-01 Dave Love <fx@gnu.org>
11175
11176 * charset.c (define_charset_internal): Rename `supprementary'.
11177
11178 * Makefile.in (lisp, shortlisp): Remove latin-N.
11179
11180 2008-02-01 Dave Love <fx@gnu.org>
11181
11182 * xfns.c (x_window, x_window): Use use_xim.
11183
11184 * xterm.c (use_xim): Initialize.
11185 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
11186 (x_term_init): Maybe set use_xim.
11187
11188 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
11189
11190 2008-02-01 Kenichi Handa <handa@m17n.org>
11191
11192 * search.c (search_buffer): Fix case-fold-search of multibyte
11193 characters.
11194 (boyer_moore): Rename the last argument to char_high_bits.
11195
11196 2008-02-01 Kenichi Handa <handa@m17n.org>
11197
11198 * xdisp.c (display_string): Fix for the case of zero width glyph.
11199
11200 * xfns.c (x_set_font): Change the error message of the case that
11201 x_new_fontset returns Qt.
11202
11203 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
11204 (Finternal_set_lisp_face_attribute): Use signal_error for the
11205 error of invalid fontset.
11206
11207 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
11208 fontset, return Qt.
11209
11210 2008-02-01 Dave Love <fx@gnu.org>
11211
11212 * unexelf.c (unexec): Make .got handling not SGI-specific.
11213
11214 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
11215
11216 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
11217
11218 * keyboard.c (read_key_sequence): Fix type error.
11219
11220 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
11221 type error.
11222
11223 * fontset.c (fontset_add): Return Lisp_Object.
11224
11225 2008-02-01 Dave Love <fx@gnu.org>
11226
11227 * charset.h (charset_ordered_list_tick): Declare extern.
11228
11229 2008-02-01 Kenichi Handa <handa@m17n.org>
11230
11231 The following changes (and some of 2008-02-01 changes of mine) are
11232 for handling syntax, category, and case conversion for unibyte
11233 characters by converting them to multibyte on the fly. With these
11234 changes, we don't have to setup syntax and case tables for unibyte
11235 characters in each language environment.
11236
11237 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
11238 multibyte if necessary.
11239
11240 * bytecode.c (Fbyte_code): Likewise.
11241
11242 * character.h (LEADING_CODE_LATIN_1_MIN)
11243 (LEADING_CODE_LATIN_1_MAX): New macros.
11244 (unibyte_to_multibyte_table): Extern it.
11245 (unibyte_char_to_multibyte): New macro.
11246 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
11247 (CHAR_LEADING_CODE): New macro.
11248 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
11249
11250 * character.c (unibyte_to_multibyte_table): New variable.
11251 (unibyte_char_to_multibyte): Move to character.h and define as macro.
11252 (multibyte_char_to_unibyte): If C is an eight-bit character,
11253 convert it to the corresponding byte value.
11254
11255 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
11256 not 1, signals an error. Update the elements of
11257 unibyte_to_multibyte_table.
11258 (init_charset_once): Initialize unibyte_to_multibyte_table.
11259 (syms_of_charset): Define the charset `iso-8859-1'.
11260
11261 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
11262 as is without converting it to unibyte. In a unibyte buffer,
11263 convert C to multibyte before checking the syntax.
11264
11265 * lisp.h (unibyte_char_to_multibyte): Delete extern.
11266
11267 * minibuf.c (Fminibuffer_complete_word): Use the macro
11268 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
11269
11270 * regex.h (struct re_pattern_buffer): New member target_multibyte.
11271
11272 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
11273 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
11274 that is zero, convert an eight-bit char to multibyte.
11275 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
11276 non-emacs case.
11277 (PATFETCH): Convert an eight-bit char to multibyte.
11278 (HANDLE_UNIBYTE_RANGE): New macro.
11279 (regex_compile): Setup the compiled pattern for multibyte chars
11280 even if the given regex string is unibyte. Use PATFETCH_RAW
11281 instead of PATFETCH in many places. To handle `charset'
11282 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
11283 only for ASCII chars.
11284 (analyse_first) <exactn>: Simplify because the compiled pattern
11285 is multibyte.
11286 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
11287 <charset>: Use CHAR_LEADING_CODE to get leading codes.
11288 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
11289 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
11290 multibyte always 1.
11291 (re_search_2): In emacs, set the locale variable multibyte to 1,
11292 otherwise to 0. New local variable target_multibyte. Check it
11293 to decide the multibyteness of STR1 and STR2. If
11294 target_multibyte is zero, convert unibyte chars to multibyte
11295 before translating and checking fastmap.
11296 (TARGET_CHAR_AND_LENGTH): New macro.
11297 (re_match_2_internal): In emacs, set the locale variable multibyte
11298 to 1, otherwise to 0. New local variable target_multibyte. Check
11299 it to decide the multibyteness of STR1 and STR2. Use
11300 TARGET_CHAR_AND_LENGTH to fetch a character from D.
11301 <charset, charset_not>: If multibyte is nonzero, check fastmap
11302 only for ASCII chars. Call bcmp_translate with
11303 target_multibyte, not with multibyte.
11304 <begline>: Declare the local variable C as `unsigned'.
11305 (bcmp_translate): Change the last arg name to target_multibyte.
11306
11307 * search.c (compile_pattern_1): Don't adjust the multibyteness of
11308 the regexp pattern and the matching target. Set cp->buf.multibyte
11309 to the multibyteness of the regexp pattern. Set
11310 cp->but.target_multibyte to the multibyteness of the matching target.
11311 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
11312 FETCH_STRING_CHAR_ADVANCE.
11313 (Freplace_match): Convert unibyte chars to multibyte.
11314
11315 * syntax.c (char_quoted, back_comment, scan_words)
11316 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
11317 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
11318 unibyte chars to multibyte.
11319 (skip_chars): Delete the arg syntaxp, and move the code for
11320 handling syntaxes to skip_syntaxes. Change callers.
11321 Fix the case that the multibyteness of STRING and the current
11322 buffer doesn't match.
11323 (skip_syntaxes): New function.
11324 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
11325 SINGLE_BYTE_CHAR_P.
11326
11327 2008-02-01 Kenichi Handa <handa@m17n.org>
11328
11329 * xfaces.c (QCfontset): New variable.
11330 (LFACE_FONTSET): New macro.
11331 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
11332 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
11333 (Finternal_set_lisp_face_attribute)
11334 (Finternal_get_lisp_face_attribute): Handle QCfontset.
11335 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
11336 check also LFACE_FONTSET_INDEX.
11337 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
11338 attrs[LFACE_FONT_INDEX].
11339 (syms_of_xfaces): Intern and staticpro QCfontset.
11340
11341 * dispextern.h (enum lface_attribute_index): New member
11342 LFACE_FONTSET_INDEX.
11343
11344 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
11345
11346 2008-02-01 Kenichi Handa <handa@m17n.org>
11347
11348 * coding.c (coding_set_destination): Fix coding->destination for
11349 the case converting a region.
11350 (encode_coding_utf_8): Encode eight-bit chars as single byte.
11351 (encode_coding_object): Fix coding->dst_pos and
11352 coding->dst_pos_byte for the case converting a region.
11353
11354 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
11355
11356 * character.h (BYTE8_STRING): New macro.
11357
11358 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
11359
11360 2008-02-01 Kenichi Handa <handa@m17n.org>
11361
11362 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
11363 characters by octal form.
11364
11365 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
11366
11367 * buffer.h (_fetch_multibyte_char_len): Delete extern.
11368 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
11369 _fetch_multibyte_char_len.
11370 (FETCH_CHAR_AS_MULTIBYTE): New macro.
11371
11372 * casetab.c (set_canon, set_identity, shuffle): Simplify.
11373
11374 * casefiddle.c (casify_object): Simplify. Handle the case that
11375 the case conversion change the byte length.
11376 (casify_region): Likewise.
11377
11378 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
11379
11380 * character.c (_fetch_multibyte_char_len): Delete this variable.
11381 (syms_of_character): Setup Vprintable_chars.
11382
11383 * editfns.c (Fchar_equal): Fix for the unibyte case.
11384 (Finsert_byte): New function.
11385 (syms_of_editfns): Defsubr it.
11386
11387 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
11388 of direct code 0x3ffff.
11389
11390 * search.c (Freplace_match): Fix for the unibyte case.
11391
11392 2008-02-01 Kenichi Handa <handa@m17n.org>
11393
11394 * lread.c (safe_to_load_p): Fix the logic.
11395
11396 * syntax.c (scan_words): Don't treat characters belonging to
11397 different scripts as constituting a word.
11398
11399 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
11400
11401 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
11402
11403 * emacs.c (main): In the case of --unibyte, instead of aborting on
11404 finding non-empty buffer, make it unibyte.
11405
11406 2008-02-01 Kenichi Handa <handa@m17n.org>
11407
11408 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
11409 to create a fontset.
11410
11411 2008-02-01 Dave Love <fx@gnu.org>
11412
11413 * character.c (Funibyte_char_to_multibyte): Doc fix.
11414
11415 * xfns.c [HAVE_STDLIB_H]: Fix last change.
11416
11417 2008-02-01 Kenichi Handa <handa@m17n.org>
11418
11419 * fontset.c (fontset_add): Make the type `int'.
11420 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
11421
11422 * character.c (unibyte_char_to_multibyte)
11423 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
11424 charset_unibyte, not charset_primary.
11425
11426 * charset.h (charset_unibyte): Extern it instead of charset_primary.
11427
11428 * charset.c (charset_unibyte): Rename from charset_primary.
11429 (Funibyte_charset): Rename from Fprimary_charset.
11430 (Fset_unibyte_charset): Rename from Fset_primary_charset.
11431 (syms_of_charset): Adjust for the above changes.
11432
11433 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
11434 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
11435 it->multibyte_p is zero.
11436
11437 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
11438 Delete extern.
11439
11440 2008-02-01 Kenichi Handa <handa@m17n.org>
11441
11442 * coding.c (Fdefine_coding_system_internal): Fix category setting
11443 for a coding system of type iso-2022.
11444
11445 2008-02-01 Kenichi Handa <handa@m17n.org>
11446
11447 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
11448
11449 2008-02-01 Kenichi Handa <handa@m17n.org>
11450
11451 * syntax.c (Vnext_word_boundary_function_table): New variable.
11452 (next-word-boundary-function-table): Declare it as a Lisp variable
11453 in syms_of_syntax.
11454 (scan_words): Call functions in Vnext_word_boundary_function_table
11455 if any.
11456
11457 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
11458
11459 * fontset.c (fs_load_font): If fontp->charset is not negative,
11460 return fontp without setting its members.
11461
11462 2008-02-01 Dave Love <fx@gnu.org>
11463
11464 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
11465
11466 * m/sparc.h (HAVE_ALLOCA): Delete.
11467
11468 * s/irix6-5.h: Don't include strings.h.
11469 (bcopy, bzero, bcmp): Don't undef.
11470
11471 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
11472
11473 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
11474 (TIOCSIGSEND): Don't test IRIX6.
11475 (bcopy, bzero, bcmp): Define conditionally.
11476
11477 2008-02-01 Kenichi Handa <handa@m17n.org>
11478
11479 * buffer.c (Qas, Qmake, Qto): New variables.
11480 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
11481 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
11482
11483 * callproc.c (Fcall_process): Don't call insert_1_both directly if
11484 we are inserting a process output into a multibyte buffer.
11485
11486 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
11487 multibyte_char_to_unibyte.
11488
11489 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
11490 by the primary charset, make it eight-bit char.
11491 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
11492
11493 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
11494 (charset_8_bit__control, charset_8_bit_graphic)
11495 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
11496 (define_charset_internal): New function.
11497 (syms_of_charset): Call define_charset_internal for pre-defined
11498 charsets.
11499
11500 * charset.h (charset_8_bit): Extern it.
11501
11502 * coding.c (make_conversion_work_buffer): Adjust for the change
11503 of Fset_buffer_multibyte.
11504 (encode_coding_raw_text): Increment p0 in the loop.
11505
11506 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
11507
11508 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
11509 for the change of Fset_buffer_multibyte.
11510
11511 * fns.c (Fstring_to_multibyte): New function.
11512 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
11513
11514 2008-02-01 Dave Love <fx@gnu.org>
11515
11516 * xfns.c (x_put_x_image): Declare args.
11517
11518 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
11519 (try_font_list): Declare an arg.
11520
11521 * xdisp.c (message2_nolog, set_message): Declare an arg.
11522
11523 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
11524
11525 * syntax.c (scan_sexps_forward): Declare an arg.
11526
11527 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
11528 Declare an arg.
11529
11530 * lisp.h (Fnew_fontset): Declare.
11531
11532 * keymap.c (push_key_description): Call CHARACTERP correctly.
11533
11534 * fontset.c (fontset_add): Declare args. Call make_number correctly.
11535 (face_for_char): Delete unused vars.
11536 (Fset_fontset_font): Doc fix. Delete unused vars.
11537
11538 * doc.c (Fsubstitute_command_keys): Delete unused vars.
11539
11540 * composite.c (update_compositions): Declare arg.
11541
11542 * cm.c (calccost, cmgoto): Declare args.
11543
11544 * charset.c: Remove `emacs' conditional. Doc fixes.
11545 (map_char_table_for_charset): Declare.
11546
11547 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
11548
11549 * ccl.c: Remove `emacs' conditional.
11550
11551 2008-02-01 Kenichi Handa <handa@m17n.org>
11552
11553 The following changes are to allow specifying multiple font
11554 patterns for a character range (specified by script or charset).
11555
11556 * Makefile.in (abbrev.o): Depend on syntax.h.
11557 (xfaces.o): Depend on charset.h.
11558
11559 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
11560 SINGLE_BYTE_CHAR_P.
11561
11562 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
11563
11564 * character.h (Vchar_script_table): Extern it.
11565
11566 * character.c (Vscript_alist): Delete.
11567 (Vchar_script_table, Qchar_script_table): New variable.
11568 (syms_of_character): Declare Vchar_script_table as a lisp variable
11569 and initialize it.
11570
11571 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
11572 have property char-table-extra-slots, make no extra slot.
11573
11574 * dispextern.h (struct face): Delete member `charset'.
11575 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
11576 SINGLE_BYTE_CHAR_P.
11577 (choose_face_font, lookup_non_ascii_face, font_name_registry):
11578 Add prototypes.
11579 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
11580 (generate_ascii_font_name): Rename from generate_ascii_font.
11581
11582 * fontset.h (get_font_repertory_func): New prototype.
11583 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
11584 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
11585
11586 * fontset.c (Qprepend, Qappend): New variables.
11587 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
11588 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
11589 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
11590 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
11591 (fontset_ref_and_range, fontset_add, reorder_font_vector)
11592 (load_font_get_repertory): New functions.
11593 (fontset_set): Delete.
11594 (fontset_face): New arg FACE. Return face ID, not face.
11595 Complete re-write to handle new fontset structure. Change caller.
11596 (free_face_fontset): Use ASET istead of AREF (X) = Y.
11597 (face_for_char): Don't call lookup_face.
11598 (make_fontset_for_ascii_face): New arg FACE.
11599 (fs_load_font): New arg CHARSET_ID. Don't check
11600 Vfont_encoding_alist here.
11601 (find_font_encoding): New function.
11602 (list_fontsets): Use STRINGP, not ! NILP.
11603 (accumulate_script_ranges): New function.
11604 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
11605 re-written to handle new fontset structure.
11606 (Ffontset_font): Return a copy of element.
11607 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
11608 docstring of font-encoding-alist.
11609
11610 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
11611 (Fset_fotset_font): Fix arguments to 5.
11612
11613 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
11614
11615 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
11616 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
11617 (highlight_trailing_whitespace): Adjust for the change of
11618 lookup_named_face.
11619
11620 * xfaces.c: Include charset.h.
11621 (load_face_font): Delete argument C. Change caller.
11622 (generate_ascii_font_name): Rename from generate_ascii_font.
11623 (font_name_registry): New function.
11624 (cache_face): Store ascii faces before non-ascii faces in buckets.
11625 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
11626 Lookup only ascii faces.
11627 (lookup_non_ascii_face): New function.
11628 (lookup_named_face): Delete argument C. Change caller.
11629 (lookup_derived_face): Delete argument C. Change caller.
11630 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
11631 a string, just call font_list with it.
11632 (choose_face_font): Delete arguments FACE and C. New arg
11633 FONT_SPEC. Change caller.
11634 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
11635 Change caller.
11636 (realize_non_ascii_face): New function.
11637 (realize_x_face): Call load_face_font here.
11638 (realize_tty_face): Delete argument C. Change caller.
11639 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
11640 get a face ID.
11641 (dump_realized_face): Don't print charset of FACE.
11642
11643 * xfns.c (x_set_font): Always call x_new_fontset and
11644 store_frame_parameter.
11645 (Fx_create_frame): Call x_new_fontset, not x_new_font.
11646 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
11647
11648 * xterm.h (x_get_font_repertory): Extern it.
11649
11650 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
11651 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
11652 it->multibyte_p is zero.
11653 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
11654 (x_new_fontset): If FONTSETNAME doesn't match any existing
11655 fontsets, create a new one.
11656 (x_get_font_repertory): New function.
11657
11658 2008-02-01 Kenichi Handa <handa@m17n.org>
11659
11660 * coding.c (Ffind_coding_systems_region_internal): Detect an
11661 ASCII only string correctly.
11662
11663 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
11664 version is 0.
11665
11666 2008-02-01 Kenichi Handa <handa@m17n.org>
11667
11668 * lread.c: Include "coding.h".
11669 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
11670 (load_each_byte, unread_char): New variables.
11671 (readchar_backlog): Delete.
11672 (readchar): Return a character unless load_each_byte is nonzero.
11673 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
11674 cons. If unread_char is not -1, simply return it.
11675 (unreadchar): Handle the case that readcharfun is
11676 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
11677 (read_multibyte): Delete.
11678 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
11679 (read_emacs_mule_char): New functions.
11680 (Fload): Even if the file doesn't have the extension ".elc", if
11681 safe_to_load_p returns a positive version number, assume that the
11682 file contains bytecompiled code. If the version is less than 22,
11683 load the file while decoding multibyte sequences by emacs-mule.
11684 (readevalloop): Don't use readchar_backlog.
11685 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
11686 (Fread_from_string): Pay attention to the case that STREAM is a cons.
11687 (read_escape): Delete the arg BYTEREP.
11688 (read1): Set load_each_byte to 1 temporarily while handling
11689 #@NUMBER. Don't call read_multibyte.
11690 (read_vector): Call Fread with a cons. If readcharfun is
11691 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
11692 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
11693 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
11694 and Qload_force_doc_strings.
11695
11696 2008-02-01 Kenichi Handa <handa@m17n.org>
11697
11698 * xdisp.c (face_before_or_after_it_pos): Call
11699 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
11700
11701 2008-02-01 Kenichi Handa <handa@m17n.org>
11702
11703 * character.h (TRAILING_CODE_P): New macro.
11704 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
11705 (string_char_with_unification): Fix prototype.
11706 (Vscript_alist): Extern it.
11707
11708 * character.c (Vscript_alist): New variable.
11709 (string_char_with_unification, str_as_unibyte)
11710 (string_escape_byte8): Add `const' to local variables.
11711 (syms_of_character): Declare script-alist as a Lisp variable.
11712
11713 * charset.h (Vcharset_ordered_list): Extern it.
11714 (charset_ordered_list_tick): Extern it.
11715 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
11716 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
11717 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
11718 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
11719 (Funify_charset): Adjust for the change of Funify_charset.
11720
11721 * charset.c (charset_ordered_list_tick): New variable.
11722 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
11723 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
11724 deunify intead of unify a charset.
11725 (string_xstring_p): Add `const' to local variables.
11726 (find_charsets_in_text): Add `const' to arguments and local variables.
11727 (encode_char): Adjust for the change of Funify_charset. Fix
11728 detecting of invalid code.
11729 (Fset_charset_priority): Increment charset_ordered_list_tick.
11730 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
11731 and TO_CODE.
11732
11733 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
11734 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
11735 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
11736 (decode_coding_ccl, consume_chars)
11737 (Ffind_coding_systems_region_internal)
11738 (Fcheck_coding_systems_region): Add `const' to local variables.
11739
11740 * print.c (print_object): Use octal form for printing the
11741 contents of a bool vector.
11742
11743 2008-02-01 Dave Love <fx@gnu.org>
11744
11745 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
11746 <version == 20>: Refuse to load.
11747
11748 2008-02-01 Dave Love <fx@gnu.org>
11749
11750 * fns.c: Move coding.h.
11751 (Qcodeset, Qdays, Qmonths): New.
11752 (concat): Use CHARACTERP instead of INTEGERP.
11753 (Flocale_codeset): Delete.
11754 (Flanginfo): New function.
11755 (syms_of_fns): Change accordingly.
11756
11757 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
11758
11759 2008-02-01 Dave Love <fx@gnu.org>
11760
11761 * casetab.c (init_casetab_once, init_casetab_once): Fix
11762 CHAR_TABLE_SET call.
11763
11764 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
11765
11766 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
11767
11768 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
11769 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
11770 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
11771
11772 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
11773
11774 * coding.c (ENCODE_DESIGNATION, decode_eol)
11775 (make_conversion_work_buffer, code_conversion_restore)
11776 (Fdefine_coding_system_internal): Convert Lisp types.
11777 (code_conversion_restore): Use EQ, not ==.
11778 (Fencode_coding_string): Fix code_convert_string call.
11779
11780 * coding.h (code_convert_region): Fix prototype.
11781
11782 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
11783
11784 * fontset.c (fontset_ref, fontset_set, fs_load_font)
11785 (Ffontset_info): Convert Lisp types.
11786
11787 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
11788
11789 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
11790
11791 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
11792
11793 * chartab.c: Include "...h", not <...h> in some cases.
11794
11795 * callproc.c (Fcall_process): Remove unused variables.
11796
11797 2008-02-01 Dave Love <fx@gnu.org>
11798
11799 * coding.c (Fset_coding_system_priority): Allow null arg list.
11800
11801 2008-02-01 Dave Love <fx@gnu.org>
11802
11803 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
11804 (Fself_insert_and_exit): Use CHARACTERP.
11805
11806 * callproc.c (Fcall_process): Remove unused vars.
11807
11808 * xterm.c (XTread_socket): Add extra dead keysyms.
11809
11810 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
11811
11812 * dispextern.h: Remove prototypes for redraw_frame,
11813 redraw_garbaged_frames.
11814
11815 * cmds.c (Fself_insert_command): Use CHARACTERP.
11816
11817 * chartab.c (make_sub_char_table): Remove unused var.
11818 (Fset_char_table_default, Fmap_char_table): Doc fix.
11819
11820 * keymap.c (access_keymap): Remove generic char code.
11821 (push_key_description): Use CHARACTERP.
11822
11823 2008-02-01 Dave Love <fx@gnu.org>
11824
11825 * charset.c: Doc fixes.
11826 (Funify_charset): Extra checking.
11827
11828 2008-02-01 Dave Love <fx@gnu.org>
11829
11830 * lread.c: Remove some unused variables.
11831 (safe_to_load_p): If safe, return the magic number version byte.
11832 (Fload): Maybe use load-with-code-conversion.
11833
11834 2008-02-01 Kenichi Handa <handa@m17n.org>
11835
11836 * category.c (Fmodify_category_entry): Don't modify the contents
11837 of category_set for characters out of the range. Avoid
11838 unnecessary modification.
11839
11840 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
11841 Vchar_unify_table. The default value of the table is now nil.
11842
11843 * character.c (syms_of_character): Setup Vchar_width_table for
11844 eight-bit-control and raw-byte chars.
11845
11846 * charset.h (enum define_charset_arg_index): Delete
11847 charset_arg_parents and add charset_arg_subset and
11848 charset_arg_superset.
11849 (enum charset_attr_index): Delete charset_parents and add
11850 charset_subset and charset_superset.
11851 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
11852 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
11853 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
11854 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
11855 (CHARSET_SUPERSET): New macros.
11856 (charset_work): Extern it.
11857 (ENCODE_CHAR): Use charset_work.
11858 (CHAR_CHARSET_P): Adjust for the change of encoder format.
11859 (map_charset_chars): Extern it.
11860
11861 * charset.c (load_charset_map): Set the default value of encoder
11862 and deunifier char-tables to nil.
11863 (map_charset_chars): Change argument. Change callers. Use
11864 map_char_table_for_charset instead of map_char_table.
11865 (Fmap_charset_chars): New optional args from_code and to_code.
11866 (Fdefine_charset_internal): Adjust for the change of
11867 `define-charset' (:parents -> :subset or :superset).
11868 (charset_work): New variable.
11869 (encode_char, syms_of_charset): Adjust for the change of
11870 Fdefine_charset_internal.
11871 (Ffind_charset_string): Setup the vector `charsets' correctly.
11872
11873 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
11874 the previous change.
11875 (char_table_ref_and_range): Adjust for the above change.
11876 (map_sub_char_table_for_charset): New function.
11877 (map_char_table_for_charset): New function.
11878
11879 * keymap.c (describe_vector): Handle a char-table directly here.
11880 (describe_char_table): Delete.
11881
11882 * lisp.h (map_charset_chars): Delete.
11883
11884 2008-02-01 Dave Love <fx@gnu.org>
11885
11886 * fns.c (count_combining): Comment out (unused).
11887 (Flocale_codeset): New.
11888 (syms_of_fns): Defsubr it.
11889
11890 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
11891 (size_t): Remove.
11892
11893 2008-02-01 Dave Love <fx@gnu.org>
11894
11895 * Makefile.in (chartab.o): Depend on charset.h.
11896
11897 2008-02-01 Kenichi Handa <handa@m17n.org>
11898
11899 * character.c (syms_of_character): Set the default value of
11900 Vprintable_chars to Qnil.
11901
11902 2008-02-01 Dave Love <fx@gnu.org>
11903
11904 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
11905
11906 2008-02-01 Kenichi Handa <handa@m17n.org>
11907
11908 * charset.c (load_charset_map): Handle the case that from < to
11909 correctly.
11910
11911 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
11912 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
11913 Pay attention to raw-8-bit chars.
11914
11915 2008-02-01 Kenichi Handa <handa@m17n.org>
11916
11917 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
11918 It is not bytecompiled now.
11919
11920 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
11921 (charset_jisx0208): New variables.
11922 (Fdefine_charset_internal): Setup them if appropriate.
11923 (init_charset_once): Initialize them to -1.
11924
11925 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
11926 (charset_jisx0208): Extern them.
11927
11928 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
11929 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
11930 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
11931 (setup_iso_safe_charsets): Fix arguments to Fassq.
11932 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
11933 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
11934 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
11935 (encode_coding_iso_2022): Change the 1st arg to
11936 ENCODE_ISO_CHARACTER to a variable.
11937
11938 2008-02-01 Kenichi Handa <handa@m17n.org>
11939
11940 * charset.h (enum define_charset_arg_index): New enums
11941 charset_arg_min_code and charset_arg_max_code.
11942 (struct charset): New member char_index_offset.
11943
11944 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
11945 Take charset->char_index_offset into account.
11946 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
11947 args[charset_arg_max_code]. Setup charset.char_index_offset.
11948 (syms_of_charset): Fix args to Fdefine_charset_internal.
11949
11950 2008-02-01 Dave Love <fx@gnu.org>
11951
11952 * coding.c (decode_coding_utf_8): Reject overlong sequences.
11953
11954 2008-02-01 Dave Love <fx@gnu.org>
11955
11956 * coding.c: Doc fixes.
11957 (Fcoding_system_aliases): Fix return value.
11958 (Qmac): Remove (duplicated) definition.
11959
11960 2008-02-01 Dave Love <fx@gnu.org>
11961
11962 * charset.c (Fcharset_priority_list, Fset_charset_priority): New
11963 functions.
11964
11965 * character.c (Fstring): Doc fix.
11966
11967 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
11968
11969 * fontset.c (Ffontset_info): Doc fix. Return charset names, not
11970 ids.
11971 (font-encoding-alist): Doc fix.
11972
11973 2008-02-01 Dave Love <fx@gnu.org>
11974
11975 * term.c (costs_set): Declare static, non-initialized for pcc.
11976 (encode_terminal_code): Remove unused var.
11977
11978 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
11979 for K&R.
11980
11981 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
11982
11983 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
11984 (suffixes): Move out of make_subsidiaries for K&R.
11985
11986 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
11987
11988 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
11989
11990 2008-02-01 Dave Love <fx@gnu.org>
11991
11992 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
11993
11994 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
11995
11996 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
11997
11998 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
11999
12000 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
12001
12002 2008-02-01 Kenichi Handa <handa@m17n.org>
12003
12004 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
12005 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
12006
12007 2008-02-01 Kenichi Handa <handa@m17n.org>
12008
12009 * coding.c (decode_coding_charset): Adjust for the change of
12010 Fdefine_coding_system_internal.
12011 (Fdefine_coding_system_internal): For a coding system of
12012 `charset' type, store a list of charset IDs in
12013 `charset_attr_charset_valids' element of coding attributes.
12014
12015 2008-02-01 Kenichi Handa <handa@m17n.org>
12016
12017 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
12018 (emacs_mule_char): New arg src. Delete arg `composition'. Change
12019 caller. Handle 2-byte and 3-byte charsets correctly.
12020 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
12021 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
12022 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
12023 (DECODE_EMACS_MULE_21_COMPOSITION): Call
12024 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
12025 sequence.
12026 (decode_coding_emacs_mule): Handle composition correctly. Rewind
12027 `src' and `consumed_chars' correctly before calling emacs_mule_char.
12028 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
12029 and alt&rule composition.
12030 (decode_coding_iso_2022): Handle composition correctly.
12031 (init_coding_once): Setup emacs_mule_bytes for private charsets.
12032
12033 * charset.c (Fdefine_charset_internal): Fix bug for the case of
12034 re-defining a charset. If the charset has :emacs-mule-id, setup
12035 emacs_mule_bytes.
12036 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
12037
12038 2008-02-01 Kenichi Handa <handa@m17n.org>
12039
12040 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
12041 (encode_coding_big5, encode_coding_charset): If coding requires safe
12042 encoding, produce a character specified by
12043 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
12044
12045 2008-02-01 Dave Love <fx@gnu.org>
12046
12047 * xterm.c (XSetIMValues): Declare.
12048
12049 * process.c: Conditionally include sys/wait.h, pty.h.
12050
12051 * print.c (print_object): Fix print format for 64-bit systems.
12052
12053 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
12054
12055 * buffer.c (emacs_strerror): Declare.
12056
12057 * fontset.c (Fclear_face_cache): Declare.
12058 (accumulate_font_info): Comment-out (unused).
12059 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
12060 variables.
12061
12062 * character.h (string_escape_byte8): Declare.
12063
12064 * charset.c (load_charset_map, load_charset_map_from_file): Remove
12065 unused vars.
12066 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
12067 (Fmap_charset_chars): Doc fix.
12068
12069 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
12070 (Fset_coding_system_priority, Fset_coding_system_priority)
12071 (Fdefine_coding_system_internal): Doc fix.
12072
12073 2008-02-01 Dave Love <fx@gnu.org>
12074
12075 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
12076
12077 2008-02-01 Kenichi Handa <handa@m17n.org>
12078
12079 * character.c (string_escape_byte8): Make multibyte string with
12080 correct size.
12081
12082 * charset.c (Fmake_char): Delete unnecessary code.
12083
12084 2008-02-01 Kenichi Handa <handa@m17n.org>
12085
12086 * xfns.c (x_encode_text): Allocate coding.destination here, and
12087 call encode_coding_object with dst_object Qnil.
12088
12089 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
12090 multibyte form correctly.
12091
12092 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
12093 against Vfont_encoding_alist.
12094
12095 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
12096 handling of charset list.
12097 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
12098 (decode_coding_object): Move point to coding->dst_pos before
12099 calling post-read-conversion function.
12100 (encode_coding_object): Give correct arguments to
12101 pre-write-conversion. Ignore the return value of
12102 pre-write-conversion function. Pay attention to the case that
12103 pre-write-conversion changes the current buffer. If dst_object is
12104 Qt, even if coding->src_bytes is zero, allocate at least one byte
12105 to coding->destination.
12106
12107 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
12108
12109 * charset.c (Fmake_char): Make it more backward compatible.
12110 (Fmap_charset_chars): Fix docstring.
12111
12112 2008-02-01 Dave Love <fx@gnu.org>
12113
12114 * coding.c: Doc fixes.
12115 (Fdefine_coding_system_alias): Use names, not symbols, in
12116 coding-system-alist.
12117
12118 2008-02-01 Kenichi Handa <handa@m17n.org>
12119
12120 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
12121 of calling free_realized_face.
12122
12123 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
12124
12125 * charset.c (read_hex): Don't treat SPC as a comment starter.
12126 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
12127 (Fdecode_char): Fix typo.
12128
12129 2008-02-01 Kenichi Handa <handa@m17n.org>
12130
12131 * charset.h (struct charset): New member `code_space_mask'.
12132
12133 * coding.c (coding_set_source): Delete the local variable beg_byte.
12134 (encode_coding_charset, Fdefine_coding_system_internal):
12135 Delete the local variable charset.
12136 (Fdefine_coding_system_internal): Setup
12137 attrs[coding_attr_charset_valids] correctly.
12138
12139 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
12140 member to check if CODE is valid or not.
12141 (Fdefine_charset_internal): Initialize `code_space_mask' member.
12142 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
12143 is within the range of charset->min_code and carset->max_code.
12144
12145 2008-02-01 Dave Love <fx@gnu.org>
12146
12147 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
12148
12149 * dispextern.h (generate_ascii_font): Fix return type.
12150
12151 * xfaces.c (generate_ascii_font): Fix arg declaration.
12152
12153 * coding.c (coding_inherit_eol_type)
12154 (Fset_terminal_coding_system_internal)
12155 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
12156
12157 2008-02-01 Kenichi Handa <handa@m17n.org>
12158
12159 * coding.c (decode_coding_charset, encode_coding_charset): Handle
12160 multiple charsets correctly.
12161
12162 2008-02-01 Kenichi Handa <handa@m17n.org>
12163
12164 * search.c (boyer_moore): Fix handling of multibyte character
12165 translation.
12166
12167 * xdisp.c (display_mode_element): When the variable `elt' is
12168 changed, update `this' and `lisp_string'.
12169
12170 2008-02-01 Kenichi Handa <handa@m17n.org>
12171
12172 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
12173
12174 * callproc.c (Fcall_process): Be sure to give the current buffer
12175 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
12176
12177 * charset.c (struct charset_map_entries): New struct.
12178 (load_charset_map): Rename from parse_charset_map. New args
12179 entries and n_entries. Change caller.
12180 (load_charset_map_from_file): Rename from load_charset_map.
12181 Change caller. New arg control_flag. Call load_charset_map at
12182 the tail.
12183 (load_charset_map_from_vector): New function.
12184 (Fdefine_charset_internal): Setup charset.compact_codes_p.
12185 (encode_char): If the charset is compact, change a character index
12186 to a code point.
12187
12188 * coding.c (coding_alloc_by_making_gap): Check the case that the
12189 source and destination are the same correctly.
12190 (decode_coding_raw_text): Set coding->consumed_char and
12191 coding->consumed to 0.
12192 (produce_chars): If coding->chars_at_source is nonzero, update
12193 coding->consumed_char and coding->consumed before calling
12194 alloc_destination.
12195 (Fdefine_coding_system_alias): Register ALIAS in
12196 Vcoding_system_alist.
12197 (syms_of_coding): Define `no-conversion' coding system at the tail.
12198
12199 * fileio.c (Finsert_file_contents): Set coding_system instead of
12200 val. If the current buffer is multibyte, always call
12201 decode_coding_gap.
12202
12203 * xfaces.c (try_font_list): Give higher priority to fontset's
12204 family than face's family.
12205
12206 2008-02-01 Kenichi Handa <handa@m17n.org>
12207
12208 * callproc.c (Fcall_process): Be sure to give the current buffer
12209 to decode_coding_c_string.
12210
12211 * xfaces.c (try_font_list): Give a family specified in a fontset
12212 higher priority than a family specified in a face.
12213
12214 2008-02-01 Kenichi Handa <handa@m17n.org>
12215
12216 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
12217 Fix arguments to insert_from_buffer.
12218
12219 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
12220
12221 2008-02-01 Kenichi Handa <handa@m17n.org>
12222
12223 * coding.c (produce_chars): Set the variable `multibytep' correctly.
12224 (decode_coding_gap): Set coding->dst_multibyte correctly.
12225
12226 2008-02-01 Kenichi Handa <handa@m17n.org>
12227
12228 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
12229 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
12230 (encode_coding_utf_16): Substitute coding->default_char for
12231 non-Unicode characters.
12232 (decode_coding): Don't call record_insert here.
12233 (setup_coding_system): Initialize `surrogate' of
12234 coding->spec.utf_16 to 0.
12235 (EMIT_ONE_BYTE): Fix for multibyte case.
12236
12237 * insdel.c (insert_from_gap): Call record_insert.
12238
12239 2008-02-01 Kenichi Handa <handa@m17n.org>
12240
12241 * casefiddle.c (casify_region): Fix multibyte case.
12242
12243 * character.c (c_string_width): Add return type `int'.
12244 (char_string_with_unification): Delete arg ADVANCED.
12245
12246 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
12247 (CHAR_STRING): Adjust for the change of char_string_with_unification.
12248 (CHAR_STRING_ADVANCE): Make it do-while statement.
12249
12250 * chartab.c (sub_char_table_set_range): Optimize for the case
12251 DEPTH == 3. Add workaround code for a GCC optimization bug.
12252
12253 * charset.c (parse_charset_map): Remove an unused variable.
12254
12255 * coding.c: Delete unused variables.
12256
12257 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
12258 earlier. If inserted is zero and the coding system doesn't
12259 require flushing, don't call decode_coding_gap.
12260
12261 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
12262
12263 2008-02-01 Kenichi Handa <handa@m17n.org>
12264
12265 The following changes are for using Unicode as an internal
12266 character model, and use UTF-8 format for buffer/string
12267 representation.
12268
12269 * .gdbinit (xchartable): Adjust for the change of char table structure.
12270 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
12271
12272 * Makefile.in (obj): Add character.o and chartab.o.
12273 (lisp, shortlisp): Remove utf-8.elc.
12274 (*.o): For many files, change dependency on charset.h to
12275 character.h, and add dependency on character.h.
12276 (character.o, chartab.o): New targets.
12277
12278 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
12279 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
12280 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
12281 of "charset.h".
12282
12283 * dired.c, filelock.c: Include "character.h".
12284
12285 * alloc.c: Include "character.h" instead of "charset.h".
12286 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
12287 (syms_of_alloc): Remove defsubr for Smake_char_table.
12288
12289 * buffer.c: Include "character.h" instead of "charset.h", don't
12290 include "coding.h".
12291 (Fset_buffer_multibyte): Adjust for UTF-8.
12292
12293 * buffer.h: EXFUN Fbuffer_live_p.
12294
12295 * callproc.c: Include "character.h" instead of "charset.h".
12296 (Fcall_process): Big change for the new code-conversion APIs.
12297
12298 * casetab.c: Include "character.h" instead of "charset.h".
12299 (set_canon, set_identity, shuffle): Adjust for the new
12300 map_char_table spec.
12301 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
12302 accessing the char table structure.
12303
12304 * chartab.c: New file that implements char table.
12305
12306 * category.c: Include "character.h".
12307 (copy_category_entry): New function.
12308 (copy_category_table): Call map_char_table and copy_category_entry.
12309 (Fmake_category_table): Initialize all top-level slots.
12310 (char_category_set): New function.
12311 (modify_lower_category_set): Delete.
12312 (Fmodify_category_entry): Call char_table_ref_and_range.
12313
12314 * category.h (CATEGORY_SET): Just call char_category_set.
12315
12316 * ccl.c: Include "character.h".
12317 (Qccl, Qcclp): New variables.
12318 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
12319 it's less than 256.
12320 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
12321 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
12322 and DST type.
12323 (ccl_driver): Change types of argument, adjust code accordingly.
12324 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
12325 ccl_driver.
12326 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
12327
12328 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
12329 New members src_multibyte, dst_multibyte, consumed, and produced.
12330 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
12331 (CODING_SPEC_CCL_PROGRAM): New macro.
12332 (ccl_driver): Update prototype.
12333 (Qccl, Qcclp, Fccl_program_p): Extern them.
12334 (CHECK_CCL_PROGRAM): New macro.
12335
12336 * character.c, character.h, chartab.c: New files.
12337
12338 * charset.c: Mostly re-written. Move character and multibyte sequence
12339 handling codes to character.c.
12340
12341 * charset.h: Mostly re-written. Move character and multibyte sequence
12342 handling codes to character.h.
12343
12344 * coding.c, coding.h: Mostly re-written.
12345
12346 * composite.c: Include "character.h" instead of "charset.h".
12347 (CHAR_WIDTH): Move to character.h.
12348 (HASH_KEY, HASH_VALUE): Delete.
12349
12350 * composite.h (enum composition_method): Change order of enumeration
12351 symbols.
12352
12353 * data.c: Include "character.h" instead of "charset.h".
12354 (Faref): Call CHAR_TABLE_REF for a char table.
12355 (Faset): Call CHAR_TABLE_SET for a char table.
12356
12357 * dispextern.h (free_realized_face, check_face_attribytes)
12358 (generate_ascii_font): Extern them.
12359 (free_realized_multibyte_face): Delete extern.
12360
12361 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
12362 table structure.
12363
12364 * editfns.c: Include "character.h" instead of "charset.h".
12365 (Fchar_to_string): Always call CHAR_STRING.
12366
12367 * emacs.c (main): Call init_charset_once, init_charset,
12368 syms_of_chartab, and syms_of_character.
12369
12370 * fileio.c: Include "character.h" instead of "charset.h".
12371 (Finsert_file_contents): Big change for the new code-conversion API.
12372 (choose_write_coding_system, Fwrite_region): Likewise.
12373 (build_annotations_2): Delete.
12374 (e_write): Big change for the new code-conversion API.
12375
12376 * fns.c: Include "character.h" instead of "charset.h".
12377 (copy_sub_char_table): Move to chartab.c.
12378 (Fcopy_sequence): Call copy_char_table for a char table.
12379 (concat): Delete codes calling count_multibyte.
12380 (string_char_to_byte, string_byte_to_char): Adjust for the new
12381 multibyte form.
12382 (internal_equal): Adjust for the change of char table structure.
12383 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
12384 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
12385 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
12386 (char_table_translate, optimize_sub_char_table)
12387 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
12388 chartab.c.
12389 (char_table_ref_and_index): Delete.
12390 (HASH_KEY, HASH_VALUE): Move to lisp.h.
12391 (Fmd5): Call preferred_coding_system instead of accessing
12392 Vcoding_category_list. Adjust for the new code-conversion API.
12393 (syms_of_fns): Move defsubr for char table related functions to
12394 chartab.c.
12395
12396 * fontset.c: Mostly re-written.
12397
12398 * fontset.h (struct font_info): Change type of the member encoding_type.
12399 (enum FONT_SPEC_INDEX): New enum.
12400 (fontset_font_pattern, fs_load_font): Update prototype.
12401 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
12402
12403 * indent.c: Include "character.h" instead of "charset.h".
12404 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
12405
12406 * insdel.c: Include "character.h" instead of "charset.h".
12407 (copy_text): Don't refer to Vnonascii_translation_table.
12408 (insert_from_gap): New function.
12409
12410 * keyboard.c: Include "character.h" instead of "charset.h".
12411 (command_loop_1): Never call direct_output_forward_char before
12412 a non-ASCII character.
12413 (read_char): If Vkeyboard_translate_table is a char table, always
12414 translate a character.
12415
12416 * keymap.c: Include "character.h".
12417 (store_in_keymap): Handle the case that IDX is a cons.
12418 (Fdefine_key): Handle the case that KEY is a cons and the car part
12419 is also a cons (range).
12420 (push_key_description): Adjust for the new character code.
12421 (describe_vector): Call describe_char_table for a char table.
12422 (describe_char_table): New function.
12423
12424 * keymap.h (describe_char_table): Extern it.
12425
12426 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
12427 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
12428 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
12429 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
12430 Delete.
12431 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
12432 structure.
12433 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
12434 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
12435 (CHARTAB_SIZE_BITS_3): New macros.
12436 (chartab_size): Extern it.
12437 (struct Lisp_Char_Table): Re-design.
12438 (struct Lisp_Sub_Char_Table): New structure.
12439 (HASH_KEY, HASH_VALUE): Move from fns.c.
12440 (CHARACTERBITS): Define as 22.
12441 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
12442 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
12443 (GC_SUB_CHAR_TABLE_P): New macro.
12444 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
12445 (code_convert_string_norecord): Deleted extern.
12446 (init_character_once, syms_of_character, init_charset)
12447 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
12448
12449 * lread.c: Include "character.h".
12450 (read_multibyte): New arg NBYTES.
12451 (read_escape): Change the meaning of returned *BYTEREP.
12452 (to_multibyte): Delete.
12453 (read1): Adjust the handling of char table and string.
12454
12455 * print.c: Include "character.h" instead of "charset.h".
12456 (print_string): Convert 8-bit raw bytes to octal form by
12457 string_escape_byte8.
12458 (print_object): Adjust for the new multibyte form. Print 8-bit
12459 raw bytes always in octal form. Handle sub char table correctly.
12460
12461 * process.c: Include "character.h" instead of "charset.h".
12462 (read_process_output, send_process): Adjust for the new
12463 code-conversion API.
12464
12465 * puresize.h (BASE_PURESIZE): Increase.
12466
12467 * regex.c: Include "character.h" instead of "charset.h".
12468 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
12469 (regex_compile): Accept a range whose starting and ending
12470 character have different leading bytes.
12471 (analyse_first): Adjust for the above change.
12472
12473 * search.c: Include "character.h" instead of "charset.h".
12474 (search_buffer, boyer_moore): Adjust for the new multibyte form.
12475 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
12476
12477 * syntax.c: Include "character.h" instead of "charset.h".
12478 (syntax_parent_lookup): Delete.
12479 (Fmodify_syntax_entry): Accept a cons as CHAR.
12480 (skip_chars): Adjust for the new multibyte form.
12481 (init_syntax_once): Call char_table_set_range instead of directly
12482 accessing the structure of a char table.
12483
12484 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
12485 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
12486 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
12487 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
12488
12489 * term.c: Include "buffer.h" and "character.h".
12490 (encode_terminal_code, write_glyphs): Adjust for the new
12491 code-conversion API.
12492 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
12493
12494 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
12495
12496 * xdisp.c: Include "character.h".
12497 (get_next_display_element): Adjust for the new multibyte form.
12498 (disp_char_vector): Adjust for the new char table structure.
12499 (decode_mode_spec_coding): Adjust for the new structure of
12500 coding system.
12501 (decode_mode_spec): Adjust for the new code-conversion API.
12502
12503 * xfaces.c: Include "character.h" instead of "charset.h".
12504 (load_face_font): Adjust for the change of choose_face_font and
12505 FS_LOAD_FONT.
12506 (generate_ascii_font): New function.
12507 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
12508 (set_font_frame_param): Adjust for the change of choose_face_font.
12509 (free_realized_face): Make it public.
12510 (free_realized_faces_for_fontset): Rename from
12511 free_realized_multibyte_face. Free also faces realized for ASCII.
12512 (choose_face_font): Change arguments. Adjust for the change of
12513 fontset_font_pattern and FS_LOAD_FONT.
12514
12515 * xfns.c: Include "character.h".
12516 (x_encode_text): Adjust for the new code-conversion API.
12517
12518 * xselect.c: Don't include "charset.h".
12519 (selection_data_to_lisp_data): Adjust for the new code conversion API.
12520
12521 * xterm.c: Include "character.h".
12522 (x_encode_char): New argument CHARSET. Change caller.
12523 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
12524 Call ENCODE_CHAR instead of SPLIT_CHAR.
12525 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
12526 CHAR_WIDTH instead of CHARSET_WIDTH.
12527 (XTread_socket): Adjust for the new code-conversion API.
12528 (x_new_font): Adjust for the change of FS_LOAD_FONT.
12529 (x_load_font): Adjust for the change of struct font.
12530
12531 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
12532
12533 * xfaces.c (face_at_buffer_position): Remove unused vars.
12534
12535 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
12536
12537 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
12538 Fix overflow checking.
12539
12540 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
12541
12542 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
12543 Cancel previous change.
12544
12545 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
12546
12547 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
12548 ccl->eight_bit_control. Fix check for buffer overflow.
12549 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
12550 (ccl_driver): Initialize extra_bytes to 0.
12551
12552 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
12553
12554 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
12555 return it ORed with ctrl_modifier.
12556
12557 2008-01-29 Miles Bader <miles@gnu.org>
12558
12559 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
12560
12561 2008-01-28 Jason Rumney <jasonr@gnu.org>
12562
12563 * w32.c (stat): Don't double check for networked drive.
12564
12565 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
12566
12567 * window.c (run_window_configuration_change_hook): New function.
12568 Code extracted from set_window_buffer. Set the selected frame.
12569 (set_window_buffer): Use it.
12570 * window.h (run_window_configuration_change_hook): Declare.
12571 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
12572
12573 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
12574
12575 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
12576
12577 * Makefile.in: Remove references to unused macros.
12578
12579 2008-01-26 Eli Zaretskii <eliz@gnu.org>
12580
12581 * w32.c (g_b_init_get_sid_sub_authority)
12582 (g_b_init_get_sid_sub_authority_count): New static variables.
12583 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
12584 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
12585 (init_user_info): Use them to retrieve uid and gid.
12586 Use 500/513, the Windows defaults, as Administrator's uid/gid.
12587 (fstat): Use pw_uid and pw_gid from the_passwd structure for
12588 st_uid and st_gid of the file.
12589
12590 2008-01-26 Jason Rumney <jasonr@gnu.org>
12591
12592 * w32.c (logon_network_drive): New function.
12593 (stat): Use it.
12594
12595 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
12596
12597 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
12598 invisible text covered with an ellipsis.
12599
12600 2008-01-25 Richard Stallman <rms@gnu.org>
12601
12602 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
12603 jump back to beginning. Move some other initializations after that.
12604 (Qwindow_text_change_functions, Vwindow_text_change_functions):
12605 New variables.
12606 (syms_of_xdisp): Init them.
12607
12608 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
12609
12610 * buffer.c (reset_buffer_local_variables):
12611 Implement `permanent-local-hook'.
12612 (Qpermanent_local_hook): New variable.
12613 (syms_of_buffer): Init and staticpro it.
12614
12615 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
12616
12617 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
12618
12619 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
12620
12621 * fns.c (Fclrhash): Return TABLE.
12622
12623 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12624
12625 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
12626 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
12627 is set even without positional changes.
12628 (x_scroll_bar_clear): Set bar->redraw_needed_p.
12629
12630 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
12631
12632 2008-01-23 Jason Rumney <jasonr@gnu.org>
12633
12634 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
12635
12636 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
12637 the unicode range available in MULE by locale-coding-system.
12638 Improve dbcs lead byte detection. Set event timestamp and modifiers
12639 earlier.
12640
12641 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12642
12643 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
12644 [MAC_OSX] (init_mac_osx_environment): Initialize it.
12645 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
12646 when used on child processes.
12647
12648 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
12649
12650 * dbusbind.c (Fdbus_method_return_internal): Rename from
12651 Fdbus_method_return.
12652 (Fdbus_unregister_object): Move to dbus.el.
12653 (Fdbus_call_method, Fdbus_method_return_internal)
12654 (Fdbus_send_signal): Improve debug messages.
12655
12656 2008-01-20 Martin Rudalics <rudalics@gmx.at>
12657
12658 * undo.c (undo_inhibit_record_point): New variable.
12659 (syms_of_undo): Initialize it.
12660 (record_point): Don't record point when undo_inhibit_record_point
12661 is set.
12662
12663 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
12664
12665 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
12666
12667 * xdisp.c (Qauto_hscroll_mode): New var.
12668 (syms_of_xdisp): Initialize it.
12669 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
12670 window's buffer.
12671 (hscroll_windows): Don't check automatic_hscrolling_p here.
12672
12673 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
12674 vscroll if we're setting window-buffer to the value it already has.
12675
12676 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
12677
12678 * m/intel386.h: Remove references to XENIX.
12679
12680 2008-01-17 Andreas Schwab <schwab@suse.de>
12681
12682 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
12683 instead of HAVE_X86_64_LIB64_DIR.
12684 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
12685
12686 2008-01-17 Glenn Morris <rgm@gnu.org>
12687
12688 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
12689 to HAVE_X86_64_LIB64_DIR.
12690
12691 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
12692
12693 * s/irix3-3.h:
12694 * s/irix4-0.h:
12695 * s/386-ix.h:
12696 * s/domain.h:
12697 * s/hpux9-x11r4.h:
12698 * s/hpux9shxr4.h: Remove files for systems no longer supported.
12699
12700 * sysdep.c: Remove code containing references to symbols defined
12701 by unsupported systems.
12702
12703 2008-01-16 Glenn Morris <rgm@gnu.org>
12704
12705 * coding.c (select-safe-coding-system-function): Doc fix.
12706
12707 2008-01-15 Glenn Morris <rgm@gnu.org>
12708
12709 * config.in: Revert 2008-01-13 change: this is a generated file.
12710
12711 2008-01-13 Tom Tromey <tromey@redhat.com>
12712
12713 * lisp.h: Fix typo.
12714
12715 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
12716
12717 * m/sequent-ptx.h:
12718 * m/sequent.h:
12719 * s/ptx.h:
12720 * s/ptx4-2.h:
12721 * s/ptx4.h: Remove files for systems no longer supported.
12722
12723 * callproc.c (Fcall_process): Fix previous change.
12724
12725 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
12726
12727 * unexsunos4.c: Remove file, system not supported anymore.
12728
12729 * m/mips.h:
12730 * m/intel386.h:
12731 * callproc.c:
12732 * config.in:
12733 * ecrt0.c:
12734 * emacs.c:
12735 * fileio.c:
12736 * frame.c:
12737 * getpagesize.h:
12738 * keyboard.c:
12739 * lread.c:
12740 * process.c:
12741 * puresize.h:
12742 * sysdep.c:
12743 * systty.h:
12744 * syswait.h:
12745 * unexec.c:
12746 * xdisp.c:
12747 * alloc.c: Remove code containing references to symbols defined by
12748 unsupported systems.
12749
12750 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
12751
12752 * coding.c (detect_coding_mask): Fix previous change.
12753
12754 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
12755
12756 * coding.c (detect_coding_iso2022): New arg
12757 latin_extra_code_state. Allow Latin extra codes only
12758 when *latin_extra_code_state is nonzero.
12759 (detect_coding_mask): If there is a NULL byte, detect the encoding
12760 as UTF-16 or binary. If Latin extra codes exist, detect the
12761 encoding as ISO-2022 only when there's no other proper encoding is
12762 found.
12763
12764 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12765
12766 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
12767 #ifdef MAC_OS.
12768
12769 2008-01-08 Richard Stallman <rms@gnu.org>
12770
12771 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
12772
12773 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
12774
12775 * keyboard.c (parse_menu_item): Don't enclose key bindings on
12776 menu bar in parentheses.
12777
12778 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
12779
12780 * m/7300.h:
12781 * m/acorn.h:
12782 * m/alliant-2800.h:
12783 * m/alliant.h:
12784 * m/alliant1.h:
12785 * m/alliant4.h:
12786 * m/altos.h:
12787 * m/amdahl.h:
12788 * m/apollo.h:
12789 * m/att3b.h:
12790 * m/aviion-intel.h:
12791 * m/aviion.h:
12792 * m/celerity.h:
12793 * m/clipper.h:
12794 * m/cnvrgnt.h:
12795 * m/convex.h:
12796 * m/cydra5.h:
12797 * m/delta88k.h:
12798 * m/dpx2.h:
12799 * m/dual.h:
12800 * m/elxsi.h:
12801 * m/f301.h:
12802 * m/gould-np1.h:
12803 * m/gould.h:
12804 * m/i860.h:
12805 * m/ibmps2-aix.h:
12806 * m/ibmrt-aix.h:
12807 * m/ibmrt.h:
12808 * m/irist.h:
12809 * m/is386.h:
12810 * m/isi-ov.h:
12811 * m/mega68.h:
12812 * m/mg1.h:
12813 * m/news-r6.h:
12814 * m/news-risc.h:
12815 * m/news.h:
12816 * m/nh3000.h:
12817 * m/nh4000.h:
12818 * m/ns16000.h:
12819 * m/ns32000.h:
12820 * m/nu.h:
12821 * m/orion.h:
12822 * m/orion105.h:
12823 * m/paragon.h:
12824 * m/pfa50.h:
12825 * m/plexus.h:
12826 * m/pyramid.h:
12827 * m/pyrmips.h:
12828 * m/sh3el.h:
12829 * m/sps7.h:
12830 * m/sr2k.h:
12831 * m/stride.h:
12832 * m/sun1.h:
12833 * m/sun2.h:
12834 * m/sun3-68881.h:
12835 * m/sun3-fpa.h:
12836 * m/sun3-soft.h:
12837 * m/sun3.h:
12838 * m/sun386.h:
12839 * m/symmetry.h:
12840 * m/tad68k.h:
12841 * m/tahoe.h:
12842 * m/targon31.h:
12843 * m/tek4300.h:
12844 * m/tekxd88.h:
12845 * m/tower32.h:
12846 * m/tower32v3.h:
12847 * m/ustation.h:
12848 * m/wicat.h:
12849 * m/xps100.h:
12850 * s/cxux.h:
12851 * s/cxux7.h:
12852 * s/dgux.h:
12853 * s/dgux4.h:
12854 * s/dgux5-4-3.h:
12855 * s/dgux5-4r2.h:
12856 * s/esix.h:
12857 * s/esix5r4.h:
12858 * s/hiuxmpp.h:
12859 * s/hiuxwe2.h:
12860 * s/iris3-5.h:
12861 * s/iris3-6.h:
12862 * s/isc2-2.h:
12863 * s/isc3-0.h:
12864 * s/isc4-0.h:
12865 * s/isc4-1.h:
12866 * s/newsos5.h:
12867 * s/newsos6.h:
12868 * s/osf1.h:
12869 * s/osf5-0.h:
12870 * s/riscix1-1.h:
12871 * s/riscix12.h:
12872 * s/sco4.h:
12873 * s/sco5.h:
12874 * s/sunos4-0.h:
12875 * s/sunos4-1.h:
12876 * s/sunos413.h:
12877 * s/sunos4shr.h:
12878 * s/umax.h:
12879 * s/unipl5-2.h:
12880 * s/xenix.h:
12881 * cxux-crt0.s:
12882 * unexapollo.c:
12883 * unexconvex.c:
12884 * unexenix.c:
12885 * unexsni.c: Remove files for systems no longer supported.
12886
12887 * m/intel386.h: Remove references to unsupported systems.
12888
12889 * w32.c (get_emacs_configuration): Remove reference to i860.
12890
12891 * sysdep.c: Remove dead code.
12892
12893 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
12894
12895 * s/rtu.h:
12896 * m/masscomp.h: Remove files. Platform is obsolete.
12897
12898 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
12899
12900 * dbusbind.c (Fdbus_method_return): New function.
12901 (xd_read_message): Add the serial number to the event.
12902 (Fdbus_register_method): Activate the function.
12903
12904 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
12905
12906 * keyboard.c (read_key_sequence): Fix typo.
12907
12908 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
12909
12910 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
12911 (xd_signature, xd_append_arg): Handle element type detection for
12912 empty arrays.
12913 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
12914 SDATA () calls; this must be solved more general.
12915 (Fdbus_register_signal): Use SBYTES instead of strlen.
12916
12917 2008-01-03 Magnus Henoch <magnus@zemdatav>
12918
12919 * dbusbind.c (xd_append_arg): Use unsigned char instead of
12920 unsigned int for byte values (necessary for big-endian platform).
12921 (Fdbus_call_method): Handle the case of no returned arguments.
12922
12923 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
12924
12925 * dbusbind.c (xd_read_message): Use non-static input_event struct.
12926
12927 2007-12-31 Magnus Henoch <mange@freemail.hu>
12928
12929 * dbusbind.c (xd_signature): Signature of variant is just "v".
12930
12931 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
12932
12933 * dbusbind.c: Fix several errors and compiler warnings.
12934 Reported by Tom Tromey <tromey@redhat.com>.
12935 (XD_ERROR, XD_DEBUG_MESSAGE)
12936 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
12937 (xd_append_arg): Part for basic D-Bus types rewritten.
12938 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
12939 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
12940 appropriate.
12941 (xd_read_message): Return Qnil. Don't signal an error; it is not
12942 useful during event reading.
12943 (Fdbus_register_signal): Signal an error if the check for
12944 FUNCTIONP fails.
12945 (Fdbus_register_method): New function. The implementation is not
12946 complete, the call of the function signals an error therefore.
12947 (Fdbus_unregister_object): New function, renamed from
12948 Fdbus_unregister_signal. The initial check signals an error, if
12949 the object is not well formed.
12950
12951 2007-12-30 Richard Stallman <rms@gnu.org>
12952
12953 * textprop.c (get_char_property_and_overlay):
12954 Signal error if POSITION is out of range in a buffer.
12955
12956 2007-12-29 Martin Rudalics <rudalics@gmx.at>
12957
12958 * w32fns.c (Fx_create_frame): Make copy of frame parameters
12959 because the original parameters are in pure storage now.
12960
12961 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12962
12963 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
12964
12965 2007-12-22 Eli Zaretskii <eliz@gnu.org>
12966
12967 * callint.c (syms_of_callint) <command-history>: Add reference to
12968 history-length in the doc string.
12969
12970 2007-12-17 Jason Rumney <jasonr@gnu.org>
12971
12972 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
12973 before passing as wParam.
12974
12975 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
12976
12977 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
12978 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
12979 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
12980 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
12981 as number.
12982 (Fdbus_call_method): Fix docstring.
12983
12984 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
12985
12986 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
12987 New macros.
12988 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
12989 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
12990 Simplify.
12991 (xd_signature): New function.
12992 (xd_append_arg): Compute also signatures. Major rewrite.
12993 (xd_retrieve_arg): Make debug messages friendly.
12994 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
12995 Check for signatures of arguments.
12996
12997 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
12998
12999 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
13000 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
13001 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
13002 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
13003 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
13004 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
13005 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
13006 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
13007 (xd_retrieve_value): Remove. Functionality included in ...
13008 (xd_append_arg): New function.
13009 (Fdbus_call_method, Fdbus_send_signal): Apply it.
13010
13011 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
13012
13013 * dbusbind.c (top): Include <stdio.h>.
13014 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
13015 dbus_message_new_method_call and dbus_message_new_signal.
13016 (Fdbus_register_signal): Rename unique_name to uname.
13017 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
13018 non-existing unique name. Fix typos in matching rule. Return an
13019 object which is useful in Fdbus_unregister_signal.
13020 (Fdbus_unregister_signal): Reimplementation, in order to remove
13021 only the corresponding entry.
13022 (Vdbus_registered_functions_table): Change the order of entries.
13023 Apply these changes in xd_read_message and Fdbus_register_signal.
13024
13025 2007-12-16 Andreas Schwab <schwab@suse.de>
13026
13027 * fileio.c (Finsert_file_contents): Fix overflow check to not
13028 depend on undefined integer overflow.
13029
13030 2007-12-14 Jason Rumney <jasonr@gnu.org>
13031
13032 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
13033 for characters above 127.
13034
13035 2007-12-13 Jason Rumney <jasonr@gnu.org>
13036
13037 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
13038 before dereferencing array.
13039 (lookup_vk_code): Remove zero comparison.
13040
13041 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
13042
13043 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
13044 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
13045 Use `unsigned int' instead of `uint'.
13046 (xd_read_message, Fdbus_register_signal): Split expressions into
13047 multiple lines before operators "&&" and "||", according to the
13048 GNU Coding Standards.
13049
13050 2007-12-14 Eli Zaretskii <eliz@gnu.org>
13051
13052 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
13053
13054 2007-12-12 Juri Linkov <juri@jurta.org>
13055
13056 * buffer.c (Frename_buffer): In interactive spec replace
13057 `read-buffer' with `read-string' that uses `buffer-name-history'
13058 as history, and the current buffer's name as default.
13059
13060 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
13061
13062 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
13063 manipulating the backtrace manually.
13064 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
13065 (struct backtrace, backtrace_list): Remove.
13066 (command_loop_1): Remove dead var `no_direct'.
13067
13068 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
13069 preserve non-built-in buffer-local variables.
13070 (Fkill_all_local_variables): Don't re-create&re-set permanent
13071 buffer-local variables.
13072
13073 2007-12-09 Juri Linkov <juri@jurta.org>
13074
13075 * buffer.c (Frename_buffer): Change interactive spec from "s" to
13076 Lisp code that uses `read-buffer' with current buffer as default.
13077
13078 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
13079
13080 * dbusbind.c (xd_read_message): Generate an event for every
13081 registered handler. There might be several handlers registered
13082 for the same signal.
13083 (Fdbus_register_signal): Don't overwrite a registration for the
13084 same signal. Add a new registration if handlers are different.
13085 (Vdbus_registered_functions_table): Rework doc string.
13086
13087 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
13088
13089 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
13090 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
13091 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
13092 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
13093 Unify argument lists.
13094 (xd_read_message, Fdbus_register_signal): Reorder and extend event
13095 arguments and hash table keys. Use unique name for service.
13096 (Fdbus_unregister_signal): Remove checks.
13097 (Vdbus_registered_functions_table): Fix doc string.
13098
13099 2007-12-05 Magnus Henoch <mange@freemail.hu>
13100
13101 * process.c (make_process): Initialize pty_flag to 0.
13102
13103 2007-12-05 Jason Rumney <jasonr@gnu.org>
13104
13105 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
13106 specified XBMs.
13107
13108 2007-12-05 Richard Stallman <rms@gnu.org>
13109
13110 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
13111
13112 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13113
13114 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
13115 New variable.
13116 (mac_try_close_socket) [MAC_OSX]: New function.
13117 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
13118 Update cfsockets_for_select. Replace invalid CFRunLoop source.
13119
13120 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
13121 Use mac_try_close_socket.
13122
13123 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13124
13125 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
13126 reloc_base.
13127 (copy_dysymtab): Compute relocation base here.
13128 (rebase_reloc_address) [__ppc64__]: New function.
13129 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
13130 changed.
13131
13132 2007-12-05 Jason Rumney <jasonr@gnu.org>
13133
13134 * w32proc.c (sys_spawnve): Quote args with wildcards.
13135
13136 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13137
13138 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
13139 __objc_* sections.
13140 (unrelocate) [_LP64]: Set relocation base to address of data segment.
13141
13142 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
13143
13144 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
13145 Move check for Vdbus_registered_functions_table to
13146 xd_read_queued_messages.
13147 (xd_read_queued_messages): Protect xd_read_message calls by
13148 internal_condition_case_1.
13149
13150 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
13151
13152 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
13153 Qdbus_system_bus and Qdbus_session_bus, respectively.
13154 (Vdbus_intern_symbols): Remove.
13155 (Vdbus_registered_functions_table): New hash table.
13156 (XD_SYMBOL_INTERN_SYMBOL): Remove.
13157 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
13158 Rewrite in order to manage registered functions by hash table
13159 Vdbus_registered_functions_table.
13160
13161 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
13162
13163 * xterm.c: Update URL to Window Manager Specification in comment.
13164
13165 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
13166
13167 * config.in (HAVE_DBUS): Add.
13168
13169 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
13170 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
13171 (obj): Add $(DBUS_OBJ).
13172 (LIBES): Add $(DBUS_LIBS).
13173 (dbusbind.o): New target.
13174
13175 * dbusbind.c: New file.
13176
13177 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
13178
13179 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
13180 (Qdbus_event): New Lisp symbol.
13181 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
13182 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
13183 (keys_of_keyboard ): Define dbus-event.
13184
13185 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
13186
13187 2007-12-01 Richard Stallman <rms@gnu.org>
13188
13189 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
13190
13191 2007-11-30 Jason Rumney <jasonr@gnu.org>
13192
13193 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
13194 (w32con_reset_terminal_modes): Clear screen buffer.
13195 (w32_face_attributes): Don't use color indexes that are out of range.
13196 Only reverse the default colors.
13197
13198 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
13199 WINDOWSNT.
13200
13201 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
13202
13203 2007-11-29 Jason Rumney <jasonr@gnu.org>
13204
13205 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
13206 (w32_face_attributes): Use Vtty_defined_color_alist to determine
13207 if the terminal colors are initialized.
13208 (unspecified_fg, unspecified_bg): Remove unused declarations.
13209
13210 2007-11-29 Andreas Schwab <schwab@suse.de>
13211
13212 * keyboard.c (apply_modifiers): Fix typo.
13213
13214 2007-11-29 Richard Stallman <rms@gnu.org>
13215
13216 * keymap.c (Fcurrent_local_map): Doc fix.
13217
13218 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
13219
13220 * s/gnu-kfreebsd.h: New file.
13221
13222 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
13223
13224 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
13225 Don't cast redundantly.
13226
13227 * keyboard.c (KEY_TO_CHAR): New macro.
13228 (parse_modifiers, apply_modifiers): Accept integer arguments.
13229 (read_key_sequence): Use them to unify the "shift->unshift" mapping
13230 for chars and symbol keys.
13231 After doing such remapping, apply function-key-map again.
13232
13233 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
13234
13235 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
13236 compiled anymore.
13237
13238 2007-11-26 Andreas Schwab <schwab@suse.de>
13239
13240 * process.c (list_processes_1): Fix indentation level of the
13241 command column.
13242
13243 2007-11-23 Andreas Schwab <schwab@suse.de>
13244
13245 * editfns.c (Fformat): Handle %c specially since it requires the
13246 argument to be of type int.
13247
13248 2007-11-23 Markus Triska <markus.triska@gmx.at>
13249
13250 * emacs.c (main): Call init_editfns before init_process, since
13251 init_process sets Vprocess_connection_type depending on OS release.
13252
13253 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
13254
13255 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
13256 (find_symbol_value): Use do_symval_forwarding.
13257
13258 * data.c (set_internal): Set the value in the `cons-cell' (for
13259 Buffer_Local_values) not only for frame-local variables.
13260
13261 2007-11-22 Andreas Schwab <schwab@suse.de>
13262
13263 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
13264 values to sprintf.
13265 * keymap.c (Fsingle_key_description): Likewise.
13266 * print.c (print_object): Likewise.
13267
13268 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
13269
13270 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
13271 file for image is nil.
13272
13273 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
13274
13275 * term.c: Include stdarg.h.
13276 (fatal): Implement using varargs.
13277 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
13278
13279 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13280
13281 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
13282 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
13283 Update call to buffer_slot_type_mismatch.
13284 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
13285 (buffer_slot_type_mismatch): Update.
13286 * buffer.c (buffer_local_types): Remove.
13287 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
13288 (defvar_per_buffer): Set the type in the buffer_objfwd.
13289
13290 2007-11-21 Jason Rumney <jasonr@gnu.org>
13291
13292 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
13293 CreateFileMapping returns NULL on failure.
13294
13295 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
13296
13297 * search.c (Fset_match_data): Remove the `evaporate' feature.
13298 (unwind_set_match_data): Don't use the `evaporate' feature.
13299
13300 2007-11-21 Jason Rumney <jasonr@gnu.org>
13301
13302 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
13303
13304 * w32console.c (w32con_write_glyphs): Remove unused variables.
13305
13306 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
13307
13308 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
13309
13310 * s/darwin.h (MULTI_KBOARD): Remove.
13311
13312 * macfns.c (x_create_tip_frame, Fx_create_frame)
13313 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
13314
13315 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
13316
13317 * buffer.c (Fbuffer_local_value): Remove redundant test.
13318 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
13319 than in `current-buffer' to match the comment.
13320 Do the swap using swap_in_global_binding.
13321
13322 * data.c (store_symval_forwarding, set_internal):
13323 * eval.c (specbind): Remove dead code.
13324
13325 * coding.c (detect_coding, Fupdate_coding_systems_internal):
13326 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
13327 Since we do not want to see internal Lisp_*fwd objects here.
13328
13329 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
13330
13331 * sysdep.c (init_system_name): Use getaddrinfo if available.
13332
13333 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
13334 (x_scroll_bar_note_movement): start, end, with, height in struct
13335 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
13336
13337 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
13338
13339 * puresize.h (BASE_PURESIZE): Increase to 1190000.
13340
13341 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
13342
13343 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
13344 This undoes Richard's change of 14-Oct-2002.
13345
13346 * alloc.c (allocate_other_vector):
13347 * lisp.h (allocate_other_vector): Remove.
13348
13349 * window.c (struct save_window_data): Move non-lisp data to the end
13350 and make it `int' rather than Lisp_Object.
13351 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
13352 Done wrap/unwrap integer values.
13353 (Fset_window_configuration, compare_window_configurations):
13354 Update use of fields to their new types.
13355
13356 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
13357 Turn integer fields into `int'. Merge x_window_low and x_window_high.
13358 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
13359 (SET_SCROLL_BAR_X_WINDOW): Remove.
13360 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
13361 Access the new x_window field directly.
13362 * xterm.c (x_scroll_bar_create): Use a pseudovector.
13363 Don't wrap/unwrap integers into Lisp_Objects.
13364 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
13365 (x_scroll_bar_report_motion):
13366 Don't wrap/unwrap integers into Lisp_Objects.
13367 (x_term_init): Use SDATA.
13368 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
13369 (x_scroll_bar_set_handle, x_scroll_bar_remove)
13370 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
13371 (x_scroll_bar_report_motion, x_scroll_bar_clear):
13372 * xfns.c (x_set_background_color):
13373 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
13374 Access the new x_window field directly.
13375
13376 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
13377 (allocate_pseudovector): Make non-static.
13378
13379 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
13380 (allocate_pseudovector): Declare.
13381 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
13382
13383 2007-11-15 Andreas Schwab <schwab@suse.de>
13384
13385 * editfns.c (Fformat): Correctly format EMACS_INT values.
13386 Also take precision into account when formatting an integer.
13387
13388 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
13389
13390 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
13391
13392 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
13393 (syms_of_keyboard): Defsubr it.
13394
13395 * data.c (swap_in_global_binding): Fix longstanding bug where
13396 store_symval_forwarding was not called with the right second argument,
13397 thus causing objfwd-ing from being dropped.
13398
13399 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
13400
13401 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
13402 (Fx_display_pixel_height, Fx_display_planes)
13403 (Fx_display_color_cells, Fx_server_max_request_size)
13404 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
13405 (Fx_display_visual_class, Fx_display_save_under):
13406 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
13407 (Fx_display_pixel_height, Fx_display_planes)
13408 (Fx_display_color_cells, Fx_server_max_request_size)
13409 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
13410 (Fx_display_mm_height, Fx_display_mm_width)
13411 (Fx_display_backing_store, Fx_display_visual_class)
13412 (Fw32_select_font, Fx_display_save_under):
13413 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
13414 (Fx_display_pixel_height, Fx_display_planes)
13415 (Fx_display_color_cells, Fx_server_max_request_size)
13416 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
13417 (Fx_display_save_under): Fix typos in docstrings.
13418
13419 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
13420
13421 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
13422 corresponding to deleted entries; they are an implementation detail.
13423 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
13424 Remove variables.
13425 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
13426 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
13427 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
13428 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
13429 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
13430 (Fw32_define_rgb_color, Fw32_load_color_file)
13431 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
13432 Fix typos in docstrings.
13433 (Fx_server_version): Reflow docstring.
13434 (Fw32_shell_execute): Doc fixes.
13435
13436 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
13437
13438 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
13439 if w32_parse_hot_key returned nil.
13440
13441 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
13442
13443 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
13444
13445 2007-11-09 Jason Rumney <jasonr@gnu.org>
13446
13447 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
13448
13449 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
13450
13451 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
13452 Remove W32_SCROLL_BAR_CLICK_EVENT.
13453
13454 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
13455 Add MULTIMEDIA_KEY_EVENT.
13456
13457 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
13458 (lispy_multimedia_keys) [WINDOWSNT]: New array.
13459 (make_lispy_event) [WINDOWSNT]: Use it to translate
13460 MULTIMEDIA_KEY_EVENT.
13461
13462 * w32term.h (WM_APPCOMMAND): Define if not already.
13463 (GET_APPCOMMAND_LPARAM): Likewise.
13464
13465 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
13466 WM_APPCOMMAND.
13467
13468 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
13469 (syms_of_w32fns): Export and initialize it.
13470 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
13471
13472 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
13473
13474 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
13475 twice.
13476
13477 * xdisp.c (handle_face_prop): Fix last change.
13478
13479 2007-11-09 Richard Stallman <rms@gnu.org>
13480
13481 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
13482 not just for after-strings and before-strings.
13483 Call face_for_overlay_string and pass the overlay to it.
13484 (handle_display_prop): Determine whether property came from an overlay.
13485 Pass OVERLAY arg to handle_single_display_spec.
13486 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
13487 (load_overlay_strings): Fill in it->string_overlays.
13488 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
13489
13490 * xfaces.c (face_for_overlay_string): Function renamed from
13491 face_at_buffer_position_no_overlays, and add arg OVERLAY.
13492
13493 * dispextern.h (struct it): New elt string_overlays.
13494 New elt from_overlay, also in stack.
13495 Rearrange a few elements.
13496 (face_for_overlay_string): Decl renamed from
13497 face_at_buffer_position_no_overlays, and add argument.
13498
13499 2007-11-09 Richard Stallman <rms@gnu.org>
13500
13501 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
13502 to get the base face for an overlay string.
13503
13504 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
13505
13506 * xfaces.c (face_at_buffer_position_no_overlays): New function.
13507
13508 * xdisp.c (handle_stop): Move some code out of loop.
13509
13510 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13511
13512 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
13513 Fix conversion from Lisp object to ATSUFontID.
13514
13515 2007-11-09 Jason Rumney <jasonr@gnu.org>
13516
13517 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
13518
13519 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13520
13521 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
13522 Don't assume regions are aligned to page boundary.
13523 (print_load_command_name): Add LC_UUID if defined.
13524
13525 2007-11-09 Richard Stallman <rms@gnu.org>
13526
13527 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
13528
13529 2007-11-07 Jason Rumney <jasonr@gnu.org>
13530
13531 * s/windows95.h: Remove.
13532
13533 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
13534
13535 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
13536 abort with a message on unhandled store_type values.
13537
13538 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
13539
13540 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
13541 Remove HAVE_X11R5 and HAVE_X11R4.
13542
13543 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
13544
13545 * Makefile.in: Remove references to sunfns.c and sunfns.o.
13546
13547 2007-11-01 Johan Bockgård <bojohan@gnu.org>
13548
13549 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
13550 Don't set s->stippled_p here, since it has already been set by
13551 x_set_glyph_string_gc from x_draw_glyph_string.
13552
13553 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
13554
13555 * sunfns.c: Remove file.
13556
13557 * m/sun386.h:
13558 * m/sun2.h:
13559 * m/sparc.h: Remove Sun windows code.
13560
13561 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
13562
13563 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
13564 (init_keyboard): Set current_kboard's window-system to nil.
13565 (tty_read_avail_input): Typo.
13566 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
13567
13568 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
13569
13570 * s/usg5-4.h:
13571 * s/usg5-3.h:
13572 * s/ptx.h:
13573 * m/is386.h:
13574 * m/ibmps2-aix.h:
13575 * Makefile.in: Remove all mentions of X10.
13576
13577 * dispnew.c (syms_of_display): Don't mention version 10.
13578
13579 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
13580
13581 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
13582 ($(BLD)/abbrev.$(O)): Remove.
13583
13584 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
13585
13586 Rewrite abbrev.c in Elisp.
13587 * image.c (Qcount): Don't declare as extern.
13588 (syms_of_image): Initialize and staticpro `Qcount'.
13589 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
13590 * emacs.c (main): Don't call syms_of_abbrev.
13591 * Makefile.in (obj): Remove abbrev.o.
13592 (abbrev.o): Remove.
13593 * abbrev.c: Remove.
13594
13595 2007-10-26 Martin Rudalics <rudalics@gmx.at>
13596
13597 * window.c (window_min_size_2): Don't count header-line.
13598
13599 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
13600
13601 * frame.h (struct frame): Move all bit fields after the first bit
13602 field to take advantage of the available space. Group all the
13603 chars together to reduce wasted space due to padding.
13604
13605 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
13606
13607 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
13608
13609 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
13610 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
13611 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
13612 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
13613 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
13614 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
13615 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
13616 (last_marked, mark_object_loop_halt): Make static.
13617
13618 * frame.c (syms_of_frame) <delete-frame-functions>:
13619 Fix typo in docstring.
13620
13621 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
13622
13623 * w32.c (init_environment): Fix tiny memory leak.
13624 (w32_get_resource): Remove unused variable `ok'.
13625
13626 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
13627
13628 Make `window-system' into a keyboard-local variable (rather than
13629 frame-local as done originally by multi-tty).
13630
13631 * keyboard.h (struct kboard): Add Vwindow_system.
13632 * keyboard.c (init_kboard): Set a default for Vwindow_system.
13633 (mark_kboards): Mark Vwindow_system.
13634
13635 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
13636 (init_display): Don't set the obsolete `window-system' frame-param.
13637
13638 * xterm.c (x_term_init):
13639 * w32term.c (w32_create_terminal):
13640 * term.c (init_tty): Set Vwindow_system.
13641 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
13642 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
13643
13644 * xfns.c (Fx_create_frame, x_create_tip_frame):
13645 * w32fns.c (Fx_create_frame, x_create_tip_frame):
13646 * macfns.c (Fx_create_frame):
13647 Don't set the obsolete `window-system' frame-param.
13648
13649 * frame.h (Qwindow_system): Remove.
13650 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
13651 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
13652
13653 2007-10-24 Richard Stallman <rms@gnu.org>
13654
13655 * frame.c (x_figure_window_size): For fullscreen case,
13656 set USPosition | PPosition without clobbering rest of window_prompting.
13657
13658 * keyboard.c (Fcurrent_idle_time): Doc fix.
13659
13660 * print.c (Fwith_output_to_temp_buffer): Doc fix.
13661
13662 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
13663
13664 * process.c (unwind_request_sigio): Only define if __ultrix__.
13665
13666 * callproc.c (child_setup): Remove spurious *.
13667
13668 * lisp.h (Fget_text_property): Declare.
13669 (have_menus_p): Declare it here rather than in sys-dep header files.
13670 * macterm.h (have_menus_p):
13671 * msdos.h (have_menus_p):
13672 * xterm.h (have_menus_p): Remove.
13673
13674 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
13675 (Fmake_variable_frame_local): Just check the variable's const-ness
13676 rather than checking nil or t.
13677
13678 2007-10-22 Jason Rumney <jasonr@gnu.org>
13679
13680 * w32fns.c: Include math.h.
13681 (w32_abort): Declaration moved to nt/config.nt.
13682
13683 * s/ms-w32.h (HAVE_STDLIB_H): Define.
13684 (abort): Redefinition moved to nt/config.nt.
13685
13686 * m/windowsnt.h: Remove.
13687
13688 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
13689
13690 * emacs.c (Fdump_emacs): Fix typo in message.
13691 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
13692 <installation-directory>: Reflow docstring.
13693
13694 2007-10-22 Juri Linkov <juri@jurta.org>
13695
13696 * minibuf.c: Allow minibuffer default to be a list of default values.
13697 With empty input use the first element of this list as returned default.
13698 (string_to_object)
13699 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
13700 (read_minibuf): If defalt is cons, set histstring to its car.
13701 (Fread_string): If default_value is cons, set val to its car.
13702 (Fread_buffer): If def is cons, use its car.
13703 (Fcompleting_read): If defalt is cons, set val to its car.
13704
13705 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
13706
13707 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
13708
13709 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
13710
13711 * doc.c (Fdocumentation): Check for advice in all cases.
13712
13713 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
13714
13715 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
13716
13717 2007-10-19 Richard Stallman <rms@gnu.org>
13718
13719 * doc.c (Fdocumentation): Check for and handle an advised function.
13720
13721 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
13722
13723 * process.c (Fset_process_filter): Doc fix.
13724
13725 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
13726
13727 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
13728 which caused key-translation-map to applied repeatedly (thus breaking
13729 double-mode).
13730
13731 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13732
13733 * xselect.c (x_own_selection, x_handle_selection_clear)
13734 (x_clear_frame_selections):
13735 * w32menu.c (list_of_panes, list_of_items):
13736 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
13737 * textprop.c (validate_plist, interval_has_all_properties)
13738 (interval_has_some_properties, interval_has_some_properties_list)
13739 (add_properties, text_property_list):
13740 * process.c (Fget_buffer_process, list_processes_1, status_notify):
13741 * minibuf.c (Fassoc_string):
13742 * macselect.c (x_own_selection, x_clear_frame_selections)
13743 (Fx_disown_selection_internal):
13744 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
13745 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
13746
13747 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
13748
13749 * process.c: Link to libs for calling res_init() if available.
13750 (Fmake_network_process): Call res_init() before getaddrinfo or
13751 gethostbyname, if possible.
13752
13753 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
13754
13755 * lread.c (read1): Set pvectype for char_tables.
13756
13757 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
13758 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
13759 Add type checks.
13760 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
13761
13762 * alloc.c (free_misc): Use XMISCTYPE.
13763 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
13764
13765 2007-10-17 Glenn Morris <rgm@gnu.org>
13766
13767 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
13768 (syms_of_minibuf): Add Qcompletion_ignore_case.
13769 * dired.c (Qcompletion_ignore_case): Change to external.
13770 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
13771 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
13772 (Fread_file_name): Use it rather than intern'ing.
13773
13774 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
13775 (Fread_coding_system): Ignore case of user input.
13776
13777 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13778
13779 * xdisp.c (handle_display_prop): Ignore display specs after
13780 replacing one when string text is being replaced.
13781 (handle_single_display_spec): Pretend as if characters with display
13782 property haven't been consumed only when buffer text is being replaced.
13783
13784 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
13785
13786 * xfns.c (Fx_create_frame, Fx_display_list):
13787 * window.c (window_fixed_size_p, enlarge_window)
13788 (shrink_window_lowest_first):
13789 * macterm.c (init_font_name_table):
13790 * macfns.c (Fx_create_frame, Fx_display_list):
13791 * lread.c (close_load_descs):
13792 * keyboard.c (read_char_x_menu_prompt):
13793 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
13794 * coding.c (code_convert_region_unwind): Test the type of an object
13795 rather than just !NILP before extracting data from it.
13796
13797 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
13798
13799 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
13800 (XMISCANY): New macro.
13801 (XMISCTYPE): Use it.
13802 (struct Lisp_Misc_Any): New type.
13803 (union Lisp_Misc): Use it.
13804 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
13805 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
13806 (find_symbol_value, set_internal, default_value, Fset_default)
13807 (Fmake_variable_buffer_local, Fmake_local_variable)
13808 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
13809 (Flocal_variable_if_set_p, Fvariable_binding_locus):
13810 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
13811 * alloc.c (allocate_buffer): Set the size and tag.
13812 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
13813 Use XMISCANY.
13814 (die): Follow the GNU convention for error messages.
13815 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
13816 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
13817 tag any more.
13818 (set_buffer_internal_1):
13819 * frame.c (store_frame_param):
13820 * eval.c (specbind):
13821 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
13822
13823 * doc.c (Fsnarf_documentation): Simplify.
13824
13825 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
13826
13827 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
13828 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
13829
13830 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
13831
13832 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
13833
13834 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
13835
13836 * eval.c (do_autoload): Don't save autoloads.
13837
13838 * data.c (Ffset): Save autoload of the function being set.
13839
13840 2007-10-07 John Paul Wallington <jpw@pobox.com>
13841
13842 * xfns.c (x_create_tip_frame): Set the `display-type' frame
13843 parameter before setting up faces.
13844
13845 2007-10-13 Eli Zaretskii <eliz@gnu.org>
13846
13847 * ccl.c (Fregister_code_conversion_map):
13848 * keyboard.c (append_tool_bar_item): Reformat last change.
13849
13850 * lisp.h (eabs): Rename from `abs'. All callers changed.
13851
13852 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
13853
13854 * buffer.c (add_overlay_mod_hooklist):
13855 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
13856 * fontset.c (make_fontset):
13857 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
13858 (append_tool_bar_item):
13859 * macmenu.c (grow_menu_items):
13860 * w32menu.c (grow_menu_items):
13861 * xmenu.c (grow_menu_items): Use larger_vector.
13862
13863 2007-10-13 Eli Zaretskii <eliz@gnu.org>
13864
13865 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
13866 selected frame'' on MSDOS).
13867
13868 2007-10-12 Martin Rudalics <rudalics@gmx.at>
13869
13870 * frame.c (Qexplicit_name): New variable.
13871 (x_report_frame_params): Report it in parameter alist.
13872 (syms_of_frame): Intern and staticpro it.
13873
13874 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
13875
13876 * macfns.c (x_create_tip_frame): Set terminal for frame.
13877
13878 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
13879
13880 * frame.c (Qenvironment): Remove.
13881 (syms_of_frame) <Qenvironment>: Don't initialize.
13882 (Fdelete_frame): Don't treat the `environment' param specially.
13883 * frame.h (Qenvironment): Don't declare.
13884 * callproc.c (set_initial_environment): Don't set unused frame param.
13885
13886 * frame.c (Fframe_with_environment): Remove.
13887 (syms_of_frame) <Sframe_with_environment>: Don't declare.
13888
13889 * lisp.h (Fframe_with_environment): Don't declare.
13890
13891 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
13892
13893 * indent.c (indent_tabs_mode, last_known_column)
13894 (last_known_column_modified): Make static.
13895 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
13896
13897 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
13898
13899 * puresize.h (BASE_PURESIZE): Increase to 1170000.
13900
13901 2007-10-09 Jason Rumney <jasonr@gnu.org>
13902
13903 * w32term.c (x_set_window_size): Disable code that attempts to tell
13904 Lisp code about a size change before it actually happens.
13905
13906 2007-10-09 Richard Stallman <rms@gnu.org>
13907
13908 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
13909 return HANDLED_RETURN.
13910
13911 2007-10-08 Martin Rudalics <rudalics@gmx.at>
13912
13913 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
13914 when there's an unread command event.
13915
13916 * frame.c (focus_follows_mouse): Move here from frame.el to allow
13917 window autoselection act appropriately when leaving selected frame.
13918 (syms_of_frame): Initialize focus_follows_mouse.
13919 * frame.h (focus_follows_mouse): Extern it.
13920 * macterm.c (XTread_socket): When focus_follows_mouse is nil
13921 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
13922 * msdos.c (dos_rawgetc): Likewise.
13923 * w32term.c (w32_read_socket): Likewise.
13924 * xterm.c (handle_one_xevent): Likewise.
13925 * xdisp.c (syms_of_xdisp): In doc-string of
13926 mouse-autoselect-window mention focus-follows-mouse.
13927
13928 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13929
13930 * macterm.c (mac_load_query_font): Fix missing return value.
13931 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
13932 Add BLOCK_INPUT.
13933
13934 2007-10-08 Richard Stallman <rms@gnu.org>
13935
13936 * xdisp.c (get_window_cursor_type): Implement documented behavior
13937 for cursor-in-non-selected-windows = t.
13938
13939 2007-10-08 Jason Rumney <jasonr@gnu.org>
13940
13941 * w32.c (w32_get_resource): Always close registry keys.
13942
13943 2007-10-08 Jason Rumney <jasonr@gnu.org>
13944
13945 * makefile.w32-in (LIBS): Add COMCTL32.
13946
13947 * w32fns.c (globals_of_w32fns): Init common controls.
13948
13949 2007-10-08 Richard Stallman <rms@gnu.org>
13950
13951 * image.c (our_memory_buffer): Rename from omfib_buffer.
13952
13953 2007-10-08 Richard Stallman <rms@gnu.org>
13954
13955 * buffer.c (Foverlays_at): Doc fix.
13956
13957 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
13958
13959 * fns.c (Fplist_put): Preserve uneven tail data.
13960
13961 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
13962
13963 * termhooks.h (enum event_kind): Remove trailing comma.
13964
13965 * frame.h (enum): Remove trailing comma.
13966
13967 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
13968
13969 * w32proc.c (delete_child): Don't terminate threads of zombies.
13970
13971 2007-10-08 Martin Rudalics <rudalics@gmx.at>
13972
13973 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
13974
13975 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
13976 last-repeatable-command.
13977 (init_kboard): Initialize Vlast_repeatable_command.
13978 (command_loop_1): Set it to real_this_command unless that was
13979 bound to an input event.
13980 (mark_kboards): Mark it.
13981
13982 2007-10-08 Richard Stallman <rms@gnu.org>
13983
13984 * eval.c (condition-case): Doc fix.
13985
13986 2007-10-08 Masatake YAMATO <jet@gyve.org>
13987
13988 * xfaces.c (tty_supports_face_attributes_p): Fix code
13989 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
13990 was copied and not edited.
13991
13992 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
13993
13994 Add new `input-decode-map' keymap and use it for terminal
13995 escape sequences.
13996 * keyboard.h (struct kboard): Add Vinput_decode_map.
13997 Remove Vlocal_key_translation_map.
13998 * keyboard.c (read_key_sequence): Add support for input-decode-map.
13999 (init_kboard): Init input-decode-map.
14000 Replace local-key-translation-map back with key-translation-map.
14001 (syms_of_keyboard): Declare input-decode-map.
14002 Remove local-key-translation-map. Update docstrings.
14003 (mark_kboards): Mark Vinput_decode_map.
14004 Don't mark Vlocal_key_translation_map.
14005 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
14006 Replace local-key-translation-map back with key-translation-map.
14007 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
14008 Bind in input-decode-map rather than function-key-map.
14009
14010 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
14011 This was made redundant by the previous introduction of XSETPVECTYPE.
14012
14013 2007-10-09 Richard Stallman <rms@gnu.org>
14014
14015 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
14016
14017 2007-09-29 Richard Stallman <rms@gnu.org>
14018
14019 * eval.c (internal_condition_case_2, internal_condition_case_1)
14020 (internal_condition_case): Reenable abort if x_catching_errors ()
14021 to see if that really happens and why.
14022
14023 2007-10-06 Andreas Schwab <schwab@suse.de>
14024
14025 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
14026
14027 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
14028
14029 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
14030
14031 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
14032
14033 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
14034
14035 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
14036
14037 * window.h (struct window):
14038 * window.c (struct save_window_data, struct saved_window):
14039 * termhooks.h (struct terminal):
14040 * process.h (struct Lisp_Process):
14041 * frame.h (struct frame):
14042 * buffer.h (struct buffer):
14043 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
14044 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
14045 The size field of (pseudo)vectors is now unsigned.
14046 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
14047
14048 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
14049 Turn `count' into an integer.
14050
14051 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
14052 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
14053 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
14054 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
14055 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
14056
14057 * alloc.c (allocate_pseudovector): New fun.
14058 (ALLOCATE_PSEUDOVECTOR): New macro.
14059 (allocate_window, allocate_terminal, allocate_frame)
14060 (allocate_process): Use it.
14061 (mark_vectorlike): New function.
14062 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
14063 (mark_terminals): Use it.
14064 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
14065 (Fmake_byte_code): Use XSETPVECTYPE.
14066
14067 * frame.c (Fframe_parameters): Minor simplification.
14068
14069 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
14070
14071 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
14072
14073 * buffer.c (Fget_buffer_create, init_buffer_once):
14074 * lread.c (defsubr):
14075 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
14076
14077 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
14078 defined differently in the m/*.h files.
14079 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
14080 (XSETPVECTYPE): New macro.
14081 (XSETPSEUDOVECTOR): Use it.
14082
14083 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
14084 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
14085
14086 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
14087 * lread.c (defvar_per_buffer):
14088 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
14089
14090 * window.c (candidate_window_p): Only consider as visible frames that
14091 are on the same terminal.
14092
14093 * m/ibms390x.h (MARKBIT): Remove unused macro.
14094
14095 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
14096
14097 * lread.c (Fload): Fix typo in docstring.
14098
14099 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
14100
14101 * floatfns.c (Fexpt): Manually check for overflows, so that a power
14102 of a non-zero value can't yield zero.
14103
14104 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
14105
14106 * term.c (term_clear_mouse_face, term_mouse_highlight)
14107 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
14108
14109 * print.c (safe_debug_print): Use XHASH.
14110
14111 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
14112 Lisp elements such as tags.
14113 (XHASH): New macro.
14114 (EQ): Use it.
14115 (SREF, SSET, STRING_COPYIN): Use SDATA.
14116 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
14117
14118 * alloc.c (mark_terminal): Remove left-over declaration.
14119 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
14120 (allocate_vectorlike): Remove type argument. Adjust callers.
14121 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
14122 Only handle the one remaining MEM_TYPE_VECTORLIKE.
14123
14124 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
14125 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
14126 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
14127 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
14128 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
14129 Use them.
14130
14131 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
14132 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
14133 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
14134
14135 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
14136
14137 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
14138 loaded by default.
14139
14140 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
14141
14142 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
14143 on this tty.
14144 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
14145
14146 * term.c (mouse_face_window): Rename from Qmouse_face_window.
14147 Update all users.
14148 (handle_one_term_event): Use Gpm_DrawPointer.
14149 (Fgpm_mouse_start): Rename from Fterm_open_connection.
14150 Signal errors instead of returning nil. Always return nil.
14151 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
14152 Make it a noop if gpm-mouse was not activated.
14153 (syms_of_term): Update names.
14154
14155 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
14156
14157 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
14158 (init_sys_modes): Check that gpm_tty is the current tty.
14159
14160 * alloc.c (allocate_terminal): Set the vector size to only count the
14161 lisp fields. Initialize those to nil.
14162 (mark_object): Don't treat terminals specially.
14163 (mark_terminal): Remove.
14164 (mark_terminals): Use mark_object instead.
14165
14166 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
14167 the GC to the beginning.
14168
14169 * indent.h:
14170 * indent.c: Use EMACS_INT for ints coming from Elisp data.
14171
14172 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
14173
14174 2007-09-25 Jason Rumney <jasonr@gnu.org>
14175
14176 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
14177
14178 * w32console.c (create_w32cons_output): Remove.
14179
14180 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
14181
14182 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
14183 (reset_sys_modes): Use reset_terminal_modes_hook.
14184
14185 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
14186
14187 * eval.c (do_autoload): Don't output any message.
14188
14189 2007-09-24 Juri Linkov <juri@jurta.org>
14190
14191 * emacs.c (standard_args): Change priority of "--no-splash"
14192 from 40 to 3. Add "--no-desktop" with the same priority.
14193
14194 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
14195
14196 * alloc.c (gc_sweep): Check cons cell mark bits word by word
14197 and optimize the case where they are all 1.
14198
14199 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
14200
14201 * lisp.h (abs): Define if not defined.
14202 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
14203 Don't define `abs', since it's defined in lisp.h.
14204
14205 2007-09-22 Eli Zaretskii <eliz@gnu.org>
14206
14207 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
14208 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
14209 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
14210 (init_tty): Use DEV_TTY instead of "/dev/tty".
14211 [WINDOWSNT]: No need to protect from NAME arg being null.
14212
14213 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
14214
14215 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
14216 up the tty state.
14217
14218 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14219
14220 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
14221 (gpm_tty): Change its type.
14222 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
14223 (gpm_tty): Change its type and initialize it.
14224 (Fterm_open_connection): Check the frame is indeed a tty.
14225 Use the new gpm_tty.
14226 (Fterm_close_connection): Use the new gpm_tty.
14227 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
14228 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
14229
14230 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
14231
14232 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
14233 underline_color, to draw strike-through.
14234
14235 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
14236
14237 * lisp.h (allocate_terminal): Declare.
14238
14239 * window.c (candidate_window_p): Consider frames that are being placed
14240 by the user as somewhere between visible and iconified.
14241 (window_loop): Prefer windows on the current frame.
14242 (Fselect_window): Move the use of select-frame to the beginning so we
14243 can just delegate all the work (it'll call us back anyway).
14244
14245 * frame.c (Qdisplay_environment_variable):
14246 * frame.h (Qdisplay_environment_variable): Delete.
14247
14248 * .gdbinit (xbacktrace): Print the arg's address rather than the value
14249 of the first arg, since that value may be a union.
14250
14251 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
14252 parameter rather than Qdisplay_environment_variable. If all else
14253 fails, look for DISPLAY in initial-environment.
14254
14255 2007-09-21 Glenn Morris <rgm@gnu.org>
14256
14257 * Makefile.in (emacstool): Remove target.
14258 (lisp, shortlisp): Remove termdev.elc.
14259
14260 2007-09-21 Markus Triska <markus.triska@gmx.at>
14261
14262 * xterm.c (x_delete_display): Compile session management conditionally.
14263
14264 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
14265
14266 * callproc.c (getenv_internal_1): New function.
14267 (getenv_internal): Use it.
14268 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
14269
14270 * terminal.c (get_terminal): Don't accept ints to represent terminals.
14271 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
14272 (Fset_terminal_parameter): Work with dead terminals as well.
14273 (Fmodify_terminal_parameters): Remove.
14274
14275 * terminal.c (get_terminal): Handle terminals.
14276 Make sure the terminal returned is live.
14277 (create_terminal): Use allocate_terminal.
14278 (mark_terminals): Move to alloc.c.
14279 (delete_terminal): Use terminal->name as liveness status.
14280 NULL out fields after freeing their contents.
14281 Don't deallocate the object.
14282 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
14283 rather than an int.
14284 (Fterminal_live_p): Accept non-integer arguments.
14285 (Fterminal_list): Return terminal objects rather than an ints.
14286
14287 * alloc.c (enum mem_type): New member for `terminal' objects.
14288 (allocate_terminal): New function.
14289 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
14290 Handle terminals.
14291 (mark_terminal): New fun.
14292 (mark_terminals): Move from terminal.c.
14293
14294 * term.c (get_tty_terminal): Don't treat output_initial specially.
14295 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
14296 (delete_tty): Use terminal->name as liveness status.
14297
14298 * termhooks.h (struct terminal): Make it into a pseudovector.
14299 Remove `deleted' replaced by checking `name's nullness.
14300
14301 * print.c (print_object): Handle terminals.
14302
14303 * lisp.h (enum pvec_type): New `terminal' pseudovector.
14304 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
14305
14306 * frame.c (make_terminal_frame):
14307 * keyboard.c (tty_read_avail_input):
14308 * w32term.c (x_delete_terminal):
14309 * xfns.c (Fx_create_frame, x_create_tip_frame):
14310 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
14311
14312 2007-09-20 Glenn Morris <rgm@gnu.org>
14313
14314 * process.c (Fmake_network_process): Doc fix.
14315
14316 2007-09-19 Jason Rumney <jasonr@gnu.org>
14317
14318 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
14319
14320 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
14321
14322 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
14323 Fix a C warning regarding variable constness.
14324
14325 * xterm.c (handle_one_xevent): Fix a C warning.
14326
14327 2007-09-18 Jason Rumney <jasonr@gnu.org>
14328
14329 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
14330
14331 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
14332
14333 * gtkutil.c (gdpy_def): New variable.
14334 (xg_initialize): Initialize gdpy_def.
14335 (xg_display_close): If no other display exists, set gdpy_def to a
14336 new connection.
14337
14338 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
14339
14340 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
14341 when we have no file name for the icon.
14342 (xg_tool_bar_expose_callback): Remove.
14343 (xg_create_tool_bar): Don't connect expose signal to
14344 xg_tool_bar_expose_callback.
14345 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
14346
14347 2007-09-16 Andreas Schwab <schwab@suse.de>
14348
14349 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
14350 values instead of zapping them.
14351
14352 2007-09-14 Glenn Morris <rgm@gnu.org>
14353
14354 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
14355 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
14356 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
14357 scope and rename to omfib_buffer for clarity.
14358 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
14359
14360 2007-09-14 Kenichi Handa <handa@m17n.org>
14361
14362 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
14363
14364 2007-09-13 Jason Rumney <jasonr@gnu.org>
14365
14366 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
14367
14368 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
14369
14370 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
14371 (mac_term_init): Call here instead, passing rif.
14372
14373 2007-09-13 Glenn Morris <rgm@gnu.org>
14374
14375 * s/hpux.h: No longer define `static' as nothing.
14376
14377 2007-09-13 Johan Bockgård <bojohan@gnu.org>
14378
14379 * callint.c (Fcall_interactively): Remove unused var `fun'.
14380
14381 2007-09-12 Romain Francoise <romain@orebokech.com>
14382
14383 * window.c (prefer_window_split_horizontally, display_buffer):
14384 Revert 2007-09-08 change.
14385
14386 2007-09-12 Glenn Morris <rgm@gnu.org>
14387
14388 * alloca.c: Remove file.
14389 * Makefile.in (alloca): Do not undef.
14390 (allocaobj, alloca.o): Remove.
14391 (otherobj): Remove allocaobj.
14392 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
14393 * regex.c (C_ALLOCA): Remove all references and code that was only
14394 used when this was defined.
14395 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
14396 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
14397 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
14398
14399 * Makefile.in (SOURCES, unlock, relock): Delete.
14400
14401 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
14402 (menu_grab_callback): All uses changed.
14403
14404 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
14405 (x_reply_selection_request): All uses changed.
14406
14407 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
14408
14409 * lread.c (load_warn_old_style_backquotes): Change message to look
14410 better when it appears in the middle of byte-compiler messages.
14411
14412 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
14413
14414 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
14415
14416 * xterm.c (x_create_terminal): Add comment.
14417
14418 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
14419
14420 2007-09-10 Richard Stallman <rms@gnu.org>
14421
14422 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
14423
14424 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
14425
14426 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
14427 (DEFUN): Document `intspec', use it instead of `prompt'.
14428
14429 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
14430
14431 * data.c (Finteractive_form): If the interactive specification starts
14432 with a `(', use it as a Lisp form.
14433
14434 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
14435 name and file modes.
14436
14437 * callint.c (Fcall_interactively): Comment fixes.
14438
14439 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
14440
14441 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
14442 and compiled functions.
14443
14444 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
14445
14446 * window.c (prefer_window_split_horizontally): New variable.
14447 (display_buffer): Consider splitting window horizontally depending
14448 on prefer_window_split_horizontally.
14449
14450 2007-09-08 Eli Zaretskii <eliz@gnu.org>
14451
14452 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
14453
14454 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14455
14456 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
14457
14458 * frame.c (x_set_frame_parameters): Check number is positive before
14459 using XFASTINT.
14460
14461 * window.c (freeze_window_start): Don't presume selected_window holds
14462 a window object.
14463 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
14464
14465 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
14466
14467 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
14468
14469 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
14470
14471 * window.c (Vsplit_window_preferred_function): New var.
14472 (Fdisplay_buffer): Use it.
14473 (syms_of_window): Export, and initialize it.
14474
14475 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
14476
14477 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
14478
14479 2007-09-06 Glenn Morris <rgm@gnu.org>
14480
14481 * gtkutil.c (menu_grab_callback) <cnt>:
14482 * xselect.c (x_reply_selection_request) <cnt>: Move static
14483 variable to file scope.
14484
14485 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
14486
14487 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
14488 consistent values of selected_frame and selected_window.
14489
14490 2007-09-04 Jason Rumney <jasonr@gnu.org>
14491
14492 * w32console.c (initialize_w32_display): Zero unused hooks.
14493
14494 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
14495
14496 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
14497 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
14498
14499 2007-09-04 Jason Rumney <jasonr@gnu.org>
14500
14501 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
14502 in w32console.c. Set up input. Remove XXX comments that have been
14503 confirmed as correct.
14504
14505 * s/ms-w32.h (MULTI_KBOARD): Define.
14506
14507 * w32console.c (one_and_only_w32cons): Remove.
14508 (initialize_w32_display): Take terminal argument.
14509
14510 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
14511 initialize_w32_display.
14512 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
14513
14514 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
14515
14516 * keyboard.c (discard_mouse_events): Discard it.
14517 (make_lispy_event): Translate it to a lisp event.
14518 (lispy_wheel_names): Add wheel-left and right events.
14519 (syms_of_keyboard): Enlarge wheel_syms.
14520
14521 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
14522 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
14523
14524 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
14525
14526 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
14527 from WM_MOUSEHWHEEL.
14528 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
14529
14530 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
14531 terminal.
14532
14533 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
14534 keyboard for the terminal.
14535
14536 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
14537
14538 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
14539 (Vresume_tty_hook): Rename from Vresume_tty_functions.
14540 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
14541 and resume-tty-function to resume-tty-hook.
14542 (Fsuspend_tty, Fresume_tty): Use new names.
14543
14544 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
14545
14546 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
14547 if it starts with "n:".
14548
14549 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
14550
14551 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
14552
14553 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
14554
14555 * frame.h:
14556 * frame.c (Qterm_environment_variable): Remove.
14557 (syms_of_frame): Don't init and staticpro it.
14558
14559 * callproc.c (getenv_internal): Remove special case for $TERM.
14560
14561 * callproc.c (Vinitial_environment): New variable.
14562 (set_initial_environment): Initialize it.
14563 (syms_of_callproc): Declare it.
14564 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
14565 TERM under which a process runs is never related to the TERM in which
14566 Emacs is running.
14567
14568 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
14569
14570 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
14571 * s/darwin.h: ... do it here.
14572
14573 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
14574
14575 * lisp.h (set_initial_environment): Rename from set_global_environment.
14576
14577 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
14578 removed by mistake on the multi-tty branch.
14579
14580 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
14581 (Fmodify_frame_parameters): Return a value.
14582
14583 * image.c (png_load): Comment-out var only used in commented-out code.
14584
14585 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
14586 before passing it to mark_object.
14587
14588 * xfaces.c (internal_resolve_face_name): Return a value.
14589 (internal_resolve_face_name, resolve_face_name_error): Comment out.
14590
14591 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
14592 (x_icon): Comment-out var only used in commented-out code.
14593
14594 2007-08-29 Romain Francoise <romain@orebokech.com>
14595
14596 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
14597 QUIT hasn't been provided.
14598
14599 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
14600
14601 * callproc.c (child_setup, getenv_internal): Use the
14602 display-environment-variable and term-environment-variable frame params.
14603 (set_initial_environment): Initialise Vprocess_environment.
14604
14605 * config.in: Disable multi-keyboard support on a mac.
14606
14607 * frame.c (Qterm_environment_variable)
14608 (Qdisplay_environment_variable): New variables.
14609 (syms_of_frame): Intern and staticpro them.
14610 (Fmake_terminal_frame): Disable output method test.
14611
14612 * frame.h: Declare them here.
14613
14614 * macfns.c (x_set_mouse_color): Get rif from the frame.
14615 (x_set_tool_bar_lines): Don't use updating_frame.
14616 (mac_window): Add 2 new parameters for consistency with other systems.
14617 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
14618 frame parameters following what is done in X11 and w32. Don't use
14619 FRAME_MAC_DISPLAY_INFO.
14620 (Fx_open_connection, start_hourglass): Remove window-system check.
14621 (x_create_tip_frame): Get the keyboard from the terminal.
14622
14623 * macmenu.c: Reorder includes.
14624 (Fx_popup_menu): Use terminal specific mouse_position_hook.
14625
14626 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
14627 terminal parameter.
14628 (x_clear_frame): Add a frame parameter.
14629 (note_mouse_movement): Get rif from the frame.
14630 (mac_term_init): Initialize the terminal.
14631 (mac_initialize): Make static and move terminal initialization ...
14632 (mac_create_terminal): ... to this new function.
14633
14634 * macterm.h (struct mac_display_info): Add terminal.
14635 (mac_initialize): Delete declaration.
14636
14637 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
14638
14639 * sysdep.c: Comment out text after #endif.
14640
14641 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
14642 is defined. Better initialize ttys in windows. Use terminal
14643 specific mouse_position_hook.
14644
14645 * termhooks.h (union display_info): Add mac_display_info.
14646
14647 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
14648 Set the default minibuffer frame, window_system and the rest of the
14649 frame parameters following what is done in X11.
14650
14651 * w32term.c (w32_initialize): Make static.
14652
14653 * xselect.c (x_handle_selection_clear): Only access
14654 terminal->kboard when MULTI_KBOARD is defined.
14655
14656 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
14657 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
14658
14659 2007-08-29 Jason Rumney <jasonr@gnu.org>
14660
14661 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
14662 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
14663
14664 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
14665 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
14666
14667 * keyboard.c (restore_kboard_configuration): Only define when
14668 MULTI_KBOARD defined.
14669
14670 * makefile.w32-in: Update dependancies from Makefile.in.
14671 (OBJ1): Add terminal.$(O)
14672
14673 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
14674 Don't define function body.
14675 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
14676
14677 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
14678
14679 * w32.c (request_sigio, unrequest_sigio): Remove.
14680
14681 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
14682 (w32con_clear_frame, w32con_clear_end_of_line)
14683 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
14684 (w32con_delete_glyphs, w32con_set_terminal_window)
14685 (scroll_line, w32_sys_ring_bell): Add frame arg.
14686 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
14687 Add terminal arg.
14688 (PICK_FRAME): Remove.
14689 (w32con_write_glyphs): Use frame specific terminal coding.
14690 (one_and_only_w32cons): New global variable.
14691 (initialize_w32_display): Use it for storing hooks.
14692 (create_w32cons_output): New function.
14693
14694 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
14695 arg a frame.
14696
14697 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
14698 Set window_system.
14699 (x_set_tool_bar_lines): Don't use updating_frame.
14700 (Fx_create_frame): Set terminal and ref count.
14701 (Fx_open_connection): Remove window-system check.
14702
14703 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
14704
14705 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
14706 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
14707 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
14708 Add frame arg.
14709 (x_delete_terminal, w32_create_terminal): New functions.
14710 (w32_term_init): Create a terminal.
14711 (w32_initialize): Move terminal specific initialization to
14712 w32_create_terminal.
14713
14714 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
14715 (w32_clear_rect, w32_clear_area): Use background from frame.
14716 (w32_display_info): Add terminal.
14717 (w32_sys_ring_bell, x_delete_display): Declare here.
14718
14719 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
14720
14721 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
14722
14723 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
14724
14725 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
14726 Fix get_named_tty calls for the controlling tty.
14727
14728 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
14729
14730 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
14731
14732 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
14733
14734 * term.c (tty_insert_glyphs): Add missing first parameter.
14735
14736 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
14737
14738 * buffer.c (Fbuffer_list, Fbury_buffer):
14739 Take frame->buried_buffer_list into account.
14740
14741 * cm.c (current_tty): New variable, for cmputc().
14742 (cmputc): Use it.
14743 (cmcheckmagic): Add tty parameter, look up terminal streams there.
14744 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
14745 (cmgoto): Add tty parameter. Pass it on to calccost().
14746 Use emacs_tputs() instead of tputs().
14747
14748 * cm.h (emacs_tputs): New macro to set current_tty, and then call
14749 tputs().
14750 (current_tty): New variable, for cmputc().
14751 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
14752
14753 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
14754 (internal_condition_case, internal_condition_case_1)
14755 (internal_condition_case_2): Don't abort when x_catching_errors.
14756
14757 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
14758 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
14759 prevent crashes caused by bogus longjmps in read_char.
14760
14761 * keymap.h (Fset_keymap_parent): Add EXFUN.
14762
14763 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
14764 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
14765 Remove redundant definition.
14766
14767 * macfns.c (x_set_mouse_color, x_make_gc):
14768 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
14769
14770 * w32term.c (x_free_frame_resources):
14771 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
14772 (w32_initialize): Use the accessor macros for terminal characteristics.
14773
14774 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
14775 Use the accessor macros for terminal characteristics.
14776 * msdos.c (internal_terminal_init): Use the accessor macros for
14777 terminal characteristics.
14778 (ScreenVisualBell, internal_terminal_init):
14779 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
14780
14781 * termopts.h (no_redraw_on_reenter): Declare.
14782
14783 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
14784 (mark_terminals, mark_ttys): Declare.
14785 (Fgarbage_collect): Call them.
14786 (mark_object): Mark buried_buffer_list.
14787
14788 * prefix-args.c: Include stdlib.h for exit.
14789
14790 * syssignal.h: Add comment.
14791
14792 * indent.c: Include stdio.h.
14793
14794 * window.h (Vinitial_window_system): Declare.
14795 (Vwindow_system): Delete declaration.
14796
14797 * fontset.c (Finternal_char_font): Use FRAME_RIF.
14798
14799 * image.c (lookup_image): Don't initialize `c' until the xasserts
14800 have been run.
14801
14802 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
14803 FRAME_FOREGROUND_PIXEL.
14804
14805 * print.c (print_preprocess): Don't lose print_depth levels while
14806 iterating.
14807
14808 * widget.c (update_from_various_frame_slots):
14809 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
14810
14811 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
14812 frames.
14813 (window_internal_height): Remove bogus make_number call.
14814 (init_window_once): Call make_terminal_frame with two zero parameters.
14815
14816 * fileio.c (Fread_file_name): Update comment.
14817
14818 * callint.c (Fcall_interactively):
14819 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
14820 Make sure it is correctly unwound.
14821
14822 * xsmfns.c (x_session_close): New function.
14823
14824 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
14825 Delete declarations.
14826
14827 * xterm.h: Remove declaration for x_fully_uncatch_errors.
14828 (x_output): Remove background_pixel and foreground_pixel fields.
14829 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
14830 (x_delete_device, x_session_close): Declare.
14831
14832 * lread.c: Include setjmp.h. Update declaration of `read_char'.
14833 (read_filtered_event): Call `read_char' with a local
14834 `wrong_kboard_jmpbuf'.
14835
14836 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
14837 Don't call single_kboard_state. Use FRAME_RIF.
14838
14839 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
14840 systems.
14841
14842 * lisp.h (set_process_environment): Rename to `set_global_environment'.
14843 (Fframe_with_environment, Fset_input_meta_mode)
14844 (Fset_quit_char): EXFUN.
14845 (x_create_device, tty_output, terminal, tty_display_info): Declare.
14846 (init_sys_modes, reset_sys_modes): Update prototypes.
14847 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
14848
14849 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
14850 Vlocal_key_translation_map, and Vkeyboard_translate_table.
14851 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
14852 Delete declarations.
14853 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
14854 (temporarily_switch_to_single_kboard, tty_read_avail_input):
14855 New declarations.
14856
14857 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
14858 already does that during init_display(). Call syms_of_keymap
14859 before syms_of_keyboard. Call `syms_of_terminal'.
14860 Call set_initial_environment, not set_process_environment.
14861 (shut_down_emacs): Call reset_all_sys_modes() instead of
14862 reset_sys_modes().
14863
14864 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
14865 (internal_resolve_face_name, resolve_face_name_error): New functions.
14866 (resolve_face_name): Protect against loops and errors thrown by Fget.
14867 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
14868 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
14869
14870 * scroll.c: Replace CURTTY() with local variables throughout the
14871 file (where applicable).
14872 (calculate_scrolling, calculate_direct_scrolling)
14873 (scrolling_1, scroll_cost): Use the accessor macros for terminal
14874 characteristics.
14875
14876 * keymap.c (Vfunction_key_map): Remove.
14877 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
14878 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
14879 (Vkey_translation_map): Remove.
14880 (syms_of_keymap): Remove DEFVAR for key-translation-map.
14881 (Fdescribe_buffer_bindings)
14882 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
14883 Update for terminal-local key-translation-map.
14884
14885 * Makefile.in (callproc.o): Update dependencies.
14886 (lisp, shortlisp): Add termdev.elc.
14887 (obj): Add terminal.o.
14888 (terminal.o): Add dependencies.
14889 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
14890 (data.o, fns.o): Add termhooks.h dependency.
14891 (SOME_MACHINE_LISP): Add dnd.elc.
14892 (minibuf.o): Fix typo.
14893 Update dependencies.
14894
14895 * data.c (do_symval_forwarding, store_symval_forwarding)
14896 (find_symbol_value): Use the selected frame's keyboard, not
14897 current_kboard.
14898
14899 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
14900 Vwindow_system.
14901
14902 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
14903 Fmenu_bar_open.
14904 (syms_of_xmenu): Update defsubr.
14905 (mouse_position_for_popup, Fx_popup_menu)
14906 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
14907 (set_frame_menubar, free_frame_menubar)
14908 (create_and_show_popup_menu, xmenu_show, )
14909 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
14910 an X frame.
14911
14912 * xselect.c (x_own_selection): Abort if not an X frame.
14913 (some_frame_on_display): Check if it is an X frame.
14914 (x_handle_selection_clear): Deal with MULTI_KBOARD.
14915
14916 * coding.c: Include frame.h and termhooks.h.
14917 (terminal_coding, keyboard_coding): Delete.
14918 (Fset_terminal_coding_system_internal)
14919 (Fset_keyboard_coding_system_internal)
14920 (Fkeyboard_coding_system)
14921 (Fterminal_coding_system): Add a terminal parameter.
14922 Get terminal_coding from the terminal.
14923 (init_coding_once): Don't call setup_coding_system here.
14924
14925 * dispextern.h (set_scroll_region, turn_off_insert)
14926 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
14927 (tty_clear_end_of_line, tty_setup_colors)
14928 (delete_tty, updating_frame)
14929 (produce_special_glyphs, produce_glyphs, write_glyphs)
14930 (insert_glyphs): Remove.
14931 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
14932 (tty_turn_off_highlight, get_tty_size): Add declaration.
14933 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
14934
14935 * frame.h (enum output_method): Add output_initial.
14936 (struct x_output): Delete.
14937 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
14938 Access foreground_pixel and background_pixel directly from the frame.
14939 (tty_display): Delete.
14940 (struct frame): Add buried_buffer_list, foreground_pixel,
14941 background_pixel and terminal. Delete kboard.
14942 (union output_data): Add tty.
14943 (FRAME_KBOARD): Get the kboard from the terminal.
14944 (FRAME_INITIAL_P): New macro.
14945 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
14946 (Qterm_environment_variable, Qdisplay_environment_variable)
14947 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
14948 New declarations.
14949
14950 * termchar.h (tty_output, tty_display_info): New structures.
14951 (tty_list): Declare.
14952 (FRAME_TTY, CURTTY): New macros.
14953 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
14954 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
14955 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
14956 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
14957
14958 * callproc.c: Include frame.h and termhooks.h, for terminal
14959 parameters.
14960 (add_env): New function.
14961 (child_setup): Use it.
14962 (child_setup, getenv_internal): Handle the new Vprocess_environment.
14963 (getenv_internal): Fix get_terminal_param call.
14964 (Fgetenv_internal, egetenv): Update doc.
14965 (syms_of_callproc): Initialize Vprocess_environment to nil.
14966 Register and initialize them. Remove obsolete defvars. Update doc
14967 strings.
14968 (child_setup): Handle Vlocal_environment_variables.
14969 (getenv_internal): Add terminal parameter.
14970 Handle Vlocal_environment_variables.
14971 (Fgetenv_internal): Add terminal parameter.
14972 (child_setup, getenv_internal, Fgetenv_internal): Store the local
14973 environment in a frame (not terminal) parameter. Update doc strings.
14974 (set_initial_environment): Rename from set_global_environment.
14975 Store Emacs environment in initial frame parameter.
14976
14977 * xdisp.c (redisplay_internal): Update references to
14978 `previous_terminal_frame'.
14979 (display_mode_line, Fformat_mode_line): Replace calls to
14980 `push_frame_kboard' with `push_kboard'.
14981 (get_glyph_string_clip_rects): Add extra parentheses and
14982 braces to prevent compiler warnings.
14983 (calc_pixel_width_or_height): Add xassert to check that the
14984 frame is alive. Don't call `lookup_image' on a termcap frame.
14985 (message2_nolog, message3_nolog, redisplay_internal)
14986 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
14987 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
14988 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
14989 (Fx_display_pixel_width, Fx_display_pixel_height)
14990 (Fx_display_planes, Fx_display_color_cells)
14991 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
14992 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
14993 (Fx_display_backing_store, Fx_display_visual_class)
14994 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
14995 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
14996
14997 * xfns.c (x_set_foreground_color x_set_background_color)
14998 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
14999 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
15000 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
15001 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
15002 terminal that is being deleted.
15003 (Fx_create_frame): Use `store_frame_param' to set `window-system'
15004 frame parameter, and make sure it overrides any user-supplied setting.
15005 (Fx_close_connection, Fx_synchronize): Unify argument names with
15006 the rest of the DEFUNs.
15007
15008 * dispnew.c (Fsend_string_to_terminal): Update call to
15009 `get_tty_terminal'.
15010 (Fredraw_frame, Fsend_string_to_terminal)
15011 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
15012 FRAME_TERMCAP_P and FRAME_TTY.
15013 (window_change_signal): Don't believe width/height values that are
15014 impossibly small.
15015 (Vinitial_window_system): Rename from Vwindow_system.
15016 (termscript, Wcm, rif): Delete.
15017
15018 * termhooks.h (struct terminal): New struct containing the
15019 previously global text display hooks and new members NAME,
15020 DELETED and PARAM_ALIST.
15021 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
15022 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
15023 (FRAME_RIF): New macros.
15024 (get_terminal_param, get_device): New declarations.
15025 (termscript): Delete declaration.
15026
15027 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
15028 (XTflash, x_free_frame_resources, x_scroll_bar_create)
15029 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
15030 FRAME_FOREGROUND_PIXEL.
15031 (x_fully_uncatch_errors): Disable definition.
15032 (x_scroll_bar_expose): Fix reference to foreground pixel.
15033 (XTread_socket): Disable loop on all X displays.
15034 (x_delete_terminal): Don't set terminal->deleted and let
15035 delete_terminal delete the frames on the terminal.
15036 (x_delete_display): Doc update to reflect changes in
15037 delete_terminal.
15038 (x_display_info) <terminal>: Move member earlier in the struct.
15039 (deleting_tty): Remove old variable.
15040 (Fsuspend_tty): Call clear_tty_hooks.
15041 (Fresume_tty, init_tty): Call set_tty_hooks.
15042 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
15043 errors on X frames.
15044 (x_catch_errors_unwind): Abort if x_error_message is NULL.
15045 (handle_one_xevent): Initialize `f' to NULL.
15046 (x_delete_terminal, x_create_terminal): New functions.
15047 (XTset_terminal_modes, XTreset_terminal_modes)
15048 (XTread_socket, x_connection_closed, x_term_init)
15049 (x_term_init, x_delete_display): Add terminal parameter.
15050 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
15051 X connections.
15052
15053 * frame.c: Include termchar.h.
15054 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
15055 (Qwindow_system, Qenvironment, Qterm_environment_variable)
15056 (Qdisplay_environment_variable): New vars.
15057 (Fframep): Deal with output_initial.
15058 (Fframe-live-p): Doc fix.
15059 (Fwindow-system): New function.
15060 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
15061 (make_terminal_frame): Don't create frames on a terminal that is
15062 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
15063 (store_frame_param): Check for found_for_frame before calling XFRAME.
15064 (Fmake_terminal_frame): Handle NULL tty names correctly.
15065 (syms_of_frame): Enhance doc string of `default-frame-alist'.
15066 (Fdelete_frame): Remove unused variable `count'. Don't allow other
15067 frames to refer to a deleted frame in their 'environment parameter.
15068 (Fframe_with_environment): New function.
15069 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
15070 (get_future_frame_param): New function.
15071 (Fmake_terminal_frame): Use it.
15072 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
15073
15074 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
15075 * sysdep.c (reset_sys_modes): Update for renames.
15076
15077 * keyboard.c (tty_read_avail_input): New function.
15078 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
15079 (syms_of_keyboard): Defsubr them.
15080 (Fset_input_meta_mode, Fset_quit_char): New functions.
15081 (Fset_input_mode): Split to above functions.
15082 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
15083 parameter. Use it in call to `read_char'.
15084 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
15085 Set wrong_kboard_jmpbuf correctly in recursive calls.
15086 Use current_kboard to access Vkeyboard_translate_table.
15087 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
15088 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
15089 Update longjmp invocations. Remember the original current_kboard,
15090 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
15091 changes it. Comment out unnecessary calls to
15092 `record_single_kboard_state' and `any_kboard_state'.
15093 Update recursive calls.
15094 (wrong_kboard_jmpbuf): Remove global variable.
15095 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
15096 Handle deleted interrupted_kboards correctly; that is a legal
15097 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
15098 and read_char calls. Abort if interrupted_kboard died in read_char.
15099 (any_kboard_state, single_kboard_state)
15100 (push_frame_kboard): Remove function.
15101 (pop_kboard): Switch out of single_kboard mode if the kboard has
15102 been deleted. Remove unused variable. Help debugging by not
15103 changing current_kboard unnecessarily. Set current_kboard to the
15104 kboard of the selected frame when the stored kboard object has
15105 been deleted before pop_kboard.
15106 (temporarily_switch_to_single_kboard): Change first parameter to a
15107 frame pointer. Throw an error when caller wants to change kboards
15108 while in single_kboard mode. Don't push_kboard if we weren't in
15109 single kboard state. Don't pop_kboard if we popped into any
15110 kboard state.
15111 (restore_kboard_configuration): Abort if pop_kboard changed the
15112 kboard in single_kboard mode. Call pop_kboard only after setting
15113 up single_kboard mode.
15114 (Frecursive_edit): Switch to single_kboard mode only in nested
15115 command loops.
15116 (cmd_error, command_loop, command_loop_1, timer_check):
15117 Comment out unnecessary call to `any_kboard_state' and
15118 `record_single_kboard_state'.
15119 (delete_kboard): Exit single_kboard mode if we have just deleted
15120 that kboard. Use FRAME_KBOARD.
15121 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
15122 `fatal_error_signal'.
15123 (record_single_kboard_state): Don't push_kboard if we weren't in
15124 single kboard state. Don't pop_kboard if we popped into any
15125 kboard state.
15126 (push_frame_kboard): Rename to push_kboard.
15127 (kbd_buffer_get_event): Use FRAME_TERMINAL.
15128 (read_avail_input): Read input from all terminals.
15129 (mark_kboards): Also mark Vkeyboard_translate_table.
15130 (kbd_buffer_store_event_hold): Simplify condition.
15131 (read_key_sequence): Reinitialize fkey and keytran at each replay.
15132 (Vkeyboard_translate_table): Move to struct kboard.
15133 (init_kboard): Initialize Vkeyboard_translate_table.
15134 (syms_of_keyboard): Use DEFVAR_KBOARD to define
15135 Vkeyboard_translate_table. Update doc strings. Update docs of
15136 local-function-key-map and function-key-map.
15137
15138 * terminal.c: New file.
15139
15140 * term.c: Include errno.h.
15141 (Vring_bell_function, device_list, initial_device)
15142 (next_device_id, ring_bell, update_begin, update_end)
15143 (set_terminal_window, cursor_to, raw_cursor_to)
15144 (clear_to_end, clear_frame, clear_end_of_line)
15145 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
15146 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
15147 (syms_of_term): Move their initialization to terminal.c.
15148 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
15149 (Ftty_display_color_cells)
15150 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
15151 (clear_tty_hooks, set_tty_hooks)
15152 (init_tty, maybe_fatal): New functions.
15153 (Ftty_type): Return nil if terminal is not on a tty instead of
15154 throwing an error. Doc update.
15155 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
15156 Doc update. Initialize new subrs and variables.
15157 (delete_tty): Use terminal->deleted.
15158 (tty_set_terminal_modes): Rename from set_terminal_modes.
15159 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
15160 (set_scroll_region): Rename to `tty_set_scroll_region'.
15161 (turn_on_insert): Rename to `tty_turn_on_insert'.
15162 (turn_off_insert): Rename to `tty_turn_off_insert'.
15163 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
15164 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
15165 (toggle_highligh): Rename to `tty_toggle_highlight'.
15166 (background_highlight): Rename to `tty_background_highlight'.
15167 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
15168 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
15169 (tty_set_scroll_region, tty_background_highlight)
15170 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
15171 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
15172 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
15173 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
15174 Add static modifier.
15175 (tty_reset_terminal_modes, tty_set_terminal_window)
15176 (tty_set_scroll_region, tty_background_highlight)
15177 (tty_highlight_if_desired, tty_cursor_to)
15178 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
15179 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
15180 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
15181 renames.
15182
15183 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
15184
15185 * keyboard.c: Qrtl is new.
15186 (parse_tool_bar_item): Handle :rtl keyword.
15187 (syms_of_keyboard): Intern :rtl keyword.
15188
15189 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
15190
15191 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
15192 so no Lisp code is executed.
15193 (file_for_image, find_rtl_image): New functions.
15194 (xg_get_image_for_pixmap): Use file_for_image.
15195 (update_frame_tool_bar): If direction is RTL, use RTL image if
15196 defined. Use Gtk stock images if defined.
15197
15198 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15199
15200 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
15201 for nonexistent or zero-width glyph in composition glyph.
15202
15203 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
15204
15205 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
15206
15207 * xdisp.c (Finvisible_p): New function.
15208 (syms_of_xdisp): defsubr it.
15209
15210 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
15211
15212 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
15213 Doc fixes.
15214
15215 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15216
15217 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
15218
15219 2007-08-24 Martin Rudalics <rudalics@gmx.at>
15220
15221 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
15222 whether decoding has modified buffer contents.
15223
15224 2007-08-24 Jason Rumney <jasonr@gnu.org>
15225
15226 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
15227 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
15228 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
15229 (init_svg_functions) [HAVE_NTGUI]: New function.
15230 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
15231 (svg_load_image): Use them.
15232 (svg_load_image) [HAVE_NTGUI]: Implement background.
15233
15234 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15235
15236 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
15237 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
15238 (LIBX): Remove @RSVG_LIBS@.
15239 (LIBES): Add $(RSVG_LIBS).
15240
15241 * image.c (svg_load_image): Blend with specified background if exists.
15242 Use IMAGE_BACKGROUND. Add Mac OS Support.
15243
15244 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
15245 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
15246 Remove macros.
15247 [MAC_OSX] (socket_callback): Do nothing.
15248 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
15249 ReceiveNextEvent.
15250 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
15251 socket_callback.
15252 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
15253
15254 2007-08-22 Glenn Morris <rgm@gnu.org>
15255
15256 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
15257
15258 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
15259
15260 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
15261
15262 * image.c: Add support for SVG images. Some additional comments
15263 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
15264 (svg_image_p): New function to test for SVG image.
15265 (svg_load): New function to load SVG image.
15266 (svg_load_image): New function, helper for svg_load.
15267 (Qsvg): New Lisp_object.
15268 (svg_keyword_index): New enum.
15269 (svg_format): New static `image_keyword' struct.
15270 (svg_type): New static `image_type' struct.
15271 (librsvg/rsvg.h): Include it.
15272
15273 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
15274
15275 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
15276
15277 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
15278
15279 * lread.c (Qold_style_backquotes): New var.
15280 (syms_of_lread): Init and staticpro it.
15281 (load_warn_old_style_backquotes): New fun.
15282 (Fload): Use them to warn about old style backquotes.
15283 (end_of_file_error, Fload): Remove unused vars.
15284
15285 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
15286
15287 * lread.c (Vold_style_backquotes): New var.
15288 (syms_of_lread): Init and export it to Elisp.
15289 (read1): Set it when we find an old-style (back)quote.
15290
15291 2007-08-22 Jason Rumney <jasonr@gnu.org>
15292
15293 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
15294
15295 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
15296
15297 * puresize.h (BASE_PURESIZE): Increase to 1140000.
15298
15299 2007-08-19 Richard Stallman <rms@gnu.org>
15300
15301 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
15302
15303 2007-08-19 Andreas Schwab <schwab@suse.de>
15304
15305 * alloc.c (pure): Round PURESIZE up.
15306
15307 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
15308
15309 * xterm.c (handle_one_xevent): Remove check that mouse click is in
15310 active frame.
15311
15312 2007-08-16 Richard Stallman <rms@gnu.org>
15313
15314 * eval.c (Fcommandp): Add parens to clarify.
15315
15316 * minibuf.c (Fall_completions): Use enum for type of table.
15317
15318 * emacs.c (USAGE2): Improve text.
15319
15320 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
15321
15322 * term.c (tty_default_color_capabilities): Declare static
15323 variables in file scope, to avoid HPUX compiler problem.
15324
15325 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
15326
15327 * gtkutil.c (update_frame_tool_bar): Use -1 as index
15328 to gtk_toolbar_insert.
15329
15330 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
15331
15332 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
15333
15334 * insdel.c (reset_var_on_error): New fun.
15335 (signal_before_change, signal_after_change):
15336 Use it to reset (after|before)-change-functions to nil in case of error.
15337 Bind inhibit-modification-hooks to t.
15338 Don't bind (after|before)-change-functions to nil while they run.
15339
15340 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15341
15342 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
15343 filling pixmap with stippled background.
15344
15345 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15346
15347 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
15348 Don't use invisible frame as parent window for repositioning.
15349
15350 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
15351
15352 * print.c (new_backquote_output): Rename from old_backquote_output.
15353 (print): Inverse its logic (according to its name) so as to match the
15354 behavior of new_backquote_flag in lread.c.
15355
15356 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15357
15358 * gmalloc.c (posix_memalign): New function.
15359
15360 * macterm.c (frame_highlight, frame_unhighlight): Don't call
15361 ActivateControl/DeactivateControl here.
15362 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
15363 frame-notice-user-settings is non-nil.
15364 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
15365 for kEventParamFMFontStyle.
15366 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
15367 mac_pass_command_to_system and mac_pass_control_to_system here.
15368 (XTread_socket): Call ActivateControl/DeactivateControl here.
15369 (XTread_socket) [TARGET_API_MAC_CARBON]:
15370 Check mac_pass_command_to_system and mac_pass_control_to_system here.
15371 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
15372 for window repositioning.
15373
15374 2007-08-08 Glenn Morris <rgm@gnu.org>
15375
15376 * Replace `iff' in doc-strings and comments.
15377
15378 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
15379
15380 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
15381
15382 2007-08-07 Martin Rudalics <rudalics@gmx.at>
15383
15384 * fileio.c (Finsert_file_contents): Run format-decode and
15385 after_insert_file_functions on entire buffer when REPLACE is
15386 non-nil and inhibit modification_hooks and point_motion_hooks.
15387 For consistency, run after_insert_file_functions iff something
15388 got inserted. Move signal_after_change and update_compositions
15389 after code running after_insert_file_functions. Make sure that
15390 undo_list doesn't record intermediate steps of the decoding process.
15391
15392 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15393
15394 * emacs.c (main)
15395 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
15396 Call malloc_enable_thread on interactive startup.
15397
15398 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
15399 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
15400 [USE_PTHREAD]: Conditionalize with it.
15401 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
15402 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
15403 New functions.
15404
15405 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
15406
15407 * xdisp.c (redisplay_window): When restoring original buffer
15408 position, make sure it is still valid.
15409
15410 * image.c (png_load): Ignore png-supplied background color.
15411
15412 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15413
15414 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
15415 Use kCFAbsoluteTimeIntervalSince1970.
15416
15417 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
15418 New variable.
15419 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
15420 event loop should be quit.
15421 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
15422 Quit dialog event loop if quit_dialog_event_loop is set.
15423
15424 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
15425 (Selection): New typedef. Use instead of ScrapRef.
15426 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
15427 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
15428 (mac_clear_selection): Rename from clear_scrap.
15429 (get_flavor_type_from_symbol): New argument SEL and subsume function of
15430 scrap_has_target_type. All uses changed.
15431 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
15432 (mac_selection_has_target_p): New functions.
15433 (mac_put_selection_value): Rename from put_scrap_string.
15434 (mac_get_selection_value): Rename from get_scrap_string.
15435 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
15436 (put_scrap_private_timestamp, scrap_has_target_type)
15437 (get_scrap_private_timestamp): Remove functions.
15438 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
15439 (x_own_selection, x_get_local_selection):
15440 Use mac_valid_selection_value_p.
15441 (x_own_selection): Don't use put_scrap_private_timestamp.
15442 Record OWNERSHIP-INFO into Vselection_alist instead.
15443 (x_get_local_selection): Don't check type if request is local.
15444 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
15445 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
15446
15447 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
15448
15449 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
15450 add comment explaining why.
15451
15452 2007-08-03 Richard Stallman <rms@gnu.org>
15453
15454 * fileio.c (Fvisited_file_modtime): Use make_time.
15455
15456 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
15457
15458 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
15459 build.
15460
15461 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
15462
15463 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
15464
15465 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
15466
15467 * puresize.h (BASE_PURESIZE): Increase to 1130000.
15468
15469 2007-07-30 Richard Stallman <rms@gnu.org>
15470
15471 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
15472
15473 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
15474
15475 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
15476
15477 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
15478
15479 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
15480 remote default-directory.
15481
15482 * buffer.c (mode-line-format): Update doc string.
15483
15484 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15485
15486 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
15487 scroll bar gap.
15488 (x_scroll_bar_create): Set bar->fringe_extended_p.
15489 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
15490 on frame edge. Check fringe background extension. Don't clear
15491 extended fringe background area.
15492
15493 * w32term.h (struct scroll_bar): New member fringe_extended_p.
15494 (w32_fill_area): Enclose multiple statements with do ... while (0).
15495
15496 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
15497 Extend fringe background to scroll bar gap.
15498 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
15499 Set bar->fringe_extended_p.
15500 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
15501 Put leftmost/rightmost scroll bars on frame edge. Check fringe
15502 background extension. Don't clear extended fringe background area.
15503
15504 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
15505 New member fringe_extended_p.
15506
15507 2007-07-25 Glenn Morris <rgm@gnu.org>
15508
15509 * Relicense all FSF files to GPLv3 or later.
15510
15511 * COPYING: Switch to GPLv3.
15512
15513 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
15514
15515 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
15516
15517 * data.c (Finteractive_form): Check for the presence of an
15518 `interactive-form' symbol property more thoroughly.
15519
15520 * data.c (Finteractive_form): Use an `interactive-form' property if
15521 present, analogous to the function-documentation property.
15522
15523 2007-07-24 Jason Rumney <jasonr@gnu.org>
15524
15525 * w32fns.c (x_real_positions): Get real position from OS instead of
15526 calculating it.
15527
15528 2007-07-23 Jason Rumney <jasonr@gnu.org>
15529
15530 * filelock.c (current_lock_owner): Allow for @ sign in username.
15531
15532 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
15533
15534 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
15535 remote default-directory.
15536
15537 * buffer.c (mode-line-format): Describe above case in doc string.
15538
15539 2007-07-20 Eli Zaretskii <eliz@gnu.org>
15540
15541 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
15542 Define if not defined.
15543
15544 2007-07-18 Jason Rumney <jasonr@gnu.org>
15545
15546 * w32proc.c (w32_executable_type): Handle 64 bit executables.
15547
15548 2007-07-18 Richard Stallman <rms@gnu.org>
15549
15550 * data.c (Fsetq_default): Doc fix.
15551
15552 * eval.c (Fsetq): Doc fix.
15553
15554 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
15555
15556 * coding.c (Ffind_operation_coding_system):
15557 * eval.c (For, Fand): Doc fixes.
15558 Reported by Johan Bockgård.
15559
15560 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
15561
15562 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
15563
15564 * xterm.h: Declare x_ewmh_activate_frame.
15565
15566 * xterm.c (x_ewmh_activate_frame): New function.
15567 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
15568
15569 2007-07-17 Martin Rudalics <rudalics@gmx.at>
15570
15571 * window.c (Fdisplay_buffer): If largest or LRU window is the
15572 only window, split it even if it is not eligible for splitting.
15573 This restores the original behavior broken by the 2007-07-15
15574 change.
15575
15576 2007-07-17 Glenn Morris <rgm@gnu.org>
15577
15578 * abbrev.c (abbrev_check_chars): New function.
15579 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
15580 Call abbrev_check_chars to check abbrev characters are word
15581 constituents. Doc fix.
15582
15583 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
15584
15585 * process.c (Fstart_process, Fmake_network_process)
15586 (read_process_output): Fix up last changes.
15587
15588 2007-07-16 Eli Zaretskii <eliz@gnu.org>
15589
15590 * makefile.w32-in (clean): Don't delete *~.
15591
15592 2007-07-16 Andreas Schwab <schwab@suse.de>
15593
15594 * window.c (Fdisplay_buffer): Use NILP.
15595 (Fset_window_scroll_bars): Likewise.
15596
15597 2007-07-15 Martin Rudalics <rudalics@gmx.at>
15598
15599 * window.c (window_min_size_2): New function.
15600 (window_min_size_1, size_window, Fdisplay_buffer)
15601 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
15602 windows without mode- or header-lines when window-min-height is
15603 too small.
15604 (size_window): Reset nodelete_p after testing it, following an
15605 earlier note by Kim F. Storm.
15606 (display_buffer): Do not set split_height_threshold to twice the
15607 value of window_min_height to avoid changing the value of a
15608 customizable variable. Rather explicitly check whether the
15609 height of the window that shall be splitted is at least as large
15610 as split_height_threshold.
15611 (Fwindow_full_width_p): New defun.
15612 (syms_of_window): Defsubr it.
15613
15614 * window.h: Add EXFUN for Fwindow_full_width_p.
15615
15616 2007-07-14 Jason Rumney <jasonr@gnu.org>
15617
15618 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
15619
15620 2007-07-14 Richard Stallman <rms@gnu.org>
15621
15622 * eval.c (maybe_call_debugger): New function.
15623 (find_handler_clause): Use maybe_call_debugger.
15624 Call it when the handler says `debug'.
15625 Eliminate DEBUGGER_VALUE_PTR.
15626 (Fsignal): Eliminate debugger_value.
15627 (Qdebug): New variable.
15628 (syms_of_eval): Initialize it.
15629
15630 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
15631
15632 * eval.c (Fprogn):
15633 * keyboard.c (Ftrack_mouse):
15634 * print.c (Fwith_output_to_temp_buffer):
15635 * window.c (Fsave_window_excursion): Doc fix.
15636
15637 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
15638
15639 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
15640
15641 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
15642
15643 * process.h (struct Lisp_Process): Turn slots infd, outfd,
15644 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
15645 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
15646 read_output_delay, and read_output_skip from Lisp_Objects to ints.
15647 Remove unused encoding_carryover.
15648 * process.c: Adjust all functions accordingly.
15649
15650 2007-07-12 Richard Stallman <rms@gnu.org>
15651
15652 * term.c: Include unistd.h only if HAVE_UNISTD_H.
15653
15654 2007-07-11 Jason Rumney <jasonr@gnu.org>
15655
15656 * makefile.w32-in (LIBS): Include OLE32.
15657
15658 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
15659 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
15660
15661 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
15662
15663 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
15664 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
15665 from a Lisp_Object into a bare pointer.
15666 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
15667 Adjust the code correspondingly.
15668
15669 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
15670
15671 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
15672 (term_show_mouse_face): Remove unused var `j'.
15673 (handle_one_term_event): Remove unused vars `i' and `j'.
15674 Don't cast return value of ttyname since it's not necessary.
15675
15676 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
15677
15678 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
15679 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
15680
15681 * fns.c (map_char_table): Use an array of int for `indices' rather than
15682 an array of Lisp_Objects (which are only ever integers anyway).
15683 (Fmap_char_table): Update caller.
15684 * lisp.h: Update prototype.
15685 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
15686 * fontset.c (Ffontset_info):
15687 * casetab.c (set_case_table): Update callers.
15688
15689 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
15690
15691 * keymap.c (struct accessible_keymaps_data)
15692 (struct where_is_internal_data): New structures.
15693 (accessible_keymaps_1, where_is_internal_1): Use them to change
15694 interface to adhere to the one used by map_keymap.
15695 (Faccessible_keymaps, where_is_internal): Use map_keymap.
15696 (accessible_keymaps_char_table, where_is_internal_2): Remove.
15697
15698 * keymap.h (map_keymap_function_t): More informative prototype.
15699
15700 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
15701
15702 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
15703 (looking_at_1): Don't change search_regs and last_thing_searched
15704 if `inhibit-changing-match-data' is non-nil.
15705 (string_match_1, search_buffer, set_search_regs): Likewise.
15706 (syms_of_search): Add Lisp level definition for
15707 `inhibit-changing-match-data' and set it to nil.
15708 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
15709 start and end of the match, instead of using values in search_regs.
15710
15711 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
15712
15713 * minibuf.c (Fcompleting_read): New value `confirm-only'
15714 for `require-match'.
15715
15716 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
15717
15718 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
15719 part of the 2007-06-27 change to syms_of_fileio.
15720
15721 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15722
15723 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
15724 Check WINDOWP before using XWINDOW. Consolidate return statements.
15725
15726 2007-06-27 Richard Stallman <rms@gnu.org>
15727
15728 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
15729
15730 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
15731
15732 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
15733
15734 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15735
15736 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
15737 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
15738 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
15739 (_free_internal, memalign): Use them.
15740 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
15741 Initialize to PTHREAD_MUTEX_INITIALIZER.
15742 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
15743 (morecore_nolock): Rename from morecore. All uses changed.
15744 Use only nolock versions of internal allocation functions.
15745 (_malloc_internal_nolock, _realloc_internal_nolock)
15746 (_free_internal_nolock): New functions created from
15747 _malloc_internal, _realloc_internal, and _free_internal.
15748 (_malloc_internal, _realloc_internal, _free_internal): Use them.
15749 Copy hook value to automatic variable before its use.
15750 (memalign): Copy hook value to automatic variable before its use.
15751
15752 2007-06-26 Kenichi Handa <handa@m17n.org>
15753
15754 * coding.c (Ffind_operation_coding_system): Docstring improved.
15755 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
15756
15757 2007-06-25 David Kastrup <dak@gnu.org>
15758
15759 * keymap.c (Fcurrent_active_maps): Add `position' argument.
15760 (Fwhere_is_internal): Adjust call to `current-active-maps' to
15761 cater for additional parameter.
15762
15763 * keymap.h: Adjust number of parameters to `current-active-maps'.
15764
15765 * doc.c (Fsubstitute_command_keys): Adjust call of
15766 `current-active-maps'.
15767
15768 2007-06-25 David Kastrup <dak@gnu.org>
15769
15770 * callint.c (Fcall_interactively): Make the parsing of interactive
15771 specs somewhat more readable.
15772
15773 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15774
15775 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
15776 to scroll bar gap also when bitmap fills fringe. Draw only foreground
15777 if extended background has already been filled.
15778
15779 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15780
15781 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
15782 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
15783
15784 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
15785 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
15786 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
15787 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
15788 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
15789 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
15790 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
15791 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
15792 Run timers during dialog popup.
15793 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
15794
15795 2007-06-21 Jason Rumney <jasonr@gnu.org>
15796
15797 * image.c (convert_mono_to_color_image): Swap fore and background.
15798
15799 2007-06-20 Jason Rumney <jasonr@gnu.org>
15800
15801 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
15802 (w32_free_bdf_font): Unmap memory not handle.
15803
15804 2007-06-20 Sam Steingold <sds@gnu.org>
15805
15806 * gmalloc.c (__morecore): Fix the declaration to comply with the
15807 definition.
15808
15809 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
15810
15811 * w32term.c (w32_delete_display): Remove leftover declaration.
15812 (w32_define_cursor, w32_initialize): Make static.
15813
15814 * w32.c (_wsa_errlist): Fix typo in error message.
15815 (init_environment): Ignore any environment variable from the
15816 registry having a null value.
15817
15818 2007-06-20 Glenn Morris <rgm@gnu.org>
15819
15820 * Makefile.in (LIBGIF): Default to -lgif.
15821
15822 2007-06-17 Jason Rumney <jasonr@gnu.org>
15823
15824 * w32menu.c (add_menu_item): Don't use multibyte string functions on
15825 unicode strings.
15826
15827 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
15828
15829 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
15830 Fix typo in docstring.
15831
15832 2007-06-16 Eli Zaretskii <eliz@gnu.org>
15833
15834 * w32menu.c (add_menu_item): Escape `&' characters in menu items
15835 and their keybindings.
15836
15837 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
15838
15839 * composite.c (update_compositions): Fix last fix.
15840
15841 2007-06-14 Jason Rumney <jasonr@gnu.org>
15842
15843 * w32.c (get_process_times_fn): New function pointer.
15844 (globals_of_w32): Intialize it if present in kernel32.dll.
15845 (w32_get_internal_run_time): New function.
15846
15847 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
15848
15849 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
15850
15851 * composite.c (update_compositions): Check the validness of
15852 compositions.
15853
15854 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15855
15856 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
15857 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
15858
15859 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
15860 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
15861
15862 * macgui.h (USE_MAC_TOOLBAR): New define.
15863
15864 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
15865 Return immediately unless popup is activated.
15866
15867 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
15868 background to scroll bar gap.
15869 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
15870 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
15871 scroll bars on frame edge. Check fringe background extension.
15872 Don't clear extended fringe background area.
15873 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
15874 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
15875 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
15876 [USE_MAC_TOOLBAR]: New macros.
15877 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
15878 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
15879 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
15880 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
15881 [USE_MAC_TOOLBAR]: New functions.
15882 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
15883 manually if previous repositioning has failed.
15884 (mac_handle_keyboard_event): Use precomputed event kind.
15885 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
15886 as tool bar item click. Handle mouse movement over tool bar items.
15887
15888 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
15889 toolbar_win_gravity.
15890 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
15891 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
15892 Add externs.
15893
15894 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
15895 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
15896
15897 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
15898
15899 * image.c (search_image_cache): Remove unused variable.
15900
15901 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
15902
15903 * xfns.c, xmenu.c: Link to xaw3d if available.
15904
15905 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15906
15907 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
15908 frame_foreground and frame_background.
15909
15910 * image.c (lookup_image): Save frame foreground and background colors.
15911 (search_image_cache): Check if saved and current frame colors match.
15912
15913 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
15914
15915 * regex.c (regex_compile): Remove the `regnum' counter.
15916 Use bufp->re_nsub instead. Add support for \(?N:RE\).
15917
15918 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
15919
15920 * term.c: Include intervals.h to declare Fget_text_property.
15921
15922 2007-06-10 Jason Rumney <jasonr@gnu.org>
15923
15924 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
15925
15926 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
15927
15928 * callint.c (Fcall_interactively):
15929 * editfns.c (Fdelete_and_extract_region):
15930 * fileio.c (Fread_file_name):
15931 * fns.c (Fmapconcat):
15932 * keyboard.c (cmd_error_internal):
15933 * keymap.c (Fkey_description):
15934 * lread.c (openp):
15935 * minibuf.c (read_minibuf):
15936 * search.c (wordify):
15937 * sunfns.c (sel_read):
15938 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
15939 * xfns.c (x_default_scroll_bar_color_parameter):
15940 * xmenu.c (menu_help_callback):
15941 * xselect.c (Fx_get_atom_name):
15942 * xterm.c (x_term_init): Use empty_unibyte_string.
15943
15944 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
15945
15946 * alloc.c (init_strings): Initialize canonical empty strings.
15947 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
15948 canonical empty string when the requested size is 0.
15949
15950 * emacs.c (empty_unibyte_string): Rename from empty_string.
15951 (empty_multibyte_string): New canonical empty string.
15952 (syms_of_emacs): Don't initialize empty_string.
15953
15954 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
15955 string, if appropriate.
15956 (empty_unibyte_string, empty_multibyte_string): New externs.
15957 (empty_string): Remove extern.
15958
15959 * lread.c (syms_of_lread): Use empty_unibyte_string.
15960
15961 2007-06-07 Jason Rumney <jasonr@gnu.org>
15962
15963 * s/ms-w32.h: Don't define HAVE_TZNAME.
15964
15965 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
15966
15967 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15968
15969 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
15970
15971 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
15972 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
15973
15974 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
15975 Don't call next handler.
15976 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
15977 Remove argument. Install handler to application.
15978 (set_frame_menubar): Don't change deep_p.
15979 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
15980 FRAME_OUTER_TO_INNER_DIFF_Y.
15981 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
15982 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
15983 [HAVE_DIALOGS]: New macros.
15984 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
15985 Use them.
15986 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
15987
15988 * macselect.c [MAC_OSX] (install_service_handler): Rename from
15989 init_service_handler. All callers changed. Return OSStatus value.
15990
15991 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
15992 All callers changed so as not to call SetPortWindowPort.
15993 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
15994 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
15995 mac_draw_string_common.
15996 (mac_draw_image_string_qd): Likewise.
15997 (mac_draw_string_common): Use them. Add INLINE.
15998 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
15999 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
16000 GetGlobalMouse.
16001 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
16002 and FRAME_OUTER_TO_INNER_DIFF_Y.
16003 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
16004 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
16005 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
16006 repositioning window to mac_handle_window_event.
16007 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
16008 saving window location to mac_handle_window_event
16009 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
16010 (install_menu_target_item_handler): Remove argument in extern.
16011 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
16012 Also accept command events.
16013 (do_keystroke): New function created from XTread_socket.
16014 (init_command_handler): Remove functions.
16015 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
16016 and save window location by kEventWindowShowing and kEventWindowHiding
16017 handlers here. Don't call next handler for window state change and
16018 focus events.
16019 (mac_handle_application_event, mac_handle_keyboard_event)
16020 [TARGET_API_MAC_CARBON]: New functions.
16021 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
16022 kEventWindowShowing and kEventWindowHiding events. Move installation
16023 of mouse, font, text input and menu target item handlers to
16024 install_application_handler.
16025 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
16026 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
16027 New function.
16028 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
16029 Register it.
16030 (XTread_socket) [TARGET_API_MAC_CARBON]:
16031 Consolidate SendEventToEventTarget calls.
16032 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
16033 Move application activation handler to mac_handle_application_event.
16034 Move keyboard handler to mac_handle_keyboard_event.
16035 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
16036 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
16037 init_command_handler. Call install_application_handler.
16038
16039 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
16040 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
16041
16042 2007-06-07 Glenn Morris <rgm@gnu.org>
16043
16044 * emacs.c (main): Use `emacs-copyright' in --version output.
16045
16046 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
16047
16048 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
16049
16050 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16051
16052 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
16053
16054 * macgui.h: Replace WindowPtr with WindowRef.
16055
16056 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
16057 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
16058 Replace ControlHandle with ControlRef.
16059 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
16060
16061 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
16062 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
16063 Replace ControlHandle with ControlRef.
16064 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
16065 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
16066
16067 * macterm.h (struct scroll_bar): Rename member control_handle_low
16068 and control_handle_high to control_ref_low and control_ref_high.
16069 All uses changed.
16070 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
16071 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
16072 respectively. All uses changed.
16073 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
16074 (install_window_handler, remove_window_handler): Replace WindowPtr
16075 with WindowRef in externs.
16076
16077 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
16078
16079 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
16080
16081 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
16082
16083 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
16084
16085 * frame.c (Fmouse_position, Fmouse_pixel_position):
16086 Condition on HAVE_GPM too.
16087
16088 * term.c (term_mouse_highlight): Remove unused variables.
16089 (Fterm_open_connection): Set gpm_zerobased to 1.
16090 (term_mouse_movement, term_mouse_click, handle_one_term_event):
16091 Use zero based co-ordinates.
16092 (handle_one_term_event): Report a drag as mouse movement too.
16093
16094 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
16095
16096 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
16097
16098 * image.c (search_image_cache): New function. Require background
16099 color match if background color is unspecified in the image spec.
16100 (uncache_image, lookup_image): Use it.
16101
16102 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
16103
16104 * window.c (Fshrink_window): Reflow docstring.
16105
16106 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
16107
16108 * Version 22.1 released.
16109
16110 2007-06-01 Richard Stallman <rms@gnu.org>
16111
16112 * xfns.c (x_encode_text): Add GCPRO.
16113
16114 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16115
16116 * xfns.c (x_set_name_internal): Save encoded name before
16117 x_encode_text in case string data is relocated.
16118
16119 2007-05-31 Richard Stallman <rms@gnu.org>
16120
16121 * buffer.c (syms_of_buffer): Doc fix.
16122
16123 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
16124
16125 * sysdep.c (init_sys_modes): Add rather than replace with
16126 O_NONBLOCK.
16127
16128 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
16129 term_mouse_moveto.
16130
16131 * termhooks.h (term_mouse_moveto): New extern.
16132
16133 * term.c (mouse_face_window): Rename...
16134 (Qmouse_face_window): ...to this.
16135 (term_show_mouse_face, term_clear_mouse_face)
16136 (term_mouse_highlight): Use Qmouse_face_window.
16137 (term_mouse_moveto): New function.
16138 (term_mouse_position): Make it work.
16139 (syms_of_term): Uncomment assignment to mouse_position_hook.
16140 Staticpro Qmouse_face_window.
16141
16142 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16143
16144 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
16145 around current_column call.
16146
16147 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
16148
16149 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
16150 * xdisp.c (next_element_from_buffer):
16151 * window.c (delete_window):
16152 * term.c (term_mouse_highlight):
16153 * msdos.c (getdefdir):
16154 * macterm.c (mac_create_bitmap_from_bitmap_data)
16155 (init_font_name_table):
16156 * fns.c (Fsxhash):
16157 * data.c (Fmake_local_variable):
16158 * ccl.c (ccl_driver): Likewise.
16159
16160 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16161
16162 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
16163 Call mac_wakeup_from_rne on window size change.
16164
16165 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
16166
16167 * image.c (uncache_image): Fix typo.
16168
16169 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
16170
16171 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
16172
16173 2007-05-22 Richard Stallman <rms@gnu.org>
16174
16175 * xterm.c (x_connection_closed): Remove NO_RETURN.
16176
16177 2007-05-22 Martin Rudalics <rudalics@gmx.at>
16178
16179 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
16180
16181 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
16182
16183 * image.c (uncache_image): New function.
16184 (Fimage_refresh): New function.
16185
16186 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
16187
16188 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
16189
16190 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
16191
16192 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
16193 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
16194
16195 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
16196
16197 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
16198 conditional on [HAVE_GPM_H].
16199
16200 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
16201
16202 * syntax.c (skip_chars): Update syntax-table only after we checked that
16203 the new location is valid.
16204
16205 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16206
16207 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
16208 mac_get_window_bounds.
16209
16210 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
16211
16212 * Makefile.in (LIBGPM): Allow it to be set from configure.
16213 If set then link Emacs with it.
16214
16215 * config.in: Regenerate.
16216
16217 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
16218 New externs.
16219
16220 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
16221 Include gpm.h.
16222 (handle_one_term_event, term_gpm): New externs.
16223
16224 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
16225 and allow it to be interrupted by SIGIO.
16226
16227 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
16228 (wait_reading_process_output): Wait on gpm_fd too.
16229 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
16230 (add_gpm_wait_descriptor_called_flag): New variable.
16231 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
16232
16233 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
16234 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
16235 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
16236 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
16237 (make_lispy_event): Add case GPM_CLICK_EVENT.
16238 (read_avail_input): Handle mouse input.
16239
16240 * term.c (write_glyphs_with_face): New function.
16241 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
16242 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
16243 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
16244 (mouse_face_face_id, term_gpm, pos_x, pos_y)
16245 (last_mouse_x, last_mouse_y): New variables.
16246 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
16247 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
16248 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
16249 (Fterm_close_connection): New functions.
16250 (term_init): Initialise mouse_face_window.
16251
16252 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
16253
16254 * xdisp.c (redisplay_window): If first window line is a
16255 continuation line, recompute the new window start instead of
16256 recentering.
16257
16258 2007-05-18 Glenn Morris <rgm@gnu.org>
16259
16260 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
16261 Suggested by Alfred M. Szmidt <ams@gnu.org>.
16262
16263 2007-05-17 Glenn Morris <rgm@gnu.org>
16264
16265 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
16266
16267 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16268
16269 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
16270 dead key repeat and up events.
16271
16272 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
16273
16274 * image.c (pbm_load): Check image size for monochrome pbm.
16275
16276 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
16277
16278 * xterm.c (XTread_socket): Revert last change.
16279
16280 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
16281
16282 * image.c (pbm_load): Correctly check image size for greyscale pbm.
16283
16284 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
16285
16286 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
16287
16288 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
16289 mixup (YAILOM).
16290
16291 2007-05-07 Andreas Schwab <schwab@suse.de>
16292
16293 * keymap.c (Flookup_key): Fix typo in last change.
16294
16295 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
16296
16297 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
16298 mapping for unibyte strings.
16299
16300 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16301
16302 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
16303 (Fx_popup_dialog) [MAC_OSX]: Likewise.
16304
16305 2007-04-29 Richard Stallman <rms@gnu.org>
16306
16307 * insdel.c (replace_range): For undo, record insertion first.
16308
16309 2007-04-29 Andreas Schwab <schwab@suse.de>
16310
16311 * lisp.h (VECSIZE): Use OFFSETOF.
16312
16313 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16314
16315 * xdisp.c (try_window_reusing_current_matrix): Fix number of
16316 disabled lines.
16317
16318 2007-04-28 Richard Stallman <rms@gnu.org>
16319
16320 * lread.c (read_escape): In a string, \s is always space.
16321
16322 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
16323
16324 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
16325
16326 * gtkutil.c (xg_update_menubar, create_menus): Create empty
16327 submenu for menu bar items.
16328
16329 See ChangeLog.10 for earlier changes.
16330
16331 ;; Local Variables:
16332 ;; coding: utf-8
16333 ;; add-log-time-zone-rule: t
16334 ;; bug-reference-url-format: "http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=%s"
16335 ;; End:
16336
16337 Copyright (C) 2007, 2008 Free Software Foundation, Inc.
16338
16339 This file is part of GNU Emacs.
16340
16341 GNU Emacs is free software: you can redistribute it and/or modify
16342 it under the terms of the GNU General Public License as published by
16343 the Free Software Foundation, either version 3 of the License, or
16344 (at your option) any later version.
16345
16346 GNU Emacs is distributed in the hope that it will be useful,
16347 but WITHOUT ANY WARRANTY; without even the implied warranty of
16348 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16349 GNU General Public License for more details.
16350
16351 You should have received a copy of the GNU General Public License
16352 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
16353
16354 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40