1 2010-03-20 Dan Nicolaescu <dann@ics.uci.edu>
3 Remove obsolete uses of HAVE_SHM.
4 * emacs.c (standard_args):
6 (syms_of_emacs): Remove code depending on HAVE_SHM.
8 * alloc.c: Remove HAVE_SHM dependent definition.
10 * Makefile.in (RUN_TEMACS): Do not depend on HAVE_SHM.
12 2010-03-18 Glenn Morris <rgm@gnu.org>
14 * emacs.c (USAGE4): Hard-code bug address.
15 (REPORT_EMACS_BUG_ADDRESS, REPORT_EMACS_BUG_PRETEST_ADDRESS): Remove.
16 (bug_reporting_address): Remove.
17 (main): Don't call bug_reporting_address.
19 * Makefile.in (XFT_LIBS, LIBXPM, LIBJPEG, LIBPNG, LIBTIFF, LIBGIF)
20 (LIBGPM, LIBRESOLV): Set using autoconf rather than cpp.
22 2010-03-15 Chong Yidong <cyd@stupidchicken.com>
24 * xfns.c (Fx_create_frame):
25 * frame.c (Vdefault_frame_scroll_bars): Put non-GTK X scroll-bars
28 2010-03-13 Andreas Politz <politza@fh-trier.de> (tiny change)
30 * editfns.c (Fformat): Account for string precision when computing
31 field width (Bug#5710).
33 2010-03-12 Chong Yidong <cyd@stupidchicken.com>
35 * xfns.c (Fx_create_frame): Set default to Qright.
37 * frame.c (Vdefault_frame_scroll_bars): Set default to Qright for
40 2010-03-12 Eli Zaretskii <eliz@gnu.org>
42 These changes remove termcap.c from the build on Posix platforms.
43 * Makefilie.in (termcapobj): Move termcap.o from here...
44 (MSDOS_OBJ): ...to here.
45 (termcapobj) [!LIBS_TERMCAP]: Remove specialized value, as it is
46 now identical to when LIBS_TERMCAP is defined.
48 * term.c: Remove (ifdef'ed away) inclusion of termcap.h.
50 * cm.c: Remove (ifdef'ed away) inclusion of termcap.h.
52 * config.in: Regenerated. (See top-level ChangeLog.)
54 2010-03-10 Chong Yidong <cyd@stupidchicken.com>
58 2010-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
60 Cleanup setup of gl_state in various parts of the code.
61 * syntax.h (SETUP_BUFFER_SYNTAX_TABLE): New macro.
62 (SETUP_SYNTAX_TABLE, SETUP_SYNTAX_TABLE_FOR_OBJECT):
63 * syntax.c (find_defun_start, Fchar_syntax, Fmatching_paren)
65 * regex.c (regex_compile): Use it.
66 (re_compile_pattern): Don't set gl_state.current_syntax_table since
67 it's now set in regex_compile when/if we need it.
69 2010-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
71 Make it possible to C-g in a tight bytecode loop again (bug#5680).
72 * lisp.h (ELSE_PENDING_SIGNALS): New macro.
73 (QUIT): Use it to consolidate code and remove redundancy.
74 * bytecode.c (BYTE_CODE_QUIT): Use it as well.
76 * regex.c (regex_compile): Setup gl_state as well.
78 * syntax.c (skip_chars): Setup gl_state (bug#3823).
79 (in_classes): Use CONSP before XCAR/XCDR.
81 2010-03-03 Chong Yidong <cyd@stupidchicken.com>
83 * keymap.c (Fwhere_is_internal): Use Fequal to compare
84 definitions, so that keyboard macros are correctly handled
87 2010-03-02 Eli Zaretskii <eliz@gnu.org>
89 * coding.c (decode_coding_emacs_mule): Fixup pointers to buffer
90 text that could be relocated inside the call to emacs_mule_char.
91 (emacs_mule_char): Use CODING_DECODE_CHAR instead of DECODE_CHAR.
92 (CODING_DECODE_CHAR): Add a comment describing its purpose.
94 2010-03-02 Kenichi Handa <handa@m17n.org>
96 * character.c (parse_str_as_multibyte): Fix handling of the
97 multibyte form of raw-bytes.
98 (str_as_multibyte): Likewise.
100 * buffer.c (Fset_buffer_multibyte): Fix handling of the multibyte
103 2010-02-28 Chong Yidong <cyd@stupidchicken.com>
105 * charset.c (load_charset_map_from_file)
106 (load_charset_map_from_vector): Zero out allocated
107 charset_map_entries before using them.
109 2010-02-27 Andreas Schwab <schwab@linux-m68k.org>
111 * w32uniscribe.c (uniscribe_check_otf): Fix length check.
113 2010-02-27 Chong Yidong <cyd@stupidchicken.com>
115 * font.c (font_parse_fcname): Recognize "Book", "Condensed",
116 "Medium", and "Semi-Condensed" keywords in GTK names (Bug#5646).
118 2010-02-26 Kenichi Handa <handa@m17n.org>
120 * ftfont.c (ftfont_get_open_type_spec): Fix parsing of otf_spec.
122 * xdisp.c (reseat_to_string): Fix previous change.
124 2010-02-26 David Reitter <david.reitter@gmail.com>
126 * nsfont.m (nsfont_draw): ns_antialias_text should be a
127 Lisp_Object (Bug#4736).
129 2010-02-25 Kenichi Handa <handa@m17n.org>
131 * xdisp.c (reseat_to_string): Fix previous change (bug#5609).
133 2010-02-24 Jan Djärv <jan.h.d@swipnet.se>
135 * xterm.c (XTflash): Move declarations before statements.
137 * gtkutil.c (xg_get_gdk_display): Remove (unused).
138 (xg_get_pixbuf_from_pix_and_mask, xg_create_frame_widgets)
139 (xg_toggle_notify_cb, xg_set_toolkit_scroll_bar_thumb)
140 (xg_create_tool_bar): Remove unused variables.
141 (x_wm_set_size_hint): Move declarations before statements.
142 (xg_create_frame_widgets): Remove variable grav,
144 2010-02-21 Chong Yidong <cyd@stupidchicken.com>
146 * m/arm.h: Define the LIB_GCC flag to be -lgcc_s (Bug#5518).
148 2010-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
150 * term.c (fatal): Add a final \n if needed (bug#5596).
152 2010-02-18 Chong Yidong <cyd@stupidchicken.com>
154 * nsterm.m (ns_ring_bell): Revert last change (Bug#5569).
156 2010-02-18 Glenn Morris <rgm@gnu.org>
158 * callint.c (Finteractive): Doc fix.
160 2010-02-18 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
162 * coding.c (record_conversion_result):
163 Handle CODING_RESULT_INSUFFICIENT_DST.
164 (decode_coding_object): Record CODING_RESULT_INSUFFICIENT_MEM on
165 memory allocation error.
167 2010-02-17 Kenichi Handa <handa@m17n.org>
169 * coding.c (decode_coding_ccl): Don't setup ccl program here.
170 Fix for the case that the output buffer is fullfilled.
171 (decode_coding): Setup ccl program here. Keep looping when the
172 decoder stopped because the output buffer is
173 fullfilled (bug#5534).
175 * ccl.c (ccl_driver): Never reset ic to CCL_HEADER_MAIN.
177 2010-02-13 Jan Djärv <jan.h.d@swipnet.se>
179 * xterm.c (x_clear_frame_area): Call gtk_widget_queue_draw if USE_GTK,
181 (XTflash): Use Gdk-routines if USE_GTK so scroll bars don't get
184 2010-02-10 Jan Djärv <jan.h.d@swipnet.se>
186 * xsmfns.c (x_session_initialize): Move initialization of ice_fd and
188 (ice_connection_closed): New function.
189 (x_session_check_input, smc_die_CB, ice_io_error_handler)
190 (ice_conn_watch_CB, x_session_close): Call ice_connection_closed.
191 (x_session_check_input): Call IceCloseConnection if IceProcessMessages
193 (ice_conn_watch_CB): Call add_keyboard_wait_descriptor on ice_fd,
196 2010-02-08 Francis Devereux <francis@devrx.org> (tiny change)
198 * nsfont.m (nsfont_open): The system's value for the font descent
199 is negative, so round it down to avoid clipping.
201 2010-02-06 Chong Yidong <cyd@stupidchicken.com>
203 * charset.c (load_charset_map_from_file)
204 (load_charset_map_from_vector): Fix last change to use SAFE_ALLOCA
205 instead of xmalloc (Bug#5526). Suggested by Vivek Dasmohapatra.
207 2010-02-05 Chong Yidong <cyd@stupidchicken.com>
209 * charset.c (load_charset_map_from_file): Allocate large
210 charset_map_entries structure on the heap rather than the stack.
213 2010-01-31 Kenichi Handa <handa@m17n.org>
215 * font.c (font_parse_xlfd): If FONT is a font-entity and pixel
216 size in NAME is invalid, return -1 (Bug#5396).
218 2010-01-31 Chong Yidong <cyd@stupidchicken.com>
220 * nsterm.m (ns_defined_color): Block input. Suggested by Mike
221 <deactivated@gmail.com> (Bug#3605).
223 2010-01-31 David De La Harpe Golden <david@harpegolden.net>
225 * fileio.c (Frename_file): Correctly rename symlinks to
226 directories (Bug#5496).
228 2010-01-31 Filipe Cabecinhas <filcab@gmail.com> (tiny change)
230 * nsterm.m (ns_ring_bell): Handle visible bell like X.
232 2010-01-30 Andreas Schwab <schwab@linux-m68k.org>
234 * character.h (CHAR_PRINTABLE_P): Reparenthesize to avoid warning.
236 2010-01-29 Chong Yidong <cyd@stupidchicken.com>
238 * frame.c (DEFAULT_ROWS): Change default to 35.
240 * xfns.c (x_default_font_parameter): Change default XFT font to
241 monospace-10 (Bug#3643).
243 2010-01-29 Eli Zaretskii <eliz@gnu.org>
245 * w32inevt.c (key_event): Remove unnecessary comparison of
246 event->uChar.AsciiChar with 128.
248 2010-01-28 Chong Yidong <cyd@stupidchicken.com>
250 * fileio.c (Frename_file): Fix last change (Bug#5487).
252 * m/mips.h: Remove DATA_START. Suggested by Dan Nicolaescu.
254 * m/alpha.h: Don't define DATA_START on NetBSD (Bug#4629).
256 2010-01-28 Jan Djärv <jan.h.d@swipnet.se>
258 * xfns.c (Fx_create_frame): Remove window size matching code from
260 (x_get_current_desktop, x_get_desktop_workarea): Remove
262 2010-01-27 Jason Rumney <jasonr@gnu.org>
264 * w32inevt.c (w32_kbd_patch_key): Save the unicode character.
265 (key_event): Use unicode for characters 128 and higher (Bug#4567).
267 2010-01-27 Kenichi Handa <handa@m17n.org>
269 * regex.c (analyse_first): Fix setting of fastmap for unibyte
270 pattern string (Bug#4209).
272 2010-01-27 David De La Harpe Golden <david@harpegolden.net>
274 * fileio.c (Frename_file): Call copy-directory and
275 delete-directory for directories, in order to handle cross-device
278 2010-01-25 Jan Djärv <jan.h.d@swipnet.se>
280 * xfns.c (Fx_create_frame): If frame height is too big, try
281 sizes 24 and 10. Bug #3643.
283 2010-01-24 Stefan Monnier <monnier@iro.umontreal.ca>
285 Try and fix bug#788, hopefully for real this time.
286 * keymap.c (shadow_lookup): Add `remap' arg.
287 (describe_map, describe_vector): Update calls to shadow_lookup.
288 (Fwhere_is_internal): Fix up handling of `remapped_sequences' and
289 `remapped' so this flag is applicable to `sequence'. Be careful to
290 perform remapping during shadow_lookup check of remapped_sequences.
292 2010-01-24 Eric Bélanger <snowmaniscool@gmail.com> (tiny change)
294 * image.c (png_load): Use png_sig_cmp instead of the obsolete
295 png_check_sig, which has been removed in libpng 1.4.
297 2010-01-23 Giorgos Keramidas <keramida@ceid.upatras.gr> (tiny change)
299 * filelock.c: Include utmp.h only when HAVE_UTMP_H (FreeBSD 9.x
300 lacks this header file).
302 2010-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
304 * xdisp.c (draw_glyphs): Update `start' for left_overwritten case
307 2010-01-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
309 * lisp.h (make_pure_string): String pointer arg now points to const.
311 * alloc.c (find_string_data_in_pure, make_pure_string): String pointer
312 args now point to const.
314 2010-01-22 Eli Zaretskii <eliz@gnu.org>
316 * lread.c (Fload): Don't treat files without .elc extension as
317 byte-compiled if they are ``magic'', i.e. `openp' returned -2 for
320 2010-01-20 Kenichi Handa <handa@m17n.org>
322 * coding.c (consume_chars): If ! multibyte and the encoder is ccl,
323 treat the source as actual byte sequence.
325 2010-01-19 Alan Mackenzie <acm@muc.de>
327 Fix spurious before-change-functions invocation from (insert ?\n).
328 * textprop.c (set_text_properties): rename parameter
329 `signal_after_change_p' to `coherent_change_p', and make the
330 invocation of `modify_region' conditional on it.
332 2010-01-19 Jan Djärv <jan.h.d@swipnet.se>
334 * xsettings.c (apply_xft_settings): Save settings in Vxft_settings
336 (syms_of_xsettings): Declare xft-settings.
338 2010-01-18 Chong Yidong <cyd@stupidchicken.com>
340 * editfns.c (Fcurrent_time_string): Doc fix (Bug#5408).
342 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
344 * xterm.c (event_handler_gdk): Block input (Bug#5037).
346 2010-01-16 Chong Yidong <cyd@stupidchicken.com>
348 * emacs.c (standard_args): Adjust arg priorities to reflect how
349 they are processed in startup.el.
351 2010-01-16 Andreas Schwab <schwab@linux-m68k.org>
353 * Makefile.in (lisp, shortlisp): Update.
355 2010-01-16 Stefan Monnier <monnier@iro.umontreal.ca>
357 * xterm.c (x_term_init): Instead of inhibiting GC while running Lisp
358 code, link the new kboard into all_kboard before running Lisp code,
359 and protect the new terminal with GCPRO (Bug#5365).
360 (x_term_init): Remove unused var `atom'.
361 (x_delete_display, x_delete_terminal): Remove unused var `i'.
363 2010-01-15 Jan Djärv <jan.h.d@swipnet.se>
365 * xfns.c (x_get_current_desktop, x_get_desktop_workarea): New functions.
366 (Fx_create_frame): Call x_get_current_desktop and x_get_desktop_workarea
367 to find out usable size of the desktop. Don't make frames larger than
370 2010-01-15 Kenichi Handa <handa@m17n.org>
372 * xdisp.c (CHAR_COMPOSED_P): New arg END_CHARPOS. Callers changed.
374 2010-01-15 Chong Yidong <cyd@stupidchicken.com>
376 * nsterm.m (Qnone): Define.
378 * nsfns.m (Qnone): Move definition to nsterm.m.
380 2010-01-14 Kenichi Handa <handa@m17n.org>
382 * coding.c (detect_coding_iso_2022): Fix handling of euc-xx coding
385 2010-01-14 Kenichi Handa <handa@m17n.org>
387 Make auto-composition work on all buffers even if they are
390 * composite.c (Vauto_composition_mode): New variable.
391 (composition_compute_stop_pos): Check Vauto_composition_mode
392 instead of Vauto_composition_function.
393 (composition_adjust_point, Ffind_composition_internal): Likewise.
394 (syms_of_composite): Declare Lisp variable
395 "auto-composition-mode" here.
397 2010-01-13 Chong Yidong <cyd@stupidchicken.com>
399 * xterm.c (x_term_init): Avoid garbage-collecting the new terminal
400 during call to vendor-specific-keysyms (Bug#5365).
402 2010-01-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
404 * keyboard.c (input_available_signal) [SYNC_INPUT]:
405 Call SIGNAL_THREAD_CHECK (Bug#5333).
407 * atimer.c (alarm_signal_handler) [!SYNC_INPUT]:
408 Call SIGNAL_THREAD_CHECK.
410 2010-01-13 Stefan Monnier <monnier@iro.umontreal.ca>
412 Try to fix bug#5314. This is probably not the final word, tho.
413 * buffer.c (Fset_buffer_modified_p): Try and be careful not to modify
414 recent-auto-save-p as a side-effect.
415 * buffer.h (BUF_AUTOSAVE_MODIFF): New macro.
416 * buffer.c (Fkill_buffer, reset_buffer):
417 * editfns.c (Fsubst_char_in_region):
418 * fileio.c (Finsert_file_contents, Fdo_auto_save)
419 (Fset_buffer_auto_saved, Frecent_auto_save_p): Use it.
421 2010-01-13 Kenichi Handa <handa@m17n.org>
423 Display buffer name, etc. in mode line by composing correctly.
425 * xdisp.c (reseat_to_string): Call composition_compute_stop_pos if
427 (display_mode_element): Adjust for the change of
428 decode_mode_spec and display_line.
429 (decode_mode_spec): Change arg MULTIBYTE to STRING.
430 (display_string): Handle the case that STRING is non-null and
431 LISP_STRING is not nil.
433 * xterm.c (x_draw_composite_glyph_string_foreground):
434 Pay attention to s->face->overstrike.
436 * composite.c (composition_reseat_it): Don't check PT if STRING is
439 2010-01-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
441 * keyboard.c (read_char): Don't apply previous change when current
442 buffer is unchanged by command execution.
444 2010-01-12 Jan Djärv <jan.h.d@swipnet.se>
446 * keyboard.c (read_char): Return after executing from special map.
448 2010-01-12 Glenn Morris <rgm@gnu.org>
450 * emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Set it to
451 bug-gnu-emacs rather than emacs-pretest-bug.
453 2010-01-11 Chong Yidong <cyd@stupidchicken.com>
455 * nsterm.m (syms_of_nsterm): Initialize Qcontrol etc. before
456 initializing the Lisp variables that depend on them.
458 2010-01-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
460 * xfns.c (x_set_menu_bar_lines) [!USE_X_TOOLKIT && !USE_GTK]:
461 Clear areas that will not be updated after change of menu bar lines.
462 Clear the menu bar window's current matrix when the window gets empty.
464 2010-01-09 Chong Yidong <cyd@stupidchicken.com>
466 * intervals.h, textprop.c (extend_property_ranges): Return value
467 and args changed. Discard properties that begin at or after the
470 * editfns.c (Fformat): Caller changed.
472 * nsterm.m (ns_set_default_prefs): Delete function.
473 (syms_of_nsterm): Initialize ns_command_modifier,
474 ns_control_modifier, ns_function_modifier, ns_antialias_text, and
475 ns_antialias_threshold here, not in ns_term_init (Bug#4113).
477 * xdisp.c (pos_visible_p): Check for invisible text at the correct
480 2010-01-09 Eli Zaretskii <eliz@gnu.org>
482 * editfns.c (Ffloat_time): Doc fix.
484 2010-01-09 Jan Djärv <jan.h.d@swipnet.se>
486 * xfns.c (Fx_create_frame): Don't create frame larger than display
489 2010-01-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
491 * frame.h (FRAME_TOP_MARGIN_HEIGHT): New macro.
492 (FRAME_LINE_TO_PIXEL_Y, FRAME_PIXEL_Y_TO_LINE): Take account of pseudo
493 windows above internal border.
495 * window.h (WINDOW_MENU_BAR_P, WINDOW_TOOL_BAR_P): New macros.
496 (WINDOW_TOP_EDGE_Y, WINDOW_BOTTOM_EDGE_Y): Take account of pseudo
497 windows above internal border.
499 * xdisp.c (get_glyph_string_clip_rects, init_glyph_string): Don't treat
500 tool bar windows specially.
502 * xfns.c (x_set_tool_bar_lines): Take account of menu bar height.
504 * xterm.c (x_after_update_window_line): Don't treat tool bar windows
506 (XTflash): Take account of menu bar height.
508 * w32term.c (x_after_update_window_line): Don't treat tool bar windows
511 2010-01-08 Jan Djärv <jan.h.d@swipnet.se>
513 * dispnew.c (change_frame_size_1): newwidth == FRAME_COLS (f) must
514 also be true before we can return early (bug #5339).
516 2010-01-06 David Reitter <david.reitter@gmail.com>
518 * nsfns.m (ns_get_screen): Rewrite, returning NULL for non-NS.
519 (Fns_display_usable_bounds): Rewrite, computing bounds properly
522 2010-01-06 Jan Djärv <jan.h.d@swipnet.se>
524 * font.c (font_open_entity): Enable chache and call cached_font_ok
525 for the driver if defined.
526 (QCuser_spec): New symbol.
527 (font_spec_from_name): Save name as user-spec.
528 (font_load_for_lface): Keep user-spec instead of name.
529 (font_open_by_name): Save name as user-spec.
530 (syms_of_font): Initialize QCuser_spec.
531 (font_clear_prop): Clear name if it exists in font (bug#5157).
533 * xftfont.c (xftfont_open): Call xftfont_add_rendering_parameters.
534 (xftfont_add_rendering_parameters, xftfont_cached_font_ok): New.
535 (syms_of_xftfont): Initialize xftfont_driver.cached_font_ok.
537 * font.h (struct font_driver): Add cached_font_ok.
539 * xterm.c (x_clear_frame): Queue draw for scroll bars.
541 2010-01-05 Jan Djärv <jan.h.d@swipnet.se>
543 * xterm.c (x_new_font): Move code for setting rows/cols before
545 (x_set_window_size): ... to here. Bug #2568.
547 * gtkutil.c (xg_clear_under_internal_border): New function.
548 (xg_frame_resized, xg_frame_set_char_size):
549 Call xg_clear_under_internal_border.
550 (xg_update_scrollbar_pos): Clear under old scroll bar position.
552 2010-01-05 Chong Yidong <cyd@stupidchicken.com>
554 * keyboard.c (read_key_sequence): Catch keyboard switch after
555 making a new tty frame (Bug#5095).
557 2010-01-05 Kenichi Handa <handa@m17n.org>
559 * fontset.c (fontset_find_font): Fix getting the frame pointer.
561 2010-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
563 * dbusbind.c (xd_remove_watch): Avoid trying to convert a void* to
564 Lisp_Object, preferring to convert a lisp_Object to a void* instead.
565 (Fdbus_init_bus): Use XHASH to get a scalar value from a Lisp_Object.
567 2010-01-03 Michael Albinus <michael.albinus@gmx.de>
569 * dbusbind.c (xd_add_watch): Improve debug message.
570 (xd_remove_watch): Improve debug message. If DATA is the session
571 bus, unset D-Bus session environment.
572 (Fdbus_init_bus): Pass the bus as argument to
573 dbus_connection_set_watch_functions. (Bug#5283)
575 2010-01-01 Chong Yidong <cyd@stupidchicken.com>
577 * nsterm.m (ns_get_color): Fix buffer overflow (Bug#4763).
579 * lread.c (syms_of_lread): Make it clearer that these are the
580 names of loaded files (Bug#5068).
582 * eval.c (run_hook_with_args): Handle the case where the global
583 value has the obsolete single-function form (Bug#5026).
585 2009-12-27 Chong Yidong <cyd@stupidchicken.com>
587 * minibuf.c (Fall_completions): Minor optimization.
589 2009-12-26 Eli Zaretskii <eliz@gnu.org>
591 * .gdbinit (pgx): Fix display of composite glyphs.
592 Display cmp.from and cmp.to as well.
593 (pitx): Fix last change.
595 2009-12-25 Kenichi Handa <handa@m17n.org>
597 * composite.h (composition_adjust_point): Update prototype.
599 * composite.c (composition_reseat_it): Don't make a composition
601 (CHAR_COMPOSABLE_P): Treat U+200C (ZWNJ) and U+200D (ZWJ) as
602 composable characters.
603 (composition_adjust_point): New arg NEW_PT. Callers changed.
605 * keyboard.c (command_loop_1): Force redisplay if the last point
606 was within a composition.
607 (adjust_point_for_property): Don't adjust point for automatic
608 composition when called after buffer modification.
610 2009-12-19 Eli Zaretskii <eliz@gnu.org>
612 * .gdbinit (pitx): Don't use enum names, use their values.
613 Remove reference to non-existing value GET_FROM_COMPOSITION.
614 (pgx): Don't use enum names, use their values.
615 (pitmethod): New helper command.
616 (pitx): Use it to display iteration method.
617 (pgrowit): New command.
619 * makefile.w32-in ($(BLD)/cmds.$(O)): Depend on frame.h.
621 Update dependencies in Makefile.in.
623 * Makefile.in (alloc.o): Depend on termhooks.h.
624 (atimer.o): Depend on blockinput.h.
625 (buffer.o): Depend on indent.h, keyboard.h, coding.h, keymap.h,
627 (callint.o): Depend on systime.h, coding.h, and composite.h.
628 (callproc.o): Depend on buffer.h.
629 (casefiddle.o): Don't depend on charset.h.
630 (casetab.o): Depend on character.h.
631 (ccl.o): Depend on composite.h.
632 (chartab.o): Depend on ccl.h.
633 (cm.o): Depend on dispextern.h.
634 (cmds.o): Depend on systime.h, coding.h, frame.h, and composite.h.
635 (coding.o): Don't depend on $(INTERVALS_H).
636 (composite.o): Don't depend on dispextern.h explicitly (it's in
637 $(INTERVALS_H)). Depend on ccl.h.
638 (data.o): Depend on systime.h, coding.h, composite.h,
639 dispextern.h, font.h, and ccl.h.
640 (dired.o): Depend on composite.h.
641 (dispnew.o): Depend on coding.h. Don't depend explicitly on
642 composite.h (it's in $(INTERVALS_H)).
643 (doc.o): Depend on systime.h, coding.h, and composite.h.
644 (editfns.o): Don't depend explicitly on dispextern.h.
645 (emacs.o): Depend on frame.h and coding.h.
646 (eval.o): Depend on coding.h, composite.h, and xterm.h.
647 (fileio.o): Depend on frame.h and commands.h. Don't depend
648 explicitly on dispextern.h.
649 (filelock.o): Don't depend on epaths.h and charset.h. Depend on
651 (fns.o): Don't depend on termhooks.h.
652 (font.o): Depend on buffer.h, composite.h, fontset.h, and xterm.h.
653 (fontset.o): Depend on blockinput.h, atimer.h, systime.h,
654 coding.h, $(INTERVALS_H), window.h, xterm.h.
655 (frame.o): Depend on coding.h, composite.h, termhooks.h, and ccl.h.
656 (fringe.o): Depend on blockinput.h, atimer.h, and systime.h.
657 (ftfont.o): Depend on blockinput.h, atimer.h, systime.h, coding.h,
658 fontset.h, ccl.h, and ftfont.h.
659 (ftxfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
660 (gtkutil.o): Depend on dispextern.h and composite.h.
661 (image.o): Depend on epaths.h, character.h, coding.h, composite.h,
662 termhooks.h, and ccl.h.
663 (indent.o): Depend on systime.h, coding.h, and $(INTERVALS_H).
664 (intervals.o): Depend on systime.h and coding.h.
665 (keyboard.o): Depend on composite.h and coding.h.
666 (keymap.o): Depend on coding.h and frame.h.
667 (lread.o): Depend on systime.h, frame.h, blockinput.h, and atimer.h.
668 (macros.o): Depend on systime.h, coding.h, and composite.h.
669 (menu.o): Depend on systime.h, coding.h, composite.h, window.h,
671 (minibuf.o): Depend on systime.h and coding.h. Don't depend on
672 dispextern.h explicitly.
673 (print.o): Depend on termhooks.h, coding.h, and ccl.h.
674 Don't depend explicitly on dispextern.h and composite.h.
675 (process.o): Depend on character.h, xgselect.h, and sysselect.h.
676 (regex.o): Don't depend on charset.h.
677 (scroll.o): Depend on systime.h, coding.h, composite.h, and window.h.
678 (search.o): Don't depend explicitly on composite.h.
679 (sound.o): Depend on atimer.h and systime.h.
680 (syntax.o): Don't depend explicitly on composite.h.
681 (sysdep.o): Depend on coding.h and composite.h.
682 (term.o): Depend on xterm.h and buffer.h.
683 (terminal.o): Depend on dispextern.h, composite.h, and systime.h.
684 (textprop.o): Don't depend on dispextern.h explicitly.
685 (undo.o): Depend on dispextern.h.
686 (window.o): Depend on coding.h and termhooks.h. Don't depend on
687 dispextern.h and composite.h explicitly.
688 (xdisp.o): Depend on ccl.h.
689 (xfaces.o): Depend on coding.h and ccl.h.
690 (xfns.o): Depend on $(INTERVALS_H) and ccl.h.
691 (xfont.o): Depend on atimer.h, systime.h, fontset.h, and ccl.h.
692 (xftfont.o): Depend on atimer.h, systime.h, fontset.h, ccl.h, and
694 (xgselect.o): New dependency.
695 (xmenu.o): Depend on composite.h, keymap.h, and sysselect.h.
696 (xselect.o): Depend on keyboard.h, coding.h, and composite.h.
697 (xsettings.o): Depend on dispextern.h, keyboard.h, systime.h,
698 coding.h, composite.h, blockinput.h, atimer.h, and termopts.h.
699 (xsmfns.o): Depend on frame.h and dispextern.h.
700 (xterm.o): Depend on intervals.h, keymap.h, xgselect.h, and
703 2009-12-19 Andreas Schwab <schwab@linux-m68k.org>
705 * font.c (Fclear_font_cache): Pass correct cache argument to
708 2009-12-16 Andreas Schwab <schwab@linux-m68k.org>
710 * Makefile.in (prefix-args${EXEEXT}): Don't compile prefix-args.c
713 2009-12-15 Chong Yidong <cyd@stupidchicken.com>
715 * xdisp.c (decode_mode_spec): Inhibit garbage collection when
716 calling file-remote-p. Reported by Jim Meyering.
718 2009-12-15 Michael Albinus <michael.albinus@gmx.de>
720 * dbusbind.c (xd_retrieve_arg): Reorder declarations in order to
721 avoid compiler warnings. (Bug #5217)
723 2009-12-14 Kenichi Handa <handa@m17n.org>
725 * coding.c (decode_coding_iso_2022): Ignore ISO_CODE_SS2_7 (0x19)
728 2009-12-13 Pat Thoyts <patthoyts@users.sourceforge.net> (tiny change)
730 * xfns.c (x_create_tip_frame): Set the extended window manager hint for
733 2009-12-13 Jan Djärv <jan.h.d@swipnet.se>
735 * xterm.h (struct x_display_info): Add Xatom_net_window_type_tooltip and
736 Xatom_net_window_type.
738 * xterm.c (x_term_init): Initialize Xatom_net_window_type_tooltip and
739 Xatom_net_window_type.
741 * xterm.c (my_log_handler): New function.
742 (x_term_init): Set my_log_handler as log handler during gtk_init
743 so we can filter out buggy messages. (Bug #5120).
745 * xterm.c (xg_scroll_callback): Parameter list changed,
746 use parameter GtkScrollType to determine scroll/line/page.
747 Only allow dragging if a button < 4 is grabbed (bug #5177).
748 (xg_end_scroll_callback): New function.
749 (x_create_toolkit_scroll_bar): Pass xg_end_scroll_callback to
750 xg_create_scroll_bar.
752 * gtkutil.c (xg_gtk_scroll_destroy): Remove XG_LAST_SB_DATA handling.
753 (scroll_end_callback): Remove.
754 (xg_create_scroll_bar): Add parameter end_callback, bind it to
755 button-release-event. Replace value-changed event with change-value,
757 (xg_event_is_for_scrollbar): Only return true if button is less than 4,
760 * gtkutil.h (XG_LAST_SB_DATA): Remove.
761 (xg_create_scroll_bar): Add GCallback end_callback.
763 * xftfont.c (QClcdfilter): New variable.
764 (xftfont_open): Parse constant names for RGBA, HINT_STYLE and LCDFILTER.
765 (syms_of_xftfont): Initialize QClcdfilter.
767 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
769 * xsettings.c (struct xsettings): Add member seen.
770 (parse_xft_settings): Update member seen with what we have read.
771 Return non-zero if Xft-settings have been parsed, 0 otherwise.
772 (apply_xft_settings): Only update Xft settings with what member seen
775 2009-12-12 Eli Zaretskii <eliz@gnu.org>
777 * dispextern.h (struct text_pos): Use EMACS_INT;
778 (struct glyph): Use EMACS_INT for charpos.
779 (struct it): Use EMACS_INT for stop_charpos, end_charpos,
780 region_beg_charpos, region_end_charpos,
781 redisplay_end_trigger_charpos, and also for
782 iterator_stack_entry.end_charpos and
783 iterator_stack_entry.stop_charpos.
785 2009-12-12 Jan Djärv <jan.h.d@swipnet.se>
787 * gtkutil.c (scroll_end_callback): New function (bug #5177).
788 (xg_create_scroll_bar): Call scroll_end_callback on button release
790 (xg_event_is_for_scrollbar): != replaced with ==.
792 2009-12-12 Kenichi Handa <handa@m17n.org>
794 * ftfont.c (struct ftfont_info): New member matrix.
795 (ftfont_open): Setup xftfont_info->matrix.
796 (MFLTFontFT): New member matrix.
797 (FLOOR, CEIL, ROUND): New macros.
798 (ftfont_get_metrics): Handle matrix transformation.
799 (ftfont_shape_by_flt): New arg matrix. Callers changed.
801 * xftfont.c (struct xftfont_info): New member matrix.
802 (xftfont_open): Setup xftfont_info->matrix.
804 2009-12-10 Kenichi Handa <handa@m17n.org>
806 * xdisp.c (append_space_for_newline): Consider face-remapping.
808 2009-12-09 Andreas Schwab <schwab@linux-m68k.org>
810 * xsettings.c: Include "keyboard.h".
812 * gtkutil.c (xg_tool_bar_proxy_help_callback): Fix missing return.
814 Fix implicit function declarations.
815 * cmds.c: Include "frame.h".
816 * frame.c: Include "font.h" also if !HAVE_WINDOW_SYSTEM.
817 * frame.h: Move declaration of delete_frame outside of
820 2009-12-09 Ken Brown <kbrown@cornell.edu> (tiny change)
822 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC): New variable.
824 * emacs.c (main): Set the G_SLICE environment variable for Cygwin
827 2009-12-07 Andreas Schwab <schwab@linux-m68k.org>
829 * unexelf.c (unexec): Don't search for .data twice.
831 2009-12-05 Chong Yidong <cyd@stupidchicken.com>
833 * xdisp.c (push_display_prop): Don't set avoid_cursor_p. Return 0
835 (handle_line_prefix): Set avoid_cursor_p here. Check return value
836 of push_display_prop (Bug#5000).
838 * xfaces.c (Fx_family_fonts): Handle 2009-07-14 change to return
839 value of font_list_entities (Bug#5085).
841 2009-12-04 Juanma Barranquero <lekktu@gmail.com>
843 Fix `string-to-number' to deal consistently with integers and floats.
844 * lread.c (isfloat_string): New argument ignore_trailing to accept all
845 trailing characters, not just whitespace.
846 (read1): Pass new arg 0 to keep old behavior.
847 * data.c (Fstring_to_number): Pass 1 to isfloat_string to ignore
848 trailing chars, as it is already done for integers. Doc fixes.
849 * lisp.h (isfloat_string): Add new arg to declaration of isfloat_string.
851 2009-12-04 Eli Zaretskii <eliz@gnu.org>
853 * dispextern.h (enum prop_idx) <AUTO_COMPOSED_PROP_IDX>:
854 Delete unused enumeration value.
856 2009-12-03 Eli Zaretskii <eliz@gnu.org>
858 * Makefile.in (lisp, shortlisp): Replace indian.el with indian.elc.
860 2009-12-03 Daniel Hackney <dan@haxney.org> (tiny change)
862 * process.c (Fmake_network_process): Fix up the tests for
863 "connectionless socket", so they DTRT for seqpacket sockets as well.
865 2009-12-03 Stefan Monnier <monnier@iro.umontreal.ca>
867 * process.c (Qseqpacket): New symbol.
868 (HAVE_SEQPACKET): New macro.
869 (Fmake_network_process): Accept new :type `seqpacket'.
870 (init_process): Add `seqpacket' feature when applicable.
871 (syms_of_process): Initialize Qseqpacket.
873 2009-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
875 * font.c (font_load_for_lface, font_open_by_name): Don't store name
878 2009-11-30 Stefan Monnier <monnier@iro.umontreal.ca>
880 * print.c (print_preprocess): Preprocess the key_and_value table of
881 hashtables, even tho they're "hidden" (bug#5082).
883 2009-11-29 Jan Djärv <jan.h.d@swipnet.se>
885 * frame.c (frame_make_pointer_invisible)
886 (frame_make_pointer_visible): Declare f before statements.
888 2009-11-28 Eli Zaretskii <eliz@gnu.org>
890 * Makefile.in [!AUTO_DEPEND]: Remove outdated comment about
891 omitted dependencies on lisp.h.
893 2009-11-27 Jan Djärv <jan.h.d@swipnet.se>
895 * xftfont.c (xftfont_end_for_frame): Just return if dpyinfo->display
898 * xterm.c (x_delete_terminal): Set dpyinfo->display to NULL.
900 * frame.c (frame_make_pointer_invisible)
901 (frame_make_pointer_visible): Just return if there isn't any selected
904 * search.c (simple_search): Remove warning by making *p const.
906 2009-11-26 Dan Nicolaescu <dann@ics.uci.edu>
908 * xdisp.c (power_letter): Remove duplicate const.
910 2009-11-25 Jan Djärv <jan.h.d@swipnet.se>
912 * term.c (delete_tty): Remove check for last terminal (bug#4970).
914 * xsettings.c: Revert changes from 2009-11-23. Just use Xft
915 defaults (bug #5025).
917 2009-11-24 Stefan Monnier <monnier@iro.umontreal.ca>
919 * insdel.c (adjust_markers_for_delete): Move it in the
920 right direction! (bug#4803)
922 2009-11-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
924 * font.c (font_open_entity): Don't use ASET if font_object is Qnil.
926 * xterm.c (x_new_font): Update f->scroll_bar_actual_width.
928 2009-11-24 Glenn Morris <rgm@gnu.org>
930 * frame.c (focus-follows-mouse): Mention mouse-autoselect-window.
932 2009-11-23 Jan Djärv <jan.h.d@swipnet.se>
934 * Makefile.in: Must create deps for ecrt0.o in its rule.
936 * xfns.c (Fx_select_font): Try to convert Fontconfig name to Gtk name
937 because that is what Gtk+ font dialog understands.
939 * font.c (font_make_object, Fcopy_font_spec): Use Fcopy_alist instead
941 (font_open_by_name): Put name given into QCname for font-object returned.
943 * frame.c (x_set_font): Save original font name as frame parameter
946 * xsettings.c (set_default_xft_settings): New function.
947 (init_xfd_settings): Call set_default_xft_settings if no XSETTINGS window
950 2009-11-22 Andreas Schwab <schwab@linux-m68k.org>
952 * search.c (simple_search): Avoid CHAR_TO_BYTE in inner loop when
953 searching backwards through multibyte buffer.
955 2009-11-21 Jan Djärv <jan.h.d@swipnet.se>
957 * xterm.c: #include xgselect.h.
958 (x_initialize): Call xgselect_initialize.
960 * xsettings.c (something_changedCB): C++ comments => C comments.
961 (init_gconf): Do not deal with any GLib file descriptors, xg_select
964 * gtkutil.c (xg_timer, xg_process_timeouts, xg_start_timer)
965 (xg_stop_timer, menu_grab_callback_cnt, menu_grab_callback)
966 (scroll_bar_button_cb): Remove.
967 (create_menus): C++ comments => C comments. Don't bind grab-notify
969 (xg_create_scroll_bar): Don't bind button-press-event and
970 button-release-event.
972 * process.c: Include xgselect.h if defined (USE_GTK) ||
973 defined (HAVE_GCONF).
974 (wait_reading_process_output): Call xg_select for the same condition.
976 * xgselect.c (xg_select): New function to better integrate with
977 GLib/Gtk event handling. Needed if GConf daemon dies/restarts.
979 * xgselect.h: New file, declare xg_select, xgselect_initialize.
981 * Makefile.in (XOBJ): Add xgselect.o.
983 2009-11-21 Andreas Schwab <schwab@linux-m68k.org>
985 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH):
986 Remove ignored second argument. All callers changed.
987 * regex.c (STRING_CHAR, STRING_CHAR_AND_LENGTH, RE_STRING_CHAR)
988 (RE_STRING_CHAR_AND_LENGTH): Likewise.
989 * xdisp.c (string_char_and_length): Likewise.
991 2009-11-21 Dan Nicolaescu <dann@ics.uci.edu>
993 * xterm.c (x_new_font):
994 * print.c (print_object):
995 * cmds.c (Fself_insert_command): Move declarations before statements.
997 2009-11-20 Ken Brown <kbrown@cornell.edu> (tiny change)
999 * s/cygwin.h: Remove unneeded linker flags.
1001 2009-11-20 Jan Djärv <jan.h.d@swipnet.se>
1003 * xfns.c (x_default_font_parameter): Call xsettings_get_system_font.
1005 * xsettings.h: Declare xsettings_get_system_font.
1007 * xsettings.c (xsettings_get_system_font): New function.
1008 (init_gconf): No use initiating gconf unless we have Xft also.
1009 (syms_of_xsettings): Only provide system-font-setting if HAVE_XFT and
1012 * gtkutil.c (xg_modify_menubar_widgets): If menubar is totally empty
1013 add a blank entry so it doesn't collapse into nothing.
1015 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
1017 * lread.c (Funintern): Comment out last change.
1019 2009-11-19 Richard Stallman <rms@gnu.org>
1021 * lread.c (Funintern): Error if symbol is t or nil.
1023 2009-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
1025 * insdel.c (make_gap_larger): Don't make as many assumptions about the
1026 representation of Lisp integers.
1027 Reported by MJ Chan <mjchan.inbox@gmail.com>.
1029 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
1031 * lisp.h: Remove declaration of Ffont_get_system_font.
1032 * xfns.c: Move include of "xsettings.h".
1033 * xsettings.h: Use EXFUN to declare Ffont_get_system_font.
1035 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
1037 * xsettings.c (something_changedCB, Ffont_get_system_font):
1038 Check use_system_font.
1039 (syms_of_xsettings): DEFVAR font-use-system-font.
1041 2009-11-17 Andreas Schwab <schwab@linux-m68k.org>
1043 * xfns.c (x_default_font_parameter): Remove dead assignment.
1045 * lisp.h (Fbyteorder, init_font, Ffont_get_system_font): Declare.
1047 2009-11-17 Jan Djärv <jan.h.d@swipnet.se>
1049 * xftfont.c (xftfont_fix_match): Older versions of fontconfig do
1050 not have FC_LCD_*. #define them if not there.
1052 * xsettings.c (parse_xft_settings, apply_xft_settings): Ditto.
1054 * xterm.h (struct x_display_info): Add atoms and Window for xsettings.
1056 * xterm.c (handle_one_xevent): Call xft_settings_event for
1057 ClientMessage, PropertyNotify and DestroyNotify.
1058 (x_term_init): If we have XFT, get DPI from Xft.dpi.
1059 Call xsettings_initialize.
1061 * xftfont.c (xftfont_fix_match): New function.
1062 (xftfont_open): Call XftDefaultSubstitute before XftFontMatch.
1063 Call xftfont_fix_match after XftFontMatch.
1065 * xfont.c (xfont_driver): Initialize all members.
1067 * xfns.c (x_default_font_parameter):
1068 Try font from Ffont_get_system_font.
1069 Do not get font from x_default_parameter if we got one from
1070 Ffont_get_system_font.
1071 (Fx_select_font): Get the defaut font name from :name of FRAME_FONT(f).
1073 * w32font.c (w32font_driver): Initialize all members.
1075 * termhooks.h (enum event_kind): CONFIG_CHANGED_EVENT is new.
1077 * lisp.h: Declare syms_of_xsettings.
1079 * keyboard.c (kbd_buffer_get_event, make_lispy_event):
1080 Handle CONFIG_CHANGED_EVENT.
1082 * ftfont.c (ftfont_filter_properties): New function.
1084 * frame.c (x_set_font): Remove unused variable lval.
1086 * font.h (struct font_driver): Add filter_properties.
1088 * font.c (font_put_extra): Don't return if val is nil, it means
1089 boolean option is off.
1090 (font_parse_fcname): Collect all extra properties in extra_props
1091 and call filter_properties for all drivers with extra_props and
1093 (font_open_entity): Do not use cache, it does not pick up new
1094 fontconfig settings like hinting.
1095 (font_load_for_lface): If spec had a name in it, store it in entity.
1097 * emacs.c (main): Call syms_of_xsettings
1099 * config.in: HAVE_GCONF is new.
1101 * Makefile.in (GCONF_CFLAGS, GCONF_LIBS): New variables for HAVE_GCONF.
1104 2009-11-17 Kenichi Handa <handa@m17n.org>
1106 * xdisp.c (x_produce_glyphs): Consider face-remapping when falling
1107 back to the default font in case that no suitable font is found.
1109 2009-11-17 Stefan Monnier <monnier@iro.umontreal.ca>
1111 * menu.c (Fx_popup_menu) [HAVE_NS]: Use generic code for window edge.
1112 Suggested by Chad Brown <yandros@mit.edu>.
1113 (push_menu_item): Use MENU_ITEMS_ITEM_* names.
1115 2009-11-16 Jan Djärv <jan.h.d@swipnet.se>
1117 * xmenu.c (x_menu_wait_for_event): Call XFlush before select.
1119 2009-11-14 Andreas Schwab <schwab@linux-m68k.org>
1121 * Makefile.in: Ignore errors from mkdir when creating deps directory.
1123 2009-11-14 Jan Djärv <jan.h.d@swipnet.se>
1125 * gtkutil.c (xg_update_frame_menubar): Do nothing if menubar already
1128 * Makefile.in: If AUTO_DEPEND is defined, make gcc generate
1129 dependency files in deps/. Include those files into Makefile.
1131 * config.in: Generated (AUTO_DEPEND).
1133 2009-11-13 Michael Albinus <michael.albinus@gmx.de>
1135 * dbusbind.c (Vdbus_registered_objects_table): Rename from
1136 Vdbus_registered_functions_table, because it contains also
1137 properties. Fix docstring.
1138 (Fdbus_call_method, Fdbus_call_method_asynchronously): Fix docstring.
1140 2009-11-13 Stefan Monnier <monnier@iro.umontreal.ca>
1142 * alloc.c (mark_object): Don't reprocess marked strings.
1143 Check vector's markbit earlier. Adjust calls to mark_vectorlike.
1144 (mark_vectorlike, mark_char_table): Assume the object is unmarked.
1146 2009-11-13 Kenichi Handa <handa@m17n.org>
1148 * category.c (word_boundary_p): Adjust for the change of the
1149 semantics of Vword_combining_categories.
1150 (Vword_combining_categories): Describe the slight change of the
1153 2009-11-13 Eli Zaretskii <eliz@gnu.org>
1155 * menu.c (Fx_popup_menu): Call Fx_hide_tip only if HAVE_WINDOW_SYSTEM.
1157 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Revert last change.
1159 2009-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
1161 * xdisp.c (syms_of_xdisp): Fix typo in last change.
1163 2009-11-12 Juanma Barranquero <lekktu@gmail.com>
1165 * makefile.w32-in: Update dependencies; add dependencies to lisp.h.
1167 2009-11-11 David Reitter <david.reitter@gmail.com>
1169 * menu.c (Fx_popup_menu): Remove left-over debugging code and rename
1170 variables to fix 2009-11-09 change.
1172 2009-11-11 Dan Nicolaescu <dann@ics.uci.edu>
1174 * process.c (ifflag_def): Make flag_sym constant.
1175 (Fnetwork_interface_info): Use a constant pointer.
1177 * xfns.c (cursor_bits):
1178 * xdisp.c (power_letter):
1179 * termcap.c (speeds, esctab):
1180 * sysdep.c (baud_convert):
1181 * keyboard.c (lispy_accent_codes, modifier_names):
1182 * image.c (xbm_format, xpm_format, pbm_format, png_format)
1183 (jpeg_format, tiff_format, gif_format, svg_format)
1184 (interlace_start, interlace_increment, gs_format):
1185 * gtkutil.c (separator_names):
1186 * fringe.c (swap_nibble):
1187 * fns.c (base64_value_to_char, base64_char_to_value):
1188 * fileio.c (make_temp_name_tbl):
1189 * coding.c (suffixes): Make constant.
1191 * frame.c (make_initial_frame):
1192 * buffer.c (init_buffer_once): Use make_pure_c_string instead of
1194 * alloc.c (syms_of_alloc): Build Vmemory_signal_data in pure memory.
1197 * s/netbsd.h: Remove code referring to non-existent file: unexsunos4.o.
1199 * Makefile.in: Add dependencies to lisp.h. Remove dependencies
1200 for non-existent files: unexmips.c, unexnext.c, abbrev.c, malloc.c.
1202 * xfns.c (syms_of_xfns): Use make_pure_string instead of build_string.
1203 * xterm.c (syms_of_xterm):
1204 * xfaces.c (syms_of_xfaces):
1205 * xdisp.c (syms_of_xdisp):
1206 * lread.c (syms_of_lread):
1207 * keyboard.c (syms_of_keyboard): Use make_pure_c_string instead of
1210 * doc.c (Fsnarf_documentation): Purecopy Vbuild_files.
1212 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1214 * fns.c (Fplist_get): Merge the active and the commented out code.
1216 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
1218 * keyboard.h: Declare timer_check.
1220 * keyboard.c (timer_check_2): New function that does what the old
1222 (timer_check): Call timer_check_2 until -1 or a non-zero time is
1223 returned, i.e. don't return -1 with timers pending.
1225 * process.c: Remove extern declaration of timer_check.
1227 * xmenu.c (x_menu_wait_for_event): Remove code that did a timeout
1228 even if timer_check returned -1.
1230 * gtkutil.c (xg_dialog_response_cb): Data is now a struct
1232 (pop_down_dialog): Destroy widget (if any), cancel timer and unref
1234 (xg_maybe_add_timer, xg_dialog_run): New functions (bug #4574).
1235 (xg_get_file_name, xg_get_font_name): Call xg_dialog_run (bug #4574).
1236 Destroy the dialog after xg_dialog_run.
1238 2009-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
1240 * menu.c (Fx_popup_menu) [HAVE_NS]: Remove unused vars.
1242 2009-11-10 Jan Djärv <jan.h.d@swipnet.se>
1244 * xmenu.c (xmenu_show): Must not be static after 2009-11-09 changes.
1246 2009-11-09 Juanma Barranquero <lekktu@gmail.com>
1248 * menu.c [HAVE_NTGUI]: Declare current_popup_menu.
1250 2009-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
1252 * menu.c (Fx_popup_menu): Consolidate versions from xmenu.c,
1253 w32menu.c, and nsmenu.m.
1254 Simplify the obsolete case where position is nil.
1255 (cleanup_popup_menu): New function, moved from nsmenu.m.
1256 (struct skp): Remove slot `notreal'.
1257 (single_keymap_panes, keymap_panes): Remove arg `notreal' and
1259 (single_menu_item): Adjust call to parse_menu_item.
1260 (syms_of_menu): Defsubr x-popup-menu.
1261 * menu.h (Vmenu_updating_frame): Consolidate declarations from *menu.c.
1262 (keymap_panes): Don't export any more.
1263 (mouse_position_for_popup, w32_menu_show, ns_menu_show)
1264 (xmenu_show): Declare.
1265 * keyboard.c (parse_menu_item): Remove arg `notreal'.
1266 (menu_bar_item, read_char_minibuf_menu_prompt): Adjust callers.
1267 * keyboard.h (parse_menu_item): Update declaration.
1268 * xmenu.c (Fx_popup_menu): Remove.
1269 (syms_of_xmenu): Don't defsubr x-popup-menu.
1270 * w32menu.c (Fx_popup_menu): Remove.
1271 (syms_of_w32menu): Don't defsubr x-popup-menu.
1272 * nsmenu.m (cleanup_popup_menu): Remove.
1273 (ns_menu_show): Rename from ns_popup_menu and remove all the code
1274 moved to menu.c's Fx_popup_menu.
1275 (Fx_popup_menu): Remove.
1276 (syms_of_nsmenu): Don't defsubr x-popup-menu, and don't initialize
1277 menu_items (it's done in menu.c already).
1279 2009-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
1281 * keyboard.c (parse_menu_item): Handle `notreal' a bit earlier.
1282 Use `tem' less. Make sure KEYEQ holds a string or nil (bug#4879).
1284 2009-11-08 Chong Yidong <cyd@stupidchicken.com>
1286 * xmenu.c (Fx_popup_menu): Extract event timestamp. Pass it to
1287 xmenu_show. Hide any tooltip before opening a menu.
1288 (xmenu_show): New arg. Pass it to create_and_show_popup_menu.
1289 (create_and_show_popup_menu): New arg. Pass it to gtk_menu_popup.
1291 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
1293 Let integers use up 2 tags to give them one extra bit and thus double
1295 * lisp.h (USE_2_TAGS_FOR_INTS): New macro.
1296 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P):
1298 (enum Lisp_Type): Use them. Give explicit values.
1299 (Lisp_Type_Limit): Remove.
1300 (XINT, XUINT, make_number) [!USE_LISP_UNION_TYPE]:
1301 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
1302 Pay attention to USE_2_TAGS_FOR_INTS.
1303 (INTEGERP): Use LISP_INT_TAG_P.
1304 * fns.c (internal_equal): Simplify the default case.
1305 (sxhash): Use case_Lisp_Int.
1306 * data.c (wrong_type_argument): Don't check against Lisp_Type_Limit
1308 (Ftype_of): Use case_Lisp_Int.
1309 (store_symval_forwarding): Take into account the fact that Ints can
1310 now have more than one tag.
1311 * buffer.c (syms_of_buffer): Use LISP_INT_TAG.
1312 buffer_slot_type_mismatch):
1313 * xfaces.c (face_attr_equal_p):
1314 * print.c (print_object):
1315 * alloc.c (mark_maybe_object, mark_object, survives_gc_p):
1318 2009-11-06 Eli Zaretskii <eliz@gnu.org>
1320 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce by further 30K.
1322 * alloc.c (make_pure_c_string): Fix last change to avoid compiler
1325 2009-11-06 Jan Djärv <jan.h.d@swipnet.se>
1327 * gtkutil.c (xg_event_is_for_scrollbar): New function (bug#4870).
1329 * gtkutil.h: Declare xg_event_is_for_scrollbar (bug#4870).
1331 * xterm.c (handle_one_xevent): Call xg_event_is_for_scrollbar for
1332 ButtonPressRelease and MotionNotify (bug#4870).
1334 2009-11-06 Dan Nicolaescu <dann@ics.uci.edu>
1336 * keymap.c (syms_of_keymap): Construct exclude_keys in pure memory.
1338 * xterm.c (syms_of_xterm):
1339 * xselect.c (syms_of_xselect):
1340 * xmenu.c (syms_of_xmenu):
1341 * xfns.c (syms_of_xfns):
1342 * xfaces.c (syms_of_xfaces):
1343 * xdisp.c (syms_of_xdisp):
1344 * window.c (syms_of_window):
1345 * w32fns.c (syms_of_w32fns):
1346 * undo.c (syms_of_undo):
1347 * textprop.c (syms_of_textprop):
1348 * terminal.c (syms_of_terminal):
1349 * syntax.c (syms_of_syntax):
1350 * sound.c (syms_of_sound):
1351 * search.c (syms_of_search):
1352 * print.c (syms_of_print):
1353 * minibuf.c (syms_of_minibuf):
1354 * macros.c (syms_of_macros):
1355 * keymap.c (syms_of_keymap, initial_define_key)
1356 (initial_define_lispy_key):
1357 * keyboard.c (syms_of_keyboard):
1358 * insdel.c (syms_of_insdel):
1359 * image.c (syms_of_image):
1360 * fringe.c (syms_of_fringe):
1361 * frame.c (syms_of_frame):
1362 * fontset.c (syms_of_fontset):
1363 * fns.c (syms_of_fns):
1364 * fns.c (syms_of_fns):
1365 * fileio.c (syms_of_fileio):
1366 * fileio.c (syms_of_fileio):
1367 * eval.c (syms_of_eval):
1368 * doc.c (syms_of_doc):
1369 * dispnew.c (syms_of_display):
1370 * dired.c (syms_of_dired):
1371 * dbusbind.c (syms_of_dbusbind):
1372 * data.c (syms_of_data):
1373 * composite.c (syms_of_composite):
1374 * coding.c (syms_of_coding):
1375 * cmds.c (syms_of_cmds):
1376 * charset.c (define_charset_internal, syms_of_character):
1377 * ccl.c (syms_of_ccl):
1378 * category.c (syms_of_category, init_category_once):
1379 * casetab.c (syms_of_casetab):
1380 * casefiddle.c (syms_of_casefiddle):
1381 * callint.c (syms_of_callint):
1382 * bytecode.c (syms_of_bytecode):
1383 * buffer.c (keys_of_buffer, syms_of_buffer):
1384 * alloc.c (syms_of_alloc):
1385 * process.c (syms_of_process, init_process):
1386 * lread.c (syms_of_lread, init_obarray):
1387 * font.c (build_style_table):
1388 * emacs.c (syms_of_emacs, main): Replace calls to intern with
1389 intern_c_string, calls to make_pure_string with
1390 make_pure_c_string. Use pure_cons instead of Fcons.
1392 * process.c (socket_options): Make it const.
1393 (set_socket_option, init_process): Use a const pointer.
1395 * lread.c (intern_c_string): New function.
1396 (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
1397 (defvar_int): Uset it. Make the name const char*.
1399 * lisp.h (defvar_kboard, defvar_lisp, defvar_lisp_nopro, defvar_bool)
1400 (defvar_int): Update prototypes.
1401 (DEFUN, EXFUN): Support for prototypes is now required.
1402 (intern_c_string): New prototype.
1403 (struct Lisp_Subr): Make symbol_name constant.
1405 * font.c (struct table_entry): Remove unused member. Make NAMES
1407 (weight_table, slant_table, width_table): Make constant.
1409 * emacs.c (struct standard_args): Make name and longname constant.
1411 * character.h (DEFSYM): Use intern_c_string.
1413 2009-11-06 Stefan Monnier <monnier@iro.umontreal.ca>
1415 * alloc.c (make_pure_c_string): New function.
1417 * eval.c (Fautoload): Purecopy all arguments.
1419 2009-11-05 Kenichi Handa <handa@m17n.org>
1421 * fileio.c (Finsert_file_contents): Be sure set coding-system of
1422 the buffer in case of replace.
1424 2009-11-04 Dan Nicolaescu <dann@ics.uci.edu>
1426 * puresize.h (BASE_PURESIZE): Increase to 1620000.
1428 2009-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
1430 * editfns.c (save_restriction_restore): Update the (pt/begv/vz)_markers
1431 when applicable (bug#4851).
1433 * lisp.h: Make USE_LSB_TAG work with USE_LISP_UNION_TYPE.
1434 (P_): Support for prototypes is now required.
1436 2009-10-31 Chong Yidong <cyd@stupidchicken.com>
1438 * frame.c (Fmake_frame_invisible, Fframe_visible_p): Doc fix
1441 2009-10-30 Eli Zaretskii <eliz@gnu.org>
1443 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Redefine to waste less pure space.
1445 2009-10-30 Dan Nicolaescu <dann@ics.uci.edu>
1447 * puresize.h (BASE_PURESIZE): Increase to 1470000.
1449 * lread.c (Fload): Purecopy the file name when building
1450 Vpreloaded_file_list.
1452 2009-10-29 Jason Rumney <jasonr@wanchan.jasonrumney.net>
1454 * w32fns.c (syms_of_w32fns): Change default value of
1455 w32-scroll-lock-modifier to nil. (Bug#2827)
1457 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
1459 * minibuf.c (Fall_completions): Fix typos in docstring.
1461 2009-10-26 Andreas Schwab <schwab@redhat.com>
1463 * puresize.h (PURESIZE_RATIO): Increase back to 10/6.
1465 2009-10-26 Juanma Barranquero <lekktu@gmail.com>
1467 * window.c (grow_mini_window): Comment out "delta >= 0" assertion.
1468 For delta < 0, skip check that only makes sense when the mini-window
1469 is going to be enlarged. (Bug#4534)
1471 2009-10-25 Chong Yidong <cyd@stupidchicken.com>
1473 * keyboard.c (read_char_x_menu_prompt): Don't demand a prompt
1474 string in menu maps (Bug#4471).
1476 2009-10-24 Chong Yidong <cyd@stupidchicken.com>
1478 * nsfns.m (ns_set_name, ns_set_name_as_filename): Don't call
1479 FRAME_NS_VIEW on terminal frames (Bug#4765).
1481 2009-10-24 Andreas Schwab <schwab@linux-m68k.org>
1483 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_INTnn and
1484 DBUS_TYPE_UINTnn separately to get proper sign extension.
1486 * dired.c (Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
1487 can properly handle unsigned types.
1488 (make_uid, make_gid): Remove.
1490 * lisp.h (FIXNUM_OVERFLOW_P): Fix last change to handle unsigned
1493 * sysdep.c (procfs_ttyname): Fix sprintf format to match argument type.
1494 (system_process_attributes): Likewise.
1496 2009-10-24 Dan Nicolaescu <dann@ics.uci.edu>
1498 * keymap.c (Fmake_sparse_keymap): Purecopy the name.
1500 * eval.c (Fautoload): Purecopy the filename. Simplify.
1502 * category.c (Fdefine_category): Purecopy docstring.
1504 2009-10-23 Andreas Schwab <schwab@linux-m68k.org>
1506 * lisp.h (FIXNUM_OVERFLOW_P): Remove cast to avoid overflow.
1508 * puresize.h (PURESIZE_RATIO): Decrease to 11/7.
1510 2009-10-23 Chong Yidong <cyd@stupidchicken.com>
1512 * window.c (Fwindow_edges, Fwindow_pixel_edges)
1513 (Fwindow_inside_edges, Fwindow_inside_pixel_edges): Doc fix
1516 2009-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
1518 * fileio.c (syms_of_fileio): Initialize Vdirectory_sep_char.
1520 * lisp.h (init_fileio_once): Remove.
1521 * emacs.c (main): Don't call init_fileio_once.
1523 2009-10-23 Dan Nicolaescu <dann@ics.uci.edu>
1525 * puresize.h (BASE_PURESIZE): Increase to 1430000.
1527 2009-10-21 Andreas Schwab <schwab@linux-m68k.org>
1529 * doprnt.c (doprnt): Fix overflow check.
1531 2009-10-21 Jan Djärv <jan.h.d@swipnet.se>
1533 * xterm.c (x_term_init): Remove XSynchronize call done for debugging.
1535 * xterm.h (x_wait_for_event): Declare it.
1537 * xterm.c (pending_event_wait): New variable.
1538 (handle_one_xevent): Set pending_event_wait.eventtype to 0 if we
1539 see pending_event_wait.eventtype.
1540 (handle_one_xevent): Don't change gravity when parent changes.
1541 (x_new_font): Call change_frame_size with new rows/columns before we
1542 try to resize the frame.
1543 (x_wait_for_event): New function.
1544 (x_set_window_size_1): Don't change gravity unless change_gravity
1546 Call XResizeWindow with FRAME_OUTER_WINDOW. If we are visible,
1547 don't change frame size, instead wait for the ConfigureNotify.
1548 (x_set_window_size): Call x_set_window_size_1 for USE_X_TOOLKIT also.
1549 (x_wm_set_size_hint): Remove ifdefs for USE_X_TOOLKIT.
1550 (x_initialize): Initialize pending_event_wait.
1552 * xmenu.c (set_frame_menubar): Add internal border width to menu bar
1555 * widget.c (EmacsFrameSetValues): Add comment.
1556 (EmacsFrameSetCharSize): Just call x_set_window_size.
1558 * gtkutil.c (xg_frame_set_char_size): Flush events and call
1560 (flush_and_sync): Remove again.
1561 (xg_get_font_name): Suggest monospace if no previous font is known.
1563 2009-10-20 Stefan Monnier <monnier@iro.umontreal.ca>
1565 * character.c (char_resolve_modifier_mask): Don't resolve meta to the
1566 8th bit, since that only made sense in the ASCII world (bug#4751).
1568 2009-10-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1570 * xterm.c (XTread_socket) [!USE_GTK && HAVE_X_I18N]: Don't quit
1571 processing pending events when event is filtered for input method.
1574 2009-10-20 Juanma Barranquero <lekktu@gmail.com>
1576 * fns.c: Add #endif accidentally removed in previous change.
1578 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
1580 * fns.c: Remove code for unsupported system: MAC_OS.
1581 * image.c: Likewise. Include setjmp.h.
1583 2009-10-19 Jan Djärv <jan.h.d@swipnet.se>
1585 * xterm.c (x_create_toolkit_scroll_bar): Don't allocate color for
1586 pixel -1 (bug #4742).
1588 2009-10-19 Dan Nicolaescu <dann@ics.uci.edu>
1590 * process.c (create_pty): Remove conditionals for no longer
1591 supported systems: UNIPLUS and RTU.
1594 * xfns.c: Remove always true condition: XtSpecificationRelease >= 5.
1596 * alloc.c: Do not define struct catchtag.
1597 * eval.c: Move struct catchtag definition ...
1600 * image.c: Move png.h #include earlier to avoid warnings.
1701 * atimer.c: Include setjmp.h. (Bug#4643)
1703 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
1705 Remove leftover table unibyte_to_multibyte_table.
1706 * character.c (unibyte_to_multibyte_table): Remove.
1707 (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
1708 * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
1709 * character.h (UNIBYTE_TO_CHAR): New macro.
1710 (MAKE_CHAR_MULTIBYTE): Use it.
1711 (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
1712 * xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
1713 (message_dolog, set_message_1):
1714 * search.c (Freplace_match):
1715 * editfns.c (Fcompare_buffer_substrings):
1716 * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
1718 * insdel.c (copy_text, count_size_as_multibyte):
1719 Use ASCII_CHAR_P and BYTE8_TO_CHAR.
1720 * term.c (produce_glyphs):
1721 * syntax.c (skip_chars): Use BYTE8_TO_CHAR.
1722 * regex.c (RE_CHAR_TO_MULTIBYTE):
1723 * cmds.c (internal_self_insert):
1724 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
1726 * cmds.c (internal_self_insert): `c' is already in "multibyte" form.
1728 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu>
1730 * puresize.h (BASE_PURESIZE): Increase to 1310000.
1732 2009-10-16 Juanma Barranquero <lekktu@gmail.com>
1734 * buffer.c (Fbuffer_name): Doc fix. (Bug#4728)
1736 2009-10-15 Adrian Robert <Adrian.B.Robert@gmail.com>
1738 * nsterm.h (NS_HAVE_NSINTEGER): Back out and augment with CGFloat,
1739 still needed under Tiger.
1741 * nsterm.m (EmacsView-conversationIdentifier): Arg is long.
1743 * m/amdx86-64.h: Don't set LIB_STANDARD and START_FILES under
1746 * m/intel386.h: Remove DARWIN_OS/_LP64 special case.
1748 2009-10-15 Kenichi Handa <handa@m17n.org>
1750 * print.c (print_object): Escape a symbol like "2E10" too.
1752 2009-10-11 Adrian Robert <Adrian.B.Robert@gmail.com>
1754 Cleanups and changes for 64-bit compile under Snow Leopard.
1755 Based on suggestions by Erik Charlebois.
1757 * nsfns.m (xw-color-values): Use CGFloat where appropriate.
1759 * nsfont.m (ns_char_width): Replace deprecated call.
1760 (ns_findfonts, nsfont_list_family): Use long format in printf, and
1762 (nsfont_open): Use ns_char_width() everywhere.
1763 (ns_uni_to_glyphs, NSGlyphStorage): Use NS[U]Integer where appropriate.
1765 * nsgui.h (NSPoint, NSSize) [!__OBJC__]: Define and use CGFloat.
1767 * nsimage.m (EmacsImage-setXBMColor:,-getPixelAtX:Y:): Use CGFloat
1770 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Use NSInteger
1772 (EmacsToolbar-addDisplayItemWithImage:idx:helpText:enabled:):
1773 Use stringWithUTF8String.
1774 (EmacsDialogPanel-initWithContentRect:styleMask:): Fix signature.
1776 * nsterm.h (EmacsView, EmacsMenu, EmacsToolbar, EmacsTooltip):
1777 Add formal protocol mention to inheritance.
1778 [NS_HAVE_NSINTEGER]: Drop conditional and contents.
1780 * nsterm.m (ns_color_to_lisp): Use CGFloat where appropriate.
1782 (ns_query_color): Use CGFloat where appropriate.
1783 (EmacsView<NSTextInput>, EmacsScroller): Fix method signatures.
1784 (EmacsScroller-mouseDown:): Use long format in printf, and cast
1787 * config.in (NS_HAVE_NSINTEGER): Drop.
1789 * dbusbind.c (dbus-method-return-internal)
1790 (dbus-method-error-internal): Use long format in printf, and cast
1793 * font.c (font_unparse_xlfd, font_unparse_fcname): Use long format
1794 in printf, and cast argument.
1796 * process.c (list_processes_1): Use long format in printf, and
1799 2009-10-11 Glenn Morris <rgm@gnu.org>
1801 * frame.c (Fframe_pixel_height): Doc fix. (Bug#4535)
1803 2009-10-08 Jan Djärv <jan.h.d@swipnet.se>
1805 * gtkutil.c (create_menus): Call gtk_widget_set_size_request for
1806 menu bar with a small width so it doesn't enlarge the frame.
1808 2009-10-08 Juanma Barranquero <lekktu@gmail.com>
1810 * fontset.c (Fset_fontset_font): Fix typos in error messages.
1812 2009-10-06 Glenn Morris <rgm@gnu.org>
1814 * Makefile.in (emacs${EXEEXT}): Remove direct dependence on
1815 SOME_MACHINE_LISP (this enters indirectly via DOC).
1817 2009-10-05 Eli Zaretskii <eliz@gnu.org>
1819 * dired.c (Ffile_attributes): Doc fix. (Bug#4638)
1821 2009-10-04 Eli Zaretskii <eliz@gnu.org>
1823 * xdisp.c (syms_of_xdisp) <unibyte-display-via-language-environment>:
1826 2009-10-03 Martin Rudalics <rudalics@gmx.at>
1828 * window.c (Fdelete_window): Check WINDOW argument. (Bug#4618)
1830 2009-10-02 Michael Albinus <michael.albinus@gmx.de>
1832 * lisp.h (Qdelete_directory_internal): Remove, because it is not
1833 used anymore outside fileio.c.
1835 * w32fns.c (Fsystem_move_file_to_trash): Use delete-directory.
1837 2009-10-01 Juanma Barranquero <lekktu@gmail.com>
1839 * lisp.h (Qdelete_directory_internal):
1840 Declare, instead of Qdelete_directory.
1842 * w32fns.c (Fsystem_move_file_to_trash): Use it.
1844 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
1846 * eval.c (Fcalled_interactively_p): Add `kind' argument.
1848 2009-10-01 Michael Albinus <michael.albinus@gmx.de>
1850 * fileio.c (Fdelete_directory_internal): Rename from
1851 Fdelete_directory. It is not a command anymore. It has no file
1854 2009-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
1856 * xdisp.c (get_next_display_element): Use an enum in last change.
1858 2009-09-28 Kenichi Handa <handa@m17n.org>
1860 * xdisp.c (get_next_display_element): Pay attention to
1861 unibyte_display_via_language_environment in handling
1862 Vnobreak_char_display.
1864 2009-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
1866 * nsterm.h (ns_app_name): New extern variable.
1868 * nsterm.m (ns_app_name): New variable.
1869 (ns_term_init): Set and use it.
1870 (ns_term_shutdown): Use it.
1872 * nsmenu.m (ns_update_menubar): Use ns_app_name. Sync with xmenu.c.
1873 (EmacsMenu-clear:, ns_popup_dialog): Use ns_app_name.
1875 * nsfns.m (ns_set_name_iconic, ns_set_name)
1876 (ns_set_name_as_filename, x-create-frame, ns-get-resource)
1877 (ns-set-resource): Use ns_app_name instead of NSProcessInfo call.
1879 * menu.c (find_and_return_menu_selection) [HAVE_NS]:
1880 Remove double-casting in client_data comparison.
1882 2009-09-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1884 * keyboard.c (make_lispy_event): Remember last wheel direction.
1885 (syms_of_keyboard) <wheel_syms>: Compute array size at compile time.
1887 2009-09-26 Glenn Morris <rgm@gnu.org>
1889 * Makefile.in (MSDOS_SUPPORT) [MSDOS]: Remove unneeded '/' in
1890 internal.elc. Add term/pc-win.elc.
1891 (WINDOW_SUPPORT) [HAVE_X_WINDOWS]: Add term/common-win.elc and
1893 (WINNT_SUPPORT) [WINDOWSNT]: Add term/common-win.elc and
1896 (lisp): Add NS_SUPPORT.
1897 (SOME_MACHINE_LISP): Add term/w32-win.elc and emacs-lisp/easymenu.elc.
1899 2009-09-25 David Reitter <david.reitter@gmail.com>
1901 * nsmenu.m (EmacsMenu-clear): Recognize application menu
1902 on Mac OS X 10.6+ (bug#4513).
1904 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
1906 * frame.c (xrdb_get_resource): Return nil for empty string resources;
1907 some parts of Emacs code (like font selection) don't grok them.
1908 See http://lists.gnu.org/archive/html/emacs-devel/2009-09/msg00528.html
1910 2009-09-24 Andreas Schwab <schwab@redhat.com>
1912 * coding.c (decode_coding_iso_2022): Fix operator precedence.
1914 2009-09-24 Juanma Barranquero <lekktu@gmail.com>
1916 * dired.c (Fdirectory_files): Fix typo in docstring.
1918 2009-09-23 Adrian Robert <Adrian.B.Robert@gmail.com>
1920 * nsterm.m (EV_TIMESTAMP, x_set_window_size)
1921 (EmacsApp-application:openFiles:): Remove GNUstep conditionals.
1922 (EmacsScroller-setPosition:portion:whole:): Remove -display call
1924 (EmacsView-initFrameFromEmacs:): Set autoresizing mask.
1926 * nsfont.m (ns_glyph_metrics): Remove GNUstep conditional for
1929 2009-09-22 Adrian Robert <Adrian.B.Robert@gmail.com>
1931 * nsterm.m (CGContextSetFontRenderingMode): Drop declaration.
1932 (EmacsScroller-mouseDown:): Use SCROLL_BAR_FIRST_DELAY.
1934 * nsmenu.m (EmacsMenu-menuNeedsUpdate): Ignore if frame has been
1935 deleted (bug #4492).
1937 * nsfont.m (Vns_reg_to_script): New lisp variable.
1938 (syms_of_nsfont): Declare it.
1939 (ns_registry_to_script): New function.
1940 (ns_get_req_script): Call it.
1941 (ns_findfonts): Don't give up on non-unicode registry.
1943 * font.c (DEFAULT_ENCODING) [HAVE_NS]: Remove special case.
1945 2009-09-20 Tom Tromey <tromey@redhat.com>
1947 * eval.c (find_handler_clause): Make stack-trace-on-error work in
1948 batch mode (bug#4228).
1950 2009-09-18 Rob Christie <robchristie@gmail.com> (tiny change)
1952 * nsmenu.m (EmacsMenu-parseKeyEquiv:): Parse key equivalent more
1953 carefully. (Bug #4339)
1955 2009-09-18 Chong Yidong <cyd@stupidchicken.com>
1957 * syntax.c (Fchar_syntax): Minor doc fix (Bug#4400).
1959 2009-09-18 Adrian Robert <Adrian.B.Robert@gmail.com>
1961 * emacs.c (inhibit_x_resources): Update doc string for NS.
1962 (main) [HAVE_NS]: Don't process --no-init-file option. Remove
1963 legacy code for -NXHost. Fix error printf in daemon case.
1965 * nsterm.h (ns_no_defaults): Remove.
1967 * nsterm.m (ns_no_defaults): Remove.
1968 (ns_term_init): Switch ns_no_defaults -> inhibit_x_resources.
1969 (ns_use_qd_smoothing): Remove legacy variable.
1970 (EmacsView-windowShouldZoom:): Set frame left_pos, top_pos and
1971 don't update the NSWindow itself.
1972 (EmacsView-windowWillUseStandardFrame:defaultFrame:): Improve
1973 state detection and store user rect ourselves. (Bug #3581)
1975 * nsfont.m (nsfont_draw) [NS_IMPL_COCOA]: Don't use
1976 ns_use_qd_smoothing.
1978 * nsfns.m (x_get_string_resource): Ape just-previous changes to other
1979 platform versions. Drop support for emacs-20-style face specs.
1980 (x-close-connection): Drop PSFlush() under OS X.
1981 (x-focus-frame): Activate the app first. (Bug #4180)
1983 2009-09-17 Juanma Barranquero <lekktu@gmail.com>
1985 * emacs.c (inhibit_x_resources): New variable.
1986 (main) [HAVE_NS]: Don't process --quick command line option.
1987 (syms_of_emacs) <inhibit-x-resources>: DEFVAR_BOOL it.
1989 * lisp.h (inhibit_x_resources): Declare it extern.
1991 * w32reg.c (x_get_string_resource):
1992 * xrdb.c (x_get_string_resource): Obey inhibit_x_resources.
1994 2009-09-17 Eli Zaretskii <eliz@gnu.org>
1996 * Makefile.in (MSDOS_SUPPORT, SOME_MACHINE_LISP):
1997 Add lisp/term/internal.elc.
1999 2009-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
2001 * frame.c (x_get_resource_string): Re-add for non-toolkit builds
2004 2009-09-17 Dan Nicolaescu <dann@ics.uci.edu>
2006 * puresize.h (BASE_PURESIZE): Increase to 1290000.
2008 * Makefile.in (OTHER_FILES): Define using autoconf, not cpp.
2009 (OBJECTS_MACHINE): Remove, unused.
2011 2009-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
2013 * frame.c (x_get_resource_string): Remove unused.
2015 2009-09-15 Jan Djärv <jan.h.d@swipnet.se>
2017 * xterm.c (x_new_font): Call change_frame_size before calling
2018 x_set_window_size, in case frame size won't change.
2020 * frame.c (x_set_font): Remove dead code.
2022 2009-09-15 Stefan Monnier <monnier@iro.umontreal.ca>
2024 * lread.c (Fload): Also run do-after-load-evaluation while dumping.
2026 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2028 * lread.c (Fload): Don't output a message after loading an obsolete
2029 package any more (done in Lisp now).
2031 2009-09-12 Chong Yidong <cyd@stupidchicken.com>
2033 * fns.c (syms_of_fns): Doc fix (Bug#4227).
2035 2009-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2037 * keymap.c (Fwhere_is_internal): Use nconc2.
2039 2009-09-11 Alan Mackenzie <acm@muc.de>
2041 * dispnew.c (Fsend_string_to_terminal): Amend doc string to cover
2044 2009-09-11 Andreas Schwab <schwab@linux-m68k.org>
2046 * xdisp.c (display_mode_element): Detect cycles.
2048 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2050 * keymap.c (where_is_internal): Don't erroneously return nil right after
2052 (where_is_internal_1): Fix up typo.
2054 2009-09-11 Glenn Morris <rgm@gnu.org>
2056 * frame.c (Fx_parse_geometry): Unify the X and NS versions so that they
2057 share a common doc-string.
2059 2009-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
2061 * keymap.c (get_keymap): Return the actual keymap symbol rather than
2062 t for autoloaded keymaps when autoloading is not allowed (bug#4393).
2064 * keymap.c (QCadvertised_binding): New constant.
2065 (syms_of_keymap): Initialize it.
2066 (Fwhere_is_internal): Try and use bindings from :advertised-binding
2069 2009-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
2071 * keyboard.c (Qmenu_alias, Vdefine_key_rebound_commands): Remove.
2072 (parse_menu_item): Streamline since bindings are recomputed all the
2073 time anyway. Don't bother checking Vdefine_key_rebound_commands any
2074 more and don't support lmenu's menu-alias any more either.
2076 * keymap.c (where_is_internal_data): Make noindirect a boolean.
2077 (where_is_internal): Strip it down to only traverse the keymaps.
2078 Move the cache handling from Fwhere_is_internal to here.
2079 (Fwhere_is_internal): Move the handling of remapping and the choice of
2080 the best binding from where_is_internal to here.
2081 Unify the cached/noncached paths, so remapping is also handled
2082 correctly when the cache is used, and so the cache can be used to
2083 speed up remap-handling when applicable.
2084 Give preference to non-remapped bindings.
2085 * doc.c (Fsubstitute_command_keys): Let Fwhere_is_internal's prefer
2086 non-remapped bindings.
2087 * keyboard.c (parse_menu_item): Let Fwhere_is_internal handle
2090 * xdisp.c (display_mode_element): Move list length limit from 50 to
2091 5000 (see thread starting with <xbaik5174uqu.fsf@cam.ac.uk>).
2093 2009-09-09 Adrian Robert <Adrian.B.Robert@gmail.com>
2095 * nsfont.m (ns_get_family): Don't force first letter to uppercase.
2097 2009-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2099 * xdisp.c (Vtruncate_partial_width_windows): Improve docstring.
2102 * keymap.c (where_is_internal): Filter out shadowed remappings.
2103 Assume that where_is_internal returns unshadowed bindings to simplify
2104 the code and get rid of the gotos. Use ASIZE.
2106 2009-09-04 Jan Djärv <jan.h.d@swipnet.se>
2108 * xterm.c (x_focus_changed): If we get a focusout and pointer
2109 is invisible, make it visible.
2111 * xterm.h: Remove condition for declaration of
2112 x_*_window_to_frame.
2114 2009-09-03 Stefan Monnier <monnier@iro.umontreal.ca>
2116 * dispnew.c (Fsend_string_to_terminal): Make it work again on the
2117 initial terminal as well.
2119 2009-09-02 Jan Djärv <jan.h.d@swipnet.se>
2121 * xterm.h: Rename x_non_menubar_window_to_frame to
2122 x_menubar_window_to_frame.
2124 * xterm.c: Remove declarations also in xterm.h
2125 (XTmouse_position): Do not return valid positions
2126 for clicks in the menubar and the toolbar for Gtk+.
2128 * xfns.c (x_any_window_to_frame): Assume less about Gtk+ internals,
2129 if the widget for the event has the same top level as a frame,
2131 (x_menubar_window_to_frame): Detect menu bar even with Gtk+
2132 internal windows, bug #4122.
2133 (x_non_menubar_window_to_frame): Remove.
2135 2009-09-02 Glenn Morris <rgm@gnu.org>
2137 * buffer.c (default-major-mode): Move most of the doc from here...
2138 (major-mode): ... to here.
2140 2009-08-30 Nick Roberts <nickrob@snap.net.nz>
2142 * process.c (wait_reading_process_output): Keep the descriptor
2143 when pty is used by a non-child process, e.g., in I/O buffer of
2144 GDB this allows inferior to be restarted.
2146 2009-08-29 Eli Zaretskii <eliz@gnu.org>
2148 * xdisp.c (redisplay_internal): Remove redundant test and collapse
2149 both branches into one.
2151 2009-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
2153 * emacs.c (USAGE1): Remove --(no-)multibyte, --(no-)unibyte.
2154 (main): Use enable-multibyte-characters rather than
2155 default-enable-multibyte-characters. Output a warning message when
2156 running a unibyte session.
2158 2009-08-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2160 * unexmacosx.c (print_load_command_name) [LC_DYLD_INFO]: Add cases
2161 LC_DYLD_INFO and LC_DYLD_INFO_ONLY.
2162 (copy_data_segment): Also copy __program_vars section.
2163 (copy_dyld_info) [LC_DYLD_INFO]: New function.
2164 (dump_it) [LC_DYLD_INFO]: Use it.
2166 * s/darwin.h [temacs]: Undef HAVE_POSIX_MEMALIGN.
2168 2009-08-28 Eli Zaretskii <eliz@gnu.org>
2170 * makefile.w32-in ($(BLD)/doc.$(O)): Depend on buildobj.h, not on
2172 (buildobj.h): Renamed from $(SRC)/buildobj.h.
2173 (make-buildobj-CMD, make-buildobj-SH): Create buildobj.h, not
2175 (clean): Add buildobj.h.
2177 2009-08-28 Teodor Zlatanov <tzz@lifelogs.com>
2179 * print.c (print_object): Set escapeflag to 1 when printing
2180 hashtable keys and values.
2182 2009-08-27 Stefan Monnier <monnier@iro.umontreal.ca>
2184 * lread.c (read_integer): Use doubles (and potentially return a float
2185 number) as we do in string-to-number.
2186 (read1): Use strtol to read integers, signal errors on strtol's
2187 overflow and use floats if strtol's output is too large for
2190 2009-08-27 Eli Zaretskii <eliz@gnu.org>
2192 * makefile.w32-in ($(SRC)/buildobj.h, make-buildobj-CMD)
2193 (make-buildobj-SH): Fix last change.
2194 (SRC): Move to before where it's first used.
2196 2009-08-27 Kenichi Handa <handa@m17n.org>
2198 * process.c (send_process): Use encode_coding_object instead of
2199 encode_coding_string to perform eol-conversion even if the string
2202 * coding.c (encode_coding_utf_16): Fix checking of a Unicode
2205 * cmds.c (Fself_insert_command): Avoid unnecessay
2206 unibyte->multibyte conversion. (Bug#4240) (Bug#4037)
2208 2009-08-26 Dan Nicolaescu <dann@ics.uci.edu>
2210 * callproc.c (Fcall_process): Remove always true #if.
2212 * lisp.h: Replace #if 0 code for checking with text pointing to
2213 the --enable-checking configure flag.
2215 * emacs.c (main): Mention the --enable-profiling configure flag
2216 instead of using CFLAGS.
2218 2009-08-26 Ken Raeburn <raeburn@raeburn.org>
2220 * Makefile.in (buildobj.h): New target.
2221 (doc.o): Depend on it.
2222 (temacs${EXEEXT}): Don't generate buildobj.lst.
2223 (mostlyclean): Delete buildobj.h, not buildobj.lst.
2224 * makefile.w32-in ($(SRC)/buildobj.h): New target.
2225 ($(BLD)/doc.$(O)): Depend on it.
2226 (make-buildobj-CMD, make-buildobj-SH): New targets. (Syntax help
2227 provided by Eli Zaretskii.)
2228 ($(TEMACS)): Don't generate buildobj.lst.
2229 * doc.c: Include buildobj.h.
2230 (buildobj): New static variable.
2231 (Fsnarf_documentation): Use it, instead of opening and reading
2234 2009-08-25 Michael Albinus <michael.albinus@gmx.de>
2236 * dbusbind.c (Fdbus_call_method)
2237 (Fdbus_call_method_asynchronously): Use English numeric format for
2238 timeout values in doc string.
2240 2009-08-25 Kenichi Handa <handa@m17n.org>
2242 * alloc.c (mark_char_table): New function.
2243 (mark_object): Use mark_char_table for a char-table.
2245 * lisp.h (CHAR_TABLE_REF_ASCII): New macro.
2246 (CHAR_TABLE_REF): Use it.
2248 2009-08-23 Ken Raeburn <raeburn@raeburn.org>
2250 * Makefile.in (emacs${EXEEXT}) [CANNOT_DUMP]: Set EMACSLOADPATH
2251 before invoking the newly build emacs to check for load-path
2254 2009-08-22 Glenn Morris <rgm@gnu.org>
2256 * Makefile.in (bootstrap_exe): New variable.
2257 (.el.elc, ${lispsource}loaddefs.el, bootstrap-emacs${EXEEXT}):
2258 Use ${bootstrap_exe}.
2260 2009-08-22 Eli Zaretskii <eliz@gnu.org>
2262 * coding.h (encode_coding_string): Don't encode unibyte strings.
2265 2009-08-22 Michael Albinus <michael.albinus@gmx.de>
2267 * config.in (HAVE_DBUS_WATCH_GET_UNIX_FD): Add.
2269 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): Remove. It was
2270 intended as hotfix only.
2271 (xd_add_watch, xd_remove_watch): Use HAVE_DBUS_WATCH_GET_UNIX_FD.
2273 2009-08-21 Adrian Robert <Adrian.B.Robert@gmail.com>
2275 * nsterm.m (ns_get_color): Update documentation properly for last
2276 change, and clean up loose ends in the code left by it. Fix
2277 longstanding bug with 16-bit hex parsing, and add support for
2278 yet another X11 format (rgb:r/g/b) for compatibility.
2279 * nsfns.m (EmacsDialogPanel-runDialogAt): Add declaration of
2280 timer_check() to avoid crash on Leopard/PPC. Bug #2154.
2282 2009-08-21 Stefan Monnier <monnier@iro.umontreal.ca>
2284 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 500 for js.el.
2286 2009-08-20 Michael Albinus <michael.albinus@gmx.de>
2288 * dbusbind.c (XD_WITH_DBUS_WATCH_GET_UNIX_FD): New macro.
2289 (xd_add_watch, xd_remove_watch): Use it. Print debug messages.
2290 (xd_initialize, xd_pending_messages): Check, whether
2291 $DBUS_SESSION_BUS_ADDRESS is set.
2293 2009-08-20 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2295 * nsfns.m (Fxw_color_values): Return 3-element list. Doc fix.
2297 * nsterm.m (ns_get_color): Remove incompatible color formats again.
2299 2009-08-20 Glenn Morris <rgm@gnu.org>
2301 * emacs.c (system-type): Doc fix.
2303 2009-08-19 Stefan Monnier <monnier@iro.umontreal.ca>
2305 * keyboard.c (syms_of_keyboard): Default to 5 buttons, which should be
2306 enough for the most common situations. Avoid SET_SYMBOL_VALUE.
2308 2009-08-18 Michael Albinus <michael.albinus@gmx.de>
2310 * dbusbind.c (xd_add_watch, xd_remove_watch, Fdbus_init_bus):
2312 (xd_initialize): Revert change from 2009-08-16.
2314 2009-08-18 Kenichi Handa <handa@m17n.org>
2316 * fontset.c (Ffontset_font): If a nil element is found in a
2317 font-group vector, return nil.
2319 2009-08-17 Chong Yidong <cyd@stupidchicken.com>
2321 * process.c (status_notify): Don't perform redisplay.
2322 (Fdelete_process, list_processes_1, process_send_signal):
2323 Expliticly perform redisplay.
2324 (wait_reading_process_output): Always check process status, but
2325 don't perform redisplay unless DO_DISPLAY is non-zero (Bug#2930).
2327 2009-08-17 Ken Raeburn <raeburn@raeburn.org>
2329 * lisp.h (XFLOAT_DATA): Produce an rvalue by adding 0 to the value.
2330 (XFLOAT_INIT): New macro for storing a float value.
2331 * alloc.c (make_float, make_pure_float): Use XFLOAT_INIT.
2332 * fns.c (sxhash): Copy out the value of a float in order to
2334 * dbusbind.c (xd_append_arg): Likewise.
2336 * emacs.c (main): Don't call syms_of_data twice.
2338 2009-08-16 Michael Albinus <michael.albinus@gmx.de>
2340 * dbusbind.c (xd_initialize): Add connection file descriptor to
2341 input_wait_mask, in order to let select() detect, whether a new
2342 message has been arrived.
2343 (Fdbus_call_method_asynchronously): Allow nil HANDLER.
2345 2009-08-15 Michael Albinus <michael.albinus@gmx.de>
2347 * dbusbind.c (xd_get_dispatch_status, xd_pending_messages):
2350 * lisp.h (xd_pending_messages): Declare.
2352 * keyboard.c (readable_events): Call xd_pending_messages.
2354 2009-08-15 Chong Yidong <cyd@stupidchicken.com>
2356 * eval.c (Fcalled_interactively_p, Finteractive_p): Doc fix (Bug#3936).
2358 * xdisp.c (pop_it): Don't pop into a display vector (Bug#4131).
2360 * buffer.c (set_buffer_internal_1)
2361 (swap_out_buffer_local_variables): Check for unbound local
2362 variables (Bug#4138).
2364 2009-08-14 Eli Zaretskii <eliz@gnu.org>
2366 * process.c (create_pty): Fix last change.
2368 2009-08-13 Chong Yidong <cyd@stupidchicken.com>
2370 * image.c (xbm_read_bitmap_data): New arg inhibit_image_error.
2371 (xbm_load_image): Caller changed.
2372 (xbm_file_p): Avoid signalling an image_error (Bug#4107).
2374 2009-08-13 Nick Roberts <nickrob@snap.net.nz>
2376 * process.c (create_pty): New function.
2377 (Fstart_process): Use it to allow Emacs to just associate a pty
2378 with the buffer. See associated change in gdb-mi.el.
2379 (list_processes_1): Deal with no program name.
2380 (start_process_unwind): Use pid == -2 to mean no process.
2382 2009-08-12 Stefan Monnier <monnier@iro.umontreal.ca>
2384 * cmds.c (nonundocount): New global variable.
2385 (keys_of_cmds): Initialize it.
2386 (Fself_insert_command): Use it to combine upto 20 sequential chars
2387 into a single undo entry, just like the Qself_insert_command code in
2389 Call frame_make_pointer_invisible, also like the Qself_insert_command
2390 code in keyboard.c does.
2391 * keyboard.c (command_loop_1): Use the new global nonundocount rather
2392 than its own local replacement for it.
2394 2009-08-10 Ken Raeburn <raeburn@raeburn.org>
2396 * fns.c (concat): Don't re-set string length to its current value.
2398 * coding.h (decode_coding_string, encode_coding_string):
2401 * doprnt.c (doprnt_lisp): Delete unused function.
2402 (doprnt): Merge with doprnt1, discarding lispstrings code.
2403 * lisp.h (doprnt_lisp): Don't declare.
2405 2009-08-07 Juri Linkov <juri@jurta.org>
2407 * puresize.h (BASE_PURESIZE): Increase to 1270000.
2409 2009-08-07 Dan Nicolaescu <dann@ics.uci.edu>
2411 * print.c (syms_of_print): Undo previous change.
2413 2009-08-05 Teodor Zlatanov <tzz@lifelogs.com>
2415 * lread.c (read1, syms_of_lread): Read hashtables back from the
2418 * print.c (print_preprocess, print_object): Print hashtables fully
2420 (syms_of_print): Provide 'hashtable-print-readable.
2422 2009-08-02 Adrian Robert <Adrian.B.Robert@gmail.com>
2424 * nsfont.m (ns_descriptor_to_entity): Handle case when descriptor has
2426 (nsfont_open): Handle case when entity has no family.
2428 2009-07-29 Adrian Robert <Adrian.B.Robert@gmail.com>
2430 * nsfont.m (ns_findfonts): Fix 2009-07-24 change to return only one
2431 element, not a list, for match case.
2433 2009-07-28 Kenichi Handa <handa@m17n.org>
2435 * font.c (font_parse_xlfd): Check DPI and AVGWIDTH properties more
2438 * xfont.c (xfont_list_pattern): Don't ignore the return value of
2439 font_parse_xlfd. Check font properties more rigidly.
2441 2009-07-27 Dan Nicolaescu <dann@ics.uci.edu>
2443 * s/netbsd.h (SIGNALS_VIA_CHARACTERS): Remove, already defined in
2446 2009-07-27 Kenichi Handa <handa@m17n.org>
2448 * xfaces.c (face_with_height): Call font_clear_prop.
2450 2009-07-26 Chong Yidong <cyd@stupidchicken.com>
2452 * dispnew.c (init_display): Use Qx, Qw32, and Qns.
2454 * xterm.c (x_term_init): Use Qx.
2456 * nsfont.m (nsfont_draw): Revert 2009-07-15 change.
2458 * nsterm.m (ns_maybe_dumpglyphs_background): Revert 2009-07-15 change.
2459 (ns_get_color): Revert 2009-07-16 change.
2461 2009-07-25 Eli Zaretskii <eliz@gnu.org>
2463 * lread.c (syms_of_lread) <force_load_messages>: New variable.
2464 (Fload): Use it to force load messages, even if NOMESSAGES is non-nil.
2466 2009-07-25 Ken Raeburn <raeburn@raeburn.org>
2468 * coding.h (decode_coding_string, encode_coding_string):
2471 * lread.c: Rewrite 2009-07-21 changes.
2472 (load_depth): Delete.
2473 (Qload_in_progress): New variable.
2474 (load_unwind): Don't reference load_depth or load_in_progress.
2475 (Fload): Likewise; specbind Qload_in_progress instead.
2476 (init_lread): Don't initialize load_depth.
2477 (syms_of_lread): Initialize and protect Qload_in_progress.
2479 2009-07-24 Adrian Robert <Adrian.B.Robert@gmail.com>
2481 * nsfont.m (ns_findfonts): Correctly return fallback in match case.
2483 2009-07-23 Yavor Doganov <yavor@gnu.org>
2485 * nsfont.m (NSFontDescriptor.h): Explicitly include under GNUstep.
2487 2009-07-23 Adrian Robert <Adrian.B.Robert@gmail.com>
2489 * nsterm.m (EmacsView-keyUp:): Only act when running under Tiger.
2490 Bugs 3792, 3720, 2402.
2491 (ns_lookup_indexed_color): Check for bad index.
2492 (ns_index_color): Init unused slot to 0.
2493 (ns_dumpglyphs_box_or_relief): Replace useless xassert with an if().
2494 Bug 3714, possibly 3082.
2496 2009-07-22 Jason Rumney <jasonr@gnu.org>
2498 * w32fns.c (w32_wnd_proc) [WM_IME_STARTCOMPOSITION]:
2499 Position IME window at cursor (Bug#2570).
2500 (w32_wnd_proc) [WM_IME_CHAR]: Release context when finished.
2501 (globals_of_w32fns): Dynamically load functions required above.
2503 * w32term.c (w32_draw_window_cursor): Send message to reposition
2506 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
2508 * fileio.c: Revert 2009-07-16 changes.
2509 (Vauto_save_include_big_deletions): New variable.
2510 (Fdo_auto_save): Disable auto-save only if
2511 auto-save-include-big-deletions is nil.
2513 2009-07-21 Chong Yidong <cyd@stupidchicken.com>
2515 * xdisp.c (move_it_to): For continued lines ending in a tab, take
2516 the overflowed pixels into account (Bug#3879).
2518 2009-07-21 Ken Raeburn <raeburn@raeburn.org>
2520 * lread.c (load_depth): New variable.
2521 (Fload, load_unwind, init_lread): Set it to the load recursion
2522 depth; set load_in_progress as a simple boolean based on the
2523 current load_depth. (Bug#3892)
2525 2009-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
2527 * nsfont.m (ns_has_attribute): Remove.
2528 (ns_findfonts, nsfont_open): Use ns_attribute_fvalue() instead.
2530 2009-07-18 Juri Linkov <juri@jurta.org>
2532 * process.c (Fset_process_query_on_exit_flag): Mention killing
2533 a buffer in docstring.
2535 2009-07-17 Kenichi Handa <handa@m17n.org>
2537 * casetab.c (shuffle): Fix the logic of setting up the cycle.
2539 2009-07-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2541 * nsfns.m (Fns_set_alpha): Remove function.
2542 (syms_of_nsfns): Don't defsubr it.
2544 * nsterm.m (ns_get_color): Remove incompatible color formats.
2545 (ns_color_to_lisp): Generate #rrggbb color format string.
2547 2009-07-16 Richard Stallman <rms@gnu.org>
2549 * fileio.c (Fwrite_region, Fdo_auto_save): Handle save_length = -2.
2550 (Fset_buffer_auto_saved): Handle save_length = -2.
2552 2009-07-16 Chong Yidong <cyd@stupidchicken.com>
2554 * xterm.c (Qx_gtk_map_stock): New var.
2556 * gtkutil.c (update_frame_tool_bar): Use Qx_gtk_map_stock instead
2557 of calling intern each time.
2559 2009-07-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2561 * nsfont.m (nsfont_draw): Remove code for stippling, which actually
2564 * nsterm.m (ns_maybe_dumpglyphs_background): Likewise.
2566 2009-07-14 Kenichi Handa <handa@m17n.org>
2568 * font.c (font_vconcat_entity_vectors): New function.
2569 (struct font_sort_data): New member font_driver_preference.
2570 (font_compare): Check font_driver_preference.
2571 (font_sort_entities): The format of the first argument changed.
2572 (font_delete_unmatched): Likewise.
2573 (font_list_entities): The return type changed.
2574 (font_select_entity): The format of the second argument changed.
2575 (font_find_for_lface): Adjuste for the above changes.
2576 Don't suppress the checking of C even if the repertory supports it.
2577 (Flist_fonts): Adjust for the above changes.
2579 * ftfont.c (ftfont_spec_pattern): New arg langname. Change caller.
2580 (ftfont_list): Adjust for the change of ftfont_spec_pattern.
2581 Reject a font who has adstyle property that is different from a
2582 langname derived from registry property.
2583 (ftfont_match): Adjust for the change of ftfont_spec_pattern.
2585 2009-07-13 Eli Zaretskii <eliz@gnu.org>
2587 * dired.c (directory_files_internal) [WINDOWSNT]: Don't make a
2588 local copy of dirfilename.
2590 2009-07-13 Kenichi Handa <handa@m17n.org>
2592 * chartab.c (sub_char_table_ref_and_range): Fix the range check
2595 * cmds.c (internal_self_insert): Check sym by SYMBOLP before
2596 calling XSYMBOL (sym).
2598 2009-07-11 Eli Zaretskii <eliz@gnu.org>
2600 * dired.c (directory_files_internal_w32_unwind) [WINDOWSNT]:
2602 (directory_files_internal) [WINDOWSNT]:
2603 Bind w32-get-true-file-attributes to either t or nil, depending whether
2604 the filesystem of the directory is fast or slow.
2606 * w32.c (logon_network_drive): Don't assume PATH is an absolute
2608 (is_slow_fs): New function.
2609 (stat): Use it to determine whether to issue more system calls to
2610 get accurate file attributes, when w32-get-true-file-attributes is
2613 2009-07-10 Jan Djärv <jan.h.d@swipnet.se>
2615 * xfns.c (Fx_select_font): Remember last font selected in
2616 x_last_font_name and use that the next time. Also try the frame
2617 parameter font-parameter as default to the font dialog.
2619 2009-07-10 Kenichi Handa <handa@m17n.org>
2621 * xftfont.c (xftfont_open): Fix typo: FC_RGBA->FC_HINT_STYLE.
2623 2009-07-09 Eli Zaretskii <eliz@gnu.org>
2625 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
2627 * w32.c (stat): Treat UNC file names as residing on remote
2630 2009-07-09 Kenichi Handa <handa@m17n.org>
2632 * fontset.c (fontset_find_font): Fix previous change.
2634 2009-07-08 Michael Albinus <michael.albinus@gmx.de>
2636 * dbusbind.c (xd_initialize, Fdbus_call_method, xd_read_message)
2637 (Fdbus_register_signal, Fdbus_register_method): Cleanup memory of
2640 2009-07-08 Kenichi Handa <handa@m17n.org>
2642 * fontset.c (fontset_find_font): Fix the logic of handling
2644 (font_for_char): Delete unused var.
2645 (generate_ascii_font_name): Delete it.
2647 * coding.h (JIS_TO_SJIS2): Fix the code range check.
2649 * coding.c (detect_coding_sjis): Handle shift_jis-2004 correctly.
2650 (encode_coding_sjis): Fix the code range check.
2652 2009-07-07 Chong Yidong <cyd@stupidchicken.com>
2654 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2655 (Fexpand_file_name): Copy string data properly (Bug#3772).
2657 2009-07-07 Jan Djärv <jan.h.d@swipnet.se>
2659 * xterm.c (handle_one_xevent): Only call x_check_fullscreen on the
2662 2009-07-07 Kenichi Handa <handa@m17n.org>
2664 * character.h (unibyte_has_multibyte_table): Delete extern.
2665 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): Delete it.
2667 * charset.c (Fset_charset_priority): Update charset_unibyte.
2668 (syms_of_charset): Initialize charset_unibyte.
2670 * character.c (unibyte_has_multibyte_table): Delete it.
2671 (multibyte_char_to_unibyte): Use CHAR_TO_BYTE8 instead of checking
2673 (multibyte_char_to_unibyte_safe): Likewise.
2674 (Funibyte_char_to_multibyte): Don't check charset_unibyte.
2676 * xdisp.c (get_next_display_element): Decode it->c by charset_unibyte.
2677 (x_produce_glyphs): Likewise.
2679 * .gdbinit (xcharset): Fix the treating $arg0.
2681 2009-07-04 Eli Zaretskii <eliz@gnu.org>
2683 Emulation of `getloadavg' on MS-Windows.
2684 * w32.c: Include float.h
2685 (g_b_init_get_native_system_info, g_b_init_get_system_times)
2686 (GetNativeSystemInfo_Proc, GetSystemTimes_Proc): Declare.
2687 (get_native_system_info, get_system_times): New functions.
2688 (buf_next, buf_prev, sample_system_load, getavg): New subroutines.
2689 (getloadavg): Rewrite using GetSystemTimes and GetNativeSystemInfo.
2690 (globals_of_w32): Initialize g_b_init_get_native_system_info,
2691 g_b_init_get_system_times, and num_of_processors.
2693 2009-07-03 Jason Rumney <jasonr@gnu.org>
2695 * w32term.c (w32_initialize): Use standard types.
2697 2009-07-03 Eli Zaretskii <eliz@gnu.org>
2699 * dired.c (Ffile_attributes): Decode user and group names by the
2700 locale's encoding. (Bug#3443)
2702 2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
2704 * sysdep.c (sys_suspend): Remove USG_JOBCTRL #ifdef, unused.
2705 (mkdir): Remove MKDIR_PROTOTYPE #ifdef, unused.
2707 * callproc.c (child_setup): Use #else instead of a separate #ifdef.
2709 * term.c (init_tty): Remove spurious #ifdef.
2711 * m/mips.h: Mention this file is also used for netbsd.
2712 * m/pmax.h: Remove file.
2714 2009-07-03 Jan Djärv <jan.h.d@swipnet.se>
2716 * xterm.h (struct x_display_info): Add invisible_cursor.
2717 (struct x_output): Add current_cursor.
2719 * xterm.c (XTtoggle_invisible_pointer): New function.
2720 (x_define_frame_cursor): Don't define cursor if invisible or the
2721 same as before. Set current_cursor.
2722 (x_create_terminal): Set toggle_invisible_pointer_hook.
2724 * xfns.c (make_invisible_cursor): New function.
2725 (x_set_mouse_color): Call make_invisible_cursor.
2727 (x_window): Set current_cursor.
2729 * termhooks.h (struct terminal): Add toggle_invisible_pointer_hook.
2731 * keyboard.c (command_loop_1): Call frame_make_pointer_invisible after
2732 inserting a character.
2733 (read_avail_input): Call frame_make_pointer_visible.
2735 * frame.c (Vmake_pointer_invisible): New variable.
2736 (frame_make_pointer_invisible, frame_make_pointer_visible):
2738 (syms_of_frame): DEFVAR make-pointer-invisible, initialize to Qt.
2740 * frame.h: Declare frame_make_pointer_invisible and
2741 frame_make_pointer_visible.
2742 (struct frame): Add pointer_invisible.
2744 2009-07-02 Jan Djärv <jan.h.d@swipnet.se>
2746 * gtkutil.c (xg_frame_set_char_size): Do set width/height if the
2747 frame isn't visible.
2748 (xg_frame_resized): If width/height is -1, get size of window
2751 * xterm.c (handle_one_xevent): Call xg_frame_resized for USE_GTK
2754 * gtkutil.c (xg_frame_set_char_size): Do not set pixel width/height
2755 here or call change_frame_size. Just call flush_and_sync.
2756 (flush_and_sync): Reintroduce.
2758 2009-07-01 Jan Djärv <jan.h.d@swipnet.se>
2760 * xterm.h (struct x_display_info): Add Xatom_net_wm_state_sticky.
2762 * xterm.c (x_handle_net_wm_state): Also look for sticky.
2763 (x_term_init): Initialize Xatom_net_wm_state_sticky.
2765 * frame.h: Declare Qsticky.
2767 * w32fns.c (w32_frame_parm_handlers): Set 0 for sticky.
2769 * nsfns.m (ns_frame_parm_handlers): Ditto.
2771 * frame.c: Declare Qsticky.
2772 (frame_parms): Add sticky.
2774 * xfns.c (x_frame_parm_handlers): Let x_set_sticky handle sticky.
2776 * xterm.h: Declare x_set_sticky.
2778 * xterm.c (x_set_sticky): New function.
2780 * gtkutil.c (xg_tool_bar_proxy_help_callback): New function.
2781 (xg_tool_bar_menu_proxy): Attach enter/leave events to
2782 xg_tool_bar_proxy_help_callback.
2784 * emacs.c (USAGE3, standard_args): Add -mm and --maximized.
2786 * frame.c: Qmaximized is new.
2787 (x_set_frame_parameters): Do not handle fullscreen specially.
2788 Only set width and height if explicitly set.
2789 (x_set_fullscreen): Handle Qmaximized.
2790 (x_set_font, x_figure_window_size): Do not handle fullscreen specially.
2791 (syms_of_frame): Initialize Qmaximized.
2793 * frame.h (fullscreen_type): Add FULLSCREEN_MAXIMIZED.
2794 Declare Qfullwidth, Qfullheight, Qfullboth, Qmaximized.
2796 * xterm.c (handle_one_xevent): Remove call to x_check_fullscreen
2797 for Expose event. Add call to x_check_fullscreen for MapNotify event.
2798 Remove all code w.r.t. fullscreen from ConfigureNotify event. Do not
2799 set gravity to NorthWestGravity when USE_GTK.
2800 (set_wm_state): New function.
2801 (do_ewmh_fullscreen): Use set_wm_state. Also handle FULLSCREEN_MAXIMIZED.
2802 (x_handle_net_wm_state): Handle FULLSCREEN_MAXIMIZED.
2803 (x_check_fullscreen): Simplify so we only handle EMWH type of fullscreen
2804 or the case when no window manager is running. That means remove calls
2805 to x_real_positions and x_fullscreen_adjust.
2807 * gtkutil.c (flush_and_sync, x_wm_size_hint_off): Remove.
2808 (xg_frame_set_char_size): Remove calls to x_wm_size_hint_off and
2810 (xg_height_changed): New function.
2811 (xg_create_frame_widgets): Remove call to gtk_widget_set_size_request
2812 and gtk_window_set_policy. Set frame gravity after parsing the
2814 (xg_update_frame_menubar, free_frame_menubar)
2815 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
2816 (update_frame_tool_bar, free_frame_tool_bar): Call xg_height_changed.
2817 Remove calls to xg_frame_set_char_size.
2819 2009-07-01 Kenichi Handa <handa@m17n.org>
2821 * keyboard.c (decode_keyboard_code): New function.
2822 (tty_read_avail_input): Decode the input bytes if necessary.
2824 * coding.c (setup_coding_system):
2825 Initialize coding->carryover_bytes to 0.
2826 (Fset_keyboard_coding_system_internal): If CODING-SYSTEM is nil,
2829 2009-07-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2831 * Makefile.in (SOME_MACHINE_LISP): Add ../lisp/term/common-win.elc.
2833 2009-06-30 Chong Yidong <cyd@stupidchicken.com>
2835 * xftfont.c (xftfont_open): Avoid passing NULL argument to XftLockFace.
2837 2009-06-30 Jason Rumney <jasonr@gnu.org>
2839 * w32term.c (w32_initialize): Use GetModuleHandle for library that
2841 Set user model ID if supported (bug#1849).
2843 2009-06-29 Jim Meyering <meyering@redhat.com>
2845 Remove useless if-before-xfree test.
2846 * nsfont.m (nsfont_close): Remove useless test.
2847 * term.c (delete_tty): Likewise.
2848 * w32.c (system_process_attributes): Likewise.
2849 * w32font.c (w32font_close): Likewise.
2850 * xfaces.c (x_free_gc): Likewise.
2851 * xselect.c (buffer): Likewise.
2853 2009-06-28 Andreas Schwab <schwab@linux-m68k.org>
2855 * process.c (send_process): Keep decoded string in a local
2856 variable and protect it from GC. (Bug#3521)
2858 2009-06-28 Eli Zaretskii <eliz@gnu.org>
2860 * term.c (create_tty_output) [MSDOS]: #ifdef away.
2861 (tty_free_frame_resources) [MSDOS]: Add a DOS-specific version.
2863 2009-06-28 Chong Yidong <cyd@stupidchicken.com>
2865 * xdisp.c (start_display, handle_face_prop)
2866 (move_it_vertically_backward, cursor_row_fully_visible_p)
2867 (redisplay_window, try_window_id, produce_image_glyph):
2868 Delete some #ifdef-ed out code chunks that are now obsolete.
2870 * xterm.c (x_update_window_begin, x_new_focus_frame)
2871 (x_scroll_bar_handle_click, handle_one_xevent)
2872 (handle_one_xevent, XTread_socket, x_focus_on_frame)
2873 (x_make_frame_visible, x_make_frame_invisible)
2874 (x_wm_set_icon_pixmap, x_initialize): Delete some #ifdef-ed out
2875 code chunks that are now obsolete.
2877 2009-06-28 Michael Albinus <michael.albinus@gmx.de>
2879 * dbusbind.c (XD_SYMBOL_TO_DBUS_TYPE): Convert macro into function
2880 xd_symbol_to_dbus_type. With Solaris 2.11, it was said to compile
2881 for hours, when optimzation is enabled.
2882 (xd_signature, xd_append_arg, xd_retrieve_arg, xd_initialize)
2883 (xd_read_message): Make them static.
2885 2009-06-27 Chuck Blake <cblake@pdos.csail.mit.edu> (tiny change)
2887 * term.c (turn_on_face): Allow simultaneously bold and dim
2888 terminal faces (Bug#3530).
2890 2009-06-27 Chong Yidong <cyd@stupidchicken.com>
2892 * frame.c (x_get_arg): Check if dpyinfo is non-NULL.
2894 * xdisp.c (mouse_face_from_buffer_pos): Fix detection of
2895 truncation glyphs (Bug#3686).
2897 2009-06-27 Glenn Morris <rgm@gnu.org>
2899 * m/pmax.h: Restore file, with only netbsd portions.
2901 2009-06-26 David Reitter <david.reitter@gmail.com>
2903 * nsterm.m (keydown): Avoid infinite loop.
2905 2009-06-26 Peter Jolly <peter@jollys.org> (tiny change)
2907 * ftfont.c (get_adstyle_property): Call font_intern_prop with 1 as
2908 the arg FORCE_SYMBOL.
2910 2009-06-25 Kenichi Handa <handa@m17n.org>
2912 * fontset.c (fontset_find_font): When a usable rfont_def is found
2913 in a fallback font-group, make it the first element of the group.
2915 2009-06-24 Chong Yidong <cyd@stupidchicken.com>
2917 * emacs-icon.h: Always define gnu_xpm_bits on GTK (bug#3671).
2919 2009-06-24 Kenichi Handa <handa@m17n.org>
2921 * fontset.c (fontset_get_font_group): Return 0 if no font-group is
2923 (fontset_font): Record the availability of a font for C both in
2924 the realized fontsets of the current one and the default one.
2926 2009-06-23 Dan Nicolaescu <dann@ics.uci.edu>
2928 * sysdep.c (child_setup_tty): Remove SIGNALS_VIA_CHARACTERS
2929 conditional, it is always defined on AIX.
2931 2009-06-23 Miles Bader <miles@gnu.org>
2933 * window.c (Vrecenter_redisplay): New variable.
2934 (syms_of_window): Initialize it.
2935 (Qtty): New extern declaration.
2936 (Frecenter): Only do redisplay if Vrecenter_redisplay requests it.
2938 2009-06-23 Jim Meyering <meyering@redhat.com>
2940 * src/ftfont.c (setup_otf_gstring, ftfont_shape_by_flt):
2941 Use xmalloc and xrealloc (not malloc and realloc), so subsequent heap
2942 pointer dereferences are guaranteed to be valid.
2944 2009-06-23 Kenichi Handa <handa@m17n.org>
2946 * emacs.c (main): Call init_font ().
2948 * font.h (Vfont_log): Extern it.
2949 (FONT_ADD_LOG, FONT_DEFERRED_LOG): New macros.
2951 * font.c (font_sort_entities, font_list_entities)
2952 (font_matching_entity, font_open_entity)
2953 (font_close_object): Change font_add_log to FONT_ADD_LOG.
2954 (Vfont_log): Delete static.
2955 (font_log_env_checked): Delete this variable.
2956 (font_add_log): Don't check font_log_env_checked.
2957 (font_deferred_log): Check Vfont_log.
2958 (init_font): New function.
2960 * ftfont.c: Change font_add_log to FONT_ADD_LOG.
2962 * w32font.c: Change font_add_log to FONT_ADD_LOG.
2964 * w32uniscribe.c: Change font_add_log to FONT_ADD_LOG.
2966 * xfont.c: Change font_add_log to FONT_ADD_LOG.
2968 * fontset.c (fontset_font): Call FONT_DEFERRED_LOG.
2969 (face_for_char): Don't call font_deferred_log here.
2970 (font_for_char): Likewise.
2972 2009-06-22 Chong Yidong <cyd@stupidchicken.com>
2974 * w32term.c (x_draw_glyph_string): Use the glyph string's width
2975 rather than its background_width for drawing the overline and
2976 underline (Bug#489).
2978 * xterm.c (x_draw_glyph_string): Use the glyph string's width
2979 rather than its background_width for drawing the overline and
2980 underline (Bug#489).
2981 (xg_default_icon_file): New variable.
2982 (syms_of_xterm): Initialize it to the Emacs SVG icon file.
2983 (x_bitmap_icon): Under GTK, use xg_default_icon_file.
2985 * xdisp.c (Qbefore_string, Qafter_string): Add externs.
2986 (load_overlay_strings): Remove externs.
2987 (fast_find_position): Function deleted.
2988 (mouse_face_from_buffer_pos): New function, based on
2989 fast_find_position. Correctly handle before-strings,
2990 display-strings, and after-strings (Bug#1220).
2991 (note_mouse_highlight): Use mouse_face_from_buffer_pos.
2993 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
2995 * xdisp.c (IT_DISPLAYING_WHITESPACE): Define for !HAVE_WINDOW_SYSTEM.
2996 (move_it_in_display_line_to, move_it_in_display_line_to)
2997 (display_line): Remove #ifdef HAVE_WINDOW_SYSTEM.
2999 2009-06-21 Chong Yidong <cyd@stupidchicken.com>
3003 2009-06-21 Jason Rumney <jasonr@gnu.org>
3005 * w32term.c (keyboard_codepage): New static variable.
3006 (w32_read_socket) [WM_INPUTLANGCHANGE]: Update it.
3007 (w32_read_socket) [WM_CHAR]: Use it to decode character
3009 (w32_initialize): Initialize it.
3010 (codepage_for_locale): New function.
3012 2009-06-20 Ken Raeburn <raeburn@raeburn.org>
3014 * process.c (status_message): Pass Faset index argument as a lisp
3015 object, so as to work with USE_LISP_UNION_TYPE.
3017 2009-06-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3019 * coding.c (Ffind_coding_systems_region_internal):
3020 Cache checked characters.
3022 2009-06-18 Kenichi Handa <handa@m17n.org>
3024 * coding.c (decode_coding_iso_2022): Check MSB of bytes more rigidly.
3026 2009-06-18 Andreas Schwab <aschwab@redhat.com>
3028 * xdisp.c (redisplay_internal): Check that the frame is still
3029 live after redisplay of its windows.
3030 (redisplay_windows): Check that the window is still live.
3032 2009-06-17 Andreas Schwab <schwab@linux-m68k.org>
3034 * coding.c (detect_coding_utf_16): Fix previous change.
3036 2009-06-16 Kenichi Handa <handa@m17n.org>
3038 * coding.c (detect_coding_utf_16): Fix the logic of rejecting
3039 UTF-16 by checking the dispersion of Eth and Oth bytes.
3041 2009-06-15 Andreas Schwab <schwab@linux-m68k.org>
3043 * coding.c (detect_coding_utf_16): Fix typo counting odd bytes.
3045 2009-06-15 Kenichi Handa <handa@m17n.org>
3047 * process.c (status_message): Fix previous change. Be sure to
3048 decode a localized string.
3050 2009-06-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3052 * xterm.c (x_delete_terminal): Put previous change in #if 0 and
3053 add comment explaining why.
3055 2009-06-14 Sidney Markowitz <sidney@sidney.com>
3057 * nsmenu.m (EmacsTooltip: setText): Set height of tooltip.
3059 2009-06-14 Adrian Robert <Adrian.B.Robert@gmail.com>
3061 * nsfont.m (ns_attribute_value): Remove.
3062 (ns_attribute_fvalue): Incorporate code from ns_attribute_value.
3063 (ns_has_attribute): Shrink the normal range.
3064 (ns_findfonts): Don't worry about requested spec in determining
3066 (ns_get_covering_families): Retain scriptToFamilies.
3068 2009-06-14 Seiji Zenitani <zenitani@mac.com>
3070 * xdisp.c [USE_MAC_TOOLBAR]: Remove obsolete definition for Mac Carbon.
3072 2009-06-11 Kenichi Handa <handa@m17n.org>
3074 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
3075 overhang for the static composition case.
3077 2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3079 * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
3080 overhang for the automatic composition case.
3082 * xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
3085 2009-06-10 Chong Yidong <cyd@stupidchicken.com>
3087 * xdisp.c (get_next_display_element): When handling wrap-prefix
3088 and line-prefix, treat \n as a control character (bug#3502).
3090 2009-06-10 Kenichi Handa <handa@m17n.org>
3092 * font.c (font_parse_family_registry): Fix for one-char foundry.
3093 (font_sort_entities): Initialize prefer_prop[FONT_AVGWIDTH_INDEX].
3095 2009-06-09 Dmitry Dzhus <dima@sphinx.net.ru> (tiny change)
3097 * process.c (status_message): Fix handling of multibyte signal
3100 2009-06-09 Jim Meyering <meyering@redhat.com>
3102 * xfaces.c (Fx_load_color_file): Avoid array bounds error if the
3103 color name is missing.
3105 2009-06-09 Kenichi Handa <handa@m17n.org>
3107 * charset.c (Fmap_charset_chars): In docstring, state clearly that
3108 FROM-CODE and TO-CODE are codepoints of CHARSET.
3110 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
3112 * nsterm.m (ns_use_system_highlight_color): Drop, unused.
3114 2009-06-08 Adrian Robert <Adrian.B.Robert@gmail.com>
3116 Changes to support :script/:lang/:otf in NS font driver.
3117 * nsfont.m (nsfont_escape_name, nsfont_unescape_name)
3118 (nsfont_get_family, nsfont_char_width): Rename to ns_ prefix to
3119 indicate not part of font driver interface, and change callers.
3120 (ns_get_family): Remove pointless null check.
3121 (nsfont_spec_to_traits, nsfont_fmember_to_entity): Replace with
3122 ns_spec_to_descriptor, ns_descriptor_to_entity.
3123 (nsfont_trait_distance, nsfont_make_fontset_for_font): Remove.
3124 (ns_attribute_value, ns_attribute_fvalue, ns_has_attribute)
3125 (ns_spec_to_descriptor, ns_descriptor_to_entity)
3126 (ns_charset_covers, ns_lang_to_script, ns_otf_to_script)
3127 (ns_get_req_script, ns_accumulate_script_ranges)
3128 (ns_script_to_charset, ns_get_covering_families, ns_findfonts):
3130 (nsfont_list, nsfont_match): Use ns_findfonts.
3131 (nsfont_open): Use font descriptor instead of traits.
3132 (nsfont_draw): Handle "automatic" (lookup-table) compositions.
3133 (dump_glyphstring): Rename to ns_dump_glyphstring.
3135 * nsterm.h (dump_glyphstring): Rename to ns_dump_glyphstring.
3137 * nsfns.m (Fns_popup_font_panel): Use shared font manager.
3139 * fontset.c (fontset_from_font): Remove NS-specific code.
3141 2009-06-08 Peter Jones <pjones@pmade.com> (tiny change)
3143 * nsterm.m (ns_draw_window_cursor): Respect cursor_type for
3146 2009-06-08 Felix Mueller <felix@enqueue.eu> (tiny change)
3148 * nsterm.m (ns_init_paths): Append path separator to INFOPATH variable.
3150 2009-06-08 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
3152 * keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
3154 2009-06-07 Chong Yidong <cyd@stupidchicken.com>
3156 * xdisp.c (move_it_in_display_line_to): On text-only terminals,
3157 account for the overflowing of newlines into the last glyph on the
3158 display line (Bug#3482).
3160 2009-06-05 David Reitter <david.reitter@gmail.com>
3162 * nsselect.m (Fx_own_selection_internal, Fx_selection_exists_p)
3163 (Fx_selection_owner_p): Rename from Fns_own_selection_internal,
3164 Fns_selection_exists_p, Fns_selection_owner_p.
3166 2009-06-03 Jason Rumney <jasonr@gnu.org>
3168 * w32fns.c (x_create_tip_frame): Use the uniscribe font backend if
3169 available. (Bug#3379)
3171 2009-05-29 Kenichi Handa <handa@m17n.org>
3173 * coding.c (get_translation_table):
3174 Check Venable_character_translation.
3176 2009-05-26 David Reitter <david.reitter@gmail.com>
3178 * nsterm.m (ns_raise_frame): Only raise frame if visible.
3179 (x_make_frame_visible): Move frame to front rather than calling
3181 (keyDown:): Do not swallow events that aren't re-sent if frame
3183 (drawRect:): Do not set visibility/iconified flags because
3184 drawRect may be called by NSView even if the frame is hidden.
3186 * nsfns.m (Fx_create_frame): Follow other ports in
3187 determining visibility; default to t. Ensure async_visible is set.
3189 2009-05-23 Eli Zaretskii <eliz@gnu.org>
3191 * dired.c (Ffile_attributes): Doc fix.
3193 2009-05-22 Chong Yidong <cyd@stupidchicken.com>
3195 * m/mips.h [GNU_LINUX]: Don't define DATA_START (Bug#2685).
3197 2009-05-21 Stefan Monnier <monnier@iro.umontreal.ca>
3199 * xfont.c (xfont_list_pattern): Don't initialize xfont_scripts_cache
3200 and xfont_scratch_props.
3201 (syms_of_xfont): Do it here instead.
3202 (xfont_find_ccl_program): Delete, unused.
3203 (xfont_open): Delete unused var `i'.
3205 2009-05-21 Kenichi Handa <handa@m17n.org>
3207 * fontset.c (Qlatin): Don't make it static.
3209 * xfont.c (xfont_chars_supported, xfont_supported_scripts):
3211 (xfont_scripts_cache, xfont_scratch_props): New variables.
3212 (Qlatin, Vscalable_fonts_allowed): Extern it.
3213 (xfont_list_pattern): Argument changed. Callers changed.
3214 Check Vscalable_fonts_allowed. Check the support of a script.
3215 (xfont_list): Don't reject a font spec with :script property.
3216 (xfont_has_char): Fix setting of encoding.
3217 (syms_of_xfont): Staticpro and initialize xfont_scripts_cache and
3218 xfont_scratch_props.
3220 2009-05-19 Kenichi Handa <handa@m17n.org>
3222 * font.c (font_sort_entities): Rename from font_sort_entites.
3225 2009-05-18 Kenichi Handa <handa@m17n.org>
3227 * font.c (font_find_for_lface): Copy SPEC's FONT_TYPE too.
3229 2009-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
3231 * frame.c (do_switch_frame) [NS_IMPL_COCOA]: Don't raise any window.
3232 (delete_frame) [NS_IMPL_COCOA]: Instead, do it here.
3234 2009-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3236 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase here.
3237 (x_delete_terminal): Dissociate resource database from display and
3238 then call XrmDestroyDatabase before closing display.
3240 2009-05-18 Adrian Robert <Adrian.B.Robert@gmail.com>
3242 * nsterm.m (ns_read_socket): Remove unused variable.
3243 * frame.c (do_switch_frame): Under NS_IMPL_COCOA section, check
3244 whether selected frame is viable before raising it (based on patch
3245 by David Reitter), and improve commentary.
3246 * nsfont.m (nsfont_make_fontset_for_font): Avoid a compiler warning.
3248 2009-05-15 Kenichi Handa <handa@m17n.org>
3250 * font.c (Ffont_spec): Check arguments.
3252 2009-05-14 Chong Yidong <cyd@stupidchicken.com>
3254 * xfaces.c (tty_supports_face_attributes_p): Recognize unspecified
3255 weight when testing attributes (Bug#3282).
3257 2009-05-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3259 * gtkutil.c (xg_frame_set_char_size): Set frame pixel width/height to
3260 what we expect to get in the next ConfigureNotify event.
3262 * xftfont.c (xftfont_open): Make sure that Xrender extension is added
3263 before Xft one (Bug#1696).
3265 2009-05-07 David Reitter <david.reitter@gmail.com>
3267 * nsfns.m (Fx_display_planes): Compute bitplanes using
3268 NSBitsPerPixelFromDepth (Bug#3207).
3270 2009-05-10 Chong Yidong <cyd@stupidchicken.com>
3272 * editfns.c (Ftranspose_regions): Doc fix (Bug#3248).
3274 2009-05-10 Ulrich Mueller <ulm@gentoo.org>
3276 * s/gnu-linux.h: Make GCPROs and UNGCPRO no-ops also on SuperH.
3278 2009-05-07 David Reitter <david.reitter@gmail.com>
3280 * nsterm.m (ns_dumpglyphs_stretch, ns_dumpglyphs_image):
3281 Respect mouse face background.
3283 2009-05-07 David Reitter <david.reitter@gmail.com>
3285 * nsterm.m (note_mouse_movement, ns_frame_up_to_date):
3286 Mouse movement/highlight: bracket drawing operations
3287 in ns_update_begin and ns_update_end.
3289 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3291 * nsfns.m (ns_get_screen): Rewrite.
3292 Don't presume selected-frame is of type `ns'.
3294 * font.c (font_update_drivers): Sanity fallback to avoid disabling
3297 * nsterm.m (-windowDidResize:): Avoid inf-loop under GNUStep.
3299 2009-05-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3301 * keyboard.h (add_user_signal): Fix typo in extern.
3303 * lisp.h (add_user_signal): Remove extern.
3305 * unexelf.c (unexec): Consider a section to precede the .bss section
3306 if its addresses overlap that of .bss.
3307 (unexec) [NS_IMPL_GNUSTEP]: Copy ObjC-related data from old file
3308 instead of dumping process.
3310 2009-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
3312 * keyboard.c (syms_of_keyboard): Staticpro pending_funcalls.
3314 2009-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
3316 * Makefile.in (ctagsfiles1, ctagsfiles2): Include ObjC files in TAGS.
3318 2009-05-02 Dan Nicolaescu <dann@ics.uci.edu>
3320 * xterm.c (x_handle_net_wm_state): Move declaration of lval before
3323 2009-05-02 Andreas Schwab <schwab@linux-m68k.org>
3325 * process.c (read_process_output): Make sure the current buffer is
3328 * coding.c (record_conversion_result): Don't modify
3329 Vlast_code_conversion_error for successful result.
3330 (alloc_destination): Don't clobber conversion result. (Bug#1650)
3332 2009-05-01 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
3334 * charset.c (load_charset): Reformat X==Y==Z to (X==Y)==Z.
3335 (load_charset_map): Remove unnecessary code.
3337 2009-04-30 David Reitter <david.reitter@gmail.com>
3339 * nsterm.m (convert_ns_to_X_keysym): Define function keys f16
3342 2009-04-30 Chong Yidong <cyd@stupidchicken.com>
3344 * xfaces.c (face_at_buffer_position): New arg base_face_id.
3346 * xdisp.c (handle_face_prop): Pass base_face_id of iterator to
3347 face_at_buffer_position.
3348 (face_before_or_after_it_pos, get_next_display_element)
3349 (note_mouse_highlight): Update face_at_buffer_position call.
3351 * term.c (term_mouse_highlight):
3352 * msdos.c (IT_note_mouse_highlight):
3353 * fontset.c (Finternal_char_font):
3354 * font.c (font_at, font_range): Update face_at_buffer_position call.
3356 * dispextern.h (face_at_buffer_position): Update prototype.
3358 2009-04-30 Kenichi Handa <handa@m17n.org>
3360 * fontset.c (fontset_find_font): Check if rfont_def is Qnil or not.
3362 2009-04-29 Andreas Schwab <schwab@linux-m68k.org>
3364 * callproc.c (Fcall_process): Fix GC protection. Make sure
3365 current buffer is always restored.
3367 2009-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3369 * atimer.c (init_atimer): Also clear stopped_atimers.
3371 * keyboard.c (init_keyboard) [POLL_FOR_INPUT]: Reset poll_timer.
3373 * process.c (create_process): Clean up merger residues of
3376 2009-04-29 Ulrich Mueller <ulm@gentoo.org>
3378 * lread.c (Vread_circle): New variable.
3379 (read1): Disable recursive read if Vread_circle is nil.
3381 2009-04-29 Kenichi Handa <handa@m17n.org>
3383 * fontset.h (set_default_ascii_font): Delete extern.
3385 * fontset.c (set_default_ascii_font): Delete this unused function.
3387 * frame.c (x_set_font): When ARG is a font-object, check if the
3388 font-object matches with the ASCII font-spec of the frame's
3389 fontset. If not, create a new fontset for the frame. (Bug #3075)
3391 2009-04-28 Andreas Schwab <schwab@linux-m68k.org>
3393 * fns.c (Flocale_info): Protect vector from GC during decoding.
3395 * process.c (Fstart_process): Protect argv strings from GC during
3398 2009-04-27 Andreas Schwab <schwab@linux-m68k.org>
3400 * sysdep.c: Include <ctype.h>.
3402 2009-04-27 David Reitter <david.reitter@gmail.com>
3404 * nsfont.m (nsfont_open): Remove unused variable shrink.
3405 Remove commented-out code.
3407 2009-04-26 Johan Bockgård <bojohan@gnu.org>
3409 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
3411 2009-04-25 Jason Rumney <jasonr@gnu.org>
3413 * w32font.c (clear_cached_metrics): Remove, unused since 2008-08-02.
3415 2009-04-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3417 * fringe.c (init_fringe_bitmap) [HAVE_X_WINDOWS && WORDS_BIG_ENDIAN]:
3418 Swap bytes in short integer if fringe bitmap width > 8.
3420 2009-04-23 Kenichi Handa <handa@m17n.org>
3422 * xfaces.c (Fx_list_fonts): If a font size is specified in
3423 PATTERN, set it in returned scalable fonts.
3425 2009-04-22 Chong Yidong <cyd@stupidchicken.com>
3427 * keyboard.c (Fset_input_meta_mode): Doc fix.
3429 * dispnew.c (Fsend_string_to_terminal): Doc fix.
3431 * data.c (Fterminal_local_value, Fset_terminal_local_value): Doc fixes.
3433 * coding.c (Fterminal_coding_system): Doc fix.
3435 * xfns.c (Fx_display_grayscale_p, Fx_display_pixel_width)
3436 (Fx_display_pixel_height, Fx_display_planes)
3437 (Fx_display_color_cells, Fx_server_max_request_size)
3438 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
3439 (Fx_display_mm_height, Fx_display_mm_width)
3440 (Fx_display_backing_store, Fx_display_visual_class)
3441 (Fx_display_save_under, Fx_close_connection, Fx_synchronize):
3442 Doc fixes, replacing "terminal id" with "terminal object".
3443 (check_x_display_info): Handle terminal objects instead of
3446 * term.c (Ftty_display_color_p, Ftty_display_color_cells)
3447 (Ftty_type, Fcontrolling_tty_p, Ftty_no_underline, Fsuspend_tty)
3448 (Fresume_tty, Vsuspend_tty_functions, Vresume_tty_functions):
3449 Doc fixes, replacing "terminal id" with "terminal object".
3451 2009-04-21 Kenichi Handa <handa@m17n.org>
3453 * font.c (font_load_for_lface): Cancel previous change (bug#2994).
3454 (font_score): Check AVGWIDTH too.
3456 * coding.c (decode_coding_utf_16): Reduce charbuf_end for the
3458 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
3459 (decode_coding_emacs_mule, decode_coding_iso_2022): Likewise.
3461 2009-04-19 Jason Rumney <jasonr@gnu.org>
3463 The following changes fix Bug#3005 for wide glyphs on each platform,
3464 without reintroducing Bug#1258 for stretch glyphs.
3466 * xterm.c (x_draw_bar_cursor): Limit cursor width differently for
3467 BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR using
3468 get_phys_cursor_geometry.
3470 * w32term.c (x_draw_bar_cursor): Limit cursor width differently
3471 for BAR_CURSOR and HBAR_CURSOR. Calculate width of HBAR_CURSOR
3472 using get_phys_cursor_geometry.
3474 * nsterm.m (ns_draw_window_cursor): HBAR_CURSOR width already
3475 correctly calculated.
3477 2009-04-19 Jan Djärv <jan.h.d@swipnet.se>
3479 * gtkutil.c (xg_tool_bar_menu_proxy, update_frame_tool_bar):
3480 Use G_CALLBACK instead of GTK_SIGNAL_FUNC which is deprecated.
3481 (xg_initialize): Use g_type_class_ref instead of gtk_type_class which
3484 2009-04-18 Andreas Schwab <schwab@linux-m68k.org>
3486 * font.c (font_put_frame_data): Use xfree instead of free.
3488 2009-04-17 Juanma Barranquero <lekktu@gmail.com>
3490 * w32font.c (Qja, Qko): Remove declarations.
3491 (syms_of_w32font): Don't DEFSYM them.
3493 2009-04-17 Chong Yidong <cyd@stupidchicken.com>
3495 * font.c (Qja, Qko): Move definitions here from ftfont.c.
3497 * font.h (Qja, Qko): Extern them.
3499 * ftfont.c (Qja, Qko): Remove declarations.
3501 * xfont.c (Qja, Qko): Remove declarations.
3503 2009-04-17 Kenichi Handa <handa@m17n.org>
3505 * editfns.c (Ftranslate_region_internal): Use Fconcat to make a
3506 string from a vector to handle Latin-1 characters correctly.
3508 * ftfont.c (ftfont_pattern_entity): Return a newly allocated
3509 entity even if the cache hits.
3511 2009-04-16 Andreas Schwab <schwab@linux-m68k.org>
3513 * search.c (boyer_moore): Use zero as marker value for a possible
3514 match instead of depending on overflow behavior. (Bug#2844)
3516 * search.c: Use EMACS_INT for buffer positions. Add prototypes.
3517 * lisp.h: Adjust prototypes.
3519 2009-04-16 Chong Yidong <cyd@stupidchicken.com>
3521 * keyboard.c (adjust_point_for_property): Disable 2009-02-12
3524 2009-04-16 Kenichi Handa <handa@m17n.org>
3526 * xfont.c (xfont_has_char): Special handling of `ja' and `ko' adstyle.
3528 * xftfont.c (xftfont_has_char): Special handling of `ja' and `ko'
3531 * ftfont.c (Qja, Qko): Don't make them static.
3532 (enum ftfont_cache_for): New enum.
3533 (fc_charset_table): Undo the previous change.
3534 (ftfont_get_latin1_charset): Delete it.
3535 (ftfont_pattern_entity): Check cache by ftfont_lookup_cache.
3536 Set FONT_SIZE_INDEX of the entity to 0 for a scalable font. For a
3537 non-scarable font, try to get AVERAGE_WIDTH.
3538 (ftfont_lookup_cache): Argument FOR-FACE is changed to CACHE_FOR.
3539 Change ft_face_cache from a list of a hash-table. Don't check
3540 `ja' and `ko' adstyle here.
3541 (ftfont_get_fc_charset): Call ftfont_lookup_cache with
3542 FTFONT_CACHE_FOR_CHARET.
3543 (ftfont_get_charset): Undo the previous change.
3544 (ftfont_open): Call ftfont_lookup_cache with FTFONT_CACHE_FOR_FACE.
3545 (ftfont_close): Likewise.
3546 (ftfont_has_char): Special handling of `ja' and `ko' adstyle.
3548 * font.c (font_sort_entites): Change the meaning of the arg
3549 BEST-ONLY. Don't optimize for VEC of lenght 1.
3550 (font_select_entity): Just return the value of font_sort_entites.
3552 * xfaces.c (merge_face_vectors): Reflect font properties in
3553 to[LFACE_FONT_INDEX] to the other face attributes. Don't call
3554 font_clear_prop if a face attribute doesn't change.
3556 * charset.h (charset_ksc5601): Extern it.
3558 * charset.c (charset_ksc5601): New variable.
3559 (Fdefine_charset_internal): Set charset_ksc5601.
3560 (init_charset_once): Initialize charset_ksc5601 to -1.
3562 2009-04-15 Dan Nicolaescu <dann@ics.uci.edu>
3564 * fileio.c (history_delete_duplicates): Remove unused declaration.
3566 * callint.c (history_delete_duplicates): New declaration.
3567 (Fcall_interactively): Remove command history duplicates when
3568 history_delete_duplicates is true.
3570 2009-04-14 Eli Zaretskii <eliz@gnu.org>
3572 * buffer.c (syms_of_buffer) <line-spacing>: Doc fix.
3574 2009-04-14 Kenichi Handa <handa@m17n.org>
3576 * font.c (Ffont_info): Fix docstring. Fix the second element of
3577 the returned value (bug#2949).
3579 2009-04-14 Chong Yidong <cyd@stupidchicken.com>
3581 * xdisp.c (Vwrap_prefix, Vline_prefix): Reflow docstrings.
3583 2009-04-14 Kenichi Handa <handa@m17n.org>
3585 * xfont.c (xfont_has_char): The font has C if C is ASCII and the
3586 encoding charset is ascii_compatible.
3588 * charset.c (Fdefine_charset_internal): Make charset
3589 ascii-compatible if the method is CHARSET_METHOD_OFFSET, the
3590 code_offset is 0, and covers all ASCII characters.
3592 2009-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
3594 * nsselect.m (symbol_to_nsstring, clean_local_selection_data)
3595 (ns_string_to_pasteboard_internal):
3596 * nsmenu.m (process_dialog):
3597 * nsimage.m (ns_load_image): Use SDATA and ASET where appropriate.
3598 * nsfont.m (nsfont_open): Use XHASH to make it compile with LISP_UNION.
3599 * lisp.h (Fx_load_color_file): Declare.
3601 2009-04-13 Kenichi Handa <handa@m17n.org>
3603 * font.c (font_delete_unmatched): Preserve the order of list elements.
3604 (font_select_entity): Suppress the code to optimize for the same
3606 (font_load_for_lface): Get a font that supports at least ASCII
3609 * ftfont.c (Qja, Qko): New variables.
3610 (fc_charset_table): Delete uniquifier data for iso8859-1.
3611 (ftfont_get_latin1_charset): New function.
3612 (get_adstyle_property): New function.
3613 (ftfont_pattern_entity): Set FONT_ADSTYLE_INDEX of entity for
3615 (ftfont_lookup_cache): Handle the case that KEY is a font-entity.
3616 Delete iso-8859-1 range from the charset of fonts whose adstyle is
3618 (ftfont_get_fc_charset): Call ftfont_lookup_cache with ENTITY.
3619 (ftfont_get_charset): For iso8859-1, call ftfont_get_latin1_charset.
3620 (ftfont_list): Don't refuse a font spec with non-nil `adstyle'
3622 (ftfont_open): Call ftfont_lookup_cache with ENTITY.
3623 (syms_of_ftfont): DEFSYM Qja and Qko.
3625 2009-04-09 Kenichi Handa <handa@m17n.org>
3627 * charset.c (map_charset_chars): For a charset of `superset'
3628 method, fix calculation of code range.
3630 * font.c (font_put_extra): If VAL is nil, delete the slot for PROP
3631 from the list of extra properties.
3632 (font_clear_prop): Be sure to delete `:name' font property.
3634 2009-04-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3636 * dispnew.c (redraw_overlapping_rows): Fix detection of
3637 overlapping for topmost and bottommost rows.
3639 * ftfont.c (ftfont_text_extents): Fix calculation of metrics->descent.
3641 2009-04-06 Jason Rumney <jasonr@gnu.org>
3643 * frame.c (x_set_font): Avoid C99 mid-block variable declaration.
3645 2009-04-06 Kenichi Handa <handa@m17n.org>
3647 * ftxfont.c (ftxfont_draw_backgrond): Fix args to XFillRectangle.
3649 * xftfont.c (xftfont_open): Fix setting font->underline_thickness.
3651 2009-04-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3653 * ftfont.c (ftfont_open): Fix checking of the return value of
3654 FT_Load_Char. Fix setting font->underline_thickness.
3656 2009-04-04 Chong Yidong <cyd@stupidchicken.com>
3658 * terminal.c (Fterminal_name, Fdelete_terminal, Fterminal_name)
3659 (Fterminal_parameters, Fterminal_parameter)
3660 (Fset_terminal_parameter): In doc string, refer to terminal
3661 objects rather than terminal ids.
3663 2009-04-04 Eli Zaretskii <eliz@gnu.org>
3665 * dosfns.c (system_process_attributes) [SYSTEM_MALLOC]: Don't call
3666 ret_lim_data. (Bug#2867)
3668 2009-04-03 Chong Yidong <cyd@stupidchicken.com>
3670 * term.c (produce_stretch_glyph): Reduce width of stretch glyphs
3671 so they don't get wider than the window, matching 2006-01-23
3672 change to the partner function in xdisp.c (Bug#2800).
3674 2009-04-03 Kenichi Handa <handa@m17n.org>
3676 * print.c (print_object): Make each lowest sub_char_table start a
3677 new line (Bug#2866).
3679 2009-04-02 Kenichi Handa <handa@m17n.org>
3681 * fontset.c (fontset_font): Record no-font when a fontset
3682 explicitly tells not to try another font-specs.
3684 2009-03-30 Pierre Poissinger <pierre.poissinger@gmail.com> (tiny change)
3686 * charset.c (map_charset_for_dump): Add missing UNGCPRO.
3688 2009-03-30 Kenichi Handa <handa@m17n.org>
3690 * fontset.c (fontset_from_font): Specify only registry in a
3691 font-spec for all characters supported by that registry.
3693 * ftfont.c: Fix previous change. Define ftfont_variation_glyphs
3694 even if HAVE_M17N_FLT is not defined.
3696 2009-03-29 Sebastian Rose <sebastian_rose@gmx.de> (tiny change)
3698 * ftfont.c: Conditionalize prototyping and use of
3699 ftfont_variation_glyphs.
3701 2009-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
3703 * frame.c (delete_frame): Work around compiler bug.
3705 * editfns.c (general_insert_function): Adjust to insdel.c changes.
3706 * insdel.c (prepare_to_modify_buffer, signal_before_change):
3707 Some more EMACS_INT.
3708 * lisp.h (copy_text, count_size_as_multibyte): Fix last change.
3710 * xdisp.c (dump_glyph): Fix typo.
3712 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
3713 (adjust_markers_gap_motion, adjust_markers_for_delete)
3714 (adjust_markers_for_insert, adjust_point)
3715 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
3716 (make_gap, copy_text, count_size_as_multibyte, insert)
3717 (insert_and_inherit, insert_before_markers)
3718 (insert_before_markers_and_inherit, insert_1)
3719 (count_combining_before, count_combining_after, insert_1_both)
3720 (insert_from_string, insert_from_string_before_markers)
3721 (insert_from_string_1, insert_from_gap, insert_from_buffer)
3722 (insert_from_buffer_1, adjust_after_replace)
3723 (adjust_after_replace_noundo, adjust_after_insert, replace_range)
3724 (replace_range_2, del_range, del_range_1, del_range_byte)
3725 (del_range_both, del_range_2, modify_region)
3726 (prepare_to_modify_buffer, signal_before_change)
3727 (signal_after_change, Fcombine_after_change_execute): Use EMACS_INT
3728 for buffer positions and sizes.
3729 * lisp.h: Adjust prototypes accordingly.
3731 * fileio.c (adjust_markers_for_delete): Move declaration to lisp.h.
3732 (non_regular_inserted, non_regular_nbytes, read_non_regular)
3733 (Finsert_file_contents): Use EMACS_INT for buffer positions.
3735 * fileio.c (Finsert_file_contents): Don't limit size to INT_MAX/4.
3737 2009-03-27 Jan Djärv <jan.h.d@swipnet.se>
3739 * frame.c (x_set_font): If the fullscreen property is non-nil, adjust
3740 lines and columns so we keep the same pixel height and width.
3742 * xterm.c (handle_one_xevent): Call x_handle_net_wm_state if
3743 the property _NET_WM_STATE has changed.
3744 (x_handle_net_wm_state): New function to update frame parameter
3746 (x_term_init): Initialize atoms for _NET_WM_STATE.
3748 * xterm.h (struct x_display_info): Add atoms for _NET_WM_STATE.
3750 2009-03-27 Kevin Ryde <user42@zip.com.au>
3752 * keyboard.c (tty_read_avail_input): Don't treat a -1 return from
3753 Gpm_GetEvent as an error that justifies closing the filedescriptor.
3754 * term.c (close_gpm): Get the filedescriptor as a (new) parameter.
3755 (Fgpm_mouse_stop): Pass that new parameter.
3756 * termhooks.h (close_gpm): Adjust prototype.
3758 2009-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
3760 * lisp.h (Fx_focus_frame): Declare.
3762 * callint.c (Fcall_interactively): For '^' just delegate the work to
3763 handle-shift-selection.
3764 (syms_of_callint): Move declaration of shift-select-mode to simple.el.
3766 2009-03-24 Chong Yidong <cyd@stupidchicken.com>
3768 * editfns.c (Ffloat_time): Doc fix (Bug#2768).
3770 * data.c (Qinteractive_form): New variable.
3771 (Finteractive_form): Use it.
3773 * eval.c (Fcommandp): Use Qinteractive_form.
3775 2009-03-24 Jason Rumney <jasonr@gnu.org>
3777 * fileio.c (Fsubstitute_in_file_name): Always work on a copy.
3778 Calculate total size precisely. Decode environment variables
3779 before substituting. (Bug#38)
3781 2009-03-24 Kenichi Handa <handa@m17n.org>
3783 * font.c (find_font_encoding): Return Qnil for unsupported
3784 encoding (Bug#2722).
3786 2009-03-23 Jan Djärv <jan.h.d@swipnet.se>
3788 * gtkutil.c (xg_display_open): Assign a value to gdpy_def, check
3791 2009-03-22 Alan Mackenzie <acm@muc.de>
3793 * callint.c (Finteractive): Clarify the doc string - even
3794 promptless elements need \n separators.
3796 2009-03-22 Jason Rumney <jasonr@gnu.org>
3798 * w32term.c (syms_of_w32term): Doc fix for
3799 x-use-underline-position-properties.
3801 2009-03-21 Eli Zaretskii <eliz@gnu.org>
3803 * w32.c (getpwuid): Change argument type to unsigned.
3804 (struct w32_id): Change type of `rid' member to unsigned.
3805 (w32_cached_id, w32_add_to_cache, get_name_and_id): Change type of
3806 argument ID to unsigned. All callers changed.
3807 (getuid, geteuid, getgid, getegid): Change return type to unsigned.
3809 2009-03-20 Eli Zaretskii <eliz@gnu.org>
3811 * editfns.c (Fuser_uid, Fuser_real_uid): If UID as EMACS_INT is
3812 negative, produce a float value.
3814 * dired.c (make_uid, make_gid): New functions.
3815 (Ffile_attributes): Use them to avoid negative UID and GID.
3817 2009-03-20 Juanma Barranquero <lekktu@gmail.com>
3819 * keyboard.c (Fcurrent_idle_time): Reflow docstring.
3820 (syms_of_keyboard) <command-hook-internal, input-method-function>:
3821 Fix typos in docstrings.
3823 2009-03-19 Kenichi Handa <handa@m17n.org>
3825 * fontset.c (Fset_fontset_font): When a spec of ASCII font is
3826 changed, use font_load_for_lface to get a new font object.
3827 Call free_realized_fontset after handling ASCII font change.
3829 * frame.c (x_set_font): Handle the case that ARG is a cons.
3831 2009-03-19 Glenn Morris <rgm@gnu.org>
3833 * fileio.c (Fsubstitute_in_file_name): Doc fix.
3835 2009-03-19 Chong Yidong <cyd@stupidchicken.com>
3837 * indent.c (Fvertical_motion): Undo 2005-01-19 change (Bug#2694).
3839 2009-03-19 Kenichi Handa <handa@m17n.org>
3841 * charset.c (load_charset_map_from_file): When a mapfile can't be
3842 loaded, signal an error.
3844 2009-03-18 Eli Zaretskii <eliz@gnu.org>
3846 * dired.c (Ffile_attributes): Make sure UID and GID are always
3847 positive, even if the value is too large for a positive EMACS_INT.
3850 * editfns.c (Fuser_login_name): Support float arguments. Doc fix.
3852 2009-03-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3854 * xmenu.c (xdialog_show): Move Fredisplay call ...
3855 (Fx_popup_dialog): ... here.
3857 2009-03-18 Stefan Monnier <monnier@iro.umontreal.ca>
3859 * dired.c (file_name_completion): Disable the first optimization just
3860 installed, since it is not implemented correctly.
3862 2009-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
3864 * dired.c (file_name_completion): Check completion-ignored-extensions
3865 only if the entry can affect bestmatch.
3866 Stop the search early, as Ftry_completion already does.
3868 2009-03-17 Chong Yidong <cyd@stupidchicken.com>
3870 * minibuf.c (Vminibuffer_completion_confirm): Doc fix.
3872 2009-03-15 Chong Yidong <cyd@stupidchicken.com>
3874 * keyboard.c (parse_menu_item): Don't display remappings as menu
3875 equivalent bindings (Bug#788).
3877 2009-03-15 Jason Rumney <jasonr@gnu.org>
3879 * w32term.h (WM_EMACS_PAINT): New message.
3880 * w32term.c (w32_read_socket): Use it instead of WM_PAINT.
3881 * w32fns.c (w32_wnd_proc): Change WM_PAINT to WM_EMACS_PAINT
3882 before passing to lisp thread. (Bug#950)
3884 2009-03-14 David Reitter <david.reitter@gmail.com>
3886 * nsterm.m (ns_shutdown_properly, -terminate): Remove global state
3887 variable as it was never reset.
3888 (ns_term_init): Remove initialization of Lisp-settable defaults
3889 and ns_expand_space.
3890 (-setPanelFromDefaultValues): Remove ns_expand_space.
3891 (-showPreferencesWindow): Send new KEY_NS_SHOW_PREFS key.
3892 * nsfont.m (nsfont_open): Remove ns_expand_space, assume -0.5
3893 i.e. no additional spacing, similar to Carbon port.
3895 * nsterm.h: Define KEY_NS_SHOW_PREFS key.
3896 * nsfns.m (ns-popup-prefs-panel): Remove.
3898 2009-03-14 Jan Djärv <jan.h.d@swipnet.se>
3900 * sound.c (alsa_configure): Remove call to deprecated
3901 snd_pcm_sw_params_set_xfer_align.
3903 2009-03-14 Stephen Berman <stephen.berman@gmx.net>
3905 * gtkutil.c (xg_tool_bar_callback): Set focus back to the frame
3906 after clicking in a detached tool bar.
3907 (xg_tool_bar_proxy_callback): Remove call to Fx_focus_frame.
3909 2009-03-13 Stefan Monnier <monnier@iro.umontreal.ca>
3911 * fontset.c (fontset_from_font, Ffontset_info): YAILOM (Yet another
3912 int/Lisp_Object mixup).
3914 2009-03-13 Kenichi Handa <handa@m17n.org>
3916 * fontset.c (Ffontset_info, check_fontset_name): New arg frame.
3917 Handle NAME nil and t correctly. Callers changed.
3918 (font_def_arg, add_arg, from_arg, to_arg): Delete them.
3919 (set_fontset_font): Change ARG to a vector. Handle range_list in
3921 (Fset_fontset_font): Fix the case that TARGET is both a script
3922 name and charset name. Adjust the arg to set_fontset_font for
3924 (fontset_from_font): Fix previous change.
3925 (Ffontset_info): Adjust for the 2008-07-09 change of fontset
3926 entry. If FONTSET is the default fontset, don't set the extra
3927 slot of the returning char-table.
3929 2009-03-12 Juanma Barranquero <lekktu@gmail.com>
3931 * nsfns.m (Fx_close_connection): Doc fix.
3932 (Fns_do_applescript): Reflow docstring.
3933 (Fns_hide_others, Fns_hide_emacs, Fns_convert_utf8_nfd_to_nfc)
3934 (Fx_display_pixel_width, Fx_display_pixel_height)
3935 (Fns_display_usable_bounds, Fx_display_planes, Fx_show_tip):
3936 Fix typos in docstrings.
3937 (Fns_set_alpha): Fix typos in error messages.
3939 2009-03-12 David Reitter <david.reitter@gmail.com>
3941 * termhooks.h [HAVE_NS]: Define NS_NONKEY_EVENT to be used for
3942 non-key system events on NS. Formerly, NON_ASCII_KEYSTROKE_EVENT
3943 were used for such events.
3945 * nsterm.m (newFrame, openFile, fulfillService, changeFont)
3946 (toggleToolbar, performDragOperation, runHelp): Use it.
3948 * keyboard.c (parse_menu_item) [HAVE_NS]: Treat new event like
3949 NON_ASCII_KEYSTROKE_EVENT, but set used_mouse_menu.
3951 2009-03-11 Kenichi Handa <handa@m17n.org>
3953 * font.h (font_open_by_spec): Extern it.
3955 * font.c (font_open_by_spec): New function.
3956 (font_open_by_name): Use font_open_by_spec.
3958 * frame.c (x_set_font): When ARG is a font-object, don't alter the
3959 fontset of the frame.
3961 * fontset.c (Fset_fontset_font): When a font for ASCII is changed,
3962 modify the default font of frames that use this fontset.
3963 (num_auto_fontsets): New variable.
3964 (fontset_from_font): Use num_auto_fontsets to decide a fontset
3965 name. Be sure to set FONTSET_ASCII to the correct font name.
3966 (update_auto_fontset_alist): New function.
3968 2009-03-11 Juanma Barranquero <lekktu@gmail.com>
3970 * makefile.w32-in: Update dependencies.
3972 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
3974 * nsfns.m (syms_of_nsfns): Remove Qbuffered.
3976 2009-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
3978 * buffer.c (Fswitch_to_buffer): Revert part of 2008-10-21's change.
3980 2009-03-10 Chong Yidong <cyd@stupidchicken.com>
3982 * lread.c (Feval_buffer): Doc fix.
3984 2009-03-09 Kenichi Handa <handa@m17n.org>
3986 * charset.c (Qfile_name_handler_alist): Extern it.
3987 (load_charset_map_from_file): Temporarily bind
3988 `file-name-handler-alist' to nil while calling openp. (Bug#2435)
3990 2009-03-06 Aaron Ecay <aaronecay@gmail.com> (tiny change)
3992 * nsterm.m (ns_draw_vertical_window_border): Draw 1 pixel wide,
3993 not two, and use NSRectFill instead of NSDrawGroove. (Bug#2352)
3995 2009-03-06 Adrian Robert <Adrian.B.Robert@gmail.com>
3997 * nsterm.m: Include <signal.h> for SIGTERM used in ns_term_shutdown.
3998 (x_set_window_size): Change back to calculated method of setting
3999 toolbar height under Cocoa. (Bug#2546)
4000 (EmacsView-windowWillUseStandardFrame:defaultFrame:): New method.
4001 (EmacsView-drawRect:): Completely shortcircuit if ns_in_resize.
4003 * nsfns.m (ns_appkit_version_int): Fix typo in the version macro.
4005 * nsmenu.m (EmacsMenu-addItemWithWidgetValue:): Don't add
4006 accelerator in parens under GNUstep.
4008 2009-03-06 Kenichi Handa <handa@m17n.org>
4010 These changes are to detect incorrect composition sequence without
4011 looking ahead the source. (Bug#2370)
4013 * coding.h: Include "composite.h".
4014 (enum compisition_state): New enum.
4015 (struct compisition_status): New struct.
4016 (struct iso_2022_spec): New member cmp_status.
4017 (struct emacs_mule_spec): New struct.
4018 (struct coding_system): New members ctext_extended_segment_len and
4019 embedded_utf_8. Change the union member
4020 spec.emacs_mule_full_support to spec.emacs_mule.
4022 * coding.c (CODING_ISO_CMP_STATUS): New macro.
4023 (CODING_ISO_EXTSEGMENT_LEN, CODING_ISO_EMBEDDED_UTF_8): New macros.
4024 (MAX_ANNOTATION_LENGTH): Define to 5.
4025 (ADD_COMPOSITION_DATA): New arg nbytes.
4026 (emacs_mule_char): New arg cmp_status.
4027 (DECODE_EMACS_MULE_COMPOSITION_CHAR): Delete it.
4028 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): New arg c.
4029 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New arg c.
4030 (DECODE_EMACS_MULE_21_COMPOSITION): Delete the arg c.
4031 (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Likewise.
4032 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Likewise.
4033 (DECODE_EMACS_MULE_COMPOSITION_START): New macro.
4034 (EMACS_MULE_COMPOSITION_END): New macro.
4035 (emacs_mule_finish_composition): New function.
4036 (EMACS_MULE_MAYBE_FINISH_COMPOSITION): New macro.
4037 (decode_coding_emacs_mule): Avoid long looking ahead while
4038 handling composition.
4039 (DECODE_COMPOSITION_RULE): Argument changed to rule and nbytes.
4040 (ENCODE_COMPOSITION_RULE): New macro.
4041 (finish_composition): New function.
4042 (MAYBE_FINISH_COMPOSITION): Call finish_composition.
4043 (DECODE_COMPOSITION_START): New implementation.
4044 (DECODE_COMPOSITION_END): Likewise.
4045 (STORE_COMPOSITION_RULE): New macro.
4046 (decode_coding_iso_2022): Avoid long looking ahead while handling
4047 composition, CTEXT extended segment, and embedded UTF-8.
4048 (setup_coding_system): For a coding of type iso-2022, reset
4049 CODING_ISO_EXTSEGMENT_LEN (coding) and
4050 CODING_ISO_EMBEDDED_UTF_8 (coding).
4051 (get_translation): Delete arguments last_block, from_nchars,
4052 to_nchars. Callers changed.
4053 (produce_chars): Don't modify charbuf. Adjusted for the change of
4055 (produce_composition): Adjust for the new annotation sequence.
4056 (handle_composition_annotation): Likewise.
4057 (consume_chars): Adjust for the change of get_translation.
4059 2009-03-05 Adrian Robert <Adrian.B.Robert@gmail.com>
4061 * nsterm.m (ns_select): Shortcircuit if reentrant call. (Bug#2564)
4063 2009-03-05 Kenichi Handa <handa@m17n.org>
4065 * font.c (font_select_entity): New function.
4066 (font_find_for_lface): Use font_select_entity to select a font.
4068 * fontset.c (fontset_find_font): If a font found without
4069 restricting to the characters C doesn't support C, try to find a
4070 font with C restriction.
4072 2009-03-04 Nikolaj Schumacher <me@nschum.de>
4074 * nsfont.m (nsfont_draw): Compare ns_antialias_text against lisp value.
4076 2009-03-04 Jason Rumney <jasonr@gnu.org>
4078 * w32fns.c (w32_wnd_proc): Only ignore IME messages for the
4079 characters that have already been read. (Bug#2569)
4081 * image.c (xbm_read_bitmap_data, png_load, svg_load_image):
4082 Log an error message if check_image_size failed.
4083 (xpm_load_image, pbm_load, jpeg_load, tiff_load, gif_load)
4084 (gs_load): Mention max-image-size in size error message. (Bug#2560)
4086 2009-03-02 Eli Zaretskii <eliz@gnu.org>
4088 * callproc.c (Fcall_process): Bind inhibit-modification-hooks to t
4089 when decoding process output.
4091 2009-03-01 Richard M Stallman <rms@gnu.org>
4093 * m/mips.h (DATA_SEG_BITS, XUINT, XSET): Definitions disabled.
4095 * emacs.c (gdb_data_seg_bits) [USE_LSB_TAG]: Make it 0.
4097 2009-02-28 Eli Zaretskii <eliz@gnu.org>
4099 * coding.c (decode_coding_utf_8, decode_coding_utf_16)
4100 (decode_coding_emacs_mule, decode_coding_iso_2022)
4101 (encode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
4102 (decode_coding_raw_text, decode_coding_charset)
4103 (setup_coding_system, decode_eol, decode_coding, consume_chars):
4104 Honor inhibit-eol-conversion. (Bug #2186)
4106 2009-02-28 Jason Rumney <jasonr@gnu.org>
4108 * coding.c (detect_coding_charset): If not checking latin extra,
4109 fail on characters between 0x80 and 0xA0. (Bug#2354)
4111 2009-02-28 Eli Zaretskii <eliz@gnu.org>
4113 * coding.c (detect_coding_charset): Fix change from 2008-10-21.
4114 Also, check iso-latin-*, not only iso-8859-*. (Bug#2497)
4116 2009-02-27 Glenn Morris <rgm@gnu.org>
4118 * callint.c (Finteractive): Doc fix.
4120 2009-02-27 Kenichi Handa <handa@m17n.org>
4122 * lread.c (read_escape): Signal an error for invalid \UXXXXXXXX.
4124 2009-02-27 Chong Yidong <cyd@stupidchicken.com>
4126 * font.c (font_style_to_value): Set value for unknown symbols to
4128 (weight_table, slant_table, width_table): Treat "unspecified" as
4131 2009-02-26 Juanma Barranquero <lekktu@gmail.com>
4133 * fileio.c (Fnext_read_file_uses_dialog_p): Fix typo in docstring.
4135 2009-02-25 Juanma Barranquero <lekktu@gmail.com>
4137 * lread.c (Fload): Stop checking Vloads_in_progress and signal
4138 error as soon as a recursive load is detected.
4140 2009-02-24 Adrian Robert <Adrian.B.Robert@gmail.com>
4142 * nsterm.m (ns_ring_bell): Convert rect to window coordinates
4145 2009-02-24 Kenichi Handa <handa@m17n.org>
4147 * fontset.c (fontset_find_font): Fix the condition for checking
4150 2009-02-24 Glenn Morris <rgm@gnu.org>
4152 * xfaces.c (Finternal_set_font_selection_order): Remove leading
4153 whitespace that confuses documentation.
4155 2009-02-23 Miles Bader <miles@gnu.org>
4157 * process.c (Flist_system_processes, Fprocess_attributes)
4158 (syms_of_process): Rename `system-process-attributes' to
4159 `process-attributes'.
4161 2009-02-22 Andreas Schwab <schwab@linux-m68k.org>
4163 * coding.h (struct coding_system): Make safe_charsets a pointer to
4165 * coding.c (CODING_ISO_REQUEST): Check for safe_charsets content
4167 (SAFE_CHARSET_P): Likewise.
4168 (setup_iso_safe_charsets): Properly setup safe_charsets.
4169 (Fdefine_coding_system_internal): Likewise.
4170 (setup_coding_system): Likewise. Remove unneeded casts.
4171 (detect_coding_iso_2022): Compare Viso_2022_charset_list with
4172 CODING_ATTR_CHARSET_LIST, not CODING_ATTR_SAFE_CHARSETS. Remove
4175 * insdel.c (del_range_2): Don't modify gap contents when called
4176 from decode_coding_object. (Bug#1809)
4178 2009-02-21 Chong Yidong <cyd@stupidchicken.com>
4180 * data.c (syms_of_data): Define Qfont_spec, Qfont_entity, and
4182 (Ftype_of): Recognize font objects.
4184 * lisp.h: Define Qfont_spec, Qfont_entity, Qfont_object extern.
4186 * font.c (Qfont_spec, Qfont_entity, Qfont_object): Definitions
4189 2009-02-20 Adrian Robert <Adrian.B.Robert@gmail.com>
4191 * nsterm.m (x_make_frame_invisible): Unset async_visible,
4192 async_iconified. Based on a patch by Christian Lynbech
4193 <christian.lynbech@tieto.com>.
4194 (EmacsView-windowDidMiniaturize:): Unset async_visible.
4196 2009-02-20 Glenn Morris <rgm@gnu.org>
4198 * syntax.c (Fskip_chars_forward): Fix doc typo.
4200 2009-02-20 Chong Yidong <cyd@stupidchicken.com>
4202 * keymap.c (Fkeymap_parent): Doc fix (Bug#2391).
4204 2009-02-19 Chong Yidong <cyd@stupidchicken.com>
4206 * xfns.c (Fx_create_frame): Give Xft driver a higher priority.
4208 2009-02-19 Kenichi Handa <handa@m17n.org>
4210 * coding.c (detect_coding): Preserve coding->mode.
4211 Don't overflow coding->carryover. (Bug#2370)
4213 2009-02-18 Dan Nicolaescu <dann@ics.uci.edu>
4215 * m/ibmrs6000.h (ADDR_CORRECT): Restore, removed by mistake on 2008-07-23.
4217 2009-02-18 Kenichi Handa <handa@m17n.org>
4219 * font.c (font_check_otf_features): Fix handling of `nil' element.
4220 (Ffont_spec): Describe :lang and :otf in the docstring.
4222 2009-02-16 Andreas Schwab <schwab@suse.de>
4224 * coding.c (Fcheck_coding_systems_region): Fix test for unibyte
4227 2009-02-16 Kenichi Handa <handa@m17n.org>
4229 * coding.c (Fcheck_coding_systems_region): Fix typo; Qt -> Qnil.
4232 2009-02-14 Chong Yidong <cyd@stupidchicken.com>
4234 * dispextern.h (struct iterator_stack_entry): New line_wrap member.
4236 * xdisp.c (push_it, pop_it): Save and restore line_wrap.
4237 (handle_line_prefix): Suppress wrapping of wrap prefixes.
4239 2009-02-14 Eli Zaretskii <eliz@gnu.org>
4241 * msdos.c (MAX_SCREEN_BUF): New macro.
4242 (IT_write_glyphs): Make screen_buf[] always be MAX_SCREEN_BUF-long.
4243 Encode the entire run of glyphs sharing the same face, instead of
4244 doing that one glyph at a time (fixes a bug with displaying
4245 double-size characters).
4247 2009-02-13 Adrian Robert <Adrian.B.Robert@gmail.com>
4249 * nsfns.m (ns-read-file-name): BLOCK_INPUT while showing dialog.
4251 * nsmenu.m (pop_down_menu): Check popup_activated_flag.
4252 (ns_popup_dialog, EmacsDialogPanel-runDialogAt:): Let
4253 pop_down_menu do the cleanup work as it is always called. (Bug#2154)
4255 * nsfont.m (nsfont_make_fontset_for_font): For now, don't try to
4256 set fontset font for "mathematical-" sub-scripts. (Bug #2218)
4258 2009-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
4260 * keyboard.c (adjust_point_for_property): Allow stopping between two
4263 2009-02-12 Jason Rumney <jasonr@gnu.org>
4265 * w32font.c (check_face_name): Check for fake helv. (Bug#2275)
4266 (add_font_entity_to_list): Call check_face_name even when family
4269 * w32term.c (x_display_pixel_height, x_display_pixel_width):
4270 Release DC when finished. Use NULL window to refer to desktop.
4271 (w32_term_init): Use NULL window to refer to desktop. (Bug#460)
4273 * w32font.c (add_font_entity_to_list): Fix check for substituted
4274 raster fonts. (Bug#2219)
4276 2009-02-12 Kenichi Handa <handa@m17n.org>
4278 * composite.c (MAX_AUTO_COMPOSITION_LOOKBACK): New macro.
4279 (composition_gstring_width): Fix handling of LGLYPH_YOFF.
4280 (autocmp_chars): Use fast_looking_at. Don't compose more
4281 characters than MAX_COMPOSITION_COMPONENTS.
4282 (find_automatic_composition): While looking forward and backward,
4283 check static composition. Fix where to stop looking forward.
4284 (composition_adjust_point): Fix checking of static composition.
4285 (Fcomposition_get_gstring): Pay attention to
4286 MAX_COMPOSITION_COMPONENTS.
4288 * lisp.h (fast_looking_at): Extern it.
4290 * search.c (fast_looking_at): New function.
4292 * term.c (encode_terminal_code): Adjust for the change of
4293 <struct glyph>.u.cmp.to.
4294 (append_composite_glyph): Likewise.
4296 * xdisp.c (fill_gstring_glyph_string): Adjust for the change of
4297 <struct glyph>.u.cmp.to. Check if the glyph belongs to the same
4299 (append_composite_glyph): Adjust for the change of
4300 <strcut glyph>.u.cmp.to.
4302 2009-02-11 Juanma Barranquero <lekktu@gmail.com>
4304 * casetab.c (init_casetab_once):
4305 * coding.c (ALLOC_CONVERSION_WORK_AREA):
4306 * font.c (font_update_lface):
4307 * fontset.c (Fnew_fontset):
4308 * ftfont.c (ftfont_drive_otf):
4309 * xfont.c (xfont_open):
4310 * xftfont.c (xftfont_get_xft_draw): Remove spurious semicolons.
4312 2009-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
4314 * fileio.c (Fwrite_region): !NILP -> CONSP.
4316 2009-02-10 Andreas Schwab <schwab@suse.de>
4318 * process.c (send_process): Properly relocate pointer into data
4319 when using encoded data. (Bug#2272)
4321 2009-02-08 ARISAWA Akihiro <ari@mbf.sphere.ne.jp>
4323 * coding.c (detect_coding_charset): Fix previous change.
4325 2009-02-08 Jason Rumney <jasonr@gnu.org>
4327 * w32fns.c (w32_hide_hourglass): Handle case where frame
4328 disappeared while hourglass was displayed. (Bug #2193)
4330 2009-02-07 Andreas Schwab <schwab@suse.de>
4332 * unexelf.c (unexec): Fix error message.
4334 2009-02-07 Adrian Robert <Adrian.B.Robert@gmail.com>
4336 * nsterm.m (EmacsApp-sendEvent:): Defer NSApplicationDefined event
4337 when modal window is active. (Bug #2152)
4338 (applicationShouldTerminate:): Remove now-unneeded while loop
4339 around NSRunAlertPanel.
4341 * nsmenu.m (popupSession): New file-global variable.
4342 (pop_down_menu): End the popupSession before closing dialog.
4343 (ns_popup_dialog): BLOCK_INPUT around dialog presentation.
4344 (EmacsDialogPanel-runDialogAt:): Don't place window (superfluous),
4345 don't query NSApp for events (just sleep instead).
4347 2009-02-07 Eli Zaretskii <eliz@gnu.org>
4349 * coding.c (syms_of_coding) <translation-table-for-input>:
4350 Modify doc string to discourage use for character code unification.
4352 2009-02-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
4354 * atimer.c (run_timers): Update pending_atimers.
4356 2009-02-06 Chong Yidong <cyd@stupidchicken.com>
4358 * image.c (svg_load_image): Fix last change.
4360 * xfns.c (Fx_create_frame): Signal an error if no font is
4363 2009-02-05 Juanma Barranquero <lekktu@gmail.com>
4365 * character.c (syms_of_character) <script-representative-chars>:
4366 Fix typo in docstring.
4368 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
4370 * nsmenu.m (pop_down_menu): New function.
4371 (ns_popup_dialog): Call it on unwind.
4372 (EmacsDialogPanel-runDialogAt:): Check popup_activated_flag and
4373 call timer_check() (Bug#2154).
4374 (EmacsMenu-menuNeedsUpdate:): Don't call ns_update_menu if
4375 handling_signal is set.
4376 (EmacsMenu-fillWithWidgetValue:): Set submenu title.
4378 * config.in: Get rid of COCOA_EXPERIMENTAL_CTRL_G.
4380 * s/darwin.h: Same and NO_SOCK_SIGIO as well.
4382 * nsterm.m (ns_read_socket): Same and don't set handling_signal.
4384 * keyboard.c (poll_for_input_1, handle_async_input):
4385 Set handling_signal under HAVE_NS.
4387 2009-02-04 Glenn Morris <rgm@gnu.org>
4389 * fileio.c (Fwrite_region): Doc fix (mention annotate-functions).
4391 2009-02-04 Kenichi Handa <handa@m17n.org>
4393 * Makefile.in (composite.o): Depends on frame.h and termhooks.h.
4395 * charset.c (Fchar_charset): New optional arg restriction.
4397 * coding.h (coding_system_charset_list): Extern it.
4399 * coding.c (coding_system_charset_list): New function.
4401 * composite.c: Include coding.h and termhooks.h.
4402 (composition_gstring_p): Fix for the terminal case.
4403 (composition_gstring_width): Likewise.
4404 (fill_gstring_body): Likewise.
4405 (autocmp_chars): For terminal, call Fcomposition_get_gstring with
4407 (composition_compute_stop_pos): Adjust cmp_it->stop_pos if point
4408 is within a composition.
4409 (Fcomposition_get_gstring): Fix the terminal case.
4411 * term.c (encode_terminal_code): Fix handling of composition.
4412 (produce_composite_glyph): For static composition, get pixel_width
4413 from struct composition.
4415 2009-02-02 Andreas Schwab <schwab@suse.de>
4417 * unexelf.c (unexec): Handle unaligned bss offset.
4419 2009-02-01 Adrian Robert <Adrian.B.Robert@gmail.com>
4421 * nsterm.m (ns_read_socket): Copy 2009-01-29 and 2009-01-30
4422 XT,w32read_socket changes to ns_read_socket.
4424 * keyboard.c (handle_interrupt): Don't call
4425 quit_throw_to_read_char() under NS.
4427 * blockinput.h: Remove NS-specific code.
4429 2009-01-30 Dan Nicolaescu <dann@ics.uci.edu>
4431 * dispnew.c (window_change_signal): Don't try to get the size of a
4432 suspended tty frame.
4433 * term.c (Fresume_tty): Resize if the size has changed while the
4436 * alloc.c (mark_stack): Properly conditionalize previous change.
4438 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
4440 * w32inevt.c (w32_console_read_socket) [SYNC_INPUT]:
4441 * w32term.c (w32_read_socket) [SYNC_INPUT]:
4442 Remove; this code is not used on Windows.
4444 2009-01-30 Eli Zaretskii <eliz@gnu.org>
4446 * coding.c (detect_eol, decode_eol): Handle text with DOS-style
4447 EOLs that also has stray ^M characters.
4449 2009-01-30 Juanma Barranquero <lekktu@gmail.com>
4451 * atimer.c (run_timers, alarm_signal_handler):
4452 * keyboard.c (pending_signals, handle_async_input, init_keyboard):
4453 * w32inevt.c (w32_console_read_socket):
4454 * w32term.c (w32_read_socket):
4455 * xterm.c (XTread_socket): Use "#ifdef SYNC_INPUT" where appropriate.
4457 2009-01-30 Chong Yidong <cyd@stupidchicken.com>
4459 * callproc.c (Vtemp_file_name_pattern): Remove DEFVAR_LISP.
4460 Initialize it as a relative filename pattern.
4461 (init_callproc): Don't initialize Vtemp_file_name_pattern here.
4462 (Fcall_process_region): Simplify temp file creation using
4463 temporary-file-directory.
4465 2009-01-29 Eli Zaretskii <eliz@gnu.org>
4467 * msdos.c: Rename pending_signals to msdos_pending_signals.
4468 (sig_suspender, sigprocmask): Adjust.
4470 2009-01-29 Chong Yidong <cyd@stupidchicken.com>
4472 * keyboard.c (pending_signals): New var.
4473 (poll_for_input, input_available_signal, init_keyboard): Set it.
4474 (process_pending_signals): New function.
4476 * lisp.h (QUIT): Check pending_signals instead of
4477 interrupt_input_pending. Use process_pending_signals.
4479 * atimer.c (run_timers, alarm_signal_handler): Update pending_signals.
4481 * process.c (wait_reading_process_output): Use process_pending_signals.
4483 * sysdep.c (emacs_write): Use process_pending_signals.
4485 * xterm.c (XTread_socket): Update pending_signals.
4487 * w32term.c (w32_read_socket): Update pending_signals.
4489 * w32inevt.c (w32_console_read_socket): Update pending_signals.
4491 2009-01-29 Kenichi Handa <handa@m17n.org>
4493 * xftfont.c (xftfont_has_char): New function.
4494 (syms_of_xftfont): Register xftfont_has_char in xftfont_driver.
4496 2009-01-29 Adrian Robert <Adrian.B.Robert@gmail.com>
4498 * nsterm.h (EmacsPrefsController.cursorBlinkSlider): Only define
4500 (ns_query_color): New declaration.
4502 * nsterm.m (ns_confirm_quit): New variable.
4503 (ns_set_default_prefs, syms_of_nsterm, ns_term_init): Initialize it.
4504 (EmacsApp-applicationShouldTerminate:): Use it.
4505 (EmacsPrefsController): Let user set it.
4506 (ns_query_color): New function.
4507 (ns_defined_color): Use it.
4508 (ns_initialize): Drop.
4509 (ns_term_init): Add two lines from ns_initialize(), and set
4510 input_interrupt_mode to nil.
4512 * image.c (svg_load_image): Don't right-shift background RGB when
4513 obtained from FRAME_BACKGROUND_PIXEL. Under HAVE_NS use ns_query_color.
4515 2009-01-28 Kenichi Handa <handa@m17n.org>
4517 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
4518 (fontset_get_font_group): Remember that no font-group is specified
4521 2009-01-27 Chong Yidong <cyd@stupidchicken.com>
4523 * fns.c (concat): Check for string overflow (bug#1787).
4525 * undo.c (undo_limit, undo_strong_limit, Vundo_outer_limit):
4526 Quadruple undo limits (bug#1501).
4528 2009-01-27 Kenichi Handa <handa@m17n.org>
4530 * ftfont.c (ftfont_has_char): If the arg FONT is a font-object,
4531 directly use GT_Get_Char_index.
4533 * xftfont.c (struct xftfont_info): New member `index'.
4535 * fontset.c (font_for_char): Use assq_no_quit, not assoc_no_quit.
4536 (Ffontset_font): Adjust for the change of fontset entry.
4538 2009-01-26 Kenichi Handa <handa@m17n.org>
4540 * fontset.c (fontset_find_font): Fix handling of non-cons return
4541 value of fontset_get_font_group.
4542 (fontset_font): Revert last change.
4544 2009-01-26 Jason Rumney <jasonr@gnu.org>
4546 * w32font.c (w32font_list_internal): Return quickly if registry is
4547 unknown. Simplify final return.
4548 (add_font_entity_to_list): Break complex logic down into more
4549 manageable chunks. Move unknown registry check to
4550 w32font_list_internal.
4552 2009-01-25 Adrian Robert <Adrian.B.Robert@gmail.com>
4554 Changes to remove Feval calls from GUI under NS.
4556 * nsterm.h: Move KEY_NS_... definitions here from nsterm.m.
4557 Add NS_TOGGLE_TOOLBAR, NS_PUT_WORKING_TEXT, NS_UNPUT_WORKING_TEXT.
4558 Remove NS_INSERT_WORKING_TEXT, NS_DELETE_WORKING_TEXT.
4560 * nsterm.m: Move KEY_NS_... definitions to nsterm.h.
4561 (EmacsView-toggleToolbar:): Use KEY_NS_TOGGLE_TOOLBAR.
4562 (EmacsView-setMarkedText:,-deleteWorkingText:): Use NS_TEXT_EVENT
4563 instead of NON_ASCII_KEYSTROKE_EVENT.
4564 (EmacsApp-terminate:): Use KEY_NS_POWER_OFF instead of Feval.
4565 (EmacsApp-applicationShouldTerminate:): Query user.
4566 (EmacsPreferencesController-runHelp:): Use KEY_NS_INFO_PREFS
4569 * termhooks.h (NS_TEXT_EVENT): New event type under HAVE_NS.
4571 * keyboard.c (kbd_buffer_get_event): Check for it.
4572 (keys_of_keyboard): Define lispy keys for
4573 ns-put/unput-working-text.
4575 * nsmenu.m (ns_popup_dialog): Resync window setting with X and W32
4577 (EmacsDialog-runDialogAt:): Use NSModalPanelRunLoopMode.
4579 2009-01-25 Chong Yidong <cyd@stupidchicken.com>
4581 * dispnew.c (buffer_posn_from_coords): Use Fset_buffer instead of
4582 setting current_buffer directly. (Bug#2044)
4584 2009-01-24 Chong Yidong <cyd@stupidchicken.com>
4586 * fontset.c (fontset_font): If we know there is no font, don't do
4587 any work. (Bug#1952, bug#1990).
4589 * font.c (font_parse_xlfd): Handle patterns of length < 2. (Bug#1802)
4591 2009-01-23 Adrian Robert <Adrian.B.Robert@gmail.com>
4593 * emacs.c (main): Do fork+exec under --daemon in Cocoa.
4594 (ns_no_defaults): New declaration.
4597 * nsterm.h (ns_no_defaults): New declaration.
4599 * nsfns.m (x_get_string_resource): Don't read when ns_no_defaults.
4601 * nsterm.m (ns_no_defaults): New variable.
4602 (ns_initialize): Don't read defaults when ns_no_defaults.
4603 (EmacsView-readSelectionFromPasteboard:)
4604 (writeSelectionToPasteboard:types:): New stubbed-out methods for
4605 NSServicesRequests protocol. (Bug#1435)
4606 (ns_dumpglyphs_stretch): New function.
4607 (ns_draw_glyph_string): Use it, parallel Yamamoto Mitsuharu change
4608 of 2008-11-15 to other terms. (Bug#615)
4610 * nsimage.m (setPixmapData:): Set to ignore image DPI.
4612 2009-01-23 Giorgos Keramidas <keramida@freebsd.org> (tiny change)
4614 * alloc.c (mark_stack): Use "flushw" instead of "ta 3" assembly
4617 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4624 * nsterm.m: Remove '23' comments that indicated code added during
4625 update from emacs-20 -> emacs-23.
4627 2009-01-22 Adrian Robert <Adrian.B.Robert@gmail.com>
4629 * nsterm.m (EmavsView-keyDown:): Treat nil as Qnone for
4630 ns_alternate_modifier. (Bug#1217)
4632 * nsmenu.m (EmacsMenu-parseKeyEquiv:, addItemWithWidgetValue:):
4633 Display all shortcuts, including those w/o super modifier.
4635 * nsfns.m (ns-read-file-name): Fix typo in assignment statement.
4637 2009-01-22 Chong Yidong <cyd@stupidchicken.com>
4639 * fileio.c (Vwrite_region_post_annotation_function)
4640 (Vwrite_region_annotation_buffers): New vars.
4641 (build_annotations_unwind): Just reset
4642 Vwrite_region_annotation_buffers.
4643 (Fwrite_region): Initialize Vwrite_region_annotation_buffers.
4644 Call write-region-post-annotation-function.
4645 (build_annotations): Add to Vwrite_region_annotation_buffers if
4648 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4650 * nsterm.h (EmacsApp-setAppleMenu:): Conditionalize more correctly on
4652 * nsfns.m (ns_do_applescript):
4653 Conditionalize typeUTF16ExternalRepresentation on Tiger.
4655 2009-01-21 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
4657 * nsterm.m (EV_TRAILER): Always use emacsframe for frame_or_window.
4659 2009-01-21 Adrian Robert <Adrian.B.Robert@gmail.com>
4661 * nsmenu.m (NSMENUPROFILE): Change #if style.
4663 * nsterm.h (EmacsPrefsController): Add -setPanelFromDefaultValues.
4665 * nsterm.m (x_set_frame_alpha): Add prototype.
4666 (ns_fake_keydown, EmacsView-keyUp:): New variable and function to
4667 handle Ctrl-tab. (Bug#1841)
4668 (ns_get_color): Use unsigned long long for scanned hex string value.
4669 (ns_term_shutdown): Abort on non SIGTERM signals.
4670 (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
4671 (EmacsPrefsController-setPanelFromDefaultValues): New function.
4672 (EmacsPrefsController-resetToDefaults:): Use it. (Bug#1801)
4673 (ns_font_to_xlfd, ns_fontname_to_xlfd): Remove, unused.
4674 (ns_defined_color): Fix settings of the XColor variable fields:
4675 red,green,blue scale to 2-byte, pixel's parts to 1-byte. (Bug#1663)
4677 * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore image
4679 (EmacsImage-setPixelAtX:Y:toRed:green:blue:alpha:): Fix color
4680 values in onTiger section.
4682 2009-01-19 Chong Yidong <cyd@stupidchicken.com>
4684 * xfaces.c (Finternal_set_lisp_face_attribute, Fx_list_fonts):
4685 Check return value of font_spec_from_name.
4686 (Fx_list_fonts): Doc fix. (Bug#1951)
4688 * font.c (font_spec_from_name): Return Qnil if font name could not
4690 (font_parse_name): Treat a `?' character as part of an XLFD.
4692 * fns.c (Fsubstring): Doc fix.
4694 2009-01-19 Kenichi Handa <handa@m17n.org>
4696 * ftfont.c (ftfont_lookup_cache): Check the return value of FcFontList.
4697 (ftfont_list): Likewise.
4699 2009-01-18 Juanma Barranquero <lekktu@gmail.com>
4701 * dbusbind.c (Fdbus_register_signal):
4702 * process.c (conv_sockaddr_to_lisp):
4703 * w32fns.c (Fw32_battery_status): Use empty_unibyte_string.
4705 * callproc.c (Fgetenv_internal): Doc fix.
4707 2009-01-16 Chong Yidong <cyd@stupidchicken.com>
4709 * xfns.c (x_make_gc): Don't allocate stipple member for gc_values;
4710 it is not even used.
4712 2009-01-16 Glenn Morris <rgm@gnu.org>
4714 * font.c (Ffont_variation_glyphs): Silence compiler.
4716 2009-01-15 Juanma Barranquero <lekktu@gmail.com>
4718 * sound.c (SOUND_WARNING): Use _snprintf, for MSVC compatibility.
4719 Reported by David Robinow <drobinow@gmail.com>.
4721 2009-01-15 Kenichi Handa <handa@m17n.org>
4723 * coding.c (detect_coding_system): Fix handling of null_byte_found.
4725 2009-01-14 Jason Rumney <jasonr@gnu.org>
4727 * frame.c (x_set_font): Always store a font to the font parameter,
4728 never a fontset. (Bug#1562)
4730 2009-01-14 Kenichi Handa <handa@m17n.org>
4732 * coding.c (TWO_MORE_BYTES): New macro.
4733 (detect_coding_utf_16): Use TWO_MORE_BYTES instead of ONE_MORE_BYTE.
4735 2009-01-13 Chong Yidong <cyd@stupidchicken.com>
4737 * font.c (font_clear_prop): If clearing the family, clear the font
4740 * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
4742 2009-01-12 Juanma Barranquero <lekktu@gmail.com>
4744 * sound.c [WINDOWSNT] (SOUND_WARNING): New macro.
4745 (do_play_sound): Use it. Don't pass a hardcoded buffer size to mci
4746 functions, use sizeof.
4748 2009-01-12 Martin Rudalics <rudalics@gmx.at>
4750 * keyboard.c (read_char): Fix case where last_nonmenu_event
4751 returned a bad value with submenus. (Bug#447)
4753 2009-01-12 Chong Yidong <cyd@stupidchicken.com>
4755 * xfaces.c (Finternal_set_lisp_face_attribute): If setting the
4756 family, clear the font width index too.
4758 2009-01-11 Jason Rumney <jasonr@gnu.org>
4760 * keyboard.c (cmd_error_internal): Exit when errors occur before
4761 frame creation and not in daemon mode. (Bug#1836)
4763 2009-01-10 Chong Yidong <cyd@stupidchicken.com>
4765 * xdisp.c (pos_visible_p): When iterator stops on the last glyph
4766 of a display vector, backtrack.
4767 (try_window_reusing_current_matrix): Check glyph type before
4768 referencing charpos member.
4770 2009-01-10 Eli Zaretskii <eliz@gnu.org>
4774 * coding.c (inhibit_null_byte_detection): New variable.
4775 (detect_coding, detect_coding_system): Don't pay attention to null
4776 bytes if inhibit_null_byte_detection is non-zero.
4777 (syms_of_coding) <inhibit-null-byte-detection>: Declare and document.
4778 <inhibit-iso-escape-detection>: Doc fix.
4780 2009-01-09 Jason Rumney <jasonr@gnu.org>
4782 * w32font.c (add_font_entity_to_list): Don't report unknown
4783 Windows charset as any unrecognized registry. (Bug#1548)
4784 Only report Unicode Plane 2 fonts as unicode-sip.
4786 2009-01-09 Chong Yidong <cyd@stupidchicken.com>
4788 * xfaces.c (Fx_font_family_list): Delete function.
4789 Move compatibility version to faces.el.
4791 * font.c (Ffont_family_list): Return a list of strings, not symbols.
4793 2009-01-09 Martin Rudalics <rudalics@gmx.at>
4795 * frame.c (x_set_frame_parameters): Remember requested value for
4796 fullscreen before it's reset by the parameter handler.
4798 2009-01-09 Glenn Morris <rgm@gnu.org>
4800 * keyboard.c (last_command_char): For clarity, rename to...
4801 (last_command_event): ... and update all users.
4802 (last_input_char): For clarity, rename to...
4803 (last_input_event): ... and update all users.
4804 (last-command-char, last-input-char): Move to subr.el as aliases.
4805 * cmds.c, commands.h: Update for last_command_char rename.
4807 2009-01-08 Chong Yidong <cyd@stupidchicken.com>
4809 * font.c (font_open_for_lface): Handle unspecified height attribute.
4811 2009-01-08 Jason Rumney <jasonr@gnu.org>
4813 * w32fns.c (Vx_pointer_shape, Vx_nontext_pointer_shape)
4814 (Vx_mode_pointer_shape, Vx_window_horizontal_drag_shape)
4815 (Vx_hourglass_pointer_shape, Vx_sensitive_text_pointer_shape):
4817 (syms_of_w32fns): Don't define x-pointer-shape variable. (Bug#1485)
4818 (x_create_tip_frame) [GLYPH_DEBUG]: Enable image debugging code.
4820 2009-01-07 Kenichi Handa <handa@m17n.org>
4822 * fileio.c (Finsert_file_contents): In the case of replace,
4823 remember the coding system used for decoding in
4824 coding_system (Bug#1039).
4826 * coding.c (decode_coding_utf_8): Check byte_after_cr before
4827 breaking the loop. (Bug#870)
4828 (decode_coding_utf_16, decode_coding_emacs_mule)
4829 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
4830 (decode_coding_charset): Likewise.
4832 2009-01-05 Martin Rudalics <rudalics@gmx.at>
4834 * frame.c (x_set_frame_parameters): Make sure height (width) get
4835 applied when fullwidth (fullheight) is set. (Bug#1522)
4837 2009-01-04 Juanma Barranquero <lekktu@gmail.com>
4839 * w32.c: Use 64-bit arithmetic to do FILETIME conversions. (Bug#1766)
4840 (utc_base): Declare as ULONGLONG, not long double.
4841 (convert_time_raw): Delete.
4842 (FILETIME_TO_U64, U64_TO_LISP_TIME): New macros.
4843 (initialize_utc_base): New function.
4844 (convert_time): Use FILETIME_TO_U64, initialize_utc_base.
4845 (convert_from_time_t): Use initialize_utc_base; compute result with
4847 (process_times): Use FILETIME_TO_U64, U64_TO_LISP_TIME.
4849 2009-01-03 Eli Zaretskii <eliz@gnu.org>
4851 * process.c (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess)
4852 (Qttname, Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime)
4853 (Qcutime, Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs)
4854 (Quser, Qgroup, Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime)
4855 [!subprocesses]: Define.
4856 (syms_of_process) [!subprocesses]: Intern and staticpro them.
4857 (Flist_system_processes, Fsystem_process_attributes)
4858 [!subprocesses]: Call list_system_processes and
4859 system_process_attributes instead of returning Qnil.
4861 * dosfns.c (system_process_attributes, list_system_processes):
4864 * vm-limit.c (ret_lim_data) [MSDOS]: New function.
4866 * sysdep.c (list_system_processes, system_process_attributes) [MSDOS]:
4867 Don't use the default (no-op) implementation.
4869 2009-01-03 Jason Rumney <jasonr@gnu.org>
4871 * keyboard.c (parse_modifiers_uncached): Wheel events are
4874 * w32term.c (x_query_colors, x_query_color): New functions.
4876 * image.c (x_to_xcolors, png_load): Eliminate W32 specific code.
4877 (svg_load_image): Cast returned pointers from dynamically loaded
4878 functions. Eliminate W32 specific code.
4880 2009-01-02 Dan Nicolaescu <dann@ics.uci.edu>
4882 * nsfns.m (x_set_foreground_color, x_set_background_color)
4883 (x_set_cursor_color, x_set_icon_name, x_explicitly_set_name)
4884 (x_set_title, x_set_icon_type, x_set_cursor_type): Rename to use
4885 x_ prefix instead of ns_. Update references.
4886 (syms_of_nsfns): Add a FIXME comment.
4888 * nsterm.m (x_set_cursor_type): New prototype.
4889 (setValuesFromPanel): Use it instead of the old ns_ prefixed name.
4891 * sysdep.c (system_process_attributes): Provide Qtime and Qctime
4892 for Solaris instead of incorrectly providing Qutime and Qcutime.
4894 2009-01-02 Eli Zaretskii <eliz@gnu.org>
4896 * w32.c (process_times): Compute sum of utime and stime.
4897 (system_process_attributes): Add Qtime to the alist.
4899 * sysdep.c (system_process_attributes): Compute Qtime and Qctime
4900 and add them to the alist.
4902 * process.c (top level) <Qtime, Qctime>: New variables.
4903 (syms_of_process): staticpro them.
4904 (Fsystem_process_attributes): Add their documentation to the doc
4907 * process.h: Declare Qtime and Qctime.
4909 2009-01-02 Jason Rumney <jasonr@gnu.org>
4911 * image.c (Qgobject): New symbol.
4912 (syms_of_image): Initialize it.
4913 (init_svg_functions): Load some functions from gobject library.
4915 2009-01-01 Dan Nicolaescu <dann@ics.uci.edu>
4917 * frame.c (make_terminal_frame): Remove redundant code and useless
4920 2009-01-01 Andreas Schwab <schwab@suse.de>
4922 * process.c (conv_sockaddr_to_lisp): Add workaround for
4923 getsockname bug on BSD.
4925 2009-01-01 Chong Yidong <cyd@stupidchicken.com>
4927 * xfns.c (x_create_tip_frame): Set border width of the X window.
4929 * xfaces.c (Finternal_set_lisp_face_attribute): Improve error message.
4931 2009-01-01 Jason Rumney <jasonr@gnu.org>
4933 * w32term.c (x_new_font): Return font object, not fontset. (Bug#119)
4934 Don't block input, as per earlier xterm.c changes.
4936 2008-12-31 Adrian Robert <Adrian.B.Robert@gmail.com>
4938 * nsfns.m (ns_appkit_version_str): Rename from ns_appkit_version.
4939 (ns_appkit_version_int): New function.
4940 (x-server-version): Use ns_appkit_version_int and follow 21+
4941 convention of returning 3 integers.
4943 2008-12-30 Kenichi Handa <handa@m17n.org>
4945 * character.h (CHAR_VARIATION_SELECTOR_P): New macro.
4946 (CHAR_SURROGATE_PAIR_P): New macro.
4948 * font.h (struct font_driver): New member get_variation_glyphs.
4950 * font.c (font_range): Don't require a font for a variation selector.
4951 (Ffont_variation_glyphs): New function.
4952 (syms_of_font): Defsubr it.
4954 * ftfont.c (ftfont_driver): Set the member get_variation_glyphs to
4955 ftfont_variation_glyphs.
4956 (setup_otf_gstring): New function.
4957 (ftfont_drive_otf): Use it.
4958 (ftfont_shape_by_flt): Handle variation selector.
4959 (ftfont_variation_glyphs): New function.
4961 2008-12-30 Martin Rudalics <rudalics@gmx.at>
4963 * frame.c (Vemacs_iconified): Remove.
4965 2008-12-30 Jason Rumney <jasonr@gnu.org>
4967 * frame.c (store_frame_param, x_get_arg): Enable newer code on
4968 WINDOWSNT too, as related changes have already been synced. (Bug#117)
4970 2008-12-30 Chong Yidong <cyd@stupidchicken.com>
4972 * indent.c (Fvertical_motion): Don't advance iterator if we have
4973 reseated to the desired position.
4975 * xdisp.c (move_it_to): Handle GET_FROM_STRETCH method when
4976 checking for pos match.
4978 2008-12-30 Kenichi Handa <handa@m17n.org>
4980 * insdel.c (copy_text): To convert a non-ASCII char to unibyte,
4981 just get the low 8-bit of the code.
4983 * font.c (font_intern_prop): Validate str as multibyte.
4985 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
4987 * dispextern.h (struct face): Move lface and hash from the middle
4990 * Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
4992 2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
4994 * Makefile.in (INTERVAL_SRC): Also depend on dispextern.h.
4995 (coding.o, dispnew.o, keymap.o, msdos.o): Depend on INTERVAL_SRC
4996 instead of intervals.h.
4998 2008-12-26 Andreas Schwab <schwab@suse.de>
5000 * keymap.c (map_keymap_char_table_item): Make a copy of KEY if it is a
5003 2008-12-26 Martin Rudalics <rudalics@gmx.at>
5005 * textprop.c (Qminibuffer_prompt): New variable.
5006 (syms_of_textprop): Initialize it.
5007 * callint.c (Fcall_interactively): For `c', `k', and `K' prompt
5008 in minibuffer-prompt face. (Bug#1662)
5010 2008-12-25 Jason Rumney <jasonr@gnu.org>
5012 * buffer.c (Fbuffer_swap_text): Use POINTER_TYPE.
5014 2008-12-24 Jason Rumney <jasonr@gnu.org>
5016 * ralloc.c (r_alloc_reset_variable): New function.
5018 * buffer.c (Fbuffer_swap_text) [REL_ALLOC]: Reset ralloc's internal
5019 record of what points where. (Bug#716)
5021 2008-12-22 Dan Nicolaescu <dann@ics.uci.edu>
5023 * minibuf.c (read_minibuf): Follow the non-interactive case when
5024 running as a daemon, before detaching.
5026 2008-12-22 Andreas Schwab <schwab@suse.de>
5028 * buffer.c (init_buffer): Use realloc instead of xrealloc.
5029 * gtkutil.c (free_widget_value): Use xfree instead of free.
5031 2008-12-22 Martin Rudalics <rudalics@gmx.at>
5033 * frame.c (delete_frame): New function derived from
5034 Fdelete_frame to handle Qnoelisp value for FORCE argument.
5035 Delete last frame iff FORCE equals Qnoelisp. (Bug#1450)
5036 (Fdelete_frame): Call delete_frame. Remove line from doc-string
5037 saying that FORCE non-nil doesn't run `delete-frame-functions'.
5038 * frame.h: Extern delete_frame.
5039 * window.c (window_loop):
5040 * terminal.c (delete_terminal):
5041 * xterm.c (x_connection_closed):
5042 * xfns.c (Fx_hide_tip):
5043 * w32fns.c (Fx_hide_tip): Call delete_frame instead of Fdelete_frame.
5045 2008-12-21 Jason Rumney <jasonr@gnu.org>
5047 * w32uniscribe.c (uniscribe_encode_char): Return FONT_INVALID_CHAR
5048 when character maps to .notdef character.
5050 2008-12-21 Stefan Monnier <monnier@iro.umontreal.ca>
5052 * keyboard.c (cmd_error_internal): Don't exit in daemon mode, bug#1310.
5054 2008-12-20 Jason Rumney <jasonr@gnu.org>
5056 * frame.c (Fmake_terminal_frame): Raise an error when called from
5057 a graphical frame on Windows. (Bug#1325)
5059 2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
5061 * frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.
5063 2008-12-20 Chong Yidong <cyd@stupidchicken.com>
5065 * minibuf.c (Fread_buffer): Doc fix.
5067 2008-12-20 Jason Rumney <jasonr@gnu.org>
5069 * fileio.c (Fexpand_file_name): Do not allow ../ to go beyond the
5070 server name in UNC paths. (Bug#719)
5072 * coding.c (decode_coding): Clear chars_at_source flag when using
5075 2008-12-19 Daniel Engeler <engeler@gmail.com>
5077 * sysdep.c (serial_configure): Fix typo.
5079 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
5081 * sysdep.c: Include alloca.h.
5082 (system_process_attributes): Add implementation for Solaris.
5084 * s/sol2-10.h (HAVE_PROCFS, _STRUCTURED_PROC): New defines.
5086 2008-12-19 Dan Nicolaescu <dann@ics.uci.edu>
5088 Reorganize implementation of Flist_system_processes and
5089 Fsystem_process_attributes. No functional changes.
5090 * process.c: Don't #include pwd.h, grp.h and limits.h.
5091 (Flist_system_processes): Just call list_system_processes.
5092 (Fsystem_process_attributes): Just call system_process_attributes.
5093 (procfs_list_system_processes, time_from_jiffies)
5094 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
5095 (procfs_get_total_memory, procfs_system_process_attributes): Move ...
5097 * sysdep.c: ... here. Include pwd.h, grp.h and limits.h.
5098 (list_system_processes): Rename from
5099 procfs_list_system_processes. Enclose in #ifdef HAVE_PROCFS.
5100 Provide a do nothing implementation.
5101 (system_process_attributes): Rename from
5102 procfs_list_system_processes.
5103 (ltime_from_jiffies, get_up_time, procfs_ttyname, MAJOR, MINOR)
5104 (procfs_get_total_memory): Enclose in #ifdef GNU_LINUX.
5106 * w32.c (list_system_processes): Rename from
5107 w32_list_system_processes.
5108 (system_process_attributes): Rename from
5109 w32_system_process_attributes.
5111 * s/gnu-linux.h (LISTPROC, PROCATTR): Remove.
5113 * process.h (w32_list_system_processes)
5114 (w32_system_process_attributes): Remove.
5115 (list_system_processes, system_process_attributes):
5118 2008-12-19 Kenichi Handa <handa@m17n.org>
5120 * xfont.c (xfont_decode_coding_xlfd): New function.
5121 (xfont_encode_coding_xlfd): New function.
5122 (xfont_list_pattern): Decode XLFD by iso-8859-1.
5123 (xfont_list): Decode and encode XLFD by iso-8859-1.
5124 (xfont_match): Likewise.
5125 (xfont_list_family): Likewise.
5126 (xfont_open): Likewise.
5128 * ftfont.c (ftfont_open): Generate a multibyte string if given
5131 * xftfont.c (xftfont_open): Generate a multibyte string if given
5134 2008-12-18 Jan Djärv <jan.h.d@swipnet.se>
5136 * gtkutil.c (xg_frame_resized): Remove check if rows/columns have
5138 (xg_tool_bar_proxy_callback): Put focus on the frame after we have
5139 clicked on a detached tool bar button.
5141 2008-12-18 Dan Nicolaescu <dann@ics.uci.edu>
5143 * emacs.c (main): Print and error and exit when no data is read
5146 2008-12-17 Jason Rumney <jasonr@gnu.org>
5148 * w32font.c (w32font_has_char): Always return -1.
5150 2008-12-16 Kenichi Handa <handa@m17n.org>
5152 * font.c (font_open_entity): Fix previous change.
5154 2008-12-16 Dan Nicolaescu <dann@ics.uci.edu>
5156 * process.c: Include <limits.h>.
5158 2008-12-16 Chetan Pandya <pandyacus@sbcglobal.net> (tiny change)
5160 * font.c (font_update_drivers): Fix mistake in reconstructing the
5163 2008-12-16 Chong Yidong <cyd@stupidchicken.com>
5165 * font.c (font_clear_cache): Fix format of font cache data.
5167 2008-12-15 Chong Yidong <cyd@stupidchicken.com>
5169 * xftfont.c (xftfont_open): Free Xft font pattern if
5170 XftFontOpenPattern fails.
5172 * xterm.c (x_free_frame_resources): Remove extraneous call to
5175 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
5177 * xterm.c (x_delete_display): Move xim_close_dpy call to
5179 (x_delete_terminal): Call xim_close_dpy.
5181 2008-12-13 Jason Rumney <jasonr@gnu.org>
5183 * w32font.c (intern_font_name): New function.
5184 (add_font_name_to_list, w32_enumfont_pattern_entity): Use it.
5185 (w32font_open_internal, Fx_select_font): Decode font name.
5186 (fill_in_logfont, list_all_matching_fonts): Encode font name.
5188 * w32font.h (intern_font_name): Declare new function.
5190 * w32uniscribe.c (add_opentype_font_name_to_list):
5191 Use intern_font_name.
5193 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
5195 * frame.c (Fdelete_frame): Call free_font_driver_list.
5197 * font.c (free_font_driver_list): Implement missing function.
5199 * w32term.c (w32_term_init): Don't initialize the image cache
5200 here; it will be done in init_frame_faces.
5202 * xterm.h (struct xim_inst_t): Definition moved from xterm.c.
5203 (struct x_display_info): Remove unused member null_pixel. New
5204 member xim_callback_data.
5206 * xterm.c (struct xim_inst_t): Definition moved to xterm.h.
5207 (xim_initialize): Save pointer to callback function data.
5208 (xim_close_dpy): Free callback function data. Call XCloseIM,
5209 reverting 2008-11-04 change by David Smith.
5210 (x_term_init): Don't initialize the image cache here; it will be
5211 done in init_frame_faces. Remove ancient "null_pixel" cruft.
5212 (x_delete_display): Free x_dnd_atoms member.
5214 2008-12-13 Kenichi Handa <handa@m17n.org>
5216 * font.c (font_rescale_ratio): Moved from xfaces.c.
5217 Argument type changed. Handle a font-spec too.
5218 (font_score): Check Vface_font_rescale_alist.
5219 (font_open_entity): Likewise. (Bug#1547)
5221 * xfaces.c (font_rescale_ratio): Moved to font.c.
5223 2008-12-13 Chong Yidong <cyd@stupidchicken.com>
5225 * xfns.c (Fx_wm_set_size_hint): Check if the frame is an X frame.
5227 2008-12-12 Jason Rumney <jasonr@gnu.org>
5229 * w32fns.c (x_display_info_for_name, Fx_open_connection): Set
5230 Vwindow_system_version to the real w32 major version.
5232 2008-12-12 Dan Nicolaescu <dann@ics.uci.edu>
5234 * term.c (init_tty): Move setting the terminal name before the
5235 potential user: maybe_fatal.
5237 2008-12-11 Chong Yidong <cyd@stupidchicken.com>
5239 * term.c (tty_free_frame_resources): Renamed from delete_tty_output;
5240 all callers changed. Call free_frame_faces to free the face cache.
5242 2008-12-11 Jason Rumney <jasonr@gnu.org>
5244 * w32font.c (fill_in_logfont): Don't assume symbol script means
5245 SYMBOL_CHARSET. (Bug#547)
5247 * w32uniscribe.c (uniscribe_encode_char): Increase glyph buffer
5248 size for surrogates. (Bug#1096, bug#872)
5250 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
5252 * w32proc.c (Fw32_get_locale_info): Decode long form of locale name.
5254 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
5256 * process.c (Fsystem_process_attributes, syms_of_process):
5257 Fix typo in name of Ssystem_process_attributes.
5258 Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
5260 2008-12-11 Juanma Barranquero <lekktu@gmail.com>
5262 * syntax.c (Fmodify_syntax_entry): Doc fix.
5264 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
5266 * font.c (Ffont_spec): Move usage to end of docstring.
5268 2008-12-10 Jason Rumney <jasonr@gnu.org>
5270 * w32font.c (Qcham): New symbol.
5271 (font_supported_scripts): Add cham, and comments for other new
5272 scripts in bitfield from OpenType spec.
5273 (add_font_entity_to_list): Limit unicode-sip fonts to those that
5274 contain characters beyond the bmp.
5276 2008-12-10 Kenichi Handa <handa@m17n.org>
5278 * ftfont.c (fc_charset_table): Add "unicode-sip".
5279 (ftfont_spec_pattern): Lookup fc_charset_table for the registry
5282 2008-12-10 Juanma Barranquero <lekktu@gmail.com>
5284 * coding.c (QCdefault_char): Rename from QCdefalut_char.
5285 (Fcoding_system_put): Use QCdefault_char.
5286 (syms_of_coding): Set QCdefault_char, not QCdefalut_char.
5288 2008-12-09 Chong Yidong <cyd@stupidchicken.com>
5290 * xftfont.c (syms_of_xftfont): Fix typo.
5292 * buffer.c (Fbuffer_swap_text): Signal error if swapping a dead buffer.
5294 2008-12-08 Dan Nicolaescu <dann@ics.uci.edu>
5296 * emacs.c (main): Close daemon_pipe on exec.
5298 2008-12-08 Chong Yidong <cyd@stupidchicken.com>
5300 * termchar.h (struct tty): New members termcap_term_buffer and
5301 termcap_strings_buffer.
5303 * term.c (encode_terminal_code): Free any previous memory blocks
5304 before calling xmalloc for encode_terminal_src or encode_terminal_dst.
5305 (maybe_fatal): Buffer argument deleted. Don't free buffer here.
5306 All callers changed.
5307 (init_tty): Store termcap data and string buffers in new struct
5308 tty members termcap_term_buffer and termcap_strings_buffer.
5309 (delete_tty): Free them.
5310 (syms_of_term): Initialize encode_terminal_src and encode_terminal_dst.
5312 2008-12-07 Seiji Zenitani <zenitani@mac.com>
5314 * nsfns.m (ns_set_background_color): Remove code duplication.
5315 It was a substitute for face-transparency on OS X 10.3.
5317 2008-12-06 Chong Yidong <cyd@stupidchicken.com>
5319 * coding.c (make_conversion_work_buffer): Disable buffer
5320 modification hooks in the work buffer.
5322 2008-12-05 Eli Zaretskii <eliz@gnu.org>
5324 * process.c (procfs_system_process_attributes): If `nread' has a
5325 negative value, assign zero to it.
5327 2008-12-05 Chong Yidong <cyd@stupidchicken.com>
5329 * eval.c (Vdebug_on_error): Doc fix.
5331 2008-12-05 Kenichi Handa <handa@m17n.org>
5333 * ftfont.c (ftfont_shape_by_flt): Use "combining" flt if the
5334 second character is a combining character.
5336 2008-12-05 Eli Zaretskii <eliz@gnu.org>
5338 * process.c (procfs_system_process_attributes): Don't use cmd,
5339 cmdsize, and q without initializing them first.
5341 2008-12-04 Jason Rumney <jasonr@gnu.org>
5343 * w32font.c (w32font_draw): Initialize orig_clip before getting
5344 it, and delete it when finished.
5346 2008-12-04 Dan Nicolaescu <dann@ics.uci.edu>
5348 * keyboard.c (kbd_buffer_get_event): Follow the non-interactive
5349 case when running as a daemon before detaching.
5351 2008-12-03 Juanma Barranquero <lekktu@gmail.com>
5353 * w32.c (init_environment): Don't unload library shell32.dll.
5355 2008-12-03 Kenichi Handa <handa@m17n.org>
5357 * font.c (font_at): Set `multibyte' at first.
5359 * coding.c (decode_coding_charset): Check type of an element of
5361 (encode_coding_emacs_mule): Be sure to set `code'.
5363 * fontset.c (face_for_char): Handle invalid charset property correctly.
5364 (font_for_char): Likewise.
5366 2008-12-03 Chong Yidong <cyd@stupidchicken.com>
5368 * font.c (Fopen_font): Compute pixel size correctly.
5369 (font_update_lface): Handle fonts with corrupted size specs,
5370 i.e. non-int and non-float.
5372 * ftfont.c (ftfont_match): Initialize entity variable.
5373 (ftfont_resolve_generic_family): Avoid using uninitialized var.
5374 (ftfont_list_family): Initialize list var earlier.
5376 * xselect.c (Fx_get_cut_buffer_internal): Fix memory leak.
5378 * xterm.c (x_draw_glyph_string): Fall back on
5379 underline_minimum_offset for underline position.
5381 2008-12-03 Dan Nicolaescu <dann@ics.uci.edu>
5383 * keyboard.c (read_char_help_form_unwind): Specify the type for ARG.
5385 * character.c (c_string_width): Specify the type for LEN.
5387 2008-12-03 Kenichi Handa <handa@m17n.org>
5389 * coding.c (decode_coding_utf_16): Initialize consumed_chars_base to 0.
5390 (decode_coding_utf_8): Likewise.
5391 (detect_coding_system): Initialize utf_16_le_eol to -1, val to Qnil.
5392 (produce_chars): Initialize consumed_chars to 0.
5394 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
5396 * keyboard.c (make_lispy_position): Only use PT if the selected
5399 2008-12-02 Andreas Schwab <schwab@suse.de>
5401 * font.c (font_unparse_fcname): Fix use of uninitialized variable.
5403 * doprnt.c (doprnt1): Fix size of charbuf.
5405 2008-12-02 Chong Yidong <cyd@stupidchicken.com>
5407 * keyboard.c (timer_check): Revert last change.
5409 2008-12-02 Juanma Barranquero <lekktu@gmail.com>
5411 * makefile.w32-in ($(BLD)/w32console.$(O)): Fix silly, silly typo.
5413 2008-12-01 Juanma Barranquero <lekktu@gmail.com>
5415 * makefile.w32-in: Update dependencies.
5416 (CONFIG_H): Add $(EMACS_ROOT)/nt/inc/sys/time.h.
5418 2008-12-01 Andreas Schwab <schwab@suse.de>
5420 * font.c (register_font_driver): Use xmalloc.
5421 (font_put_frame_data): Likewise.
5423 2008-12-01 Chong Yidong <cyd@stupidchicken.com>
5425 * xfaces.c (realize_x_face): Make abort condition clearer.
5427 * gtkutil.c (update_frame_tool_bar): Initialize variable.
5429 2008-11-30 Chong Yidong <cyd@stupidchicken.com>
5431 * keyboard.c (timer_check): After a timer runs, ensure that the
5432 selected window's buffer is current.
5434 2008-11-30 Juanma Barranquero <lekktu@gmail.com>
5436 * makefile.w32-in ($(BLD)/abbrev.$(O)): Remove.
5437 It was accidentally restored by the Unicode merge.
5439 * w32proc.c (Fw32_get_locale_info): Fix typo in docstring.
5441 2008-11-29 Juanma Barranquero <lekktu@gmail.com>
5443 * w32proc.c: Include "coding.h".
5444 (Fw32_short_file_name): Encode filename passed to Windows API.
5445 (Fw32_long_file_name): Encode filename passed to Windows API and
5446 decode back the result. (Bug#1433)
5448 2008-11-29 Kenichi Handa <handa@m17n.org>
5450 * charset.h (CHAR_CHARSET_P): Check if the encoder is loaded or
5451 not before accessing it.
5453 * charset.c (Fdefine_charset_internal): After calculating
5454 min_char, max_char, and fastmap, copy the charset structure again.
5455 (encode_char): Fix the previous change.
5457 2008-11-28 Seiji Zenitani <zenitani@mac.com>
5459 * frame.c (x_set_alpha) [NS_IMPL_COCOA]: Call x_set_frame_alpha.
5461 * nsfns.m (ns_frame_parm_handlers): Set alpha handler.
5463 * nsterm.m (x_set_frame_alpha): New function.
5465 2008-11-27 Eli Zaretskii <eliz@gnu.org>
5467 * xfaces.c (Fx_font_family_list, syms_of_xfaces): Fix last change.
5469 2008-11-27 Juanma Barranquero <lekktu@gmail.com>
5471 * w32font.c (add_font_entity_to_list): Pass the right LOGFONT
5472 pointer to check_face_name.
5474 2008-11-27 Kenichi Handa <handa@m17n.org>
5476 * category.h (SET_CATEGORY_SET): Call set_category_set.
5477 (set_category_set): Extern it.
5479 * category.c (hash_get_category_set): New function.
5480 (Fmodify_category_entry): Adjusted for the change of
5481 char_table_ref_and_range. Call hash_get_category_set to get a
5482 category set to store in the table.
5484 * character.h (MAYBE_UNIFY_CHAR): Call maybe_unify_char instead of
5487 * charset.h (enum charset_method): Delete CHARSET_METHOD_MAP_DEFERRED.
5488 (DECODE_CHAR): Check if the decoder vector is ready.
5489 (ENCODE_CHAR): Check if the encoder char-table is ready.
5490 (maybe_unify_char): Extern it.
5492 * charset.c (Vchar_unified_charset_table): Delete it.
5493 (inhibit_load_charset_map): New variable.
5494 (temp_charset_work): New variable.
5495 (SET_TEMP_CHARSET_WORK_ENCODER, GET_TEMP_CHARSET_WORK_ENCODER)
5496 (SET_TEMP_CHARSET_WORK_DECODER, GET_TEMP_CHARSET_WORK_DECODER):
5498 (load_charset_map): Meaning of control_flag changed. If
5499 inhibit_load_charset_map is nonzero, setup a table in
5501 (load_charset): New argument control_flag.
5502 (map_charset_for_dump): New function.
5503 (map_charset_chars): If inhibit_load_charset_map is nonzero, use
5504 map_charset_for_dump.
5505 (Fdefine_charset_internal): If the charset method is MAP, load
5506 mapping tables by calling load_charset.
5507 (Funify_charset): Don't load a mapping table but directly set
5509 (maybe_unify_char): New function.
5510 (decode_char): Don't handle the deleted method MAP_DEFERRED.
5511 Handle the case of inhibit_load_charset_map being nonzero.
5512 (encode_char): Don't handle the deleted method MAP_DEFERRED.
5513 Handle the case of inhibit_load_charset_map being nonzero.
5514 (Fclear_charset_maps): Just free temp_charset_work.
5515 (syms_of_charset): Make `inhibit-load-charset-map' a Lisp
5518 * chartab.c (sub_char_table_ref_and_range): Adjusted for the
5519 change of char_table_ref_and_range.
5520 (char_table_ref_and_range): Change the meaning of argument FROM
5521 and TO. Now the caller must provide initial values for *FROM
5524 * fontset.c (fontset_add): Adjusted for the change of
5525 char_table_ref_and_range.
5526 (fontset_get_font_group): Likewise.
5527 (Ffontset_info): Likewise.
5529 * keymap.c (describe_vector): Adjusted for the change of
5530 char_table_ref_and_range. For char-table, put boundary between
5531 non-ASCII and 8-bit characters.
5533 * print.c (print_object): For bool-vector, delete unnecessary
5534 check of ASCII_BYTE_P.
5536 2008-11-26 Jason Rumney <jasonr@gnu.org>
5538 * w32font.c (w32font_open_internal): Don't include external
5539 leading in font height. (Bug#879)
5541 2008-11-26 Glenn Morris <rgm@gnu.org>
5543 * xfaces.c (Fx_font_family_list): Replace lisp/term/pc-win.el
5544 redefinition with ifdef. (Bug#1383)
5546 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5548 * nsterm.m (ns_get_color): Handle long hex strings (fixes bug #1044).
5550 2008-11-24 Wolfgang Lux <wolfgang.lux@gmail.com> (tiny change)
5552 * nsterm.m (-otherMouseDown:, -otherMouseUp:, -otherMouseDragged):
5553 New EmacsView methods.
5554 (EV_UDMODIFIERS, EV_BUTTON): Add OtherMouse constants.
5555 Fixes bug #1048,1357,1414.
5557 2008-11-24 Adrian Robert <Adrian.B.Robert@gmail.com>
5560 * image.c (x_clear_image_1): Do not free background under HAVE_NS, it
5561 is not an indexed color.
5562 * nsterm.m (free_indexed_color): Add argument checking.
5563 * nsfns.m: Move config.h to before system includes (advised by Dan N.).
5565 2008-11-24 Chong Yidong <cyd@stupidchicken.com>
5567 * minibuf.c (Fcompleting_read, Vminibuffer_completion_confirm):
5568 Document confirm-after-completion value for
5569 minibuffer-completion-confirm.
5571 2008-11-24 Jason Rumney <jasonr@gnu.org>
5573 * w32font.c (check_face_name): Use xstrcasecmp. Avoid compiler
5576 2008-11-23 Jason Rumney <jasonr@gnu.org>
5578 * w32uniscribe.c (uniscribe_encode_char): Ensure context is
5579 restored before returning.
5581 * w32font.c (check_face_name): New function.
5582 (add_font_entity_to_list): Use it to filter out common substituted
5585 2008-11-22 Martin Rudalics <rudalics@gmx.at>
5587 * buffer.c (Fswitch_to_buffer): Reword and mention new option
5588 confirm-nonexistent-file-or-buffer in doc-string.
5590 2008-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
5592 * buffer.c (Fbuffer_swap_text): Remove redundant marker manipulation.
5593 Fix copy/paste typo. Add checks.
5595 2008-11-21 Kenichi Handa <handa@m17n.org>
5597 * coding.c (detect_coding_iso_2022): Reject invalid composition
5599 (DECODE_COMPOSITION_START): If the current source is the last
5600 block, and the current composition doesn't end, regard this
5601 sequence as invalid.
5602 (decode_coding_iso_2022): Handle invalid composition sequence.
5604 2008-11-20 Martin Rudalics <rudalics@gmx.at>
5606 * window.c (coordinates_in_window): Don't return
5607 ON_VERTICAL_BORDER for the rightmost position of a mode/header
5608 line when the window is not the rightmost one. (Bug#1372)
5610 2008-11-16 Ben North <ben@redfrontdoor.org> (tiny change)
5612 * buffer.c (syms_of_buffer): Fix doc-string of cursor-type.
5614 2008-11-15 Eli Zaretskii <eliz@gnu.org>
5616 * msdos.c (run_msdos_command): Don't call dos_ttcooked, dos_ttraw,
5617 and bright_bg if noninteractive is non-zero.
5619 2008-11-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5621 * xterm.c (x_draw_glyph_string): For stretch glyphs, don't call
5622 x_draw_glyph_string_background.
5624 * w32term.c (x_draw_glyph_string): Likewise.
5626 2008-11-15 Chong Yidong <cyd@stupidchicken.com>
5628 * xterm.c (x_draw_glyph_string): Stop drawing the background of
5629 the next glyph string once past the overhang width.
5631 * nsterm.m (ns_draw_glyph_string): Likewise.
5633 * w32term.c (x_draw_glyph_string): Likewise.
5635 2008-11-14 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
5637 * fileio.c (Finsert_file_contents): Decrement specpdl_ptr to avoid
5640 2008-11-14 Martin Rudalics <rudalics@gmx.at>
5642 * window.c (window_loop): In DELETE_BUFFER_WINDOWS case, reset
5643 dedicated status of window before attempting to display another
5646 2008-11-14 Juanma Barranquero <lekktu@gmail.com>
5648 * msdos.c (Fmsdos_long_file_names):
5649 (syms_of_msdos) <dos-unsupported-char-glyph>:
5650 * dosfns.c (Fint86): Fix typos in docstrings.
5652 2008-11-14 Eli Zaretskii <eliz@gnu.org>
5654 * makefile.w32-in (OBJ1, WIN32OBJ): Fix whitespace.
5656 2008-11-14 Katsumi Yamaoka <yamaoka@jpl.org>
5658 * puresize.h (BASE_PURESIZE): Increase to 1260000.
5660 2008-11-12 Michal Nazarewicz <mina86@tlen.pl> (tiny change)
5662 * frame.c (x_set_alpha): Set alpha to -1 if nil given.
5664 * frame.h: Negative alpha means "don't touch".
5666 * w32term.c (x_set_frame_alpha): Do nothing if alpha is negative.
5668 * xterm.c (x_set_frame_alpha): Do nothing if alpha is negative.
5670 2008-11-12 Dan Nicolaescu <dann@ics.uci.edu>
5674 * acldef.h: Remove files used only for systems no longer supported.
5676 * Makefile.in: Fix .o alphabetical ordering.
5677 (hftctl.o): Remove dependency, file removed.
5678 (keymap.o, print.o): Depend on charset.h.
5680 2008-11-10 Kenichi Handa <handa@m17n.org>
5682 * character.c (Fget_byte): Fix and make it faster for unibyte target.
5684 2008-11-08 Chong Yidong <cyd@stupidchicken.com>
5686 * dired.c (file_name_completion): If completion_ignore_case is
5687 enabled, ignore case when checking completion-regexp-list.
5689 2008-11-08 Eli Zaretskii <eliz@gnu.org>
5691 * vm-limit.c (get_lim_data): Fix last change.
5693 2008-11-08 Kenichi Handa <handa@m17n.org>
5695 * character.c (Fget_byte): New function.
5696 (syms_of_character): Defsubr Fget_byte.
5698 2008-11-07 Chong Yidong <cyd@stupidchicken.com>
5700 * xdisp.c (try_window_reusing_current_matrix): Ensure that window
5701 cursor position is valid after scrolling.
5703 2008-11-06 Juanma Barranquero <lekktu@gmail.com>
5705 * fns.c (Frandom): Rename arg N to LIMIT to match the docs; doc fix.
5707 2008-11-06 Glenn Morris <rgm@gnu.org>
5709 * xterm.c (handle_one_xevent): Don't let popup menus cause
5710 mouse-autoselect-window related window switching. (Bug#1261)
5712 2008-11-04 David Smith <davidsmith@acm.org> (tiny change)
5714 * xterm.c (xim_close_dpy): Avoid double-free on X11R6 XIM.
5716 2008-11-04 Andreas Schwab <schwab@suse.de>
5718 * xfns.c (Fx_wm_set_size_hint): Add missing return value.
5720 2008-11-03 Chong Yidong <cyd@stupidchicken.com>
5722 * xfns.c (Fx_wm_set_size_hint): New function.
5724 2008-11-03 Martin Rudalics <rudalics@gmx.at>
5726 * textprop.c (Fprevious_single_char_property_change): Return 0
5727 when there's no change in a string. (Bug#1301)
5729 2008-11-02 Martin Rudalics <rudalics@gmx.at>
5731 * frame.c (do_switch_frame): New argument NORECORD passed to
5733 (Fselect_frame): New argument NORECORD passed to
5735 (Fset_frame_selected_window): New argument NORECORD passed to
5737 (Fhandle_switch_frame, Fdelete_frame): Handle NORECORD argument
5738 in call of do_switch_frame.
5739 (Fset_mouse_position, Fset_mouse_pixel_position, Fraise_frame):
5740 Handle NORECORD argument in call of Fselect_frame.
5741 * lisp.h (do_switch_frame, Fselect_frame)
5742 (Fset_frame_selected_window): Adjust declarations.
5743 * window.c (select_frame_norecord): New function.
5744 (run_window_configuration_change_hook): Use it and call
5745 Fselect_frame with NORECORD set.
5746 (Fselect_window): Pass NORECORD to Fselect_frame.
5747 (Fset_window_configuration): Handle NORECORD argument in call of
5749 * minibuf.c (choose_minibuf_frame): Handle NORECORD in call of
5750 Fset_frame_selected_window.
5751 * keyboard.c (command_loop_1): Handle NORECORD in call of
5752 Fselect_frame (currently ifdefd).
5754 2008-11-02 Ulrich Mueller <ulm@kph.uni-mainz.de>
5756 * emacs.c (USAGE2): Untabify.
5758 2008-11-01 Stefan Monnier <monnier@iro.umontreal.ca>
5760 * composite.c (fill_gstring_header): Fix copy/paste typo.
5762 2008-10-31 Martin Rudalics <rudalics@gmx.at>
5764 * window.c (Fnext_window, Fprevious_window): Rewrite doc-string.
5765 (Fother_window): Rename argument and rewrite doc-string.
5766 (select_window_norecord): Fix return value. (Bug#1276)
5768 2008-10-30 Juanma Barranquero <lekktu@gmail.com>
5770 * w32fns.c (x_create_tip_frame): Prevent default foreground color for
5771 new frames overriding foreground for tooltips. Based on similar patch
5772 from Martin Rudalics <rudalics@gmx.at>. (Bug#1032)
5774 2008-10-29 Chong Yidong <cyd@stupidchicken.com>
5776 * emacs.c (Fdaemon_initialized): Initialize nfd.
5778 2008-10-29 Martin Rudalics <rudalics@gmx.at>
5780 * window.c (Fwindow_height, Fdelete_window, set_window_buffer)
5781 (Fwindow_text_height): Clarify doc-strings.
5782 * xdisp.c (syms_of_xdisp): Mention set-window-buffer in
5783 doc-string of window-scroll-functions.
5785 2008-10-28 Reiner Steib <Reiner.Steib@gmx.de>
5787 * category.c (syms_of_category): Fix typo in docstring.
5789 2008-10-28 Juanma Barranquero <lekktu@gmail.com>
5791 * window.c (Fwindowp, Fwindow_live_p, Fwindow_minibuffer_p)
5792 (Fcoordinates_in_window_p, Fscroll_left, Fscroll_right):
5793 Fix typos in docstrings.
5795 2008-10-28 Dan Nicolaescu <dann@ics.uci.edu>
5797 * emacs.c (daemon_pipe): Make non-static.
5798 (IS_DAEMON): Move definition ...
5799 * lisp.h (IS_DAEMON): ... here.
5800 (daemon_pipe): Declare.
5801 (is_daemon): Remove.
5802 * dispnew.c (init_display): Use IS_DAEMON.
5804 2008-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
5806 * xdisp.c (pos_visible_p, redisplay_internal, message3_nolog)
5807 (message2_nolog): Check FRAME_INITIAL_P instead of noninteractively.
5809 * emacs.c (is_daemon): Remove.
5810 (main): Don't set is_daemon.
5811 (IS_DAEMON): New macro.
5812 (Fdaemonp, Fdaemon_initialized): Use it.
5813 (Fdaemon_initialized): Write a char into the pipe to make sure the
5815 (syms_of_emacs): Explicitly initialize daemon_pipe[1].
5817 2008-10-27 Chong Yidong <cyd@stupidchicken.com>
5819 * nsterm.m (ns_draw_window_cursor): When hbar cursor is on
5820 over-sized glyph, draw it with the default glyph width.
5822 * w32term.c (x_draw_bar_cursor): When hbar cursor is on over-sized
5823 glyph, draw it with the default glyph width.
5825 * xterm.c (x_draw_bar_cursor): When hbar cursor is on over-sized
5826 glyph, draw it with the default glyph width.
5828 * xdisp.c (try_scrolling): When computing the distance from the
5829 scroll margin to PT, try moving some distance past the window
5830 bottom before giving up.
5832 2008-10-27 Martin Rudalics <rudalics@gmx.at>
5834 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p)
5835 (Fset_window_buffer): Explain in doc-string that a window can be
5836 "strongly" dedicated to its buffer.
5838 2008-10-27 Dan Nicolaescu <dann@ics.uci.edu>
5840 * emacs.c (daemon_name): New variable.
5841 (main): Deal with --daemon=SERVER_NAME.
5842 (Fdaemonp): Return a name if one was passed to --daemon.
5844 2008-10-26 Romain Francoise <romain@orebokech.com>
5846 * emacs.c (daemon_pipe): New variable.
5847 (main): Create a pipe before forking, make the parent exit only after
5848 the child has closed its end of the pipe. Move closing the
5850 (Fdaemon_initialized): ... here. New function.
5852 2008-10-26 Stefan Monnier <monnier@iro.umontreal.ca>
5854 * chartab.c (Foptimize_char_table): Make sure `ascii' doesn't point to
5855 the previous unoptimized table.
5857 * window.c (Fset_window_buffer): Undo 2008-10-18 change to re-instate
5858 the distinction between non-nil and non-t value of `dedicated'.
5860 2008-10-25 Chong Yidong <cyd@stupidchicken.com>
5862 * keyboard.c (read_char_minibuf_menu_prompt): Ensure that
5863 read_char_minibuf_menu_text is large enough to hold the menu string.
5865 2008-10-25 Martin Rudalics <rudalics@gmx.at>
5867 * window.c (Fget_buffer_window, Fdelete_windows_on)
5868 (Freplace_buffer_in_windows): Make buffer argument optional and
5869 rename to buffer_or_name.
5871 2008-10-24 Chong Yidong <cyd@stupidchicken.com>
5873 * xdisp.c (handle_single_display_spec, handle_display_prop):
5874 Undo 2005-05-16 change.
5875 (handle_stop): Pop iterator if it's loaded with an empty string.
5876 (get_overlay_strings_1): Don't save iterator if it's loaded with
5877 an empty string (bug#1201).
5879 2008-10-24 Kenichi Handa <handa@m17n.org>
5881 * ftfont.c (ftfont_otf_features): Fix previous change.
5882 (ftfont_otf_capability): Check FeatureList.FeatureCount before
5883 calling ftfont_otf_features.
5885 2008-10-24 Kenichi Handa <handa@m17n.org>
5887 * font.c (font_match_p): Fix for the case that a vector of
5888 characters is in script-representative-chars.
5890 2008-10-24 Michael Albinus <michael.albinus@gmx.de>
5892 * dbusbind.c (xd_in_read_queued_messages): New variable.
5893 (XD_SIGNAL1, XD_SIGNAL2, XD_SIGNAL3): New macros. Throw Qdbus_error.
5894 (xd_read_queued_messages): Catch Qdbus_error from the macros.
5895 (all): Replace xsignal1, xsignal2, xsignal3 by the respective
5898 2008-10-23 Ali Bahrami <ali_gnu@emvision.com> (tiny change)
5900 * s/sol2-10.h: New file.
5902 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
5904 * xdisp.c (fill_glyph_string): Fix typo in source (though the
5905 poor beast has survived 9+ years and the jump from xterm.c!).
5907 2008-10-23 Martin Rudalics <rudalics@gmx.at>
5909 * buffer.c (Fget_buffer_create): Rename arg to buffer_or_name.
5911 (Fbury_buffer): In doc-string say what happens to the buffer's window.
5913 2008-10-23 Juanma Barranquero <lekktu@gmail.com>
5915 * character.c (syms_of_character) <script-representative-chars>:
5916 <unicode-category-table>: Doc fixes.
5918 2008-10-23 Noah Friedman <friedman@splode.com>
5920 * coding.c (make_conversion_work_buffer): Check that
5921 Vcode_conversion_reused_workbuf is a live buffer, otherwise call
5924 2008-10-23 Kenichi Handa <handa@m17n.org>
5926 * font.c (font_add_log): Check the values of extra properties.
5928 2008-10-22 Martin Rudalics <rudalics@gmx.at>
5930 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
5932 (Fset_window_parameter): Use NILP.
5933 (Fscroll_up, Fscroll_down, Fminibuffer_selected_window)
5934 (Frecenter): Use "selected" instead of "current" window in doc-strings.
5936 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
5938 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
5940 2008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
5942 * nsfns.m (ns_appkit_version): New function.
5943 (x-server-version): Use it.
5944 (syms_of_nsfns): Define ns-version-string here, not nsterm.m.
5945 (x-server-vendor): Don't check_ns().
5947 * nsterm.m (syms_of_nsterm): Drop ns-version-string.
5949 2008-10-22 Juanma Barranquero <lekktu@gmail.com>
5951 * w32fns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
5952 Copied from 2005-02-03 change to xfns.c by Kim F. Storm.
5954 2008-10-22 Kenichi Handa <handa@m17n.org>
5956 * syntax.c (scan_words): Call word_boundary_p instead of comparing
5959 * category.c (word_boundary_p): Check scripts instead of charset.
5960 Handle nil value in word-separating-categories and
5961 word-combining-categories.
5962 (syms_of_category): Fix docstrings of word-separating-categories
5963 and word-combining-categories.
5965 2008-10-21 Eli Zaretskii <eliz@gnu.org>
5967 * coding.c (Fencode_coding_region, Fdecode_coding_region)
5968 (Fdecode_coding_string, Fencode_coding_string): Doc fix.
5970 2008-10-21 Martin Rudalics <rudalics@gmx.at>
5972 * buffer.c (Fget_buffer, Fbury_buffer, switch_to_buffer_1):
5973 Rename arg "buffer" to "buffer_or_name".
5974 (Fkill_buffer): Rename arg "buffer" to "buffer_or_name" and make
5976 (no_switch_window): Remove since the return value is not used.
5977 (Fswitch_to_buffer): Rename arg "buffer" to "buffer_or_name".
5978 Consider window as dedicated when Fwindow_dedicated_p returns a
5980 * lisp.h: Remove prototype for no_switch_window.
5982 2008-10-21 Jan Djärv <jan.h.d@swipnet.se>
5984 * emacs.c (main): Unconditionally set PER_LINUX32 and exec
5985 temacs when dumping if HAVE_PERSONALITY_LINUX32 is defined.
5987 2008-10-21 Kenichi Handa <handa@m17n.org>
5989 * coding.c (detect_coding_charset): For iso-8859-* coding systems,
5990 check Vlatin_extra_code_table.
5992 2008-10-20 Eli Zaretskii <eliz@gnu.org>
5994 * fileio.c (Fset_file_modes): Doc fix.
5996 2008-10-19 Michael Albinus <michael.albinus@gmx.de>
5998 * dbusbind.c (XD_OBJECT_TO_DBUS_TYPE): Handle simple type symbols
6001 2008-10-19 Martin Rudalics <rudalics@gmx.at>
6003 * window.c (Fwindow_dedicated_p, Fset_window_dedicated_p):
6004 Mention kill-buffer in doc-string.
6005 (Fset_window_buffer): Reinsert tem check removed in last commit.
6006 (Fenlarge_window, Fshrink_window): Have argument names and
6007 doc-string follow Elisp manual more closely.
6009 2008-10-18 Eli Zaretskii <eliz@gnu.org>
6011 * fileio.c (Fset_file_modes): Doc fix.
6013 2008-10-18 Martin Rudalics <rudalics@gmx.at>
6015 * window.c (Fwindow_width, Fset_window_start)
6016 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter)
6017 (Fdelete_windows_on, Freplace_buffer_in_windows):
6018 Make doc-strings follow code and Elisp manual more closely.
6019 (Fwindow_dedicated_p): Make window argument optional.
6020 (Fset_window_dedicated_p): Rename argument "arg" to "flag".
6021 (Fset_window_buffer): Respect any non-nil dedicated value for
6022 window. Rename "buffer" argument to "buffer_or_name".
6024 2008-10-18 Ulrich Mueller <ulm@gentoo.org>
6026 * m/sh3.h: New file, machine description for SuperH.
6028 2008-10-17 Martin Rudalics <rudalics@gmx.at>
6030 * window.c (Fsplit_window): Rename arg horflag to horizontal.
6032 2008-10-17 Kenichi Handa <handa@m17n.org>
6034 * ftfont.c (ftfont_otf_features): Fix indexing
6035 gsub_gpos->FeatureList.Feature. Check the validity of indices.
6037 2008-10-16 Magnus Henoch <mange@freemail.hu>
6039 * dbusbind.c (Fdbus_call_method): Unbreak usage line.
6040 (Fdbus_call_method_asynchronously): Ditto.
6041 This change makes C-h f display the argument list.
6043 2008-10-16 Chong Yidong <cyd@stupidchicken.com>
6045 * fileio.c (Fexpand_file_name): Doc fix.
6047 * xfaces.c (Finternal_set_lisp_face_attribute): Make null values
6048 of :foreground and :background equivalent to unspecified (20.x
6051 2008-10-15 Eli Zaretskii <eliz@gnu.org>
6053 * buffer.c (syms_of_buffer): Doc fix.
6055 2008-10-14 Kenichi Handa <handa@m17n.org>
6057 * font.c (font_clear_prop): When clearing font width, clear the
6058 average width field too.
6060 2008-10-12 Andreas Schwab <schwab@suse.de>
6062 * ftfont.c (ftfont_shape_by_flt): Make static.
6063 * ftfont.h (ftfont_shape_by_flt): Don't declare.
6065 * font.c: Don't include <m17n-flt.h>.
6067 2008-10-10 Eli Zaretskii <eliz@gnu.org>
6069 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Decrease to 10000.
6071 2008-10-09 Eli Zaretskii <eliz@gnu.org>
6073 * frame.c (make_terminal_frame) [MSDOS]: Remove unused #ifdef'ed
6076 2008-10-09 Chong Yidong <cyd@stupidchicken.com>
6078 * dispnew.c (update_text_area): Avoid looping due to large glyph
6079 overhangs (bug#1070).
6081 2008-10-09 Kenichi Handa <handa@m17n.org>
6083 * fontset.c (face_for_char): If face->fontset is negative, just
6086 * font.c (font_delete_unmatched): Fix previous change.
6087 Don't reject an entity if DPI and AVGWIDTH of an entity are 0.
6089 2008-10-09 Martin Rudalics <rudalics@gmx.at>
6091 * frame.c (Fraise_frame): On text-only terminals select frame in
6092 order to make it visible. (Bug#1061)
6094 2008-10-08 Chong Yidong <cyd@stupidchicken.com>
6096 * fontset.c (fontset_find_font): Check frame validity.
6098 2008-10-07 Chong Yidong <cyd@stupidchicken.com>
6100 * gtkutil.c (xg_display_open): Reset default display if none exists.
6101 (xg_display_close): Allow Emacs to close all displays (bug#985).
6103 2008-10-06 Andreas Schwab <schwab@suse.de>
6105 * sysdep.c (sys_signal): Always set SA_RESTART when noninteractively.
6107 2008-10-06 Chong Yidong <cyd@stupidchicken.com>
6109 * emacs.c (Vbefore_init_time, Vafter_init_time): Move from startup.el.
6111 * lisp.h (Vbefore_init_time, Vafter_init_time): Declare.
6113 * gtkutil.c (x_wm_set_size_hint): Return immediately if called
6114 during initialization.
6116 2008-10-04 Eli Zaretskii <eliz@gnu.org>
6118 * xdisp.c (redisplay_internal): If frame switched, redisplay the
6119 whole thing on MSDOS frames as well as on a TTY.
6121 * dispnew.c (update_frame): Flush termscript for MSDOS frames as
6123 (Fopen_termscript): Allow opening a termscript on MSDOS frames as
6126 * sysdep.c (init_sys_modes): Set FRAME_GARBAGED_P for MSDOS frames
6129 * systime.h (EMACS_TIME_CMP): Cast EMACS_SECS values to `long'.
6131 * dispnew.c (change_frame_size_1): Set FrameRows and FrameCols for
6132 MSDOS frames as well.
6134 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6136 * image.c (x_clear_image_1): Under NS, call ns_free_indexed_color with
6138 * menu.c (find_and_return_menu_selection): Add cast.
6140 2008-10-03 Glenn Morris <rgm@gnu.org>
6142 * emacs.c (USAGE1): Add --daemon.
6144 2008-10-02 Eli Zaretskii <eliz@gnu.org>
6146 * process.c (procfs_system_process_attributes): Multiply `pcpu' by
6147 100, so it's in percents as advertised.
6149 2008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com>
6151 * nsterm.h (ns_cursor_types, ns_output.desired_cursor_color)
6152 (ns_output.current_cursor, ns_output.desired_cursor)
6153 (ns_output.last_inactive, FRAME_CURSOR, FRAME_NEW_CURSOR)
6154 (FRAME_NEW_CURSOR_COLOR): Remove.
6156 * nsfns.m (ns_set_cursor_color): Use FRAME_CURSOR_COLOR.
6157 (ns_lisp_to_cursor_type, ns_cursor_type_to_lisp): Use core Emacs
6158 enumeration (HOLLOW_BOX_CURSOR, etc.).
6160 * nsterm.m (ns_frame_rehighlight): Remove commented code.
6161 (draw_window_cursor): Simplify code.
6162 (EmacsView-windowDidBecomeKey:,-windowDidResignKey:):
6163 Don't change cursor type. In latter, call rehighlight instead of doing
6165 (EmacsPrefsController-setPanelFromValues,-setValuesFromPanel):
6166 Use core Emacs cursor types.
6168 * xdisp.c (draw_glyphs): Don't call notice_overwritten_cursor under NS.
6170 2008-10-02 Martin Rudalics <rudalics@gmx.at>
6172 * process.c (Faccept_process_output): Fix doc-string.
6174 2008-10-02 Dan Nicolaescu <dann@ics.uci.edu>
6176 * gmalloc.c (__sbrk): Also define for uClibc.
6178 * s/gnu-linux.h (GNU_LIBRARY_PENDING_OUTPUT_COUNT): Add definition
6181 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6183 * nsfont.m (nsfont_spec_to_traits): Use UnXX masks only for non-normal
6185 (nsfont_open): Reenable the cache.
6187 2008-10-01 Adrian Robert <Adrian.B.Robert@gmail.com>
6189 * font.c (font_matching_entity): Reflect ATTRS in font selection.
6190 (font_find_for_lface) [HAVE_NS]: Don't ignore case.
6192 2008-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
6194 * dispnew.c (Fsend_string_to_terminal): Don't try to send a string to
6195 a suspended terminal.
6197 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
6199 * dbusbind.c (xd_signature): Use strcat instead of sprintf.
6201 2008-09-30 Eli Zaretskii <eliz@gnu.org>
6203 * Makefile.in (MSDOS_SUPPORT): Remove ccl.elc and codepage.elc.
6205 2008-09-30 Chong Yidong <cyd@stupidchicken.com>
6207 * xdisp.c (move_it_to): Don't advance the iterator if the last tab
6208 in a continued line coincides with a line beginning.
6210 2008-09-29 Adrian Robert <Adrian.B.Robert@gmail.com>
6212 * nsfont.m (nsfont_trait_distance): Fix bug.
6213 (nsfont_list): Return a list rather than a vector (syncs with Handa
6214 changes of 2008-05-14).
6215 (nsfont_open): Improve logging.
6217 2008-09-29 Andreas Schwab <schwab@suse.de>
6219 * keyboard.c (syms_of_keyboard) <input-decode-map>: Doc fix.
6221 2008-09-28 Martin Rudalics <rudalics@gmx.at>
6223 * character.c (Fchar_resolve_modifiers): Rewrite Elisp function
6224 name as char-resolve-modifiers.
6225 Reported by: Markus Triska <markus.triska@gmx.at>
6227 2008-09-28 Dan Nicolaescu <dann@ics.uci.edu>
6229 * dispnew.c (init_display): Return earlier when running as a daemon.
6231 2008-09-27 Adrian Robert <Adrian.B.Robert@gmail.com>
6233 * nsfont.m (nsfont_draw): Fix up composition rendering (cmp_from, ...).
6235 2008-09-27 Eli Zaretskii <eliz@gnu.org>
6237 * composite.c (Fcomposition_get_gstring)
6238 (Fcompose_region_internal, Fcompose_string_internal)
6239 (Ffind_composition_internal): Doc fix.
6240 (syms_of_composite) <compose-chars-after-function>: Doc fix.
6241 (syms_of_composite) <auto-composition-function>: Doc fix.
6242 (syms_of_composite) <composition-function-table>: Doc fix.
6244 2008-09-25 Chong Yidong <cyd@stupidchicken.com>
6246 * search.c (wordify): New argument for lax word-ends.
6247 (Fword_search_forward_lax, Fword_search_backward_lax): New funs.
6249 2008-09-24 Dan Nicolaescu <dann@ics.uci.edu>
6251 * lisp.h (is_daemon): Declare.
6252 * dispnew.c (init_display): Do not try to initialize the terminal
6253 when running as a daemon.
6255 2008-09-22 Chong Yidong <cyd@stupidchicken.com>
6257 * nsfns.m (compute_tip_xy): Use x_display_pixel_width and
6258 x_display_pixel_height.
6260 2008-09-22 Martin Rudalics <rudalics@gmx.at>
6262 * undo.c (record_point): Don't call Fundo_boundary for first
6265 2008-09-22 Juanma Barranquero <lekktu@gmail.com>
6267 * emacs.c (Fdaemonp): Doc fix.
6269 2008-09-22 Dan Nicolaescu <dann@ics.uci.edu>
6271 * emacs.c (main): Place #ifdef in the proper place.
6273 2008-09-21 Dan Nicolaescu <dann@ics.uci.edu>
6275 * emacs.c (standard_args): Add --daemon.
6276 (main): Disconnect from the terminal when --daemon is passed.
6277 (is_daemon): New variable.
6278 (Fdaemonp): New function.
6279 (syms_of_emacs): Defsubr it.
6281 2008-09-20 Chong Yidong <cyd@stupidchicken.com>
6283 * xdisp.c (get_next_display_element): Handle string display
6284 correctly when checking for the end of a box run.
6286 2008-09-20 Glenn Morris <rgm@gnu.org>
6288 * fileio.c (Qdelete_by_moving_to_trash): New Lisp_Object.
6289 (syms_of_fileio): Add Qdelete_by_moving_to_trash.
6290 (Frename_file): Avoid copying to trash if a rename involves
6291 a delete. (Bug#964).
6293 2008-09-20 Eli Zaretskii <eliz@gnu.org>
6295 * keyboard.c (Fset_quit_char, Fset_input_meta_mode)
6296 (Fset_output_flow_control, Fcurrent_input_mode): Support MSDOS
6297 frames as well as termcap frames.
6298 (handle_interrupt): Remove "#ifndef MSDOS" around the call to
6301 2008-09-19 Eli Zaretskii <eliz@gnu.org>
6303 * process.c (procfs_system_process_attributes): Fix cmdline in
6304 case /proc/PID/cmdline is empty.
6306 * xterm.c (x_wm_set_size_hint): Use x_display_pixel_width and
6307 x_display_pixel_height.
6309 2008-09-19 Juanma Barranquero <lekktu@gmail.com>
6311 * frame.c (x_fullscreen_adjust): Declare var as Display_Info.
6313 * w32fns.c (Fx_display_pixel_width, Fx_display_pixel_height)
6314 (compute_tip_xy): Use x_display_pixel_width, x_display_pixel_height.
6316 2008-09-19 Dan Nicolaescu <dann@ics.uci.edu>
6318 * dispextern.h (struct it): Move line_wrap away from the middle of
6319 bitfields. Move voffset in struct iterator_stack_entry after the
6320 bitfields. Move tab_width near after another short.
6322 2008-09-18 Dan Nicolaescu <dann@ics.uci.edu>
6324 * frame.h (struct frame): Move alpha from the middle of bitfields.
6326 * window.h (struct window): Move frozen_window_start_p after the
6327 rest of the bitfields to reduce padding.
6329 2008-09-18 Chong Yidong <cyd@stupidchicken.com>
6331 * xterm.h (x_display_info): Remove `height' and `width' members.
6333 * nsterm.h (ns_display_info): Remove `height' and `width' members.
6335 * w32term.h (w32_display_info): Remove `height', `width',
6336 `height_in', and `width_in' members.
6338 * xterm.c (x_display_pixel_height, x_display_pixel_width):
6340 (x_calc_absolute_position): Use them.
6341 (x_term_init): Omit removed `height' and `width' members.
6343 * w32term.c (x_display_pixel_height, x_display_pixel_width):
6345 (w32_read_socket, x_calc_absolute_position): Use them.
6346 (w32_initialize_display_info, w32_term_init): Omit removed members
6347 of w32_display_info.
6349 * nsterm.m (x_display_pixel_height, x_display_pixel_width):
6351 (ns_initialize_display_info): Omit removed members of ns_display_info.
6353 * xterm.c (x_display_pixel_height, x_display_pixel_width):
6355 (x_calc_absolute_position): Use them.
6356 (x_term_init): Omit removed `height' and `width' members.
6358 * xfns.c (Fx_display_pixel_width, Fx_display_pixel_height)
6360 * frame.c (x_fullscreen_adjust):
6361 * xmenu.c (menu_position_func): Use x_display_pixel_height and
6362 x_display_pixel_width.
6364 2008-09-18 Kenichi Handa <handa@m17n.org>
6366 * composite.c (fill_gstring_header): Don't check FROM and TO here.
6367 (composition_compute_stop_pos): Fix handling of static composition.
6368 (Fcomposition_get_gstring): Check FROM and TO at first.
6370 2008-09-17 Stefan Monnier <monnier@iro.umontreal.ca>
6372 * composite.c (Fcomposition_get_gstring): Yet another int/Lisp_Object
6375 2008-09-17 Chong Yidong <cyd@stupidchicken.com>
6377 * indent.c (Fvertical_motion): Use position reported by iterator
6378 instead of PT for determining screen motion (bug#943).
6380 2008-09-17 Romain Francoise <romain@orebokech.com>
6382 * composite.c (composition_adjust_point): Fix int/EMACS_INT mixup.
6384 2008-09-17 Kenichi Handa <handa@m17n.org>
6386 * ftfont.c (ftfont_shape_by_flt): Downcase family name.
6388 * composite.c (Fcomposition_get_gstring): Make bigger gstring_work
6391 2008-09-16 Kenichi Handa <handa@m17n.org>
6393 * coding.c (make_conversion_work_buffer): Avoid calling
6394 Fget_buffer_create if it is not necessary.
6396 2008-09-15 Martin Rudalics <rudalics@gmx.at>
6398 * window.c (Fselect_window): Don't update window_select_count and
6399 use_time when norecord is not nil.
6401 2008-09-14 Kenichi Handa <handa@m17n.org>
6403 * fileio.c (Finsert_file_contents): Delete incorrect decrement of
6406 2008-09-12 Kenichi Handa <handa@m17n.org>
6408 * indent.c (scan_for_column): Don't handle automatic composition
6409 if the current buffer is not associated with a window.
6411 * composite.c (composition_reseat_it): If the current buffer is
6412 not associated with a window, ignore the automatic composition.
6413 (find_automatic_composition): Likewise.
6415 2008-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6417 * term.c (close_gpm): New fun extracted from Fgpm_mouse_stop.
6418 (Fgpm_mouse_stop): Use it.
6419 * termhooks.h (close_gpm): Declare.
6420 * keyboard.c (tty_read_avail_input): Forcefully close the gpm
6421 connection if Gpm_GetEvent fails.
6423 * window.c (set_window_buffer): Always preserve current-buffer.
6425 2008-09-12 Glenn Morris <rgm@gnu.org>
6427 * charset.c (init_charset): Warn if etc/charsets not found. (Bug#909)
6429 2008-09-11 Glenn Morris <rgm@gnu.org>
6431 * charset.c (charset-map-path): Doc fix.
6433 2008-09-10 Kenichi Handa <handa@m17n.org>
6435 * xdisp.c (handle_composition_prop): Set it->cmp_it.ch to -1.
6437 * font.c (Ffont_shape_gstring): Make glyphs of non-nil adjustment
6438 compose a grapheme cluster with the preceding base glyph.
6440 * composite.c (composition_compute_stop_pos): Fix previous change.
6441 Reset cmp_it->id to -1 at first.
6443 2008-09-10 Glenn Morris <rgm@gnu.org>
6445 * Makefile.in (character.o, chartab.o): Fix config.h typo.
6447 2008-09-09 Chong Yidong <cyd@stupidchicken.com>
6449 * keyboard.c (read_key_sequence): Reapply translation maps when
6450 switching keyboards.
6452 2008-09-09 Kenichi Handa <handa@m17n.org>
6454 * ftfont.c (ftfont_shape_by_flt): Use "combining" FLT for ASCII
6457 * composite.c (FORWARD_CHAR): Fix calculation
6458 of (POSITION).pos_byte.
6459 (composition_compute_stop_pos): Limit the search of composition to
6460 at most 500 characters ahead. If we reach the limit or find a
6461 newline, set cmp_it->ch to -2 and return 0.
6462 (composition_reseat_it): Handle the case that cmp_it->ch is -2.
6464 2008-09-08 Kenichi Handa <handa@m17n.org>
6466 * indent.c (Fvertical_motion): Be sure to set
6467 it_overshoot_expected if it.cmp_it.id is non-negative.
6469 2008-09-07 Andreas Schwab <schwab@suse.de>
6471 * callproc.c (Fcall_process): Don't hold references to string data
6472 across garbage collection. Move initialisation of new_argv down
6473 to avoid compiler bug.
6475 2008-09-07 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6477 * process.c (Fsystem_process_attributes): Doc fix.
6479 2008-09-07 Chong Yidong <cyd@stupidchicken.com>
6481 * callproc.c (Fcall_process): Canonicalize current directory name.
6483 * xdisp.c (move_it_to): When moving by vpos, ensure that the
6484 iterator advances to the next line if the current line ends in a
6487 2008-09-07 Teodor Zlatanov <tzz@lifelogs.com>
6489 * nsfont.m (nsfont_draw): Fix the references to missing gidx data
6490 member to point to cmp_from.
6492 * xdisp.c: Doc fix for references to gidx data member.
6494 2008-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
6496 * buffer.c (Fbuffer_swap_text): Reset window->point markers.
6498 2008-09-07 Kenichi Handa <handa@m17n.org>
6500 * composite.c (FORWARD_CHAR): Check STOP after
6501 incrementing (POSITION).pos.
6503 2008-09-06 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
6505 * process.c (Fsystem_process_attributes): Doc fix.
6507 2008-09-06 Chong Yidong <cyd@stupidchicken.com>
6509 * keyboard.c (Ftop_level): Doc fix.
6511 2008-09-06 Eli Zaretskii <eliz@gnu.org>
6513 * xmenu.c (xmenu_show) [!HAVE_X_WINDOWS]: If frame has a
6514 minibuffer, don't let lower part of menu invade the echo area.
6516 * msdos.c (IT_menu_display): Use STRING_CHAR_ADVANCE instead of a
6517 "char *q" to access menu text and advance through it. Revert the
6518 change that displayed ">" instead of ASCII character 0x10.
6520 2008-09-05 Eli Zaretskii <eliz@gnu.org>
6522 * menu.c (single_menu_item) [!HAVE_BOXES]: Enable emulation of
6523 toggle boxes and radio buttons on MS-DOS as well.
6525 2008-09-05 Kenichi Handa <handa@m17n.org>
6527 * composite.c (autocmp_chars): Check lookback count.
6528 (composition_compute_stop_pos): Set cmp_it->lookback.
6529 (composition_reseat_it): Check lookback count.
6530 (struct position_record): New struct.
6531 (FORWARD_CHAR, BACKWARD_CHAR, CHAR_COMPOSABLE_P): New macros.
6532 (find_automatic_composition): New function.
6533 (composition_adjust_point): Use find_automatic_composition.
6535 * dispextern.h (struct composition_it): New member lookback.
6537 2008-09-02 Chong Yidong <cyd@stupidchicken.com>
6539 * indent.c (Fvertical_motion): Don't call move_it_by_lines again
6540 if moving by a single line.
6542 2008-09-02 Andreas Schwab <schwab@suse.de>
6544 * xterm.c (x_delete_display): Fix merge error.
6546 * fileio.c (Fexpand_file_name): Remove unused variables.
6548 2008-09-02 Eli Zaretskii <eliz@gnu.org>
6550 * fileio.c (Fexpand_file_name): Copy argument `name' into local
6551 storage on all platforms, not just on DOS_NT.
6553 2008-09-02 Jason Rumney <jasonr@gnu.org>
6555 * w32menu.c (Fx_popup_menu, Fx_popup_dialog, w32_menu_show):
6556 Ensure mouse is not grabbed after menu is finished.
6558 2008-09-01 Chong Yidong <cyd@stupidchicken.com>
6560 * xfaces.c (Finternal_set_alternative_font_family_alist)
6561 (Finternal_set_alternative_font_registry_alist): Properly copy
6562 entire alist structure.
6564 2008-09-01 Kenichi Handa <handa@m17n.org>
6566 * ftfont.c (ftfont_spec_pattern): Don't create a charset if the
6567 representative chars of the script is a vector.
6568 (ftfont_list): Handle the case where the representative chars of
6569 the script is a vector.
6571 * character.c (syms_of_character): Docstring of
6572 script-representative-chars fixed.
6574 2008-08-31 Eli Zaretskii <eliz@gnu.org>
6576 * msdos.c (BUILD_CHAR_GLYPH): New macro.
6577 (IT_menu_display): Use it instead of SET_CHAR_GLYPH to construct
6578 the menu. Allocate larger buffer for `text', to account for
6579 possible ^C characters.
6581 2008-08-31 Martin Rudalics <rudalics@gmx.at>
6583 * xdisp.c (prepare_menu_bars): Don't call
6584 Vwindow_size_change_functions with arg Qt.
6586 2008-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
6588 * font.h (font_range):
6589 * fileio.c (report_file_error):
6590 * composite.c (composition_update_it): Yet another int/Lisp_Object
6593 2008-08-30 Glenn Morris <rgm@gnu.org>
6595 * data.c (Fmake_variable_frame_local): Doc fix.
6597 * frame.c (Fmodify_frame_parameters): Doc fix.
6599 2008-08-30 Eli Zaretskii <eliz@gnu.org>
6601 * w32.c (init_user_info): Allocate buf[] with xmalloc using the size
6602 needed by GetTokenInformation.
6603 (w32_system_process_attributes): Check return values of all system
6606 * msdos.c (IT_display_cursor): Write "CURSOR ON/OFF" to termscript
6607 only when the state changes.
6608 (IT_update_begin, IT_update_end): Add termscript trace.
6610 * w16select.c (Fw16_set_clipboard_data): Don't encode text if
6611 clipboard is unavailable. Set dst to NULL if it doesn't point to
6613 (Fw16_get_clipboard_data): Initialize htext to NULL, to avoid
6614 passing random values to xfree.
6616 * dispnew.c (init_display): Set `tty's association in frame's
6617 parameters alist to the name of the terminal device, if that is known.
6619 2008-08-29 Jason Rumney <jasonr@gnu.org>
6621 * w32uniscribe.c (uniscribe_check_otf): Don't fallback on DFLT script.
6623 2008-08-29 Eli Zaretskii <eliz@gnu.org>
6625 * composite.c (fill_gstring_body): Avoid compiler warnings.
6627 * font.c (font_fill_lglyph_metrics): Use EMACS_INT in
6628 LGLYPH_SET_CODE to avoid compiler warnings.
6630 * makefile.w32-in ($(BLD)/w32uniscribe.$(O)): Depend on composite.h.
6632 * composite.h (LGLYPH_SET_CODE): Cast `val' to EMACS_INT.
6634 * w32uniscribe.c (uniscribe_shape): Shut up compiler warning in
6637 2008-08-29 Kenichi Handa <handa@m17n.org>
6639 * fileio.c (report_file_error): Don't downcase the first character
6640 of errstring if it is still unibyte.
6642 2008-08-29 Kenichi Handa <handa@m17n.org>
6644 These changes are to re-implement the automatic composition so
6645 that it doesn't use text properties.
6647 * Makefile.in (ftfont.o): Depend on composite.h.
6648 (composite.o): Depend dispextern.h, font.h, frame, and window.h.
6650 * character.h (Vunicode_category_table): Extern it.
6652 * character.c (Vunicode_category_table): New variable.
6653 (syms_of_character): DEFVAR_LISP Vunicode_category_table.
6655 * chartab.c (optimize_sub_char_table): Perform more greedy
6658 * composite.h (enum composition_method):
6659 Delete COMPOSITION_WITH_GLYPH_STRING.
6660 (COMPOSITION_METHOD): Don't check COMPOSITION_WITH_GLYPH_STRING.
6661 (Vcomposition_function_table): Extern it.
6662 (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h.
6663 (composition_gstring_put_cache, composition_gstring_from_id)
6664 (composition_gstring_p, composition_gstring_width)
6665 (composition_compute_stop_pos, composition_reseat_it)
6666 (composition_update_it, composition_adjust_point): Extern them.
6667 (Fcomposition_get_gstring): EXFUN it.
6669 * composite.c: Include window.h, frame.h, dispextern.h, font.h.
6670 (Vcomposition_function_table)
6671 (get_composition_id): Don't handle COMPOSITION_WITH_GLYPH_STRING.
6672 (gstring_hash_table, gstring_work, gstring_work_headers):
6674 (gstring_lookup_cache, composition_gstring_put_cache)
6675 (composition_gstring_from_id, composition_gstring_p)
6676 (composition_gstring_width, fill_gstring_header)
6677 (fill_gstring_body, autocmp_chars, composition_compute_stop_pos)
6678 (composition_reseat_it, composition_update_it)
6679 (composition_adjust_point, Fcomposition_get_gstring): New functions.
6680 (syms_of_composite): Initialize gstring_hash_table, gstrint_work,
6681 and gstring_work_headers. DEFVAR_LISP composition-function-table.
6682 Defsubr compostion_get_gstring.
6684 * dispextern.h (struct glyph): New union u.cmp. Delete the member
6686 (struct glyph_string): Delete the member gidx. New members
6687 cmp_id, cmp_from, and cmp_to.
6688 (enum it_method): Delete GET_FROM_COMPOSITION.
6689 (struct composition_it): New struct.
6690 (struct it): New member cmp_it, and iterator_stack_entry.cmp_it.
6691 Delete c, len, cmp_id, cmp_len in u.comp.
6693 * font.h (enum lgstring_indices): Delete it.
6694 (LGSTRING_XXX, LGLYPH_XXX): Move these macros to composite.h.
6695 (enum lglyph_indices): Likewise.
6696 (font_range): Adjust extern.
6697 (font_fill_lglyph_metrics): Extern it.
6699 * font.c (QCf): New variable.
6700 (check_gstring): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
6701 (font_prepare_composition): Delete this function.
6702 (font_range): Type and arguments changed.
6703 (Ffont_make_gstring, Ffont_fill_gstring): Delete them.
6704 (font_fill_lglyph_metrics): New function.
6705 (Ffont_shape_text): Rename to Ffont_shape_gstring and change arguments.
6706 (syms_of_font): DEFSYM QCf. Delete defsubr for
6707 Sfont_make_gstring, Sfont_fill_gstring, Sfont_shape_text.
6708 Defsubr Sfont_shape_gstring.
6710 * fontset.h (font_for_char): Extern it.
6712 * fontset.c (font_for_char): New function.
6714 * ftfont.c: Include composite.h.
6715 (ftfont_resolve_generic_family): Add langset "en" to pattern.
6716 (ftfont_shape_by_flt): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
6718 * indent.c: Include composite.h and dispextern.h.
6719 (check_composition): Delete this function.
6720 (scan_for_column): Handle composition by
6721 composition_compute_stop_pos, composition_reseat_it, and
6722 composition_update_it.
6723 (compute_motion): Likewise.
6724 (Fvertical_motion): Fix checking of composition.
6726 * keyboard.c (adjust_point_for_property): Check composition by
6727 composition_adjust_point.
6729 * nsterm.m (ns_draw_glyph_string): Adjust for the change of
6730 struct glyph_string.
6732 * term.c (encode_terminal_code): Adjust for the change of struct glyph.
6733 (append_composite_glyph): Adjust for the change of struct it and
6735 (produce_composite_glyph): Likewise.
6737 * w32term.c (x_draw_composite_glyph_string_foreground):
6738 Adjust for the change of struct glyph_string.
6739 (x_draw_glyph_string): Likewise.
6741 * w32uniscribe.c (struct uniscribe_font_info): Include composite.h.
6742 (uniscribe_shape): Use LGSTRING_GLYPH_LEN, not LGSTRING_LENGTH.
6744 * xdisp.c: Include font.h.
6745 (it_props): Delete the entry for Qauto_composed.
6746 (init_iterator): Initialize it->cmp_it.id to -1.
6747 (compute_stop_pos): Call composition_compute_stop_pos.
6748 (face_before_or_after_it_pos): Adjust for the change of struct it.
6749 (handle_auto_composed_prop): Delete it.
6750 (handle_composition_prop): Handle only static composition.
6751 (next_overlay_string): Remove it->method == GET_FROM_COMPOSITION
6752 from xassert. Initialize it->cmp_it.stop_pos.
6753 (push_it): Adjust for the change of struct it.
6755 (get_next_element): Delete next_element_from_composition.
6756 (CHAR_COMPOSED_P): New macro.
6757 (get_next_display_element): For automatic composition, get a face
6758 from the font in the glyph-string.
6759 (set_iterator_to_next): For GET_FROM_BUFFER and GET_FROM_STRING,
6760 check composition by it->cmp_it.id. Delete GET_FROM_COMPOSITION case.
6761 (next_element_from_string): Check if the character at the current
6762 position is composed by CHAR_COMPOSED_P.
6763 (next_element_from_buffer): Likewise.
6764 (next_element_from_composition): Adjust for the change of struct it.
6766 (dump_glyph): Adjust for the change of struct glyph.
6767 (fill_composite_glyph_string): Adjust for the change of struct
6768 it and struct glyph. Don't handle automatic composition here.
6769 (fill_gstring_glyph_string): New function.
6770 (x_get_glyph_overhangs): Handle automatic composition.
6771 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the change of struct glyph.
6772 (BUILD_GSTRING_GLYPH_STRING): New macro.
6773 (BUILD_GLYPH_STRINGS): Call BUILD_GSTRING_GLYPH_STRING for
6774 automatic composition.
6775 (append_composite_glyph): Adjust for the change of struct it and
6777 (x_produce_glyphs): Adjust for the change of struct it.
6779 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
6780 the change of struct glyph_string.
6781 (x_draw_glyph_string): Likewise.
6783 2008-08-29 Glenn Morris <rgm@gnu.org>
6785 * buffer.c (word-wrap): Doc fix.
6786 * xdisp.c (truncate-partial-width-windows): Doc fix.
6787 Increase default to 50.
6789 2008-08-29 Chong Yidong <cyd@stupidchicken.com>
6791 * xdisp.c (update_tool_bar_unwind): New function.
6792 (update_tool_bar): Temporarily set selected frame before building
6795 2008-08-28 Michael Albinus <michael.albinus@gmx.de>
6797 * dbusbind.c (XD_ERROR, XD_DEBUG_MESSAGE): Use strncpy and
6798 snprintf, respectively.
6799 (xd_append_arg): Convert strings with Fstring_make_unibyte.
6801 2008-08-28 Chong Yidong <cyd@stupidchicken.com>
6803 * Makefile.in: Revert (undocumented) 2008-08-20 change adding
6804 LDFLAGS to GNUstep CC invocation.
6806 2008-08-27 Chong Yidong <cyd@stupidchicken.com>
6808 * indent.c (Fvertical_motion): Revert last change. Handle the
6809 general case where we are moving forward, and PT spans multiple
6812 * eval.c (find_handler_clause): Temporarily increase
6813 max-lisp-eval-depth while printing the backtrace buffer, to
6814 guarantee that help-mode code can run.
6816 2008-08-27 Eli Zaretskii <eliz@gnu.org>
6818 * msdos.c (Fmsdos_remember_default_colors): Don't reverse frame
6820 (IT_set_frame_parameters): Don't swap foreground and background
6821 colors if `(reverse . t)' is present in the frame properties.
6822 (internal_terminal_init): Call init_frame_faces only for the
6825 2008-08-27 Andreas Schwab <schwab@suse.de>
6827 * dired.c (Ffile_attributes): Avoid compiler warning in bitshift.
6829 2008-08-27 Andreas Schwab <schwab@suse.de>
6831 * search.c (search_buffer): Set char_base to zero only at the end.
6833 2008-08-27 Kenichi Handa <handa@m17n.org>
6835 * fileio.c (report_file_error): Fix handling of multibyte error string.
6837 2008-08-27 Andreas Seltenreich <seltenreich@gmx.de>
6839 * xterm.c (x_term_init): Temporarily hide the partially
6840 initialized terminal while calling vendor-specific-keysyms.
6842 2008-08-26 Eli Zaretskii <eliz@gnu.org>
6844 * msdos.c (internal_terminal_init): Most initializations done only
6845 once, especially initial_screen_colors[] and termscript open.
6847 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
6849 * eval.c (Fcondition_case): Doc fix.
6851 * widgetprv.h (EmacsFramePart): Change font member to the new font
6854 * widget.c: Include character.h and font.h for XSETFONT.
6855 (setup_frame_gcs): Compute X font id from font struct, just once.
6857 2008-08-26 Eli Zaretskii <eliz@gnu.org>
6859 * term.c (get_named_tty): Fix last change.
6861 2008-08-26 Chong Yidong <cyd@stupidchicken.com>
6863 * indent.c (Fvertical_motion): If moving forward starting from a
6864 multi-line string, move the iterator to the last line of that string.
6866 2008-08-25 Eli Zaretskii <eliz@gnu.org>
6868 * frame.c (do_switch_frame): Mark previously displayed frame as
6869 obscured for FRAME_MSDOS_P frames as well.
6871 2008-08-24 Eli Zaretskii <eliz@gnu.org>
6873 * frame.c (make_terminal_frame): Initialize f->terminal,
6874 f->terminal->reference_count, and scroll bars on MS-DOS as well.
6875 Set the top frame to newly created frame.
6876 (Fmake_terminal_frame): Reuse the_only_display_info.
6878 * vm-limit.c (get_lim_data) [MSDOS]: Use alternative methods of
6879 estimating available memory.
6881 2008-08-23 David Reitter <david.reitter@gmail.com>
6883 * nsterm.m (ns_draw_window_cursor): Don't call
6884 NSDisableScreenUpdates and NSEnableScreenUpdates on
6885 non-NS_IMPL_COCOA systems.
6887 2008-08-23 Andreas Schwab <schwab@suse.de>
6889 * process.c (procfs_system_process_attributes): Fix use of
6890 uninitialized variables.
6892 2008-08-23 Eli Zaretskii <eliz@gnu.org>
6894 * emacs.c (main) [MSDOS]: Call syms_of_xmenu.
6896 * dispnew.c (init_display): Remove MS-DOS specific conditions for
6897 calling tty-set-up-initial-frame-faces.
6899 * xmenu.c (Fx_popup_dialog, Fx_popup_menu, xmenu_show):
6900 Allow MSDOS frames along with X frames.
6902 * termhooks.h (TERMINAL_ACTIVE_P): Handle output_msdos_raw in
6903 addition to output_termcap.
6905 * xdisp.c (redisplay_internal) [MSDOS]: Don't call set_tty_color_mode.
6907 * termchar.h (FRAME_TTY): Support output_msdos_raw.
6908 (struct tty_display_info) [MSDOS]: Add fields related to mouse
6911 * process.c [!subprocesses]: Define QCname.
6912 (syms_of_process): Intern and staticpro it.
6914 * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
6915 Adjust for changes in encoding/decoding routines.
6916 Use encode_coding_object and decode_coding_object instead of
6917 encode_coding and decode_coding.
6919 * sysdep.c (init_sys_modes): Call dos_ttraw with tty_out as argument.
6921 * dosfns.c: Include frame.h before termhooks.h.
6922 (dos_cleanup): Use CURTTY ()->termscript instead of a global
6923 variable termscript.
6925 * s/msdos.h (USER_FULL_NAME): Define.
6926 (SYSTEM_PURESIZE_EXTRA): Bump up to 100K.
6928 * editfns.c (USER_FULL_NAME): Define to pw->pw_gecos if undefined.
6929 (Fuser_full_name): Use USER_FULL_NAME instead of a literal
6932 * keyboard.c (handle_interrupt) [MSDOS]: Call cursor_to with
6933 SELECTED_FRAME as additional (1st) argument.
6934 (tty_read_avail_input): Handle output_msdos_raw in
6935 addition to output_termcap.
6937 * msdos.c: Include frame.h before termhooks.h.
6938 (mouse_on, mouse_off, mouse_moveto, mouse_init)
6939 (msdos_set_cursor_shape, IT_set_face, IT_write_glyphs)
6940 (show_mouse_face, IT_clear_end_of_line, IT_clear_screen)
6941 (IT_clear_to_end, IT_cursor_to, IT_display_cursor, IT_cmgoto)
6942 (IT_set_terminal_modes, IT_reset_terminal_modes)
6943 (IT_set_frame_parameters): Use tty->termscript instead of a global
6944 variable termscript.
6945 (IT_write_glyphs): Use tty->terminal->terminal_coding instead of a
6946 global variable terminal_coding. Don't refer to
6947 Vnonascii_translation_table.
6948 (internal_terminal_init): Set Vwindow_system in current_kboard.
6949 Don't use TTY_CHAR_INS_DEL_OK. Set Vinitial_window_system.
6950 Announce date and time of session start, if termscript is open.
6951 Don't zero out the_only_display_info (it is done in
6952 term.c:init_tty). Open termscript only of not already open.
6953 Log "SCREEN SAVED" here, instead of IT_set_terminal_modes. Init mouse
6954 here instead of dos_ttraw. Don't initialize display if this is an
6955 initial tty. Don't set FRAME_FONT.
6956 (Vwindow_system_version): Bump to 23.
6957 (dos_ttraw): Accept a TTY argument; all callers fixed. If mouse
6958 is available, set up mouse_position_hook.
6959 (dos_ttraw, IT_set_terminal_modes): If called with initial
6960 terminal, do nothing.
6961 (IT_set_frame_parameters): Handle the Qtty_type frame
6962 parameter by calling internal_terminal_init.
6963 (dos_set_window_size, show_mouse_face)
6964 (clear_mouse_face, IT_note_mode_line_highlight)
6965 (IT_note_mouse_highlight, IT_update_begin, IT_frame_up_to_date)
6966 (dos_rawgetc): Use tty_display_info instead of x_display_info.
6967 (initialize_msdos_display): New function.
6968 (IT_cursor_to, IT_clear_to_end, IT_clear_screen)
6969 (IT_clear_end_of_line, IT_insert_glyphs, IT_write_glyphs)
6970 (IT_delete_glyphs, IT_ring_bell, IT_reset_terminal_modes)
6971 (IT_set_terminal_modes, IT_set_terminal_window, IT_update_begin):
6972 Accept additional argument: a pointer to a frame. Update all callers.
6973 (request_sigio, unrequest_sigio): Don't define, now defined on
6975 (IT_write_glyphs): Rewrite to use encode_terminal_code.
6977 * term.c [MSDOS]: Include msdos.h.
6978 (init_tty) [MSDOS]: Reuse most of WINDOWSNT branch. Change cpp
6979 conditional to DOS_NT. Allow only one call to this function in a
6980 session. Don't allocate a new struct tty_display_info; instead,
6981 reuse the_only_display_info. Call get_tty_size to get screen
6982 dimensions. Call init_baud_rate to set bad_rate.
6983 (dissociate_if_controlling_tty) [MSDOS]: Ifdef away function body.
6984 (Fsuspend_tty) [MSDOS]: Don't close input and output.
6985 (Fresume_tty) [MSDOS]: Don't reopen the TTY; instead, use stdin/stdout.
6986 (get_tty_terminal, get_named_tty, Ftty_type)
6987 (Fcontrolling_tty_p): Handle output_msdos_raw in addition to
6989 (Fresume_tty, Fsuspend_tty, init_tty, delete_tty):
6990 Call add_keyboard_wait_descriptor and delete_keyboard_wait_descriptor
6991 only when subprocesses are supported.
6993 * frame.c (make_terminal_frame) [MSDOS]: Adjust initialization of
6995 (Fmake_terminal_frame) [MSDOS]: Don't allow creation of new
6998 * msdos.h: Remove definition of struct x_display_info and struct
7000 (FRAME_FONT): Use output_data.tty.
7001 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Don't define.
7002 (struct x_display_info): Rename from display_info. Update all users in
7004 (struct x_output): Remove background_pixel and foreground_pixel.
7005 (the_only_display_info): Rename from the_only_x_display.
7006 (dos_ttraw): Update prototype.
7008 * Makefile.in (MSDOS_OBJ): Add xmenu.o.
7009 (SOME_MACHINE_LISP): Add ../lisp/term/pc-win.elc.
7011 2008-08-23 Jason Rumney <jasonr@gnu.org>
7013 * image.c (enum tiff_keyword_index, tiff_format): Add :index keyword.
7014 (fn_TIFFSetDirectory): New library function used.
7015 (init_tiff_functions) [HAVE_NTGUI]: Initialize it.
7016 (tiff_load): Use :index to select among multiple images. Set count
7017 property when multiple images exist.
7018 (gif_format): Use :index, not :image.
7020 2008-08-23 Chong Yidong <cyd@stupidchicken.com>
7022 * xdisp.c (try_scrolling): Check INT_MAX instead of
7023 MOST_POSITIVE_FIXNUM for maximum integer value. Include limits.h
7026 2008-08-21 İsmail Dönmez <ismail@namtrac.org> (tiny change)
7028 * xterm.c (x_delete_display): Don't call XrmDestroyDatabase on GTK+.
7030 2008-08-21 Christian Faulhammer <opfer@gentoo.org> (tiny change)
7032 * Makefile.in (temacs${EXEEXT}): On GNUstep, link to appropriate
7033 GNUstep library location.
7035 2008-08-21 Chong Yidong <cyd@stupidchicken.com>
7037 * xfaces.c (x_update_menu_appearance): Check validity of menu font
7040 * puresize.h (BASE_PURESIZE): Increase to 1250000.
7042 2008-08-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7044 * nsfns.m (ns-read-file-name): Add casts to avoid warning.
7045 (ns-convert-utf8-nfd-to-nfc): Warn if cannot execute correctly.
7046 * nsfont.m (nsfont_draw): Compare indexed colors to 0, not nil.
7047 * nsterm.h (EmacsView-unlockFocusNeedsFlush:): Add declaration.
7048 (EmacsApp-cursor_blink_handler): Remove declaration.
7049 * nsterm.m (ns_draw_glyph_string): Update first conditional body to
7050 match 01 Feb 2008 changes in xterm.c.
7051 (ns_read_socket): Add cast to avoid warning.
7052 (EmacsApp-application:openFiles:): Don't call replyToOpenOrPrint: on
7055 2008-08-20 Chong Yidong <cyd@stupidchicken.com>
7057 * xselect.c (x_get_foreign_selection): Return nil if desired
7058 selection could not be obtained, instead of signalling an error.
7060 2008-08-20 David Reitter <david.reitter@gmail.com>
7062 * nsfns.m (ns_lisp_to_cursor_type): Replace with generic xfns.c.
7063 * nsterm.m: Remove ns-specific code for cursor blinking.
7064 (ns_draw_window_cursor): Clear cursor properly rather than
7065 redrawing the area. Respect width of bar cursors.
7066 These changes enable the use of generic blink-cursor-mode and
7067 generic cursor types in NS and support smooth cursor movements (do
7068 not blink off after command).
7069 * xdisp.c (get_phys_cursor_geometry): Redraw wider rectangle on
7072 2008-08-19 Kenichi Handa <handa@m17n.org>
7074 * font.c (Vfont_log_deferred): New variable.
7075 (font_add_log): Check Vfont_log_deferred.
7076 (font_deferred_log): New function.
7078 * font.h (font_deferred_log): Extern it.
7080 * fontset.c (reorder_font_vector): Use encoding charset of fonts
7082 (face_for_char): Use deferred log.
7084 2008-08-18 Kenichi Handa <handa@m17n.org>
7086 * fontset.c (face_for_char): Add font log.
7088 * font.c (font_add_log): Add the font properties :script, :lang,
7089 and :otf in the log.
7091 2008-08-17 Chong Yidong <cyd@stupidchicken.com>
7093 * xdisp.c: Remove dead code.
7094 (handle_invisible_prop, next_overlay_string): Defer call to
7096 (handle_stop, set_iterator_to_next): Call setup_for_ellipsis.
7098 2008-08-15 Chong Yidong <cyd@stupidchicken.com>
7100 * xfaces.c (lookup_derived_face): Properly handle possible zero
7101 return value of get_lface_attributes.
7102 (merge_faces): Don't tell lookup_derived_face to signal an error
7103 if face is not found.
7105 * dired.c (Fdirectory_files): Doc fix.
7107 * process.c (make_process): Initialize kill_without_query struct
7110 2008-08-15 Eli Zaretskii <eliz@gnu.org>
7112 * w32.c (w32_system_process_attributes) [_MSC_VER < 1300]:
7113 Alternative calculation of totphys for Visual Studio 6.
7115 * w32fns.c [_MSC_VER && _MSC_VER < 1300]: Declare HMONITOR.
7117 * w32.c (_MEMORY_STATUS_EX, MEMORY_STATUS_EX, LPMEMORY_STATUS_EX):
7118 Rename from _MEMORYSTATUSEX, MEMORYSTATUSEX, LPMEMORYSTATUSEX.
7120 (stat): Only root directory passed to GetDriveType. Allow RAM
7121 disk as well as local fixed disk when w32-get-true-file-attributes
7123 (CopySid_Proc, EqualSid_Proc, GetLengthSid_Proc): New typedefs.
7124 (equal_sid, get_length_sid, copy_sid): New wrapper functions.
7125 (w32_cached_id, w32_add_to_cache): New functions.
7126 (get_name_and_id): Look account names in the cache before calling
7128 (g_b_init_get_length_sid, g_b_init_equal_sid, g_b_init_copy_sid):
7129 New initialization flags.
7130 (globals_of_w32): Initialize them to zero.
7131 (w32_system_process_attributes): Use w32_cached_id and
7134 2008-08-14 Lawrence Mitchell <wence@gmx.li>
7136 * lread.c (Fread_char, Fread_char_exclusive): If no character
7137 event is read before timeout is reached, return nil, rather than
7138 converting to a number.
7140 2008-08-14 Chong Yidong <cyd@stupidchicken.com>
7142 * fns.c (use_dialog_box): Doc fix.
7144 * s/darwin.h: Undefine HAVE_RES_INIT, which appears to be harmful
7147 2008-08-13 Chong Yidong <cyd@stupidchicken.com>
7149 * frame.c (Qns_parse_geometry): New var.
7150 (Fx_parse_geometry): For HAVE_NS, call ns-parse-geometry.
7152 2008-08-11 Chong Yidong <cyd@stupidchicken.com>
7154 * xdisp.c (x_produce_glyphs): Handle the case when font has no
7155 space character in calculating tabs.
7157 2008-08-11 Dan Nicolaescu <dann@ics.uci.edu>
7159 * Makefile.in (bootstrap-emacs): Use ln -f in the CANNOT_DUMP case.
7161 2008-08-10 Glenn Morris <rgm@gnu.org>
7163 * process.c (procfs_system_process_attributes): Use EMACS_INTs to
7164 silence gcc "limited range of data type" warnings in some
7165 make_fixnum_or_float calls.
7167 2008-08-09 Eli Zaretskii <eliz@gnu.org>
7169 * w32.c (w32_system_process_attributes): If the process does not
7172 * w32.c: Include thelp32.h, psapi.h and coding.h.
7173 (_MEMORYSTATUSEX, _PROCESS_MEMORY_COUNTERS_EX): New struct
7175 (CreateToolhelp32Snapshot_Proc, Process32First_Proc)
7176 (Process32Next_Proc): New typedefs.
7177 (g_b_init_create_toolhelp32_snapshot, g_b_init_process32_first)
7178 (g_b_init_process32_next, g_b_init_open_thread_token)
7179 (g_b_init_impersonate_self, g_b_init_revert_to_self)
7180 (g_b_init_get_process_memory_info, g_b_init_global_memory_status)
7181 (g_b_init_get_process_working_set_size)
7182 (g_b_init_global_memory_status_ex): New static variables.
7183 (globals_of_w32): Initialize them.
7184 (create_toolhelp32_snapshot, process32_first, process32_next)
7185 (open_thread_token, impersonate_self, revert_to_self)
7186 (get_process_memory_info, get_process_working_set_size)
7187 (global_memory_status, global_memory_status_ex): New wrapper
7189 (w32_list_system_processes, w32_system_process_attributes)
7190 (enable_privilege, restore_privilege, ltime, process_times):
7192 (convert_time_raw): New function.
7193 (convert_time): Remove conversion of FILETIME into time in 100
7194 nsec units, call convert_time_raw instead.
7196 * process.h (w32_list_system_processes, w32_system_process_attributes):
7198 (Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname)
7199 (Qminflt, Qmajflt, Qcminflt, Qcmajflt, Qutime, Qstime, Qcutime)
7200 (Qpri, Qnice, Qthcount, Qstart, Qvsize, Qrss, Qargs, Quser, Qgroup)
7201 (Qetime, Qpcpu, Qpmem, Qtpgid, Qcstime): Add extern declarations.
7203 * process.c (Fsystem_process_attributes): Doc fix.
7205 2008-08-08 Chong Yidong <cyd@stupidchicken.com>
7207 * xdisp.c (move_it_to): When stopping at a charpos, check if that's
7208 a continued multi-char glyph; if so, advance to the actual glyph.
7210 2008-08-07 Dan Nicolaescu <dann@ics.uci.edu>
7212 * s/darwin.h (OTHER_FILES): Do not define here, defined in config.in.
7214 * Makefile.in (ALL_OBJC_CFLAGS): New variable.
7216 * config.in: Regenerate.
7218 2008-08-07 Chong Yidong <cyd@stupidchicken.com>
7220 * xdisp.c (redisplay_window): Revert last change.
7221 (try_window): Check bottom scroll margin too.
7223 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7225 * config.in: Regenerate.
7227 * Makefile.in (emacs): Remove ifndef NS conditional for 'emacs
7228 -list-load-path-shadows'.
7229 (nsgui.h): Reduce number of things depending on it.
7231 2008-08-06 Chong Yidong <cyd@stupidchicken.com>
7233 * xdisp.c (try_scrolling): Use iterator to find the scroll margin,
7234 instead of window-end which does the wrong thing at eob.
7235 (try_cursor_movement): Minor optimization.
7236 (redisplay_window): If scroll margin is defined, don't assume
7237 window doesn't need scrolling.
7239 2008-08-06 Adrian Robert <Adrian.B.Robert@gmail.com>
7241 * config.in: Regenerate.
7243 * Makefile.in: Move nsXXX.m dependencies into big alphabetical list.
7244 (mostlyclean): Don't delete *.d under NS.
7246 * nsterm.h (NS_HAVE_INTEGER): Change to NS_HAVE_NSINTEGER.
7248 2008-08-06 Kenichi Handa <handa@m17n.org>
7250 * xfont.c (xfont_list_family): Return a list of symbols, not strings.
7252 2008-08-06 Andreas Schwab <schwab@suse.de>
7254 * config.in: Regenerate.
7256 2008-08-05 Chong Yidong <cyd@stupidchicken.com>
7258 * xdisp.c (redisplay_window): Don't enforce scroll-margin when
7259 forcing a window start.
7261 * fileio.c (Vauto_save_list_file_name): Move here from file.el.
7262 (auto_save_1): Update modtime when auto-save-list-file-name is on.
7264 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7266 * emacs.c (main): Under NS, set working dir to HOME when get a "psn"
7269 2008-08-05 Juanma Barranquero <lekktu@gmail.com>
7271 * buffer.c (syms_of_buffer) <scroll-up-aggressively>:
7272 <scroll-down-aggressively, before-change-functions>:
7273 <after-change-functions>: Reflow docstrings.
7275 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7276 Ken Raeburn <raeburn@gnu.org>
7278 Dock menu customization, based on a patch by Ken Raeburn, plus some
7280 * nsmenu.m (dockMenu): New variable.
7281 (EmacsDialog -clicked:): Fix mistake in change of 2008-07-17.
7283 * nsterm.h (dockMenu): Declare.
7285 * nsterm.m (KEY_NS_NEW_FRAME): New definition.
7286 (ns_term_init): Initialize dockMenu.
7287 (EmacsApp -newFrame:, -applicationDockMenu:): New methods.
7288 (EmacsView -windowShouldClose:): Don't behave specially if <= 1 frame
7291 * lisp.h (LSB_TAG): Use on DARWIN_OS, not NS_IMPL_COCOA.
7293 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
7295 * nsterm.h: Test directly for NS_HAVE_INTEGER before defining it.
7297 * config.in: Regenerate.
7299 2008-08-04 Seiji Zenitani <zenitani@mac.com>
7301 * nsfns.m (x-create-frame): Set the frame parameter alpha to nil.
7303 2008-08-04 Chong Yidong <cyd@stupidchicken.com>
7305 * nsterm.h (find_and_call_menu_selection): Fix prototype.
7307 2008-08-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7309 * emacs.c (main: unexec_init_emacs_zone): Call if on DARWIN_OS.
7311 * keyboard.h: Comment an #endif.
7313 * lisp.h (have_menus_p): Adjust comment.
7315 * menu.c (find_and_return_menu_selection): Fix comparison with
7318 * nsmenu.m (popup_activated_flag): New variable.
7319 (popup_activated): New function.
7320 (menu-or-popup-active-p): New exported lisp definition.
7321 (ns_popup_menu): Set popup_activated_flag. Call discard_menu_items()
7323 (ns_popup_dialog): Set popup_activated_flag.
7325 * nsterm.m (EmacsView -conversationIdentifier): Use NSInteger
7326 version for GNUstep (handled by conditional typedef in nsterm.m).
7327 (ns_get_color): Remove special-casing for "darkblue", "dark blue" (now
7330 * process.c (init_process): Use DARWIN_OS, not DARWIN.
7332 * sysselect.h: Conditionalize init_process undef on DARWIN_OS.
7334 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): Do it also under NS.
7336 * xdisp.c (redisplay_internal, note_mouse_highlight): Under NS,
7337 shortcircuit if popup_activated like GTK and X toolkit.
7339 * m/inter386.h: Change DARWIN to DARWIN_OS.
7341 * s/darwin.h: Add #define DARWIN_OS. Get rid of C_SWITCH_SYSTEM def.
7342 Change LIBS_MACGUI to LIBS_NSGUI. Move temacs-conditionalized defs
7343 closer to C_SWITCH_SYSTEM_TEMACS so usage is understood. Expand
7344 comment on NO_SOCK_SIGIO.
7346 2008-08-03 Chong Yidong <cyd@stupidchicken.com>
7348 * nsterm.m (windowDidResize): Remove stopModal call.
7350 2008-08-03 Andreas Schwab <schwab@suse.de>
7352 * vm-limit.c (get_lim_data) [HAVE_GETRLIMIT && RLIMIT_AS]: Define.
7353 (check_memory_limits): Don't handle HAVE_GETRLIMIT here.
7355 2008-08-02 Chong Yidong <cyd@stupidchicken.com>
7357 * vm-limit.c (check_memory_limits): Don't use getrlimit on cygwin.
7358 Don't use uninitialized pointer variable when using getrlimit.
7360 2008-08-02 Jason Rumney <jasonr@gnu.org>
7362 * w32font.c (compute_metrics): Don't mess with glyph_idx setting here.
7364 2008-08-02 Eli Zaretskii <eliz@gnu.org>
7366 * alloc.c (NSTATICS): Bump to 0x640.
7368 * s/gnu-linux.h (HAVE_PROCFS, LISTPROC, PROCATTR): New defines.
7370 * lisp.h: Add prototype for directory_files_internal.
7372 * process.c (Fsystem_processes_list, Fsystem_process_attributes):
7374 (syms_of_process): Defsubr them. Add initializations for various
7375 Q* symbols used in procfs_system_process_attributes.
7376 (procfs_list_system_processes, procfs_system_process_attributes)
7377 [HAVE_PROCFS]: New functions.
7378 (time_from_jiffies, ltime_from_jiffies, get_up_time, procfs_ttyname)
7379 (procfs_get_total_memory): New functions.
7381 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
7383 * xfaces.c (Fx_load_color_file): Fix previous change;
7384 it is #ifdef WINDOWSNT, not WINDOWS_NT.
7386 2008-08-01 Michael Albinus <michael.albinus@gmx.de>
7388 * dbusbind.c (xd_read_message): Handle D-Bus error messages.
7390 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7392 * nsterm.h (NSInteger, NSUInteger): Add defines for non-Leopard.
7394 2008-08-01 Chong Yidong <cyd@stupidchicken.com>
7396 * nsfns.m (ns_frame_parm_handlers): Add empty entry for x_set_alpha.
7398 * nsterm.m (EmacsApp -application:openFiles:): GNUstep does not
7399 define NSApplicationDelegateReplySuccess.
7400 (EmacsView -converstationIdentifier): Use long instead of
7401 NSInteger for GNUstep, since it doesn't have NSInteger.
7403 * xmenu.c: Revert last change.
7405 * keyboard.h: Fix last change.
7407 2008-08-01 Juanma Barranquero <lekktu@gmail.com>
7409 * xfaces.c (x-load-color-file): Use RGB() instead of manually shifting
7412 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7414 Warning clearing and clean-up in NS port.
7415 * keyboard.h (xmalloc_widget_value, digest_single_submenu):
7417 * nsgui.h (FACE_DEFAULT): Remove, unused.
7418 (XGCValues): Change colors to unsigned long.
7419 * nsterm.h (EmacsApp): Add declaration of all methods implemented in
7421 (EmacsMenu -addItemWithWidgetValue:): Change to use NSMenuItem class.
7422 (ns_list_fonts): Remove, unused.
7423 (ns_font_to_xlfd, ns_fontname_to_xlfd): Drop prototypes.
7424 * nsfns.m (interpret_services_menu): Use NSMenuItem class.
7425 * nsfont.m (nsfont_open): Fix cast error in glyphs,metrics alloc.
7426 (nsfont_draw): Compare face colors to 0, not nil.
7427 * nsmenu.m (struct widget_value): Drop unneeded declaration.
7428 (EmacsMenu -addItemWithWidgetValue:, -fillWithWidgetValue:)
7429 (-addSubmenuWithTitle:): Use NSMenuItem class.
7430 (ns_popup_menu): Use NO, not NULL, for enabled setting.
7431 * nsterm.m (ns_draw_glyph_string): Don't compare font to ~0.
7432 (ns_clip_to_row): Make gc arg a BOOL.
7433 (ns_draw_fringe_bitmap, ns_draw_window_cursor): Use YES, NO in
7434 ns_clip_to_row() call.
7435 (ns_draw_glyph_string): Drop face comparison to ~0 (no longer
7436 used). Cast FRAME_FONT assignments.
7437 (ns_read_socket): Cast call to EmacsApp-fulfillService:withArg:.
7438 (ns_string_to_lispmod): Change arg to const char.
7439 (ns_term_init): Use NSMenuItem class.
7440 (EmacsApp -openFile:): Move to different section of file.
7441 (EmacsApp -application:openFiles:): Don't return a value, call
7442 -replyToOpenOrPrint:.
7443 (EmacsView -keyDown:): Fix up cast.
7444 (EmacsView -converstationIdentifier): Use NSInteger instead of long.
7445 (EmacsView -menuDown:): Cast tag in call to
7446 find_and_call_menu_selection().
7447 (ns_list_fonts): Remove, unused.
7448 (ns_font_to_xlfd): Make static. Cast result of UTF8String.
7449 (ns_fontname_to_xlfd): Make static.
7450 * w32menu.c (xmalloc_widget_value, digest_single_submenu):
7451 Remove prototypes (now in keyboard.h).
7452 (next_menubar_widget_id): Remove, unused.
7453 * xmenu.c (xmalloc_widget_value, digest_single_submenu):
7454 Remove prototypes (now in keyboard.h).
7455 * xfaces.c (ns_list_fonts, w32_list_fonts): Remove, unused.
7457 2008-08-01 Dan Nicolaescu <dann@ics.uci.edu>
7459 * Makefile.in (dispnew.o, gtkutil.o, sound.o, atimer.o)
7460 (floatfns.o): Depend on syssignal.h.
7461 (term.o): Depend on syssignal.h, systty.h, and $(INTERVAL_SRC).
7463 * systty.h: Fix previous change that removed BSD_TERMIOS.
7464 Add comments to #ifdefs.
7466 2008-08-01 Adrian Robert <Adrian.B.Robert@gmail.com>
7468 * w32fns.c (w32-load-color-file): Remove.
7469 (x-open-connection): Use renamed Fx_load_color_file.
7470 * xfaces.c (x-load-color-file): Add.
7471 * nsterm.m (ns_initialize): Load colors from etc/rgb.txt instead of
7473 (hide_hourglass): BLOCK_INPUT before UNBLOCK.
7475 2008-07-31 Michael Albinus <michael.albinus@gmx.de>
7477 * dbusbind.c (Fdbus_call_method_asynchronously)
7478 (Fdbus_method_error_internal): New defuns.
7479 (xd_read_message): Handle also reply messages.
7480 (Vdbus_registered_functions_table): Extend docstring.
7482 2008-07-31 Juanma Barranquero <lekktu@gmail.com>
7484 * keyboard.c (gobble_input): Fix previous change.
7486 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
7517 * m/vax.h: Remove VMS support.
7523 * ioctl.h: Remove file.
7525 2008-07-31 Dan Nicolaescu <dann@ics.uci.edu>
7527 * s/ms-w32.h (MULTI_KBOARD): Remove.
7542 * frame.c: Remove references to MULTI_KBOARD, it is now the default.
7543 * config.in: Regenerate.
7545 2008-07-30 Jason Rumney <jasonr@gnu.org>
7547 * w32font.h (struct w32font_info): Use unicode version of textmetrics.
7549 * w32font.c (w32font_encode_char): Leave as unicode if in range.
7550 (w32font_open_internal): Get unicode version of textmetrics.
7551 Don't enable or disable glyph indices here.
7552 (w32font_open): Disable use of glyph indices.
7554 * w32uniscribe.c (uniscribe_open): Enable use of glyph indices.
7556 2008-07-30 Chong Yidong <cyd@stupidchicken.com>
7558 * minibuf.c (Vread_buffer_function): Doc fix.
7560 2008-07-30 John Paul Wallington <jpw@pobox.com>
7562 * minibuf.c (read_buffer_completion_ignore_case): New var.
7563 (Fread_buffer): Use it.
7565 2008-07-30 Dan Nicolaescu <dann@ics.uci.edu>
7567 * systty.h (sensemode): Remove empty #if. Remove reference to
7568 BSD_TERMIOS, unused.
7570 * sysdep.c: Remove reference to DGUX.
7571 (closedir): Remove reference to BROKEN_CLOSEDIR, unused.
7573 * config.in: Regenerate.
7575 2008-07-30 Jason Rumney <jasonr@gnu.org>
7577 * w32uniscribe.c (uniscribe_encode_char): Fix glyph buffer size.
7579 2008-07-29 Jason Rumney <jasonr@gnu.org>
7581 * w32uniscribe.c (uniscribe_shape): Avoid using context if cache
7583 (uniscribe_encode_char): Always use uniscribe.
7584 Avoid using context if cache is populated.
7586 2008-07-29 Jan Djärv <jan.h.d@swipnet.se>
7588 * xmenu.c (Fx_menu_bar_open_internal): Use activate_item signal to
7591 * gtkutil.c (menu_nav_ended): Remove.
7592 (create_menus): Remove signal connect for menu_nav_ended.
7594 2008-07-28 Chong Yidong <cyd@stupidchicken.com>
7596 * xdisp.c (redisplay_window): Check return value of
7597 compute_window_start_on_continuation_line before forcing a window
7600 2008-07-28 Jason Rumney <jasonr@gnu.org>
7602 * w32font.c (w32font_text_extents): Use w32_metric_cache consistently.
7604 * w32term.c (w32_enable_unicode_output, cleartype_active):
7605 Remove obsolete display options.
7606 (x_draw_glyph_string_background): Don't use old cleartype_active
7608 (w32_initialize): Remove cleartype_active initialization.
7609 (syms_of_w32term): Remove w32_enable_unicode_output initialization.
7611 2008-07-28 Andreas Schwab <schwab@suse.de>
7613 * lisp.h (init_weak_hash_tables, syms_of_font)
7614 (xd_read_queued_messages, syms_of_dbusbind): Declare.
7615 (remove_hash_entry): Don't declare.
7616 * eval.c (maybe_call_debugger): Make static and move before use.
7617 * gtkutil.c: Include <X11/Xft/Xft.h> if HAVE_XFT.
7618 * xdisp.c: Include "gtkutil.h" if USE_GTK.
7619 * xterm.h (x_set_frame_alpha): Declare.
7621 2008-07-28 Jan Djärv <jan.h.d@swipnet.se>
7623 * gtkutil.c (menu_nav_ended): Revert change from 2008-07-24.
7624 (create_menus): Connect selection-done to menu_nav_ended.
7626 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7628 * nsfns.m (x-create-frame): Add copy of parms argument to beginning.
7629 Set Vx_resource_name to a fallback. Replace read of 'buffered'
7630 parameter with read of 'alpha' one.
7631 (Qns_frame_parameter): Remove.
7632 * nsselect.m (selection-coding-system)
7633 (next-selection-coding-system, Vselection_coding_system)
7634 (Vnext_selection_coding_system): Drop.
7636 2008-07-27 Adrian Robert <Adrian.B.Robert@gmail.com>
7638 * nsfns.m (do-applescript, do_applescript): Rename to
7639 ns-do-applescript, ns_do_applescript, and move within file.
7641 2008-07-27 Dan Nicolaescu <dann@ics.uci.edu>
7643 Remove support for Mac Carbon.
7651 * mac.c: Remove file.
7682 * Makefile.in: Remove code for Carbon.
7684 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7686 * macterm.c (XDrawLine) [USE_MAC_IMAGE_IO]: Remove spurious return.
7688 2008-07-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7690 * macterm.h (kCGBitmapByteOrder32Host): New define for
7693 * image.c (mac_create_cg_image_from_image, image_load_image_io)
7694 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
7696 * macterm.c (XDrawLine, XCreatePixmapFromBitmapData)
7697 [USE_MAC_IMAGE_IO]: Remove conditionals for kCGBitmapByteOrder32Host.
7699 2008-07-26 David Robinow <drobinow@gmail.com> (tiny change)
7701 * w32inevt.c: Include dispextern.h.
7703 2008-07-26 Andreas Schwab <schwab@suse.de>
7705 * print.c (print_object): Fix off-by-one in last change.
7707 2008-07-25 Juanma Barranquero <lekktu@gmail.com>
7709 * term.c (syms_of_term): Don't initialize default_orig_pair,
7710 default_set_foreground and default_set_background on Windows.
7712 2008-07-25 Jason Rumney <jasonr@gnu.org>
7714 * w32uniscribe.c (uniscribe_shape): Pass NULL for control arg to
7715 ScriptItemize. Clean up return value checking. Remove unused
7717 (uniscribe_encode_char): Encode non-BMP characters with uniscribe
7720 * w32font.c (w32font_has_char): Handle the case where we can't
7721 determine the script for a character.
7723 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
7725 * term.c (syms_of_term): Initialize default_orig_pair,
7726 default_set_foreground, and default_set_background.
7728 * getloadavg.c (nl): Rename to name_list to avoid ncurses.h
7730 (getloadavg): Callers changed.
7732 * image.c (svg_load_image): Fix last change.
7733 (svg_load_image): Use rsvg_handle_get_dimensions to check that
7734 image size is valid. Use g_object_unref instead of deprecated
7735 rsvg_handle_free to free rsvg handle.
7736 (x_from_xcolors): Don't initialize pixmap (silence compiler).
7738 2008-07-25 Jason Rumney <jasonr@gnu.org>
7740 * w32font.c (w32font_encode_char): Encode characters outside BMP as
7741 surrogates before looking up glyph index.
7742 (w32font_text_extents): Encode as surrogates if falling back to
7743 functions that need UTF-16 wide chars.
7745 * w32uniscribe.c (uniscribe_encode_char): Encode characters outside
7746 BMP as surrogates before looking up glyph index.
7748 2008-07-25 Chong Yidong <cyd@stupidchicken.com>
7750 * image.c (svg_load_image): Check for failure in return value of
7751 rsvg_handle_get_pixbuf. Free rsvg handle when done.
7753 2008-07-25 Jason Rumney <jasonr@gnu.org>
7755 * w32font.c (Fx_select_font): Reverse sense of second arg.
7757 2008-07-24 Stefan Monnier <monnier@iro.umontreal.ca>
7759 * syntax.c (struct lisp_parse_state, char_quoted, inc_bytepos)
7760 (dec_bytepos, find_defun_start): Use EMACS_INT for buffer positions.
7762 * puresize.h (PURESIZE_CHECKING_RATIO): New macro.
7765 2008-07-24 Dan Nicolaescu <dann@ics.uci.edu>
7767 * m/amdx86-64.h (HAVE_LIB64_DIR): Consolidate ifdefs.
7768 * m/alpha.h (TEXT_END):
7769 * m/ibmrs6000.h (TEXT_END):
7770 * m/macppc.h (TEXT_END):
7771 * s/darwin.h (TEXT_END):
7772 * s/msdos.h (TEXT_END): Remove, unused.
7773 * s/gnu-linux.h (BSD_PGRPS): Add a comment.
7774 * s/cygwin.h: Remove comment.
7776 * ecrt0.c (NODOT_GLOBAL_START): Remove code, unused.
7777 (DOT_GLOBAL_START): Remove conditional, redundant for CRT0_DUMMIES.
7778 * m/intel386.h (DOT_GLOBAL_START):
7779 * m/vax.h (DOT_GLOBAL_START): Remove, redundant with CRT0_DUMMIES.
7780 (USG): Remove, file not used on USG platforms.
7782 * Makefile.in (HAVE_X11): Remove empty #else.
7784 2008-07-24 Andreas Schwab <schwab@suse.de>
7786 * fileio.c (Finsert_file_contents): Properly adjust undo list
7787 after format conversion.
7789 2008-07-24 Jan Djärv <jan.h.d@swipnet.se>
7791 * gtkutil.c (xg_get_font_name): Cast w to GTK_FONT_SELECTION_DIALOG.
7792 (menu_nav_ended): Remove.
7793 (create_menus): Remove signal connect for menu_nav_ended.
7794 (xg_update_menubar): Also take deactivate_cb as parameter, pass it to
7796 (xg_modify_menubar_widgets): Pass deactivate_cb to xg_update_menubar.
7798 2008-07-23 Jason Rumney <jasonr@gnu.org>
7800 * w32font.c (w32_enumfont_pattern_entity): Return height consistent
7802 (w32font_open): Set font type to gdi.
7804 * w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
7806 2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>
7808 * s/usg5-4.h (ADDR_CORRECT): Remove, unused.
7809 * unexaix.c (ADDR_CORRECT): Remove conditional, the only user
7811 * unexec.c (ADDR_CORRECT): Define unconditionally.
7813 * m/ibmrs6000.h (C_SWITCH_MACHINE): Remove.
7815 * unexec.c: Remove code depending on !COFF and USG, the file is
7816 not used for such systems.
7818 * s/netbsd.h (A_TEXT_OFFSET, A_TEXT_SEEK):
7819 * s/freebsd.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, unused.
7820 (LD_SWITCH_SYSTEM_1): Remove, update users.
7822 * s/darwin.h (DATA_END):
7823 * m/intel386.h (DATA_END):
7824 * m/ibmrs6000.h (DATA_END):
7825 * m/alpha.h (DATA_END): Remove, unused.
7827 * config.in: Regenerate.
7828 * s/ms-w32.h (subprocesses): Define unconditionally.
7829 * s/template.h (subprocesses): Update comment.
7830 * s/vms.h (subprocesses):
7831 * s/usg5-4.h (subprocesses):
7832 * s/hpux10-20.h (subprocesses):
7833 * s/gnu-linux.h (subprocesses):
7834 * s/cygwin.h (subprocesses):
7835 * s/bsd-common.h (subprocesses):
7836 * s/aix4-2.h (subprocesses):
7837 * s/darwin.h (subprocesses): Do not define, defined by default now.
7839 * Makefile.in (C_SWITCH_SITE, LD_SWITCH_SITE): Remove, unused.
7840 Remove all references.
7841 (temacs): Add GNUstep specific ld flags.
7843 * nsterm.m (syms_of_nsterm): Provide ns, not ns-windowing,
7844 similarly to what X does.
7846 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7848 * nsfns.m (x-list-fonts): Remove.
7849 (syms_of_nsfns): Drop the x-list-fonts declaration.
7850 * nsterm.m: Get rid of remaining "//" comments.
7852 2008-07-22 Chong Yidong <cyd@stupidchicken.com>
7854 * xselect.c (Fx_rotate_cut_buffers_internal): Doc fix.
7856 * nsselect.m (Fns_selection_exists_p, Fns_selection_owner_p)
7857 (Fx_get_selection_internal, Fns_rotate_cut_buffers_internal)
7858 (Fns_own_selection_internal, Fx_disown_selection_internal)
7859 (Fns_get_cut_buffer_internal, Fns_store_cut_buffer_internal):
7861 * nsmenu.m (Fns_reset_menu, Fx_popup_menu): Change to use 'doc: /*
7862 ... */' style of docstrings. Doc fixes.
7864 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
7866 * terminfo.c (UP, BC, PC): Undo previous change.
7868 * nsfns.m: Rename ns prefixed functions/variables to the
7869 corresponding x versions. Update references.
7871 2008-07-22 Stefan Monnier <monnier@iro.umontreal.ca>
7873 * syntax.c (char_quoted): Check "charpos > beg" before decrementing.
7875 2008-07-22 Dan Nicolaescu <dann@ics.uci.edu>
7877 * nsfns.m (x_set_menu_bar_lines, x_set_tool_bar_lines):
7878 Remove forwarding functions.
7879 (ns_set_menu_bar_lines): Rename to x_set_menu_bar_lines, make
7881 (ns_set_tool_bar_lines): Rename to x_set_tool_bar_lines, make
7883 (ns_frame_parm_handlers): Use the new names.
7884 (syms_of_nsfns): Move to the end of file.
7886 * nsterm.m (syms_of_nsterm): Move to the end of file.
7888 * dispnew.c (init_display): Remove code for X10.
7890 2008-07-22 Jason Rumney <jasonr@gnu.org>
7892 * w32proc.c (Fw32_long_file_name): Don't append dir separator to
7895 2008-07-22 Adrian Robert <Adrian.B.Robert@gmail.com>
7897 * nsterm.m (syms_of_nsterm): Remove debugging println.
7899 2008-07-22 David Reitter <david.reitter@gmail.com>
7901 * nsfns.m (do_applescript, F_do_applescript): NS version of the
7902 Carbon implementation of the same functionality: execute arbitrary
7905 2008-07-21 Adrian Robert <Adrian.B.Robert@gmail.com>
7907 * nsfns.m (Fx_create_frame, Fx_read_file_name, Fx_get_resource)
7908 (Fx_set_resource, Fx_set_alpha, Fx_server_max_request_size)
7909 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
7910 (Fx_display_mm_height, Fx_display_mm_width)
7911 (Fx_display_backing_store, Fx_display_visual_class)
7912 (Fx_display_save_under, Fx_open_connection)
7913 (Fx_close_connection, Fx_hide_emacs, Fx_font_name)
7914 (Fx_list_colors, Fx_perform_service, Fx_color_defined_p)
7915 (Fx_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
7916 (Fx_display_pixel_width, Fx_display_pixel_height)
7917 (Fx_display_usable_bounds, Fx_display_planes)
7918 (Fx_display_color_cells, Vns_icon_type_alist): Change to use 'doc: /*
7919 ... */' style of docstrings.
7921 2008-07-21 Dan Nicolaescu <dann@ics.uci.edu>
7923 * m/mips.h (LOAD_AVE_TYPE, LOAD_AVE_CVT): Do not define, not used
7926 * m/iris4d.h (mips): Do not define.
7927 * sysdep.c (init_sys_modes): Use __mips__ instead of mips.
7929 * m/ibmrs6000.h (LD_SWITCH_SITE): Remove.
7935 * nsterm.m: Rename ns prefixed functions/variables to the
7936 corresponding x versions. Update references.
7938 * m/ibms390x.h (NO_REMAP): Do not undefine.
7940 * m/amdx86-64.h: Use SOLARIS2 instead of sun.
7942 2008-07-21 Chong Yidong <cyd@stupidchicken.com>
7944 * nsfns.m: Change NS to Nextstep in docstrings and error messages.
7945 (Fns_create_frame, Fns_read_file_name, Fns_get_resource)
7946 (Fns_set_resource, Fns_set_alpha, Fns_server_max_request_size)
7947 (Fns_server_vendor, Fns_server_version, Fns_display_screens)
7948 (Fns_display_mm_height, Fns_display_mm_width)
7949 (Fns_display_backing_store, Fns_display_visual_class)
7950 (Fns_display_save_under, Fns_open_connection)
7951 (Fns_close_connection, Fns_hide_emacs, Fns_font_name)
7952 (Fns_list_colors, Fns_perform_service, Fns_color_defined_p)
7953 (Fns_color_values, Fxw_display_color_p, Fx_display_grayscale_p)
7954 (Fns_display_pixel_width, Fns_display_pixel_height)
7955 (Fns_display_usable_bounds, Fx_display_planes)
7956 (Fns_display_color_cells, Vns_icon_type_alist): Doc fixes.
7958 2008-07-21 Ami Fischman <ami@fischman.org> (tiny change)
7960 * print.c (print_object): Check print_depth before searching for
7963 2008-07-21 Michael Albinus <michael.albinus@gmx.de>
7965 * dbusbind.c (Fdbus_register_signal): Use sprintf + strcat instead
7968 2008-07-21 Kenichi Handa <handa@m17n.org>
7970 * ftfont.c (adjust_anchor): Check if DeltaValue is not NULL.
7972 2008-07-20 Andreas Schwab <schwab@suse.de>
7974 * syntax.c (find_start_pos, find_start_value)
7975 (find_start_value_byte, find_start_begv, find_defun_start)
7976 (back_comment, scan_sexps_forward): Use EMACS_INT for buffer positions.
7978 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
7980 * s/sol2-3.h: Insert contents of s/sol2.h.
7981 (LD_SWITCH_SYSTEM): Remove redundant definition.
7982 * s/sol2.h: Remove, unused.
7984 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7986 * nsterm.m (ns_get_color): Recognize HSB,AHSB be synonyms for HSV,AHSV.
7988 2008-07-20 Adrian Robert <Adrian.B.Robert@gmail.com>
7990 * Makefile.in (ns_appdir): Fix typo in find command.
7992 2008-07-20 Dan Nicolaescu <dann@ics.uci.edu>
7994 * m/intel386.h (NO_REMAP): Do no define for USG, not used.
7996 * s/usg5-4.h (LIBS_SYSTEM): Remove, system for which this was
7997 added not supported anymore.
7999 * s/usg5-4-2.h (LIBS_SYSTEM):
8000 * s/sol2.h (LIBS_SYSTEM): Do not undefine.
8002 * s/netbsd.h (GETPGRP_NO_ARG, N_TRELOFF):
8003 * s/lynxos.h (GETPGRP_NO_ARG):
8004 * s/hpux10-20.h (NO_SIOCTL_H):
8005 * s/gnu.h (GETPGRP_NO_ARG):
8006 * s/gnu-linux.h (NO_SIOCTL_H):
8007 * s/freebsd.h (GETPGRP_NO_ARG, N_TRELOFF):
8008 * s/cygwin.h (GETPGRP_NO_ARG):
8009 * s/irix6-5.h (LIBS_SYSTEM, GETPGRP_NO_ARG): Remove, unused.
8010 (C_DEBUG_SWITCH): Remove duplicate definition.
8012 * m/ibms390.h: Remove boilerplate comments.
8014 * sysdep.c (closedir): Use SOLARIS2 instead of sun && USG5_4.
8016 * process.c (HAVE_SERIAL): Consolidate ifdefs.
8017 (wait_reading_process_output): Remove code for SunOS, platform not
8018 supported anymore. Use SOLARIS2 instead of sun.
8020 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8022 * font.c (font_open_by_name): Under NS, default lface height to zero.
8023 (font_open_for_lface): Under NS, set size based on frame fontsize.
8024 * nsterm.m (EmacsView-changeFont:): Remove some commented code.
8025 * frame.c (x_set_frame_parameters): Remove HAVE_NS ifdef.
8027 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8029 * nsterm.m (ns_antialias_text, ns_use_qd_smoothing)
8030 (ns_use_system_highlight_color): Switch these from DEFVAR_BOOL to
8031 DEFVAR_LISP and change all code accordingly to use Qt/Qnil instead of
8033 * nsterm.h (prevUseHighlightColor): Make a Lisp_Object.
8034 * nsfont.m (nsfont_draw): Treat ns_use_qd_smoothing as Lisp_Object.
8035 * Makefile.in (clean): Clear out build destination dir.
8037 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8039 * Makefile.in (nsgui.h-related dependencies): Remove abbrev, xfns,
8041 * lisp.h: Remove declaration of hash_remove.
8042 * nsgui.h: Remove redefinitions of hash_remove.
8043 * fns.c (hash_remove): Rename to hash_remove_from_table.
8045 2008-07-19 Seiji Zenitani <zenitani@mac.com>
8047 * nsfont.m (nsfont_fmember_to_entity, nsfont_make_fontset_for_font):
8048 strdup() the family UTF8String before modifying it.
8050 2008-07-19 Adrian Robert <Adrian.B.Robert@gmail.com>
8052 * nsterm.m (ns_maybe_dumpglyphs_background): Compare result from
8053 NS_FACE_BACKGROUND with 0 instead of nil.
8054 * nsfont.m (nsfont_draw): Same.
8056 2008-07-19 Chong Yidong <cyd@stupidchicken.com>
8058 * nsfns.m (ns_set_background_color): Fix crash.
8060 2008-07-18 Chong Yidong <cyd@stupidchicken.com>
8062 * Makefile.in (SOME_MACHINE_LISP): Remove ns-carbon-compat.elc.
8064 2008-07-18 Dan Nicolaescu <dann@ics.uci.edu>
8066 * puresize.h (BASE_PURESIZE): Increase to 1240000.
8068 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8070 * gtkutil.c: Include <config.h> instead of "config.h".
8072 * lisp.h (Foverlay_buffer): Add EXFUN.
8074 * process.c (create_process) [!WINDOWSNT && FD_CLOEXEC]: Wait for
8075 child process to complete child_setup. Undo 2005-09-21 change.
8077 * s/darwin.h: Mention setsid after vfork.
8079 2008-07-17 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8081 * Makefile.in (frame.o, keyboard.o, xdisp.o, xfaces.o):
8084 * macfns.c (Fx_server_version): Don't use gestaltSystemVersionMajor,
8085 gestaltSystemVersionMinor, or gestaltSystemVersionBugFix.
8087 * macterm.c (keycode_to_xkeysym_table): Add entries for f17, f18,
8089 [MAC_OSX] (fn_keycode_to_keycode_table): Likewise.
8091 * macterm.h (gestaltSystemVersionMajor, gestaltSystemVersionMinor)
8092 (gestaltSystemVersionBugFix) [MAC_OS_X_VERSION_MAX_ALLOWED < 1040]:
8095 * mactoolbox.c [USE_MAC_TSM] (mac_handle_text_input_event):
8096 Check if FACE_FROM_ID returns NULL.
8098 2008-07-17 David Robinow <drobinow@gmail.com> (tiny change)
8100 * w32inevt.c (change_frame_size): Remove extern declaration.
8101 (resize_event, maybe_generate_resize_event): Pass SAFE arg to
8104 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
8106 * getloadavg.c: Revert last change (2008-07-15).
8108 2008-07-17 Adrian Robert <Adrian.B.Robert@gmail.com>
8110 * Makefile.in: Replace emacsapp, emacsbindir, emacsappsrc variables
8111 set here with ns_appdir, ns_appresdir, ns_appbindir, ns_appsrc set
8114 2008-07-17 Dan Nicolaescu <dann@ics.uci.edu>
8117 * s/sol2-4.h: Reorganize conditionals.
8119 * ecrt0.c: Remove code depending on m68000, not used anymore.
8121 * fns.c (hash_remove): Make static.
8122 * lisp.h (hash_remove): Don't prototype.
8126 * m/macppc.h: Remove boilerplate comments.
8128 * m/sparc.h (A_TEXT_OFFSET, A_TEXT_SEEK): Remove, only used on
8129 Solaris, which does not need them.
8131 * m/vax.h: Remove comments about unsupported systems.
8133 * s/darwin.h: Reorganize ifdefs.
8135 2008-07-17 Andreas Schwab <schwab@suse.de>
8137 * s/cygwin.h (LIB_STANDARD_LIBSRC): Don't define.
8139 2008-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
8141 Use SDATA. Follow coding convention of placing operators at
8142 beginning of next line rather than end of previous line, and placing
8143 spaces around infix operators.
8145 * Makefile.in: Undef LIB_STANDARD before defining it to silence warning
8146 in case it was defined already.
8147 USE @GNUSTEP_MAKEFILES@ rather than envvars.
8148 * nsterm.m (ns_term_init): Pass Qt and Qnil rather than YES/NO to
8150 (applicationShouldTerminate, setValuesFromPanel): Use EQ to compare
8152 * nsterm.h (Fx_display_grayscale_p, Fx_display_planes)
8153 (ns_defined_color, ns_color_to_lisp): Declare.
8154 * nsselect.m (ns_handle_selection_request, ns_handle_selection_clear)
8155 (Fns_own_selection_internal): Make the big ugly hack more explicit, so
8156 it's accepted even with USE_LISP_UNION_TYPE.
8157 * nsmenu.m (ns_update_menubar): Use EQ to compare Lisp_Objects.
8158 (update_frame_tool_bar): Remove apparently obsolete tests for
8159 non-integerness of f->tool_bar_lines.
8160 (windowShouldClose, addButton, clicked, runDialogAt): Make the big ugly
8161 hack more explicit, so it's accepted even with USE_LISP_UNION_TYPE.
8162 * nsfont.m (nsfont_driver): Use just 0 rather than an invalid cast.
8163 (nsfont_open): Don't confuse NULL for Qnil.
8164 * nsfns.m (ns_implicitly_set_icon_type): Use EQ to compare Lisp_Objects.
8165 * menu.h (find_and_call_menu_selection):
8166 * menu.c (find_and_call_menu_selection): Use just int for vector size.
8167 (find_and_return_menu_selection): Always return something.
8168 * frame.h: Include dispextern.h for Display_Info.
8169 (display_x_get_resource): Declare.
8171 2008-07-16 Adrian Robert <Adrian.B.Robert@gmail.com>
8173 * syntax.c: Remove stdio.h include accidentally introduced in
8175 * Makefile.in: Change GNUSTEP to NS_IMPL_GNUSTEP, COCOA to
8177 * keyboard.c (handle_async_input, input_available_signal): Remove
8178 BSD4_1 conditional code, introduced accidentally in Emacs.app commit.
8180 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
8182 * nsterm.m (lisp_to_mod): Use parse_solitary_modifier instead.
8183 (ns_lisp_to_color): Don't mess with internal Lisp data fields.
8184 (ns_term_init, ns_term_shutdown, initFrameFromEmacs, ns_list_fonts):
8187 * keymap.c: Remove all NS-specific code.
8188 (where_is_preferred_modifier, Vwhere_is_preferred_modifier): New vars.
8189 (preferred_sequence_p): Rename from ascii_sequence_p; pay attention to
8190 where_is_preferred_modifier, return a different value depending on how
8191 preferred is the binding.
8192 (where_is_internal): Adjust accordingly.
8193 (Fwhere_is_internal): Refresh where_is_preferred_modifier.
8194 Adjust to new preferred_sequence_p.
8195 (syms_of_keymap): Declare `where-is-preferred-modifier'.
8196 * keyboard.c (parse_solitary_modifier): Not static any more.
8197 * keyboard.h (parse_solitary_modifier): Declare.
8199 2008-07-16 Andreas Schwab <schwab@suse.de>
8201 * Makefile.in (SOME_MACHINE_LISP): Remove easy-mmode, fix spelling
8204 2008-07-16 Chong Yidong <cyd@stupidchicken.com>
8206 * xdisp.c (move_it_in_display_line): Account for word wrap, so
8207 that we don't move off the line.
8209 2008-07-16 Stefan Monnier <monnier@iro.umontreal.ca>
8211 * keyboard.c (Qsuper): Remove.
8212 (parse_menu_item): Don't call where_is_internal specially for NS.
8214 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
8216 * s/gnu-linux.h: Remove boilerplate comments.
8218 * m/alpha.h (__ELF__): Consolidate conditions.
8220 * m/m68k.h (linux): Use GNU_LINUX instead.
8221 Remove boilerplate comments.
8223 * m/intel386.h: Undo refactoring from previous change.
8224 (LIB_STANDARD): All systems that define USG define LIB_STANDARD
8225 too, remove dead code.
8226 (linux): Use GNU_LINUX instead.
8228 2008-07-16 Jason Rumney <jasonr@gnu.org>
8230 * w32gui.h: Repeat 26 June changes lost by last change.
8232 2008-07-16 Dan Nicolaescu <dann@ics.uci.edu>
8234 * systty.h: Remove code for Aix on 386, unsupported platform.
8236 * s/ms-w32.h: Remove boilerplate comments.
8237 (fcloseall, fgetchar, flushall, fputchar, getw, putw): Remove, unused.
8239 * s/gnu-linux.h (TERM): Remove support.
8240 (HAVE_SYSVIPC): Remove, unused.
8241 (A_TEXT_OFFSET, A_TEXT_SEEK, ADJUST_EXEC_HEADER): Remove, not used
8244 * process.c: Remove support for IRIS, unused.
8245 Remove support for TERM, not relevant anymore.
8247 * unexalpha.c (DEFAULT_ENTRY_ADDRESS): Remove, replace the only
8248 used with the definition.
8250 * s/aix4-2.h (static): Do not undef.
8252 * m/ibmrs6000.h: Remove code depending on USG5_4, this file is
8254 (HAVE_SYSVIPC): Remove, unused.
8256 * m/hp800.h (CANNOT_DUMP): Do not undef.
8258 * m/alpha.h: Fix comment.
8260 * s/usg5-4.h (HAVE_SYSVIPC): Remove, unused.
8261 (USG_SHARED_LIBRARIES): Remove, only used in unexec.c which is not
8262 used by this configuration.
8263 * emacs.c: Remove code depending on USG_SHARED_LIBRARIES.
8264 * unexec.c: Remove code depending on HPUX and
8265 USG_SHARED_LIBRARIES, not used with this file. Remove code
8266 depending on IRIS, unused. Remove if 0-ed code.
8268 * s/template.h: Remove comments about static.
8270 * sysdep.c: Remove code depending on NEED_PTEM_H, unused.
8271 Remove if 0-ed code.
8272 (baud_convert): Don't depend on BAUD_CONVERT, all definitions the
8273 were the same as the default.
8274 * s/vms.h (BAUD_CONVERT): Remove, same as the default.
8275 Remove boilerplate comments.
8276 * s/hpux10-20.h (BAUD_CONVERT): Remove, same as the default.
8277 (HAVE_SYSVIPC): Remove, unused.
8278 (LD_SWITCH_SYSTEM_TEMACS): Simplify, hp9000s700 not supported anymore.
8280 * m/ia64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8281 Remove boilerplate comments.
8282 * m/amdx86-64.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8283 Remove boilerplate comments.
8284 * m/ibms390x.h (PNTR_COMPARISON_TYPE): Remove, same as the default.
8285 Remove boilerplate comments.
8286 * lisp.h (PNTR_COMPARISON_TYPE): Define it unconditionally.
8288 * m/intel386.h (DATA_SEG_BITS): Remove definitions, only used on
8289 USG systems which do not use DATA_SEG_BITS.
8290 Refactor code. Remove boilerplate comments.
8299 * s/msdos.h: Remove boilerplate comments.
8301 * m/iris4d.h: Remove boilerplate comments and code for systems that
8302 do not use this file.
8303 (IRIS_4D): Remove, unused.
8305 * m/mips.h: Remove boilerplate comments and code for systems that
8306 do not use this file.
8308 * m/arm.h (SIGN_EXTEND_CHAR): Remove, unused.
8309 * unexmips.c: Remove file, unused.
8311 * editfns.c (Fuser_full_name): Replace the only use of
8312 USER_FULL_NAME with its value.
8313 * config.in: Regenerate.
8315 2008-07-16 David Reitter <david.reitter@gmail.com>
8317 * Makefile.in: Add ns-win, ns-carbon-compat, easy-mmode and
8318 easy-menu to SOME_MACHINE_LISP for the new NeXTstep port.
8320 2008-07-16 Glenn Morris <rgm@gnu.org>
8322 * emacs.c (system-type): Doc fix.
8324 2008-07-15 Stefan Monnier <monnier@iro.umontreal.ca>
8326 * keyboard.c (parse_menu_item): Don't use cachelist, even under NS.
8327 If the cache doesn't work, let's fix it, rather than work around it.
8329 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8331 * Makefile.in: Correct additions for nsfont.o in last commit.
8332 * nsfont.m: New file (forgot last commit).
8334 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
8336 * callproc.c (set_initial_environment): Initialize
8337 Vprocess_environment under CANNOT_DUMP (fixes crash when
8338 batch-compiling for bootstrap).
8340 2008-07-15 Chris Hall <chris@web.workinglinux.com> (tiny change)
8341 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8343 (make_initial_frame): Call init_frame_faces(f) in CANNOT_DUMP case --
8344 fix crash due to different init order.
8346 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8348 Changes and additions for NeXTstep windowing system (Cocoa and
8352 * config.in: Support defines and build commands for NS port.
8353 * blockinput.h (BLOCK_INPUT, UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT)
8354 (UNBLOCK_INPUT_TO): Don't use under NS unless EXPERIMENTAL_CONTROL_G.
8355 * dispextern.h: Include nsgui.h and add needed typedefs under NS
8357 (struct face): Add synth_ital field.
8358 * dispnew.c: Include nsterm.h when compiling under NS windowing.
8359 (init_display): Initialize Vinitial_window_system to "ns" when so
8361 * emacs.c: Include GSConfig.h when compiling under GNUstep.
8362 (display_arg): Use under NS.
8363 (main): Under NS, allocate autorelease pool and handle command line
8364 args. Move syms_of_xmenu() call under #ifdef HAVE_X_WINDOWS.
8365 (standard_args): Add NS-specific args.
8366 (shut_down_emacs): Shut down NS terminal if compiled under NS.
8367 * font.c (DEFAULT_ENCODING): New variable.
8368 (font_find_for_lface): Use it.
8369 (syms_of_font): Load syms_of_nsfont under NS.
8370 * font.h: Declare nsfont_driver when compiled under NS.
8371 * fontset.c: When compiling under NS, include nsterm.h.
8372 (fontset_from_font): Autoconstruct fontset under NS.
8373 * frame.c (various): Under NS, include nsterm.h, add Qns window system
8374 symbol, document and use it.
8375 (do_switch_frame): When for_deletion under Cocoa, add
8377 (x_set_frame_parameters): Ensure font attribute changes are picked up.
8378 (x_get_arg): Allow "yes" and "no" as boolean values.
8379 (syms_of_frame): Declare Qns. Init Vdefault_frame_scroll_bars to
8381 (focus-follows-mouse): Default to 0 under NS.
8382 * frame.h (enum output_method): Add output_ns.
8383 (external_tool_bar, external_menu_bar, FRAME_EXTERNAL_TOOLBAR)
8384 (FRAME_EXTERNAL_MENU_BAR): Use under NS.
8385 (FRAME_WINDOW_P): NS-specific definition.
8386 * fringe.c (max_used_fringe_bitmap): Make public.
8387 * getloadavg.c (mach/mach.h): Include it under NeXT descendant OS's.
8388 (getloadavg): Use NeXT code under descendant OS's.
8389 * image.c (includes and header section, x_create_bitmap_from_data)
8390 (x_create_bitmap_from_file, free_bitmap_record, image_background)
8391 (image_background_transparent, x_clear_image_1)
8392 (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
8393 (Create_Pixmap_From_Bitmap_Data, xpm_load_image, lookup_rgb_color)
8394 (x_to_xcolors, x_from_xcolors, x_disable_image)
8395 (x_build_heuristic_mask, syms_of_image): Add NS support parallel to
8396 other GUIs, including XPM support using code originally written for
8398 (png_load, jpeg_load, tiff_load, gif_load): Add implementations
8400 (image_ascent): Use font metrics macros instead of direct struct field
8402 * keyboard.c (includes): Add nsterm.h when compiling under NS.
8403 (kbd_buffer_get_event): Handle NS as other GUI windowing systems.
8404 Also, handle NS as GTK for menu bar purposes.
8405 (make_lispy_event): Handle NS as other GUI windowing systems, and as X
8406 toolkit where they differ.
8407 (parse_menu_item): Prefer keybindings using 'super' modifier. Also,
8408 use cachelist, still needed under NS.
8409 * keyboard.h (ENCODE_MENU_STRING, XtPointer, Boolean): Handle as NTGUI.
8410 (struct widget_value): Define it here for menu.c.
8411 * keymap.c (includes): Include modifier internals.
8412 (lisp_to_mod, modifier_sequence_p): New functions, compiled only under
8414 (where_is_internal, Fwhere_is_internal): When compiled under NS, add
8415 support for preferring sequences using certain modifiers, specified by
8416 the FIRSTONLY argument.
8417 * lisp.h (hash_remove): Rename to avoid name clash when compiling
8418 under NS GNUstep implementation.
8419 (USE_LSB_TAG): Use it under Cocoa when compiling under NS.
8420 * lread.c (init_lread): Treat NS as HAVE_CARBON for turn_off_warning.
8421 * menu.c: Include nsterm.h under NS.
8422 (single_menu_item, parse_single_submenu, xmalloc_widget_value)
8423 (free_menubar_widget_tree_value, update_submenu_strings)
8424 (find_and_call_menu_selection): Treat NS as X and NT.
8425 (find_and_return_menu_selection): New function, used for popup menus.
8432 * nsterm.m: New files.
8433 * process.c (wait_reading_process_output): Under NS, call ns_select()
8434 instead of plain select().
8435 * syntax.c (char_quoted): Under NS, avoid a crash when called near
8436 beginning of buffer.
8437 * sysselect.h (init_process): Rename when compiling under Cocoa to
8438 avoid name conflict.
8439 * termhooks.h (display_info): Add ns_display_info to union.
8440 * terminal.c (Fterminal_live_p): Add ns to terminal types.
8441 * terminfo.c (UP, BC, PC): Don't declare when compiling under NS in
8443 * unexnext.c: Update to work with mach API on Mac OS X, and to use new
8444 unexec() signature. (Note, this will dump, but the resulting file
8445 crashes; unexosx is used instead; keeping around for reference and
8446 possible aid in getting dump working under GNUstep.)
8447 * w32gui.h (button_type, widget_value): Remove definitions (now in
8449 * window.c: Include nsterm.h when compiling under NS.
8450 * xdisp.c (includes): Include nsterm.h when compiling under NS.
8451 (set_frame_menubar, update_menu_bar, display_menu_bar): Handle NS as
8452 other GUI windowing systems.
8453 (update_tool_bar, redisplay_tool_bar, redisplay_window): Handle NS as
8455 (x_consider_frame_title): Under NS, set icon type and frame
8456 modified-state indicator; use ns_set_name_as_filename() when using
8458 (update_window_cursor): Make public when compiling under NS.
8459 (display_hourglass_p, syms_of_xdisp, hourglass_shown_p)
8460 (hourglass_atimer, Vhourglass_delay
8461 * xfaces.c (header section, init_frame_faces, clear_font_table)
8462 (defined_color, unload_color, x_face_list_fonts)
8463 (prepare_face_for_display): Add NS support parallel to other GUIs.
8464 Emulate GCs like other non-X GUIs.
8465 (split_font_name): Don't lowercase font name under NS.
8466 (merge_face_ref, Finternal_set_lisp_face_attribute): Support stippling
8468 * s/darwin.h: Add support for compilation under NS.
8470 2008-07-15 Jason Rumney <jasonr@gnu.org>
8472 * w32fns.c (Fx_create_frame): Remove duplicate unwind_protect.
8473 (w32_show_hourglass): Rename from show_hourglass.
8474 (w32_hide_hourglass): Rename from hide_hourglass.
8475 (DEFAULT_HOURGLASS_DELAY): Revert from last change.
8476 (Vhourglass_delay): Declare extern.
8477 (hourglass_started): Remove.
8479 * xdisp.c (Vhourglass_delay): Remove static.
8480 (hourglass_started, start_hourglass, cancel_hourglass):
8481 Don't include these versions on WINDOWSNT.
8483 2008-07-15 Adrian Robert <Adrian.B.Robert@gmail.com>
8485 * dispextern.h (hourglass_shown_p, hourglass_atimer): New extern
8486 variables (formerly in xfns.c).
8487 (show_hourglass, hide_hourglass): New prototypes (same).
8488 * xdisp.c (display_hourglass_p, hourglass_shown_p, hourglass_atimer)
8489 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY): New variables (formerly
8491 (syms_of_xdisp): Declare/initialize display-hourglass,
8492 hourglass-delay. Initialize hourglass_atimer, hourglass_shown_p.
8493 (hourglass_started, start_hourglass, cancel_hourglass): New functions,
8495 * xfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
8496 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
8497 (start_hourglass, cancel_hourglass): Remove.
8498 (show_hourglass, hide_hourglass): Remove prototypes and static
8500 (syms_of_xfns): Remove display-hourglass, hourglass-delay,
8501 hourglass_atimer, hourglass_shown_p declaration/initialization.
8502 * macfns.c (display_hourglass_p, hourglass_atimer, hourglass_shown_p)
8503 (Vhourglass_delay, DEFAULT_HOURGLASS_DELAY, hourglass_started)
8504 (start_hourglass, cancel_hourglass): Remove.
8505 (show_hourglass, hide_hourglass): Remove prototypes and static
8507 (syms_of_macfns): Remove display-hourglass, hourglass-delay,
8508 hourglass_atimer, hourglass_shown_p declaration/initialization.
8509 * w32fns.c (display_hourglass_p, Vhourglass_delay)
8510 (DEFAULT_HOURGLASS_DELAY): Remove.
8511 (syms_of_w32fns): Remove display-hourglass, hourglass-delay,
8512 hourglass_shown_p declaration/initialization.
8514 2008-07-14 Jason Rumney <jasonr@gnu.org>
8516 * w32fns.c (w32_get_arg): Remove wrapper function.
8517 (w32_createwindow, x_icon, x_create_tip_frame): Use x_get_arg
8519 (Fx_create_frame): Sync with xfns.c. Use x_get_arg directly.
8521 2008-07-14 Kenichi Handa <handa@m17n.org>
8523 * xfont.c (xfont_open): Add workaround for X's bug.
8525 2008-07-14 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
8527 * fontset.c: Include <stdio.h> unconditionally.
8529 2008-07-13 Michael Albinus <michael.albinus@gmx.de>
8531 * dbusbind.c (Fdbus_register_signal): Allow also signal arguments
8534 2008-07-13 Dan Nicolaescu <dann@ics.uci.edu>
8536 * s/vms.h: Use __GNUC__ instead of _GNUC_.
8539 * m/alpha.h: Use GNU_LINUX instead of LINUX. Reorganize conditionals.
8541 * m/ibms390x.h (XINT, XUINT): Don't define, same as the default
8542 (SPECIAL_EMACS_INT):
8543 * m/ia64.h (SPECIAL_EMACS_INT):
8544 * m/amdx86-64.h (SPECIAL_EMACS_INT):
8545 * s/gnu.h (NLIST_STRUCT):
8546 * s/aix4-2.h (X11R5_INHIBIT_I18N):
8547 * s/gnu-linux.h (LINUX):
8548 * s/msdos.h (HAVE_FACES):
8549 * s/ms-w32.h (HAVE_FACES): Don't define, unused.
8552 * sysdep.c (setup_pty): Don't depend on SYSV_PTYS, it is not used
8555 2008-07-12 Dan Nicolaescu <dann@ics.uci.edu>
8557 * syswait.h: Remove old if 0 code. Do not define WAITTYPE, it was
8558 always defined as int.
8560 * s/netbsd.h (HAVE_UNION_WAIT, HAVE_WAIT_HEADER, WAIT_USE_INT):
8561 * s/gnu.h (HAVE_WAIT_HEADER, WAIT_USE_INT, HAVE_UNION_WAIT):
8562 * s/gnu-linux.h (HAVE_WAIT_HEADER):
8563 * s/freebsd.h (HAVE_WAIT_HEADER):
8564 * s/bsd-common.h (HAVE_UNION_WAIT):
8565 * s/aix4-2.h (HAVE_WAIT_HEADER):
8566 * m/mips.h (HAVE_UNION_WAIT):
8567 * s/usg5-4.h (HAVE_WAIT_HEADER, WAITTYPE): Do not define, not used.
8568 (COFF, static): Do not define, they are undefined later in the file.
8570 * process.c (update_status): Don't use a union.
8572 (sigchld_handler): Use int instead of WAITTYPE.
8574 2008-07-12 Chong Yidong <cyd@stupidchicken.com>
8576 * indent.c (Fvertical_motion): Restore hscroll before moving to
8579 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
8581 * lisp.h: Remove left over code.
8583 2008-07-11 Andreas Schwab <schwab@suse.de>
8585 * lisp.h: Fix logic in last change.
8588 * menu.c: Include it.
8589 * xmenu.c: Likewise.
8590 * Makefile.in: Update dependencies.
8592 2008-07-11 Kenichi Handa <handa@m17n.org>
8594 * fontset.c (fontset_from_font): Cancel the previous change.
8596 2008-07-11 Dan Nicolaescu <dann@ics.uci.edu>
8601 * alloc.c: Replace all references of NO_UNION_TYPE with
8602 USE_LISP_UNION_TYPE.
8604 * m/xtensa.h (NO_UNION_TYPE):
8605 * m/vax.h (NO_UNION_TYPE):
8606 * m/template.h (NO_UNION_TYPE):
8607 * m/sparc.h (NO_UNION_TYPE):
8608 * m/mips.h (NO_UNION_TYPE):
8609 * m/macppc.h (NO_UNION_TYPE):
8610 * m/m68k.h (NO_UNION_TYPE):
8611 * m/iris4d.h (NO_UNION_TYPE):
8612 * m/intel386.h (NO_UNION_TYPE):
8613 * m/ibms390x.h (NO_UNION_TYPE):
8614 * m/ibms390.h (NO_UNION_TYPE):
8615 * m/ibmrs6000.h (NO_UNION_TYPE):
8616 * m/ia64.h (NO_UNION_TYPE):
8617 * m/hp800.h (NO_UNION_TYPE):
8618 * m/arm.h (NO_UNION_TYPE):
8619 * m/amdx86-64.h (NO_UNION_TYPE):
8620 * m/alpha.h (NO_UNION_TYPE): Remove definition, all platform were
8621 defining it the same.
8623 2008-07-10 Chong Yidong <cyd@stupidchicken.com>
8625 * xdisp.c (move_it_to): Backtrack if past the edge of a wrapped line.
8627 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
8644 * s/vms.h: Remove references to unused variables.
8646 2008-07-10 Andreas Schwab <schwab@suse.de>
8648 * ftfont.c (ftfont_resolve_generic_family): Remove foundry from
8649 pattern before matching the generic family.
8651 2008-07-10 Dan Nicolaescu <dann@ics.uci.edu>
8658 * s/darwin.h: Remove dead code.
8671 * m/amdx86-64.h: Remove dead code and references to unused
8672 and compiler defined symbols.
8675 * unexelf.c: Remove references to desupported systems.
8677 * m/powermac.h: Remove file, it is now identical to m/macppc.h.
8679 * m/powermac.h: Remove boilerplate comments.
8680 (NO_REMAP): Remove unused definition.
8682 * m/macppc.h (UNEXEC, NO_TERMIO): Don't define, the s/ files
8685 2008-07-10 Kenichi Handa <handa@m17n.org>
8687 * xfont.c (xfont_open): Log the reason of failure.
8689 2008-07-09 Stefan Monnier <monnier@iro.umontreal.ca>
8691 * fontset.c (fontset_get_font_group):
8692 * font.c (font_check_otf): Specify argument types.
8694 2008-07-09 Kenichi Handa <handa@m17n.org>
8696 * coding.c (detect_coding_utf_8): Set detect_info->found only when
8697 non-ASCII char is found.
8699 * fontset.c (fontset_compare_rfontdef): Fix plus/minus.
8700 (reorder_font_vector): Change the arg preferred_family to font.
8701 Prefer the spec matching with font.
8702 (fontset_get_font_group): New function.
8703 (fontset_find_font): Change the format of an element of a realized
8704 fontset. Use fontset_get_font_group.
8705 (fontset_font): Try the current fontset, the default fontset, the
8706 fallbacks of the current fontset, and the fallbacks of the default
8707 fontset in this order.
8708 (face_for_char): Delete the shortcut to use the current font.
8709 (fontset_from_font): Don't set fonts for Latin in the fontset.
8711 * font.h (font_make_object, font_match_p): Adjust prototypes.
8713 * ftfont.h [FT_BDF_H]: Include FT_BDF_H.
8715 * font.c (font_make_object): New arg entity and pixelsize.
8716 (font_check_otf_features, font_check_otf): New functions.
8717 (font_match_p): Check :lang, :script, and :otf properties.
8719 * xfont.c (xfont_open): Adjust it for the change of
8721 (xfont_text_extents): Fix initial setting of metrics.
8723 * ftfont.c (struct ftfont_info): New member index, delete member
8724 fc_charset_idx. Make the member order compatible with struct
8726 (fc_charset_table): Change charset names to registry names.
8727 (ftfont_pattern_entity): Delete the args registry and
8728 fc_charset_idx. Change the value of :font-entity property
8729 to (FONTNAME . INDEX). Always set :registry property to
8731 (struct ftfont_cache_data): New struct.
8732 (ftfont_lookup_cache): New arg for_face.
8733 (ftfont_get_fc_charset, ftfont_get_otf): New functions.
8734 (ftfont_driver): Set the member otf_capability.
8735 (ftfont_get_charset): Adjust it for the change of
8737 (OTF_TAG_SYM): New macro.
8738 (ftfont_spec_pattern): Delete the arg fc_charset_idx. Adjust it
8739 for the change of fc_charset_table.
8740 (ftfont_list): Adjust it for the change of ftfont_spec_pattern and
8741 ftfont_pattern_entity. Add FC_INDEX to objset.
8742 (ftfont_match): Adjust it for the change of ftfont_spec_pattern
8743 and ftfont_pattern_entity.
8744 (ftfont_open): Adjust it for the change of ftfont_lookup_cache,
8745 font_make_object, struct ftfont_info.
8746 (ftfont_has_char): Use ftfont_get_fc_charset.
8747 (ftfont_otf_features, ftfont_otf_capability): New functions.
8748 (ftfont_shape): Use ftfont_get_otf.
8749 (ftfont_text_extents): Fix initial setting of metrics.
8751 * xftfont.c (struct xftfont_info): New member ft_size. Make the
8752 member order compatible with struct ftfont_info.
8753 (xftfont_open): Add FC_CHARSET to the pattern. Set
8754 xftfont_info->ft_size. Don't unlock the face. Check BDF
8755 properties if appropriate.
8756 (xftfont_close): Unlock the face.
8757 (xftfont_anchor_point, xftfont_shape): Deleted.
8758 (syms_of_xftfont): Don't set members anchor_point and shape of
8761 * w32uniscribe.c (uniscribe_open): Adjust it for the change of
8764 * w32font.c (w32font_open): Adjust it for the change of
8766 (w32font_open_internal): Don't set properties of font_object here.
8768 2008-07-08 Chong Yidong <cyd@stupidchicken.com>
8770 * macfns.c (x_create_tip_frame):
8771 * w32fns.c (x_create_tip_frame):
8772 * xfns.c (x_create_tip_frame): Pass parameter argument to
8773 face-set-after-frame-default.
8775 * xfaces.c (Finternal_merge_in_global_face): Save merged
8776 attributes for the default face back into the face vector.
8778 2008-07-08 Andreas Schwab <schwab@suse.de>
8780 * fontset.h: Declare fontset_from_font. Don't declare
8781 new_fontset_from_font and fontset_from_font_name.
8782 * xterm.c: Include "fontset.h".
8783 * Makefile.in (xterm.o): Update dependencies.
8785 2008-07-08 Glenn Morris <rgm@gnu.org>
8787 * m/sparc.h: Define __sparc__ rather than sparc. (Bug#507.)
8788 * alloc.c, ecrt0.c: Use __sparc__ rather than sparc.
8790 2008-07-07 Chong Yidong <cyd@stupidchicken.com>
8792 * frame.c (Qinhibit_face_set_after_frame_default): Var deleted.
8793 (x_set_frame_parameters): Don't bind it.
8795 2008-07-07 Juanma Barranquero <lekktu@gmail.com>
8797 * w32fns.c (map_w32_filename): Declare extern.
8799 2008-07-07 Jason Rumney <jasonr@gnu.org>
8801 * w32term.c (WS_EX_LAYERED): Define if not already.
8803 2008-07-06 Chong Yidong <cyd@stupidchicken.com>
8805 * xfaces.c (set_font_frame_param): Don't try to set the font
8806 parameter if it is still unspecified in the lface.
8808 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
8810 * xfaces.c (Finternal_merge_in_global_face): Don't realize default
8811 face if it didn't already exist.
8813 * xdisp.c (try_window_id): Give up if word-wrapping is on.
8815 2008-07-05 Andreas Schwab <schwab@suse.de>
8817 * xdisp.c (get_it_property): Move out of HAVE_WINDOW_SYSTEM section.
8819 2008-07-05 Chong Yidong <cyd@stupidchicken.com>
8821 * xdisp.c (IT_OVERFLOW_NEWLINE_INTO_FRINGE): Turn it off if
8823 (IT_DISPLAYING_WHITESPACE): New macro.
8824 (move_it_in_display_line_to): Handle MOVE_TO_X requests properly
8825 when word-wrapping. Simplify word-wrapping logic. Use correct
8826 pixel positions when saving copies of the iterator.
8827 (display_line): Use proper wrap point if the last character on a
8828 line was preceded by whitespace.
8830 2008-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
8832 * Makefile.in (${etc}DOC): Depend on ${lisp} rather than ${shortlisp}.
8834 2008-07-04 Kenichi Handa <handa@m17n.org>
8836 * fns.c (Fstring_to_unibyte): Delete the arg ACCEPT-LATIN-1.
8838 * lisp.h: EXFUN adjusted for the change of Fstring_to_unibyte.
8840 2008-07-02 Jason Rumney <jasonr@gnu.org>
8842 * xfns.c (syms_of_xfns): Only define x-select-font when both
8843 HAVE_FREETYPE and USE_GTK.
8845 * xdisp.c (next_element_from_display_vector): Move assignment out
8848 2008-07-02 Toru Tsuneyoshi <t_tuneyosi@hotmail.com>
8850 * lisp.h (Qdelete_file, Qdelete_directory): Declare extern.
8852 * fileio.c (delete_by_moving_to_trash, Qmove_file_to_trash): New vars.
8853 (syms_of_fileio): Initialize and export them.
8854 (Fdelete_directory, Fdelete_file): Optionally delete via trash.
8856 * w32fns.c (FOF_NO_CONNECTED_ELEMENTS): Define if not already.
8857 (Fsystem_move_file_to_trash): New function.
8858 (syms_of_w32fns): Export it to lisp.
8860 2008-07-01 Jason Rumney <jasonr@gnu.org>
8862 * w32font.c (w32font_text_extents): Don't count overhang as part
8865 2008-06-30 Miles Bader <miles@gnu.org>
8867 * dispextern.h (struct glyph, struct it, struct iterator_stack_entry):
8868 Add `avoid_cursor_p' field.
8870 * xdisp.c (push_it, pop_it): Save/restore avoid_cursor_p field.
8871 (set_cursor_from_row): Skip glyphs with avoid_cursor_p set.
8872 (append_glyph, append_composite_glyph, produce_image_glyph)
8873 (append_stretch_glyph): Initialize avoid_cursor_p.
8874 (get_it_property): Rename from `get_line_height_property'.
8875 (x_produce_glyphs): Use get_it_property.
8876 (handle_line_prefix, push_display_prop): New functions.
8877 (display_line, move_it_in_display_line_to): Handle line/wrap prefixes.
8878 (Vwrap_prefix, Qwrap_prefix, Vline_prefix, Qline_prefix):
8880 (syms_of_xdisp): Initialize them.
8882 2008-06-30 Kenichi Handa <handa@m17n.org>
8884 * xftfont.c (xftfont_open): Don't call FcConfigSubstitute and
8885 XftDefaultSubstitute (they are called in XftFontMatch).
8886 (xftfont_open): Fix args to ftfont_font_format.
8888 * ftfont.c (fc_charset_table): New member lang.
8889 (ftfont_resolve_generic_family): New arg pattern.
8890 (ftfont_spec_pattern): Check fc_charset_table[]->lang.
8891 (ftfont_list): Call ftfont_resolve_generic_family with `pattern'.
8892 (ftfont_open): Fix args to ftfont_font_format.
8893 (ftfont_font_format): New arg filename.
8895 2008-06-30 Chong Yidong <cyd@stupidchicken.com>
8897 * xfaces.c (Finternal_merge_in_global_face): If default face was
8898 modified, realize it again. Update the font face attribute.
8900 2008-06-29 Jason Rumney <jasonr@gnu.org>
8902 * w32term.c (x_set_frame_alpha): Fix logic.
8904 2008-06-29 Kenichi Handa <handa@m17n.org>
8906 * fontset.c (Finternal_char_font): Return font-object instead of
8909 * composite.c (get_composition_id): Fix the width calculation for TAB.
8911 2008-06-29 Stefan Monnier <monnier@iro.umontreal.ca>
8913 * indent.c (Fvertical_motion): Properly handle float column arg.
8915 2008-06-28 Jason Rumney <jasonr@gnu.org>
8917 * w32term.c (pfnGetFontUnicodeRanges): Remove unused function pointer.
8918 (pfnSetLayeredWindowAttributes): New function pointer.
8919 (w32_initialize): Initialize it when supported.
8920 (x_set_frame_alpha): New function.
8922 * w32fns.c (Fx_create_frame): Initialize frame parameter `alpha'.
8923 (w32_frame_parm_handlers): Set alpha handler.
8925 * frame.c (x_set_alpha) [HAVE_NTGUI]: Call x_set_frame_alpha.
8927 2008-06-27 Jason Rumney <jasonr@gnu.org>
8929 * w32fns.c (x_to_w32_font, w32_to_x_font, x_to_w32_weight)
8930 (w32_to_x_weight, w32_to_all_x_charsets): Remove obsolete functions.
8931 (w32_to_x_charset, x_to_w32_charset)
8932 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
8933 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
8934 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
8935 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
8936 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
8937 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
8938 (Qw32_charset_mac, Vw32_charset_info_alist): Move to w32font.c.
8939 (Qw32_charset_unicode): Remove.
8940 (syms_of_w32fns): Update for above changes.
8942 * w32font.c (w32_to_x_charset, x_to_w32_charset)
8943 (Qw32_charset_ansi, Qw32_charset_symbol, Qw32_charset_default)
8944 (Qw32_charset_shiftjis, Qw32_charset_hangeul, Qw32_charset_johab)
8945 (Qw32_charset_chinesebig5, Qw32_charset_gb2312, Qw32_charset_oem)
8946 (Qw32_charset_easteurope, Qw32_charset_turkish, Qw32_charset_baltic)
8947 (Qw32_charset_russian, Qw32_charset_arabic, Qw32_charset_greek)
8948 (Qw32_charset_hebrew, Qw32_charset_vietnamese, Qw32_charset_thai)
8949 (Qw32_charset_mac, Vw32_charset_info_alist): Move from w32fns.c.
8950 (syms_of_w32font): Update for above changes.
8952 2008-06-27 Dan Nicolaescu <dann@ics.uci.edu>
8954 * s/usg5-4.h: Fix previous change: keep the correct branch of a
8956 (USG_SHARED_LIBRARIES): Remove duplicate definition.
8958 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
8959 Eli Zaretskii <eliz@gnu.org>
8961 * makefile.w32-in (LOCAL_FLAGS):
8962 Don't include WINDOWSNT, DOS_NT and _UCHAR_T.
8964 * sysdep.c (_spawnlp, _getpid):
8965 Declare with explicit _cdecl instead of _CRTAPI1.
8967 * editfns.c (Fget_internal_run_time):
8968 Check for WINDOWSNT with #ifdef, not #if.
8970 2008-06-26 Jason Rumney <jasonr@gnu.org>
8972 * w32font.h (FONT_HANDLE, FONT_TEXTMETRIC): New macros.
8974 * w32term.c (x_draw_glyph_string_foreground)
8975 (x_draw_composite_glyph_string_foreground): Sync with xterm.c.
8976 Use FONT_HANDLE macro.
8977 (x_draw_glyph_string): Use FONT_TEXTMETRIC macro.
8979 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
8980 (uniscribe_encode_char): Use FONT_HANDLE macro.
8982 * w32font.c (Fx_select_font): Use FONT_HANDLE macro.
8983 (w32font_text_extents): Use precast w32_font.
8984 (w32font_close): Free cached metrics.
8985 (w32font_open_internal): Allocate space for name on stack.
8987 2008-06-26 Chong Yidong <cyd@stupidchicken.com>
8989 * xdisp.c (extend_face_to_end_of_line): Fix last change.
8991 2008-06-26 Jason Rumney <jasonr@gnu.org>
8993 * w32term.h (FONT_AVG_WIDTH): Remove obsolete macro.
8994 (CP_8BIT, CP_UNICODE, CP_UNKNOWN): Remove obsolete constants.
8996 2008-06-26 Juanma Barranquero <lekktu@gmail.com>
8998 * Makefile.in (SOME_MACHINE_OBJECTS): Remove w32bdf.o.
9000 2008-06-26 Jason Rumney <jasonr@gnu.org>
9002 * w32bdf.c, w32bdf.h: Remove obsolete files.
9004 * makefile.w32-in: Remove refs to w32bdf.h and w32bdf.c.
9006 * w32gui.h: Don't include w32bdf.h.
9007 (XCharStruct, enum w32_char_font_type, W32FontStruct):
9008 Remove obsolete font support.
9010 * w32font.h (struct w32font_info): Remove compat_w32_font.
9012 (FONT_COMPAT): Remove obsolete macro.
9014 * w32font.c (w32font_close): Remove compat code. Delete hfont member.
9015 (w32font_encode_char, w32font_text_extents): Use new hfont member.
9016 (w32font_open_internal): Remove compat code. Set new hfont member.
9017 (Fx_select_font): Use new hfont member.
9019 * w32uniscribe.c (uniscribe_otf_capability, uniscribe_shape)
9020 (uniscribe_encode_char): Use new hfont member.
9022 * w32term.c (x_draw_glyph_string_foreground)
9023 (x_draw_composite_glyph_string_foreground): Use new hfont member.
9024 (x_draw_glyph_string): Use metrics in w32font_info.
9026 2008-06-26 Kenichi Handa <handa@m17n.org>
9028 * xdisp.c (handle_auto_composed_prop): Fix for the terminal case.
9030 2008-06-26 Dan Nicolaescu <dann@ics.uci.edu>
9058 * s/uxpv.h: Remove support for obsolete systems.
9059 * s/hpux.h, s/hpux10.h, s/hpux8.h, s/hpux9.h, s/hpux9shr.h:
9060 Remove, insert contents in s/hpux10-20.h.
9061 * s/aix3-1.h, s/aix3-2-5.h, s/aix3-2.h, s/aix4-1.h, s/aix4.h:
9062 Remove, insert contents in s/aix4-2.h.
9063 * s/usg5-3.h: Remove, insert contents in s/usg5-4.h.
9064 * s/bsd4-3.h: Rename to ...
9065 * s/bsd-common.h: ... this.
9094 * s/template.h: Remove references to obsolete variables.
9096 * Makefile.in: Add dependencies for all unexec files.
9097 (admindir): Remove unused variable.
9098 (UNEXEC_SRC): Remove references.
9100 2008-06-25 Chong Yidong <cyd@stupidchicken.com>
9102 * xfns.c (x_default_font_parameter): If Xft is available, first
9103 try Monospace-12 for the default font.
9105 2008-06-25 Jason Rumney <jasonr@gnu.org>
9107 * xdisp.c (get_glyph_face_and_encoding): Encode invalid glyphs as 0.
9109 2008-06-25 Stefan Monnier <monnier@iro.umontreal.ca>
9111 * bytecode.c (Fbyte_code): Disable debugging code that doesn't compile.
9113 * buffer.c (syms_of_buffer): Remove default-word-wrap.
9115 2008-06-25 Juanma Barranquero <lekktu@gmail.com>
9117 * xdisp.c (syms_of_xdisp) <truncate-partial-width-windows>: Doc fix.
9118 <scroll-conservatively>: Fix typo in docstring.
9120 * xselect.c (Fx_send_client_event): Doc fix.
9122 2008-06-25 Kenichi Handa <handa@m17n.org>
9124 * xfaces.c (Fx_list_fonts): Call Flist_fonts with the arg PREFER.
9126 * font.c (font_parse_fcname): Remove unused variables.
9127 (font_sort_entites): Delete the arg SPEC. Caller changed.
9128 Fix for the case of ! best_only.
9129 (font_delete_unmatched): Check DPI and AVGWIDTH too.
9131 * lisp.h (Fstring_to_unibyte): EXFUN it.
9133 * character.h (str_to_unibyte): Extern it.
9135 * character.c (str_to_unibyte): New function.
9137 * fns.c (Fstring_to_unibyte): New function.
9138 (syms_of_fns): Defsubr it.
9140 2008-06-24 Kenichi Handa <handa@m17n.org>
9142 * font.c (font_score): Even if the PIXEL_SIZE is the same, check
9144 (font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
9146 2008-06-24 Andreas Schwab <schwab@suse.de>
9148 * Makefile.in (${lispsource}loaddefs.el): Rename from
9149 ../lisp/loaddefs.el.
9150 (bootstrap-clean): Do what distclean does but don't remove
9152 (distclean): Depend on bootstrap-clean and remove Makefile.
9154 2008-06-24 Chong Yidong <cyd@stupidchicken.com>
9156 * buffer.h (struct buffer): New member word_wrap.
9158 * buffer.c (syms_of_buffer): New variables default-word-wrap and
9160 (init_buffer_once): Initialize them.
9162 * dispextern.h (struct it): Replace bool truncate_lines_p with a
9163 line_wrap enum possessing three possible values.
9165 * termopts.h: Replace truncate_partial_width_windows with
9166 Vtruncate_partial_width_windows.
9168 * dispnew.c (direct_output_for_insert): Avoid direct output when
9169 inserting a space with word wrap on.
9171 * indent.c (compute_motion): Obey integer values of
9172 truncate-partial-width-windows.
9174 * xdisp.c (Vtruncate_partial_width_windows): New Lisp_Object,
9175 replacing truncate_partial_width_windows.
9176 (init_iterator): If Vtruncate_partial_width_windows is an integer,
9177 truncate only if the window width is below that integer.
9178 (start_display, resize_mini_window, produce_stretch_glyph)
9179 (display_string, move_it_in_display_line_to): Use line_wrap.
9180 (back_to_previous_visible_line_start, reseat_1): Reset
9181 string_from_display_prop_p.
9182 (display_line): Extend default face to end of line when wrapping.
9184 2008-06-24 Kim F. Storm <storm@cua.dk>
9186 * xdisp.c (display_line, move_it_in_display_line_to): Add ability
9187 to wrap continued lines at word boundaries.
9189 2008-06-24 Jason Rumney <jasonr@gnu.org>
9191 * font.c (Ffont_face_attributes): Multiply pixel size before point
9192 conversion to avoid multiplying rounding error.
9194 2008-06-23 Jason Rumney <jasonr@gnu.org>
9196 * w32term.c (x_draw_glyph_string_background)
9197 (x_draw_glyph_string): Remove old bdf font code.
9199 * w32term.h (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): Remove.
9201 2008-06-22 Kenichi Handa <handa@m17n.org>
9203 * font.c (font_find_for_lface): Try the adstyle specified in
9204 the property of LFACE_FONT of LFACE (if any).
9206 2008-06-21 Seiji Zenitani <zenitani@mac.com>
9207 Ryo Yoshitake <ryo@shiftmode.net>
9209 * xterm.c (x_set_frame_alpha): Add x_catch_errors for bug#437.
9211 2008-06-22 Stefan Monnier <monnier@iro.umontreal.ca>
9213 * Makefile.in (${lisp} ${SOME_MACHINE_LISP}, ../lisp/loaddefs.el):
9214 Use $(BOOTSTRAPEMACS) rather than witness-emacs.
9215 (bootstrap-emacs${EXEEXT}): Merge witness-emacs into it.
9216 (witness-emacs): Remove.
9217 (lisp, shortlisp): Move loaddefs.el earlier.
9218 (mostlyclean): Forget about witness-emacs.
9220 2008-06-22 Glenn Morris <rgm@gnu.org>
9222 * Makefile.in (witness-emacs): Depend on temacs${EXEEXT}.
9223 (.SUFFIXES): Declare .el.elc as a suffix rule, for non-GNU makes.
9225 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9227 * Makefile.in (PRECOMP): Remove.
9228 (${lisp} ${SOME_MACHINE_LISP}): Remove pseudo dependency on PRECOMP.
9229 (witness-emacs): Run `compile-first'.
9230 (.el.elc): Use the new compile-onefile target.
9232 2008-06-21 Kenichi Handa <handa@m17n.org>
9234 * xftfont.c (xftfont_open): Handle QCembolden only when
9235 FC_EMBOLDEN is defined.
9237 2008-06-21 Andreas Schwab <schwab@suse.de>
9239 * Makefile.in (witness-emacs): Use ../lisp, not $(lispsource).
9240 (.el.elc): Likewise.
9242 2008-06-21 Miles Bader <miles@gnu.org>
9244 * Makefile.in (../lisp/loaddefs.el): Build autoloads in the lisp
9245 build dir, not the lisp source dir.
9247 2008-06-21 Stefan Monnier <monnier@iro.umontreal.ca>
9249 * Makefile.in (emacs${EXEEXT}): Link the new emacs to bootstrap-emacs.
9250 (bootstrapclean): Remove.
9251 (.el.elc): New rule.
9253 (../lisp/subdirs.el): Remove.
9254 (bootstrap-emacs${EXEEXT}): Remove subdirs.el and charpro.el dependency.
9255 (witness-emacs): New target.
9256 (mostlyclean): Remove witness-emacs as well.
9257 (../lisp/loaddefs.el, ${lisp} ${SOME_MACHINE_LISP}):
9258 Add witness-emacs dependency.
9260 2008-06-20 Chong Yidong <cyd@stupidchicken.com>
9262 * font.c (Ffont_face_attributes): Omit key-attribute pairs not
9263 defined by the font.
9265 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9267 * Makefile.in (emacs${EXEEXT}): Depend on the machine-specific files.
9268 (bootstrap-clean): New target that keeps TAGS around.
9269 (../lisp/subdirs.el, ../lisp/loaddefs.el): New targets.
9270 (bootstrap-emacs${EXEEXT}): Depend on subdirs.el.
9272 2008-06-20 Jason Rumney <jasonr@gnu.org>
9274 * w32fns.c, w32term.c, w32term.h, w32gui.h [OLD_FONT]:
9275 Remove obsolete font code.
9277 * w32font.c (font_matches_spec): Use csb bitfield from font signature
9278 to determine language support.
9280 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9282 * sysdep.c (cfsetspeed): New fun extracted from the code.
9283 (cfmakeraw): Move before first use.
9285 2008-06-20 Angelo Graziosi <angelo.graziosi@alice.it> (tiny change)
9287 * sysdep.c (cfmakeraw): Provide fallback implementation.
9288 (serial_configure): Provide fallback implementation of cfsetspeed.
9290 2008-06-20 Kenichi Handa <handa@m17n.org>
9292 * xftfont.c (xftfont_open): Add FOUNDRY, SPACING, DPI, SCALABLE to
9295 * fontset.c (fontset_from_font): Copy font_spec before changing
9298 * xfns.c (x_default_font_parameter): Try "monospace-12" too.
9300 2008-06-20 Stefan Monnier <monnier@iro.umontreal.ca>
9302 * w32fns.c, xfns.c (x_default_font_parameter): Only set `font-param'
9303 for explicit `font' parameters.
9305 * frame.c (x_set_font): Remove unexplained call to fix inf-recursion.
9307 2008-06-19 Kenichi Handa <handa@m17n.org>
9309 * frame.c: Include <ctype.h>.
9310 (x_set_font_backend): Allow spacing characters in the X resource
9313 2008-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
9315 * w32fns.c, xfns.c (Qfont_param): New var.
9316 (syms_of_w32fns): Initialize it.
9317 (x_default_font_parameter): Record explicit `font' into
9320 2008-06-18 Kenichi Handa <handa@m17n.org>
9322 * font.c (font_parse_xlfd): Fix previous change.
9323 (font_parse_fcname): Don't use :fc-unknown-spec.
9324 (FRAME_X_DISPLAY_INFO): Be sure to have at least 1 pixel height.
9325 (Fcopy_font_spec): Preserve the order of elements in FONT_EXTRA.
9326 (font_add_log): Prepend the driver name to the resulting fonts.
9328 * ftfont.c (ftfont_pattern_entity): New arg extra. Caller changed.
9329 (ftfont_spec_pattern): Don't check QCfc_unknown_spec and QCname.
9330 (ftfont_list) [FC_FONTFORMAT]: Include FC_FONTFORMAT in objset.
9332 * xftfont.c (QChinting , QCautohint, QChintstyle, QCrgba)
9333 (QCembolden): New variables.
9334 (syms_of_xftfont): DEFSYM them.
9335 (xftfont_open): Call XftFontMatch. Don't trust the result of
9336 XftTextExtents8 if the pixel_size is less than 5.
9338 2008-06-18 Andreas Schwab <schwab@suse.de>
9340 * font.c (Ffont_face_attributes): Only define if HAVE_WINDOW_SYSTEM.
9341 (syms_of_font): Only defsubr if HAVE_WINDOW_SYSTEM.
9343 2008-06-18 Jason Rumney <jasonr@gnu.org>
9345 * w32font.c (w32font_list, w32font_match): Add logging.
9347 * w32uniscribe.c (uniscribe_list, uniscribe_match): Add logging.
9349 2008-06-17 Chong Yidong <cyd@stupidchicken.com>
9351 * font.c (font_parse_fcname): Store divider characters for
9352 unknown-spec list. For known key symbols, intern using correct
9355 2008-06-17 Kenichi Handa <handa@m17n.org>
9357 * xfaces.c (realize_default_face): If the frame is not on window
9358 system, set the fontset of face to nil.
9360 2008-06-17 Naohiro Aota <nao.aota@gmail.com> (tiny change)
9362 * fontset.c (fontset_pattern_regexp): Escape some reg-expr characters.
9364 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
9366 * dispextern.h (lookup_non_ascii_face, split_font_name_into_vector)
9367 (build_font_name_from_vector): Delete externs.
9369 * xfaces.c (struct font_name): Don't declare.
9371 2008-06-16 Stefan Monnier <monnier@iro.umontreal.ca>
9373 * font.c (font_unparse_gtkname): Use EQ to compare Lisp_Objects.
9375 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
9377 * font.c (font_parse_fcname): Fix handling of unknown-spec string.
9379 2008-06-16 Juanma Barranquero <lekktu@gmail.com>
9381 * font.c (Ffont_spec): Fix usage in docstring.
9382 (Ffont_face_attributes): Doc fix.
9384 2008-06-16 Andreas Schwab <schwab@suse.de>
9386 * font.c (Ffont_face_attributes): Fix definition.
9388 2008-06-16 Jason Rumney <jasonr@gnu.org>
9390 * font.h (font_style_symbolic_from_value): Remove.
9392 * font.c (font_style_symbolic_from_value): Remove.
9393 (font_style_symbolic): Revert to pre 2008-06-13 version.
9395 * w32font.c (w32_to_fc_weight): New function.
9396 (w32font_full_name, logfont_to_fcname): Use it.
9398 2008-06-16 Kenichi Handa <handa@m17n.org>
9400 * font.c (font_check_object): Delete it.
9401 (font_clear_cache): Check if a font-object is alive.
9402 (font_open_entity): Likewise. Set FONT_OBJLST_INDEX of a
9404 (font_close_object): Don't check FONT_CLOSE_OBJECT.
9405 (font_at): Don't call font_check_object.
9406 (Ffont_get): Return a symbol for :weight, :slant, and :width.
9408 2008-06-16 Katsumi Yamaoka <yamaoka@jpl.org>
9410 * puresize.h (BASE_PURESIZE): Increase to 1230000.
9412 2008-06-16 Chong Yidong <cyd@stupidchicken.com>
9414 * font.c (font_parse_fcname): Correctly parse KEY=VAL values.
9416 2008-06-15 Chong Yidong <cyd@stupidchicken.com>
9418 * font.c (font_parse_fcname): Only one decimal point.
9419 (font_unparse_fcname): Handle data in family and foundry indices
9420 as symbols, not strings.
9421 (font_unparse_gtkname, Ffont_face_attributes): New functions.
9423 * xfns.c (Fx_select_font): Give GTK font dialog the default font name.
9425 * font.h (font_unparse_gtkname): Add prototype.
9427 2008-06-15 Naohiro Aota <nao.aota@gmail.com> (tiny change)
9429 * fontset.c (fontset_pattern_regexp): Escape `+' characters in pattern.
9431 2008-06-15 Andreas Schwab <schwab@suse.de>
9433 * font.c (font_update_drivers): Fix crash when no drivers match.
9435 2008-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
9437 * xfns.c (Fx_create_frame): internal-border-width default to 0 for Gtk.
9438 * gtkutil.c (xg_create_frame_widgets): Don't set internal_border_width.
9440 2008-06-14 Stefan Monnier <monnier@iro.umontreal.ca>
9442 * xdisp.c (syms_of_xdisp): Default underline-minimum-offset to 1.
9444 2008-06-13 Stefan Monnier <monnier@iro.umontreal.ca>
9446 * process.c (Fserial_process_configure, Fprocess_send_eof):
9447 Use EQ to compare Lisp_Objects.
9449 2008-06-13 Jason Rumney <jasonr@gnu.org>
9451 * w32fns.c (Fw32_select_font): Remove old font API function.
9453 * w32font.c (logfont_to_fcname): New function.
9454 (Fx_select_font): New font dialog function compatible with
9455 GTK/fontconfig version.
9457 * font.c (font_style_symbolic_from_value): New function.
9458 (font_style_symbolic): Use it.
9460 * font.h (font_style_symbolic_from_value): Declare new function.
9462 2008-06-13 Juanma Barranquero <lekktu@gmail.com>
9464 * font.c (syms_of_font) <font-weight-table, font-slant-table>:
9465 <font-width-table>: Fix typos in docstrings.
9467 2008-06-13 Daniel Engeler <engeler@gmail.com>
9469 These changes add serial port access.
9470 * process.c: Add HAVE_SERIAL.
9471 (Fdelete_process, Fprocess_status, Fset_process_buffer)
9472 (Fset_process_filter, Fset_process_sentinel, Fprocess_contact)
9473 (list_processes_1, select_wrapper, Fstop_process)
9474 (Fcontinue_process, Fprocess_send_eof, kill_buffer_processes)
9475 (status_notify): Modify to handle serial processes.
9476 [HAVE_SERIAL] (Fserial_process_configure)
9477 [HAVE_SERIAL] (make_serial_process_unwind, Fmake_serial_process):
9479 * process.h (struct Lisp_Process): Add `type'.
9480 * sysdep.c [HAVE_TERMIOS] (serial_open, serial_configure):
9482 * w32.c (_sys_read_ahead, sys_read, sys_write): Modify to handle
9484 (serial_open, serial_configure): New functions.
9485 * w32.h: Add FILE_SERIAL.
9486 (struct _child_process): Add ovl_read, ovl_write.
9488 2008-06-13 Kenichi Handa <handa@m17n.org>
9490 * dispextern.h (enum lface_attribute_index): New member
9491 LFACE_FOUNDRY_INDEX.
9493 * font.c (font_score): Delete arg alternate_families. Check only
9494 weight, slant, width, and size. Ignore the difference of alias
9496 (font_sort_entites): Adjust for the above change. Reflect the
9497 order of font-driver to scores.
9498 (font_list_entities): Don't check alternate_familes here.
9499 (font_clear_prop): Handle foundry.
9500 (font_update_lface): Don't parse "foundry-family" form here.
9501 Handle FONT_FOUNDRY_INDEX.
9502 (font_find_for_lface): Likewise. Handle alternate families here.
9503 If registry is nil, try iso8859-1 and ascii-0.
9504 (font_open_for_lface): Pay attention to size in ENTITY.
9505 (font_open_by_name): Simplify by calling font_load_for_lface.
9506 (free_font_driver_list): Delete it.
9507 (font_update_drivers): Preserve the order of backends.
9508 (syms_of_font): Setting of sort_shift_bits adjusted for the change
9509 of font_score and font_sort_entites.
9510 (font_update_sort_order): Likewise.
9512 * xfaces.c (LFACE_FOUNDRY): New macro.
9513 (check_lface_attrs): Check foundry.
9514 (set_lface_from_font): Don't parse "FOUNDRY-FAMILY" form.
9515 (merge_face_vectors): Check foundry.
9516 (merge_face_ref): Likewise.
9517 (Finternal_set_lisp_face_attribute): Likewise.
9518 (x_update_menu_appearance): Likewise.
9519 (Finternal_get_lisp_face_attribute): Likewise.
9520 (lface_hash): Likewise.
9521 (lface_same_font_attributes_p): Likewise.
9522 (x_supports_face_attributes_p): Likewise.
9523 (tty_supports_face_attributes_p): Likewise.
9524 (Finternal_set_alternative_font_family_alist): Intern strings.
9525 (Finternal_set_alternative_font_registry_alist): Downcase strings.
9526 (realize_default_face): Set LFACE_FOUNDRY (lface).
9528 * xfns.c (Fx_create_frame, x_create_tip_frame): Register X
9529 font-driver at first.
9531 * ftfont.c (ftfont_font_format) [! FC_FONTFORMAT]: Declare "int len;".
9533 2008-06-12 Emanuele Giaquinta <emanuele.giaquinta@gmail.com> (tiny change)
9535 * lread.c (Fload): Use xfree, not free on saved_doc_string.
9537 2008-06-12 Jim Meyering <meyering@redhat.com>
9539 Make unexec_free handle NULL the same way free does.
9540 * unexmacosx.c (unexec_free): Ignore a NULL argument.
9542 2008-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
9544 * character.h (CHAR_TO_BYTE_SAFE): New macro.
9545 * character.c (Fmultibyte_char_to_unibyte): Obey the docstring.
9546 * regex.c (RE_CHAR_TO_UNIBYTE): Use the new macro.
9547 (WEAK_ALIAS): Simplify.
9548 * syntax.c (skip_chars): Don't mark non-byte chars in the fastmap
9549 when searching a unibyte buffer.
9551 2008-06-12 Chong Yidong <cyd@stupidchicken.com>
9553 * xfns.c (Fx_select_font): Rename from x-font-dialog.
9555 2008-06-12 Juanma Barranquero <lekktu@gmail.com>
9557 * w32font.c: Include ctype.h.
9559 2008-06-11 Jason Rumney <jasonr@gnu.org>
9561 * w32font.c (w32font_encode_char): Detect missing glyphs that are
9562 misreported as space.
9563 (add_font_entity_to_list): Support unicode-bmp and unicode-sip
9564 as aliases for registry iso10646-1.
9566 2008-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
9568 * buffer.c (clone_per_buffer_values): Skip `name'.
9570 2008-06-11 Chong Yidong <cyd@stupidchicken.com>
9572 * font.c (font_parse_fcname): Fix last change; accept decimal
9573 points in font size.
9575 2008-06-10 Jason Rumney <jasonr@gnu.org>
9577 * w32uniscribe.c (add_opentype_font_name_to_list):
9578 Skip non unicode fonts.
9580 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
9582 * xfns.c (Fx_font_dialog): New function.
9584 * gtkutil.c (xg_dialog_response_cb): Rename from
9585 xg_file_response_callback.
9586 (pop_down_dialog): Rename from pop_down_file_dialog.
9587 (xg_get_file_name): Callers changed.
9588 (xg_get_font_name): New function.
9590 * gtkutil.h (xg_get_font_name): Insert prototype.
9592 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9594 * xdisp.c (underline_minimum_offset): Rename from xterm.c's
9595 x_underline_minimum_display_offset.
9596 (syms_of_xdisp): Declare it here rather than in xterm.c.
9597 * dispextern.h (underline_minimum_offset): Declare it.
9598 * w32term.c (x_draw_glyph_string): Use it.
9599 * xterm.c (x_underline_minimum_display_offset): Move to xdisp.c.
9600 (syms_of_xterm): Don't declare it any more.
9601 (x_draw_glyph_string): Adjust to the new name.
9603 2008-06-10 David De La Harpe Golden <david@harpegolden.net>
9605 * xterm.c (x_underline_minimum_display_offset): New var.
9606 (x_draw_glyph_string): Use it.
9607 (syms_of_xterm): Declare it.
9609 2008-06-10 Chong Yidong <cyd@stupidchicken.com>
9611 * font.c (font_parse_fcname): Accept GTK-style font names too.
9613 2008-06-10 Stefan Monnier <monnier@iro.umontreal.ca>
9615 * dired.c (file_name_completion): Don't return t if the match is exact
9616 but with different capitalization.
9617 * minibuf.c (Ftry_completion): Simplify.
9619 * window.c (Vwindow_point_insertion_type): New var.
9620 (set_window_buffer): Use it.
9621 (syms_of_window): Init and export it to Lisp.
9623 2008-06-10 Kenichi Handa <handa@m17n.org>
9625 * font.h (font_intern_prop): Prototype adjusted.
9627 * font.c (font_intern_prop): New arg force_symbol.
9628 (font_parse_xlfd, font_parse_fcname, font_parse_family_registry):
9629 Adjust for the change of font_intern_prop.
9631 * ftfont.c (ftfont_pattern_entity):
9632 * w32font.c (add_font_name_to_list, w32_enumfont_pattern_entity)
9634 * w32uniscribe.c (add_opentype_font_name_to_list): Adjust for
9635 the change of font_intern_prop.
9637 2008-06-09 Juanma Barranquero <lekktu@gmail.com>
9639 * w32menu.c (digest_single_submenu): Declare extern.
9641 2008-06-09 Jason Rumney <jasonr@gnu.org>
9643 * w32term.c (x_make_frame_visible): Use alternate restore flags.
9645 * w32menu.c (Fx_popup_menu): Unwind protect while building menu.
9646 (parse_single_submenu): Remove.
9647 (digest_single_submenu): Remove.
9648 (syms_of_w32menu): Don't initialise variables that have moved
9650 (set_frame_menubar): Sync with version in xmenu.c.
9651 (w32_menu_show): Sync with xmenu_show in xmenu.c.
9653 * menu.c (single_keymap_panes, push_menu_pane, push_menu_item):
9656 2008-06-09 Jason Rumney <jasonr@gnu.org>
9658 Changes to w32 files related to the move of common menu code
9659 to menu.c on 2008-06-08 by Chong Yidong.
9661 * menu.c [HAVE_NTGUI]: Include w32term.h, move widget related
9663 (single_keymap_panes, push_menu_item, push_menu_pane):
9664 Make globally visible.
9666 * w32menu.c (enum button_type, widget_value, local_heap, local_alloc)
9667 (local_free, malloc_widget_value, free_widget_value)
9668 (MENU_ITEMS_ITEM_NAME, MENU_ITEMS_ITEM_ENABLE, MENU_ITEMS_ITEM_VALUE)
9669 (MENU_ITEMS_ITEM_EQUIV_KEY, MENU_ITEMS_ITEM_DEFINITION)
9670 (MENU_ITEMS_ITEM_TYPE, MENU_ITEMS_ITEM_SELECTED, MENU_ITEMS_ITEM_HELP)
9671 (MENU_ITEMS_ITEM_LENGTH, enum menu_item_idx): Remove defs.
9672 (menu_items, menu_items_allocated, menu_items_used)
9673 (menu_items_n_panes, menu_items_submenu_depth): Remove global vars.
9674 (init_menu_items, finish_menu_items, discard_menu_items)
9675 (grow_menu_items, push_submenu_start, push_submenu_end)
9676 (push_left_right_boundary, push_menu_pane, push_menu_item)
9677 (keymap_panes, single_keymap_panes, list_of_panes, list_of_items)
9678 (free_menubar_widget_tree_value, parse_single_submenu)
9679 (update_submenu_strings): Remove functions.
9680 (xmalloc_widget_value): Remove and declare extern.
9682 * makefile.w32-in ($(SRC)/menu.$(O)): New target.
9685 * w32gui.h (widget_value, XtPointer, Boolean, enum button_type)
9686 (local_heap, local_alloc, local_free, malloc_widget_value)
9687 (free_widget_value): Define here.
9689 2008-06-09 Kenichi Handa <handa@m17n.org>
9691 * font.h (Qascii_0): Extern it.
9693 * font.c (Qascii_0): New variable.
9694 (syms_of_font): DEFSYM it.
9695 (font_open_by_name): If the registry "iso8859-1" fails, try also
9698 * ftfont.c (ftfont_spec_pattern): Accept the registry `ascii-0'.
9700 2008-06-08 Kenichi Handa <handa@m17n.org>
9702 * .gdbinit (xfont): New command.
9704 2008-06-08 Andreas Schwab <schwab@suse.de>
9706 * menu.c [HAVE_X_WINDOWS]: Include "xterm.h".
9707 * Makefile.in (menu.o): Update dependencies.
9709 * Makefile.in (obj): Always add menu.o.
9710 * emacs.c (main): Always call syms_of_menu.
9711 * keyboard.h: Remove extra #ifdef HAVE_X_WINDOW.
9713 2008-06-08 Chong Yidong <cyd@stupidchicken.com>
9715 * Makefile.in: Compile menu.c.
9717 * lisp.h: Declare syms_of_menu.
9719 * emacs.c (main): Call syms_of_menu.
9721 * keyboard.h: Relocate platform-independent menu definitions from
9724 * menu.c: New file. Relocate platform-independent menu
9725 definitions from xmenu.c. Suggested by Adrian Robert.
9727 * xmenu.c: Remove platform-independent menu definitions.
9728 (menu_items menu_items_inuse, menu_items_allocated)
9729 (menu_items_used, menu_items_n_panes)
9730 (menu_items_submenu_depth): Move to keyboard.h.
9731 (init_menu_items, finish_menu_items, unuse_menu_items)
9732 (discard_menu_items, restore_menu_items, save_menu_items)
9733 (grow_menu_items, push_submenu_start, push_submenu_end)
9734 (push_left_right_boundary, push_menu_pane, push_menu_item)
9735 (keymap_panes, single_keymap_panes, single_menu_item)
9736 (list_of_panes, list_of_items, find_and_call_menu_selection)
9737 (xmalloc_widget_value, free_menubar_widget_value_tree)
9738 (parse_single_submenu, digest_single_submenu)
9739 (update_submenu_strings): Move to menu.c.
9741 2008-06-07 Stefan Monnier <monnier@iro.umontreal.ca>
9743 * dispnew.c (Flast_nonminibuf_frame): Handle the NULL case.
9745 2008-06-06 Miles Bader <miles@gnu.org>
9747 * xdisp.c (x_produce_glyphs): Calculate tab width based on current
9748 face, not frame default.
9750 2008-06-05 Martin Rudalics <rudalics@gmx.at>
9752 * window.c (pop_up_windows, pop_up_frames)
9753 (display_buffer_reuse_frames, Vpop_up_frame_function)
9754 (Vdisplay_buffer_function, Veven_window_heights)
9755 (Vspecial_display_buffer_names, Vspecial_display_regexps)
9756 (Vspecial_display_function, Vsame_window_buffer_names)
9757 (Vsame_window_regexps, split_height_threshold)
9758 (Vsplit_window_preferred_function): Move those vars to window.el.
9759 (display_buffer_1, Fspecial_display_p, Fsame_window_p)
9760 (Fdisplay_buffer): Move those functions to window.el.
9761 (syms_of_window): Remove corresponding declarations.
9762 (display_buffer): New function.
9763 (temp_output_buffer_show, Fother_window_for_scrolling): Use it.
9764 * dispnew.c (Flast_nonminibuf_frame): New function.
9765 * buffer.c (Fpop_to_buffer): Move to window.el.
9767 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9769 * data.c (set_internal): Fix up call to let_shadows_buffer_binding_p.
9771 2008-06-05 Kenichi Handa <handa@m17n.org>
9773 * coding.c (detect_coding): Fix previous change.
9774 (detect_coding_system): Likewise.
9776 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9778 * character.h (MAKE_CHAR_MULTIBYTE): Check the arg is a (uni)byte.
9780 * keymap.c (Vminibuffer_local_filename_must_match_map):
9781 Rename from Vminibuffer_local_must_match_filename_map.
9783 * minibuf.c (Fcompleting_read): Adjust accordingly.
9784 * commands.h: Rename declaration as well.
9786 2008-06-05 Kenichi Handa <handa@m17n.org>
9788 * font.c (Ffont_spec): Don't use font_parse_family_registry for
9790 (Ffont_put): Likewise.
9792 * fontset.c (fontset_find_font): Call font_open_for_lface with the
9795 * xfont.c (xfont_list): Don't set registry to iso8859-1 even if it
9798 * xfaces.c (realize_x_face): If the font-related face attributes
9799 are the same as those of default face, realize a new fontset from
9801 (Fx_family_fonts): Use font_parse_family_registry instead of Ffont_put.
9803 2008-06-05 Stefan Monnier <monnier@iro.umontreal.ca>
9805 * xdisp.c (move_it_in_display_line_to): Improve the type of its args.
9806 (move_it_in_display_line): New wrapper.
9808 * window.c (window_scroll_pixel_based_preserve_x)
9809 (window_scroll_preserve_hpos, window_scroll_preserve_vpos): New vars.
9810 (window_scroll_pixel_based, window_scroll_line_based):
9811 Use them to preserve column positions.
9812 (syms_of_window): Initialize them.
9814 * indent.c (Fvertical_motion): Extend first arg to allow passing an
9817 * dispextern.h (move_it_in_display_line): Declare.
9819 2008-06-05 Juanma Barranquero <lekktu@gmail.com>
9821 * window.c (Fwindow_parameter): Return VALUE, not (PARAMETER . VALUE).
9822 (Fwindow_parameters): Return copy of parameter alist. Doc fix.
9823 (Fset_window_parameter): Return VALUE, not parameter alist. Doc fix.
9825 2008-06-04 Juanma Barranquero <lekktu@gmail.com>
9827 * window.c (Fset_window_parameter): Doc fix.
9828 (Fwindow_parameters, Fwindow_parameter): Remove redundant check.
9830 2008-06-04 Joakim Verona <joakim@verona.se>
9832 * window.h (struct window): Add new member window_parameters.
9834 * window.c (Fwindow_parameters, Fwindow_parameter)
9835 (Fset_window_parameter): New defuns.
9836 (syms_of_window): Defsubr the new defuns.
9837 (make_window): Initialize window_parameters to nil.
9839 2008-06-04 John Paul Wallington <jpw@pobox.com>
9841 * eval.c (Fdefmacro): Doc fix.
9843 2008-06-04 Kenichi Handa <handa@m17n.org>
9845 * coding.c (detect_coding): Fix handling of coding->head_ascii.
9846 Be sure to call setup_coding_system when we find a proper coding system.
9847 (detect_coding_system): Fix handling of coding->head_ascii.
9849 2008-06-03 Andreas Schwab <schwab@suse.de>
9851 * font.c (font_prop_validate_spacing): Fix last change.
9853 2008-06-03 Kenichi Handa <handa@m17n.org>
9855 * font.c (font_prop_validate_spacing): Handle uppercase symbols.
9856 (font_parse_fcname): Fix handling of unknown key.
9858 * xfont.c (xfont_list): Try an alias.
9860 * charset.c (char_charset): Return NULL if the arg charset_list is
9861 specified and C doesn't belong to any of them.
9863 2008-06-02 Chip Coldwell <coldwell@redhat.com>
9865 * font.c (font_pixel_size): Don't take cdr of an integer.
9867 2008-06-02 Jim Meyering <meyering@redhat.com>
9869 Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
9870 * alloc.c (xfree): Return right away for a NULL arg.
9871 * lread.c (nosuffix): Remove now-useless if-before-xfree tests.
9872 * gtkutil.c (xg_gtk_scroll_destroy): Likewise.
9873 * mac.c (create_apple_event_from_event_ref): Likewise.
9874 (create_apple_event_from_drag_ref, cfstring_create_normalized):
9876 * doprnt.c (doprnt1): Likewise.
9877 * frame.c (frame): Likewise.
9878 * keyboard.c (wipe_kboard): Likewise.
9879 * macterm.c (x_free_frame_resources, xlfdpat_destroy, XFreePixmap)
9880 (init_font_name_table, mac_unload_font, x_delete_display): Likewise.
9881 * term.c (tty_default_color_capabilities, maybe_fatal)
9882 (delete_tty): Likewise.
9883 * w16select.c (string): Likewise.
9884 * w32.c (w32_get_resource, SET_ENV_BUF_SIZE): Likewise.
9885 * w32bdf.c (w32_free_bdf_font): Likewise.
9886 * w32fns.c (w32_unload_font): Likewise.
9887 * w32font.c (w32font_close): Likewise.
9888 * window.c (size_window): Likewise.
9889 * xselect.c (receive_incremental_selection): Likewise.
9890 * xterm.c (x_free_frame_resources, x_delete_display): Likewise.
9891 * mactoolbox.c (create_apple_event_from_drag_ref): Likewise.
9892 * w32.c (stat): Likewise.
9894 Remove useless if-before-free tests.
9895 * editfns.c (Fset_time_zone_rule): Likewise.
9896 * lread.c (nosuffix): Likewise.
9897 * ralloc.c (get_bloc): Likewise.
9898 * regex.c (reg_free): Likewise.
9899 * xftfont.c (xftfont_open, xftfont_close): Likewise.
9900 * xrdb.c (get_user_app, get_environ_db, x_load_resources): Likewise.
9901 * xsmfns.c (smc_save_yourself_CB): Likewise.
9903 2008-06-02 Kenichi Handa <handa@m17n.org>
9905 * font.c (font_find_for_lface): Handle float font size.
9906 (font_open_for_lface): Likewise.
9908 * xfaces.c (x_supports_face_attributes_p): Check face->font before
9909 comparing the properties.
9911 2008-06-01 Jason Rumney <jasonr@gnu.org>
9913 * w32font.c (w32_enumfont_pattern_entity): Use requested registry.
9914 Treat iso10646-1 and Windows DEFAULT_CHARSET specially.
9915 Duplicate iso8859-1 fonts as iso10646-1 if no registry specified.
9916 Don't add empty script list.
9917 (w32_registry): Only map DEFAULT_CHARSET to iso10646-1 here.
9919 2008-06-01 Dan Nicolaescu <dann@ics.uci.edu>
9921 * Makefile.in (dot, dotdot): Remove, update users.
9922 ".." has been used elsewhere in the file for a long time.
9923 (LIBXT_STATIC): Remove conditional based on unused variable.
9925 2008-06-01 Miles Bader <miles@gnu.org>
9927 * xfaces.c (Vface_remapping_alist): New variable.
9928 (syms_of_xfaces): Initialize it.
9929 (enum named_merge_point_kind): New type.
9930 (struct named_merge_point): Add `named_merge_point_kind' field.
9931 (push_named_merge_point): Make cycle detection respect different
9932 named-merge-point kinds.
9933 (lface_from_face_name_no_resolve): Rename from `lface_from_face_name'.
9934 Remove face-name alias resolution.
9935 (lface_from_face_name): New definition using
9936 `lface_from_face_name_no_resolve'.
9937 (get_lface_attributes_no_remap): Rename from `get_lface_attributes'.
9938 Call lface_from_face_name_no_resolve instead of lface_from_face_name.
9939 (get_lface_attributes): New definition that layers face-remapping on
9940 top of get_lface_attributes_no_remap. New arg `named_merge_points'.
9941 (lookup_basic_face): New function.
9942 (lookup_derived_face): Pass new last arg to `get_lface_attributes'.
9943 (realize_named_face): Call `get_lface_attributes_no_remap' instead of
9944 `get_lface_attributes'.
9945 (face_at_buffer_position): Use `lookup_basic_face' to lookup
9946 DEFAULT_FACE_ID if necessary. When optimizing the default-face case,
9947 return default_face's face-id instead of the constant DEFAULT_FACE_ID.
9949 * xdisp.c (init_iterator): Pass base_face_id through
9950 `lookup_basic_face' when we actually use it as a face-id.
9951 (handle_single_display_prop): Use `lookup_basic_face' to lookup
9954 * fontset.c (Finternal_char_font): Use `lookup_basic_face' to
9955 lookup the initial face-id.
9957 * dispextern.h (lookup_basic_face, Vface_remapping_alist): New decls.
9959 2008-06-01 Juanma Barranquero <lekktu@gmail.com>
9961 * textprop.c (syms_of_textprop) <text-property-default-nonsticky>:
9962 (Fremove_text_properties): Fix typos in docstrings.
9964 2008-05-31 Kenichi Handa <handa@m17n.org>
9966 * font.c (font_list_entities): Fix the car part of data to be
9967 stored in the cache.
9969 * ftfont.c (ftfont_font_format): Don't use strcasestr.
9971 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9973 * chartab.c (Foptimize_char_table, optimize_sub_char_table):
9974 Add a `test' argument so another predicate than `equal' can be used.
9975 (map_sub_char_table): Use `eq' rather than `equal' to merge ranges.
9976 (map_char_table): Remove unused vars `c' and `i'.
9977 * lisp.h (Foptimize_char_table): Adjust declaration.
9978 * charset.c (Fclear_charset_maps): Adjust call to Foptimize_char_table.
9980 2008-05-30 Kenichi Handa <handa@m17n.org>
9982 * font.c (Ffont_info): Define only if HAVE_WINDOW_SYSTEM is defined.
9983 (syms_of_font): Defsubr Sfont_info only if HAVE_WINDOW_SYSTEM is
9986 2008-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
9988 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
9989 (Fmake_variable_frame_local): Disallow mixing buffer-local and
9990 frame-local settings for the same variable.
9992 2008-05-30 Kenichi Handa <handa@m17n.org>
9994 * fontset.c (Ffont_info): Move to font.c.
9995 (syms_of_fontset): Delete defsubr of Sfont_info.
9997 * font.c (font_style_to_value, font_score): Delete casting of the
9999 (register_font_driver): Increment num_font_drivers only when
10000 registering the driver globally.
10001 (Ffont_info): Move from fontset.c. Handle a font object too.
10002 (syms_of_font): Defsubr Sfont_info.
10004 2008-05-29 Kenichi Handa <handa@m17n.org>
10006 * coding.h (enum define_coding_utf8_arg_index): New enum.
10007 (enum coding_attr_index): Change coding_attr_utf_16_bom to
10008 coding_attr_utf_bom.
10009 (enum utf_bom_type): Rename from utf_16_bom_type.
10010 (struct utf_16_spec): Adjust for the above change.
10011 (struct coding_system): Add utf_8_bom in `spec' union.
10013 * coding.c (CODING_UTF_8_BOM): New macro.
10014 (enum coding_category): Delete coding_category_utf_8, add
10015 coding_category_utf_8_auto, coding_category_utf_8_nosig, and
10016 coding_category_utf_8_sig.
10017 (CATEGORY_MASK_UTF_8): Delete it.
10018 (CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG)
10019 (CATEGORY_MASK_UTF_8_SIG): New macros.
10020 (CATEGORY_MASK_ANY): Delete CATEGORY_MASK_UTF_8, add
10021 CATEGORY_MASK_UTF_8_AUTO, CATEGORY_MASK_UTF_8_NOSIG, and
10022 CATEGORY_MASK_UTF_8_SIG.
10023 (CATEGORY_MASK_UTF_8): New macro.
10024 (UTF_BOM, UTF_8_BOM_1, UTF_8_BOM_2, UTF_8_BOM_3): New macros.
10025 (detect_coding_utf_8): Check BOM.
10026 (decode_coding_utf_8, encode_coding_utf_8): Handle BOM.
10027 (decode_coding_utf_16): Adjust for the change of enum utf_bom_type.
10028 (encode_coding_utf_16): Likewise.
10029 (setup_coding_system): Likewise. Set CODING_UTF_8_BOM (coding).
10030 (detect_coding, detect_coding_system): Handle utf-8-auto.
10031 (Fdefine_coding_system_internal): Handle `bom' property for utf-8.
10032 (syms_of_coding): Fix setting up of Vcoding_category_table.
10034 2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
10036 * process.c (Faccept_process_output): If `millisec' is non-nil,
10037 `seconds' default to 0.
10038 (wait_reading_process_output): Also return non-nil if we read output
10039 from a non-running process.
10041 2008-05-29 Jason Rumney <jasonr@gnu.org>
10043 * w32font.c (w32font_open_internal): Prefer truetype fonts unless
10044 `raster' specified.
10045 (add_font_entity_to_list): Allow non-opentype truetype fonts back
10046 in the uniscribe backend, but disallow any font that has no
10047 unicode subrange support.
10049 2008-05-29 Juanma Barranquero <lekktu@gmail.com>
10051 * xfaces.c (Fx_list_fonts, Finternal_copy_lisp_face):
10052 Fix typos in docstrings.
10054 2008-05-29 Kenichi Handa <handa@m17n.org>
10056 * xfaces.c (Fx_list_fonts): Make it return a list of font names.
10057 (Fx_family_fonts): Set frame correctly.
10059 2008-05-28 Jason Rumney <jasonr@gnu.org>
10061 * w32term.c (x_draw_glyph_string): Use clipmask if specified.
10063 2008-05-28 Stefan Monnier <monnier@iro.umontreal.ca>
10065 * fileio.c (Fwrite_region): Delay the defaulting to beg&z to after
10066 calling build_annotations.
10068 2008-05-28 Juanma Barranquero <lekktu@gmail.com>
10070 * coding.c (Fdecode_coding_region, Fencode_coding_region)
10071 (Fencode_coding_string):
10072 (syms_of_coding) <coding-system-for-read, coding-system-for-write>:
10073 <latin-extra-code-table>: Fix typos in docstrings.
10074 (syms_of_coding) <coding-system-alist>: Doc fix.
10075 (syms_of_coding) <translation-table-for-input>: Reflow docstring.
10077 2008-05-28 Kenichi Handa <handa@m17n.org>
10079 * fontset.c (Ffont_info): Don't call font_close_object.
10081 * font.c (font_parse_family_registry): Use Ffont_put to validate
10082 foundry and family.
10083 (font_delete_unmatched): Don't check spacing.
10084 (font_list_entities): Add spacing to the spec to list fonts.
10086 * ftfont.c (ftfont_spec_pattern): Don't set FC_SPACING to pattern.
10087 (ftfont_list): Check spacing here. Don't include FC_CHARSET in objset.
10089 * coding.c (encode_coding_raw_text): Fix previous change.
10090 (encode_coding_object): When the dst_object is a buffer and is
10091 different from src_object, move gap to PT.
10093 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
10095 * xterm.c (x_draw_glyph_string): If a clipmask is specified, use it.
10097 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10099 * coding.c (encode_coding_raw_text): Set coding->produced_char for
10100 all branches. Compute it differently.
10102 * xdisp.c [!HAVE_WINDOW_SYSTEM]: Include font.h for --without-x.
10104 2008-05-27 Juanma Barranquero <lekktu@gmail.com>
10106 * w32font.c (compute_metrics): Rewrite an "else { if () ... else ... }"
10107 into "else if () ... else ...".
10109 2008-05-27 Jason Rumney <jasonr@gnu.org>
10111 * w32font.c (w32font_open_internal): Determine if glyph indices
10112 are likely to work here.
10114 2008-05-27 Chong Yidong <cyd@stupidchicken.com>
10116 * xdisp.c (draw_glyphs): If mouse-highlighting is on, attempt to
10117 draw overlap glyphs with appropriate highlighting.
10119 2008-05-27 Kenichi Handa <handa@m17n.org>
10121 * xfont.c (xfont_open): Fix calculation of font->average_width.
10123 2008-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
10125 * casefiddle.c (casify_object): Try to guess better whether the
10126 argument is a byte or a char.
10128 2008-05-26 Andreas Schwab <schwab@suse.de>
10130 * xselect.c (x_reply_selection_request): Properly handle format == 32.
10131 Always send multiples of format size.
10133 * xterm.c (x_set_frame_alpha): Fix type mismatch.
10135 2008-05-26 Jason Rumney <jasonr@gnu.org>
10137 * w32font.c (w32font_text_extents): Zero whole metrics struct first.
10138 (compute_metrics): Don't set failure if we just cleared the cache.
10139 (w32_weight_table): Remove unused variable.
10140 (w32_enumfont_pattern_entity): Use FONT_SPACING_CHARCELL for
10141 backwards compatibility.
10143 2008-05-25 Kenichi Handa <handa@m17n.org>
10145 * w32term.c (x_draw_glyph_string):
10146 * xterm.c (x_draw_glyph_string): Fix calculation of underline position.
10148 * xfaces.c: Delete unused function prototypes.
10149 (xstrlwr, font_frame): Delete them.
10150 (clear_face_cache): Delete unused variable.
10152 * xftfont.c (xftfont_open): Delete unused variable.
10153 If underline_thickness is not 1, adjust underline_position.
10155 * ftxfont.c (ftxfont_open): Delete unused variable.
10157 * fontset.c (face_for_char): Optimize for the case of no charset
10160 * font.c (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE)
10161 (check_gstring, check_otf_features, otf_list, otf_tag_symbol)
10162 (otf_open, font_otf_capability, generate_otf_features)
10163 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
10164 Comment out by surrounding "#if 0" and "#endif" for the moment.
10165 (Ffont_drive_otf, Ffont_otf_alternates): Likewise.
10166 (syms_of_font): Codes for accessing above commented out.
10168 2008-05-24 Eli Zaretskii <eliz@gnu.org>
10170 * w32proc.c: Include dispextern.h.
10172 * w32.c: Include dispextern.h.
10174 2008-05-23 Juanma Barranquero <lekktu@gmail.com>
10176 * charset.c (Fencode_char, Fsplit_char): Doc fixes.
10177 (Fget_unused_iso_final_char, Fdecode_char, Fiso_charset):
10178 Fix typos in docstrings.
10180 2008-05-23 Jason Rumney <jasonr@gnu.org>
10182 * xsmfns.c: Remove includes that are already included by config.h.
10184 2008-05-23 Kenichi Handa <handa@m17n.org>
10186 * charset.c (Qemacs, charset_emacs): New variables.
10187 (char_charset): Fix for non-Unicode characters.
10188 (syms_of_charset): Define charset_emacs.
10190 * w32term.c (x_draw_glyph_string): Be sure to update
10191 s->underline_thickness and s->underline_position. Be sure to draw
10192 underline within the current line area.
10194 * xterm.c (x_draw_glyph_string): Be sure to update
10195 s->underline_thickness and s->underline_position. Be sure to draw
10196 underline within the current line area.
10198 * fontset.c: Delete unused variables and add casting for char *
10199 throughout the file.
10200 (fontset_font): Try the fallback fonts of the current fontset
10201 before consulting the default fontset.
10203 * ftfont.c (ftfont_spec_pattern): Free charset if necessary.
10205 * xfont.c (xfont_list_pattern): Free names returned from XListFonts.
10207 2008-05-22 Jason Rumney <jasonr@gnu.org>
10209 * font.c: Don't include strings.h.
10211 * dispextern.h, xfaces.c (xstrcasecmp): Rename from xstricmp.
10213 * dosfns.c, fileio.c, font.c, fontset.c, image.c, macfns.c:
10214 * macterm.c, process.c, w32.c, w32fns.c, w32proc.c, xfaces.c:
10215 * xfns.c, xfont.c: All callers of stricmp and strcasecmp changed
10216 to call xstrcasecmp.
10218 * xfont.c (xfont_list_pattern, compare_font_names): Use xstrcasecmp.
10220 * fontset.c (fs_query_fontset): Use xstrcasecmp.
10222 * font.c (font_style_to_value, font_score): Use xstrcasecmp.
10224 * dosfns.c (msdos_stdcolor_idx): Use xstrcasecmp.
10226 2008-05-22 Kenichi Handa <handa@m17n.org>
10228 * puresize.h (BASE_PURESIZE): Increase to 1220000.
10230 * font.c (font_prop_validate_style): Adjust for the format
10231 change of font_style_table.
10233 * w32font.c (w32font_open_internal): Call Ffont_xlfd_name with
10236 * xfaces.c (x_update_menu_appearance): Call Ffont_xlfd_name with
10239 2008-05-22 Stefan Monnier <monnier@iro.umontreal.ca>
10241 * minibuf.c (keys_of_minibuf): Delete.
10242 * lisp.h (keys_of_minibuf): Delete.
10243 * emacs.c (main): Don't call keys_of_minibuf.
10245 2008-05-22 Kenichi Handa <handa@m17n.org>
10247 * ftfont.c (ftfont_resolve_generic_family): Rename from
10248 ftfont_list_generic_family. Return a single family for each
10250 (ftfont_spec_pattern): Add FC_FAMILY to pattern.
10251 (ftfont_list): Adjust for the change of ftfont_resolve_generic_family.
10253 (ftfont_match): Call font_add_log.
10255 * font.h (Ffont_xlfd_name): EXFUN adjusted.
10256 (FONT_DEBUG): Define it.
10257 (font_add_log): Extern it.
10258 (font_assert): Rename from xassert.
10260 * xfont.c (xfont_get_pcm): Change xassert to font_assert.
10261 (xfont_list_family): Call font_add_log.
10262 (xfont_match): Likewise.
10263 (memq_no_quit): Delete.
10265 * fontset.c (fontset_from_font, Ffontset_info): Add the 2nd arg in
10266 call of Ffont_xlfd_name.
10268 * xfaces.c (struct table_entry, slant_table, weight_table)
10269 (swidth_table): Move to font.c.
10271 * font.c: Checking of FONT_DEBUG is moved to font.h. All calls of
10272 xassert are changed to font_assert. Delete many unused variables.
10273 (Vfont_weight_table, Vfont_slant_table, Vfont_width_table):
10275 (struct table_entry): Move from xfaces.c and modified.
10276 (weight_table, slant_table, width_table): Move from xfaces.c and
10277 contents adjusted for the change of struct table_entry.
10278 (font_style_to_value, font_style_symbolic): Adjust for the
10279 format change of font_style_table.
10280 (font_parse_family_registry): Don't overwrite existing foundry and
10281 family of font_spec.
10282 (font_score): Fix calculation of diff for sizes.
10283 (font_sort_entites): Call font_add_log.
10284 (font_delete_unmatched): Return a newly created list.
10285 (font_list_entities): Fix previous change. Call font_add_log.
10286 (font_matching_entity, font_open_entity, font_close_entity):
10288 (Ffont_xlfd_name): New arg FOLD-WILDCARDS.
10289 (Finternal_set_font_style_table): Delete.
10290 (BUILD_STYLE_TABLE): New macro.
10291 (build_style_table): New function.
10292 (Vfont_log, font_log_env_checked): New variables.
10293 (font_add_log): New function.
10294 (syms_of_font): Delete defsubr Sinternal_set_font_style_table.
10295 Declare Lisp variables "font-weight-table", "font-slant-table",
10296 "font-width-table", and "font-log". Initialize font_style_table.
10298 2008-05-21 Dan Nicolaescu <dann@ics.uci.edu>
10300 * xterm.c (x_set_frame_alpha): Move declarations before statements.
10302 2008-05-21 Seiji Zenitani <zenitani@mac.com>
10303 Ryo Yoshitake <ryo@shiftmode.net>
10305 * frame.c (Qalpha): Add a new frame parameter `alpha'.
10306 (Vframe_alpha_lower_limit): New variable.
10307 (x_set_alpha): New function.
10309 * frame.h (Qalpha, Vframe_parameter_lower_limit): Export them.
10311 * xfns.c (x-create-frame, Qalpha):
10312 Initialize the frame parameter `alpha'.
10313 * xterm.c (OPAQUE, OPACITY): New.
10314 (x_set_frame_alpha): New function.
10315 (frame_highlight, frame_unhighlight): Call x_set_frame_alpha.
10317 * macfns.c (mac_frame_parm_handlers): A null handler for x_set_alpha.
10318 * w32fns.c (w32_frame_parm_handlers): Likewise.
10320 2008-05-20 Jason Rumney <jasonr@gnu.org>
10322 * w32font.c (add_font_entity_to_list): Don't add non-opentype
10323 truetype fonts to opentype list.
10325 2008-05-20 Juanma Barranquero <lekktu@gmail.com>
10327 * fontset.c (Ffontset_info): Doc fix.
10328 (syms_of_fontset) <font-encoding-charset-alist, use-default-ascent>:
10329 <ignore-relative-composition>: Fix typos in docstrings.
10331 * font.c (syms-of-font) <font-encoding-alist>:
10332 (Ffontp, Ffont_make_gstring): Fix typos in docstrings.
10333 (Flist_fonts, Ffont_family_list, Ffont_fill_gstring, Fquery_font)
10334 (Ffont_otf_alternates): Doc fixes.
10336 2008-05-20 Kenichi Handa <handa@m17n.org>
10338 * Makefile.in (FONTSRC): Delete it. Change all $(FONTSRC) to
10339 font.h through out the file.
10340 (FONT_DRIVERS): Rename from FONTOBJ.
10341 (obj): Change $(FONTOBJ) to $(FONT_DRIVERS). Add font.o.
10342 (SOME_MACHINE_OBJECTS): Change $(FONTOBJ) to $(FONT_DRIVERS).
10344 * emacs.c (main): Call syms_of_font unconditionally.
10346 * font.h (find_font_encoding): Extern it.
10348 * font.c (Vfont_encoding_alist, find_font_encoding): Move from
10350 (font_pixel_size)[! HAVE_WINDOW_SYSTEM]: Return 1.
10351 (font_open_entity): Update FRAME_X_DISPLAY_INFO (f)->n_fonts,
10352 FRAME_SMALLEST_CHAR_WIDTH (f), and FRAME_SMALLEST_FONT_HEIGHT (f)
10353 only when HAVE_WINDOW_SYSTEM is defined.
10354 (font_close_object): Update FRAME_X_DISPLAY_INFO (f)->n_fonts only
10355 when HAVE_WINDOW_SYSTEM is defined.
10357 * fontset.c (Vfont_encoding_alist, find_font_encoding): Move to font.c.
10358 (syms_of_fontset): Move declaration of font-encoding-alist to font.c.
10360 * xfaces.c: Include font.h unconditionally.
10361 (merge_face_ref, merge_face_vectors)
10362 (Finternal_set_lisp_face_attribute): Cancel the previous change.
10364 2008-05-20 Stefan Monnier <monnier@iro.umontreal.ca>
10366 * xdisp.c (select_frame_for_redisplay): Adjust for last change to
10368 * eval.c (lisp_indirect_variable): New fun.
10369 (Fuser_variable_p): Use it.
10371 2008-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
10373 * lisp.h (indirect_variable):
10374 * data.c (indirect_variable, let_shadows_buffer_binding_p):
10375 Use Lisp_Symbol pointers rather than Lisp_Object.
10377 * buffer.c (buffer_slot_type_mismatch): Use wrong-type-argument.
10378 To this end, change calling-convention.
10380 * minibuf.c (Finternal_complete_buffer): Only strip out hidden buffers
10381 if some non-hidden buffers are selected by string&pred.
10383 2008-05-19 Chong Yidong <cyd@stupidchicken.com>
10385 * process.c (wait_reading_process_output): Always check status
10386 when in batch mode.
10388 2008-05-19 Kenichi Handa <handa@m17n.org>
10390 * font.c (font_list_entities): Fix handling of cache.
10391 (font_matching_entity): Likewise.
10393 * ftfont.c (cs_iso8859_1): Delete.
10394 (ft_face_cache): New variable.
10395 (struct ftfont_info): New member fc_charset_idx.
10396 (ftfont_build_basic_charsets): Delete.
10397 (fc_charset_table): New variable.
10398 (ftfont_pattern_entity): New arg fc_charset_idx. Store (FILENAME
10399 . FC_CHARSET_IDX) as :font-entity property in the font entity.
10401 (ftfont_lookup_cache, ftfont_get_charset): New functions.
10402 (ftfont_spec_pattern): New argument fc_charset_idx.
10403 Check registry more rigidly. Change callers.
10404 (ftfont_open, ftfont_close, ftfont_has_char): Adjust for the
10405 change of :font-entity property of the font.
10407 * xftfont.c (xftfont_open): Adjust for the change of :font-entity
10408 property of the font.
10410 2008-05-18 Juanma Barranquero <lekktu@gmail.com>
10412 * coding.c (Fcoding_system_p): Rename argument to match docstring.
10413 (Funencodable_char_position, Fcheck_coding_systems_region)
10414 (Fdecode_coding_string, Fencode_coding_string): Fix typos in docstrings.
10415 (Fdetect_coding_region, Fdetect_coding_string, Fencode_coding_region)
10416 (Ffind_operation_coding_system, Fset_coding_system_priority)
10417 (Fcoding_system_eol_type): Doc fixes.
10419 2008-05-17 Glenn Morris <rgm@gnu.org>
10421 * sysdep.c (child_setup_tty): Handle systems with NLDLY, without FFDLY.
10423 2008-05-16 Eli Zaretskii <eliz@gnu.org>
10425 * dired.c (Ffile_attributes): Shut up GCC warnings about st_uid
10428 * frame.c (Fdelete_frame): Don't call font_update_drivers if
10429 HAVE_WINDOW_SYSTEM is not defined.
10431 * xfaces.c (merge_face_ref, merge_face_vectors)
10432 (Finternal_set_lisp_face_attribute): Use FONT_*_INDEX only when
10433 HAVE_WINDOW_SYSTEM is defined.
10434 (Fface_font): Fix non-HAVE_WINDOW_SYSTEM case.
10436 2008-05-16 Stefan Monnier <monnier@iro.umontreal.ca>
10438 * keyboard.c (parse_menu_item): Do not cache key shortcut any more.
10440 2008-05-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10442 * macterm.c (x_draw_relief_rect): Remove unused variable `dpy'.
10444 2008-05-15 Kenichi Handa <handa@m17n.org>
10446 * font.c (font_find_for_lface): Reflect LFACE_FONT in the font
10449 2008-05-15 Glenn Morris <rgm@gnu.org>
10451 * emacs.c (USAGE1, standard_args): Remove -disable-font-backend.
10453 2008-05-15 Chong Yidong <cyd@stupidchicken.com>
10455 * fns.c (init_fns): Don't initialize weak_hash_tables here.
10456 (init_weak_hash_tables): New fun. Initialize weak_hash_tables.
10458 * alloc.c (init_alloc_once): Call init_weak_hash_tables.
10460 2008-05-15 Kenichi Handa <handa@m17n.org>
10462 * ftfont.c (ftfont_list): Downcase family name to check generic
10465 * xfaces.c (Finternal_set_lisp_face_attribute): Be sure to make a
10466 font-spec for QCfont value.
10468 * fontset.c (Fnew_fontset): Call font_unparse_xlfd with 256-byte
10469 buffer. Check the return value of it.
10471 2008-05-14 Jason Rumney <jasonr@gnu.org>
10473 * w32term.c (w32_get_glyph_overhangs): Remove.
10474 (w32_redisplay_interface): Use x_get_glyph_overhangs instead.
10476 2008-05-14 Kenichi Handa <handa@m17n.org>
10478 * font.c (font_prop_validate): Make nil a valid value.
10479 (font_clear_cache): Check if the cached vector of entities is nil
10482 2008-05-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10484 * emacs.c (main_thread): Conditionalize on
10485 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
10486 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it.
10488 * syssignal.h (FORWARD_SIGNAL_TO_MAIN_THREAD): New define.
10489 (main_thread, SIGNAL_THREAD_CHECK): Conditionalize on
10490 FORWARD_SIGNAL_TO_MAIN_THREAD instead of HAVE_GTK_AND_PTHREAD.
10492 2008-05-14 Kenichi Handa <handa@m17n.org>
10494 * coding.c (detect_coding_iso_2022): Ignore a coding category that
10495 has no corresponding coding system.
10497 2008-05-14 Jason Rumney <jasonr@gnu.org>
10499 * font.h (struct font) [WINDOWSNT]: Remove codepage member.
10501 * w32font.h (w32font_open_internal): Update declaration.
10503 * w32font.c (w32font_open_internal): Change last argument from
10504 w32font_info struct to font object. Fill in font object from
10505 font_entity. Get Outline metrics if possible. Use them to
10506 calculate underline position and thickness. Use xlfd name as name
10507 property. Don't set codepage.
10508 (w32font_open): Pass font_object to w32font_open_internal. Don't
10509 update dpyinfo->smallest_font_height and dpyinfo->smallest_char_width.
10510 (w32font_draw): Use s->font.
10511 (clear_cached_metrics): Don't clear non-existent blocks.
10513 * w32term.c (w32_compute_glyph_string_overhangs): Don't compute if
10514 font was not found.
10515 (x_draw_glyph_string): Use underline position and thickness from font.
10517 * w32uniscribe.c (uniscribe_open): Pass font_object to
10518 w32font_open_internal.
10520 2008-05-14 Kenichi Handa <handa@m17n.org>
10522 These changes are to delete all legacy font-handling codes, and
10523 make Emacs use only font-backends.
10525 * Makefile.in: Delete USE_FONT_BACKEND conditionals.
10526 (frame.o, image.o, print.o): Depend on $(FONTSRC).
10528 * makefile.w32-in (WIN32OBJ): Add w32reg.$(O), remove w32bdf.$(O).
10530 * charset.h (Vcharset_non_preferred_head)
10531 (Vcurrent_iso639_language): Extern them.
10533 * charset.c (Vcharset_non_preferred_head): New variable.
10534 (Vcurrent_iso639_language): New variable.
10535 (syms_of_charset): Declare it as a Lisp variable.
10536 (char_charset): Don't check non preferred charsets. As a last
10537 resort, return charset_unicode.
10538 (Fset_charset_priority): Update Vcharset_non_preferred_head.
10540 * composite.c: Throughout the file, delete all USE_FONT_BACKEND
10541 conditionals. Don't check enable_font_backend. Delete all codes
10542 used only when USE_FONT_BACKEND is not defined.
10544 * dispextern.h (struct glyph_string): Change type of `font' to
10546 (struct glyph_string): New member underline_position and
10547 underline_thickness.
10548 (enum lface_attribute_index): Remove LFACE_AVGWIDTH_INDEX.
10549 (struct face): Change type of `font' to `struct font *'. Remove
10550 members `font_name', `font_info_id'.
10551 (per_char_metric, encode_char): Delete externs.
10552 (calc_pixel_width_or_height): Adjust the prototype.
10554 * emacs.c (enable_font_backend): Delete extern.
10555 (main): Don't set enable_font_backend. Don't check the command
10556 line argument "-disable-font-backend".
10558 * font.h (Qfont_spec, Qfont_entity, Qfont_object): Extern them.
10559 (enum font_property_index): New members FONT_DPI_INDEX,
10560 FONT_SPACING_INDEX, FONT_AVGWIDTH_INDEX, FONT_NAME_INDEX,
10561 FONT_FULLNAME_INDEX, FONT_FILE_INDEX, FONT_FORMAT_INDEX,
10562 FONT_OBJECT_MAX. Delete FONT_FRAME_INDEX.
10563 (FONT_WEIGHT_NUMERIC, FONT_SLANT_NUMERIC, FONT_WIDTH_NUMERIC)
10564 (FONT_WEIGHT_SYMBOLIC, FONT_SLANT_SYMBOLIC, FONT_WIDTH_SYMBOLIC)
10565 (FONT_WEIGHT_FOR_FACE, FONT_SLANT_FOR_FACE, FONT_WIDTH_FOR_FACE)
10566 (FONT_WEIGHT_NAME_NUMERIC, FONT_SLANT_NAME_NUMERIC)
10567 (FONT_WIDTH_NAME_NUMERIC, FONT_SET_STYLE): New macros.
10568 (struct font_spec, struct font_entity): New structs.
10569 (FONT_ENCODING_NOT_DECIDED): Moved from fontset.h.
10570 (struct font): Many members from old "struct font_info" moved to
10571 here. Members font and entity deleted.
10572 (FONT_SPEC_P, FONT_ENTITY_P, FONT_OBJECT_P, FONTP): Modified for
10573 the new font-related objects.
10574 (CHECK_FONT_SPEC, CHECK_FONT_ENTITY, CHECK_FONT_OBJECT)
10575 (CHECK_FONT_GET_OBJECT): Likewise.
10576 (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT, XSETFONT): New macros.
10577 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved from font.h.
10578 (struct font_driver): New members case_sensitive anc check. Type
10579 of the member list and open changed.
10580 (enable_font_backend, font_symbolic_weight, font_symbolic_slant)
10581 (font_symbolic_width, font_find_object, font_get_spec)
10582 (font_set_lface_from_name): Delete extern.
10583 (Fcopy_font_spec, Fmerge_font_spec, Ffont_family_list): New EXFUNs.
10585 * font.c: Include <strings.h>.
10586 (enable_font_backend): Delete it.
10587 (Qfont_spec, Qfont_entity, Qfont_object): New variables.
10588 (CHECK_VALIDATE_FONT_SPEC): Delete it.
10589 (PT_PER_INCH, POINT_TO_PIXEL, PIXEL_TO_POINT): Moved to font.h.
10590 (null_string): Delete it.
10591 (null_vector): Make it static.
10592 (font_family_alist): Delete it.
10593 (Qnormal): Extern it.
10594 (QCextra, QClanguage): Delete it.
10595 (QClang, QCavgwidth, QCfont_entity, QCfc_unknown_spec): New variables.
10596 (font_make_spec, font_make_entity, font_make_object)
10597 (font_intern_prop): Renamed from intern_downcase. Don't downcase
10598 the string. Callers changed.
10599 (font_pixel_size): Adjusted for the format change of font-related
10601 (prop_name_to_numeric, prop_numeric_to_name): Delete them.
10602 (font_style_to_value, font_style_symbolic): New function.
10603 (build_font_family_alist): Delete it.
10604 (font_registry_charsets): Use Fassoc_string instead of
10606 (font_prop_validate_symbol): Don't return null_string.
10607 (font_prop_validate_style): Adjusted for the change of
10608 style-related values in a font vector.
10609 (font_property_table): Delete entries for QClanguage and
10610 QCantialias, add entries for QCavgwidth.
10611 (get_font_prop_index): Delete the 2nd argument FROM.
10612 (font_prop_validate): Arguments changed.
10613 (font_put_extra): Adjusted for the change of font-related objects.
10614 (font_expand_wildcards, font_parse_xlfd, font_unparse_xlfd)
10615 (font_parse_fcname, font_unparse_fcname)
10616 (font_prepare_composition): Likewise.
10617 (font_parse_family_registry): Renamed from font_merge_old_spec.
10618 (otf_open): Delete the 1st arg entity.
10619 (font_otf_capability): Adjusted for the above change.
10620 (font_score): New arg alternate_families. Adjusted for the change
10621 of font-related objects.
10622 (font_sort_entites): New arg best_only.
10623 (font_symbolic_weight, font_symbolic_slant, font_symbolic_width):
10625 (font_match_p): Check alternate families.
10626 (font_find_object): Delete it.
10627 (font_check_object): New function.
10628 (font_clear_cache): Adjusted for the change of font-related objects.
10629 (font_delete_unmatched): New arg.
10630 (font_list_entities): Call font_driver->list with a spec that
10631 doesn't specify style-related properties.
10632 (font_matching_entity): Arguments changed. Caller changed.
10633 (font_open_entity): Adjusted for the change of font-related objects.
10634 (font_close_object, font_has_char, font_encode_char)
10635 (font_get_name, font_get_spec): Likewise.
10636 (font_spec_from_name, font_clear_prop, font_update_lface):
10638 (font_find_for_lface, font_open_for_lface, font_load_for_lface)
10639 (font_prepare_for_face, font_done_for_face, font_open_by_name)
10640 (font_at): Adjusted for the change of font-related objects.
10641 (font_range): New function.
10642 (Ffontp, Ffont_spec, Ffont_get, Ffont_put, Flist_fonts)
10643 (Ffont_xlfd_name): Adjusted for the change of font-related objects.
10644 (Fcopy_font_spec, Fmerge_font_spec): New function.
10645 (Ffont_family_list): Renamed from list-families.
10646 (Finternal_set_font_style_table): Arguments changed.
10647 (Ffont_fill_gstring, Ffont_shape_text, Fopen_font)
10648 (Ffont_drive_otf, Fquery_font, Ffont_match_p): Adjusted for the
10649 change of font-related objects.
10650 (syms_of_font): Delete "ifdef USE_FONT_BACKEND". DEFSYM new symbols.
10652 * fontset.h (struct font_info): Delete it. Most members go to
10654 (FONT_ENCODING_NOT_DECIDED): Moved to font.h.
10655 (enum FONT_SPEC_INDEX): Delete it.
10656 (font_info, list_fonts_func, load_font_func, query_font_func)
10657 (set_frame_fontset_func, find_ccl_program_func)
10658 (get_font_repertory_func, new_fontset_from_font_name): Delete
10660 (fontset_from_font_name): Extern it.
10661 (FS_LOAD_FONT, FONT_INFO_ID, FONT_INFO_FROM_ID)
10662 (FONT_INFO_FROM_FACE): Deleted.
10663 (face_for_font): Adjust prototype.
10665 * fontset.c: Throughout the file, delete all USE_FONT_BACKEND
10666 conditionals. Don't check enable_font_backend. Delete all codes
10667 used only when USE_FONT_BACKEND is not defined.
10668 (get_font_info_func, list_font_func, load_font_func)
10669 (query_font_func, set_frame_fontset_func, find_ccl_program_func)
10670 (get_font_repertory_func): Delete them.
10671 (FONTSET_SPEC, FONT_DEF_NEW, FONT_DEF_SPEC, FONT_DEF_ENCODING)
10672 (FONT_DEF_REPERTORY, RFONT_DEF_FACE, RFONT_DEF_SET_FACE)
10673 (RFONT_DEF_FONT_DEF, RFONT_DEF_SPEC, RFONT_DEF_REPERTORY)
10674 (RFONT_DEF_OBJECT, RFONT_DEF_SET_OBJECT, RFONT_DEF_SCORE)
10675 (RFONT_DEF_SET_SCORE, RFONT_DEF_NEW): New macros.
10676 (fontset_compare_rfontdef): New function.
10677 (reorder_font_vector): Remove the argument CHARSET-ID. Sort
10678 rfont-defs by qsort. Adjusted for the change of font-group vector.
10679 (load_font_get_repertory): Deleted.
10680 (fontset_find_font): Use new macros to ref/set elements of
10681 font-def and rfont-def.
10682 (fontset_font): Fix the timing of remembering that no font for C.
10683 (free_face_fontset): Do nothing if the face has no fontset.
10684 (face_suitable_for_char_p): Use new macros to ref/set elements of
10686 (face_for_char): Likewise. Call face_for_char with font_object.
10687 (fs_load_font): Delete. Delete #pragma surrounding it.
10688 (fs_query_fontset): Use strcasecmp instead of strcmp.
10689 (generate_ascii_font_name): Adjusted for the format change of
10691 (Fset_fontset_font): Likewise. Use new macros to set elements of
10693 (Fnew_fontset): Use font_unparse_xlfd to generate
10694 FONTSET_ASCII (fontset).
10695 (new_fontset_from_font_name): Deleted.
10696 (fontset_from_font): Renamed from new_fontset_from_font. Check if
10697 a fontset is already created for the font. FIx updating of
10698 Vfontset_alias_alist.
10699 (fontset_ascii_font): Deleted.
10700 (Ffont_info): Adjusted for the format change of font-spec.
10701 (Finternal_char_font): Likewise.
10702 (Ffontset_info): Likewise.
10703 (syms_of_fontset): Don't check load_font_func.
10705 * fns.c (internal_equal): Handle PREV_FONT.
10707 * frame.h: Delete USE_FONT_BACKEND conditional.
10709 * frame.c: Throughout the file, delete all USE_FONT_BACKEND
10710 conditionals. Don't check enable_font_backend. Delete all codes
10711 used only when USE_FONT_BACKEND is not defined.
10712 (x_set_font): Call x_new_font, not x_new_fontset2.
10713 (x_set_font_backend): Use FRAME_FONT macro to check if a font is
10714 already set for the frame.
10716 * ftfont.c (ftfont_pattern_entity): Argument FRAME removed. Make
10717 a font-entity by font_make_entity. Use font_intern_prop instead
10718 of intern_downcase. Use FONT_SET_STYLE to set a style-related
10719 font property. If a font is scalable, set avgwidth property to 0.
10720 Set font-entity property by font_put_extra.
10721 (ftfont_list_generic_family): Argument SPEC and REGISTRY removed.
10722 (ffont_driver): Adjusted for the change of struct font_driver.
10723 (ftfont_spec_pattern): New function.
10724 (ftfont_list): Return a list, not vector.
10725 (ftfont_match): Use ftfont_spec_pattern to get a pattern.
10726 (ftfont_list_family): Don't downcase names.
10727 (ftfont_free_entity): Deleted.
10728 (ftfont_open): Return a font-object. Adjusted for the change of
10729 struct font. Get underline_thickness and underline_position from
10730 font property. Don't update dpyinfo->smallest_font_height and
10731 dpyinfo->smallest_char_width.
10732 (ftfont_close): Don't free `struct font'.
10733 (ftfont_has_char): Adjusted for the format change of font-entity.
10734 (ftfont_encode_char, ftfont_text_extents): Likewise.
10736 * ftxfont.c (ftxfont_list): Return a list, not vector.
10737 (ftxfont_open): Return a font-object. Adjusted for the change of
10738 struct font. Get underline_thickness and underline_position from
10739 font property. Don't update dpyinfo->smallest_font_height and
10740 dpyinfo->smallest_char_width.
10741 (ftxfont_close): Don't decrease FRAME_X_DISPLAY_INFO (f)->n_fonts.
10742 (ftxfont_draw): Adjusted for the change of struct font.
10744 * image.c (image_ascent): Don't include "charset.h". Include
10745 "character.h" and "font.h".
10747 * lisp.h (enum pvec_type): New member PREV_FONT.
10748 (Fassoc_string): EXFUN it.
10750 * print.c: Include font.h.
10751 (print_object): Handle font-related objects.
10753 * xdisp.c: Throughout the file, delete all USE_FONT_BACKEND
10754 conditionals. Don't check enable_font_backend. Delete all codes
10755 used only when USE_FONT_BACKEND is not defined.
10756 (handle_auto_composed_prop): Do nothing if it->f is not on a
10757 window system. Check how many following characters can be
10758 displayed by the same font.
10759 (calc_pixel_width_or_height): Type of the 4th arg is changed to
10761 (get_char_face_and_encoding): Assign the whole encoding task to
10762 the `encode-char' method of a font driver.
10763 (fill_composite_glyph_string): Adjusted for the change of `struct
10764 face' and `struct glyph_string'.
10765 (fill_glyph_string): Likewise.
10766 (get_per_char_metric): Arguments changed.
10767 (x_get_glyph_overhangs): Adjusted for the change of `struct face'
10768 and `struct glyph_string'.
10769 (produce_stretch_glyph, calc_line_height_property)
10770 (x_produce_glyphs): Likewise.
10772 * xfaces.c: Throughout the file, delete all USE_FONT_BACKEND
10773 conditionals. Don't check enable_font_backend. Delete all codes
10774 used only when USE_FONT_BACKEND is not defined. Use
10775 FONT_XXX_NAME_NUMERIC instead of face_numeric_xxx.
10776 (QCfoundry, QCadstyle, QCregistry, QCspacing, QCsize, QCavgwidth)
10778 (clear_font_table, load_face_font, xlfd_lookup_field_contents):
10780 (struct font_name): Deleted.
10781 (xlfd_numeric_value, xlfd_symbolic_value): Deleted.
10782 (compare_fonts_by_sort_order): New function.
10783 (xlfd_numeric_slant, xlfd_symbolic_slant, xlfd_numeric_weight)
10784 (xlfd_symbolic_weight, xlfd_numeric_swidth, xlfd_symbolic_swidth):
10786 (Fx_family_fonts): Use font_list_entities, and sort fonts by
10787 compare_fonts_by_sort_order.
10788 (Fx_font_family_list): Call Ffont_family_list.
10789 (face_numeric_value, face_numeric_weight, face_numeric_slant)
10790 (face_numeric_swidth, face_symbolic_value, face_symbolic_weight)
10791 (face_symbolic_slant, face_symbolic_swidth)
10792 (split_font_name_into_vector, build_font_name_from_vector)
10793 (xlfd_fixed_p, xlfd_point_size, pixel_point_size)
10794 (font_rescale_ratio, split_font_name, build_font_name)
10795 (free_font_names, sort_fonts, x_face_list_fonts)
10796 (face_font_available_p, sorted_font_list, cmp_font_names)
10797 (font_list_1, concat_font_list, font_list, remove_duplicates):
10799 (Fx_list_fonts): Use Ffont_list.
10800 (LFACE_AVGWIDTH): Deleted.
10801 (check_lface_attrs): Don't check LFACE_AVGWIDTH. Check LFACE_FONT
10803 (lface_fully_specified_p): Don't check LFACE_AVGWIDTH.
10804 (set_lface_from_font_name): Delete it.
10805 (set_lface_from_font): Renamed from
10806 set_lface_from_font_and_fontset. Caller changed. Don't set
10807 LFACE_AVGWIDTH. Use FONT_XXX_FOR_FACE to get a symbol suitable
10809 (merge_face_vectors): Copy font-spec if necessary.
10810 Clear properties of the font-spec if necessary.
10811 (merge_face_ref): Clear properties of the font-spec if necessary.
10812 (Finternal_set_lisp_face_attribute): Likewise.
10813 (set_font_frame_param): Use font_load_for_lface to load a
10814 font-object, and call Fmodify_frame_parameters with it.
10815 (x_update_menu_appearance): Don't check LFACE_AVGWIDTH. Get XLFD
10816 font name by Ffont_xlfd_name.
10817 (Finternal_lisp_face_attribute_values): Don't check QCweight,
10818 QCslant, and QCwidth.
10819 (Fface_font): Get a font name from font->props[FONT_NAME_INDEX].
10820 (lface_same_font_attributes_p): Don't check LFACE_AVGWIDTH.
10821 Compare fonts by EQ.
10822 (lookup_non_ascii_face): Deleted.
10823 (face_for_font): The 2nd argument changed.
10824 (x_supports_face_attributes_p): Don't check LFACE_AVGWIDTH.
10825 Check atomic font properties by case insensitive.
10826 (realize_non_ascii_face): Set face->overstrike correctly.
10827 (realize_x_face): Likewise. Check if LFACE_FONT is a font_object.
10828 (dump_realized_face): Get font name from
10829 font->props[FONT_NAME_INDEX]. Don't print font_info_id.
10831 * xfns.c: Throughout the file, delete all USE_FONT_BACKEND
10832 conditionals. Don't check enable_font_backend. Delete all codes
10833 used only when USE_FONT_BACKEND is not defined.
10834 (xic_create_xfontset): Original code deleted and renamed from
10835 xic_create_xfontset2. Use FRAME_FONT, not FRAME_FONT_OBJECT.
10836 (x_make_gc): Don't set GCFont in GCs.
10837 (Fx_create_frame) [USE_LUCID]: Set xlwmenu_default_font to a font
10839 (syms_of_xfns): Don't set get_font_info_func, load_font_func,
10840 find_ccl_program_func, query_font_func, set_frame_fontset_func,
10841 get_font_repertory_func.
10843 * xfont.c: Include <stdlib.h> and "ccl.h".
10844 (struct xfont_info): New structure.
10845 (xfont_query_font): Deleted.
10846 (xfont_find_ccl_program): Renamed from x_find_ccl_program and
10847 moved from xterm.c.
10848 (xfont_driver): Adjusted for the change of struct font_driver.
10849 (compare_font_names): New function.
10850 (xfont_list_pattern): Sort font names case insensitively. Make
10851 font_entity by calling font_make_entity. Avoid auto-scaled fonts.
10852 (xfont_list): Return a list, not vector.
10853 (xfont_match): If the font doesn't have QCname property, generate
10854 a name from the other font properties.
10855 (xfont_open): Return a font-object. Adjusted for the change of
10856 struct font. Get underline_thickness and underline_position from
10857 font property. Don't update dpyinfo->smallest_font_height and
10858 dpyinfo->smallest_char_width.
10859 (xfont_close): Don't free struct font.
10860 (xfont_prepare_face): Adjusted for the change of struct font.
10861 (xfont_done_face): Deleted.
10862 (xfont_has_char): Adjusted for the change of struct font.
10863 (xfont_encode_char, xfont_draw): Likewise.
10864 (xfont_check): New function.
10866 * xftfont.c (xftfont_list): Adjusted for the change of `list'
10868 (xftfont_match): Adjusted for the format change of font-entity.
10869 (xftfont_open): Adjusted for the format change of font-entity and
10870 font-object. Adjusted for the change of struct font. Return a
10871 font-object. Don't update dpyinfo->smallest_font_height and
10872 dpyinfo->smallest_char_width.
10873 (xftfont_close): Block input while calling XftFontClose.
10874 (xftfont_prepare_face): Don't block input while calling
10875 xftfont_get_colors. Adjusted for the change of struct font.
10876 (xftfont_shape): Return value of error case fixed.
10878 * xrdb.c (x_load_resources): Don't setup a fontset resource.
10880 * xterm.h: Throughout the file, delete all USE_FONT_BACKEND
10882 (FONT_WIDTH): Return (f)->max_width.
10883 (struct x_display_info): Delete member `font'.
10884 (x_list_fonts, x_get_font_info, x_load_font, x_query_font)
10885 (x_find_ccl_program, x_get_font_repertory): Delete externs.
10886 (struct x_output): Change type of `font' to `struct font *'.
10888 * xterm.c: Throughout the file, delete all USE_FONT_BACKEND
10889 conditionals. Don't check enable_font_backend. Delete all codes
10890 used only when USE_FONT_BACKEND is not defined. Don't include ccl.h.
10891 (x_per_char_metric, x_encode_char): Deleted.
10892 (x_set_cursor_gc, x_set_mouse_face_gc): Don't set GCFont.
10893 (x_compute_glyph_string_overhangs): Adjusted for the change of
10895 (x_draw_glyph_string_foreground)
10896 (x_draw_composite_glyph_string_foreground): Likewise.
10897 (x_draw_glyph_string): Likewise. Use font->underline_position and
10898 font->underline_thickness.
10899 (x_new_font): Renamed from x_new_fontset2.
10900 (x_new_fontset, x_get_font_info, x_list_fonts): Deleted.
10901 (x_check_font): Call `check' method of a font driver.
10902 (x_font_min_bounds, x_compute_min_glyph_bounds, x_load_font)
10903 (x_query_font, x_get_font_repertory): Deleted.
10904 (x_find_ccl_program): Renamed and moved to xfont.c.
10905 (x_redisplay_interface): Adjusted for the change of `struct
10906 redisplay_interface'.
10908 * w32fns.c: Throughout the file, delete all USE_FONT_BACKEND
10909 conditionals. Don't check enable_font_backend. Delete all codes
10910 used only when USE_FONT_BACKEND is not defined. Surround non-used
10911 code by "#ifdef OLD_FONT" and "endif".
10912 (Fw32_select_font): Use FONT_COMPAT to get old font structure.
10914 * w32font.h (struct w32font_info): New member.
10915 (FONT_COMPAT): New macro.
10916 (w32font_open_internal): Prototype adjusted.
10918 * w32gui.h (XGCValues): Surround `XFontStruct *font' by "if
10919 OLD_FONT" and "endif".
10921 * w32font.c: Throughout the file, delete all USE_FONT_BACKEND
10922 conditionals. Don't check enable_font_backend. Delete all codes
10923 used only when USE_FONT_BACKEND is not defined.
10924 (w32font_open): Return a font-object. Make a font-object by
10925 font_make_object. Adjusted for the change of struct w32font_info.
10926 (w32font_close): Don't free struct font. Adjusted for the change
10927 of struct w32font_info.
10928 (w32font_encode_char, w32font_text_extents, w32font_draw):
10929 Adjusted for the change of struct w32font_info.
10930 (w32font_draw): Likewise.
10931 (w32font_list_internal): Return a list, not vector.
10932 (w32font_open_internal): Change the 4th arg to font-object.
10933 Adjusted for the change of struct w32font_info and font-object format.
10934 (add_font_name_to_list): Don't downcase names.
10935 (w32_enumfont_pattern_entity): Make a font-entity by
10936 font_make_entity. Adjusted for the format change of font-entity.
10937 Use FONT_SET_STYLE to set a style-related font property. If a
10938 font is scalable, set avgwidth property to 0. Set font-entity
10939 property by font_put_extra.
10940 (font_matches_spec): Adjusted for the format change of font-entity.
10941 (w32_weight_table, w32_decode_weight): New variables.
10942 (w32_encode_weight): New function.
10943 (fill_in_logfont): Adjusted for the format change of font-spec.
10944 (w32font_full_name): Use FONT_WEIGHT_SYMBOLIC to get a symbol
10946 (w32font_driver): Adjusted for the change of struct font_driver.
10948 * w32term.h: Throughout the file, delete all USE_FONT_BACKEND
10949 conditionals. Don't check enable_font_backend. Surround non-used
10950 code by "#ifdef OLD_FONT" and "endif".
10951 (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_DESCENT)
10952 (FONT_AVG_WIDTH): Adjusted for the change of struct font.
10954 * w32term.c: Throughout the file, delete all USE_FONT_BACKEND
10955 conditionals. Don't check enable_font_backend. Delete all codes
10956 used only when USE_FONT_BACKEND is not defined. Surround non-used
10957 code by "#ifdef OLD_FONT" and "endif".
10959 * w32uniscribe.c: Delete USE_FONT_BACKEND conditional.
10960 (uniscribe_open): Return value changed to font-object.
10961 Adjusted for the format change of font-object.
10962 (uniscribe_otf_capability): Adjusted for the change of struct font.
10963 (add_opentype_font_name_to_list): Don't downcase names.
10964 (uniscribe_font_driver): Adjusted for the change of struct
10967 2008-05-13 Chong Yidong <cyd@stupidchicken.com>
10969 * dispnew.c (update_frame_1): Check if tty output is still valid
10970 before flushing it.
10972 2008-05-13 Jan Djärv <jan.h.d@swipnet.se>
10974 * xterm.c (handle_one_xevent): Don't pass buttons higher than 3
10977 2008-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
10979 * dired.c (file_name_completion): Tweak the code so as to always do it
10980 in a single pass. Tighten the scope of some variables.
10982 * dired.c (Qdefault_directory): New var.
10983 (file_name_completion): Use it instead of Fexpand_file_name.
10984 (syms_of_dired): Initialize it.
10986 2008-05-12 Stefan Monnier <monnier@iro.umontreal.ca>
10988 * fileio.c (double_dollars): Remove dead code.
10990 2008-05-10 Eli Zaretskii <eliz@gnu.org>
10992 * dired.c (Ffile_attributes, Fdirectory_files_and_attributes):
10993 Mention w32-get-true-file-attributes in doc string.
10995 * w32proc.c (syms_of_ntproc) <w32-get-true-file-attributes>: Doc fix.
10997 2008-05-09 Glenn Morris <rgm@gnu.org>
10999 * fileio.c (Fread_file_name): Remove reference to insdef, deleted
11002 2008-05-09 Eli Zaretskii <eliz@gnu.org>
11004 Support for reporting owner and group of each file on MS-Windows:
11005 * dired.c (stat_uname, stat_gname): New functions, with special
11006 implementation for w32.
11007 (Ffile_attributes): Use them instead of getpwuid and getgrgid.
11009 * w32.c: Rename the_passwd_* to dflt_passwd_*.
11010 (dflt_group_name): New static variable.
11011 (dflt_group): Rename from the_group.
11012 (init_user_info): Init dflt_group fields. Get user's group name
11013 from LookupAccountSid.
11014 (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
11015 (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
11016 New initialization states.
11017 (globals_of_w32): Initialize them to zero. Initialize the default
11018 group name to "None".
11019 (GetFileSecurity_Name): New global var, the name of the function
11020 to call for GetFileSecurity.
11021 (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
11022 (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
11023 (get_file_security, get_security_descriptor_owner)
11024 (get_security_descriptor_group, is_valid_sid)
11025 (get_file_security_desc, get_rid, get_name_and_id)
11026 (get_file_owner_and_group): New functions.
11027 (stat): Use get_file_security_desc and get_file_owner_and_group to
11028 report the owner and primary group of each file. Don't ignore the
11029 high 32 bits of file's size, now that st_size is 64-bit wide.
11030 Fix test when to get true file attributes.
11031 (init_user_info): Use get_rid instead of equivalent inline code.
11032 (fstat): Don't ignore the high 32 bits of file's size.
11034 2008-05-09 Chong Yidong <cyd@stupidchicken.com>
11036 * image.c (png_load): Use correct bit-depth for setting background
11039 2008-05-08 Eli Zaretskii <eliz@gnu.org>
11041 * Makefile.in (lisp, shortlisp): Rename epa-file-hook.elc to
11044 2008-05-08 Juanma Barranquero <lekktu@gmail.com>
11046 * font.c (Ffont_match_p): Don't use `iff' in docstring.
11048 2008-05-07 Dan Nicolaescu <dann@ics.uci.edu>
11050 * macfns.c (Fx_create_frame): Make a copy of frame parameters
11051 because the original parameters are in pure storage now.
11052 (mac_window): Remove unused params. Update callers.
11054 2008-05-06 Stefan Monnier <monnier@iro.umontreal.ca>
11056 * lread.c (substitute_object_recurse): Use lower-level primitives.
11057 Don't signal errors when traversing sub-char-tables.
11058 Don't loop over all the possible characters when traversing char-tables.
11060 * print.c (print_preprocess): Add sub-char-tables to the print-table,
11061 just like we do in print.c.
11063 2008-05-05 Stefan Monnier <monnier@iro.umontreal.ca>
11065 * minibuf.c (Ftry_completion): Remove code left over from when we used
11066 scmp instead of Fcompare_strings.
11068 2008-05-04 Juanma Barranquero <lekktu@gmail.com>
11070 * w32fns.c (Fw32_battery_status): Fix computation of %t (h:min) format.
11072 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11074 * image.c [USE_MAC_IMAGE_IO] (image_load_image_io):
11075 Create bitmap context in native byte order.
11077 * macterm.c (XDrawLine)
11078 (XCreatePixmapFromBitmapData) [USE_MAC_IMAGE_IO]: Create bitmap
11079 context in native byte order.
11081 2008-05-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11083 * config.in: Regenerate.
11085 * image.c (PIX_MASK_DRAW, PIX_MASK_RETAIN) [USE_MAC_IMAGE_IO]:
11086 New definitions for Image I/O support.
11087 (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
11088 (mac_create_cg_image_from_image, x_create_x_image_and_pixmap)
11089 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
11090 (mac_data_provider_release_data, image_load_image_io)
11091 [USE_MAC_IMAGE_IO]: New functions.
11092 (CGImageCreateWithPNGDataProviderProcType) [MAC_OSX]: Remove typedef.
11093 (MyCGImageCreateWithPNGDataProvider) [MAC_OSX]: Remove variable.
11094 (init_image_func_pointer) [MAC_OSX]: Remove function.
11095 (image_load_quartz2d) [MAC_OSX]: Check availability of
11096 CGImageCreateWithPNGDataProvider at compile time.
11097 Use lowercase `false' for boolean constant.
11098 (png_load, jpeg_load, tiff_load, gif_load) [USE_MAC_IMAGE_IO]:
11099 Use image_load_image_io.
11100 (png_load) [!USE_MAC_IMAGE_IO && MAC_OSX]:
11101 Don't check MyCGImageCreateWithPNGDataProvider.
11102 (init_image) [MAC_OSX && TARGET_API_MAC_CARBON]:
11103 Don't call init_image_func_pointer.
11105 * macgui.h (Pixmap) [USE_MAC_IMAGE_IO]: New definition for Image I/O.
11107 * macterm.c (mac_cg_color_space_rgb) [USE_CG_DRAWING]:
11108 Make variable non-static.
11109 (XDrawLine, XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
11110 [USE_MAC_IMAGE_IO]: Add implementations for Image I/O support.
11112 * macterm.h (ARGB_TO_ULONG, ALPHA_FROM_ULONG): New macros.
11113 (RED_FROM_ULONG): Mask off higher bits.
11114 (mac_cg_color_space_rgb) [USE_MAC_IMAGE_IO]: New extern.
11116 * s/darwin.h [HAVE_CARBON && HAVE_AVAILABILITYMACROS_H]:
11117 Include AvailabilityMacros.h.
11118 (USE_MAC_IMAGE_IO, LIBS_IMAGE) [HAVE_CARBON]: New defines.
11119 (LIBS_CARBON) [HAVE_CARBON]: Use LIBS_IMAGE.
11121 2008-05-03 Stefan Monnier <monnier@iro.umontreal.ca>
11123 * chartab.c (Fset_char_table_range): If range is t, really set all
11124 chars to that value.
11126 2008-05-03 Eli Zaretskii <eliz@gnu.org>
11128 * dired.c (Ffile_attributes): Don't allow the device number become
11131 2008-05-02 Daiki Ueno <ueno@unixuser.org>
11133 * Makefile.in (lisp, shortlisp): Add epa-file-hook.elc.
11135 2008-05-02 Juri Linkov <juri@jurta.org>
11137 * minibuf.c (Fread_from_minibuffer, Fread_string, Fread_command)
11138 (Fread_variable, Fread_buffer, Fcompleting_read): Document the
11139 DEFAULT argument as a list of default values in docstrings.
11141 2008-05-01 Chong Yidong <cyd@stupidchicken.com>
11143 * puresize.h (BASE_PURESIZE): Increase to 1210000.
11145 2008-05-01 Martin Rudalics <rudalics@gmx.at>
11147 * dispnew.c (change_frame_size_1): Preserve small windows when
11148 shrinking frames by calling set_window_height|width with third
11151 * window.h (struct window): Replace field too_small_ok by field
11152 resize_proportionally.
11154 * window.c (make_window): Initialize resize_proportionally.
11155 (enlarge_window): Temporarily set resize_proportionally to make
11156 sure that shrink_windows does scale the window proportionally.
11157 (shrink_windows): When window has resize_proportionally set try
11158 to shrink it proportionally by stealing from other windows.
11159 (struct saved_window, Fset_window_configuration)
11160 (compare_window_configurations): Handle resize_proportionally.
11161 (WINDOW_TOTAL_SIZE): New macro.
11162 (window_min_size, shrink_windows, size_window): Use it.
11163 (check_min_window_sizes): Remove. Invalid values of
11164 window-min-height|width are handled by window_min_size_2 now.
11165 (size_window, Fsplit_window, enlarge_window)
11166 (adjust_window_trailing_edge, grow_mini_window): Don't call
11167 check_min_window_sizes.
11168 (window_min_size_2, window_min_size_1, window_min_size):
11169 New argument safe_p for retrieving "safe" minimum sizes.
11170 (Fdisplay_buffer, Fsplit_window, enlarge_window)
11171 (adjust_window_trailing_edge, grow_mini_window):
11172 Adjust arguments of window_min_size... functions.
11173 (shrink_windows): Argument min_size removed. New argument
11174 safe_p allows shrinking windows to their safe minimum sizes.
11175 Calculate minimum size and decide whether a window shall be
11176 deleted for each window individually.
11177 (size_window): When nodelete_p equals 2, tell shrink_windows to
11178 delete windows only if their new minimum size is no more safe.
11179 (shrink_window_lowest_first): Call window_min_size_1 to make
11180 sure to preserve modeline of bottom-most window when resizing
11182 (Fset_window_configuration, Fcurrent_window_configuration)
11183 (compare_window_configurations): Do not handle
11184 window-min-height|width any more.
11185 (syms_of_window): Clarify window-min-height|width doc-strings.
11187 2008-04-30 Stefan Monnier <monnier@iro.umontreal.ca>
11189 * dired.c (file_name_completion): Fix up the encoding/decoding issue
11190 some more. Copy some of the code from Ftry_completions.
11191 Remove special case code that dates back to initial revision when the
11192 slash was only added when necessary and that can't trigger nowadays.
11194 2008-04-27 Kenichi Handa <handa@m17n.org>
11196 * font.c (font_prop_validate): Signal `error' instead of `font'.
11198 2008-04-29 Jason Rumney <jasonr@gnu.org>
11200 * w32fns.c (Fw32_battery_status): New defun.
11201 (syms_of_w32fns): Defsubr it.
11203 2008-04-28 Andreas Schwab <schwab@suse.de>
11205 * dired.c (file_name_completion): Fix another mixing of encoded
11208 2008-04-28 Juanma Barranquero <lekktu@gmail.com>
11210 * w32fns.c (Fw32_define_rgb_color): Fix typo in docstring.
11212 2008-04-27 Juanma Barranquero <lekktu@gmail.com>
11214 * fringe.c (Fdefine_fringe_bitmap): Doc fix.
11216 2008-04-27 Andreas Schwab <schwab@suse.de>
11218 * dired.c (file_name_completion): Fix inappropriate mixing of
11219 encoded and decoded names.
11221 * xterm.c (XTread_socket): Fix use of uninitialized variable.
11223 * puresize.h (BASE_PURESIZE): Increase to 1200000.
11225 2008-04-26 Eli Zaretskii <eliz@gnu.org>
11227 * dired.c (Ffile_attributes) [WINDOWSNT]: Undo change from
11228 2008-03-31, it's not needed anymore with `struct stat' definition
11229 on nt/inc/sys/stat.h. Undo changes from 2007-01-12 and 2007-01-13
11230 for the same reasons.
11232 2008-04-25 Dennis Gilmore <ausil@fedoraproject.org> (tiny change)
11234 * m/sparc.h: Additional redefinitions for GNU/Linux.
11236 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11238 * macterm.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: New variable.
11239 (syms_of_macterm) [USE_MAC_TSM]: Defvar it.
11240 (Qmouse_drag_overlay) [MAC_OSX]: New variable.
11241 (syms_of_macterm) [MAC_OSX]: Intern and staticpro it.
11242 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
11243 (mac_ax_selected_text_range) [MAC_OSX]: New functions.
11244 (mac_ax_number_of_characters) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11247 * mactoolbox.c (Vmac_ts_active_input_buf) [USE_MAC_TSM]: Add extern.
11248 (fast_find_position, x_y_to_hpos_vpos, mac_ax_selected_text_range)
11249 (mac_ax_number_of_characters): Add externs.
11250 (mac_get_selected_range, mac_store_buffer_text_to_unicode_chars)
11251 [USE_MAC_TSM]: Likewise.
11252 (mac_handle_text_input_event) [MAC_OSX]:
11253 Handle kEventTextInputOffsetToPos for no active input area case.
11254 Handle kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
11255 (mac_handle_document_access_event)
11256 [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: New function.
11257 (install_application_handler) [MAC_OSX]: Register handlers for
11258 kEventTextInputPosToOffset and kEventTextInputGetSelectedText.
11259 (install_application_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
11260 Register mac_handle_document_access_event.
11262 * xdisp.c (x_y_to_hpos_vpos, fast_find_position) [HAVE_CARBON]:
11263 Make functions non-static.
11265 2008-04-23 Stefan Monnier <monnier@iro.umontreal.ca>
11267 * fileio.c (Vread_file_name_function, Vread_file_name_predicate)
11268 (read_file_name_completion_ignore_case, insert_default_directory)
11269 (Qdefault_directory): Move to minibuffer.el.
11270 (Fread_file_name): Call the new `read-file-name' instead.
11272 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11274 * mac.c (create_apple_event) [TARGET_API_MAC_CARBON]:
11275 Make function non-static.
11276 (create_apple_event_from_event_ref) [TARGET_API_MAC_CARBON]:
11278 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
11279 Move to mactoolbox.c.
11280 (mac_event_parameters_to_lisp) [TARGET_API_MAC_CARBON]: New function.
11282 * macgui.h (CGFloat) [!CGFLOAT_DEFINED]: New typedef.
11283 (mac_rect_make): New macro.
11285 * macterm.c (mac_draw_image_string_atsui) [MAC_OSX]: Use CGFloat
11287 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
11288 (init_cg_color, mac_draw_line, mac_draw_cg_image, XSetForeground)
11289 (XSetBackground) [USE_CG_DRAWING]: Likewise.
11290 (mac_draw_image_string_atsui) [MAC_OSX]: Use mac_rect_make instead of
11292 (mac_draw_image_string_cg) [USE_CG_TEXT_DRAWING]: Likewise.
11293 (mac_erase_rectangle, mac_draw_cg_image, mac_fill_rectangle)
11294 (mac_set_clip_rectangles) [USE_CG_DRAWING]: Likewise.
11295 (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
11296 instead of WindowRef in argument type.
11297 (XCreatePixmap) [!MAC_OS8]: Don't call SetPortWindowPort.
11298 (mac_invert_rectangle): Use CGContextSetBlendMode if available.
11299 (mac_set_clip_rectangles, mac_reset_clip_rectangles): Take argument F
11300 instead of DISPLAY. All uses changed.
11301 (mac_handle_size_change): Don't call SET_FRAME_GARBAGED.
11302 (x_calc_absolute_position): Simplify so as not to use
11303 FRAME_PIXEL_WIDTH/FRAME_PIXEL_HEIGHT.
11305 * macterm.h (XCreatePixmap, XCreatePixmapFromBitmapData): Use Window
11306 instead of WindowRef in argument type.
11307 (create_apple_event_from_event_ref, create_apple_event_from_drag_ref)
11308 [TARGET_API_MAC_CARBON]: Remove externs.
11309 (create_apple_event, mac_event_parameters_to_lisp)
11310 [TARGET_API_MAC_CARBON]: Add externs.
11312 * mactoolbox.c (Vmac_ts_script_language_on_focus)
11313 (saved_ts_script_language_on_focus) [USE_MAC_TSM]: Remove externs.
11314 (XTread_socket) [USE_MAC_TOOLBAR]: Select window if its structure part
11316 (x_activate_menubar): Remove extern for saved_menu_event_location.
11317 (create_apple_event_from_drag_ref) [TARGET_API_MAC_CARBON]:
11320 2008-04-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11322 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT] (uninterrupt_malloc)
11323 [HAVE_GTK_AND_PTHREAD && !DOUG_LEA_MALLOC]: Don't use recursive mutex.
11325 2008-04-23 Jason Rumney <jasonr@gnu.org>
11327 * w32.c (stat): When Vw32_get_true_file_attributes is Qlocal, get
11328 attributes only for local files.
11330 * w32proc.c (syms_of_ntproc): Change Vw32_get_true_file attributes
11333 2008-04-22 Juri Linkov <juri@jurta.org>
11335 * buffer.c (Fswitch_to_buffer): Change interactive spec to call
11336 read-buffer-to-switch instead of using the letter "B".
11338 2008-04-21 Stefan Monnier <monnier@iro.umontreal.ca>
11340 * fileio.c (Qdefault_directory): New variable.
11341 (Fread_file_name): Use it to pass `dir' to the completion functions.
11343 2008-04-20 Chong Yidong <cyd@stupidchicken.com>
11345 * xdisp.c (pos_visible_p): Check if iterator stops on a display string.
11347 2008-04-19 Stefan Monnier <monnier@iro.umontreal.ca>
11349 * keyboard.c (Vpre_help_message): Remove.
11350 (show_help_echo): Remove default C code.
11352 * dired.c (directory_files_internal, file_name_completion):
11353 Only call ENCODE_FILE if the string is indeed decoded.
11355 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11357 * Makefile.in (TOOLKIT_DEFINES): Remove.
11358 (LIBW): Use a bit less #if, remove left over OPEN_LOOK stuff.
11360 2008-04-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11362 * Makefile.in (MAC_OBJ): Add mactoolbox.o.
11363 (mactoolbox.o): New target.
11365 * mac.c [MAC_OSX] (select_and_poll_event, sys_select):
11366 Use mac_run_loop_run_once instead of CFRunLoopRunInMode.
11368 * macfns.c (x_set_background_color, mac_window, x_create_tip_frame):
11369 Use mac_set_frame_window_background instead of XSetWindowBackground.
11370 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]:
11371 Use mac_is_window_toolbar_visible instead of IsWindowToolbarVisible.
11372 (x_set_name_internal) [TARGET_API_MAC_CARBON]: Use mac_set_window_title
11373 instead of SetWindowTitleWithCFString.
11374 (mac_update_proxy_icon) [TARGET_API_MAC_CARBON]: Remove BLOCK_INPUT.
11375 Move function to mactoolbox.c.
11376 (mac_update_title_bar) [TARGET_API_MAC_CARBON]:
11377 Use mac_set_window_modified instead of SetWindowModified.
11378 Add BLOCK_INPUT around mac_set_window_modified/mac_update_proxy_icon.
11379 (mac_window, x_create_tip_frame): Use mac_create_frame_window.
11380 (Fx_focus_frame): Use mac_front_non_floating_window instead of
11381 FrontNonFloatingWindow. Use mac_activate_window instead of
11382 ActivateWindow. Use mac_active_non_floating_window instead of
11383 ActiveNonFloatingWindow.
11384 (show_hourglass, hide_hourglass) [TARGET_API_MAC_CARBON]:
11385 Use mac_show_hourglass and mac_hide_hourglass.
11386 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use mac_get_global_mouse
11387 instead of GetGlobalMouse.
11388 (Fx_show_tip): Use mac_move_window/mac_size_window/mac_show_window
11389 instead of MoveWindow/SizeWindow/ShowWindow, respectively.
11390 Use mac_bring_window_to_front instead of BringToFront.
11391 (Qfile_name_history) [TARGET_API_MAC_CARBON]: Move extern to
11393 (Fx_file_dialog) [TARGET_API_MAC_CARBON]: Move function body to
11394 mac_file_dialog in mactoolbox.c. Use mac_file_dialog.
11395 (mac_nav_event_callback) [TARGET_API_MAC_CARBON]: Move function to
11398 * macgui.h [!HAVE_CARBON]: Include Quickdraw.h instead of QuickDraw.h.
11399 (XtPointer): Move typedef from macmenu.c.
11400 (enum button_type): Move enum from macmenu.c.
11401 (widget_value): Move typedef from macmenu.c.
11402 (M_APPLE, I_ABOUT, EXTRA_STACK_ALLOC, ARGV_STRING_LIST_ID)
11403 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
11404 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
11405 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
11406 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
11407 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
11408 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
11409 (DIALOG_ICON_TOP_MARGIN): Move defines from macmenu.c.
11410 (Selection): Move typedef from macselect.c.
11411 (RAM_TOO_LARGE_ALERT_ID, ABOUT_ALERT_ID) [MAC_OS8]: Move defines from
11413 (mac_set_window_title, mac_set_window_modified, mac_is_window_visible)
11414 (mac_is_window_collapsed, mac_bring_window_to_front)
11415 (mac_send_window_behind, mac_hide_window, mac_show_window)
11416 (mac_collapse_window, mac_front_non_floating_window)
11417 (mac_active_non_floating_window, mac_activate_window)
11418 (mac_move_window_structure, mac_move_window, mac_size_window)
11419 (mac_get_global_mouse, mac_is_window_toolbar_visible): New defines.
11421 * macmenu.c [!TARGET_API_MAC_CARBON]: Move includes to mactoolbox.c.
11422 (enum mac_menu_kind): Move enum to mactoolbox.c.
11423 (min_menu_id): Move variable to mactoolbox.c.
11424 (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]: Likewise.
11425 (DIALOG_WINDOW_RESOURCE): Move define to mactoolbox.c.
11426 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
11427 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
11428 [TARGET_API_MAC_CARBON]: Likewise.
11429 (XtPointer): Move typedef to macgui.h.
11430 (enum button_type): Move enum to macgui.h.
11431 (widget_value): Move typedef to macgui.h.
11432 (DIALOG_LEFT_MARGIN, DIALOG_TOP_MARGIN, DIALOG_RIGHT_MARGIN)
11433 (DIALOG_BOTTOM_MARGIN, DIALOG_MIN_INNER_WIDTH, DIALOG_MAX_INNER_WIDTH)
11434 (DIALOG_BUTTON_BUTTON_HORIZONTAL_SPACE)
11435 (DIALOG_BUTTON_BUTTON_VERTICAL_SPACE, DIALOG_BUTTON_MIN_WIDTH)
11436 (DIALOG_TEXT_MIN_HEIGHT, DIALOG_TEXT_BUTTONS_VERTICAL_SPACE)
11437 (DIALOG_ICON_WIDTH, DIALOG_ICON_HEIGHT, DIALOG_ICON_LEFT_MARGIN)
11438 (DIALOG_ICON_TOP_MARGIN): Move defines to macgui.h.
11439 (popup_activated_flag): Make variable non-static.
11440 (x_activate_menubar, install_menu_quit_handler, pop_down_menu)
11441 (add_menu_item, fill_menu, dispose_menus):
11442 Move functions to mactoolbox.c.
11443 (restore_show_help_function, menu_target_item_handler)
11444 (install_menu_target_item_handler, mac_handle_dialog_event)
11445 (install_dialog_event_handler, pop_down_dialog, create_and_show_dialog)
11446 [TARGET_API_MAC_CARBON]: Likewise.
11447 (menu_quit_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]: Likewise.
11448 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
11449 (find_and_call_menu_selection, name_is_separator): Make function
11451 (Vshow_help_function, timer_check) [TARGET_API_MAC_CARBON]: Move extern
11453 (set_frame_menubar): Don't call install_menu_quit_handler.
11454 (menu_item_selection): New variable.
11455 (mac_menu_show): Use create_and_show_popup_menu.
11456 (create_and_show_dialog) [TARGET_API_MAC_CARBON]: Don't return
11457 selection but set variable menu_item_selection. All uses changed.
11458 (mac_fill_menubar): Rename from fill_menubar. All uses changed.
11459 Call install_menu_quit_handler. Move to mactoolbox.c.
11461 * macselect.c [!TARGET_API_MAC_CARBON]: Don't include Scrap.h.
11462 (Selection): Move typedef to macgui.h.
11463 (Vselection_converter_alist, Qmac_scrap_name, Qmac_ostype)
11464 (Vmac_apple_event_map, Qmac_apple_event_class, Qmac_apple_event_id):
11465 Make variables non-static.
11466 (Vmac_dnd_known_types) [TARGET_API_MAC_CARBON]: Likewise.
11467 (mac_handle_apple_event, cleanup_all_suspended_apple_events):
11468 Make functions non-static.
11469 (Vmac_service_selection) [MAC_OSX]: Likewise.
11470 (mac_get_selection_from_symbol, get_flavor_type_from_symbol)
11471 (mac_valid_selection_target_p, mac_clear_selection)
11472 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
11473 (mac_put_selection_value, mac_selection_has_target_p)
11474 (mac_get_selection_value, mac_get_selection_target_list)
11475 (init_apple_event_handler, install_drag_handler, remove_drag_handler):
11476 Move functions to mactoolbox.c.
11477 (mac_do_track_drag, mac_do_receive_drag) [TARGET_API_MAC_CARBON]:
11479 (copy_scrap_flavor_data, mac_handle_service_event)
11480 (install_service_handler) [MAC_OSX]: Likewise.
11481 (syms_of_macselect) <Vmac_dnd_known_types>:
11482 Use mac_dnd_default_known_types.
11484 * macterm.h (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y):
11485 Move to mactoolbox.c.
11486 (HOURGLASS_WIDTH, HOURGLASS_HEIGHT): Change to 15.
11487 (Fx_selection_owner_p): Add EXFUN.
11488 (install_window_handler, remove_window_handler, XSetWindowBackground):
11490 (do_apple_menu) [!TARGET_API_MAC_CARBON]: Likewise.
11491 (mac_prepare_for_quickdraw) [USE_CG_DRAWING]: Likewise.
11492 (x_raise_frame, x_lower_frame, mac_alert_sound_play)
11493 (install_application_handler, mac_get_frame_bounds, mac_get_frame_mouse)
11494 (mac_convert_frame_point_to_global, mac_set_frame_window_background)
11495 (mac_update_begin mac_update_end, mac_frame_up_to_date, x_flush)
11496 (mac_create_frame_window, mac_dispose_frame_window, mac_begin_clip)
11497 (mac_end_clip, mac_create_scroll_bar, mac_dispose_scroll_bar)
11498 (mac_set_scroll_bar_bounds, mac_redraw_scroll_bar, mac_fill_menubar)
11499 (create_and_show_popup_menu, mac_get_selection_from_symbol)
11500 (mac_valid_selection_target_p, mac_clear_selection)
11501 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
11502 (mac_put_selection_value, mac_selection_has_target_p)
11503 (mac_get_selection_value, mac_get_selection_target_list): Add externs.
11504 (mac_update_proxy_icon, mac_show_hourglass, mac_hide_hourglass)
11505 (mac_reposition_hourglass, mac_file_dialog, create_and_show_dialog)
11506 (mac_dnd_default_known_types) [TARGET_API_MAC_CARBON]: Likewise.
11507 (mac_run_loop_run_once) [MAC_OSX]: Likewise.
11508 (mac_dialog) [!TARGET_API_MAC_CARBON]: Likewise.
11509 (mac_begin_cg_clip, mac_end_cg_clip) [USE_CG_DRAWING]: Likewise.
11510 (x_set_toolkit_scroll_bar_thumb) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
11511 (x_scroll_bar_set_handle) [!USE_TOOLKIT_SCROLL_BARS]: Likewise.
11513 * mactoolbox.c: New file.
11515 2008-04-18 Jason Rumney <jasonr@gnu.org>
11517 * dired.c (Ffile_attributes) [WINDOWSNT]: Cast uid and gid to unsigned.
11519 2008-04-18 Stefan Monnier <monnier@iro.umontreal.ca>
11521 * character.c (Fmultibyte_char_to_unibyte):
11522 Return latin1 chars unchanged.
11524 * fileio.c (Fexpand_file_name): Refine last fix so `nm' is only
11525 relocated if it points to `name'.
11527 2008-04-17 Kenichi Handa <handa@m17n.org>
11529 * data.c (Faset): Allow setting a multibyte character in an
11530 ASCII-only unibyte string.
11532 * lisp.h (STRING_SET_MULTIBYTE): New macro.
11534 2008-04-16 Stefan Monnier <monnier@iro.umontreal.ca>
11536 * Makefile.in: Don't use HAVE_GTK and don't -DUSE_GTK since it's now
11539 2008-04-16 Juanma Barranquero <lekktu@gmail.com>
11541 * character.c (Fchar_bytes, Fchar_width, Fstring_width)
11542 (Fchar_direction): Add usage in the docstring.
11544 2008-04-15 Chong Yidong <cyd@stupidchicken.com>
11546 * keyboard.c (read_key_sequence): Remove always-true checks.
11548 2008-04-14 Jason Rumney <jasonr@gnu.org>
11550 * w32font.c (w32font_open_internal): Set max_bounds.descent in
11551 compatibility struct, for better underline positioning.
11553 2008-04-13 David Hansen <david.hansen@gmx.net>
11555 * dbusbind.c (dbus-get-unique-name): Remove extra copying of name
11558 2008-04-12 Dan Nicolaescu <dann@ics.uci.edu>
11560 * m/hp800.h (XUINT, XSET): Remove.
11562 2008-04-12 Juanma Barranquero <lekktu@gmail.com>
11564 * fileio.c (Fexpand_file_name): Add declaration for `p' missing in
11567 2008-04-12 Stefan Monnier <monnier@iro.umontreal.ca>
11569 * fileio.c (Fexpand_file_name): Tighten the scope of `p' and `o' vars.
11570 Relocate `nm' after calling DECODE_FILE, in case the GC was run.
11572 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11574 * keymap.h (map_keymap_canonical): Declare.
11575 * xmenu.c (single_keymap_panes): Use it.
11577 2008-04-11 Glenn Morris <rgm@gnu.org>
11579 * eval.c (Fdefvaralias): If the alias is bound and the target is not,
11580 set the target's value to that of the alias.
11582 2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
11584 * term.c (set_tty_color_mode): Left over typo.
11586 2008-04-10 Michael Albinus <michael.albinus@gmx.de>
11588 * fileio.c (Fmake_symbolic_link): Surround code by #ifdef S_IFLNK
11589 only after check for file name handler functions. Signal, when
11590 native functionality is not supported.
11591 (syms_of_fileio): Declare it unconditionally.
11593 2008-04-10 Jason Rumney <jasonr@gnu.org>
11595 * w32menu.c (is_simple_dialog, simple_dialog_show): New functions.
11596 (Fx_popup_dialog): Handle simple yes/no questions as dialogs.
11598 * w32.c (logon_network_drive): Also logon to remote drives that
11599 are mapped to drive letters.
11601 2008-04-10 Glenn Morris <rgm@gnu.org>
11603 * xdisp.c (truncate-partial-width-windows): Doc fix.
11605 2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
11607 * fileio.c (read_file_name_cleanup, Fread_file_name_internal):
11608 Move functions to minibuffer.el.
11609 (syms_of_fileio): Don't declare them.
11611 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
11613 * minibuf.c (Vcompletion_auto_help): Move to minibuffer.el.
11614 (syms_of_minibuf): Remove its initialization.
11616 * minibuf.c (temp_echo_area_glyphs): Remove unused function.
11618 2008-04-09 Juanma Barranquero <lekktu@gmail.com>
11620 * editfns.c (Ffield_string_no_properties): Fix typo in docstring.
11622 2008-04-09 Jason Rumney <jasonr@gnu.org>
11624 * makefile.w32-in (distclean): Delete makefile too.
11625 (maintainer-clean): New target.
11627 * xdisp.c (redisplay_internal) [!WINDOWSNT]: Conditionalize last change.
11629 * w32term.c (w32_compute_glyph_string_overhangs): Compute overhangs
11630 for new font backend and composite cases.
11632 2008-04-09 Jan Djärv <jan.h.d@swipnet.se>
11634 * atimer.c (alarm_signal_handler): Call run_timers if not SYNC_INPUT.
11635 Most of the code moved to run_timers.
11636 (do_pending_atimers): Call run_timers.
11637 (run_timers): New function.
11639 * sysdep.c (emacs_write): If SYNC_INPUT and pending_atimers,
11642 * process.c (wait_reading_process_output): The same as above.
11644 2008-04-09 Stefan Monnier <monnier@iro.umontreal.ca>
11646 * minibuf.c (last_exact_completion): Remove variable.
11647 (Fdelete_minibuffer_contents, do_completion, Fminibuffer_complete)
11648 (complete_and_exit_1, complete_and_exit_2)
11649 (Fminibuffer_complete_and_exit, Fminibuffer_complete_word)
11650 (Fdisplay_completion_list, display_completion_list_1)
11651 (Fminibuffer_completion_help, Fself_insert_and_exit)
11652 (Fexit_minibuffer, Fminibuffer_message): Move functions to
11654 (syms_of_minibuf): Remove corresponding initializations.
11656 * keyboard.c (Qdeactivate_mark): New var.
11657 (command_loop_1): Use it to call `deactivate-mark'.
11658 (syms_of_keyboard): Initialize it.
11660 * xdisp.c (redisplay_internal): Reset tty's color_mode when switching
11662 * frame.c (do_switch_frame): Refine the top_frame/async_visible code.
11663 Don't call set_tty_color_mode.
11664 (store_frame_param): Reset previous_frame rather than call
11665 set_tty_color_mode.
11666 * term.c (set_tty_color_mode): Rewrite.
11667 * dispextern.h (set_tty_color_mode): New type.
11668 * termchar.h (struct tty_display_info): Add `previous_color_mode'.
11670 2008-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
11672 * keymap.c (access_keymap): Remove the value 2 for t_ok which was used
11673 for generic chars, which do not exist any more in emacs-unicode.
11675 2008-04-08 Michael Albinus <michael.albinus@gmx.de>
11677 * coding.c (detect_coding_emacs_mule)
11678 (Ffind_operation_coding_system): Fix typo.
11680 2008-04-08 Jason Rumney <jasonr@gnu.org>
11682 * w32uniscribe.c (SNAME): Extract only symbol name.
11684 * w32font.h (struct w32_metric_cache): New struct.
11685 (w32font_info): Use it.
11686 (W32METRIC_NO_ATTEMPT, W32METRIC_SUCCESS, W32METRIC_FAIL)
11687 (CACHE_BLOCKSIZE): New constants.
11689 * w32font.c (Qja, Qko, Qzh): New symbols.
11690 (syms_of_w32font): Initialise them.
11691 (font_matches_spec): Use them to filter by language.
11692 (recompute_cached_metrics): Remove function.
11693 (compute_metrics, clear_cached_metrics): New functions.
11694 (w32font_encode_char): Use them to manage metric cache.
11695 (w32font_text_extents): Cache metrics for all glyphs on demand.
11696 Delay converting glyph indices to WORD until needed.
11697 (w32font_open_internal): Initialize metric cache to empty.
11698 (registry_to_w32_charset): Charset should always be a symbol.
11699 (fill_in_logfont, list_all_matching_fonts): Family should
11700 always be a symbol.
11702 2008-04-06 Jason Rumney <jasonr@gnu.org>
11704 * w32uniscribe.c (uniscribe_shape): Increase items buffer size.
11705 Give up if glyph indices not supported. Use uniscribe obtained
11706 ABC widths for individual metrics. Map glyph clusters back to
11707 characters using fClusterStart flag. Return number of glyphs
11708 produced, not chars processed.
11709 (uniscribe_shape): Map char at FROM to current glyph.
11711 2008-04-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11713 * macmenu.c (fill_menu) [TARGET_API_MAC_CARBON]:
11714 Use SetMenuItemHierarchicalMenu.
11716 2008-04-05 Jason Rumney <jasonr@gnu.org>
11718 * image.c (pbm_load): Allow color values up to 65535.
11719 Throw an error if max_color_idx is outside the supported range.
11720 Report an error when image size is invalid.
11721 Read two bytes at a time when raw images have max_color_idx above 255.
11723 2008-04-05 Eli Zaretskii <eliz@gnu.org>
11725 * w32.c (readdir): If FindFirstFile/FindNextFile return in
11726 cFileName a file name that includes `?' characters, use the 8+3
11727 alias in cAlternateFileName instead.
11729 2008-04-05 Kenichi Handa <handa@ni.aist.go.jp>
11731 * ccl.c (ccl_driver): If ccl->quit_silently is nonzero, don't
11732 append "CCL: Quitted" when the CCL program is quitted.
11733 (setup_ccl_program): Initialize ccl->quit_silently to zero.
11735 * ccl.h (struct ccl_program): New member quit_silently.
11737 2008-04-05 Chong Yidong <cyd@stupidchicken.com>
11739 * search.c (compile_pattern_1): Treat non-nil and non-string of
11740 search-spaces-regexp as nil.
11742 * minibuf.c (Fassoc_string): Tweak docstring.
11744 2008-04-05 Eli Zaretskii <eliz@gnu.org>
11746 * dired.c (Ffile_attributes): Support inode numbers wider than 32
11747 bits. Remove ugly WINDOWSNT-specific kludge introduced on
11748 2008-03-14 to force inode be positive.
11750 * w32.c (sys_chown, stat, fstat): Use S_* constants instead of
11751 _S_* ones, since we now use our own sys/stat.h.
11752 (stat, fstat): Don't mangle the inode number.
11753 (init_user_info): Don't restrict UID and GID to 0-60000 range.
11755 2008-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
11757 * frame.h (struct frame): Give one more bit to `visible' since we use
11758 values larger than 1 to indicate obscured frames on ttys.
11760 * keymap.c (Qkeymap_canonicalize): New var.
11761 (Fmap_keymap_internal): New fun.
11762 (describe_map): Use keymap-canonicalize.
11764 * undo.c (last_boundary_buffer, last_boundary_position): New vars.
11765 (Fundo_boundary): Set them.
11766 (syms_of_undo): Initialize them.
11767 (record_point): Use them instead of last_point_position*.
11768 (last_undo_buffer): Change type.
11770 2008-04-04 Jason Rumney <jasonr@gnu.org>
11772 * w32font.c (w32font_text_extents): Use font's ascent and descent.
11773 (recompute_cached_metrics): Don't set ascent and descent per char.
11775 * w32uniscribe.c (uniscribe_check_otf): Fix last change.
11776 (uniscribe_check_otf): Add GC protection before consing.
11777 Rearrange loop for counting features.
11779 2008-04-03 Stefan Monnier <monnier@iro.umontreal.ca>
11781 * insdel.c (insert_from_buffer_1): Don't compare bytes in destination
11782 buffer with byte-size of source buffer.
11784 2008-04-03 Chong Yidong <cyd@stupidchicken.com>
11786 * callint.c (Fcall_interactively): Handle temporary region even
11787 when shift-select-mode is off.
11789 2008-04-03 Jason Rumney <jasonr@gnu.org>
11791 * w32uniscribe.c (uniscribe_check_otf): Sanity check otf_spec.
11793 2008-04-03 Kenichi Handa <handa@m17n.org>
11795 * coding.c (CATEGORY_MASK_ANY): Add CATEGORY_MASK_UTF_16_AUTO.
11796 (CATEGORY_MASK_UTF_16): Likewise.
11797 (detect_coding_utf_16): Add heuristics to reject utf-16 for a
11799 (detect_coding): Add null-byte detection for a binary file.
11800 (detect_coding_system): Likewise.
11802 2008-04-03 Jason Rumney <jasonr@gnu.org>
11804 * w32uniscribe.c: New file.
11806 * font.h (uniscribe_font_driver) [WINDOWSNT]: Declare for w32fns.c.
11808 * w32font.h (uniscribe_check_otf): Declare for w32font.c.
11810 * w32font.c (Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot)
11811 (Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi)
11812 (Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya)
11813 (Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri)
11814 (Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic)
11815 (Qphonetic): New symbols.
11816 (syms_of_w32font): Initialize them.
11817 (font_supported_scripts): Use them.
11818 (w32font_list_family): List all charsets.
11819 (w32font_text_extents, recompute_cached_metrics): Fix metric
11821 (w32_enumfont_pattern_entity): Make full_type a DWORD.
11822 Give opentype fonts their own format.
11823 (font_matches_spec): New arguments backend and logfont.
11824 Handle :otf spec for uniscribe backend.
11825 (add_font_entity_to_list): Match truetype fonts in uniscribe backend.
11826 (fill_in_logfont): Use DEFAULT_CHARSET when charset not supplied.
11828 * w32fns.c (Fx_create_frame): Conditionally register uniscribe
11830 (globals_of_w32fns): Initialize uniscribe font backend.
11832 * makefile.w32-in (CONFIG_H): New variable. Use it to clean up
11834 (w32uniscribe.$(O)): New file to build.
11835 (FONT_OBJ): Include w32uniscribe.$(O).
11836 (LIBS): Add uniscribe libraries.
11838 * ftfont.c (ftfont_get_open_type_spec): Check spec->script, not val.
11840 2008-04-02 Chong Yidong <cyd@stupidchicken.com>
11842 * callint.c (Vshift_select_mode): New var.
11843 (Finteractive): Document new ^ spec.
11844 (Fcall_interactively): Call handle-shift-selection if the ^ spec
11847 * keyboard.c (Vthis_command_keys_shift_translated): New var.
11848 (command_loop_1): Avoid running the direct display versions of
11849 forward-char and backward-char if shift-selection may occur.
11850 (read_key_sequence): Set Vthis_command_keys_shift_translated if
11851 shift-translation takes place.
11853 * buffer.c (Vtransient_mark_mode): Move docstring to simple.el to
11854 avoid clobbering by define-minor-mode.
11856 * cmds.c (Fforward_char, Fbackward_char, Fforward_line)
11857 (Fbeginning_of_line, Fend_of_line): Add ^ interactive spec.
11859 * syntax.c (Fforward_word): Add ^ interactive spec.
11861 * window.c (Fscroll_up, Fscroll_down, Fscroll_left)
11862 (Fscroll_right): Add ^ interactive spec.
11864 2008-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
11866 * xdisp.c (try_window_id): Don't forget to reset delta_bytes.
11868 * casefiddle.c (casify_object): Fix up int/EMACS_INT mixup.
11870 * charset.c (Funibyte_charset, Fset_unibyte_charset): Remove.
11872 2008-03-31 Juri Linkov <juri@jurta.org>
11874 * window.c (Fdisplay_buffer): Reinitialize `tem' to nil.
11876 2008-03-30 Jan Djärv <jan.h.d@swipnet.se>
11878 * gtkutil.c (xg_set_geometry): Fix indentation.
11879 (xg_resize_outer_widget): Remove.
11880 (x_wm_size_hint_off): Fix indentation.
11881 (xg_frame_set_char_size): Call flush_and_sync after
11883 (x_wm_set_size_hint): Pass NULL as geometry window to
11884 gtk_window_set_geometry_hints due to Gtk+ bug nr 68668.
11885 Add menu bar and tool bar height to base height.
11886 (xg_update_frame_menubar, free_frame_menubar)
11887 (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
11888 (update_frame_tool_bar, free_frame_tool_bar):
11889 Change xg_resize_outer_widget to xg_frame_set_char_size.
11891 2008-03-30 Michael Albinus <michael.albinus@gmx.de>
11893 * dbusbind.c (QCdbus_timeout): New D-Bus internal symbol.
11894 (Fdbus_call_method): New parameter TIMEOUT.
11895 (dbus-send-signal): Optimize UNGCPRO call.
11897 2008-03-29 Juri Linkov <juri@jurta.org>
11899 * window.c (Fdisplay_buffer): Move call to
11900 Vsplit_window_preferred_function out of conditions that check
11901 if window is eligible for vertical splitting.
11902 When Vsplit_window_preferred_function is non-nil, call it and use
11903 its non-nil return value as window. Otherwise, continue doing
11904 vertical splitting using Fsplit_window with arg horflag=nil.
11905 (syms_of_window) <Vsplit_window_preferred_function>: Change the
11906 default value from `split-window' to nil.
11908 2008-03-29 Juri Linkov <juri@jurta.org>
11910 * callint.c (Fcall_interactively): Revert 2008-03-16 change
11911 for interactive code letters 'b' and 'B'.
11913 2008-03-29 Eli Zaretskii <eliz@gnu.org>
11915 * fileio.c (Fexpand_file_name): Convert the value of $HOME to a
11918 2008-03-29 Stefan Monnier <monnier@iro.umontreal.ca>
11920 * keyboard.c (pending_funcalls): New var.
11921 (timer_check): Run it.
11922 (syms_of_keyboard): Initialize it.
11923 * terminal.c (Qrun_hook_with_args, Qdelete_terminal_functions)
11924 (Vdelete_terminal_functions): New vars.
11925 (syms_of_terminal): Initialize them.
11926 (Fdelete_terminal): Run delete-terminal-functions.
11927 * xdisp.c (safe_eval): Rewrite.
11928 (safe_call2): New fun.
11929 * frame.c (Qdelete_frame_functions): New var.
11930 (syms_of_frame): Initialize it.
11931 (Fdelete_frame): Use it and use safe_call2 and pending_funcalls.
11932 * lisp.h (safe_call2, pending_funcalls): Declare.
11934 2008-03-28 Andreas Schwab <schwab@suse.de>
11936 * indent.c (Fmove_to_column): Move declaration before statements.
11938 2008-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
11940 * frame.h (enum fullscreen_type): Give it a name. Move it before use.
11941 (struct frame): Use bit fields for boolean vars.
11943 * process.c (server_accept_connection): Simplify naming.
11944 (emacs_get_tty_pgrp): Use SDATA.
11946 * coding.c (decode_coding_object): Fix last change.
11948 2008-03-27 Jason Rumney <jasonr@gnu.org>
11950 * w32fns.c (start_hourglass): Suppress hourglass on tty frames.
11952 2008-03-27 Kenichi Handa <handa@ni.aist.go.jp>
11954 * charset.c (Fdefine_charset_internal): Change the way of
11955 registering charsets in Vcharset_order_list.
11956 (syms_of_charset): Make the charset `eight-bit' supplementary.
11958 2008-03-26 Alexandre Oliva <aoliva@redhat.com> (tiny change)
11960 * regex.c (EXTEND_BUFFER): Change order of pointer addition
11961 operations, to avoid having the difference between pointers
11964 2008-03-26 Stefan Monnier <monnier@iro.umontreal.ca>
11966 * indent.c (check_display_width): New fun.
11967 (scan_for_column): Use it.
11969 * data.c (syms_of_data): Mark most-positive-fixnum and
11970 most-negative-fixnum as constants.
11972 * xdisp.c (redisplay_internal): Reset selected_frame earlier.
11974 * indent.c (scan_for_column): Extract from current_column_1.
11975 Merge with the same code from Fmove_to_column.
11976 (current_column_1, Fmove_to_column): Use it.
11978 2008-03-25 Stefan Monnier <monnier@iro.umontreal.ca>
11980 * keymap.c (map_keymap_internal): New fun.
11981 (map_keymap): Use it.
11982 (Fmap_keymap_internal): New fun.
11983 (Fmap_keymap): Remove left-out test from before make_save_value.
11985 * keymap.c (Fmap_keymap): Use `map-keymap-sorted.
11987 * frame.c (Fmodify_frame_parameters, x_set_frame_parameters):
11990 * process.h (struct Lisp_Process): Remove filter_multibyte.
11991 * process.c (QCfilter_multibyte): Remove.
11992 (setup_process_coding_systems): Don't use filter_multibyte.
11993 (Fstart_process, Fmake_network_process): Don't set filter_multibyte.
11994 (read_process_output): Don't adjust multibyteness to filter_multibyte.
11995 (Fset_process_filter_multibyte): Change the coding-system to
11996 approximate the previous behavior.
11997 (Fprocess_filter_multibyte_p): Get the multibyteness straight from the
12000 * coding.c (decode_coding_object): When not decoding into a buffer,
12001 obey the coding system's preference of (uni|multi)byte.
12003 2008-03-24 Stefan Monnier <monnier@iro.umontreal.ca>
12005 * casefiddle.c (casify_object): Avoid pathological N^2 worst case if
12006 every char is changed and has a different byte-length.
12007 (Fupcase_word, Fdowncase_word, Fcapitalize_word, operate_on_word):
12008 Fix int -> EMACS_INT.
12010 2008-03-23 David Hansen <david.hansen@gmx.net>
12012 * dbusbind.c (xd_read_message): Remove extra copying of message
12013 strings. Check for NULL `interface' or `member'.
12015 2008-03-22 Eli Zaretskii <eliz@gnu.org>
12017 * w32.c (readdir): If FindFirstFile/FindNextFile return in
12018 cFileName a file name that includes `?' characters, use the 8+3
12019 alias in cAlternateFileName instead.
12021 2008-03-21 Stefan Monnier <monnier@iro.umontreal.ca>
12023 * buffer.c (enlarge_buffer_text): Fix int -> EMACS_INT.
12025 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12027 * intervals.c (temp_set_point, temp_set_point_both): Use EMACS_INT.
12028 (set_point, set_point_both): Use EMACS_INT. Remove `buffer' arg,
12029 work on current_buffer only instead (that was already the case
12030 for some of the code anyway).
12031 * buffer.h (set_point, set_point_both): Remove buffer arg, use long int.
12032 (temp_set_point, temp_set_point_both): Use EMACS_INT.
12033 (SET_PT, SET_PT_BOTH): Adjust.
12034 * intervals.h (set_point, temp_set_point, set_point_both)
12035 (temp_set_point_both): Remove redundant declarations.
12037 2008-03-20 Stefan Monnier <monnier@iro.umontreal.ca>
12039 * fileio.c (Finsert_file_contents):
12040 * lread.c (Feval_buffer): Use BUF_TEMP_SET_PT.
12041 * buffer.h (BUF_SET_PT): Remove. set_point_both doesn't work right
12042 when buffer != current_buffer anyway.
12044 2008-03-20 Andreas Schwab <schwab@suse.de>
12046 * callint.c (Fcall_interactively) [case 'B']: Use other-buffer
12049 2008-03-19 Jason Rumney <jasonr@gnu.org>
12051 * w32fns.c (hourglass_timer, hourglass_hwnd): New variables.
12052 (syms_of_w32fns): Initialize them.
12053 (HOURGLASS_ID): New constant.
12054 (x_window_to_frame): Don't check hourglass_window.
12055 (w32_wnd_proc) <WM_TIMER>: Handle hourglass_timer.
12056 (w32_wnd_proc) <WM_EXITMENULOOP>: Set pending hourglass cursor.
12057 (w32_wnd_proc) <WM_SETCURSOR>: Set the hourglass or current cursor.
12058 (w32_wnd_proc) <WM_EMACS_SETCURSOR>: Set frame's current_cursor.
12059 Only change the cursor if hourglass is not active.
12060 (Fx_create_frame): Initialize frame's current_cursor.
12061 (hourglass_atimer): Remove.
12062 (hourglass_started): New function.
12063 (start_hourglass, cancel_hourglass, hide_hourglass): Adapt to w32.
12064 (show_hourglass): Adapt to w32, changing argument to frame.
12066 * w32term.h (struct w32_output): Remove hourglass_window.
12067 Add current_cursor.
12069 * eval.c (call_debugger, Fsignal):
12070 * keyboard.c (recursive_edit_1, cmd_error, Ftop_level)
12071 (command_loop_1, Fread_key_sequence, Fread_key_sequence_vector)
12072 (Fexecute_extended_command, cancel_hourglass_unwind):
12073 * minibuf.c (read_minibuf):
12074 * fns.c (Fy_or_n_p): Enable hourglass when HAVE_WINDOW_SYSTEM.
12076 2008-03-19 Stefan Monnier <monnier@iro.umontreal.ca>
12078 * window.c (run_funs): New fun.
12079 (run_window_configuration_change_hook): Use it to run the buffer-local
12080 and the global part of the hook.
12082 * xdisp.c (format_mode_line_unwind_data): Add window argument.
12083 (unwind_format_mode_line): Restore selected window.
12084 (x_consider_frame_title, Fformat_mode_line): Set selected window.
12086 2008-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
12088 * editfns.c (Fchar_equal): Check they are valid characters.
12090 * buffer.h (Fbuffer_list): Declare (for use in callint.c).
12092 2008-03-17 Andreas Schwab <schwab@suse.de>
12094 * regex.c (re_match_2_internal): Properly match raw 8-bit bytes
12097 * lisp.h (Fbuffer_list): Declare.
12099 2008-03-17 Jan Djärv <jan.h.d@swipnet.se>
12101 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
12102 handlebox_widget is != 0.
12104 2008-03-16 Juri Linkov <juri@jurta.org>
12106 * callint.c (Fcall_interactively): For interactive code letters
12107 'b' and 'B' put the buffer list into the list of default "future"
12108 values of the minibuffer.
12110 2008-03-16 Andreas Schwab <schwab@suse.de>
12112 * keyboard.c (read_key_sequence): Fix downcasing of letters with
12115 * regex.c (re_match_2_internal): Correct matching of a charset
12116 against latin-1 characters.
12118 2008-03-16 Kenichi Handa <handa@m17n.org>
12120 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY)
12121 (STRING_CHAR_ADVANCE_NO_UNIFY): New macros.
12122 (coding_alloc_by_making_gap): Fix the way to preserve data in the gap.
12123 (alloc_destination): Fix the 2nd arg to coding_alloc_by_making_gap.
12124 (encode_coding_utf_8): Use CHAR_STRING_ADVANCE_NO_UNIFY instead of
12125 CHAR_STRING_ADVANCE.
12126 (produce_chars): Fix for the case that the source and the
12127 destination are the same buffer. Use CHAR_STRING_ADVANCE_NO_UNIFY
12128 instead of CHAR_STRING_ADVANCE.
12129 (consume_chars): Use STRING_CHAR_ADVANCE_NO_UNIFY instead of
12130 STRING_CHAR_ADVANCE.
12132 2008-03-15 Andreas Schwab <schwab@suse.de>
12134 * regex.c (re_match_2_internal): Correct matching of eight bit
12135 characters in unibyte strings.
12137 2008-03-15 Martin Rudalics <rudalics@gmx.at>
12139 * buffer.c (overlays_in, Foverlays_in): Include empty overlays
12140 at end of range when it coincides with the end of the buffer.
12142 2008-03-14 Eli Zaretskii <eliz@gnu.org>
12144 * dired.c (Ffile_attributes) [WINDOWSNT]: Force inode be positive.
12146 * w32fns.c (globals_of_w32fns, Fx_create_frame): Fix last change.
12148 2008-03-14 Jason Rumney <jasonr@gnu.org>
12150 * editfns.c (initial_tz): New variable.
12151 (syms_of_editfns): Initialize it.
12152 (Fset_time_zone_rule): Set it when first called.
12153 Use it when TZSTRING is nil.
12155 * w32fns.c (MONITOR_DEFAULT_TO_NEAREST, struct MONITOR_INFO)
12156 (MonitorFromPoint_Proc, GetMonitorInfo_Proc): New definitions.
12157 (monitor_from_point_fn, get_monitor_info_fn): New globals.
12158 (globals_of_w32fns): Initialize them.
12159 (compute_tip_xy): Use them to position tooltips.
12161 2008-03-14 Glenn Morris <rgm@gnu.org>
12163 * emacs.c (main): Revert previous change.
12164 (standard_args): Revert -internal-script back to -scriptload,
12165 and remove the long-option form.
12167 2008-03-13 Glenn Morris <rgm@gnu.org>
12169 * emacs.c (main, standard_args): Rename -scriptload to -internal-script.
12170 Remove option -enable-font-backend.
12172 2008-03-12 Stefan Monnier <monnier@iro.umontreal.ca>
12174 * buffer.c (Fswitch_to_buffer): Fall back on pop-to-buffer.
12176 2008-03-11 Jan Djärv <jan.h.d@swipnet.se>
12178 * xterm.c (x_connection_closed): For GTK: If this is the last
12179 terminal just exit without closing the display.
12181 2008-03-11 Jason Rumney <jasonr@gnu.org>
12183 * w32font.c (w32font_full_name): Use floor to round.
12185 2008-03-10 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
12187 * sound.c (alsa_configure): Declare vol at beginning of block.
12189 * fontset.c (Ffontset_info): Remove extra semicolon.
12191 2008-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
12193 * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
12194 size of resulting string.
12196 2008-03-10 Jason Rumney <jasonr@gnu.org>
12198 * dispnew.c (adjust_glyph_matrix): Initialize window_height.
12200 2008-03-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12202 * xdisp.c (handle_single_display_spec): Undo 2007-10-16 changes.
12203 Don't pretend as if characters with display property haven't been
12204 consumed for string-replacing-string case.
12206 2008-03-08 Kim F. Storm <storm@cua.dk>
12208 * xdisp.c (GET_NEXT_DISPLAY_ELEMENT): New macro.
12209 (get_next_display_element, next_element_from_string)
12210 (next_element_from_ellipsis, next_element_from_buffer): Use it.
12212 2008-03-08 Andreas Schwab <schwab@suse.de>
12214 * process.h (struct Lisp_Process): Declare bit fields as unsigned.
12216 2008-03-06 Jason Rumney <jasonr@gnu.org>
12218 * w32font.c (w32_registry): Take font_type argument. Use ANSI
12219 when charset not specified. Only translate ANSI to unicode when
12220 font_type is truetype.
12221 (w32font_coverage_ok): New function.
12222 (add_font_entity_to_list): Use it to filter unsuitable fonts.
12224 2008-03-05 Kenichi Handa <handa@ni.aist.go.jp>
12226 * lread.c (Fread_char): Resolve modifiers.
12227 (Fread_char_exclusive): Likewise.
12229 * character.c (char_resolve_modifier_mask): New function.
12230 (char_string): Use char_resolve_modifier_mask.
12231 (Fchar_resolve_modifiers): New function.
12232 (syms_of_character): Declare Fchar_resolve_modifiers as Lisp
12235 2008-03-04 Jason Rumney <jasonr@gnu.org>
12237 * makefile.w32-in: Always include w32font.c in the build.
12238 * w32font.c: Wrap in USE_FONT_BACKEND conditional.
12240 2008-03-04 Andreas Schwab <schwab@suse.de>
12242 * Makefile.in (clean): Remove emacs-*.*.* instead of emacs-*.
12243 (versionclean): Likewise.
12245 2008-03-04 Juanma Barranquero <lekktu@gmail.com>
12247 * .cvsignore: Add oo.
12249 2008-03-03 Andreas Schwab <schwab@suse.de>
12251 * coding.c (decode_coding_object): Inhibit gap shrinking while
12254 2008-03-03 Dan Nicolaescu <dann@ics.uci.edu>
12256 * w32term.c: Remove unused include "gnu.h".
12257 * makefile.w32-in (w32term.o): Don't depend on gnu.h.
12259 * gnu.h: Rename to ...
12260 * emacs-icon.h: ... this.
12261 * xterm.c: Use emacs-icon.h instead of gnu.h.
12262 * Makefile (xterm.o): Depend on emacs-icon.h, not gnu.h.
12264 2008-03-03 Juanma Barranquero <lekktu@gmail.com>
12266 * w32font.c: Include math.h.
12268 2008-03-03 Jason Rumney <jasonr@gnu.org>
12270 * w32font.c (recompute_cached_metrics): Change font arg to w32font_info.
12271 Compute options separately.
12272 (w32font_open_internal): Set glyph_idx before caching metrics.
12274 * w32font.h (NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, NTM_TYPE1):
12275 Define if system headers don't.
12276 (struct w32font_info): Enlarge ascii_metrics. Add glyph_idx.
12277 (w32font_encode_char): Don't declare here.
12279 * w32font.c (Quniscribe, QCformat): New symbols.
12280 (syms_of_w32font): Define them.
12281 (w32font_has_char): Indicate uncertainty.
12282 (w32font_encode_char): Encode as glyph point. Make static.
12283 (recompute_cached_metrics): New function.
12284 (w32font_open_internal): Use it. Set font to use glyph points
12285 initially. Set format based on type of font.
12286 (w32font_text_extents, w32font_draw): Optionally use glyph points.
12287 (w32_enumfont_pattern_entity): Accept backend arg. Set type based
12288 on it. Set format based on information available here.
12289 (add_font_entity_to_list): Identify backend based on opentype_only.
12291 2008-03-02 Andreas Schwab <schwab@suse.de>
12293 * ftfont.c (ftfont_pattern_entity): Fix aliasing violations.
12295 * coding.c (decode_coding_big5, produce_chars):
12296 Fix typos in last change.
12298 2008-03-02 Kentaro Ohkouchi <nanasess@fsm.ne.jp>
12302 2008-03-02 Kenichi Handa <handa@m17n.org>
12304 * coding.c (decode_coding_utf_8): When eol-type of CODING is
12305 `dos', don't decode '\r' if that is the last in the source.
12306 (decode_coding_utf_16, decode_coding_emacs_mule)
12307 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
12308 (decode_coding_raw_text, decode_coding_charset): Likewise.
12309 (produce_chars): Don't decode EOL here. Use EMACS_INT.
12311 2008-03-01 Jason Rumney <jasonr@gnu.org>
12313 * w32font.c (w32font_full_name): Report point size for scalable fonts.
12315 2008-03-01 Kim F. Storm <storm@cua.dk>
12317 * dispextern.h (CHAR_GLYPH_SPACE_P): Check for default face.
12319 2008-03-01 Jason Rumney <jasonr@gnu.org>
12321 * w32font.c (w32font_full_name): New function.
12322 (w32font_open_internal): Use it.
12324 2008-03-01 Kim F. Storm <storm@cua.dk>
12326 * dispnew.c (line_draw_cost): Fix invalid glyph check.
12328 2008-03-01 Jason Rumney <jasonr@gnu.org>
12330 * font.c (font_unparse_fcname): Increase len when style is a symbol.
12332 2008-03-01 Jan Djärv <jan.h.d@swipnet.se>
12334 * xterm.c (handle_one_xevent): For Gtk+ and ConfigureNotify, call
12335 xg_frame_resized when the event is for the edit widget.
12337 * gtkutil.h (xg_frame_resized): Renamed from xg_resize_widgets.
12339 * gtkutil.c (xg_resize_outer_widget): Only do one of set_geometry or
12341 (xg_frame_resized): Renamed from xg_resize_widgets. Remove all
12342 operations on widgets here. Just set frame size if needed.
12343 (flush_and_sync, x_wm_size_hint_off, xg_pack_tool_bar): New functions.
12344 (xg_frame_set_char_size): Call x_wm_size_hint_off before resizing.
12345 (x_wm_set_size_hint): Set size hints on the edit widget only, not
12347 (xg_create_tool_bar): Move attachment of the tool bar to
12348 xg_pack_tool_bar. Do not attach the tool bar if there are no items.
12349 (free_frame_tool_bar): Remove call to SET_FRAME_GARBAGED.
12351 2008-03-01 Jason Rumney <jasonr@gnu.org>
12353 * w32fns.c (w32_msg_pump): Disable debug code.
12355 2008-03-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12357 * m/intel386.h [MAC_OSX || DARWIN]: Define NO_ARG_ARRAY if _LP64.
12359 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
12361 * xdisp.c (next_overlay_string): Don't set
12362 overlay_strings_at_end_processed_p if we're currently reading from
12365 2008-02-29 Stefan Monnier <monnier@iro.umontreal.ca>
12367 * xdisp.c (get_overlay_strings_1): Fix typo.
12369 2008-02-29 Chong Yidong <cyd@stupidchicken.com>
12371 * xdisp.c (get_overlay_strings_1): Add missing argument type.
12373 2008-02-28 Kenichi Handa <handa@ni.aist.go.jp>
12375 * ftfont.c (ftfont_match): Explicitly set pixelsize in pattern.
12377 * xdisp.c (display_mode_element): Cancel the previous change.
12378 (decode_mode_spec): Likewise.
12379 (handle_auto_composed_prop): Don't make composition if it->string
12382 2008-02-27 Kim F. Storm <storm@cua.dk>
12384 * lisp.h (GLYPH): Change type from int to struct with separate char
12385 and face_id members.
12386 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Delete macros.
12387 (GLYPH_CHAR, GLYPH_FACE): Remove slow versions with frame arg.
12388 (FAST_GLYPH_CHAR, FAST_GLYPH_FACE): Rename macros to ...
12389 (GLYPH_CHAR, GLYPH_FACE): ... these. Change users.
12390 (FAST_MAKE_GLYPH, MAKE_GLYPH): Remove. Rewrite users to use ...
12391 (SET_GLYPH, SET_GLYPH_CHAR, SET_GLYPH_FACE): ... these macros instead.
12392 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE, GLYPH_CODE_P)
12393 (GLYPH_CODE_CHAR_VALID_P, SET_GLYPH_FROM_GLYPH_CODE): New macros to
12394 handle new Lisp glyph code encoding, either an integer or a cons.
12396 * disptab.h (GLYPH_SIMPLE_P): Rewrite.
12397 (GLYPH_ALIAS): Delete.
12398 (GLYPH_ALIAS_P, GLYPH_FOLLOW_ALIASES): Rewrite.
12399 (GLYPH_LENGTH, GLYPH_STRING): Use GLYPH_CHAR.
12400 (GLYPH_FROM_CHAR): Replace macro by ...
12401 (SET_GLYPH_FROM_CHAR): ... this macro. Change users.
12403 * dispextern.h (CHAR_GLYPH_SPACE_P): Simplify.
12404 (GLYPH_FROM_CHAR_GLYPH): Replace macro by ...
12405 (SET_GLYPH_FROM_CHAR_GLYPH): ... this macro. Change users.
12406 (GLYPH_INVALID_P): New macro.
12407 (spec_glyph_lookup_face): Update prototype.
12409 * dispnew.c (line_draw_cost): Adapt to new glyph type.
12410 (build_frame_matrix_from_leaf_window): Adapt to new glyph type and
12411 new glyph code encoding.
12412 (spec_glyph_lookup_face): No return value; update passed glyph instead.
12413 (init_display): Use SET_CHAR_GLYPH to initialize space_glyph.
12415 * xdisp.c (get_next_display_element, next_element_from_display_vector):
12416 Adapt to new glyph type and new glyph code encoding.
12418 * term.c (encode_terminal_code, produce_special_glyphs): Likewise.
12420 * indent.c (current_column, current_column_1, Fmove_to_column)
12421 (compute_motion): Adapt to new glyph code encoding.
12423 * msdos.c (IT_write_glyphs): Adapt to new glyph type.
12425 2008-02-27 Chong Yidong <cyd@stupidchicken.com>
12427 * process.c (wait_reading_process_output): Check for window
12428 changes caused by timers.
12429 Suggested by Johan Bockgård.
12431 2008-02-27 Glenn Morris <rgm@gnu.org>
12433 * emacs.c (USAGE1): Add `--disable-font-backend'.
12435 2008-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
12437 * fileio.c (Finsert_file_contents): Don't reset undo_list if no change
12438 is made to the buffer.
12440 2008-02-26 Stefan Monnier <monnier@iro.umontreal.ca>
12442 * dispextern.h (face_at_buffer_position, face_for_overlay_string)
12443 (face_at_string_position):
12444 * xfaces.c (face_at_buffer_position, face_for_overlay_string)
12445 (face_at_string_position):
12446 * xdisp.c (display_string, next_overlay_change):
12447 * buffer.h (overlays_at):
12448 * buffer.c (overlays_at): Use EMACS_INT for buffer positions.
12451 2008-02-26 Chong Yidong <cyd@stupidchicken.com>
12453 * editfns.c (Fformat): Doc fix.
12455 2008-02-26 Juanma Barranquero <lekktu@gmail.com>
12457 * font.c (Ffont_spec, Ffont_at): Fix typos in docstrings.
12458 (Ffont_put, Flist_families, Ffont_fill_gstring, Ffont_drive_otf)
12459 (Ffont_otf_alternates, Fquery_font): Doc fixes.
12461 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
12463 * buffer.c (Fbuffer_swap_text): New function.
12464 (syms_of_buffer): Defsubr it.
12466 2008-02-25 Chong Yidong <cyd@stupidchicken.com>
12468 * keyboard.c (command_loop_1): Revert 2006-10-09 change.
12470 2008-02-25 Jason Rumney <jasonr@gnu.org>
12472 * w32font.c (w32font_draw): Draw one character at a time when padding.
12474 2008-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
12476 * window.c (Fdelete_window, Fadjust_window_trailing_edge):
12477 Handle a nil arg. Use run_window_configuration_change_hook.
12478 (delete_window, adjust_window_trailing_edge): Don't handle nil any more.
12479 (Fenlarge_window, Fshrink_window, Fset_window_configuration):
12480 Use run_window_configuration_change_hook.
12482 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
12484 * xdisp.c (x_produce_glyphs): For a visible glyph, assure at least
12487 2008-02-25 Kenichi Handa <handa@ni.aist.go.jp>
12489 * xdisp.c (fill_glyph_string): Pay attention to glyph->padding_p.
12490 (append_glyph): Set glyph->pixel_width and glyph->padding_p to 1
12491 if the glyph in the font is zero pixel with.
12493 * dispextern.h (struct glyph_string): New member padding_p.
12495 * w32font.c (w32font_draw): Pay attention to s->padding_p.
12497 * ftxfont.c (ftxfont_draw): Pay attention to s->padding_p.
12499 * xfont.c (xfont_draw): Pay attention to s->padding_p.
12501 * xftfont.c (xftfont_draw): Pay attention to s->padding_p.
12503 * font.c: If the font driver doesn't have `shape' function, return Qnil.
12505 2008-02-25 Jason Rumney <jasonr@gnu.org>
12507 * w32fns.c (enum_font_cb2): Don't use raster fonts for Unicode.
12509 2008-02-24 Stefan Monnier <monnier@iro.umontreal.ca>
12511 Allow fine-grained image-cache flushing.
12512 * dispextern.h (struct image): Add `dependencies' field.
12513 (clear_image_caches): Change arg to Lisp_Object.
12514 * image.c (make_image): Initialize `dependencies' field.
12515 (clear_image_cache): Change arg to allow fine-grained flushing.
12516 Perform the flush even if image-cache-eviction-delay is nil.
12517 (clear_image_caches): Change arg to Lisp_Object.
12518 (Fclear_image_cache): Expand meaning of the argument.
12519 (mark_image): Mark `dependencies' field.
12520 * xfaces.c (clear_face_cache): Adapt arg to call to clear_image_caches.
12521 (lface_hash): Use XHASH rather than XFASTINT.
12522 (face_at_buffer_position): Fix int -> EMACS_INT position.
12523 * xdisp.c (next_overlay_change): Fix int -> EMACS_INT position.
12524 (select_frame_for_redisplay): Remove code duplication.
12525 (redisplay_internal): Adapt arg to call to clear_image_caches.
12527 2008-02-24 Dan Nicolaescu <dann@ics.uci.edu>
12532 * s/vms5-5.h: Remove, unused.
12538 * m/mips4.h: Remove files for obsolete systems.
12551 * s/usg5-3.h: Remove references to obsolete variables.
12553 * s/irix5-0.h: Remove, move all the contents ...
12554 * s/irix6-5.h: ... here. Simplify.
12555 * config.in: Regenerate.
12557 2008-02-24 Jason Rumney <jasonr@gnu.org>
12559 * w32term.c (x_draw_glyph_string_background): Clear the background
12560 manually when cleartype is in use.
12561 (x_draw_glyph_string_foreground): Draw text transparently when
12562 cleartype is in use.
12564 * w32font.c (w32font_text_extents): Avoid getting HDC and selecting
12565 a font into it unless we have to.
12567 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
12569 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
12570 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
12572 2008-02-18 Jason Rumney <jasonr@gnu.org>
12574 * w32fns.c (Fw32_shell_execute): Encode parameters.
12576 2008-02-09 Eli Zaretskii <eliz@gnu.org>
12578 * fileio.c (syms_of_fileio) <insert-default-directory>: Doc fix.
12580 2008-02-05 Juanma Barranquero <lekktu@gmail.com>
12582 * unexhp9k800.c (read_header): Replace `legal' with `valid'.
12584 2008-02-24 Ulrich Neumerkel <ulrich@complang.tuwien.ac.at> (tiny change)
12586 * xterm.c (x_set_offset): Don't change the gravity if
12587 CHANGE_GRAVITY is -1.
12589 2008-02-23 Chong Yidong <cyd@stupidchicken.com>
12591 * fileio.c (auto_save_error_occurred): New var.
12592 (auto_save_error): Set it.
12593 (Fdo_auto_save): Don't overwrite the error message if an auto-save
12596 2008-02-23 Eli Zaretskii <eliz@gnu.org>
12598 * w32.c (globals_of_w32): Add initializations for
12599 g_b_init_get_sid_sub_authority and
12600 g_b_init_get_sid_sub_authority_count.
12602 2008-02-22 Stefan Monnier <monnier@iro.umontreal.ca>
12604 * font.c (font_match_xlfd, font_check_xlfd_parse): New funs.
12605 (font_parse_xlfd): Use them for sanity check.
12606 (Finternal_set_font_style_table): Make sure the table is bijective.
12608 Consolidate the image_cache to the terminal struct.
12609 * termhooks.h (P_): Remove redundant def.
12610 (struct terminal): New field `image_cache'.
12611 * frame.h (FRAME_IMAGE_CACHE): New macro. Use it everywhere in place
12612 of FRAME_X_IMAGE_CACHE.
12613 * xterm.h (struct x_display_info): Remove image_cache field.
12614 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
12615 * w32term.h (struct w32_display_info): Remove image_cache field.
12616 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
12617 * macterm.h (struct mac_display_info): Remove image_cache field.
12618 (FRAME_X_IMAGE_CACHE): Remove. Use FRAME_IMAGE_CACHE instead.
12619 * xterm.c (x_term_init):
12620 * w32term.c (w32_term_init):
12621 * macterm.c (mac_term_init): Set the image_cache in the terminal.
12622 * dispextern.h (clear_image_cache, forall_images_in_image_cache):
12623 Remove declarations.
12624 (clear_image_caches, mark_image_cache): New declarations.
12625 * xfaces.c (clear_face_cache):
12626 * xdisp.c (redisplay_internal): Use clear_image_caches.
12627 * image.c (clear_image_cache): Don't check that a frame is on
12628 a window-system before checking if it shares the same cache.
12629 (clear_image_caches): New function.
12630 (Fclear_image_cache): Use it.
12631 (mark_image): Move from allo.c.
12632 (mark_image_cache): Move from alloc.c and forall_images_in_image_cache.
12633 * alloc.c (mark_image, mark_image_cache): Move to image.c.
12634 (mark_object): Don't call mark_image_cache for frames.
12635 (mark_terminals): Call mark_image_cache.
12637 * lisp.h (Fdelete_terminal): Declare.
12639 * charset.h (CHECK_CHARSET, CHECK_CHARSET_GET_ID)
12640 (CHECK_CHARSET_GET_ATTR): Don't use the inexistent return value of
12641 wrong_type_argument.
12643 2008-02-22 Kenichi Handa <handa@ni.aist.go.jp>
12645 * Makefile.in (lisp): Remove devanagari.el, kannada.el,
12646 malayalam.el, and tamil.el. Add sinhala.el.
12648 2008-02-21 Stefan Monnier <monnier@iro.umontreal.ca>
12650 * xterm.c (x_connection_closed): Consolidate identical tests.
12651 (x_delete_terminal): Don't crash if called via x_connection_closed.
12653 2008-02-21 Kenichi Handa <handa@ni.aist.go.jp>
12655 * xdisp.c (decode_mode_spec): New arg string.
12656 (display_mode_element): Adjust for the above change.
12658 2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
12660 * callint.c (Fcall_interactively): Use AREF.
12662 2008-02-18 Stefan Monnier <monnier@iro.umontreal.ca>
12664 * font.c (font_unparse_xlfd): Don't ignore integer pixel size specs.
12666 2008-02-18 Jan Djärv <jan.h.d@swipnet.se>
12668 * xfns.c (Fx_show_tip): Set string to " " if empty.
12670 2008-02-17 Dan Nicolaescu <dann@ics.uci.edu>
12672 * callint.c (syms_of_callint): Initialize Vmark_even_if_inactive
12675 2008-02-17 Kenichi Handa <handa@m17n.org>
12677 * ftfont.c (ftfont_shape): Return Lispy number.
12679 * xfaces.c (prepare_face_for_display): Use display_info->font->fid
12681 (Finternal_set_font_selection_order): Call font_update_sort_order
12682 only when enable_font_backend is set.
12683 (realize_x_face): Set face->font_info to that of default face only
12684 when enable_font_backend is set.
12686 * xdisp.c (handle_composition_prop): Set it->c to the fist
12687 character of the composed region.
12688 (fill_composite_glyph_string): Set base_face->font_info to
12689 s->font_info. Get a face for ascii from base_face->ascii_face.
12690 (BUILD_COMPOSITE_GLYPH_STRING): Call fill_composite_glyph_string
12691 with a face already decided.
12692 (x_produce_glyphs): Be sure to set it->ascent and it->descent to
12694 (x_produce_glyphs): If the composition method is ..._WITH_GLYPH_STRING,
12695 call font_prepare_composition unconditionally.
12697 * xfns.c (x_make_gc): Use the default font id of the frame for GCs.
12699 * xterm.h (struct x_display_info): New member font.
12701 * xterm.c (x_set_cursor_gc): Use display_info->font->fid for GCs.
12702 (x_set_mouse_face_gc, x_new_font): Likewise.
12703 (x_term_init): Setup display_info->font.
12704 (x_delete_terminal): Free display_info->font.
12706 * xfont.c (xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
12708 * ftxfont.c (ftxfont_default_fid): Delete it.
12709 (ftxfont_open): Set xfont->fid to 0.
12710 (ftxfont_end_for_frame): Clear data specific to the frame and the
12713 * xftfont.c (xftfont_default_fid): Delete it.
12714 (xftfont_open): Set xfont->fid to 0.
12716 * fontset.c (FONTSET_OBJLIST): New macro.
12717 (fontset_find_font): Update font-object list of the fontset.
12718 (free_realized_fontset): New function.
12719 (free_face_fontset): Call free_realized_fontset.
12720 (Ffont_info): Call font_close_object only when enable_font_backend
12723 * font.c [HAVE_X_WINDOWS]: Include xterm.h.
12724 [HAVE_NTGUI]: Include w32term.h.
12725 [MAC_OS]: Include macterm.ch.
12726 (font_otf_ValueRecord): Use make_number.
12727 (font_finish_cache): Fix handling of reference count.
12728 (font_clear_cache): Update num_fonts.
12729 (font_open_entity): Update smallest_char_width and
12730 smallest_font_height of the frame.
12731 (font_close_object): Update num_fonts.
12732 (Fclear_font_cache): Fix finding the target cache data.
12734 2008-02-16 Glenn Morris <rgm@gnu.org>
12736 * fontset.c (Finternal_char_font): Fix compilation warning.
12738 2008-02-16 Eli Zaretskii <eliz@gnu.org>
12740 * w32.c (init_user_info): Use TOKEN_USER and TOKEN_PRIMARY_GROUP
12741 instead of char arrays. Enlarge the size of array passed to
12742 get_token_information.
12744 * font.c (Ffont_fill_gstring, Fget_font_glyphs): Fix compilation
12747 2008-02-15 Dan Nicolaescu <dann@ics.uci.edu>
12749 * .gdbinit: Don't set `args', it breaks gdb --args.
12751 2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
12753 * fileio.c (Finsert_file_contents): Adjust offsets when replacing
12754 within a narrowed buffer.
12756 2008-02-14 Kenichi Handa <handa@ni.aist.go.jp>
12758 * coding.c (decode_coding_object, encode_coding_object):
12759 Preserve Vdeactivate_mark. Delete unnecessary call of Fcurrent_buffer.
12761 2008-02-12 Stefan Monnier <monnier@iro.umontreal.ca>
12763 * coding.c (coding_set_destination): Use BEG_BYTE rather than
12765 (detect_coding_system):
12766 * lisp.h (detect_coding_system, chars_in_text, multibyte_chars_in_text)
12767 (string_char_to_byte, string_byte_to_char, insert_from_gap):
12768 * insdel.c (insert_from_gap):
12769 * fns.c (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
12770 (string_char_to_byte, string_byte_to_char, string_make_multibyte)
12771 (string_to_multibyte):
12772 * character.c (chars_in_text, multibyte_chars_in_text):
12773 * fileio.c (Finsert_file_contents): Use EMACS_INT for buffer positions.
12775 * character.h (FETCH_STRING_CHAR_ADVANCE)
12776 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE)
12777 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA and SREF.
12778 (DEC_POS, BUF_DEC_POS): Use BEG_BYTE rather than hardcoding 1.
12780 * casefiddle.c (casify_region): Only call after-change and composition
12781 functions on the part of the region that was changed.
12783 * keyboard.c (read_avail_input):
12784 * frame.c (Fdelete_frame): Call Fdelete_terminal.
12786 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12788 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
12789 (Fbuffer_local_value, Fbuffer_local_variables): Don't forget undo_list.
12791 2008-02-11 Juanma Barranquero <lekktu@gmail.com>
12793 * w32menu.c (push_submenu_start, push_submenu_end)
12794 (push_left_right_boundary, push_menu_pane, push_menu_item):
12795 * keyboard.c (read_key_sequence): Don't pass args with side effects
12796 to AREF, it fails when compiling with -DENABLE_CHECKING.
12798 2008-02-11 Kenichi Handa <handa@ni.aist.go.jp>
12800 * Makefile.in (${lispsource}international/charprop.el):
12801 Delete this target.
12803 * search.c (boyer_moore): Fix incorrect synching of the trunk and
12806 2008-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
12808 * terminal.c (Fdelete_terminal): Clean up the `force' path.
12810 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
12812 * frame.c (Qnoelisp): New symbol.
12813 (syms_of_frame): Initialize it.
12814 (Fdelete_frame): Use it to distinguish a mere `force' passed from some
12815 harmless Elisp code, from a strong `force' from x_connection_closed.
12816 * frame.h (Qnoelisp): Declare.
12817 * xterm.c (x_connection_closed): Pass `noelisp'.
12819 * lisp.h (struct Lisp_Misc_Any, struct Lisp_Marker)
12820 (struct Lisp_Overlay, struct Lisp_Kboard_Objfwd)
12821 (struct Lisp_Save_Value, struct Lisp_Free): Use enum Lisp_Misc_Type
12822 rather than `int' for the type of `type'.
12824 2008-02-10 Dan Nicolaescu <dann@ics.uci.edu>
12826 * s/gnu-linux.h: Remove support for non-ELF and linux-1.x.
12828 * Makefile.in (GNUC): Remove support for gcc-1.x.
12830 2008-02-10 Richard Stallman <rms@gnu.org>
12832 * lisp.h (ASET): Use AREF, not ASLOT.
12834 2008-02-10 Stefan Monnier <monnier@iro.umontreal.ca>
12836 * lisp.h (ASET): Check bounds.
12838 2008-02-10 Glenn Morris <rgm@gnu.org>
12840 * buffer.c (mode-name): Doc fix.
12842 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
12859 * xterm.c: Remove code that deals with obsolete variables.
12861 * s/msdos.h (DONT_NEED_ENVIRON): Don't define.
12863 * ecrt0.c: Replace the DONT_NEED_ENVIRON test with MSDOS test,
12864 nothing else needs it anymore.
12866 2008-02-09 Eli Zaretskii <eliz@gnu.org>
12868 * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use unibyte_to_multibyte_table
12869 instead of unibyte_char_to_multibyte.
12871 2008-02-09 Dan Nicolaescu <dann@ics.uci.edu>
12873 * s/gnu-linux.h: Remove commented out code.
12875 * unexec.c: Remove references to obsolete variable COFF_ENCAPSULATE.
12877 * Makefile.in: Update what RMS says about using autoconf.
12878 (C_COMPILER, COFF_ENCAPSULATE, MAKE_PARALLEL): Remove obsolete variable.
12879 (C_SWITCH_MACHINE_1, C_SWITCH_SYSTEM_1, C_SWITCH_SITE_1)
12880 (C_SWITCH_X_SITE_1, C_SWITCH_X_MACHINE_1)
12881 (C_SWITCH_X_SYSTEM_1): Move invariant code outside conditional.
12883 2008-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
12885 * keymap.c (Fkey_description): Move side effect outside of macro call.
12887 * xfaces.c (Finternal_make_lisp_face):
12888 * keyboard.c (add_command_key, parse_menu_item): Use ASET.
12890 * fontset.c (free_face_fontset): Use FONTSET_FROM_ID.
12891 (syms_of_fontset): Use ASET.
12893 * fns.c (concat): Move side effect outside of macro call.
12894 (hash_clear): Use ASET.
12896 2008-02-08 Richard Stallman <rms@gnu.org>
12898 * frame.c (Fdelete_frame): If FORCE, don't call hooks.
12899 If FORCE, and frame has a surrogate minibuffer for another frame,
12900 delete the other frame first.
12902 2008-02-07 Timo Savola <timo.savola@iki.fi>
12904 * xterm.c (x_detect_focus_change): Handle embed client message.
12905 (handle_one_xevent): Ditto.
12906 (handle_one_xevent): If embedded and we get a button press/release,
12908 (xembed_set_info, xembed_send_message): New functions.
12909 (x_make_frame_visible): Call xembed_set_info if embedded.
12910 (x_make_frame_invisible): Call xembed_set_info if embedded.
12911 (x_term_init): Initialize Xatom_XEMBED.
12912 (x_make_frame_visible): Check for FRAME_X_EMBEDDED_P also.
12913 (x_iconify_frame): Ditto.
12915 * xterm.h (struct x_display_info): Add AtomXatom_XEMBED.
12916 (enum xembed_info, enum xembed_message, enum xembed_focus)
12917 (enum xembed_modifier, enum xembed_accelerator): New.
12918 (xembed_set_info, xembed_send_message): Declare.
12919 (FRAME_X_EMBEDDED_P): New.
12921 * gtkutil.c (xg_create_frame_widgets): If frame is embedded, call
12924 * xfns.c (Fx_create_frame): Do not override the explicitly set parent
12925 window ID of a frame.
12926 (x_window): Reparent frame if embedded.
12927 (Fx_create_frame): Don't set border width if embedded.
12929 * emacs.c (USAGE3): Add --parent-id.
12930 (standard_args): Ditto.
12932 2008-02-07 Jan Djärv <jan.h.d@swipnet.se>
12934 * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): Use "do...while (0)".
12936 2008-02-07 Jim Meyering <meyering@redhat.com>
12938 Use "do...while (0)", not "if (1)...else" in macro definitions.
12939 The latter provokes a warning from gcc about the empty else, when
12940 followed by ";". Also, without that trailing semicolon, it would
12941 silently swallow up any following statement.
12942 * syntax.h (SETUP_SYNTAX_TABLE)
12943 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Likewise.
12944 * buffer.h (DECODE_POSITION): Likewise.
12945 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
12946 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): Likewise.
12947 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Likewise.
12948 (FETCH_CHAR_ADVANCE): Likewise.
12949 (FETCH_CHAR_ADVANCE_NO_CHECK): Likewise.
12951 2008-02-07 Jim Meyering <meyering@redhat.com>
12953 * lread.c [lint]: Don't include <sys/inode.h>.
12955 2008-02-07 Stefan Monnier <monnier@iro.umontreal.ca>
12957 * xselect.c (x_handle_dnd_message):
12958 * xmenu.c (digest_single_submenu, xmenu_show):
12959 * xdisp.c (with_echo_area_buffer_unwind_data)
12960 (format_mode_line_unwind_data, unwind_format_mode_line)
12961 (display_menu_bar):
12962 * eval.c (Ffetch_bytecode):
12963 * doc.c (store_function_docstring):
12964 * ccl.c (resolve_symbol_ccl_program, ccl_get_compiled_code)
12965 (Fccl_execute, Fccl_execute_on_string, Fregister_code_conversion_map):
12966 * buffer.c (add_overlay_mod_hooklist): Use ASET.
12968 2008-02-07 Kenichi Handa <handa@m17n.org>
12970 * ftxfont.c (ftxfont_open): Don't set
12971 dpyinfo->smallest_font_height and dpyinfo->smallest_char_width to 0.
12973 * ftfont.c (ftfont_open): Fix previous change.
12975 2008-02-06 Jason Rumney <jasonr@gnu.org>
12977 * w32font.c (w32font_text_extents): Fill in lbearing metric.
12978 Use cached metrics for ASCII characters.
12979 (w32font_open_internal): Don't set font's owning_frame.
12980 Cache metrics for ASCII characters.
12982 * w32font.h (struct w32font_info): Add ascii_metrics.
12983 Remove owning_frame.
12985 2008-02-06 Kenichi Handa <handa@ni.aist.go.jp>
12987 * xdisp.c (x_produce_glyphs): Don't set it->ascent and it->descent
12990 * ftxfont.c (ftxfont_draw): Use s->font_info, not face->font_info.
12992 * ftfont.c (ftfont_open): Fix calculation of font->font.average_width.
12994 * charset.c (syms_of_charset): Set QCtest and Qeq.
12996 2008-02-06 Stefan Monnier <monnier@iro.umontreal.ca>
12998 * process.c (Fstart_process):
12999 * callproc.c (Fcall_process): Handle the case where
13000 Funhandled_file_name_directory returns nil.
13002 * font.h (enum lgstring_indices, enum lglyph_indices): New enums.
13003 (LGSTRING_SLOT, LGSTRING_SET_SLOT): New macros.
13004 * font.c (check_gstring): Use them and AREF to access the vector before
13005 we know it's really a gstring.
13006 (Ffont_shape_text): Fix typo.
13007 (Ffont_shape_text, Ffont_otf_alternates): Fix up int/Lisp_Object mixups.
13009 * composite.h (Fcompose_region_internal, Fcompose_string_internal):
13012 * chartab.c (make_sub_char_table): Remove noop-yet-incorrect statement.
13014 2008-02-05 Jason Rumney <jasonr@gnu.org>
13016 * w32font.c (w32font_open_internal): Fill min_width with tmAveCharWidth.
13017 Set smallest_font_height and smallest_char_width in display info.
13019 2008-02-05 Kenichi Handa <handa@ni.aist.go.jp>
13021 * coding.c (decode_eol): Pay attention to coding->dst_multibyte.
13023 2008-02-05 Miles Bader <miles@gnu.org>
13025 * xfaces.c (get_lface_attributes, merge_named_face)
13026 (lookup_named_face, lookup_derived_face, realize_named_face):
13027 Revert 2008-02-01 change by cyd@stupidchicken.com.
13029 2008-02-04 Kenichi Handa <handa@ni.aist.go.jp>
13031 * fontset.c (Ffontset_info): Handle the case of inhibitting the
13033 (Ffontset_info) [USE_FONT_BACKEND]: Fix getting of opened font names.
13035 2008-02-04 Jason Rumney <jasonr@gnu.org>
13037 * w32font.c (w32font_open_internal): Use font_unparse_fcname to
13039 (w32font_open_internal): Use xmalloc, xrealloc, xfree.
13041 2008-02-03 Jason Rumney <jasonr@gnu.org>
13043 * makefile.w32-in (OBJ1): Include font.o here.
13044 (FONTOBJ) [USE_FONTBACKEND]: Instead of here.
13046 2008-02-02 Jason Rumney <jasonr@gnu.org>
13048 * makefile.w32-in (temacs): Bump EMHEAP to 21.
13050 2008-02-01 Jason Rumney <jasonr@gnu.org>
13052 * s/cygwin.h: Define VIRT_ADDR_VARIES.
13054 * puresize.h [VIRT_ADDR_VARIES]: Don't include CYGWIN in condition.
13056 2008-02-01 Andreas Schwab <schwab@suse.de>
13058 * Makefile.in (shortlisp, lisp): Update for rename of
13059 ../lisp/language/myanmar.el.
13061 2008-02-01 Chong Yidong <cyd@stupidchicken.com>
13063 * xfaces.c (get_lface_attributes): Delete function.
13064 (merge_named_face, lookup_named_face, lookup_derived_face)
13065 (realize_named_face): Call lface_from_face_name directly, and use
13066 the fact that merge_face_vectors does not alter its FROM argument.
13068 2008-02-01 Jason Rumney <jasonr@gnu.org>
13070 * w32term.c (w32_read_socket) <WM_CHAR>: Decode non-Unicode
13071 input in the default locale. Handle non-Unicode multibyte input.
13073 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13075 * fontset.c (reorder_font_vector): Exclude nil elements from the
13076 font group. Don't try multiple fonts.
13077 (fontset_font): Adjust for the above change.
13078 (Finternal_char_font): Return nil if the found font doesn't
13079 contain the character ch.
13081 * Makefile.in (lisp, shortlisp): Add cham.el.
13083 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13085 * font.h (FONTP): Make it return 1 also for a font-object.
13087 * .gdbinit (xfontset): New function.
13089 * font.c (font_find_for_lface): Check if the character C is
13090 supported or not only for the first font.
13092 * fontset.c (reorder_font_vector): Fix typo.
13093 (fontset_find_font): Don't add a font-spec specifying a script.
13094 Use 0 (not Qt) for the indication of empty font-group. Change the
13095 format of RFONT-DEF. Return Qt if no font in the font-group
13096 support the character.
13097 (fontset_font): Adjust for the above change. If no font was
13098 found the character, remember that.
13099 (face_for_char): Adjust for the change of RFONT-DEF.
13100 (Fset_fontset_font): Allow nil for FONT-SPEC to explicitly specify
13101 no font for the target.
13102 (Finternal_char_font): Adjust for the change of RFONT-DEF.
13104 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13106 * font.c (font_load_for_face): Handle the case that the font in
13107 face->lface is a string.
13109 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13111 * xfaces.c (set_lface_from_font_and_fontset): Set the fontname in lface.
13113 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13115 * xfaces.c (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]:
13116 Fix previous change. If the frame is not on a window system,
13119 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13121 * coding.c (decode_coding_object, encode_coding_object): Adjust
13122 marker positions after conversion.
13124 * lisp.h (struct Lisp_Marker): New member need_adjustment.
13126 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13128 * font.c (font_find_for_lface): Fix the handling of the return
13129 value of font_has_char.
13130 (Ffont_shape_text): Fix previous change.
13132 * fontset.c (FONTSET_REF_AND_RANGE): Delete it.
13133 (fontset_ref_and_range): Delete it.
13134 (fontset_find_font): Call char_table_ref_and_range instead of
13135 FONTSET_REF_AND_RANGE.
13136 (make_fontset): Don't setup font groups of Latin here.
13137 (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII.
13138 (new_fontset_from_font): Make the specified font the default for
13139 all Latin characters.
13141 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13143 * xfaces.c (Finternal_set_lisp_face_attribute): Check if the frame
13144 is on a window system before accessing the fontset of the frame.
13146 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13148 * Makefile.in (lisp, shortlisp): Add kherm.el and myanmar.el.
13150 * ftfont.c (ftfont_driver): Set ftfont_shape in ftfont_driver only
13151 when both HAVE_M17N_FLT and HAVE_LIBOTF are defined.
13153 * font.c (Ffont_shape_text): If the font driver doesn't have a
13154 shaper function, make zero-width glyphs to have at least one-pixel
13155 width. Fix setting of `to' field of glyphs.
13157 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13159 * ftfont.c (ftfont_drive_otf): Fix setting of FROM and TO slots of
13162 * font.h (struct font_driver): Improve docstring of member `shape'.
13164 2008-02-01 Kenichi Handa <handa@m17n.org>
13166 * composite.c (syms_of_composite): Fix docstring of
13167 auto-composition-function.
13169 * font.h (LGLYPH_SIZE): New macro.
13171 * font.c (Ffont_fill_gstring): Stop filling when a character not
13172 supported by the font is found.
13173 (Ffont_shape_text): When a shape callback function returns nil,
13174 try at most two more times with larger gstring.
13175 (Ffont_at): Fix getting of w. Call font_at with correct 5th argument.
13177 * xdisp.c (handle_auto_composed_prop): Change the argument to
13178 auto-composition-function.
13180 * ftfont.c (ftfont_encode_char): Use the macro FONT_INVALID_CODE.
13181 (ftfont_shape_by_flt): If an element of lgstring is nil, make a
13182 Lispy glyph and store it in the lgstring.
13184 * xfont.c (xfont_encode_char): Use the macro FONT_INVALID_CODE.
13186 * xftfont.c (xftfont_encode_char): Use the macro FONT_INVALID_CODE.
13188 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13190 * font.c (Ffont_shape_text): Avoid unnecessary composition.
13192 * fontset.c (Vfont_encoding_charset_alist): New variable.
13193 (syms_of_fontset): DEFVAR it.
13194 (reorder_font_vector, fontset_find_font): Optimize for the case of
13195 no need of reordering.
13196 (face_for_char): Map the charset property by
13197 Vfont_encoding_charset_alist.
13199 2008-02-01 Jason Rumney <jasonr@gnu.org>
13201 * w32font.c (logfonts_match): Don't check adstyle here.
13202 (font_matches_spec): Check here against physical font instead.
13203 (add_font_entity_to_list): Avoid some substitutions.
13205 * font.c (font_parse_fcname): Default weight and slant to normal.
13206 (font_score): Prefer normal fonts if weight or slant unspecified.
13207 (font_score) [WINDOWSNT]: Scale weight difference down to closer
13208 match freetype scores.
13210 2008-02-01 Jason Rumney <jasonr@gnu.org>
13212 * w32font.c (w32font_text_extents): Don't use the frame stored in the
13213 font, as it may have been deleted.
13214 (w32_enumfont_pattern_entity): Map generic family to adstyle using
13215 most common hyphenless variation.
13216 (logfonts_match): Check generic family.
13217 (font_matches_spec): Don't check generic family here.
13218 (fill_in_logfont): Set generic family based on adstyle.
13220 * w32font.h (w32font_get_cache): Update declaration.
13222 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13224 * ftfont.c (ftfont_get_cache): Adjust the argument type.
13226 * frame.c (x_set_font_backend): Don't call Fclear_font_cache.
13227 If none of the new drivers are available, call font_update_drivers
13228 with the old drivers.
13230 * w32font.c (w32font_get_cache): Adjust the argument type.
13232 * xfont.c (xfont_get_cache): Adjust the argument type.
13234 * font.h (struct font_driver): Change argument type of get_cache.
13236 * xftfont.c (xftfont_start_for_frame): Delete prototype.
13238 * font.c (Ffont_get): Fix arguments to Fassoc.
13239 (font_prepare_cache, font_finish_cache, font_get_cache): New functions.
13240 (font_clear_cache): New function.
13241 (font_list_entities, font_matching_entity): Use font_get_cache.
13242 (font_update_drivers): Call font_clear_cache when finishing a driver.
13244 * fontset.c (fontset_find_font): Fix previous change.
13246 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13248 * xterm.c (x_check_font) [USE_FONT_BACKEND]: Don't access
13249 dpyinfo->font_table.
13250 (x_delete_display) [USE_FONT_BACKEND]: Likewise.
13251 (x_delete_terminal) [USE_FONT_BACKEND]: Likewise.
13253 * font.c (font_at): Handle the case that the arg C is negative.
13254 Handle the unibyte case.
13255 (Ffont_at): Call font_at with the arg C -1.
13257 * xdisp.c (handle_auto_composed_prop): Don't get a character at
13258 the position here, and call font_at with the arg C -1.
13259 Don't check the range of the existing composition at the point.
13261 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13263 * fontset.c (fontset_add): New args charset_id and family.
13265 (load_font_get_repertory, fontset_find_font): Assume that
13266 font_spec is always a font-spec object.
13267 (Fset_fontset_font): Always store a font-spec object in a fontset.
13269 * xdisp.c (handle_auto_composed_prop): Use Fget_text_property
13270 instead of get_property_and_range.
13272 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13274 * xftfont.c (struct xftfont_info): Delete the member ft_face.
13275 (xftfont_open): Don't keep locking face.
13276 (xftfont_close): Don't unlock face.
13277 (xftfont_anchor_point, xftfont_shape): Lock and unlock face.
13279 * fontset.c (fontset_find_font): Don't prefer a font of
13280 supplementary charset.
13282 2008-02-01 Kenichi Handa <handa@m17n.org>
13284 * ftfont.c (struct OpenTypeSpec): Rename members script_tag to
13285 script, langsys_tag to langsys, new member script.
13286 (OTF_TAG_STR): Terminate by '\0'.
13287 (ftfont_get_open_type_spec): If :otf prop is spec, limit the
13288 listing to the script specified in that property. Fix arg to
13289 OTF_check_features.
13291 2008-02-01 Jason Rumney <jasonr@gnu.org>
13293 * w32font.h: New file.
13295 * w32font.c: Include it.
13296 (struct w32font_info): Add owning_frame field. Move to w32font.h.
13297 (w32font_open): Set owning_frame.
13298 (w32font_text_extents): Use owning_frame.
13299 (struct font_callback_data): Add opentype_only field.
13300 (add_font_entity_to_list): Use it to filter fonts.
13301 Don't check against full name.
13302 (w32font_list_internal): New function.
13303 (w32font_list): Use it.
13304 (w32font_match_internal): New function.
13305 (w32font_match): Use it.
13306 (w32font_open_internal): New function.
13307 (w32font_open): Use it.
13308 (w32font_get_cache, w32font_close, w32font_has_char)
13309 (w32font_encode_char, w32font_text_extents, w32font_draw):
13312 * makefile.w32-in (w32font.o): Depend on w32font.h.
13314 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13316 * charset.c (Fdefine_charset_internal): Record a supplementary
13317 charset at the tail of Vcharset_order_list.
13319 * font.c (Ffont_shape_text): Fix the return value.
13321 * ftfont.c (OTF_SYM_TAG, OTF_TAG_STR): Fix argument names.
13323 * xdisp.c (handle_auto_composed_prop): Fix previous change.
13325 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13327 * ftfont.c (struct OpenTypeSpec): New struct.
13328 (OTF_SYM_TAG, OTF_TAG_STR): New macros.
13329 (ftfont_get_open_type_spec): New function.
13330 (ftfont_list) [HAVE_LIBOTF]: Check otf-spec property.
13332 * lread.c (read1): Redo the previous change with checking Vpurify_flag.
13334 2008-02-01 Jason Rumney <jasonr@gnu.org>
13336 * w32font.c (add_font_entity_to_list): Compare only the beginning
13339 2008-02-01 Kenichi Handa <handa@m17n.org>
13341 * xdisp.c (handle_auto_composed_prop): Simplify the code.
13342 Never return HANDLED_RECOMPUTE_PROPS.
13344 2008-02-01 Kenichi Handa <handa@m17n.org>
13346 * font.c (font_gstring_produce): Delete it.
13348 * composite.h (COMPOSITION_METHOD):
13349 Handle COMPOSITION_WITH_GLYPH_STRING.
13351 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13353 * xfont.c (Qx): Delete.
13354 (syms_of_xfont): Don't initialize Qx.
13356 * composite.h (enum composition_method):
13357 Define COMPOSITION_WITH_GLYPH_STRING unconditionally.
13359 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13361 * xfaces.c [HAVE_WINDOW_SYSTEM]: Include "font.h" unconditionally.
13362 (choose_face_font): Accept new form of font-spec.
13364 * frame.h (font_driver_list): Declare it unconditionally.
13365 (struct frame): Define members font_driver_list and font_data_list
13368 * fontset.c: Include "font.h" unconditionally.
13369 (generate_ascii_font_name): Use font_parse_xlfd and font_unparse_xlfd.
13370 (Fset_fontset_font): Accept a font-spec object.
13372 * font.c (font_unparse_xlfd): If pixel_size is zero, make the
13373 PIXEL_SIZE part a wild card.
13375 * dispextern.h (struct glyph_string): Define members clip and
13376 num_clips unconditionally.
13377 (struct face): Define members font_info and extra unconditionally.
13379 * ftfont.c (ftfont_open): Set members maybe_otf and otf of
13380 ftfont_info only when HAVE_LIBOTF is defined.
13382 2008-02-01 Andreas Schwab <schwab@suse.de>
13384 * xdisp.c (back_to_previous_visible_line_start): Fix type of beg
13387 2008-02-01 Jason Rumney <jasonr@gnu.org>
13389 * w32font.c (w32font_driver): Add new fields.
13391 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13393 * Makefile.in (ALL_CFLAGS): Add @M17N_FLT_CFLAGS@.
13394 (FONTSRC, FONTOBJ) [HAVE_WINDOW_SYSTEM]: Set them unconditionally.
13395 (LIBES): Add @M17N_FLT_CFLAGS@.
13397 * composite.c (compose_text): Don't treat the new style
13398 composition specially.
13400 * emacs.c (main): Call syms_of_font unconditionally.
13402 * font.h (FONT_ENTITY_NOT_LOADABLE)
13403 (FONT_ENTITY_SET_NOT_LOADABLE): New macros.
13404 (LGSTRING_XXXX, LGLYPH_XXX): Adjust for the change of lispy gstring.
13405 (struct font_driver): New member shape.
13406 (font_registry_charsets): Extern it.
13407 (font_find_for_lface, font_prepare_composition): Adjust prototype.
13408 (font_otf_capability, font_drive_otf): Delete their externs.
13410 * font.c [HAVE_M17N_FLT]: Include <m17n-flt.h>.
13411 (font_charset_alist, font_registry_charsets): Move from xfont.c
13413 (font_prop_validate_otf): New function.
13414 (font_property_table): Register it for QCotf.
13415 (DEVICE_DELTA, adjust_anchor, REPLACEMENT_CHARACTER)
13416 (font_drive_otf): Delete.
13417 (font_prepare_composition): New arg F. Adjust for the change of
13419 (font_find_for_lface): New arg C.
13420 (font_load_for_face): Adjust for the change of font_find_for_lface.
13421 (Ffont_make_gstring, Ffont_fill_gstring): Adjust for the change of
13423 (Ffont_shape_text): New function.
13424 (Fopen_font): If the font size is not given, use 12-pixel.
13425 (Ffont_at): New arg STRING.
13426 (syms_of_font): Initalize font_charset_alist.
13427 Declare Ffont_shape_text as a Lisp function. Call syms_of_XXfont
13430 * fontset.c (fontset_find_font) [USE_FONT_BACKEND]: Try multiple
13431 fonts of the same font-spec. Change the format of RFONT-DEF.
13432 (face_for_char, make_fontset_for_ascii_face, Finternal_char_font):
13433 Adjust for the change of RFONT-DEF.
13434 (Fset_fontset_font) [USE_FONT_BACKEND]: Handle new format of font-spec.
13436 * ftfont.h: New file.
13438 * ftfont.c: Don't include Freetype headers. Include "ftfont.h".
13439 (struct ftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
13440 (ftfont_open) [HAVE_LIBOTF]: Initialize the above members.
13441 (ftfont_driver) [HAVE_LIBOTF, HAVE_M17N_FLT]: Don't set
13442 font_otf_capability and font_drive_otf, set ftfont_shape.
13443 (ftfont_list): Adjust for the change of :otf property value.
13444 (struct MFLTFontFT) [HAVE_LIBOTF, HAVE_M17N_FLT]: New struct.
13445 (ftfont_get_glyph_id, ftfont_get_metrics, ftfont_check_otf)
13446 (adjust_anchor, ftfont_drive_otf, ftfont_shape_by_flt)
13447 (ftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
13448 (DEVICE_DELTA) [HAVE_LIBOTF, HAVE_M17N_FLT]: New macro.
13449 (otf_gstring, gstring, m17n_flt_initialized): New variables.
13451 * w32term.c (x_draw_composite_glyph_string_foreground):
13452 Adjust for the change of lispy gstring.
13454 * xdisp.c (handle_composition_prop): Adjust for the change of
13455 lispy gstring. Call a function for auto-composition with the
13456 third arg it->window.
13457 (fill_composite_glyph_string): Adjust for the change of lispy string.
13458 (x_produce_glyphs): Adjust for the change of font_prepare_compositionl.
13460 * xfaces.c (set_font_frame_param): Adjust for the change of
13461 font_find_for_lface.
13463 * xfont.c (x_font_charset_alist): Move to font.c and rename.
13464 (xfont_registry_charsets): Likewise. Change caller.
13465 (syms_of_xfont): Don't handle x_font_charset_alist.
13467 * xftfont.c: Include "ftfont.h".
13468 (struct xftfont_info) [HAVE_LIBOTF]: New members maybe_otf and otf.
13469 (xftfont_open) [HAVE_LIBOTF]: Initialize the above members.
13470 (xftfont_close) [HAVE_LIBOTF]: Close otf.
13471 (xftfont_shape) [HAVE_LIBOTF, HAVE_M17N_FLT]: New function.
13472 (syms_of_xftfont) [HAVE_LIBOTF, HAVE_M17N_FLT]:
13473 Set xftfont_driver.shape to xftfont_shape.
13475 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
13476 the change of lispy gstring.
13478 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13480 * ftxfont.c (ftxfont_end_for_frame): Fix array indexing error.
13482 2008-02-01 Jason Rumney <jasonr@gnu.org>
13484 * w32font.c (w32font_draw): Fill background manually.
13486 2008-02-01 Jason Rumney <jasonr@gnu.org>
13488 * font.c (Qfontp): Remove unused symbol.
13489 (QCantialias): New symbol.
13490 (syms_of_font): Define it.
13491 (font_property_table): Set a validator for QCantialias.
13493 * w32font.c (CLEARTYPE_QUALITY, CLEARTYPE_NATURAL_QUALITY):
13494 Define if not already.
13495 (QCfamily): Share with xfaces.c.
13496 (Qstandard, Qsubpixel, Qnatural): New symbols.
13497 (syms_of_w32font): Define them. Don't define QCfamily here.
13498 (w32_antialias_type, lispy_antialias_type): New functions.
13499 (w32_enumfont_pattern_entity): New arg requested_font.
13500 Set antialias parameter if non-default was requested.
13501 (fill_in_logfont): Fill in lfQuality if :antialias specified.
13503 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13505 * lread.c (read1): Undo the previous change.
13507 2008-02-01 CHENG Gao <chenggao@gmail.com> (tiny change)
13509 * frame.c (Fdelete_frame): Call font_update_drivers only when
13510 USE_FONT_BACKEND is defined.
13512 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13514 * font.h (struct font_bitmap): New member bits_per_pixel.
13515 (struct font_driver): New members start_for_frame and end_for_frame.
13516 (struct font_data_list): New struct.
13517 (font_put_frame_data, font_get_frame_data): Extern them.
13519 * frame.h (struct frame): New member font_data_list.
13521 * font.c (font_update_drivers): Call driver->start_for_frame and
13522 driver->end_for_frame at proper timings.
13523 (font_put_frame_data, font_get_frame_data): New functions.
13524 (Ffont_spec): Add usage in the docstring.
13526 * frame.c (make_frame): Initialize f->font_data_list to NULL.
13527 (Fdelete_frame): Call font_update_drivers.
13529 * xftfont.c (struct xftface_info): Delete the member xft_draw.
13530 (xftfont_prepare_face, xftfont_done_face): Adjust for the above change.
13531 (xftfont_get_xft_draw): New function.
13532 (xftfont_draw): Get XftDraw by xftfont_get_xft_draw.
13533 (xftfont_end_for_frame): New function.
13534 (syms_of_xftfont): Set xftfont_driver.end_for_frame.
13536 * ftxfont.c (ftxfont_get_gcs): Rename from ftxfont_create_gcs.
13537 Change argument. Cache GCs in the per-frame data.
13538 (struct ftxfont_frame_data): New struct.
13539 (ftxfont_draw_bitmap): New arg gc_fore and flush.
13540 (ftxfont_prepare_face, ftxfont_done_face): Delete them.
13541 (ftxfont_draw): Get GCs by ftxfont_get_gcs. Reflect s->clip in GCs.
13542 (ftxfont_end_for_frame): New function.
13543 (syms_of_ftxfont): Set ftxfont_driver.end_for_frame.
13545 * ftfont.c (ftfont_get_bitmap): Set bitmap->bits_per_pixel.
13547 2008-02-01 Kenichi Handa <handa@m17n.org>
13549 * xselect.c (Vselection_coding_system)
13550 (Vnext_selection_coding_system): Delete them.
13551 (syms_of_xselect): Don't declare selection-coding-system and
13552 next-selection-coding-system. They are declared in select.el.
13554 2008-02-01 Jason Rumney <jasonr@gnu.org>
13556 * w32term.h (WM_UNICHAR, UNICODE_NOCHAR): Define if not already.
13558 * w32fns.c: Include imm.h.
13559 (get_composition_string_fn, get_ime_context_fn): New optional
13561 (globals_of_w32fns): Load them from imm32.dll.
13562 (ignore_ime_char): New flag.
13563 (w32_wnd_proc): Handle WM_UNICHAR, WM_IME_CHAR and
13564 WM_IME_ENDCOMPOSITION messages.
13566 * w32term.c (w32_read_socket) [WM_UNICHAR]: Handle as
13567 MULTIBYTE_CHAR_KEYSTROKE_EVENT.
13569 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13571 * lread.c (READCHAR): Call readchar with the 2nd arg NULL.
13572 (READCHAR_REPORT_MULTIBYTE): New macro.
13573 (readchar): New 2nd arg MULTIBYTE.
13574 (read1): Use READCHAR_REPORT_MULTIBYTE for the first read.
13575 Make symbol's name multibyte according to the multibyteness of the
13578 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13580 * xfaces.c (face_for_overlay_string): Call lookup_face with
13581 correct arguments (fix of synching with the trunk).
13583 2008-02-01 Kenichi Handa <handa@m17n.org>
13585 * font.c (font_prop_validate_symbol, font_prop_validate_style)
13586 (font_prop_validate_non_neg, font_prop_validate_spacing):
13587 Delete argument prop_index.
13588 (font_property_table): Change arguments to validater. Change Callers.
13589 (font_lispy_object): Delete.
13590 (font_at): Use font_find_object instead fo font_lispy_object.
13592 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
13594 * fileio.c (Fexpand_file_name): Adjust multibyteness of directory
13597 2008-02-01 Jason Rumney <jasonr@gnu.org>
13599 * w32font.c (add_font_name_to_list): Avoid vertical fonts.
13600 (font_matches_spec): Remove debug output.
13601 (add_font_entity_to_list): Avoid using substituted fonts.
13603 2008-02-01 Jason Rumney <jasonr@gnu.org>
13605 * doc.c (Fsnarf_documentation):
13606 * Makefile.in (temacs${EXEEXT}, mostlyclean): Undo last change.
13608 2008-02-01 Miles Bader <miles@gnu.org>
13610 * dispextern.h (struct glyph_row): Only define "clip" field if
13611 HAVE_WINDOW_SYSTEM is defined.
13613 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
13615 Fix up multi-tty merge.
13617 * xterm.c (handle_one_xevent): Remove duplicate code and fix up nesting
13620 * xfaces.c (free_realized_face, clear_face_gcs):
13621 Include font_done_for_face in the input_blocked section, just in case.
13623 * xdisp.c (decode_mode_spec): Use terminal-local coding systems.
13624 (get_char_face_and_encoding): Undo last change and remove the *other*
13625 duplicate definition (i.e. keep the one that's better scoped and that
13626 includes code for the font-backend).
13628 * terminal.c (create_terminal): Default keyboard_coding to
13629 `no-conversion' and terminal_coding to `undecided'.
13631 * lread.c (read1): Use XSETPVECTYPE to set a pseudovector's tag.
13633 * fontset.c (free_realized_fontsets): Check that the table entry does
13634 contain a fontset before trying to compare it to `base'.
13636 * emacs.c (main): Move syms_of_data, syms_of_fileio, syms_of_alloc,
13637 syms_of_charset, and syms_of_coding earlier because init_window_once
13638 now needs Vcoding_system_hash_table to be setup.
13640 * coding.h (default_buffer_file_coding): Remove.
13642 * coding.c (default_buffer_file_coding): Remove.
13643 (Fterminal_coding_system, Fkeyboard_coding_system): Use ->id rather
13644 than ->symbol, and use the terminal-local coding system.
13645 (syms_of_coding): Don't setup the coding-systems that are not
13647 (Fdefine_coding_system_internal): Use XCAR/XCDR.
13649 * chartab.c (Fmake_char_table, make_sub_char_table, copy_char_table):
13650 Use XSETPVECTYPE now that XSETCHAR_TABLE doesn't set the tag anymore.
13652 * alloc.c (Fmake_char_table, make_sub_char_table): Remove. They're now
13653 in chartab.c and were re-added here by mistake.
13654 (Fpurecopy): Use XSETPVECTYPE after copying a COMPILED pseudovector.
13656 * doc.c (Fsnarf_documentation):
13657 * Makefile.in (temacs${EXEEXT}, mostlyclean): Move buildobj.lst from
13660 * ChangeLog.10: Add mistakenly removed entry.
13662 2008-02-01 Dan Nicolaescu <dann@ics.uci.edu>
13664 * Makefile.in (fringe.o, minibuf.o): Fix dependencies.
13666 2008-02-01 Miles Bader <miles@gnu.org>
13668 * xdisp.c (get_char_face_and_encoding): Remove extraneous definition.
13669 Add extra args to FACE_FOR_CHAR.
13671 2008-02-01 Kenichi Handa <handa@m17n.org>
13673 * keymap.c (where_is_internal_1): If key is a cons, store the copy
13676 * chartab.c (map_sub_char_table, map_char_table): If the range
13677 contains just one character, call the function with that character
13678 even if the depth is not 3.
13680 2008-02-01 Jason Rumney <jasonr@gnu.org>
13682 * w32font.c (w32font_text_extents): Calculate metrics for the
13685 2008-02-01 Jason Rumney <jasonr@gnu.org>
13687 * w32xfns.c (get_next_msg): Consolidate WM_PAINT messages.
13689 2008-02-01 Jason Rumney <jasonr@gnu.org>
13691 * w32term.c (x_set_glyph_string_clipping): Use
13692 get_glyph_string_clip_rects.
13693 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
13694 Adjust for the change of struct glyph_string.
13696 * w32font.c (w32font_draw): Do clipping here.
13698 2008-02-01 Kenichi Handa <handa@m17n.org>
13700 * xftfont.c (xftfont_draw): Adjust for the change of struct
13703 * xterm.c (x_set_glyph_string_clipping): Use
13704 get_glyph_string_clip_rects.
13705 (x_set_glyph_string_clipping_exactly, x_draw_glyph_string):
13706 Adjust for the change of struct glyph_string.
13708 * xdisp.c (get_glyph_string_clip_rects): Reflect s->row->clip to
13709 the resulting clip(s}.
13710 (expose_overlaps): Add arg r. Change callers. Set it to
13711 row->clip temporarily.
13712 (expose_window): Redraw rows overlapping the exposed area.
13714 * dispextern.h (struct glyph_row): New member clip.
13715 (struct glyph_string): Delete members clip_x, clip_y, clip_width,
13716 clip_height, new member clip, and num_clips.
13718 2008-02-01 Kenichi Handa <handa@m17n.org>
13720 * data.c (Fchar_or_string_p): Fix docstring.
13722 2008-02-01 Kenichi Handa <handa@m17n.org>
13724 * xftfont.c (xftfont_draw): If s->font_info != s->face->font_info,
13725 create a temporary XftDraw object.
13727 2008-02-01 Kenichi Handa <handa@m17n.org>
13729 * font.c (Ffontp): Fix docstring.
13731 * coding.c (detect_coding_iso_2022): Don't treat SI/SO codes as a
13732 strong evidence of ISO-2022.
13734 2008-02-01 Kenichi Handa <handa@m17n.org>
13736 * abbrev.c (abbrev_check_chars): Use CHAR_TABLE_REF, not
13737 SYNTAX_ENTRY_FOLLOW_PARENT.
13739 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
13741 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and change
13743 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
13744 Update to the new type of weak_hash_tables and next_weak.
13746 * lisp.h (struct Lisp_Hash_Table): Change next_weak from Lisp_Object to
13747 a plain C pointer to Lisp_Hash_Table.
13749 * lisp.h (XGCTYPE, GC_HASH_TABLE_P, GC_NILP, GC_NUMBERP, GC_NATNUMP)
13750 (GC_INTEGERP, GC_SYMBOLP, GC_MISCP, GC_VECTORLIKEP, GC_STRINGP)
13751 (GC_CONSP, GC_FLOATP, GC_VECTORP, GC_OVERLAYP, GC_MARKERP)
13752 (GC_INTFWDP, GC_BOOLFWDP, GC_OBJFWDP, GC_BUFFER_OBJFWDP)
13753 (GC_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP)
13754 (GC_KBOARD_OBJFWDP, GC_PSEUDOVECTORP, GC_WINDOW_CONFIGURATIONP)
13755 (GC_PROCESSP, GC_WINDOWP, GC_SUBRP, GC_COMPILEDP, GC_BUFFERP)
13756 (GC_SUB_CHAR_TABLE_P, GC_CHAR_TABLE_P, GC_BOOL_VECTOR_P, GC_FRAMEP)
13757 (GC_EQ): Remove since they've been identical to their non-GC_
13758 alter-egos ever since the markbit was eradicated.
13777 * xterm.c: Replace uses of GC_* macros with the non-GC_ versions.
13779 2008-02-01 Kenichi Handa <handa@m17n.org>
13781 * chartab.c (map_sub_char_table): Make it work for the top-level
13782 char-table. Fix handling of parent char-table.
13783 (map_char_table): Adjust for the above change.
13785 2008-02-01 Jason Rumney <jasonr@gnu.org>
13787 * w32font.c (Qgdi): Rename from Qw32.
13789 2008-02-01 Jason Rumney <jasonr@gnu.org>
13791 * w32bdf.c (get_quoted_string): Make function static.
13793 2008-02-01 Kenichi Handa <handa@m17n.org>
13795 * xftfont.c (xftfont_open): If one of font's ASCII glyph has
13796 bigger ascent and descent than those of the font, use them as
13797 font's ascent and descent.
13799 2008-02-01 Kenichi Handa <handa@m17n.org>
13801 * Makefile.in (${lispsource}international/charprop.el): Move this
13802 target within "#ifdef HAVE_UNIDATA" and "#endif".
13804 2008-02-01 Kenichi Handa <handa@m17n.org>
13806 * Makefile.in (lisp): Add ${lispsource}language/tai-viet.el.
13807 (shortlisp): Add ../lisp/language/tai-viet.el.
13809 2008-02-01 Ulrich Mueller <ulm@gentoo.org>
13811 * Makefile.in (${lispsource}international/charprop.el): Depend on
13814 2008-02-01 Jason Rumney <jasonr@gnu.org>
13816 * w32font.c (w32font_close): Delete the GDI font object.
13818 * w32menu.c: Include character.h.
13820 * w32proc.c: Likewise.
13822 * w32select.c: Likewise.
13824 * makefile.w32-in (w32proc.o): Depend on character.h.
13826 2008-02-01 Jason Rumney <jasonr@gnu.org>
13828 * w32fns.c (syms_of_w32fns): Use DEFSYM macro.
13830 * w32menu.c (syms_of_w32menu): Likewise.
13832 * w32proc.c (syms_of_ntproc): Likewise.
13834 * w32select.c (syms_of_w32select): Likewise.
13836 * w32term.c (syms_of_w32term): Likewise.
13838 2008-02-01 Jason Rumney <jasonr@gnu.org>
13840 * w32font.c (w32font_draw): Delete brush after using it.
13842 2008-02-01 Jason Rumney <jasonr@gnu.org>
13844 * w32font.c (w32font_open): Don't set font_idx.
13845 (w32font_text_extents): Try GetTextExtentPoint32W before defaulting
13847 (w32font_draw): Fill background explicitly.
13849 2008-02-01 Jason Rumney <jasonr@gnu.org>
13851 * w32term.c (w32_initialize): Don't call w32font_initialize.
13853 * w32font.c (w32font_info): Remove subranges.
13854 (QCsubranges, Qmodern, Qswiss, Qroman): Remove.
13855 (QCfamily, Qmonospace, Qsans_serif, Qmono, Qsans, Qsans__serif)
13856 (Qraster, Qoutline, Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian)
13857 (Qhebrew, Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali)
13858 (Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu, Qkannada)
13859 (Qmalayalam, Qsinhala, Qthai, Qlao, Qtibetan, Qmyanmar, Qgeorgian)
13860 (Qhangul, Qethiopic, Qcherokee, Qcanadian_aboriginal, Qogham)
13861 (Qrunic, Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan)
13862 (Qideographic_description, Qcjk_misc, Qkana, Qbopomofo, Qkanbun)
13863 (Qyi, Qbyzantine_musical_symbol, Qmusical_symbol, Qmathematical):
13865 (font_callback_data): New struct.
13866 (w32font_list, w32font_match): Use it.
13867 (w32font_open): Don't populate subranges.
13868 (w32font_has_char): Use script Lisp symbols, not subrange bitmask.
13869 (w32font_encode_char): Always return unicode code-point as-is.
13870 (w32font_text_extents): Supply a transformation matrix to
13871 GetGlyphOutline. Never look up by glyph index. Avoid looping
13872 twice. Use unicode version of GetTexExtentPoint32 instead of
13873 glyph index version.
13874 (set_fonts_frame): Remove.
13875 (w32_enumfont_pattern_entity): Add frame parameter, use it to
13876 set frame parameter. Use backward compatible fake foundries.
13877 Save generic family in extra slot under QCfamily. Make width slot
13878 constant. Save QCspacing value. Save list of scripts instead of
13880 (w32_generic_family, logfonts_match, font_matches_spec): New functions.
13881 (add_font_entity_to_list): Use font_callback_data struct. Filter
13883 (add_one_font_entity_to_list): Use font_callback_data struct.
13884 (w32_registry): Default to iso10646_1.
13885 (fill_in_logfont): Use dpi from extra slot. Don't bother with
13886 string font registries. Don't fill in font name if it is a generic
13887 family name, fill family instead. Use spacing, family and script
13888 extra info to fill pitch, family and charset fields.
13889 (list_all_matching_fonts): Use font_callback_data struct.
13890 (unicode_range_for_char): Remove.
13891 (font_supported_scripts): New function.
13892 (w32font_initialize): Remove.
13893 (syms_of_w32font): Update which symbols are defined.
13895 2008-02-01 Jason Rumney <jasonr@gnu.org>
13897 * font.c (font_pixel_size): Reverse assq_no_quit args.
13899 * w32term.h (FONT_WIDTH): Report max width, not average.
13900 (FONT_MAX_WIDTH): Remove.
13901 (FONT_AVG_WIDTH): New macro.
13903 * xfaces.c (Fx_list_fonts) [WINDOWSNT]: Remove Windows only
13904 redefinition of FONT_WIDTH.
13906 * w32term.c (x_font_min_bounds): Use FONT_AVG_WIDTH.
13907 (w32_cache_char_metrics): Use FONT_WIDTH.
13909 * w32fns.c (w32_load_system_font, w32_list_fonts): Use FONT_AVG_WIDTH.
13911 2008-02-01 Jason Rumney <jasonr@gnu.org>
13913 * w32font.c (w32font_open): Make lfHeight negative.
13915 * w32fns.c (x_default_font_parameter): Use new style font name.
13916 (Fx_create_frame, x_create_tip_frame): Initialize resx and resy.
13918 2008-02-01 Jason Rumney <jasonr@gnu.org>
13920 * w32font.c (QCsubranges): New symbol.
13921 (w32font_open, w32font_has_char): Get subranges from subproperty
13923 (w32_enumfont_pattern_entity): Set subranges as subproperty of extra.
13924 (syms_of_w32font): Define :subranges symbol.
13926 * font.c (font_put_extra): Expose externally.
13928 * font.h (font_put_extra): Move declaration from font.c.
13930 * font.c (Ffont_get): Use font driver to determine otf capability.
13931 (adjust_anchor): Check if driver defines anchor_point before using.
13933 * w32font.c (w32font_open): Handle size, height and pixel_size better.
13934 (w32font_draw): Use options.
13935 (w32_enumfont_pattern_entity): Set size to 0 for scalable fonts.
13936 Fix detection of truetype fonts.
13937 (registry_to_w32_charset): Handle charsets other than iso8859-1
13938 expressed as lisp symbols.
13939 (w32_registry): Express charset as lisp symbol.
13940 (fill_in_logfont): Reverse pixel and point height logic.
13941 Don't set width here. Set quality to default.
13943 * w32fns.c (w32_load_system_font): Fix detecting FIXED_PITCH fonts.
13944 (x_to_w32_font): Fill in lfPitchAndFamily correctly.
13946 * xterm.c (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
13947 Remove redundant loop and allocation.
13949 * makefile.w32-in (font.o, w32font.o): New objects.
13950 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h.
13951 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
13953 * xdisp.c (fill_composite_glyph_string): Make the first arg to
13954 STORE_XCHARB a valid l-value.
13956 * w32term.c (w32_native_per_char_metric): Swap width and rbearing
13957 calculations for non-Truetype fonts.
13958 (x_draw_glyph_string): Sync with xterm.c.
13959 (x_draw_glyph_string_foreground) [USE_FONT_BACKEND]:
13960 Remove redundant code.
13961 (w32_initialize) [USE_FONT_BACKEND]: Call w32font_initialize.
13963 * w32term.h (w32_output_data) [USE_FONT_BACKEND]: Add fontp member.
13964 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro from xterm.h.
13966 * w32fns.c [USE_FONT_BACKEND]: Port font backend changes from xfns.c.
13967 (x_to_w32_charset, w32_to_x_charset): Expose externally.
13969 * w32font.c: New file for w32 font backend.
13971 2008-02-01 Kenichi Handa <handa@m17n.org>
13973 * term.c: Don't include "buffer.h" twice.
13975 2008-02-01 Kenichi Handa <handa@m17n.org>
13977 * character.c (Funibyte_string): New function.
13978 (syms_of_character): Defsubr it.
13980 2008-02-01 Jason Rumney <jasonr@gnu.org>
13982 * w32term.c [USE_FONT_BACKEND]:
13983 (x_get_font_repertory, note_mouse_movement, x_set_mouse_face_gc)
13984 (x_set_glyph_string_clipping, x_set_glyph_string_clipping_exactly)
13985 (x_draw_glyph_string, x_draw_glyph_string_foreground)
13986 (x_draw_composite_glyph_string_foreground, x_new_fontset2)
13987 (x_free_frame_resources): Sync with xterm.c.
13989 2008-02-01 Andreas Schwab <schwab@suse.de>
13991 * lread.c (read1): Use CHAR_TABLE_STANDARD_SLOTS to validate
13994 2008-02-01 Kenichi Handa <handa@m17n.org>
13996 * font.c (check_otf_features): Define it regardless of HAVE_LIBOTF.
13998 2008-02-01 Kenichi Handa <handa@m17n.org>
14000 * ftfont.c (ftfont_driver): Delete font_otf_gsub and
14001 font_otf_gpos, add font_drive_otf.
14003 * fontset.c (fontset_find_font): Pay attention to font size
14004 specified for a font.
14005 (reorder_font_vector): Check contents of font_def.
14007 * font.c (struct otf_list): Delete it.
14008 (otf_list): Make it a lisp variable.
14009 (otf_open): Use lispy otf_list.
14010 (generate_otf_features): Rename from parse_gsub_gpos_spec.
14011 (check_otf_features): New function.
14012 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
14014 (font_drive_otf): New function merging font_otf_gsub and
14016 (font_open_for_lface): New arg spec. Change argument order.
14017 (font_load_for_face): Adjust for the change of font_open_for_lface.
14018 (Ffont_drive_otf): New function merging Ffont_otf_gsub and
14020 (syms_of_font): Staticpro otf_list. Delete defsubr of
14021 Sfont_otf_gsub and Sfont_otf_gpos. Defsubr Sfont_drive_otf.
14023 * xfaces.c (set_font_frame_param): Adjust for the change of
14024 font_open_for_lface.
14026 * font.h (font_open_for_lface): Adjust prototype.
14027 (struct font_driver): Delete members otf_gsub and otf_gpos, add
14029 (font_otf_gsub, font_otf_gpos): Delete externs.
14030 (font_drive_otf): Extern it.
14032 2008-02-01 Kenichi Handa <handa@m17n.org>
14034 * font.c (font_at): If the window W is not on a window system,
14037 * coding.c (produce_chars, encode_coding): Don't call
14038 insert_from_gap if no characters to produce.
14040 2008-02-01 Kenichi Handa <handa@m17n.org>
14042 * fontset.c (free_realized_fontsets): Avoid unnecessary call of
14045 * xfaces.c (face_for_font): Check also face->font==font->font.font.
14047 2008-02-01 Miles Bader <miles@gnu.org>
14049 * emacs.c (main): Change default value of `enable_font_backend' to 1.
14050 Parse "--disable-font-backend" option.
14051 (standard_args): Add "--disable-font-backend" option.
14053 2008-02-01 Kenichi Handa <handa@m17n.org>
14055 * fontset.c (fontset_find_font): New function.
14056 (fontset_font): Use fontset_find_font.
14057 (make_fontset_for_ascii_face): Don't set face ID in rfont_def.
14058 Register the specified font for all Latin characters.
14059 (new_fontset_from_font): Register the specified font for all Latin
14061 (dump_fontset): For a realized fontset, include the base fontset
14062 name in the returned vector.
14064 2008-02-01 Kenichi Handa <handa@m17n.org>
14066 * character.h (CHAR_STRING): Cast C to unsigned on calling
14069 * character.c (char_string): Type of arg C changed to unsigned.
14070 Signal an error if C is an invalid character code.
14072 * editfns.c (general_insert_function, Fchar_to_string):
14073 Use CHARACTERP, not INTEGERP.
14075 2008-02-01 Kenichi Handa <handa@m17n.org>
14077 * character.h (MIN_MULTIBYTE_LEADING_CODE)
14078 (MAX_MULTIBYTE_LEADING_CODE): New macros.
14080 * regex.c (analyse_first): Fix for multibyte characters in "case
14081 charset:" and "case categoryspec:".
14083 2008-02-01 Andreas Schwab <schwab@suse.de>
14085 * Makefile.in (LIBES): Move standard libraries to the end.
14087 2008-02-01 Kenichi Handa <handa@m17n.org>
14089 * alloc.c (Fgarbage_collect): If nextb->text->inhibit_shrinking is
14090 nonzero, don't shrink the buffer nextb.
14092 * buffer.h (struct buffer_text): New member inhibit_shrinking.
14094 * coding.c (coding_alloc_by_making_gap): New arg offset.
14095 (alloc_destination): Call coding_alloc_by_making_gap with the arg
14097 (decode_coding_iso_2022): Update coding->safe_charsets.
14098 (decode_coding_gap): Temporarily set
14099 current_buffer->text->inhibit_shrinking to 1.
14101 2008-02-01 Kenichi Handa <handa@m17n.org>
14103 * xterm.c (x_draw_composite_glyph_string_foreground): Fix
14104 indexing into elements of s->cmp and s->char2b.
14106 2008-02-01 Juanma Barranquero <lekktu@gmail.com>
14108 * regex.c (RE_STRING_CHAR_AND_LENGTH) [! emacs]: Add missing arg `len'.
14110 2008-02-01 Kenichi Handa <handa@m17n.org>
14112 * regex.c (GET_CHAR_BEFORE_2, GET_CHAR_AFTER): Check the variable
14113 target_multibyte instead of multibyte.
14114 (re_match_2_internal): Call bcmp_translate with target_multibyte.
14115 (bcmp_translate): Change the argument name from multibyte to
14118 2008-02-01 Kenichi Handa <handa@m17n.org>
14120 These changes are to compile a regexp into a pattern that can be
14121 used both for multibyte and unibyte targets.
14123 * Makefile.in (search.o): Depend on charset.h.
14125 * character.c (multibyte_char_to_unibyte_safe): New function.
14127 * search.c: Include "charset.h".
14128 (compile_pattern_1): Delete argument multibyte. Don't set
14129 cp->buf.target_multibyte here. Set cp->buf.charset_unibyte.
14130 (compile_pattern): Don't compare cp->buf.target_multibyte.
14131 Compare cp->buf.charset_unibyte.
14132 (compile_pattern): Set cp->buf.target_multibyte.
14134 * lisp.h (multibyte_char_to_unibyte_safe): Extern it.
14136 * regex.h (struct re_pattern_buffer): New member charset_unibyte.
14138 * regex.c (RE_STRING_CHAR, RE_STRING_CHAR_AND_LENGTH): New arg
14139 multibyte. Change callers.
14140 (RE_CHAR_TO_MULTIBYTE, RE_CHAR_TO_UNIBYTE): New macros.
14141 (MAKE_CHAR_MULTIBYTE, MAKE_CHAR_UNIBYTE): Delete. Change callers
14142 to use RE_CHAR_TO_MULTIBYTE and RE_CHAR_TO_UNIBYTE, respectively.
14143 (SETUP_ASCII_RANGE, SETUP_UNIBYTE_RANGE): New macros.
14144 (SETUP_MULTIBYTE_RANGE): Generate a more compact range_table.
14145 (regex_compile): Make the compiled pattern usable both for
14146 multibyte and unibyte targets.
14147 (analyse_first): Make the fastmap usable both for multibyte and
14149 (TRANSLATE_VIA_MULTIBYTE): Delete.
14150 (re_match_2_internal): Pay attention to the case that the
14151 multibyteness of bufp and target may be different.
14153 2008-02-01 Kenichi Handa <handa@m17n.org>
14155 * xdisp.c (x_produce_glyphs): When a font is not found, make the
14156 empty box occupy at least one column width.
14158 2008-02-01 Miles Bader <miles@gnu.org>
14160 * Makefile.in: Remove redundant HAVE_XFT clause.
14162 2008-02-01 Kenichi Handa <handa@m17n.org>
14164 * xrdb.c (x_load_resources): Setup the default fontSet X resource.
14166 2008-02-01 Kenichi Handa <handa@m17n.org>
14168 * fontset.c (Finternal_char_font): Fix for the case of POSITION
14171 2008-02-01 Kenichi Handa <handa@m17n.org>
14173 * xftfont.c (xftfont_open): Call FcConfigSubstitute.
14175 2008-02-01 Kenichi Handa <handa@m17n.org>
14177 * xftfont.c (xftfont_open): Don't enable antialias explicitly.
14179 2008-02-01 Kenichi Handa <handa@m17n.org>
14181 * search.c (simple_search): Fix previous change.
14183 2008-02-01 Kenichi Handa <handa@m17n.org>
14185 * xftfont.c (ftfont_font_format): Extern declaration.
14187 * frame.c (x_set_font): Fix the second arg to fs_query_fontset.
14189 * xfont.c (xfont_driver): Initialize ftfont_driver.type by 0.
14190 (xfont_list): Don't directly use Lisp_Object as an operand of &&.
14192 * ftfont.c (ftfont_driver): Initialize ftfont_driver.type by 0.
14193 (ftfont_font_format): Fix previous change.
14195 * font.h (Ffont_xlfd_name): EXFUN it.
14197 * font.c (font_parse_xlfd): Fix the array size of `f'.
14198 (register_font_driver): Use EQ to compare driver->type.
14200 * xfns.c (xic_create_xfontset2) [USE_FONT_BACKEND]: New function.
14201 (create_frame_xic) [USE_FONT_BACKEND]: Call xic_create_xfontset2.
14202 (xic_set_xfontset) [USE_FONT_BACKEND]: Likewise.
14204 2008-02-01 Kenichi Handa <handa@m17n.org>
14206 * ftfont.c (ftfont_pattern_entity, ftfont_list_generic_family)
14207 (ftfont_list, ftfont_font_format): Check if FC_FONTFORMAT is defined.
14209 2008-02-01 Kenichi Handa <handa@m17n.org>
14211 * xfont.c (xfont_open): Set font->format.
14213 * xftfont.c (xftfont_open): Set font->format.
14215 * ftfont.c (ftfont_pattern_entity): Add fontformat in a pattern.
14216 (ftfont_list): Include FC_FONTFORMAT in FcObject.
14217 (ftfont_open): Set font->format.
14218 (ftfont_font_format): New function.
14220 * font.h (struct font): New member format.
14222 * font.c (Qopentype): New variable.
14223 (syms_of_font): Defsym it.
14224 (Fquery_font): Change the format of the last element of the return
14227 2008-02-01 Kenichi Handa <handa@m17n.org>
14229 * xfns.c (xic_create_xfontset): Try the default fontset name as a
14232 2008-02-01 Kenichi Handa <handa@m17n.org>
14234 * coding.c (detect_coding_charset): Fix detection of multi-byte
14237 2008-02-01 Bob Halley <halley@play-bow.org> (tiny change)
14239 * ccl.c (ccl_driver): If DST is NULL, set ccl->produced to 0.
14241 2008-02-01 Kenichi Handa <handa@m17n.org>
14243 * xdisp.c (get_next_display_element): Set it->face_id for the
14244 first component of a composition.
14245 (x_produce_glyphs): Check if the font is changed or not for composition.
14247 2008-02-01 Kenichi Handa <handa@m17n.org>
14249 * fontset.c (Qlatin): New variable.
14250 (syms_of_fontset): Define it as a lisp symbol.
14251 (Fset_fontset_font): If TARGET is `latin', use FONT_SPEC for ASCII.
14253 2008-02-01 Kenichi Handa <handa@m17n.org>
14255 * font.c (font_unparse_fcname): Pay attention to the case that
14256 some of font property is a null string.
14258 2008-02-01 Kenichi Handa <handa@m17n.org>
14260 * term.c: Include "composite.h".
14261 (encode_terminal_code): Output all components of composition.
14262 Check the size of encode_terminal_src.
14263 (produce_glyphs): For composition, call produce_composite_glyph.
14264 (append_composite_glyph, produce_composite_glyph): New functions.
14266 * xdisp.c (x_produce_glyphs): In handling composition, if a font
14267 is not found, get font_info from the current ascii face.
14269 2008-02-01 Kenichi Handa <handa@m17n.org>
14271 * fileio.c (Finsert_file_contents): On replacing, temporarily bind
14272 buffer-file-name to Qnil before calling insert_from_buffer.
14274 * font.c (font_unparse_fcname): Pay attention to the case that
14275 foundry is a null string.
14277 2008-02-01 Kenichi Handa <handa@m17n.org>
14279 * ftfont.c (ftfont_list): Allow registry "unicode-sip".
14281 * font.c (Qunicode_sip): New variable.
14282 (syms_of_font): Declare it as a Lisp symbol.
14284 * font.h (Qunicode_sip): Extern it.
14286 2008-02-01 Kenichi Handa <handa@m17n.org>
14288 * composite.c (get_composition_id): Pay attention to TAB component.
14290 * xterm.c (x_draw_composite_glyph_string_foreground): Don't draw
14291 TAB. Adjust for the change of s->char2b which always points to
14292 the first element of allocated memory.
14294 * xftfont.c (xftfont_text_extents): Fix calculation of descent value.
14296 * xdisp.c (handle_composition_prop): Set it->c to the first
14298 (fill_composite_glyph_string): Change argument.
14299 (BUILD_COMPOSITE_GLYPH_STRING): Adjust for the above change.
14300 (x_produce_glyphs): Fix handling of left/right padding.
14302 2008-02-01 Kenichi Handa <handa@m17n.org>
14304 * coding.c (detect_coding_system): Fix for handling off
14305 inhibit_iso_escape_detection. Fix for the case that no coding
14306 system is defined for a specific coding category.
14308 2008-02-01 Kenichi Handa <handa@m17n.org>
14310 * font.c (font_matching_entity): Delete unused local var.
14312 * xftfont.c (xftfont_open): Call XftDefaultSubstitute before
14315 * fileio.c (Finsert_file_contents): On recovering a file, assume
14317 (choose_write_coding_system): On auto-saving a file, force
14320 * coding.c (setup_coding_system): Fix setting of
14321 coding->common_flags based on eol_type.
14322 (coding_inherit_eol_type): If PARENT is not nil, be sure to
14325 2008-02-01 Kenichi Handa <handa@m17n.org>
14327 * alloc.c (NSTATICS): Increas to 0x600.
14329 2008-02-01 Kenichi Handa <handa@m17n.org>
14331 * ftfont.c (ftfont_driver): Set ftfont_driver.match to ftfont_match.
14332 (ftfont_list): Don't check :name property.
14333 (ftfont_match): New function.
14334 (ftfont_pattern_entity): If the pattern doesn't contain
14335 FC_SPACING, don't assume FC_MONO.
14337 * font.h (struct font_driver): New member `match'.
14338 (font_update_drivers): Adjust prototype.
14340 * font.c (font_parse_fcname, font_parse_name): Don't change :name
14342 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE, check_gstring): Define
14343 them unconditionally.
14344 (font_matching_entity): New function.
14345 (font_open_by_name): Try font_matching_entity if exact match is
14347 (font_update_drivers): Delete the arg FONT. Return a list of
14348 actually used backends. Don't free faces, font caches here.
14349 Don't store data in frame parameters. Don't call x_set_font.
14350 (Ffont_spec): Store :name property as is.
14351 (Ffont_get): Check HAVE_LIBOTF before calling font_otf_capability.
14352 (Ffont_otf_gsub): Call font->driver->otf_gsub instead of font_otf_gsub.
14353 (Ffont_otf_gpos): Call font->driver->otf_gpos instead of font_otf_gpos.
14354 (Ffont_otf_alternates): Check if the driver has otf_gsub function.
14355 Call font->driver->otf_gsub instead of font_otf_gsub.
14357 * frame.c (x_set_font_backend): Do more works that were done in
14358 font_update_drivers before.
14360 * xfont.c (xfont_match): New function.
14361 (xfont_driver): Set xfont_driver.match to xfont_match.
14362 (xfont_draw): Set font in GC if necessary.
14364 * ftxfont.c (ftxfont_match): New function.
14365 (syms_of_ftxfont): Set ftxfont_driver.match to ftxfont_match.
14367 * xftfont.c (xftfont_match): New function.
14368 (syms_of_xftfont): Set xftfont_driver.match to xftfont_match.
14370 2008-02-01 Kenichi Handa <handa@m17n.org>
14372 * font.h (struct font): New member scalable.
14373 (struct font_driver): New arg ALTERANTE_SUBST to otf_gsub.
14374 (font_otf_gsub): Adjust prototype.
14376 * font.c (font_otf_capability): Fix handling of the default langsys.
14377 (parse_gsub_gpos_spec): Change type to void. New arg nbytes.
14378 Check the contents of SPEC.
14379 (LGSTRING_HEADER_SIZE, LGSTRING_GLYPH_SIZE): New macros.
14380 (check_gstring): New function.
14381 (REPLACEMENT_CHARACTER): New macro.
14382 (font_otf_gsub): New arg alternate_subst. Be sure to set all
14383 glyph codes of GSTRING.
14384 (font_otf_gpos): Be sure to set all glyph codes of GSTRING.
14385 (font_prepare_composition): Set cmp->glyph_len.
14386 (font_open_entity): Set font->scalable.
14387 (Ffont_get): Handle :otf property.
14388 (Ffont_otf_gsub, Ffont_otf_gpos, Ffont_otf_alternates): New
14390 (Fquery_font): Use font->font.full_name.
14391 (syms_of_font): Defsubr Sfont_otf_gsub, Sfont_otf_gpos, and
14392 Sfont_otf_alternates.
14394 * ftfont.c (ftfont_open): Set font->font.full_name and
14395 font->font.name properly. Fix calculation of font->font.height
14396 and font->min_width.
14398 * ftxfont.c (ftxfont_create_gcs): New function.
14399 (ftxfont_draw_bitmap): Fix arg to ftfont_driver.get_bitmap.
14400 (ftxfont_draw_backgrond): Fix filling region.
14401 (ftxfont_default_fid): New function.
14402 (ftxfont_open): Set xfont->fid to the return value of
14403 ftxfont_default_fid.
14404 (ftxfont_prepare_face): Use ftxfont_create_gcs to create GCs.
14405 (ftxfont_done_face): Free only GCs that are created by
14406 ftxfont_create_gcs.
14407 (ftxfont_draw): If face->gc != s->gc, create proper GCs.
14409 * xterm.c (x_set_glyph_string_clipping_exactly) [USE_FONT_BACKEND]:
14410 Clip to src->width, etc (not src->clip_XXX).
14412 * xfns.c (x_create_tip_frame) [USE_FONT_BACKEND]: Handle
14413 FontBackend frame parameter.
14415 2008-02-01 Kenichi Handa <handa@m17n.org>
14417 * font.h (struct font_driver_list): New member `on'.
14418 (Fclear_font_cache): EXFUN it.
14419 (font_update_drivers): Extern it.
14421 * font.c (font_unparse_fcname): Fix typo (swidth->width).
14422 (font_list_entities): Check driver_list->on.
14423 (register_font_driver): Initalize `on' member to 0.
14424 (font_update_drivers): New function.
14425 (Fclear_font_cache): Check driver_list->on.
14427 * frame.h (Qfont_backend): Extern it.
14428 (x_set_font_backend): Extern it.
14430 * frame.c (Qfont_backend): New variable.
14431 (frame_parms): New element for font-backend.
14432 (x_set_font_backend): New function.
14434 * xfns.c (Fx_create_frame) [USE_FONT_BACKEND]: Handle
14435 FontBackend frame parameter.
14436 (x_frame_parm_handlers) [USE_FONT_BACKEND]: New element
14437 x_set_font_backend.
14439 * xfont.c (xfont_list): Don't try listing by :name property if the
14440 name is not for XLFD.
14442 2008-02-01 Kenichi Handa <handa@m17n.org>
14444 * font.h (LGLYPH_FROM, LGLYPH_TO, LGLYPH_SET_FROM)
14445 (LGLYPH_SET_TO): New macros.
14446 (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WADJUST): Check if adjustment
14447 element of G is vector or not.
14448 (font_at): Extern it.
14450 * font.c: Include window.h.
14451 (font_lispy_object): New function.
14452 (font_prepare_composition): Check LGLYPH_FORM (g) to detect the
14453 end of valid glyph.
14454 (font_close_object): Fix getting (struct font *).
14455 (font_at): New function.
14456 (Ffont_get): If FONT is a font-object, get entity from it.
14457 (Ffont_make_gstring): Initialize elements of glyphs with nil.
14458 (Ffont_fill_gstring): Use macro LGSTRING_XXX and LGLYPH_XXX. Fix
14460 (Ffont_at): New function.
14461 (syms_of_font): Defsubr Sfont_at.
14463 * xdisp.c (it_props): Move the entry for Qauto_composed to just
14464 before the entry for Qcomposition.
14465 (handle_auto_composed_prop): Call auto-composition-function with 4 args.
14466 (handle_composition_prop) [USE_FONT_BACKEND]: Set it->face_id from
14467 the font in gstring.
14468 (fill_composite_glyph_string) [USE_FONT_BACKEND]: Check
14469 LGLYPH_FORM (g) to detect the end of valid glyph.
14470 (x_produce_glyphs) [USE_FONT_BACKEND]: Don't update it->face_id if
14471 we are composing with gstring.
14473 * xterm.c (x_draw_composite_glyph_string_foreground) [USE_FONT_BACKEND]:
14474 Check if adjustment is vector or not.
14476 * Makefile.in (font.o): Make it depends on window.h.
14478 2008-02-01 Kenichi Handa <handa@m17n.org>
14480 * xterm.c (x_draw_composite_glyph_string_foreground): Check if
14481 adjustment is vector or not.
14483 2008-02-01 Miles Bader <miles@gnu.org>
14485 * character.h (CHECK_CHARACTER): Redefine in terms of CHECK_TYPE.
14487 2008-02-01 Kenichi Handa <handa@m17n.org>
14489 * font.h (LGLYPH_XOFF, LGLYPH_YOFF, LGLYPH_WIDTH, LGLYPH_WADJUST)
14490 (LGLYPH_SET_WIDTH): Adjusted for the change of LGLYPH format.
14491 (LGLYPH_ADJUSTMENT, LGLYPH_SET_ADJUSTMENT): New macros.
14493 * font.c (font_merge_old_spec): Treat '*' in foundry as a wild card.
14494 (DEVICE_DELTA): Fix typo.
14495 (font_otf_gpos, font_prepare_compositio): Adjust for the change of
14498 * xterm.c (x_draw_composite_glyph_string_foreground): Adjust for
14499 the change of LGLYPH format.
14501 2008-02-01 Kenichi Handa <handa@m17n.org>
14503 * ftfont.c (ftfont_list): Fix typo.
14504 (ftfont_build_basic_charsets): Don't include letters with diacritics.
14506 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
14508 * xfaces.c (realize_non_ascii_face): Set face->extra to NULL.
14510 * xftfont.c (xftfont_done_face): Call XftDrawDestroy only if
14511 xftface_info is non-NULL.
14513 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
14515 * ftfont.c (ftfont_list): Move misplaced #endif.
14517 2008-02-01 Kenichi Handa <handa@m17n.org>
14519 * ftfont.c (ftfont_list): Pay attention to the case that
14520 FC_CAPABILITY is not defined.
14522 2008-02-01 Kenichi Handa <handa@m17n.org>
14524 * xftfont.c (xftfont_open): Set charset related members to -1.
14526 * ftfont.c (ftfont_list): Handle QCotf property. Fix handling of
14528 (ftfont_open): Set charset related members to -1.
14530 * fontset.c (Votf_script_alist): New variable.
14531 (syms_of_fontset): Initialize it.
14532 (fontset_font): Delete unused variable.
14534 * fontset.h (Votf_script_alist): Extern it.
14536 * font.c (font_find_for_lface): Optimize code.
14538 * font.h (font_close_object, font_merge_old_spec): Extern them.
14540 2008-02-01 Kenichi Handa <handa@m17n.org>
14542 * font.c (QCscalable, Qc, Qm, Qp, Qd): New variables.
14543 (syms_of_font): Initialize them.
14544 (font_pixel_size): Allow float value in dpi.
14545 (font_prop_validate_type): Delete.
14546 (font_prop_validate_symbol, font_prop_validate_style): Change argument.
14548 (font_prop_validate_non_neg): Rename from font_prop_validate_size.
14549 (font_prop_validate_extra): Delete.
14550 (font_prop_validate_spacing): New function.
14551 (font_property_table): Add elements for all known properties.
14552 (get_font_prop_index): Rename from check_font_prop_name. New
14553 argument FROM. Change caller.
14554 (font_prop_validate): Validate all known properties.
14555 (font_put_extra): Delete argument force. Change caller.
14556 (font_expand_wildcards): Make it static. Fix the way of shrinking
14557 the possible range.
14558 (font_parse_xlfd): Delete argument merge. Fix handling of RESX,
14559 RESY, SPACING, and AVGWIDTH. Don't validate property values here.
14561 (font_unparse_xlfd): Handle dpi, spacing, and scalable properties.
14562 (font_parse_fcname): Delete argument merge. Fix parsing of point
14563 size. Don't validate properties values here. Change caller.
14564 (font_unparse_fcname): Handle dpi, spacing, and scalable properties.
14565 (font_open_by_name): Delete unused variable.
14566 (Ffont_spec): Likewise. Validate property values.
14567 (Ffont_match_p): New function.
14569 * font.h (QCscalable): Extern it.
14570 (font_parse_xlfd, font_parse_fcname): Adjust prototype.
14572 * ftfont.c (ftfont_list): Handle properties dpi, spacing, and scalable.
14574 * xfont.c (xfont_query_font): Adjust for the change of font_parse_xlfd.
14575 (xfont_list_pattern): New function.
14576 (xfont_list): Use xfont_list_pattern.
14578 2008-02-01 Kenichi Handa <handa@m17n.org>
14580 * font.h (Flist_fonts): EXFUN it.
14582 2008-02-01 Jason Rumney <jasonr@gnu.org>
14584 * w32term.c (w32_initialize): Add back smoothing_type and
14585 smoothing_enabled definitions.
14587 2008-02-01 Kenichi Handa <handa@m17n.org>
14589 * xterm.c (x_draw_glyph_string) [USE_FONT_BACKEND]: Check
14590 s->face->font on determining underline position.
14592 2008-02-01 Kenichi Handa <handa@m17n.org>
14594 * font.c (font_parse_xlfd): Fix generating of CHARSET_REGISTRY field.
14595 (font_has_char): Accept font-object too.
14596 (font_find_for_lface): Try at first with a size specified in face.
14598 2008-02-01 Kenichi Handa <handa@m17n.org>
14600 * frame.c (x_set_font) [USE_FONT_BACKEND]: Fix argument to
14603 2008-02-01 Kenichi Handa <handa@m17n.org>
14605 * font.h (QCspacing, QCdpi): Extern them.
14606 (enum font_spacing): New enum.
14607 (FONT_PIXEL_SIZE_QUANTUM): New macro.
14609 * font.c (POINT_TO_PIXEL): Don't divide POINT by 10.
14610 (QCspacing, QCdpi): New variables.
14611 (syms_of_font): Initialize them.
14612 (font_pixel_size): New function.
14613 (font_put_extra): New function.
14614 (font_parse_xlfd): Fix handling of font size. Add QCdpi property
14616 (font_parse_fcname): Handle enumerated values (e.g. bold).
14617 Fix handling font size. Add QCname property that contains only
14618 unknown properties.
14619 (font_score): Change argument. Change caller. Pay attention to
14620 FONT_PIXEL_SIZE_QUANTUM.
14621 (font_sort_entites, font_list_entities, font_find_for_lface)
14622 (font_open_for_lface, font_open_by_name): Fix handling of font size.
14623 (Ffont_spec): Add QCname property that contains only unknown properties.
14625 * ftfont.c (ftfont_list): Use assq_no_quit, not Fassq. Don't
14626 include weight in listing pattern, instead check weight of each
14627 listed font. Don't include scalable in pattern. Pay attention to
14628 FONT_PIXEL_SIZE_QUANTUM.
14630 2008-02-01 Kenichi Handa <handa@m17n.org>
14632 * font.c (font_parse_fcname): Fix parsing of point-size.
14633 (font_unparse_fcname): Produce symbolic names for style properties.
14634 (font_list_entities): Handle float size correctly.
14635 (font_open_by_name): Prefer `normal' property values if the name
14636 doesn't specify them.
14638 * fontset.c (Finternal_char_font): Use font_get_name, not
14641 * ftfont.c (ftfont_pattern_entity): Use the numeric value 100 for
14642 FC_WEIGHT_REGULAR. Exclude FC_SIZE and FC_PIXEL_SIZE from listing
14643 pattern. Don't force scalable.
14645 * xftfont.c (xftfont_open): For generating a name, start from
14648 2008-02-01 Jan Djärv <jan.h.d@swipnet.se>
14650 * frame.h (x_new_fontset2): Fix prototype.
14652 2008-02-01 Kenichi Handa <handa@m17n.org>
14654 * font.h (struct font_driver): Delete member parse_name.
14655 (font_match_p, font_get_spec, font_parse_fcname)
14656 (font_unparse_fcname): Extern them.
14657 (font_get_name): Adjust prototype.
14659 * font.c (XLFD_SMALLNUM_MASK): Delete this macro.
14660 (XLFD_LARGENUM_MASK): Delete XLFD_ENCODING_MASK from it.
14661 (font_expand_wildcards): Fix handling ENCODING field. Avoid
14662 unnecessary checks for weight, slant, and swidth.
14663 (font_parse_fcname): New function.
14664 (font_unparse_fcname): New function.
14665 (font_parse_name): New function.
14666 (font_match_p): New function.
14667 (font_get_name): Change return value to Lisp string.
14668 (font_get_spec): New function.
14669 (Qunspecified, Qignore_defface): Don't extern them.
14670 (font_find_for_lface): Assume that LFACE is fully specified.
14671 (font_load_for_face): If lface[LFACE_FONT_INDEX] is an font
14672 object, use it for FACE.
14673 (font_open_by_name): Call Ffont_spec with QCname prop. Don't call
14674 driver->parse_name.
14675 (Ffont_spec): Call font_parse_name, not font_parse_xlfd.
14677 * fontset.h (new_fontset_from_font) [USE_FONT_BACKEND]: Adjust
14680 * fontset.c (new_fontset_from_font) [USE_FONT_BACKEND]: Delete
14681 argument F. Don't call Fnew_fontset. Instead, directly call
14684 * frame.h (x_new_fontset2) [USE_FONT_BACKEND]: Adjust prototype.
14686 * frame.c (x_set_font) [USE_FONT_BACKEND]: Adjust for the change
14689 * ftfont.c (Qmonospace, Qsans_serif, Qserif, Qmono, Qsans)
14690 (Qsans__serif): New variables.
14691 (ftfont_generic_family_list): New variable.
14692 (syms_of_ftfont): Initialize the above variables.
14693 (ftfont_pattern_entity): Delete argument NAME.
14694 (ftfont_list_generic_family): New function.
14695 (ftfont_parse_name): Delete this function.
14696 (ftfont_list): Try generic family only when FcFontList found no font.
14697 (ftfont_list_family): Fix args to FcObjectSetBuild.
14699 * xfaces.c (check_lface_attrs) [USE_FONT_BACKEND]: Accept font
14700 object in attrs[LFACE_FONT_INDEX].
14701 (set_lface_from_font_name): Cancel all changes for font-backend.
14702 (set_lface_from_font_and_fontset) [USE_FONT_BACKEND]: New
14704 (Finternal_set_lisp_face_attribute) [USE_FONT_BACKEND]: Accept a
14705 font object in QCfont attribute.
14706 (set_font_frame_param) [USE_FONT_BACKEND]: Likewise.
14707 (realize_default_face) [USE_FONT_BACKEND]: Call
14708 set_lface_from_font_and_fontset.
14710 * xfns.c (x_default_font_parameter) [USE_FONT_BACKEND]: Try also
14711 "fixed", and signal error here if no suitable font was found.
14713 * xfont.c (xfont_parse_name): Delete this function.
14715 * xftfont.c (xftfont_open): Change coding style of error
14716 handling. Generate fontconfig's fontname pattern.
14718 * xterm.h (struct x_output) [USE_FONT_BACKEND]: New member fontp.
14719 (FRAME_FONT_OBJECT) [USE_FONT_BACKEND]: New macro.
14721 * xterm.c (x_new_fontset2) [USE_FONT_BACKEND]: Change arguments.
14722 Both args FONTSET and FONT_OBJECT must be existing ones.
14724 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14726 * macterm.c (mac_set_unicode_keystroke_event): Don't use MAKE_CHAR.
14728 2008-02-01 Kenichi Handa <handa@m17n.org>
14730 * xfont.c (xfont_open, xfont_encode_char): Fix typo.
14732 * font.h (struct font): Fix typo.
14734 * font.c (enum xlfd_field_index): Rename XLFD_XXX_SIZE_INDEX to
14736 (enum xlfd_field_mask): New enum.
14737 (intern_font_field): Changed argument. Change caller. If digits
14738 are followed by non-digits, return a symbol.
14739 (font_expand_wildcards): New function.
14740 (font_parse_xlfd): Fix wildcard handling.
14741 (Ffont_spec): If :name is specified, reflect the info in the other
14744 * ftfont.c (ftfont_pattern_entity): Fix typo.
14745 (ftfont_list): Enforce FC_LANG in PATTERN to cancel the effect of
14748 2008-02-01 Kenichi Handa <handa@m17n.org>
14750 * font.h (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Extern them.
14752 * font.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move from ftfont.c.
14753 (font_unparse_xlfd): Fix argument type declaration. Append "*" if
14754 registry doesn't specify encoding part.
14755 (font_find_for_lface): Pay attention to LFACE_FONT_INDEX.
14756 (font_open_by_name): At first try parsing the name.
14757 (syms_of_font): Declare Qiso8859_1, Qiso10646_1, and Qunicode_bmp
14760 * fontset.c (reorder_font_vector): Pay attention to the case that
14761 the 3rd element of font_def is nil.
14762 (fontset_font): For the default fontset, append one more fontset
14763 elements for a script-based font specification. Don't add script
14764 attribute on finding a font.
14765 (new_fontset_from_font): Unconditionally set FONTSET_ASCII to the
14767 (fontset_ascii_font): If a font can't be opened, return nil.
14769 * ftfont.c (Qiso8859_1, Qiso10646_1, Qunicode_bmp): Move to font.c.
14770 (ftfont_pattern_entity): New function.
14771 (ftfont_get_cache): Assume that freetype_font_cache is already
14773 (ftfont_list): Handle the case that a file is specified in font
14774 name. Use ftfont_pattern_entity to generate entities.
14775 (ftfont_has_char): Check if the pattern contains FC_CHARSET.
14776 (syms_of_ftfont): Initialize freetype_font_cache.
14778 * xftfont.c (xftfont_open): Make the font name fontconfig's
14779 style. Add BLOCK_INPUT and UNBLOCK_INPUT.
14780 (xftfont_close): Free font->font.name if not NULL.
14782 * xfont.c (xfont_list): If script is specified for a font, return
14784 (xfont_list_family): Declare argument type.
14786 * xfaces.c (set_lface_from_font_name): If a font doesn't have a
14787 name, set LFACE_FONT (lface) to nil.
14789 * xterm.c (x_new_fontset2): If an ASCII font couldn't be loaded,
14792 2008-02-01 Kenichi Handa <handa@m17n.org>
14794 * emacs.c (main): Check -enable-font-backend arg after the check of -nl.
14795 (standard_args): Add "-enable-font-backend".
14797 2008-02-01 Kenichi Handa <handa@m17n.org>
14799 * xftfont.c (xftfont_default_fid): Set fid_known to 1.
14800 (struct xftdraw_list, xftdraw_list): Delete them.
14801 (register_xftdraw, check_xftdraw): Delete them.
14802 (xftfont_prepare_face): Don't call register_xftdraw.
14803 (xftfont_done_face): Don't call check_xftdraw.
14804 (xftfont_draw): Get background color only when with_background is
14807 * xfont.c (xfont_encode_char): Fix calculation of char2b.
14809 2008-02-01 Kenichi Handa <handa@m17n.org>
14811 These changes are for the new font handling codes.
14813 * Makefile.in (ALL_CFLAGS): Add @FREETYPE_CFLAGS@,
14814 @FONTCONFIG_CFLAGS@, and @LIBOTF_CFLAGS@.
14815 (LIB_X11_LIB): If HAVE_XFT is defined, set to @XFT_LIBS@.
14816 (FONTSRC, FONTOBJ): New variables.
14817 (obj): Add $(FONTOBJ).
14818 (SOME_MACHINE_OBJECTS): Lib_X11_Lib.
14819 (LIBES): Add @FREETYPE_LIBS@, @FONTCONFIG_LIBS@, and
14821 (font.o, ftfont.o, xfont.o, xftfont.o, ftxfont.o): New targets.
14822 (fontset.o, xdisp.o, xfaces.o, xfns.o, xterm.o): Depend on $(FONTSRC).
14824 * font.h, font.c, xfont.c, ftfont.c, xftfont.c, ftxfont.c: New files.
14826 * character.h (Vscript_representative_chars): Extern it.
14828 * character.c (Vscript_representative_chars): New variable.
14829 (syms_of_character): Declare it as a Lisp variable.
14831 * composite.c (get_composition_id) [USE_FONT_BACKEND]: If
14832 enable_font_backend is nonzero, accept the composition method
14833 COMPOSITION_WITH_GLYPH_STRING.
14835 * composite.h (enum composition_method) [USE_FONT_BACKEND]: New
14836 enumeration COMPOSITION_WITH_GLYPH_STRING.
14838 * dispextern.h (struct glyph_string) [USE_FONT_BACKEND]: New
14839 members clip_x, clip_y, clip_width, and clip_height.
14840 (struct face) [USE_FONT_BACKEND]: New members font_info and extra.
14842 * emacs.c (main) [USE_FONT_BACKEND]: Handle arg
14843 --enable-font-backend. Call syms_of_font.
14845 * fns.c (assoc_no_quit): New function.
14847 * fontset.h (FONT_INFO_FROM_FACE): New macro.
14848 (face_for_font, new_fontset_from_font)
14849 (fontset_ascii_font) [USE_FONT_BACKEND]: Extern them.
14851 * fontset.c [USE_FONT_BACKEND]: Include "font.h".
14852 (fontset_font, fontset_ascii, face_for_char)
14853 (make_fontset_for_ascii_face, Ffont_info)
14854 (Finternal_char_font) [USE_FONT_BACKEND]: If enable_font_backend
14855 is nonzero, use font-backend mechanism.
14856 (find_font_encoding): Make it non-static.
14857 (new_fontset_from_font, fontset_ascii_font) [USE_FONT_BACKEND]:
14860 * frame.h (struct frame): New members resx and resy.
14861 (struct frame) [USE_FONT_BACKEND]: New member font_driver_list.
14862 (x_new_fontset2) [USE_FONT_BACKEND]: Extern it.
14864 * frame.c [USE_FONT_BACKEND]: Include "font.h".
14865 (make_frame, x_set_font) [USE_FONT_BACKEND]: Use font-backend mechanism.
14867 * lisp.h (assoc_no_quit): Extern it.
14869 * xdisp.c: If USE_FONT_BACKEND is defined, include "font.h".
14870 Through out the file, use FONT_INFO_FROM_FACE instead of
14871 FONT_INFO_FROM_ID, use get_per_char_metric instead of
14872 rif->per_char_metric.
14873 (handle_composition_prop) [USE_FONT_BACKEND]: If the composition
14874 method is COMPOSITION_WITH_GLYPH_STRING, just set it->c to ' '.
14875 (get_glyph_face_and_encoding, fill_composite_glyph_string)
14876 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
14877 (x_produce_glyphs) [USE_FONT_BACKEND]: If enable_font_backend is
14878 nonzero, use font-backend mechanism.
14879 (get_per_char_metric): New function.
14881 * xfaces.c [USE_FONT_BACKEND]: Include "font.h".
14882 (set_lface_from_font_name)
14883 (set_font_frame_param, free_realized_face)
14884 (prepare_face_for_display, clear_face_gcs)
14885 (Finternal_set_font_selection_order, realize_x_face)
14886 [USE_FONT_BACKEND]: If enable_font_backend is nonzero, use
14887 font-backend mechanism.
14888 (clear_face_cache) [USE_FONT_BACKEND]: Don't call clear_font_table.
14889 (load_face_font) [USE_FONT_BACKEND]: Abort.
14890 (face_symbolic_value, face_symbolic_weight, face_symbolic_slant)
14891 (face_symbolic_swidth, face_for_font) [USE_FONT_BACKEND]: New functions.
14893 * xfns.c [USE_FONT_BACKEND]: Include "font.h".
14894 (x_default_font_parameter) [USE_FONT_BACKEND]: New function.
14895 (Fx_create_frame) [USE_FONT_BACKEND]: If enable_font_backend is
14896 nonzero, register all available font drivers. Call
14897 x_default_font_parameter for deciding a font.
14898 (x_create_tip_frame) [USE_FONT_BACKEND]: Likewise.
14900 * xterm.c [USE_FONT_BACKEND]: Include "font.h".
14901 (x_set_mouse_face_gc, x_set_glyph_string_clipping)
14902 (x_set_glyph_string_clipping_exactly)
14903 (x_compute_glyph_string_overhangs)
14904 (x_draw_glyph_string_foreground)
14905 (x_draw_composite_glyph_string_foreground, x_draw_glyph_string)
14906 (x_free_frame_resources) [USE_FONT_BACKEND]: If
14907 enable_font_backend is nonzero, use font-backend mechanism.
14908 (x_new_fontset2) [USE_FONT_BACKEND]: New function.
14910 2008-02-01 Kenichi Handa <handa@m17n.org>
14912 * coding.c (coding_inherit_eol_type): If PARENT is nil, inherit from
14914 (syms_of_coding): Initialize system_eol_type.
14916 * process.c (Fset_process_coding_system): Inherit system's eol
14917 format if necessary.
14919 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14921 * macgui.h (USE_ATSUI): Don't enable on emacs-unicode-2 branch.
14923 2008-02-01 Kenichi Handa <handa@m17n.org>
14925 * coding.c (decode_eol): Pay attention to buffer relocation in
14927 (decode_coding): Call decode_eol before restoring undo_list.
14929 2008-02-01 Kenichi Handa <handa@m17n.org>
14931 * charset.c (Fdefine_charset_internal): Fix setting of
14934 2008-02-01 Kenichi Handa <handa@m17n.org>
14936 * keyboard.c (read_char): Check if C is a character or not before
14937 looking up Vkeyboard_translate_table.
14939 2008-02-01 Kenichi Handa <handa@m17n.org>
14941 * coding.c (DECODE_EMACS_MULE_20_RELATIVE_COMPOSITION): Fix
14942 condition to terminate the loop.
14944 2008-02-01 Kenichi Handa <handa@m17n.org>
14946 * coding.c (produce_composition): Compare charbuf[i] instead of
14948 (Fterminal_coding_system): Use EQ to compare Lisp objects.
14950 2008-02-01 Kenichi Handa <handa@m17n.org>
14952 * coding.c (DECODE_COMPOSITION_START): If the source is short, set
14953 coding->result to CODING_RESULT_INSUFFICIENT_SRC.
14954 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK after the call of
14956 (emacs_mule_char): Handle old style (Emacs 20) component character
14958 (DECODE_EMACS_MULE_COMPOSITION_RULE_20)
14959 (DECODE_EMACS_MULE_20_RULEBASE_COMPOSITION): Fix parsing a
14961 (decode_coding_emacs_mule): Handle invalid bytes correctly.
14963 2008-02-01 Kenichi Handa <handa@m17n.org>
14965 * coding.c (encode_coding_ccl): Allocate destination dynamically
14968 2008-02-01 Kenichi Handa <handa@m17n.org>
14970 * ccl.c (Fccl_execute_on_string): Fix the condition of terminating
14971 the loop. When quitted, show a proper error message.
14973 2008-02-01 Kenichi Handa <handa@m17n.org>
14975 * xterm.c (x_set_glyph_string_clipping_exactly): Set
14976 src->clip_head and src->clip_tail temporarily instead of src->hl.
14978 * ccl.c (CCL_WRITE_STRING): Handle a flag bit for multibyte
14979 character sequence.
14980 (Fccl_execute_on_string): Use ASET, not XSET.
14982 2008-02-01 Kenichi Handa <handa@m17n.org>
14984 * search.c (search_buffer): Fix handling of "\\" in a trivial regexp.
14986 2008-02-01 Kenichi Handa <handa@m17n.org>
14988 * coding.c (decode_coding): Fix the condition of terminating the
14991 2008-02-01 Kenichi Handa <handa@m17n.org>
14993 * data.c (Faset): On setting a character bigger than 255 in a
14994 unibyte string, signal an error instead of make the string multibyte.
14996 2008-02-01 Kenichi Handa <handa@m17n.org>
14998 * charset.c (map_charset_chars): Fix for ascii-compatible charset
14999 made by a mapping table.
15001 2008-02-01 Kenichi Handa <handa@m17n.org>
15003 * xdisp.c (fill_composite_glyph_string): Check s->face is NULL or
15005 (BUILD_COMPOSITE_GLYPH_STRING): If C is TAB, set s->face to NULL.
15006 (x_produce_glyphs): If CH is TAB, set cmp->offsets properly.
15008 * xterm.c (x_draw_composite_glyph_string_foreground): Check
15009 s->face is NULL or not.
15011 2008-02-01 Kenichi Handa <handa@m17n.org>
15013 * xterm.c (x_set_glyph_string_clipping_exactly): New function.
15014 (x_draw_glyph_string): Fix drawing of right_overhang and
15015 left_overhang around/on cursor.
15017 * xdisp.c (draw_glyphs): Fix inclusion of right_overwriting glyphs.
15019 2008-02-01 Kenichi Handa <handa@m17n.org>
15021 * xdisp.c (x_produce_glyphs): Handle composition with TAB.
15023 2008-02-01 Kenichi Handa <handa@m17n.org>
15025 * coding.c (Fdefine_coding_system_internal)
15026 (Fdefine_coding_system_alias): Avoid a duplicated element in
15027 Vcoding_system_alist.
15029 2008-02-01 Kenichi Handa <handa@m17n.org>
15031 * xterm.c (handle_one_xevent): Handle keysyms 0x1000000..0x10000FF.
15033 * coding.c (Qcoding_system_define_form): New variable.
15034 (syms_of_coding): Intern and staticpro it.
15035 (Fcoding_system_p): Check Qcoding_system_define_form.
15036 (Fcheck_coding_system): Try to autoload the definition of CODING-SYSTEM.
15038 * coding.h (CODING_SYSTEM_P): If ID is not available, call
15040 (CHECK_CODING_SYSTEM): If ID is not available, call
15041 Fcheck_coding_system.
15042 (CHECK_CODING_SYSTEM_GET_SPEC, CHECK_CODING_SYSTEM_GET_ID):
15043 Try also Fcheck_coding_system.
15045 2008-02-01 Kenichi Handa <handa@m17n.org>
15047 * coding.c (code_conversion_restore): GCPRO arg.
15049 2008-02-01 Kenichi Handa <handa@m17n.org>
15051 * character.c (lisp_string_width): Check multibyteness of STRING.
15053 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15055 * macterm.c (mac_encode_char): Call ccl_driver with the last arg
15056 Qnil. Use JIS_TO_SJIS instead of ENCODE_SJIS.
15057 (decode_mac_font_name): Use decode_coding_c_string instead of
15059 (x_load_font): Initialize fontp->fontset to -1. Set
15060 fontp->encoding_type.
15062 2008-02-01 Kenichi Handa <handa@m17n.org>
15064 * search.c (search_buffer): Give up BM search on case-fold-search
15065 if one of a target character has a case-equivalence of different
15066 byte length even if that target charcter is an ASCII.
15067 (simple_search): Fix calculation of byte length of matched text.
15068 (boyer_moore): Fix handling of case-equivalent multibyte characters.
15070 2008-02-01 Kenichi Handa <handa@m17n.org>
15072 * coding.c (decode_coding): Fix handling of invalid bytes.
15074 2008-02-01 Kenichi Handa <handa@m17n.org>
15076 * xterm.c (handle_one_xevent): Handle keysyms directly mapped to
15077 Unicode characters.
15079 2008-02-01 Kenichi Handa <handa@m17n.org>
15081 * coding.c (encode_coding_object): If a pre-write-conversion
15082 function makes a new buffer, kill it.
15084 2008-02-01 Kenichi Handa <handa@m17n.org>
15086 * coding.c (QCascii_compatible_p): New variable.
15087 (syms_of_coding): Initialize it.
15088 (ONE_MORE_BYTE, ONE_MORE_BYTE_NO_CHECK): Decrement `src' before
15089 calling string_char.
15090 (record_conversion_result): Add `default:' case.
15091 (coding_charset_list): Delete unused variable `coding_type'.
15092 (Fdefine_coding_system_internal): Add `ascii-compatible-p'
15093 property in the plist of the coding system.
15094 (Fcoding_system_put): Check QCascii_compatible_p.
15096 2008-02-01 Miles Bader <miles@gnu.org>
15098 * xfaces.c (Finternal_lisp_face_equal_p): Restore previously
15099 removed calculation of frame `f', as it's now used.
15101 2008-02-01 Kenichi Handa <handa@m17n.org>
15103 * Makefile.in (RUN_TEMACS): Include "-nl" if HAVE_SHM is defined.
15104 (emacs${EXEEXT}): Run $(RUN_TEMACS) unconditionally.
15105 (UNIDATA): New variable.
15106 (${lispsource}international/charprop.el): Depends on ${UNIDATA}.
15107 (bootstrap-emacs${EXEEXT}): Depends on charprop.el. Run
15108 $(RUN_TEMACS) unconditionally.
15110 2008-02-01 Kenichi Handa <handa@m17n.org>
15112 * Makefile.in (temacs${EXEEXT}): Build charprop.el if necessary.
15113 (admindir): New variable.
15114 ($(lispsource)international/charprop.el): New target.
15116 2008-02-01 Miles Bader <miles@gnu.org>
15118 * character.c (chars-in-region): Remove obsolete function.
15119 (syms_of_character): Remove its initialization.
15121 2008-02-01 Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net>
15123 * w32select.c (validate_coding_system)
15124 (setup_windows_coding_system): New functions.
15125 (convert_to_handle_as_coded, Fw32_get_clipboard_data): Use
15126 setup_windows_coding_system.
15127 (setup_config, Fw32_get_clipboard_data): Use
15128 validate_coding_system.
15129 (Fx_selection_exists): Move call to setup_config to a place
15130 where signals are allowed.
15132 * lisp.h (Fcoding_system_base, Fcoding_system_eol_type)
15133 (Fcheck_coding_system): Add declarations.
15135 2008-02-01 Kenichi Handa <handa@m17n.org>
15137 * charset.c (load_charset_map_from_vector): Fix for the first iteration.
15139 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15141 * macfns.c (Fx_create_frame, x_create_tip_frame): Pass Lisp
15142 string as the second argument for x_new_fontset.
15144 2008-02-01 Kenichi Handa <handa@m17n.org>
15146 * coding.c (decode_coding_object): Use safe_call1 instead of call1.
15147 (encode_coding_object): Use safe_call instead of call2.
15149 2008-02-01 Kenichi Handa <handa@m17n.org>
15151 * fontset.c (Fset_fontset_font): Check family element of a given vector.
15153 * Makefile.in (lisp): Include charprop.el.
15155 2008-02-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15157 * macfns.c (Fx_create_frame, x_create_tip_frame): Fix crash.
15158 Not sure if it's unnecessary.
15160 2008-02-01 Steven Tamm <steventamm@mac.com>
15162 * macfns.c (Fx_create_frame, x_create_tip_frame): ifdef'd out
15163 some possibly unnecessary fontset checking code that crashed
15164 when creating a new frame.
15166 2008-02-01 Kenichi Handa <handa@m17n.org>
15168 * xfaces.c (merge_faces): Fix argument to lookup_derived_face and
15171 * xdisp.c (Fformat_mode_line): Fix argument to lookup_named_face.
15173 * fringe.c (draw_fringe_bitmap_1): Fix argument to lookup_named_face.
15175 2008-02-01 Kenichi Handa <handa@m17n.org>
15177 * coding.c: Cancel the change done in HEAD on 2008-02-01.
15178 (coding_charset_list): New function.
15180 * coding.h (coding_charset_list): Extern it.
15182 2008-02-01 Kenichi Handa <handa@m17n.org>
15184 * fontset.c (Fset_fontset_font): Call find_font_encoding with
15185 concatenation of family and registry.
15187 2008-02-01 Kenichi Handa <handa@m17n.org>
15189 * character.h (BYTE8_STRING): Fix typo.
15191 * editfns.c (Ftranslate_region_internal): Don't convert unibyte
15192 string to multibyte (sync to HEAD).
15194 * casefiddle.c (casify_region): Handle changes in byte-length
15195 using replace_range_2 (sync to HEAD).
15197 2008-02-01 Andreas Schwab <schwab@suse.de>
15199 * chartab.c (map_char_table): GCPRO table and arg.
15201 2008-02-01 Kenichi Handa <handa@m17n.org>
15203 * syntax.c (skip_syntaxes): Return lispy 0 (not nil) if point is
15206 2008-02-01 Kenichi Handa <handa@m17n.org>
15208 * fontset.c (fs_load_font): Use fast_string_match_ignore_case
15209 instead of fast_c_string_match_ignore_case.
15210 (find_font_encoding): Change argument to Lisp_Object. Use
15211 fast_string_match_ignore_case instead of
15212 fast_c_string_match_ignore_case. Change caller.
15214 2008-02-01 Kenichi Handa <handa@m17n.org>
15216 * xdisp.c (get_next_display_element): In unibyte case, decide to
15217 display in octal form by checking a character by
15218 UNIBYTE_CHAR_HAS_MULTIBYTE_P.
15220 * charset.c (Fset_unibyte_charset): Setup unibyte_has_multibyte_table.
15222 * character.c (unibyte_has_multibyte_table): New variable.
15224 * character.h (unibyte_has_multibyte_table): Extern it.
15225 (UNIBYTE_CHAR_HAS_MULTIBYTE_P): New macro.
15227 2008-02-01 Kenichi Handa <handa@m17n.org>
15229 * coding.c (encode_coding_iso_2022): Fix handling of charset
15232 2008-02-01 Kenichi Handa <handa@m17n.org>
15234 * coding.c (setup_coding_system): If coding_system is nil, use
15236 (Fterminal_coding_system): Return nil if terminal coding system is
15238 (syms_of_coding): Define coding-system `undecided' here. Setup
15239 terminal_coding as `undecided'.
15241 2008-02-01 Kenichi Handa <handa@m17n.org>
15243 * xdisp.c (message_dolog, set_message_1): Call
15244 unibyte_char_to_multibyte with arg type int.
15246 * lread.c (read1): Fix reading of a char-table.
15248 * print.c (print_object): Include sub char-table in circularities
15251 2008-02-01 Kenichi Handa <handa@m17n.org>
15253 * keymap.c (where_is_internal_2): Fix for the case that KEY is a cons.
15254 Append the found sequences in car of ARGS instead of prepending.
15256 2008-02-01 Kenichi Handa <handa@m17n.org>
15258 * fileio.c (report_file_error): Make a unibyte string from
15259 strerror (errorno).
15260 (Fsubstitute_in_file_name): Fix the arg to
15261 unibyte_char_to_multibyte. It is evaluated twice.
15263 2008-02-01 Kenichi Handa <handa@m17n.org>
15265 * charset.h (CHAR_CHARSET): Shortcut for ASCII case.
15267 2008-02-01 Kenichi Handa <handa@m17n.org>
15269 * coding.c (detect_coding_utf_16): Don't set detect_info->found if
15271 (detect_coding, detect_coding_system): Optimization for ISO-2022
15272 when no 8-bit data is found.
15274 2008-02-01 Jason Rumney <jasonr@gnu.org>
15276 * w32fns.c (x_to_w32_font): Update to use new coding struct.
15278 2008-02-01 Kenichi Handa <handa@m17n.org>
15280 * charset.c (Fdeclare_equiv_charset, Fiso_charset): Fix handing of
15283 2008-02-01 Steven Tamm <steventamm@mac.com>
15285 * macterm.c (mac_encode_char): Add charset argument and update
15286 to use encoding_type.
15287 (x_new_font, x_new_fontset): Merge in changes from xterm.c;
15288 switch to pure fontset.
15289 (decode_mac_font_name): Temporarily remove decoding.
15290 (x_font_name_to_mac_font_name): Temporarily remove encoding.
15291 (x_load_font): Temporarily remove encoding.
15293 2008-02-01 Kenichi Handa <handa@m17n.org>
15295 * xfaces.c (Fface_font): If frame is not on a window system,
15296 ignore CHARACTER arg. If HAVE_WINDOW_SYSTEM is not defined, don't
15297 refer to face->font.
15298 (split_font_name_into_vector, build_font_name_from_vector)
15299 (lookup_non_ascii_face, realize_non_ascii_face): Define them only
15300 when HAVE_WINDOW_SYSTEM is defined.
15302 2008-02-01 Kenichi Handa <handa@m17n.org>
15304 * xdisp.c (BUILD_GLYPH_STRINGS): Check if s is NULL.
15305 (x_produce_glyphs): Fix setting of members of cmp in case
15306 cmp->glyph_len is zero.
15308 * fontset.c (Fset_fontset_font): Fix docstring.
15309 (Ffontset_info): Make it backward compatible. New arg ALL.
15311 2008-02-01 Kim F. Storm <storm@cua.dk>
15313 * process.c (read_process_output): Grow decoding_buf when needed;
15314 this could cause a crash in allocate_string and compact_small_strings.
15316 2008-02-01 Kenichi Handa <handa@m17n.org>
15318 * fileio.c (WRITE_BUF_SIZE): Delete this macro.
15320 2008-02-01 Kenichi Handa <handa@m17n.org>
15322 * coding.c (setup_coding_system): Set coding->common_flags
15323 correctly for raw-text.
15324 (consume_chars): On encoding unibyte text by raw-text, don't check
15326 (encode_coding): On encoding by raw-text, never use translation tables.
15328 * fileio.c (e_write): Short cut for the case of no encoding.
15330 2008-02-01 Kenichi Handa <handa@m17n.org>
15332 * coding.c (detect_coding, detect_coding_system): Delete unused
15335 2008-02-01 Kenichi Handa <handa@m17n.org>
15337 * coding.c (encode_coding_utf_8): Fix handling of raw-byte char.
15338 (consume_chars): Fix handling of 8-bit bytes in unibyte source.
15340 2008-02-01 Kenichi Handa <handa@m17n.org>
15342 * coding.c (Ffind_coding_systems_region_internal): Include
15343 raw-text and no-conversion in the result.
15345 2008-02-01 Kenichi Handa <handa@m17n.org>
15347 * fontset.c (find_font_encoding): Return `ascii' for unknown encoding.
15348 (load_font_get_repertory): Delete unnecessary check of ENCODING of
15350 (font_def_arg, add_arg, from_arg, to_arg): New args.
15351 (set_fontset_font): Change argument.
15352 (Fset_fontset_font): Fix for the case that TARGET is a script
15353 name and charset name.
15354 (new_fontset_from_font_name): Fix argument to Fnew_fontset.
15356 2008-02-01 Kenichi Handa <handa@m17n.org>
15358 * fontset.c (fontset_font): Rename from fontset_face. Change return
15360 (face_suitable_for_char_p, face_for_char): Adjust for the change
15362 (make_fontset_for_ascii_face): Fix setting of the fontset element
15364 (Finternal_char_font): Use fontset_font instead of FACE_FOR_CHAR
15365 to get a font name.
15366 (Ffontset_info): Adjust for the change of fontset_font.
15368 * coding.c (emacs_mule_char): Check invalid code more rigidly.
15370 * character.h (LEADING_CODE_LATIN_1_MIN)
15371 (LEADING_CODE_LATIN_1_MAX): Delete these macros.
15373 2008-02-01 Kenichi Handa <handa@m17n.org>
15375 * editfns.c (check_translation): New function.
15376 (Ftranslate_region_internal): Handle M:N mapping.
15378 2008-02-01 Kenichi Handa <handa@m17n.org>
15380 * xfaces.c (xlfd_point_size): Set font->numeric[XLFD_PIXEL_SIZE].
15382 2008-02-01 Kenichi Handa <handa@m17n.org>
15384 * coding.c (DECODE_DESIGNATION): Set chars_96 to -1 instead of
15386 (decode_coding_iso_2022): Fix handling of invalid designation.
15388 * fileio.c (Finsert_file_contents): Be sure to call unbind_to
15389 after calling code_conversion_save.
15391 2008-02-01 Kenichi Handa <handa@m17n.org>
15393 * xdisp.c (handle_auto_composed_prop): Fix Lisp_Object/int mixup.
15395 * print.c (print_prune_string_charset): Fix Lisp_Object/int mixup.
15397 * fontset.c: Include "intervals.h".
15398 (fontset_face): Fix comparing of Lisp_Objects.
15399 (free_face_fontset, new_fontset_from_font_name): Fix
15400 Lisp_Object/int mixup.
15402 * editfns.c (Ftranslate_region_internal): Fix Lisp_Object/int mixup.
15404 * coding.c: Add many prototypes for static functions.
15405 (get_translation_table): Allow max_lookup to be NULL.
15406 (decode_coding, Ffind_coding_systems_region_internal)
15407 (Funencodable_char_position, Fcheck_coding_systems_region): Call
15408 get_translation_table with max_lookup NULL.
15410 2008-02-01 Kenichi Handa <handa@m17n.org>
15412 * coding.c (get_translation_table): Declare it as Lisp_Object.
15413 (LOOKUP_TRANSLATION_TABLE): New macro.
15414 (produce_chars, consume_chars): Use LOOKUP_TRANSLATION_TABLE
15415 instead of CHAR_TABLE_REF.
15417 2008-02-01 Kenichi Handa <handa@m17n.org>
15419 * coding.c (MAX_ANNOTATION_LENGTH): Adjust for the change of
15420 annotation data format.
15421 (ADD_ANNOTATION_DATA, ADD_COMPOSITION_DATA, ADD_CHARSET_DATA):
15422 Change arguments FROM and TO to single argument NCHARS. Change caller.
15423 (decode_coding_utf_8, decode_coding_utf_16, decode_coding_emacs_mule)
15424 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15425 (decode_coding_ccl, decode_coding_charset): Pay attention to
15426 coding->charbuf_used.
15427 (get_translation): New function.
15428 (produce_chars): New arguments translation_table and last_block.
15429 Translate characters here. Return number of carryover chars.
15431 (produce_composition): New argument pos. Change caller.
15432 Adjust for the change of annotation data format.
15433 (produce_charset, produce_annotation): Likewise.
15434 (decode_coding, encode_coding): Don't call translate_chars.
15435 (consume_chars): New arg translation_table. Change caller.
15436 (translate_chars): Delete.
15437 (syms_of_coding): Make translation-table's number of extra slots 2.
15439 2008-02-01 Kenichi Handa <handa@m17n.org>
15441 * search.c (simple_search): Fix setting this_pos_byte in backward
15444 * coding.c (detect_coding_emacs_mule): Fix counting of encoded
15446 (detect_coding_ccl): Fix setting of the variable valids.
15448 2008-02-01 Kenichi Handa <handa@m17n.org>
15450 * xterm.c (x_list_fonts): Fix the detection of an auto-scaled font.
15452 * coding.c (decode_coding_utf_16): Fix handling of surrogate pair.
15454 * editfns.c (Ftranslate_region_internal): Rename from
15455 Ftranslate_region. Accept a char-table in TABLE.
15456 (syms_of_editfns): Defsubr Stranslate_region_internal.
15458 * xfaces.c (set_lface_from_font_name): If a font is specified for
15459 a frame, generate a fontset from the font.
15460 (build_scalable_font_name): If the scalable font is requested for
15461 a specific size, don't change that size.
15462 (try_font_list): Try a scalable font also in the case that a
15463 pattern string is specified.
15465 2008-02-01 Kenichi Handa <handa@m17n.org>
15467 * xfaces.c (Fface_font): New optional arg CHARACTER.
15469 2008-02-01 Kenichi Handa <handa@m17n.org>
15471 * charset.h (CHARSET_OFFSET): New macro.
15473 2008-02-01 Kenichi Handa <handa@m17n.org>
15475 * xterm.c (x_get_font_repertory): Fix for non-Unicode-bmp charset.
15477 * fontset.c (fontset_face): Handle the case that repertory is a
15479 (find_font_encoding): Return nil for unknown encoding.
15480 (Fset_fontset_font): Ignore a font of unknown encoding.
15482 2008-02-01 Kenichi Handa <handa@m17n.org>
15484 * keymap.c (describe_vector): Handle default value of a char table.
15486 * fontset.c (fontset_face): Handle fallback fonts correctly.
15487 (Ffontset_info): Return infomation about fallback fonts.
15489 2008-02-01 Kenichi Handa <handa@m17n.org>
15491 * fontset.c (FONTSET_DEFAULT): New macro.
15492 (FONTSET_ADD, fontset_add): Handle the case that range is nil.
15493 (Fset_fontset_font): Change the 2nd arg name to TARGET, and handle
15494 the case that it is nil.
15495 (dump_fontset): Call FONTSET_DEFAULT, not FONTSET_FALLBACK.
15496 (syms_of_fontset): Set char-table-extra-slots property of fontset to 9.
15498 * charset.h (CHAR_CHARSET_P): Fix for the case that the method is
15499 subset or superset.
15501 2008-02-01 Kenichi Handa <handa@m17n.org>
15503 * emacs.c (main): Call init_charset after syms_of_XXX.
15505 * charset.c (Vcharset_map_directory): Delete.
15506 (Vcharset_map_path): New variable.
15507 (load_charset_map_from_file): Use Vcharset_map_path instead.
15508 (init_charset): Initialize Vcharset_map_path.
15509 (syms_of_charset): Delete declaration of "charset-map-directory",
15510 add declaration of "charset-map-path".
15512 2008-02-01 Kenichi Handa <handa@m17n.org>
15514 * fns.c (string_char_to_byte, string_byte_to_char): Optimize for
15517 * fileio.c (Finsert_file_contents): Avoid detecting a code twice.
15519 * coding.c (detect_coding_iso_2022): Fix handling of SS2 and SS3.
15520 (detect_coding, detect_coding_system): Treat '\0' as normal ASCII byte.
15522 2008-02-01 Kenichi Handa <handa@m17n.org>
15524 * coding.h (SJIS_TO_JIS2, JIS_TO_SJIS2): New macros.
15526 * coding.c (QCmnemonic, QCdefalut_char)
15527 (QCdecode_translation_table, QCencode_translation_table)
15528 (QCpost_read_conversion, QCpre_write_conversion): New variables.
15529 (get_translation_table): Return a list of translation tables if
15531 (decode_coding): Call get_translation_table with ENCODEP 0.
15532 (char_encodable_p): If translation_table is non-nil, always call
15534 (Fdefine_coding_system_internal): Accept list of translation
15535 tables as :encode-translation-table and :decode-translation-table.
15536 (Fcoding_system_put): New function.
15537 (syms_of_coding): Declare new symbols. Defsubr
15538 Scoding_system_put.
15539 (decode_coding_sjis, encode_coding_sjis): Handle 4th charset,
15540 typically JISX0212.
15542 * charset.c (map_charset_chars): Fix arg to map_charset_chars in
15543 when the charset is superset type.
15545 * character.c (translate_char): Accept list of translation tables.
15547 2008-02-01 Kenichi Handa <handa@m17n.org>
15549 * coding.h (enum coding_attr_index): New member coding_attr_trans_tbl.
15550 (CODING_ATTR_TRANS_TBL): New macro.
15552 * coding.c (get_translation_table): New function.
15553 (translate_chars): Fix the bug of skipping annotation data.
15554 (decode_coding, encode_coding): Utilize get_translation_table.
15555 (char_encodable_p, Funencodable_char_position): Translate char if
15557 (Ffind_coding_systems_region_internal)
15558 (Fcheck_coding_systems_region): Setup translation table for encode
15559 in a coding system attribute vector in advance.
15560 (Fdefine_coding_system_internal): Allow a symbol as translation
15561 table. For shift-jis type coding system, allow 4th charset.
15563 2008-02-01 Kenichi Handa <handa@m17n.org>
15565 * coding.c (decode_coding_sjis): Check the first byte rigidly.
15567 * xdisp.c (get_next_display_element): Pass -1 as POS to
15568 FACE_FOR_CHAR if displaying a C-string.
15570 2008-02-01 Kenichi Handa <handa@m17n.org>
15572 * composite.c (get_composition_id): Handle xoff and yoff in a
15575 * composite.h (COMPOSITION_DECODE_RULE): New arg xoff and yoff.
15576 (struct composition): New member lbearing and rbearing.
15578 * xdisp.c (move_it_to): Optimize for the case (op & MOVE_TO_Y).
15579 (x_get_glyph_overhangs): Handle a composition glyph.
15580 (x_produce_glyphs): Setup lbearing and rbreaing for a composition glyph.
15582 * xterm.c (x_compute_glyph_string_overhangs): Handle also a
15585 2008-02-01 Kenichi Handa <handa@m17n.org>
15587 * print.c: Include charset.h.
15588 (Vprint_charset_text_property): New variable.
15589 (Qdefault): Extern it.
15590 (PRINT_STRING_NON_CHARSET_FOUND)
15591 (PRINT_STRING_UNSAFE_CHARSET_FOUND): New macros.
15592 (print_check_string_result): New variable.
15593 (print_check_string_charset_prop): New function.
15594 (print_prune_charset_plist): New variable.
15595 (print_prune_string_charset): New function.
15596 (print_object): Call print_prune_string_charset if
15597 Vprint_charset_text_property is not t.
15598 (print_interval): Print nothing if interval->plist is nil.
15599 (syms_of_print): Declare Vprint_charset_text_property as a lisp
15600 variable. Init and staticpro print_prune_charset_plist.
15602 2008-02-01 Kenichi Handa <handa@m17n.org>
15604 * fontset.c (new_fontset_from_font_name): Use the specified font
15605 for all characters in the new fontset.
15607 * macterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
15610 * xdisp.c (x_produce_glyphs): Call FACE_FOR_CHAR with POS and
15611 OBJECT args for composition too.
15613 * w32term.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with POS and
15616 2008-02-01 Kenichi Handa <handa@m17n.org>
15618 * dispextern.h (FACE_FOR_CHAR): New args POS and OBJECT.
15620 * fontset.c (reorder_font_vector): Adjust for the change of
15622 (fontset_face): New arg id. Change caller.
15623 (face_for_char): New args pos and object.
15624 (make_fontset_for_ascii_face): Adjust for the change of FONT_DEF format.
15625 (fs_query_fontset): Check NAME by Fassoc too.
15626 (Fset_fontset_font): Allow non-XLFD font name.
15627 (Ffontset_info): Adjust for the change of FONT_DEF format.
15629 * fontset.h (face_for_char): Adjust prototype.
15631 * xdisp.c (face_before_or_after_it_pos, get_next_display_element)
15632 (append_space, extend_face_to_end_of_line)
15633 (get_char_face_and_encoding, BUILD_COMPOSITE_GLYPH_STRING)
15634 (x_produce_glyphs): Call FACE_FOR_CHAR with POS and OBJECT args.
15636 * xfaces.c (compute_char_face): Call FACE_FOR_CHAR with
15637 POS and OBJECT args.
15639 * xterm.c (x_set_mouse_face_gc): Call FACE_FOR_CHAR with
15640 POS and OBJECT args.
15642 2008-02-01 Jason Rumney <jasonr@gnu.org>
15644 * w32select.c (Fw32_set_clipboard_data): Avoid potential realloc
15645 of GlobalAlloc'ed memory.
15647 2008-02-01 Kenichi Handa <handa@m17n.org>
15649 * ccl.c (Fccl_execute_on_string): Fix the condition of loop.
15651 * charset.h (charset_table_used): Delete extern.
15653 * charset.c (charset_table_used): Make it static.
15654 (map_charset_chars): Fix args to c_function with.
15656 * chartab.c (map_sub_char_table_for_charset): Fix args to
15659 * coding.h (enum coding_result_code): Delete
15660 CODING_RESULT_INSUFFICIENT_CMP, add CODING_RESULT_INVALID_SRC.
15662 * coding.c (Qinsufficient_source, Qinconsistent_eol)
15663 (Qinvalid_source, Qinterrupted, Qinsufficient_memory): New variables.
15664 (Vlast_code_conversion_error): New variables.
15665 (syms_of_coding): DEFSYM or DEFVAR_LISP them.
15666 (ONE_MORE_BYTE): Record error if any instead of signaling an
15667 error. If non-ASCII multibyte char is found, return the negative
15668 value of the code. All callers changed to check it.
15669 (ONE_MORE_BYTE_NO_CHECK): Likewise.
15670 (record_conversion_result): New function. Change all codes setting
15671 coding->result to call this function.
15672 (detect_coding_utf_8, decode_coding_utf_8)
15673 (detect_coding_emacs_mule, detect_coding_sji, detect_coding_big5):
15674 Don't use the local variable incomplete.
15675 (emacs_mule_char): Change the second arg to `const'.
15676 (decode_coding): Fix of flushing out unprocessed data.
15677 (make_conversion_work_buffer): Fix making of a work buffer.
15678 (decode_coding_object): Return coding->dst_object.
15680 * fontset.c (set_fontset_font): Fix args.
15682 * lisp.h (CHARACTERBITS): Define as 22.
15684 * process.c (send_process): Be sure to set coding->src_multibyte.
15686 * xdisp.c (handle_auto_composed_prop): Fix setting of limit.
15688 2008-02-01 Kenichi Handa <handa@m17n.org>
15690 * xdisp.c (handle_auto_composed_prop): Give limit to
15691 Fnext_single_char_property_change.
15693 2008-02-01 Kenichi Handa <handa@m17n.org>
15695 * composite.c (syms_of_composite): Don't make the composition hash
15698 * fontset.c (Fset_fontset_font): Fix docstring.
15700 * lisp.h (detect_coding_system): Adjust prototype.
15702 * fileio.c (kill_workbuf_unwind): Delete this function.
15703 (Finsert_file_contents): Adjust the call of detect_coding_system.
15704 Get conversion_buffer by code_conversion_save. Use the macro
15705 CODING_MAY_REQUIRE_DECODING. After decoding, update
15708 * coding.h (make_conversion_work_buffer): Delete extern.
15709 (code_conversion_save): Extern it.
15711 * coding.c (enum iso_code_class_type): Delete ISO_carriage_return.
15712 (CODING_GET_INFO): Delete argument eol_type. Change callers.
15713 (decode_coding_utf_8): Don't do eol converion.
15714 (detect_coding_utf_16): Check coding->src_chars, not
15715 coding->src_bytes. Add heuristics for those that have no signature.
15716 (decode_coding_emacs_mule, decode_coding_iso_2022)
15717 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
15718 Don't do eol converion.
15719 (adjust_coding_eol_type): Return a new coding system.
15720 (detect_coding): Don't detect eol. Fix for utf-16 detection.
15721 (decode_eol): In case of CRLF->LF conversion, use del_range_2 on
15723 (decode_coding): Pay attention to undo_list. Do eol conversion for
15724 all types of coding-systems (if necessary).
15725 (Vcode_conversion_work_buf_list): Delete it.
15726 (Vcode_conversion_reused_workbuf): Rename from
15727 Vcode_conversion_reused_work_buf.
15728 (Vcode_conversion_workbuf_name): New variable.
15729 (reused_workbuf_in_use): New variable.
15730 (make_conversion_work_buffer): Delete the arg DEPTH.
15731 (code_conversion_restore): Change argument to cons.
15732 (code_conversion_save): Delete the argument BUFFER. Change callers.
15733 (detect_coding_system): New argument src_chars. Change callers.
15734 Fix for utf-16 detection.
15735 (init_coding_once): Don't use ISO_carriage_return.
15736 (syms_of_coding): Initialize Vcode_conversion_workbuf_name and
15737 reused_workbuf_in_use.
15739 2008-02-01 Kenichi Handa <handa@m17n.org>
15741 * keymap.c (store_in_keymap): Pay attention to the case that idx
15742 is a cons specifying a character range.
15744 2008-02-01 Kenichi Handa <handa@m17n.org>
15746 * xdisp.c (handle_auto_composed_prop): Fix the case of returning
15747 HANDLED_RECOMPUTE_PROPS.
15749 * coding.c (Fdefine_coding_system_internal): Fix checking of
15750 ascii compatibility.
15752 2008-02-01 Kenichi Handa <handa@m17n.org>
15754 * charset.c (find_charsets_in_text): Delete unused locale variable.
15755 (Fset_charset_priority): Update Vemacs_mule_charset_list too.
15757 * coding.c (encode_coding_emacs_mule): Emit bytes with MSB.
15758 Resync charset_list to Vemacs_mule_charset_list.
15760 * keymap.c (store_in_keymap): Pay attention to the case that idx
15761 is a cons specifying a character range.
15763 2008-02-01 Kenichi Handa <handa@m17n.org>
15765 * composite.c (update_compositions): Bind inhibit-read-only, etc
15766 to t before calling remove-list-of-text-properties.
15768 * print.c (print_object): Always print ASCII chars as is.
15770 2008-02-01 Kenichi Handa <handa@m17n.org>
15772 * keymap.c (Fdefine_key): Fix handling of Lucid style event type list.
15774 * fns.c (Fmapconcat, Fmapcar, Fmapc): Signal an error if SEQUENCE
15777 2008-02-01 Kenichi Handa <handa@m17n.org>
15779 * syntax.c (skip_chars): Be sure to alloca char_ranges when necessary.
15781 2008-02-01 Kenichi Handa <handa@m17n.org>
15783 * xfaces.c (set_lface_from_font_name): Fix for the case that
15784 FONTNAME is not fontset name.
15786 2008-02-01 Kenichi Handa <handa@m17n.org>
15788 * fns.c (base64_encode_1): Fix previous change.
15790 2008-02-01 Kenichi Handa <handa@m17n.org>
15792 * fontset.c (set_fontset_font): New function.
15793 (Fset_fontset_font): If a font is specified for a charset, use
15794 map_charset_chars to store the font spec in a fontset.
15796 2008-02-01 Kenichi Handa <handa@m17n.org>
15798 * fontset.c (fontset_face): Create a fallback fontset on demand.
15799 (make_fontset): Don't create a fallback fontset here.
15800 (free_face_fontset): Free a fallback fontset (if any) too.
15801 (n_auto_fontsets): Delete this variable.
15802 (auto_fontset_alist): New variable.
15803 (new_fontset_from_font_name): Check auto_fontset_alist.
15804 (dump_fontset) [FONTSET_DEBUG]: Fully re-written.
15805 (Ffontset_list_all) [FONTSET_DEBUG]: New function.
15806 (syms_of_fontset): Initialize and staticpro auto_fontset_alist.
15807 Defsubr Sfontset_list_all.
15809 2008-02-01 Kenichi Handa <handa@m17n.org>
15811 * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
15813 2008-02-01 Kenichi Handa <handa@m17n.org>
15815 * fontset.c (Fnew_fontset): Check NAME more rigidly.
15817 2008-02-01 Kenichi Handa <handa@m17n.org>
15819 * editfns.c (Fgoto_char): Fix docstring.
15821 2008-02-01 Kenichi Handa <handa@m17n.org>
15823 * insdel.c (insert_from_gap): Adjust intervals correctly.
15825 2008-02-01 Jason Rumney <jasonr@gnu.org>
15827 * w32term.c (GLYPHSET, WCRANGE): Define if system headers don't.
15828 (pfnGetFontUnicodeRanges): New dynamically loaded function.
15829 (w32_initialize): Try to load it.
15830 (x_get_font_repertory): Use it if available.
15831 (w32_encode_char): Add shortcut for unicode output.
15833 * w32fns.c (w32_load_system_font): Default charset to -1.
15834 (x_to_w32_charset): Match all fonts for unicode.
15835 (w32_to_x_charset): New parameter matching. Don't return partial
15836 or wildcard charsets.
15837 (w32_to_all_x_charsets): Don't return partial or wildcard charsets.
15838 (w32_codepage_for_font): Return CP_UNICODE for unicode.
15839 (w32_to_x_font): Match charset to real charset.
15840 (enum_font_cb2): Always list unicode versions.
15842 * makefile.w32-in (temacs): Increase EMHEAP.
15844 2008-02-01 Jason Rumney <jasonr@gnu.org>
15846 * w32term.c (w32_encode_char): New charset parameter.
15847 font_info.encoding becomes encoding_type.
15848 (x_get_font_repertory): New function. Warning: stub only!
15849 (x_new_font): Return quickly if font already set.
15850 (x_new_fontset): fontsetname parameter is Lisp_Object.
15851 Use new fs_query_fontset. Try new_fontset_from_font_name.
15852 Use fontset_name for return value.
15854 * w32term.h: Declare x_get_font_repertory.
15856 * w32select.c (Fw32_set_clipboard_data): Use string_x_string_p in
15857 place of find_charset_in_text. Use encode_coding_object in place
15859 (Fw32_get_clipboard_data): Use decode_coding_c_string in place of
15862 * w32fns.c (Fx_create_frame, x_create_tip_frame): Use new version
15864 (w32_load_system_font): Initialize charset as unicode.
15865 font_info.encoding becomes encoding_type.
15866 (w32_to_x_font): Use decode_coding_c_string in place of decode_coding.
15867 (x_to_w32_font): Use encode_coding_object in place of encode_coding.
15868 (syms_of_w32fns): Set get_font_repertory_func.
15870 * w32console.c: Include character.h. Use terminal_encode_buffer
15872 (write_glyphs): Use new version of encode_terminal_code. Use
15873 encode_coding_object in place of encode_coding.
15875 * w32bdf.c (w32_load_bdf_font): Clear font_info before filling.
15876 encoding becomes encoding_type.
15878 * term.c (terminal_encode_buffer): Make externally visible.
15880 * makefile.w32-in: Add character.h dependancies.
15881 (character.o, chartab.o): New targets.
15883 2008-02-01 Kenichi Handa <handa@m17n.org>
15885 * fileio.c (Finsert_file_contents) [DOS_NT]: Use the macro
15886 CODING_ID_EOL_TYPE.
15888 2008-02-01 Andreas Schwab <schwab@suse.de>
15890 * coding.c (produce_chars): Revert last change.
15892 2008-02-01 Kenichi Handa <handa@m17n.org>
15894 * charset.h (charset_unicode): Extern it.
15896 * charset.c (string_xstring_p): Check by (C >= 0x100).
15897 (find_charsets_in_text): Change format of the arc CHARSETS. New
15899 (Ffind_charset_region, Ffind_charset_string): Adjust for the
15900 change of find_charsets_in_text.
15901 (Fsplit_char): Fix doc. Never return unknown.
15903 * chartab.c (char_table_translate): Use CHARACTERP, not INTEGERP.
15905 * coding.c (Fdefine_coding_system_alias): Update
15906 Vcoding_system_list.
15908 * fontset.c (load_font_get_repertory): Pay attention to the case
15909 that ENCODING of a font is specified by a char-table.
15911 * xterm.c (x_get_font_repertory): Handle the case that the
15912 encoding of font is other than Unicode.
15914 2008-02-01 Kenichi Handa <handa@m17n.org>
15916 * term.c (encode_terminal_code): Don't handle glyph-table. Check
15917 if a character is encodable by the terminal coding system. If
15918 not, produces proper number of `?'s. Update
15919 terminal_encode_buffer and terminal_encode_buf_size if necessary.
15920 (produce_glyphs): Check by CHAR_BYTE8_P, not SINGLE_BYTE_CHAR_P.
15922 2008-02-01 Kenichi Handa <handa@m17n.org>
15924 * term.c (terminal_encode_buffer, terminal_encode_buf_size): New
15926 (encode_terminal_code): Change argument. Encode multiple
15927 characters at once. Store the result of encoding in
15928 terminal_encode_buffer.
15929 (write_glyphs, insert_glyphs): Adjust for the change of
15930 encode_terminal_code.
15931 (term_init): Initialize terminal_encode_buffer and
15932 terminal_encode_buf_size.
15934 * coding.c (consume_chars): If coding->src_object is nil, don't
15937 2008-02-01 Kenichi Handa <handa@m17n.org>
15939 * character.c (char_string): Use ASCII_CHAR_P instead of
15940 SINGLE_BYTE_CHAR_P.
15942 2008-02-01 Kenichi Handa <handa@m17n.org>
15944 * xdisp.c (handle_auto_composed_prop): Check if the last
15945 characters of auto-composed region is newly composed with the
15946 following characters.
15947 (handle_composition_prop): Fix checking of point being inside
15950 2008-02-01 Kenichi Handa <handa@m17n.org>
15952 * fns.c (concat): Don't change multibyteness of the result by
15953 concatenating an 8-bit character.
15955 * data.c (Faset): Check newelt by CHECK_CHARACTER. Don't change
15956 multibyteness of the result when newelt is an 8-bit character.
15958 2008-02-01 Dave Love <fx@gnu.org>
15960 * xmenu.c (find_and_call_menu_selection): Make menu_bar_items_used
15963 * xfns.c (DefaultDepthOfScreen, x_encode_text): Remove unused vars.
15965 * xfaces.c (face_numeric_value): Declare dim size_t.
15966 (Finternal_lisp_face_equal_p): Remove unused f.
15968 * xdisp.c (BUILD_CHAR_GLYPH_STRINGS, display_and_set_cursor)
15969 (MATRIX_ROW): Remove unused vars.
15970 (draw_glyphs, x_insert_glyphs, fast_find_position)
15971 (fast_find_position, fast_find_string_pos): Use EMACS_INT for
15974 * regex.c (regex_compile): Remove unused var.
15976 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
15978 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
15979 (Faccessible_keymaps, where_is_internal): Remove unused vars.
15981 * keyboard.c (cancel_hourglass_unwind): Return Qnil.
15983 * frame.c (frame_name_fnn_p): Make len EMACS_INT.
15985 * fileio.c (Fwrite_region): Remove unused var.
15987 * dispnew.c (adjust_frame_glyphs_for_frame_redisplay)
15988 (adjust_frame_glyphs_for_window_redisplay): Remove unused ch_dim.
15990 * composite.c (Fremove_list_of_text_properties): Declare.
15992 * coding.c (inhibit_pre_post_conversion): Remove (unused).
15993 (alloc_destination, produce_chars): Use EMACS_INT for byte/char counts.
15994 (coding_inherit_eol_type): Remove unused attrs.
15995 (detect_coding): Cast arg of detect_eol.
15997 * charset.c (syms_of_charset): Remove unused var p.
15998 (find_charsets_in_text, Ffind_charset_region): Use EMACS_INT for
16001 * casetab.c (set_case_table): Remove unused var.
16003 * window.c (Fdisplay_buffer, Fframe_selected_window): Remove
16006 2008-02-01 Dave Love <fx@gnu.org>
16008 * xterm.c (x_bitmap_mask): Declare.
16010 2008-02-01 Dave Love <fx@gnu.org>
16012 * xterm.c (x_term_init): Fix type error.
16014 * lisp.h: Add Funibyte_char_to_multibyte.
16016 * coding.c (Fread_coding_system): Fix arg of XSETSTRING.
16017 (Fset_coding_system_priority): Doc fix.
16019 * ccl.c (ccl_driver): Fix arg of CHARACTERP.
16021 * indent.c (check_composition): Make start and end EMACS_INT.
16023 * character.c (lisp_string_width): Make ignore and end EMACS_INT.
16025 * xdisp.c (handle_composition_prop, check_point_in_composition):
16026 Make buffer positions EMACS_INT.
16028 * composite.c (find_composition, run_composition_function)
16029 (update_compositions, Ffind_composition_internal): Make buffer
16030 positions EMACS_INT.
16032 * composite.h (find_composition, update_compositions): Make
16033 position args EMACS_INT.
16035 * keyboard.c (adjust_point_for_property): Make beg and end EMACS_INT.
16037 * intervals.c (get_property_and_range):
16038 * intervals.h (get_property_and_range): Make start and end EMACS_INT.
16040 * unexalpha.c: Don't include varargs.h.
16042 2008-02-01 Dave Love <fx@gnu.org>
16044 * coding.h (ENCODE_UTF_8): New.
16046 * Makefile.in (gtkutil.o): Depend on coding.h.
16048 * coding.c (Fset_coding_system_priority): Doc fix.
16050 2008-02-01 Kenichi Handa <handa@m17n.org>
16052 * fileio.c (Finsert_file_contents): Call setup_coding_system in
16053 the case of auto saving.
16055 2008-02-01 Andreas Schwab <schwab@suse.de>
16057 * chartab.c (map_char_table, map_char_table_for_charset): Protect
16060 2008-02-01 Kenichi Handa <handa@m17n.org>
16062 * coding.c (decode_coding_sjis): Check bytes more rigidly.
16064 2008-02-01 Kenichi Handa <handa@m17n.org>
16066 * fileio.c (choose_write_coding_system): Return a decided coding system.
16067 (Fwrite_region): Set Vlast_coding_system_used to the return value
16068 of choose_write_coding_system.
16070 2008-02-01 Kenichi Handa <handa@m17n.org>
16072 * charset.c (Fset_charset_priority): Pay attention to duplicated
16075 * coding.c (QCcategory): New variable.
16076 (syms_of_coding): Defsym it. Set all elements of
16077 Vcoding_category_table and their symbol values.
16078 (Fset_coding_system_priority): Doc fix. Update symbol qvalues of
16079 coding-category-XXX, and coding-category-list.
16080 (Fdefine_coding_system_internal): Add category in the plist.
16082 2008-02-01 Kenichi Handa <handa@m17n.org>
16084 * callproc.c (Fcall_process): Handle carryover correctly.
16086 * coding.c (decode_coding_iso_2022): Fix handling of invalid bytes.
16087 (raw_text_coding_system): Check NILP (coding_system).
16088 (coding_inherit_eol_type): Check NILP (coding_system) and
16090 (consume_chars): Fix for the case of raw-text.
16092 * process.c (read_process_output): Handle carryover correctly.
16094 2008-02-01 Dave Love <fx@gnu.org>
16096 * regex.c (re_search_2): Fix last change.
16098 2008-02-01 Kenichi Handa <handa@m17n.org>
16100 * regex.c (GET_CHAR_BEFORE_2): Check multibyte, not
16101 target_multibyte. Even in a unibyte case, return a converted
16103 (GET_CHAR_AFTER): New macro.
16104 (PATFETCH): Translate via multibyte char.
16105 (HANDLE_UNIBYTE_RANGE): Delete this macro.
16106 (SETUP_MULTIBYTE_RANGE): New macro.
16107 (regex_compile): Setup compiled code so that its multibyteness
16108 matches that of a target. Fix the handling of "[X-YZ]" using
16109 SETUP_MULTIBYTE_RANGE.
16110 (analyse_first) <charset>: For filling fastmap for all multibyte
16111 characters, don't check by BASE_LEADING_CODE_P.
16112 (re_search_2): Don't check RE_TARGET_MULTIBYTE_P (bufp). It is
16113 the same as RE_MULTIBYTE_P (bufp) now.
16114 (mutually_exclusive_p): Check by (! multibyte || IS_REAL_ASCII (c)).
16115 (TARGET_CHAR_AND_LENGTH): Delete this macro.
16116 (TRANSLATE_VIA_MULTIBYTE): New macro.
16117 (re_match_2_internal): Don't check RE_TARGET_MULTIBYTE_P (bufp).
16118 It is the same as RE_MULTIBYTE_P (bufp) now.
16119 <exactn>: Translate via multibyte.
16120 <anychar>: Fetch a character by RE_STRING_CHAR_AND_LENGTH. Don't
16122 <charset, charset_not>: Fetch a character by
16123 RE_STRING_CHAR_AND_LENGTH. Translate via multibyte.
16124 <duplicate>: Call bcmp_translate with the last arg `multibyte'.
16125 <wordbound, notwordbound, wordbeg, wordend, syntaxspec,
16126 notsyntaxspec, categoryspec, notcategoryspec> Fetch a character
16128 (bcmp_translate): Likewise.
16130 * search.c (compile_pattern): Check the member target_multibyte,
16131 not the member multibyte of buf.
16133 * lread.c (read1): While reading a string, set force_singlebyte
16134 and force_multibyte correctly.
16136 * charset.c (Fset_unibyte_charset, init_charset_once): Fix setting
16137 up of unibyte_to_multibyte_table.
16139 2008-02-01 Kenichi Handa <handa@m17n.org>
16141 * coding.c (setup_coding_system): If coding has
16142 post-read-conversion or pre-write-conversion, set
16143 CODING_REQUIRE_DECODING_MASK and CODING_REQUIRE_ENCODING_MASK
16145 (decode_coding_gap): Run post-read-conversion if any.
16147 * fileio.c (Finsert_file_contents): Even if we read into a
16148 unibyte buffer, check if we must decode the result or not.
16150 2008-02-01 Kenichi Handa <handa@m17n.org>
16152 * coding.c (make_conversion_work_buffer): Change the work buffer
16153 name to the same one as that of Emacs 21.
16155 2008-02-01 Kenichi Handa <handa@m17n.org>
16157 * coding.h (make_conversion_work_buffer): Adjust prototype.
16158 (code_conversion_restore): Don't extern it.
16160 * coding.c (detected_mask): Delete unused variable.
16161 (decode_coding_iso_2022): Pay attention to the byte sequence of
16162 CTEXT extended segment, and retain those bytes as is.
16163 (decode_coding_ccl): Delete unused variable `valids'.
16164 (setup_coding_system): Delete unused variable `category'.
16165 (consume_chars): Delete unused variable `category'. Make it work
16166 for non-multibyte case.
16167 (make_conversion_work_buffer): Change argument.
16168 (saved_coding): Delete unused variable.
16169 (code_conversion_restore): Don't check saved_coding->destination.
16170 (code_conversion_save): New function.
16171 (decode_coding_gap, encode_coding_gap): Call code_conversion_save
16172 instead of record_unwind_protect.
16173 (decode_coding_object, encode_coding_object): Likewise. Recover PT.
16174 (detect_coding_system): Delete unused variable `mask'.
16175 (Fdefine_coding_system_internal): Delete unused variable id.
16177 * fileio.c (kill_workbuf_unwind): New function.
16178 (Finsert_file_contents): On replacing, call
16179 make_conversion_work_buffer with correct args, and call
16180 record_unwind_protect with the first arg kill_workbuf_unwind.
16182 * lisp.h (Fgenerate_new_buffer_name): EXFUN it.
16184 2008-02-01 Kenichi Handa <handa@m17n.org>
16186 * fontset.c (BASE_FONTSET_P): Check FONTSET_BASE, not FONTSET_NAME.
16187 (fontset_add): Fix for the case that TO is less than TO1.
16188 (Ffontset_info): Don't use fallback fontset on checking the
16190 (dump_fontset): New function for debugging.
16192 * coding.c (Fdefine_coding_system_internal): Fix for the case that
16193 coding_type is Qcharset.
16195 2008-02-01 Kenichi Handa <handa@m17n.org>
16197 * chartab.c (map_sub_char_table): New argument DEFAULT_VAL.
16198 (map_char_table): Don't inherit the value from the parent on
16199 initializing VAL. Adjust for the above change.
16201 2008-02-01 Kenichi Handa <handa@m17n.org>
16203 * coding.c (Qsignature, Qendian): Delete these variables.
16204 (syms_of_coding): Don't initialize them.
16205 (CATEGORY_MASK_UTF_16_AUTO): New macro.
16206 (detect_coding_utf_16): Add CATEGORY_MASK_UTF_16_AUTO in
16207 detect_info->found.
16208 (decode_coding_utf_16): Don't detect BOM here.
16209 (encode_coding_utf_16): Produce BOM if CODING_UTF_16_BOM (coding)
16210 is NOT utf_16_without_bom.
16211 (setup_coding_system): For a coding system of type utf-16, check
16212 if the attribute :endian is Qbig or not (not nil or not), and set
16213 CODING_REQUIRE_DETECTION_MASK if BOM detection is required.
16214 (detect_coding): If coding type is utf-16 and BOM detection is
16215 required, detect it.
16216 (Fdefine_coding_system_internal): For a coding system of type
16217 utf-16, check if the attribute :endian is Qbig or not (not nil or not).
16219 2008-02-01 Kenichi Handa <handa@m17n.org>
16221 * coding.c (coding_set_source): Fix for the case that the current
16222 buffer is different from coding->src_object.
16223 (decode_coding_object): Don't use the conversion work buffer if
16224 DST_OBJECT is a buffer.
16226 2008-02-01 Dave Love <fx@gnu.org>
16228 * lread.c (read_emacs_mule_char) [len==2]: Index
16229 emacs_mule_charset correctly.
16231 2008-02-01 Dave Love <fx@gnu.org>
16233 * coding.c (Qbig5, Vbig5_coding_system, CATEGORY_MASK_BIG5)
16234 (detect_coding_big5, decode_coding_big5, encode_coding_big5)
16235 (Fdecode_big5_char, Fencode_big5_char): Delete. (Big5 no longer
16236 treated specially.)
16237 (setup_coding_system, coding_category, CATEGORY_MASK_ANY)
16238 (detected_mask): Remove Big5 bits.
16240 2008-02-01 Kenichi Handa <handa@m17n.org>
16242 The following changes are to make the font rescaling facility
16243 compatible with Emacs 21.
16245 * xfaces.c (Vface_font_rescale_alist): Rename from
16246 Vface_resizing_fonts.
16247 (struct font_name): Rename member resizing_ratio to rescale_ratio.
16248 (font_rescale_ratio): Rename from font_resizing_ratio.
16249 (split_font_name): Set font->rescale_ratio.
16250 (better_font_p): Pay attention to font->rescale_ratio.
16251 (build_scalable_font_name): Likewise. Change RESX, and RESY
16253 (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
16255 2008-02-01 Kenichi Handa <handa@m17n.org>
16257 * coding.c (Qutf_16_be_nosig, Qutf_16_be, Qutf_16_le_nosig)
16258 (Qutf_16_le): Remove these variables.
16259 (syms_of_coding): Don't DEFSYM them.
16260 (decode_coding_utf_16): Fix handling of BOM.
16261 (encode_coding_utf_16): Fix handling of BOM.
16263 2008-02-01 Kenichi Handa <handa@m17n.org>
16265 * fileio.c (Finsert_file_contents): On replacing, before decoding
16266 the file into the work buffer, set point of the work buffer to the end.
16268 2008-02-01 Dave Love <fx@gnu.org>
16270 * coding.c (Fcheck_coding_systems_region): Fix type errors.
16272 2008-02-01 Dave Love <fx@gnu.org>
16274 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
16277 2008-02-01 Kenichi Handa <handa@m17n.org>
16279 * xdisp.c (SKIP_GLYPHS): New macro.
16280 (set_cursor_from_row): Pay attention to string display properties.
16282 * category.c (copy_category_entry): Fix for the case that RANGE
16285 * xterm.c (x_encode_char): Call ccl_driver with the last arg Qnil.
16287 * w32term.c (w32_encode_char): Call ccl_driver with the last arg Qnil.
16289 2008-02-01 Kenichi Handa <handa@m17n.org>
16291 * charset.c (Fcharset_id_internal): New function.
16292 (syms_of_charset): Defsubr it.
16294 * coding.c (decode_coding_ccl, encode_coding_ccl): Call ccl_driver
16295 with the last arg charset_list acquired from coding.
16296 (Fdefine_coding_system_internal): For ccl-based coding system, fix
16297 the attribute coding_attr_ccl_valids.
16299 * coding.h (enum define_coding_ccl_arg_index): Set the first
16300 member coding_arg_ccl_decoder to coding_arg_max.
16302 * ccl.h (ccl_driver): Adjust prototype.
16304 * ccl.c (CCL_DECODE_CHAR, CCL_ENCODE_CHAR): New macros.
16305 (ccl_driver): New arg CHARSET_LIST. Use the above macros instead
16306 of DECODE_CHAR, ENCODE_CHAR, CHAR_CHARSET.
16307 (Fccl_execute, Fccl_execute_on_string): Call ccl_driver with the
16310 2008-02-01 Kenichi Handa <handa@m17n.org>
16312 * charset.h (ENCODE_CHAR): If the method is SUBSET or SUPERSET,
16315 * charset.c (encode_char): Fix handling of methods SUBSET and SUPERSET.
16317 2008-02-01 Dave Love <fx@gnu.org>
16319 * composite.c (syms_of_composite): Make composition_hash_table weak.
16321 2008-02-01 Kenichi Handa <handa@m17n.org>
16323 * dispextern.h (check_face_attributes, generate_ascii_font_name)
16324 (font_name_registry): Don't extern them.
16325 (split_font_name_into_vector, build_font_name_from_vector): Extern them.
16327 * fontset.h (Qfontset): Don't extern it.
16328 (new_fontset_from_font_name): Extern it.
16330 * fontset.c: Give 8 extra slots to fontset objects.
16331 (Qfontset_info): New variable.
16332 (syms_of_fontset): Defsym it.
16333 (FONTSET_FALLBACK): New macro.
16334 (fontset_face): Try also the default fontset.
16335 (make_fontset): Realize a fallback fontset from the default fontset.
16336 (generate_ascii_font_name): Move from xfaces.c. Rewritten by
16337 using split_font_name_into_vector and build_font_name_from_vector.
16338 (Fset_fontset_font): Access the elements of font_spec by enum
16339 FONT_SPEC_INDEX. If font_spec is a string, extract the registry
16340 name by using split_font_name_into_vector.
16341 (Fnew_fontset): If no ASCII font is specified in FONTLIST,
16342 generate a proper font name from the fontset name. Update
16343 Vfontset_alias_alist.
16344 (n_auto_fontsets): New variable.
16345 (new_fontset_from_font_name): New function.
16346 (Ffont_info): Store the information about fonts generated from the
16347 default fontset in the first extra slot of the returned char-table.
16349 * xfaces.c (generate_ascii_font_name): Move to fontset.c.
16350 (font_name_registry): Delete function.
16351 (split_font_name_into_vector): New function.
16352 (build_font_name_from_vector): New function.
16353 (font_list): The argument REGISTRY is now a list of registry names.
16354 (choose_face_font): If we are choosing an ASCII font, and ATTRS
16355 specifies an explicit font name, return the name as is. Make a
16356 list of registy names.
16358 * xfns.c (x_set_font, x_create_tip_frame): Adjust for the change
16360 (Fx_create_frame): Don't call x_new_fontset here. Just use
16361 x_list_fonts to check the existence of fonts.
16363 * xterm.h (x_new_fontset): Adjust prototype.
16365 * xterm.c (x_new_fontset): Change the arg FONTSETNAME to Lisp
16366 string. Use new_fontset_from_font_name to create a fontset from a
16369 2008-02-01 Kenichi Handa <handa@m17n.org>
16371 * syntax.c (Vfind_word_boundary_function_table): New name for
16372 Vnext_word_boundary_function_table.
16373 (find-word-boundary-function-table): New name for
16374 next-word-boundary-function-table.
16376 2008-02-01 Dave Love <fx@gnu.org>
16378 * Makefile.in: Fix some dependencies.
16380 * keymap.c (Fapropos_internal): Don't gcpro apropos_predicate but
16381 set it to nil before returning.
16383 * composite.c (update_compositions): Fix type error.
16385 * syntax.c (skip_chars, skip_syntaxes): Fix type errors.
16387 2008-02-01 Kenichi Handa <handa@m17n.org>
16389 * xterm.c (x_new_font): Optimize for the case that the font is
16390 already set for the frame.
16392 2008-02-01 Kenichi Handa <handa@m17n.org>
16394 * chartab.c (char_table_ascii): Check if the char table contents
16395 is sub-char-table or not.
16396 (char_table_set, char_table_set_range): Fix argument to
16399 * coding.c (CATEGORY_MASK_RAW_TEXT): New macro.
16400 (detect_coding_utf_8, detect_coding_utf_16)
16401 (detect_coding_emacs_mule, detect_coding_iso_2022)
16402 (detect_coding_sjis, detect_coding_big5)
16403 (detect_coding_ccl, detect_coding_charset): Change argument MASK
16404 to DETECT_INFO. Update DETECT_INFO and return 1 if the byte
16405 sequence is valid in this coding system. Change callers.
16406 (MAX_ANNOTATION_LENGTH): New macro.
16407 (ADD_ANNOTATION_DATA): New macro.
16408 (ADD_COMPOSITION_DATA): Change argument. Change callers. Call
16409 ADD_ANNOTATION_DATA. Change the format of annotation data.
16410 (ADD_CHARSET_DATA): New macro.
16411 (emacs_mule_char): New argument ID. Change callers.
16412 (decode_coding_emacs_mule, decode_coding_iso_2022)
16413 (decode_coding_sjis, decode_coding_big5, decode_coding_charset):
16414 Produce charset annotation data in coding->charbuf.
16415 (encode_coding_emacs_mule, encode_coding_iso_2022): Pay attention
16416 to charset annotation data in coding->charbuf.
16417 (setup_coding_system): Add CODING_ANNOTATE_CHARSET_MASK
16418 coding->common_flags if the coding system is iso-2022 based and
16420 (produce_composition): Adjust for the new annotation data format.
16421 (produce_charset): New function.
16422 (produce_annotation): Handle charset annotation.
16423 (handle_composition_annotation, handle_charset_annotation): New
16425 (consume_chars): Handle charset annotation. Utilize the above two
16427 (encode_coding_object): If SRC_OBJECT and DST_OBJECT are the same
16428 buffer, get the deleted text as a string and set
16429 coding->src_object to that string.
16430 (detect_coding, detect_coding_system): Use the new struct
16431 coding_detection_info.
16433 * coding.h (struct coding_detection_info): New structure.
16434 (struct coding_system): Adjust prototype of the member `detector'.
16435 (CODING_ANNOTATE_CHARSET_MASK): New macro.
16437 2008-02-01 Kenichi Handa <handa@m17n.org>
16439 * insdel.c (insert_from_gap): Fix argument to offset_intervals.
16441 2008-02-01 Dave Love <fx@gnu.org>
16443 * keymap.c (apropos_predicate, apropos_accumulate): Declare static.
16444 (Fapropos_internal): Don't gcpro apropos_accumulate. Set result
16445 to new local and nullify apropos_accumulate before returning.
16446 (syms_of_keymap): Staticpro and initialize apropos_accumulate.
16448 2008-02-01 Kenichi Handa <handa@m17n.org>
16450 * charset.c (Fdefine_charset_internal): Setup charset.fast_map
16453 2008-02-01 Dave Love <fx@gnu.org>
16455 * fns.c (Flanginfo): Call synchronize_system_time_locale.
16457 2008-02-01 Kenichi Handa <handa@m17n.org>
16459 The following changes are to make character composition happen
16460 automatically on displaying.
16462 * Makefile.in (lisp, shortlisp): Add composite.elc.
16464 * composite.h (Qauto_composed, Vauto_composition_function)
16465 (Qauto_composition_function): Extern them.
16467 * composite.c (Vcomposition_function_table)
16468 (Qcomposition_function_table): Delete variables.
16469 (Qauto_composed, Vauto_composition_function)
16470 (Qauto_composition_function): New variables.
16471 (run_composition_function): Don't call
16472 compose-chars-after-function.
16473 (update_compositions): Clear `auto-composed' text property.
16474 (compose_chars_in_text): Delete this function.
16475 (syms_of_composite): Staticpro Qauto_composed and
16476 Qauto_composition_function. Declare Vauto_composition_function as
16479 * dispextern.h (enum prop_idx): Add member AUTO_COMPOSED_PROP_IDX.
16481 * xdisp.c (it_props): Add an entry for Qauto_composed.
16482 (handle_auto_composed_prop): New function.
16484 * xselect.c (selection_data_to_lisp_data): Don't call
16485 compose_chars_in_text.
16487 2008-02-01 Dave Love <fx@gnu.org>
16489 * keyboard.c (read_char): Modify checking around use of
16490 Vkeyboard_translate_table.
16492 * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
16495 2008-02-01 Kenichi Handa <handa@m17n.org>
16497 * coding.c (decode_coding_utf_8, decode_coding_emacs_mule)
16498 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16499 (decode_coding_charset, produce_chars): When eol_type is Qdos, handle
16500 the case that the last byte is '\r' correctly.
16501 (decode_coding): Flush out the unprocessed data correctly.
16502 (decode_coding_gap): Set CODING_MODE_LAST_BLOCK bit of coding->mode.
16504 2008-02-01 Dave Love <fx@gnu.org>
16506 * xterm.c (XTread_socket): Fix changes for defined keysyms.
16507 Add XK_ISO... case.
16508 (xaw_scroll_callback): Revert last change.
16510 2008-02-01 Kenichi Handa <handa@m17n.org>
16512 * charset.c (Fset_charset_priority): Update Viso_2022_charset_list.
16514 2008-02-01 Kenichi Handa <handa@m17n.org>
16516 * xfaces.c (Vface_resizing_fonts): New variable.
16517 (struct font_name): New member `resizing_ratio'.
16518 (font_resizing_ratio): New function.
16519 (split_font_name): Set font->resizing_ratio.
16520 (better_font_p): Pay attention to font->resizing_ratio.
16521 (build_scalable_font_name): Likewise. Don't change POINT_SIZE,
16522 RESX, and RESY fields.
16523 (try_alternative_families): Try scalable fonts if
16524 Vscalable_fonts_allowed is not Qt.
16525 (syms_of_xfaces): Declare Vface_resizing_fonts as a Lisp variable.
16527 2008-02-01 Dave Love <fx@gnu.org>
16529 * xterm.c (xaw_scroll_callback): Cast correctly.
16531 2008-02-01 Dave Love <fx@gnu.org>
16533 * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extend.
16534 (lispy_kana_keys): Comment out.
16535 (make_lispy_event) [XK_kana_A]: Comment out.
16537 * xterm.c (xaw_scroll_callback): Cast call_data.
16538 (XTread_socket): Deal with ASCII keysyms.
16539 (syms_of_xterm) <Vx_keysym_table>: Fix args of make_hash_table.
16541 2008-02-01 Dave Love <fx@gnu.org>
16543 * xterm.c (Vx_keysym_table): New.
16544 (syms_of_xterm): Initialize it.
16545 (XTread_socket): Use it.
16546 From head: Eliminate incorrect optimization that tried to avoid
16547 decoding the output of X*LookupString.
16548 (x_get_font_repertory): Delete charset declaration.
16550 2008-02-01 Kenichi Handa <handa@m17n.org>
16552 * coding.c (detect_coding_charset): If only ASCII bytes are found,
16554 (Fdefine_coding_system_internal): Setup
16555 CODING_ATTR_ASCII_COMPAT (attrs) correctly.
16557 2008-02-01 Dave Love <fx@gnu.org>
16559 * coding.c (Fcheck_coding_system): Doc fix.
16561 * editfns.c (Finsert_byte): Return a proper value.
16563 2008-02-01 Kenichi Handa <handa@m17n.org>
16565 * coding.c (decode_coding): Fix args to translate_chars. Pay
16566 attention to Vstandard_translation_table_for_decode.
16567 (encode_coding): Fix args to translate_chars. Pay attention to
16568 Vstandard_translation_table_for_encode.
16570 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
16571 SINGLE_BYTE_CHAR_P.
16573 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
16574 not by SINGLE_BYTE_CHAR_P.
16576 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
16577 SINGLE_BYTE_CHAR_P.
16579 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
16580 SINGLE_BYTE_CHAR_P.
16582 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
16583 by SINGLE_BYTE_CHAR_P.
16585 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
16586 SINGLE_BYTE_CHAR_P.
16588 2008-02-01 Dave Love <fx@gnu.org>
16590 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.
16592 2008-02-01 Dave Love <fx@gnu.org>
16594 * fns.c (Flanginfo): Fix typo.
16596 * unexelf.c (unexec): Make last change conditional on Irix 6.5.
16598 2008-02-01 Kenichi Handa <handa@m17n.org>
16600 * coding.c (detect_coding_utf_8, detect_coding_utf_16)
16601 (detect_coding_emacs_mule, detect_coding_iso_2022)
16602 (detect_coding_sjis, detect_coding_big5, detect_coding_ccl): Check
16603 incomplete byte sequence. Don't update *mask when correctly detected.
16604 (decode_coding_sjis): Fix decoding of katakana-jisx0201.
16605 (detect_eol): Delete the argument CODING, and add the argument CATEGORY.
16606 (detect_coding, detect_coding_system): Adjust for the changes above.
16608 2008-02-01 Kenichi Handa <handa@m17n.org>
16610 * character.c (char_string): Rename from
16611 char_string_with_unification. Pay attention to CHAR_MODIFIER_MASK.
16612 (string_char): Rename from string_char.
16614 * character.h (CHAR_STRING, CHAR_STRING_ADVANCE): Call char_string
16615 if C is greater than MAX_3_BYTE_CHAR.
16616 (STRING_CHAR, STRING_CHAR_AND_LENGTH, STRING_CHAR_ADVANCE): Call
16617 string_char instead of string_char_with_unification.
16619 2008-02-01 Dave Love <fx@gnu.org>
16621 * coding.c (decode_coding_utf_8): Treat surrogates as invalid.
16623 2008-02-01 Kenichi Handa <handa@m17n.org>
16625 * keymap.c (push_key_description): Pay attention to force_multibyte.
16627 * regex.c (re_search_2): Fix for the case of unibyte buffer.
16629 2008-02-01 Dave Love <fx@gnu.org>
16631 * charset.c (define_charset_internal): Rename `supprementary'.
16633 * Makefile.in (lisp, shortlisp): Remove latin-N.
16635 2008-02-01 Dave Love <fx@gnu.org>
16637 * xfns.c (x_window, x_window): Use use_xim.
16639 * xterm.c (use_xim): Initialize.
16640 (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
16641 (x_term_init): Maybe set use_xim.
16643 * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
16645 2008-02-01 Kenichi Handa <handa@m17n.org>
16647 * search.c (search_buffer): Fix case-fold-search of multibyte
16649 (boyer_moore): Rename the last argument to char_high_bits.
16651 2008-02-01 Kenichi Handa <handa@m17n.org>
16653 * xdisp.c (display_string): Fix for the case of zero width glyph.
16655 * xfns.c (x_set_font): Change the error message of the case that
16656 x_new_fontset returns Qt.
16658 * xfaces.c (set_lface_from_font_name): Reject the default fontset.
16659 (Finternal_set_lisp_face_attribute): Use signal_error for the
16660 error of invalid fontset.
16662 * xterm.c (x_new_fontset): If FONTSETNAME specifies the default
16663 fontset, return Qt.
16665 2008-02-01 Dave Love <fx@gnu.org>
16667 * unexelf.c (unexec): Make .got handling not SGI-specific.
16669 * syntax.c (syms_of_syntax) <multibyte-syntax-as-symbol>: Doc fix.
16671 * regex.c: Use `ifdef HAVE_ALLOCA_H', not `if HAVE_ALLOCA_H'.
16673 * keyboard.c (read_key_sequence): Fix type error.
16675 * buffer.c (Fset_buffer_multibyte, Fset_buffer_multibyte): Fix
16678 * fontset.c (fontset_add): Return Lisp_Object.
16680 2008-02-01 Dave Love <fx@gnu.org>
16682 * charset.h (charset_ordered_list_tick): Declare extern.
16684 2008-02-01 Kenichi Handa <handa@m17n.org>
16686 The following changes (and some of 2008-02-01 changes of mine) are
16687 for handling syntax, category, and case conversion for unibyte
16688 characters by converting them to multibyte on the fly. With these
16689 changes, we don't have to setup syntax and case tables for unibyte
16690 characters in each language environment.
16692 * abbrev.c (Fexpand_abbrev): Convert a unibyte character to
16693 multibyte if necessary.
16695 * bytecode.c (Fbyte_code): Likewise.
16697 * character.h (LEADING_CODE_LATIN_1_MIN)
16698 (LEADING_CODE_LATIN_1_MAX): New macros.
16699 (unibyte_to_multibyte_table): Extern it.
16700 (unibyte_char_to_multibyte): New macro.
16701 (MAKE_CHAR_MULTIBYTE): Use unibyte_to_multibyte_table.
16702 (CHAR_LEADING_CODE): New macro.
16703 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE): New macro.
16705 * character.c (unibyte_to_multibyte_table): New variable.
16706 (unibyte_char_to_multibyte): Move to character.h and define as macro.
16707 (multibyte_char_to_unibyte): If C is an eight-bit character,
16708 convert it to the corresponding byte value.
16710 * charset.c (Fset_unibyte_charset): If the dimension of CHARSET is
16711 not 1, signals an error. Update the elements of
16712 unibyte_to_multibyte_table.
16713 (init_charset_once): Initialize unibyte_to_multibyte_table.
16714 (syms_of_charset): Define the charset `iso-8859-1'.
16716 * cmds.c (internal_self_insert): In a multibyte buffer, insert C
16717 as is without converting it to unibyte. In a unibyte buffer,
16718 convert C to multibyte before checking the syntax.
16720 * lisp.h (unibyte_char_to_multibyte): Delete extern.
16722 * minibuf.c (Fminibuffer_complete_word): Use the macro
16723 FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE.
16725 * regex.h (struct re_pattern_buffer): New member target_multibyte.
16727 * regex.c (RE_TARGET_MULTIBYTE_P): New macro.
16728 (GET_CHAR_BEFORE_2): Check target_multibyte, not multibyte. If
16729 that is zero, convert an eight-bit char to multibyte.
16730 (MAKE_CHAR_MULTIBYTE, CHAR_LEADING_CODE): New dummy new macros for
16732 (PATFETCH): Convert an eight-bit char to multibyte.
16733 (HANDLE_UNIBYTE_RANGE): New macro.
16734 (regex_compile): Setup the compiled pattern for multibyte chars
16735 even if the given regex string is unibyte. Use PATFETCH_RAW
16736 instead of PATFETCH in many places. To handle `charset'
16737 specification of unibyte, call HANDLE_UNIBYTE_RANGE. Use bitmap
16738 only for ASCII chars.
16739 (analyse_first) <exactn>: Simplify because the compiled pattern
16741 <charset_not>: Setup fastmap from bitmap only for ASCII chars.
16742 <charset>: Use CHAR_LEADING_CODE to get leading codes.
16743 <categoryspec>: If multibyte, setup fastmap only for ASCII chars here.
16744 (re_compile_fastmap) [emacs]: Call analyse_first with the arg
16745 multibyte always 1.
16746 (re_search_2): In emacs, set the locale variable multibyte to 1,
16747 otherwise to 0. New local variable target_multibyte. Check it
16748 to decide the multibyteness of STR1 and STR2. If
16749 target_multibyte is zero, convert unibyte chars to multibyte
16750 before translating and checking fastmap.
16751 (TARGET_CHAR_AND_LENGTH): New macro.
16752 (re_match_2_internal): In emacs, set the locale variable multibyte
16753 to 1, otherwise to 0. New local variable target_multibyte. Check
16754 it to decide the multibyteness of STR1 and STR2. Use
16755 TARGET_CHAR_AND_LENGTH to fetch a character from D.
16756 <charset, charset_not>: If multibyte is nonzero, check fastmap
16757 only for ASCII chars. Call bcmp_translate with
16758 target_multibyte, not with multibyte.
16759 <begline>: Declare the local variable C as `unsigned'.
16760 (bcmp_translate): Change the last arg name to target_multibyte.
16762 * search.c (compile_pattern_1): Don't adjust the multibyteness of
16763 the regexp pattern and the matching target. Set cp->buf.multibyte
16764 to the multibyteness of the regexp pattern. Set
16765 cp->but.target_multibyte to the multibyteness of the matching target.
16766 (wordify): Use FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE instead of
16767 FETCH_STRING_CHAR_ADVANCE.
16768 (Freplace_match): Convert unibyte chars to multibyte.
16770 * syntax.c (char_quoted, back_comment, scan_words)
16771 (Fforward_comment, scan_lists, Fbackward_prefix_chars)
16772 (scan_sexps_forward): Use FETCH_CHAR_AS_MULTIBYTE to convert
16773 unibyte chars to multibyte.
16774 (skip_chars): Delete the arg syntaxp, and move the code for
16775 handling syntaxes to skip_syntaxes. Change callers.
16776 Fix the case that the multibyteness of STRING and the current
16777 buffer doesn't match.
16778 (skip_syntaxes): New function.
16779 (SYNTAX_WITH_MULTIBYTE_CHECK): Check C by ASCII_CHAR_P, not by
16780 SINGLE_BYTE_CHAR_P.
16782 2008-02-01 Kenichi Handa <handa@m17n.org>
16784 * xfaces.c (QCfontset): New variable.
16785 (LFACE_FONTSET): New macro.
16786 (check_lface_attrs): Check also LFACE_FONTSET_INDEX.
16787 (set_lface_from_font_name): Setup LFACE_FONTSET (lface).
16788 (Finternal_set_lisp_face_attribute)
16789 (Finternal_get_lisp_face_attribute): Handle QCfontset.
16790 (lface_same_font_attributes_p): Fix checking of LFACE_FONT_INDEX,
16791 check also LFACE_FONTSET_INDEX.
16792 (face_fontset): Check attrs[LFACE_FONTSET_INDEX], not
16793 attrs[LFACE_FONT_INDEX].
16794 (syms_of_xfaces): Intern and staticpro QCfontset.
16796 * dispextern.h (enum lface_attribute_index): New member
16797 LFACE_FONTSET_INDEX.
16799 * fns.c (base64_encode_1): Handle eight-bit chars correctly.
16801 2008-02-01 Kenichi Handa <handa@m17n.org>
16803 * coding.c (coding_set_destination): Fix coding->destination for
16804 the case converting a region.
16805 (encode_coding_utf_8): Encode eight-bit chars as single byte.
16806 (encode_coding_object): Fix coding->dst_pos and
16807 coding->dst_pos_byte for the case converting a region.
16809 * insdel.c (insert_from_gap): Make it work even if PT != GTP.
16811 * character.h (BYTE8_STRING): New macro.
16813 * fns.c (base64_decode_1): Insert eight-bit chars correctly.
16815 2008-02-01 Kenichi Handa <handa@m17n.org>
16817 * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
16818 characters by octal form.
16820 * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
16822 * buffer.h (_fetch_multibyte_char_len): Delete extern.
16823 (FETCH_MULTIBYTE_CHAR, BUF_FETCH_MULTIBYTE_CHAR): Don't use
16824 _fetch_multibyte_char_len.
16825 (FETCH_CHAR_AS_MULTIBYTE): New macro.
16827 * casetab.c (set_canon, set_identity, shuffle): Simplify.
16829 * casefiddle.c (casify_object): Simplify. Handle the case that
16830 the case conversion change the byte length.
16831 (casify_region): Likewise.
16833 * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New macros.
16835 * character.c (_fetch_multibyte_char_len): Delete this variable.
16836 (syms_of_character): Setup Vprintable_chars.
16838 * editfns.c (Fchar_equal): Fix for the unibyte case.
16839 (Finsert_byte): New function.
16840 (syms_of_editfns): Defsubr it.
16842 * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
16843 of direct code 0x3ffff.
16845 * search.c (Freplace_match): Fix for the unibyte case.
16847 2008-02-01 Kenichi Handa <handa@m17n.org>
16849 * lread.c (safe_to_load_p): Fix the logic.
16851 * syntax.c (scan_words): Don't treat characters belonging to
16852 different scripts as constituting a word.
16854 * editfns.c (Fformat): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
16856 * fontset.c (Fset_fontset_font): Treat `ascii' as charset, not script.
16858 * emacs.c (main): In the case of --unibyte, instead of aborting on
16859 finding non-empty buffer, make it unibyte.
16861 2008-02-01 Kenichi Handa <handa@m17n.org>
16863 * xterm.c (x_new_fontset): Call `create-fontset-from-ascii-font'
16864 to create a fontset.
16866 2008-02-01 Dave Love <fx@gnu.org>
16868 * character.c (Funibyte_char_to_multibyte): Doc fix.
16870 * xfns.c [HAVE_STDLIB_H]: Fix last change.
16872 2008-02-01 Kenichi Handa <handa@m17n.org>
16874 * fontset.c (fontset_add): Make the type `int'.
16875 (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
16877 * character.c (unibyte_char_to_multibyte)
16878 (multibyte_char_to_unibyte, Funibyte_char_to_multibyte): Refer to
16879 charset_unibyte, not charset_primary.
16881 * charset.h (charset_unibyte): Extern it instead of charset_primary.
16883 * charset.c (charset_unibyte): Rename from charset_primary.
16884 (Funibyte_charset): Rename from Fprimary_charset.
16885 (Fset_unibyte_charset): Rename from Fset_primary_charset.
16886 (syms_of_charset): Adjust for the above changes.
16888 * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
16889 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
16890 it->multibyte_p is zero.
16892 * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
16895 2008-02-01 Kenichi Handa <handa@m17n.org>
16897 * coding.c (Fdefine_coding_system_internal): Fix category setting
16898 for a coding system of type iso-2022.
16900 2008-02-01 Kenichi Handa <handa@m17n.org>
16902 * fontset.h (FS_LOAD_FONT): Call fs_load_font with the arg CHARSET -1.
16904 2008-02-01 Kenichi Handa <handa@m17n.org>
16906 * syntax.c (Vnext_word_boundary_function_table): New variable.
16907 (next-word-boundary-function-table): Declare it as a Lisp variable
16909 (scan_words): Call functions in Vnext_word_boundary_function_table
16912 * xterm.c (x_load_font): Initialize fontp->fontset to -1.
16914 * fontset.c (fs_load_font): If fontp->charset is not negative,
16915 return fontp without setting its members.
16917 2008-02-01 Dave Love <fx@gnu.org>
16919 * xfns.c [HAVE_STDLIB_H]: Change logic (instead of fixing typo).
16921 * m/sparc.h (HAVE_ALLOCA): Delete.
16923 * s/irix6-5.h: Don't include strings.h.
16924 (bcopy, bzero, bcmp): Don't undef.
16926 * s/irix6-0.h (bcopy, bzero, bcmp): Don't undef.
16928 * s/usg5-4.h (NO_SIOCTL_H): Don't define.
16929 (TIOCSIGSEND): Don't test IRIX6.
16930 (bcopy, bzero, bcmp): Define conditionally.
16932 2008-02-01 Kenichi Handa <handa@m17n.org>
16934 * buffer.c (Qas, Qmake, Qto): New variables.
16935 (Fset_buffer_multibyte): New optional arg METHOD. Change caller.
16936 (syms_of_buffer): Intern and staticpro Qas, Qmake, and Qto.
16938 * callproc.c (Fcall_process): Don't call insert_1_both directly if
16939 we are inserting a process output into a multibyte buffer.
16941 * character.h (CHAR_TO_BYTE8): If C is not eight-bit char, call
16942 multibyte_char_to_unibyte.
16944 * character.c (Funibyte_char_to_multibyte): If C can't be decoded
16945 by the primary charset, make it eight-bit char.
16946 (Fmultibyte_char_to_unibyte): Call CHAR_TO_BYTE8.
16948 * charset.c (charset_eight_bit, Qeight_bit_control): New variables.
16949 (charset_8_bit__control, charset_8_bit_graphic)
16950 (Qeight_bit_control, Qeight_bit_graphic): Delete these variables.
16951 (define_charset_internal): New function.
16952 (syms_of_charset): Call define_charset_internal for pre-defined
16955 * charset.h (charset_8_bit): Extern it.
16957 * coding.c (make_conversion_work_buffer): Adjust for the change
16958 of Fset_buffer_multibyte.
16959 (encode_coding_raw_text): Increment p0 in the loop.
16961 * lisp.h (Fset_buffer_multibyte): Adjust prototype.
16963 * xdisp.c (setup_echo_area_for_printing, set_message_1): Adjust
16964 for the change of Fset_buffer_multibyte.
16966 * fns.c (Fstring_to_multibyte): New function.
16967 (syms_of_fns): Declare Fstring_to_multibyte as Lisp subroutine.
16969 2008-02-01 Dave Love <fx@gnu.org>
16971 * xfns.c (x_put_x_image): Declare args.
16973 * xfaces.c (font_name_registry, choose_face_font): Delete unused vars.
16974 (try_font_list): Declare an arg.
16976 * xdisp.c (message2_nolog, set_message): Declare an arg.
16978 * terminfo.c (tparam): Declare an arg. Use P_ to declare tparm.
16980 * syntax.c (scan_sexps_forward): Declare an arg.
16982 * scroll.c (calculate_scrolling, calculate_direct_scrolling):
16985 * lisp.h (Fnew_fontset): Declare.
16987 * keymap.c (push_key_description): Call CHARACTERP correctly.
16989 * fontset.c (fontset_add): Declare args. Call make_number correctly.
16990 (face_for_char): Delete unused vars.
16991 (Fset_fontset_font): Doc fix. Delete unused vars.
16993 * doc.c (Fsubstitute_command_keys): Delete unused vars.
16995 * composite.c (update_compositions): Declare arg.
16997 * cm.c (calccost, cmgoto): Declare args.
16999 * charset.c: Remove `emacs' conditional. Doc fixes.
17000 (map_char_table_for_charset): Declare.
17002 * character.c (syms_of_character) <translation-table-vector>: Doc fix.
17004 * ccl.c: Remove `emacs' conditional.
17006 2008-02-01 Kenichi Handa <handa@m17n.org>
17008 The following changes are to allow specifying multiple font
17009 patterns for a character range (specified by script or charset).
17011 * Makefile.in (abbrev.o): Depend on syntax.h.
17012 (xfaces.o): Depend on charset.h.
17014 * alloc.c (Fmake_string): Use ASCII_CHAR_P, not
17015 SINGLE_BYTE_CHAR_P.
17017 * ccl.c (Fccl_execute_on_string): Add `const' to local variables.
17019 * character.h (Vchar_script_table): Extern it.
17021 * character.c (Vscript_alist): Delete.
17022 (Vchar_script_table, Qchar_script_table): New variable.
17023 (syms_of_character): Declare Vchar_script_table as a lisp variable
17026 * chartab.c (Fmake_char_table): Doc fix. If PURPOSE doesn't
17027 have property char-table-extra-slots, make no extra slot.
17029 * dispextern.h (struct face): Delete member `charset'.
17030 (FACE_SUITABLE_FOR_CHAR_P, FACE_FOR): Use ASCII_CHAR_P, not
17031 SINGLE_BYTE_CHAR_P.
17032 (choose_face_font, lookup_non_ascii_face, font_name_registry):
17034 (lookup_face, lookup_named_face, lookup_derived_face): Fix prototype.
17035 (generate_ascii_font_name): Rename from generate_ascii_font.
17037 * fontset.h (get_font_repertory_func): New prototype.
17038 (make_fontset_for_ascii_face, fs_load_font): Fix prototypes.
17039 (FS_LOAD_FONT): Call fs_load_font with the 3rd arg charset_ascii.
17041 * fontset.c (Qprepend, Qappend): New variables.
17042 (FONTSET_CHARSET_ALIST, FONTSET_FACE_ALIST): Delete.
17043 (FONTSET_NOFONT_FACE, FONTSET_REPERTORY): New macros.
17044 (FONTSET_REF): Optimize if FONTSET is Vdefault_fontset.
17045 (FONTSET_REF_AND_RANGE, FONTSET_ADD): New macros.
17046 (fontset_ref_and_range, fontset_add, reorder_font_vector)
17047 (load_font_get_repertory): New functions.
17048 (fontset_set): Delete.
17049 (fontset_face): New arg FACE. Return face ID, not face.
17050 Complete re-write to handle new fontset structure. Change caller.
17051 (free_face_fontset): Use ASET istead of AREF (X) = Y.
17052 (face_for_char): Don't call lookup_face.
17053 (make_fontset_for_ascii_face): New arg FACE.
17054 (fs_load_font): New arg CHARSET_ID. Don't check
17055 Vfont_encoding_alist here.
17056 (find_font_encoding): New function.
17057 (list_fontsets): Use STRINGP, not ! NILP.
17058 (accumulate_script_ranges): New function.
17059 (Fset_fontset_font, Fnew_fontset, Ffontset_info): Completely
17060 re-written to handle new fontset structure.
17061 (Ffontset_font): Return a copy of element.
17062 (syms_of_fontset): Define symbols Qprepend and Qappend. Fix
17063 docstring of font-encoding-alist.
17065 * lisp.h (CHAR_TABLE_REF): Remove unnecessary check (IDX >= 0).
17066 (Fset_fotset_font): Fix arguments to 5.
17068 * msdos.c (XMenuActivate): Adjust for the change of lookup_derived_face.
17070 * xdisp.c (message_dolog, set_message_1, extend_face_to_end_of_line):
17071 Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17072 (highlight_trailing_whitespace): Adjust for the change of
17075 * xfaces.c: Include charset.h.
17076 (load_face_font): Delete argument C. Change caller.
17077 (generate_ascii_font_name): Rename from generate_ascii_font.
17078 (font_name_registry): New function.
17079 (cache_face): Store ascii faces before non-ascii faces in buckets.
17080 (lookup_face): Delete arguments C and BASE_FACE. Change caller.
17081 Lookup only ascii faces.
17082 (lookup_non_ascii_face): New function.
17083 (lookup_named_face): Delete argument C. Change caller.
17084 (lookup_derived_face): Delete argument C. Change caller.
17085 (try_font_list): New arg PATTERN. Change caller. If PATTERN is
17086 a string, just call font_list with it.
17087 (choose_face_font): Delete arguments FACE and C. New arg
17088 FONT_SPEC. Change caller.
17089 (realize_face, realize_x_face): Delete arguments C and BASE_FACE.
17091 (realize_non_ascii_face): New function.
17092 (realize_x_face): Call load_face_font here.
17093 (realize_tty_face): Delete argument C. Change caller.
17094 (compute_char_face): If CH is not ascii, call FACE_FOR_CHAR to
17096 (dump_realized_face): Don't print charset of FACE.
17098 * xfns.c (x_set_font): Always call x_new_fontset and
17099 store_frame_parameter.
17100 (Fx_create_frame): Call x_new_fontset, not x_new_font.
17101 (syms_of_xfns): Set get_font_repertory_func to x_get_font_repertory.
17103 * xterm.h (x_get_font_repertory): Extern it.
17105 * xterm.c (x_produce_glyphs): Use ASCII_CHAR_P, not
17106 SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
17107 it->multibyte_p is zero.
17108 (XTread_socket): Use ASCII_CHAR_P, not SINGLE_BYTE_CHAR_P.
17109 (x_new_fontset): If FONTSETNAME doesn't match any existing
17110 fontsets, create a new one.
17111 (x_get_font_repertory): New function.
17113 2008-02-01 Kenichi Handa <handa@m17n.org>
17115 * coding.c (Ffind_coding_systems_region_internal): Detect an
17116 ASCII only string correctly.
17118 * lread.c (Fload): Don't load with Qload_force_doc_strings t if
17121 2008-02-01 Kenichi Handa <handa@m17n.org>
17123 * lread.c: Include "coding.h".
17124 (Qget_emacs_mule_file_char, Qload_force_doc_strings)
17125 (load_each_byte, unread_char): New variables.
17126 (readchar_backlog): Delete.
17127 (readchar): Return a character unless load_each_byte is nonzero.
17128 Handle the case that readcharfun is Qget_emacs_mule_file_char or a
17129 cons. If unread_char is not -1, simply return it.
17130 (unreadchar): Handle the case that readcharfun is
17131 Qget_emacs_mule_file_char or a cons. Set unread_char if necessary.
17132 (read_multibyte): Delete.
17133 (readbyte_for_lambda, readbyte_from_file, readbyte_from_string)
17134 (read_emacs_mule_char): New functions.
17135 (Fload): Even if the file doesn't have the extension ".elc", if
17136 safe_to_load_p returns a positive version number, assume that the
17137 file contains bytecompiled code. If the version is less than 22,
17138 load the file while decoding multibyte sequences by emacs-mule.
17139 (readevalloop): Don't use readchar_backlog.
17140 (Fread): Likewise. Pay attention to the case that STREAM is a cons.
17141 (Fread_from_string): Pay attention to the case that STREAM is a cons.
17142 (read_escape): Delete the arg BYTEREP.
17143 (read1): Set load_each_byte to 1 temporarily while handling
17144 #@NUMBER. Don't call read_multibyte.
17145 (read_vector): Call Fread with a cons. If readcharfun is
17146 Qget_emacs_mule_file_char, decode the read string by emacs-mule.
17147 (read_list): If doc_reference is 2, make the cdr part string as unibyte.
17148 (syms_of_lread): Intern and staticpro Qget_emacs_mule_file_char
17149 and Qload_force_doc_strings.
17151 2008-02-01 Kenichi Handa <handa@m17n.org>
17153 * xdisp.c (face_before_or_after_it_pos): Call
17154 FETCH_MULTIBYTE_CHAR with byte postion, not char position.
17156 2008-02-01 Kenichi Handa <handa@m17n.org>
17158 * character.h (TRAILING_CODE_P): New macro.
17159 (MAYBE_UNIFY_CHAR): Adjust for the change of Funify_charset.
17160 (string_char_with_unification): Fix prototype.
17161 (Vscript_alist): Extern it.
17163 * character.c (Vscript_alist): New variable.
17164 (string_char_with_unification, str_as_unibyte)
17165 (string_escape_byte8): Add `const' to local variables.
17166 (syms_of_character): Declare script-alist as a Lisp variable.
17168 * charset.h (Vcharset_ordered_list): Extern it.
17169 (charset_ordered_list_tick): Extern it.
17170 (EMACS_MULE_LEADING_CODE_PRIVATE_11)
17171 (EMACS_MULE_LEADING_CODE_PRIVATE_12)
17172 (EMACS_MULE_LEADING_CODE_PRIVATE_21)
17173 (EMACS_MULE_LEADING_CODE_PRIVATE_22): New macros.
17174 (Funify_charset): Adjust for the change of Funify_charset.
17176 * charset.c (charset_ordered_list_tick): New variable.
17177 (Fdefine_charset_internal): Increment charset_ordered_list_tick.
17178 (Funify_charset): New optional arg DEUNIFY. If it is non-nil,
17179 deunify intead of unify a charset.
17180 (string_xstring_p): Add `const' to local variables.
17181 (find_charsets_in_text): Add `const' to arguments and local variables.
17182 (encode_char): Adjust for the change of Funify_charset. Fix
17183 detecting of invalid code.
17184 (Fset_charset_priority): Increment charset_ordered_list_tick.
17185 (Fmap_charset_chars): Fix handling of default value for FROM_CODE
17188 * coding.c (LEADING_CODE_PRIVATE_11, LEADING_CODE_PRIVATE_12)
17189 (LEADING_CODE_PRIVATE_21, LEADING_CODE_PRIVATE_22): Delete macros.
17190 Changed callers to use EMACS_MULE_LEADING_CODE_PRIVATE_11, etc.
17191 (decode_coding_ccl, consume_chars)
17192 (Ffind_coding_systems_region_internal)
17193 (Fcheck_coding_systems_region): Add `const' to local variables.
17195 * print.c (print_object): Use octal form for printing the
17196 contents of a bool vector.
17198 2008-02-01 Dave Love <fx@gnu.org>
17200 * lread.c (Fload) <!load_dangerous_libraries>: Don't leak fd.
17201 <version == 20>: Refuse to load.
17203 2008-02-01 Dave Love <fx@gnu.org>
17205 * fns.c: Move coding.h.
17206 (Qcodeset, Qdays, Qmonths): New.
17207 (concat): Use CHARACTERP instead of INTEGERP.
17208 (Flocale_codeset): Delete.
17209 (Flanginfo): New function.
17210 (syms_of_fns): Change accordingly.
17212 * coding.c (adjust_coding_eol_type): Fix eol_type/eol_seen mixup.
17214 2008-02-01 Dave Love <fx@gnu.org>
17216 * casetab.c (init_casetab_once, init_casetab_once): Fix
17217 CHAR_TABLE_SET call.
17219 * category.c (Fmodify_category_entry): Fix CATEGORY_MEMBER call.
17221 * character.c (syms_of_character): Fix CHAR_TABLE_SET call.
17223 * charset.c (Fmap_charset_chars): Check args. Convert Lisp types.
17224 (load_charset_map, Fdeclare_equiv_charset, Fencode_char)
17225 (Fset_charset_priority, syms_of_charset): Convert Lisp types.
17227 * charset.h (CHECK_CHARSET_GET_ID): Use XINT on AREF result.
17229 * coding.c (ENCODE_DESIGNATION, decode_eol)
17230 (make_conversion_work_buffer, code_conversion_restore)
17231 (Fdefine_coding_system_internal): Convert Lisp types.
17232 (code_conversion_restore): Use EQ, not ==.
17233 (Fencode_coding_string): Fix code_convert_string call.
17235 * coding.h (code_convert_region): Fix prototype.
17237 * dispextern.h (redraw_frame, redraw_garbaged_frames): Remove.
17239 * fontset.c (fontset_ref, fontset_set, fs_load_font)
17240 (Ffontset_info): Convert Lisp types.
17242 * syntax.h (SYNTAX_ENTRY_INT): Don't use make_number.
17244 * xterm.c (note_mouse_movement): Fix call of window_from_coordinates.
17246 * xdisp.c (display_mode_element): Fix call of Fset_text_properties.
17248 * chartab.c: Include "...h", not <...h> in some cases.
17250 * callproc.c (Fcall_process): Remove unused variables.
17252 2008-02-01 Dave Love <fx@gnu.org>
17254 * coding.c (Fset_coding_system_priority): Allow null arg list.
17256 2008-02-01 Dave Love <fx@gnu.org>
17258 * minibuf.c (Fminibuffer_complete_word): Remove unused var.
17259 (Fself_insert_and_exit): Use CHARACTERP.
17261 * callproc.c (Fcall_process): Remove unused vars.
17263 * xterm.c (XTread_socket): Add extra dead keysyms.
17265 * xdisp.c (decode_mode_spec_coding): Use CHARACTERP.
17267 * dispextern.h: Remove prototypes for redraw_frame,
17268 redraw_garbaged_frames.
17270 * cmds.c (Fself_insert_command): Use CHARACTERP.
17272 * chartab.c (make_sub_char_table): Remove unused var.
17273 (Fset_char_table_default, Fmap_char_table): Doc fix.
17275 * keymap.c (access_keymap): Remove generic char code.
17276 (push_key_description): Use CHARACTERP.
17278 2008-02-01 Dave Love <fx@gnu.org>
17280 * charset.c: Doc fixes.
17281 (Funify_charset): Extra checking.
17283 2008-02-01 Dave Love <fx@gnu.org>
17285 * lread.c: Remove some unused variables.
17286 (safe_to_load_p): If safe, return the magic number version byte.
17287 (Fload): Maybe use load-with-code-conversion.
17289 2008-02-01 Kenichi Handa <handa@m17n.org>
17291 * category.c (Fmodify_category_entry): Don't modify the contents
17292 of category_set for characters out of the range. Avoid
17293 unnecessary modification.
17295 * character.h (MAYBE_UNIFY_CHAR): Adjust for the change of
17296 Vchar_unify_table. The default value of the table is now nil.
17298 * character.c (syms_of_character): Setup Vchar_width_table for
17299 eight-bit-control and raw-byte chars.
17301 * charset.h (enum define_charset_arg_index): Delete
17302 charset_arg_parents and add charset_arg_subset and
17303 charset_arg_superset.
17304 (enum charset_attr_index): Delete charset_parents and add
17305 charset_subset and charset_superset.
17306 (enum charset_method): Delete CHARSET_METHOD_INHERIT and add
17307 CHARSET_METHOD_SUBSET and CHARSET_METHOD_SUPERSET.
17308 (CHARSET_ATTR_PARENTS, CHARSET_PARENTS): Delete.
17309 (CHARSET_ATTR_SUBSET, CHARSET_ATTR_SUPERSET, CHARSET_SUBSET)
17310 (CHARSET_SUPERSET): New macros.
17311 (charset_work): Extern it.
17312 (ENCODE_CHAR): Use charset_work.
17313 (CHAR_CHARSET_P): Adjust for the change of encoder format.
17314 (map_charset_chars): Extern it.
17316 * charset.c (load_charset_map): Set the default value of encoder
17317 and deunifier char-tables to nil.
17318 (map_charset_chars): Change argument. Change callers. Use
17319 map_char_table_for_charset instead of map_char_table.
17320 (Fmap_charset_chars): New optional args from_code and to_code.
17321 (Fdefine_charset_internal): Adjust for the change of
17322 `define-charset' (:parents -> :subset or :superset).
17323 (charset_work): New variable.
17324 (encode_char, syms_of_charset): Adjust for the change of
17325 Fdefine_charset_internal.
17326 (Ffind_charset_string): Setup the vector `charsets' correctly.
17328 * chartab.c (sub_char_table_ref_and_range): New arg default. Fix
17329 the previous change.
17330 (char_table_ref_and_range): Adjust for the above change.
17331 (map_sub_char_table_for_charset): New function.
17332 (map_char_table_for_charset): New function.
17334 * keymap.c (describe_vector): Handle a char-table directly here.
17335 (describe_char_table): Delete.
17337 * lisp.h (map_charset_chars): Delete.
17339 2008-02-01 Dave Love <fx@gnu.org>
17341 * fns.c (count_combining): Comment out (unused).
17342 (Flocale_codeset): New.
17343 (syms_of_fns): Defsubr it.
17345 * config.in (HAVE_PTY_H, HAVE_SIZE_T, HAVE_LANGINFO_CODESET): New.
17348 2008-02-01 Dave Love <fx@gnu.org>
17350 * Makefile.in (chartab.o): Depend on charset.h.
17352 2008-02-01 Kenichi Handa <handa@m17n.org>
17354 * character.c (syms_of_character): Set the default value of
17355 Vprintable_chars to Qnil.
17357 2008-02-01 Dave Love <fx@gnu.org>
17359 * Makefile.in (lisp, shortlisp): Change indian.elc to indian.el.
17361 2008-02-01 Kenichi Handa <handa@m17n.org>
17363 * charset.c (load_charset_map): Handle the case that from < to
17366 * coding.c (encode_coding_emacs_mule, encode_coding_iso_2022)
17367 (encode_coding_sjis, encode_coding_big5, encode_coding_charset):
17368 Pay attention to raw-8-bit chars.
17370 2008-02-01 Kenichi Handa <handa@m17n.org>
17372 * Makefile.in (lisp, shortlisp): Change chinese.elc to chinese.el.
17373 It is not bytecompiled now.
17375 * charset.c (charset_jisx0201_roman, charset_jisx0208_1978)
17376 (charset_jisx0208): New variables.
17377 (Fdefine_charset_internal): Setup them if appropriate.
17378 (init_charset_once): Initialize them to -1.
17380 * charset.h (charset_jisx0201_roman, charset_jisx0208_1978)
17381 (charset_jisx0208): Extern them.
17383 * coding.c (CODING_ISO_FLAG_USE_ROMAN): New macro.
17384 (CODING_ISO_FLAG_USE_OLDJIS): New macro.
17385 (CODING_ISO_FLAG_FULL_SUPPORT): Change macro definition.
17386 (setup_iso_safe_charsets): Fix arguments to Fassq.
17387 (DECODE_DESIGNATION, ENCODE_ISO_CHARACTER_DIMENSION1)
17388 (ENCODE_ISO_CHARACTER_DIMENSION2): Pay attention to
17389 CODING_ISO_FLAG_USE_ROMAN and CODING_ISO_FLAG_USE_OLDJIS.
17390 (encode_coding_iso_2022): Change the 1st arg to
17391 ENCODE_ISO_CHARACTER to a variable.
17393 2008-02-01 Kenichi Handa <handa@m17n.org>
17395 * charset.h (enum define_charset_arg_index): New enums
17396 charset_arg_min_code and charset_arg_max_code.
17397 (struct charset): New member char_index_offset.
17399 * charset.c (CODE_POINT_TO_INDEX, INDEX_TO_CODE_POINT):
17400 Take charset->char_index_offset into account.
17401 (Fdefine_charset_internal): Handle args[charset_arg_min_code] and
17402 args[charset_arg_max_code]. Setup charset.char_index_offset.
17403 (syms_of_charset): Fix args to Fdefine_charset_internal.
17405 2008-02-01 Dave Love <fx@gnu.org>
17407 * coding.c (decode_coding_utf_8): Reject overlong sequences.
17409 2008-02-01 Dave Love <fx@gnu.org>
17411 * coding.c: Doc fixes.
17412 (Fcoding_system_aliases): Fix return value.
17413 (Qmac): Remove (duplicated) definition.
17415 2008-02-01 Dave Love <fx@gnu.org>
17417 * charset.c (Fcharset_priority_list, Fset_charset_priority):
17420 * character.c (Fstring): Doc fix.
17422 * charset.c (Fdefine_charset_alias): Update Vcharset_list.
17424 * fontset.c (Ffontset_info): Doc fix. Return charset names, not ids.
17425 (font-encoding-alist): Doc fix.
17427 2008-02-01 Dave Love <fx@gnu.org>
17429 * term.c (costs_set): Declare static, non-initialized for pcc.
17430 (encode_terminal_code): Remove unused var.
17432 * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
17435 * xterm.c (xlwmenu_window_p): Fix prototype for K&R.
17437 * coding.c (setup_iso_safe_charsets): Fix arg decl for K&R.
17438 (suffixes): Move out of make_subsidiaries for K&R.
17440 * charset.c (map_charset_chars): Fix c_function declaration for K&R.
17442 * lisp.h (DEFUN) [!PROTOTYPES]: Remove spurious `args'.
17444 2008-02-01 Dave Love <fx@gnu.org>
17446 * data.c (Fchar_or_string_p): Doc fix. Use CHARACTERP.
17448 * category.c (Fmodify_category_entry): Doc fix. Remove unused vars.
17450 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
17452 * charset.c (Fdefine_charset_internal): Fix argument to bzero.
17454 * coding.c (decode_coding_charset): Workaround for the bug of GCC 2.96.
17456 2008-02-01 Kenichi Handa <handa@m17n.org>
17458 * Makefile.in (lisp, shortlisp): Change cyrillic.elc to cyrillic.el,
17459 vietnamese.elc to vietnamese.el. They are not bytecompiled now.
17461 2008-02-01 Kenichi Handa <handa@m17n.org>
17463 * coding.c (decode_coding_charset): Adjust for the change of
17464 Fdefine_coding_system_internal.
17465 (Fdefine_coding_system_internal): For a coding system of
17466 `charset' type, store a list of charset IDs in
17467 `charset_attr_charset_valids' element of coding attributes.
17469 2008-02-01 Kenichi Handa <handa@m17n.org>
17471 * coding.c (ONE_MORE_BYTE_NO_CHECK): Increment consumed_chars.
17472 (emacs_mule_char): New arg src. Delete arg `composition'. Change
17473 caller. Handle 2-byte and 3-byte charsets correctly.
17474 (DECODE_EMACS_MULE_COMPOSITION_RULE_20): Rename from
17475 DECODE_EMACS_MULE_COMPOSITION_RULE. Change caller.
17476 (DECODE_EMACS_MULE_COMPOSITION_RULE_21): New macro.
17477 (DECODE_EMACS_MULE_21_COMPOSITION): Call
17478 DECODE_EMACS_MULE_COMPOSITION_RULE_21. Produce correct annotation
17480 (decode_coding_emacs_mule): Handle composition correctly. Rewind
17481 `src' and `consumed_chars' correctly before calling emacs_mule_char.
17482 (DECODE_COMPOSITION_START): Correctly handle the case of altchar
17483 and alt&rule composition.
17484 (decode_coding_iso_2022): Handle composition correctly.
17485 (init_coding_once): Setup emacs_mule_bytes for private charsets.
17487 * charset.c (Fdefine_charset_internal): Fix bug for the case of
17488 re-defining a charset. If the charset has :emacs-mule-id, setup
17490 (Fmake_char): If CODE1 is nil, use the minimum code of the charset.
17492 2008-02-01 Kenichi Handa <handa@m17n.org>
17494 * coding.c (encode_coding_iso_2022, encode_coding_sjis)
17495 (encode_coding_big5, encode_coding_charset): If coding requires safe
17496 encoding, produce a character specified by
17497 CODING_INHIBIT_CHARACTER_SUBSTITUTION.
17499 2008-02-01 Dave Love <fx@gnu.org>
17501 * xterm.c (XSetIMValues): Declare.
17503 * process.c: Conditionally include sys/wait.h, pty.h.
17505 * print.c (print_object): Fix print format for 64-bit systems.
17507 * keyboard.c (modify_event_symbol): Fix print format for 64-bit systems.
17509 * buffer.c (emacs_strerror): Declare.
17511 * fontset.c (Fclear_face_cache): Declare.
17512 (accumulate_font_info): Comment-out (unused).
17513 (face_for_char, Fset_fontset_font, Ffontset_info): Remove unused
17516 * character.h (string_escape_byte8): Declare.
17518 * charset.c (load_charset_map, load_charset_map_from_file): Remove
17520 (Fdefine_charset_internal, Fsplit_char, syms_of_charset)
17521 (Fmap_charset_chars): Doc fix.
17523 * coding.c (Vchar_coding_system_table, Qchar_coding_system): Remove.
17524 (Fset_coding_system_priority, Fset_coding_system_priority)
17525 (Fdefine_coding_system_internal): Doc fix.
17527 2008-02-01 Dave Love <fx@gnu.org>
17529 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
17531 2008-02-01 Kenichi Handa <handa@m17n.org>
17533 * character.c (string_escape_byte8): Make multibyte string with
17536 * charset.c (Fmake_char): Delete unnecessary code.
17538 2008-02-01 Kenichi Handa <handa@m17n.org>
17540 * xfns.c (x_encode_text): Allocate coding.destination here, and
17541 call encode_coding_object with dst_object Qnil.
17543 * buffer.c (Fset_buffer_multibyte): Convert 8-bit bytes to
17544 multibyte form correctly.
17546 * fontset.c (fs_load_font): Check fontp->full_name (not fontname)
17547 against Vfont_encoding_alist.
17549 * coding.c (Fdecode_sjis_char): Fix typo (0x7F->0xFF). Fix the
17550 handling of charset list.
17551 (encode_coding_iso_2022): Setup coding->safe_charsets in advance.
17552 (decode_coding_object): Move point to coding->dst_pos before
17553 calling post-read-conversion function.
17554 (encode_coding_object): Give correct arguments to
17555 pre-write-conversion. Ignore the return value of
17556 pre-write-conversion function. Pay attention to the case that
17557 pre-write-conversion changes the current buffer. If dst_object is
17558 Qt, even if coding->src_bytes is zero, allocate at least one byte
17559 to coding->destination.
17561 * coding.h (JIS_TO_SJIS): Fix typo (j1->s1, j2->s2).
17563 * charset.c (Fmake_char): Make it more backward compatible.
17564 (Fmap_charset_chars): Fix docstring.
17566 2008-02-01 Dave Love <fx@gnu.org>
17568 * coding.c: Doc fixes.
17569 (Fdefine_coding_system_alias): Use names, not symbols, in
17570 coding-system-alist.
17572 2008-02-01 Kenichi Handa <handa@m17n.org>
17574 * fontset.c (free_realized_fontsets): Call Fclear_face_cache instead
17575 of calling free_realized_face.
17577 2008-02-01 Yong Lu <lyongu@asia-infonet.com>
17579 * charset.c (read_hex): Don't treat SPC as a comment starter.
17580 (decode_char): If CODE_POINT_TO_INDEX returns -1, always return -1.
17581 (Fdecode_char): Fix typo.
17583 2008-02-01 Kenichi Handa <handa@m17n.org>
17585 * charset.h (struct charset): New member `code_space_mask'.
17587 * coding.c (coding_set_source): Delete the local variable beg_byte.
17588 (encode_coding_charset, Fdefine_coding_system_internal):
17589 Delete the local variable charset.
17590 (Fdefine_coding_system_internal): Setup
17591 attrs[coding_attr_charset_valids] correctly.
17593 * charset.c (CODE_POINT_TO_INDEX): Utilize `code_space_mask'
17594 member to check if CODE is valid or not.
17595 (Fdefine_charset_internal): Initialize `code_space_mask' member.
17596 (encode_char): Before calling CODE_POINT_TO_INDEX, check if CODE
17597 is within the range of charset->min_code and carset->max_code.
17599 2008-02-01 Dave Love <fx@gnu.org>
17601 * syntax.h (syntax_temp) [!__GNUC__]: Declare.
17603 * dispextern.h (generate_ascii_font): Fix return type.
17605 * xfaces.c (generate_ascii_font): Fix arg declaration.
17607 * coding.c (coding_inherit_eol_type)
17608 (Fset_terminal_coding_system_internal)
17609 (Fset_safe_terminal_coding_system_internal): Fix arg declarations.
17611 2008-02-01 Kenichi Handa <handa@m17n.org>
17613 * coding.c (decode_coding_charset, encode_coding_charset): Handle
17614 multiple charsets correctly.
17616 2008-02-01 Kenichi Handa <handa@m17n.org>
17618 * search.c (boyer_moore): Fix handling of multibyte character
17621 * xdisp.c (display_mode_element): When the variable `elt' is
17622 changed, update `this' and `lisp_string'.
17624 2008-02-01 Kenichi Handa <handa@m17n.org>
17626 * buffer.c (Fset_buffer_multibyte): Fix 8-bit char handling.
17628 * callproc.c (Fcall_process): Be sure to give the current buffer
17629 to decode_coding_c_string. Update PT and PT_BYTE after the insertion.
17631 * charset.c (struct charset_map_entries): New struct.
17632 (load_charset_map): Rename from parse_charset_map. New args
17633 entries and n_entries. Change caller.
17634 (load_charset_map_from_file): Rename from load_charset_map.
17635 Change caller. New arg control_flag. Call load_charset_map at
17637 (load_charset_map_from_vector): New function.
17638 (Fdefine_charset_internal): Setup charset.compact_codes_p.
17639 (encode_char): If the charset is compact, change a character index
17642 * coding.c (coding_alloc_by_making_gap): Check the case that the
17643 source and destination are the same correctly.
17644 (decode_coding_raw_text): Set coding->consumed_char and
17645 coding->consumed to 0.
17646 (produce_chars): If coding->chars_at_source is nonzero, update
17647 coding->consumed_char and coding->consumed before calling
17649 (Fdefine_coding_system_alias): Register ALIAS in
17650 Vcoding_system_alist.
17651 (syms_of_coding): Define `no-conversion' coding system at the tail.
17653 * fileio.c (Finsert_file_contents): Set coding_system instead of
17654 val. If the current buffer is multibyte, always call
17657 * xfaces.c (try_font_list): Give higher priority to fontset's
17658 family than face's family.
17660 2008-02-01 Kenichi Handa <handa@m17n.org>
17662 * callproc.c (Fcall_process): Be sure to give the current buffer
17663 to decode_coding_c_string.
17665 * xfaces.c (try_font_list): Give a family specified in a fontset
17666 higher priority than a family specified in a face.
17668 2008-02-01 Kenichi Handa <handa@m17n.org>
17670 * fileio.c (Finsert_file_contents): Fix calculation of `inserted'.
17671 Fix arguments to insert_from_buffer.
17673 * xdisp.c (display_mode_element): Fix calculation of `bytepos'.
17675 2008-02-01 Kenichi Handa <handa@m17n.org>
17677 * coding.c (produce_chars): Set the variable `multibytep' correctly.
17678 (decode_coding_gap): Set coding->dst_multibyte correctly.
17680 2008-02-01 Kenichi Handa <handa@m17n.org>
17682 * coding.c (encode_coding_utf_8): Initialize produced_chars to 0.
17683 (decode_coding_utf_16): Fix converting high and low bytes to code-point.
17684 (encode_coding_utf_16): Substitute coding->default_char for
17685 non-Unicode characters.
17686 (decode_coding): Don't call record_insert here.
17687 (setup_coding_system): Initialize `surrogate' of
17688 coding->spec.utf_16 to 0.
17689 (EMIT_ONE_BYTE): Fix for multibyte case.
17691 * insdel.c (insert_from_gap): Call record_insert.
17693 2008-02-01 Kenichi Handa <handa@m17n.org>
17695 * casefiddle.c (casify_region): Fix multibyte case.
17697 * character.c (c_string_width): Add return type `int'.
17698 (char_string_with_unification): Delete arg ADVANCED.
17700 * character.h (CHAR_VALID_P): Don't call CHARACTERP.
17701 (CHAR_STRING): Adjust for the change of char_string_with_unification.
17702 (CHAR_STRING_ADVANCE): Make it do-while statement.
17704 * chartab.c (sub_char_table_set_range): Optimize for the case
17705 DEPTH == 3. Add workaround code for a GCC optimization bug.
17707 * charset.c (parse_charset_map): Remove an unused variable.
17709 * coding.c: Delete unused variables.
17711 * fileio.c (Finsert_file_contents): Set coding_system to Qnil
17712 earlier. If inserted is zero and the coding system doesn't
17713 require flushing, don't call decode_coding_gap.
17715 * syntax.h (SET_RAW_SYNTAX_ENTRY): Don't call make_number.
17717 2008-02-01 Kenichi Handa <handa@m17n.org>
17719 The following changes are for using Unicode as an internal
17720 character model, and use UTF-8 format for buffer/string
17723 * .gdbinit (xchartable): Adjust for the change of char table structure.
17724 (xsubchartable, xcoding, xcharset, xcurbuf): New commands.
17726 * Makefile.in (obj): Add character.o and chartab.o.
17727 (lisp, shortlisp): Remove utf-8.elc.
17728 (*.o): For many files, change dependency on charset.h to
17729 character.h, and add dependency on character.h.
17730 (character.o, chartab.o): New targets.
17732 * abbrev.c, bytecode.c, casefiddle.c, cmds.c, dispnew.c, doc.c:
17733 * doprnt.c, dosfns.c, frame.c, marker.c, minibuf.c, msdos.c:
17734 * w16select.c, w32bdf.c, w32console.c: Include "character.h" instead
17737 * dired.c, filelock.c: Include "character.h".
17739 * alloc.c: Include "character.h" instead of "charset.h".
17740 (Fmake_char_table, make_sub_char_table): Move to chartab.c.
17741 (syms_of_alloc): Remove defsubr for Smake_char_table.
17743 * buffer.c: Include "character.h" instead of "charset.h", don't
17744 include "coding.h".
17745 (Fset_buffer_multibyte): Adjust for UTF-8.
17747 * buffer.h: EXFUN Fbuffer_live_p.
17749 * callproc.c: Include "character.h" instead of "charset.h".
17750 (Fcall_process): Big change for the new code-conversion APIs.
17752 * casetab.c: Include "character.h" instead of "charset.h".
17753 (set_canon, set_identity, shuffle): Adjust for the new
17754 map_char_table spec.
17755 (init_casetab_once): Call CHAR_TABLE_SET instead of directly
17756 accessing the char table structure.
17758 * chartab.c: New file that implements char table.
17760 * category.c: Include "character.h".
17761 (copy_category_entry): New function.
17762 (copy_category_table): Call map_char_table and copy_category_entry.
17763 (Fmake_category_table): Initialize all top-level slots.
17764 (char_category_set): New function.
17765 (modify_lower_category_set): Delete.
17766 (Fmodify_category_entry): Call char_table_ref_and_range.
17768 * category.h (CATEGORY_SET): Just call char_category_set.
17770 * ccl.c: Include "character.h".
17771 (Qccl, Qcclp): New variables.
17772 (CCL_WRITE_CHAR): Alway treat the arg CH as a character even if
17773 it's less than 256.
17774 (CCL_WRITE_MULTIBYTE_CHAR): Delete.
17775 (CCL_WRITE_STRING, CCL_READ_CHAR): Adjust for the change of SRC
17777 (ccl_driver): Change types of argument, adjust code accordingly.
17778 (Fccl_execute, Fccl_execute_on_string): Adjust for the change of
17780 (syms_of_ccl): Intern and staticpro Qccl and Qcclp.
17782 * ccl.h (struct ccl_program): Delete members eol_type and multibyte.
17783 New members src_multibyte, dst_multibyte, consumed, and produced.
17784 (struct ccl_spec): Delete members decoder and encoder. New member ccl.
17785 (CODING_SPEC_CCL_PROGRAM): New macro.
17786 (ccl_driver): Update prototype.
17787 (Qccl, Qcclp, Fccl_program_p): Extern them.
17788 (CHECK_CCL_PROGRAM): New macro.
17790 * character.c, character.h, chartab.c: New files.
17792 * charset.c: Mostly re-written. Move character and multibyte sequence
17793 handling codes to character.c.
17795 * charset.h: Mostly re-written. Move character and multibyte sequence
17796 handling codes to character.h.
17798 * coding.c, coding.h: Mostly re-written.
17800 * composite.c: Include "character.h" instead of "charset.h".
17801 (CHAR_WIDTH): Move to character.h.
17802 (HASH_KEY, HASH_VALUE): Delete.
17804 * composite.h (enum composition_method): Change order of enumeration
17807 * data.c: Include "character.h" instead of "charset.h".
17808 (Faref): Call CHAR_TABLE_REF for a char table.
17809 (Faset): Call CHAR_TABLE_SET for a char table.
17811 * dispextern.h (free_realized_face, check_face_attribytes)
17812 (generate_ascii_font): Extern them.
17813 (free_realized_multibyte_face): Delete extern.
17815 * disptab.h (DISP_CHAR_VECTOR): Adjust for the change of char
17818 * editfns.c: Include "character.h" instead of "charset.h".
17819 (Fchar_to_string): Always call CHAR_STRING.
17821 * emacs.c (main): Call init_charset_once, init_charset,
17822 syms_of_chartab, and syms_of_character.
17824 * fileio.c: Include "character.h" instead of "charset.h".
17825 (Finsert_file_contents): Big change for the new code-conversion API.
17826 (choose_write_coding_system, Fwrite_region): Likewise.
17827 (build_annotations_2): Delete.
17828 (e_write): Big change for the new code-conversion API.
17830 * fns.c: Include "character.h" instead of "charset.h".
17831 (copy_sub_char_table): Move to chartab.c.
17832 (Fcopy_sequence): Call copy_char_table for a char table.
17833 (concat): Delete codes calling count_multibyte.
17834 (string_char_to_byte, string_byte_to_char): Adjust for the new
17836 (internal_equal): Adjust for the change of char table structure.
17837 (Fchar_table_subtype, Fchar_table_parent, Fset_char_table_parent)
17838 (Fchar_table_extra_slot, Fset_char_table_extra_slot)
17839 (Fchar_table_range, Fset_char_table_range, Fset_char_table_default)
17840 (char_table_translate, optimize_sub_char_table)
17841 (Foptimize_char_table, map_char_table, Fmap_char_table): Move to
17843 (char_table_ref_and_index): Delete.
17844 (HASH_KEY, HASH_VALUE): Move to lisp.h.
17845 (Fmd5): Call preferred_coding_system instead of accessing
17846 Vcoding_category_list. Adjust for the new code-conversion API.
17847 (syms_of_fns): Move defsubr for char table related functions to
17850 * fontset.c: Mostly re-written.
17852 * fontset.h (struct font_info): Change type of the member encoding_type.
17853 (enum FONT_SPEC_INDEX): New enum.
17854 (fontset_font_pattern, fs_load_font): Update prototype.
17855 (FS_LOAD_FONT): Adjust for the change of fs_load_font.
17857 * indent.c: Include "character.h" instead of "charset.h".
17858 (MULTIBYTE_BYTES_WIDTH): Call CHAR_WIDTH instead of WIDTH_BY_CHAR_HEAD.
17860 * insdel.c: Include "character.h" instead of "charset.h".
17861 (copy_text): Don't refer to Vnonascii_translation_table.
17862 (insert_from_gap): New function.
17864 * keyboard.c: Include "character.h" instead of "charset.h".
17865 (command_loop_1): Never call direct_output_forward_char before
17866 a non-ASCII character.
17867 (read_char): If Vkeyboard_translate_table is a char table, always
17868 translate a character.
17870 * keymap.c: Include "character.h".
17871 (store_in_keymap): Handle the case that IDX is a cons.
17872 (Fdefine_key): Handle the case that KEY is a cons and the car part
17873 is also a cons (range).
17874 (push_key_description): Adjust for the new character code.
17875 (describe_vector): Call describe_char_table for a char table.
17876 (describe_char_table): New function.
17878 * keymap.h (describe_char_table): Extern it.
17880 * lisp.h (enum pvec_type): New member PVEC_SUB_CHAR_TABLE.
17881 (XSUB_CHAR_TABLE, XSETSUB_CHAR_TABLE): New macros.
17882 (CHAR_TABLE_ORDINARY_SLOTS, CHAR_TABLE_SINGLE_BYTE_SLOTS)
17883 (SUB_CHAR_TABLE_ORDINARY_SLOTS, SUB_CHAR_TABLE_STANDARD_SLOTS):
17885 (CHAR_TABLE_REF, CHAR_TABLE_SET): Adjust for the new char table
17887 (CHAR_TABLE_TRANSLATE): Just call char_table_translate.
17888 (CHARTAB_SIZE_BITS_0, CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2)
17889 (CHARTAB_SIZE_BITS_3): New macros.
17890 (chartab_size): Extern it.
17891 (struct Lisp_Char_Table): Re-design.
17892 (struct Lisp_Sub_Char_Table): New structure.
17893 (HASH_KEY, HASH_VALUE): Move from fns.c.
17894 (CHARACTERBITS): Define as 22.
17895 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjust for the above change.
17896 (SUB_CHAR_TABLE_P): Check PVEC_CHAR_TABLE.
17897 (GC_SUB_CHAR_TABLE_P): New macro.
17898 (Fencode_coding_string, Fdecode_coding_string): Update EXFUN.
17899 (code_convert_string_norecord): Deleted extern.
17900 (init_character_once, syms_of_character, init_charset)
17901 (syms_of_composite, Qeq, Fmakehash, insert_from_gap): Extern them.
17903 * lread.c: Include "character.h".
17904 (read_multibyte): New arg NBYTES.
17905 (read_escape): Change the meaning of returned *BYTEREP.
17906 (to_multibyte): Delete.
17907 (read1): Adjust the handling of char table and string.
17909 * print.c: Include "character.h" instead of "charset.h".
17910 (print_string): Convert 8-bit raw bytes to octal form by
17911 string_escape_byte8.
17912 (print_object): Adjust for the new multibyte form. Print 8-bit
17913 raw bytes always in octal form. Handle sub char table correctly.
17915 * process.c: Include "character.h" instead of "charset.h".
17916 (read_process_output, send_process): Adjust for the new
17917 code-conversion API.
17919 * puresize.h (BASE_PURESIZE): Increase.
17921 * regex.c: Include "character.h" instead of "charset.h".
17922 (BYTE8_TO_CHAR, CHAR_BYTE8_P) [not emacs]: New dummy macros.
17923 (regex_compile): Accept a range whose starting and ending
17924 character have different leading bytes.
17925 (analyse_first): Adjust for the above change.
17927 * search.c: Include "character.h" instead of "charset.h".
17928 (search_buffer, boyer_moore): Adjust for the new multibyte form.
17929 (Freplace_match): Adjust for the change of multibyte_char_to_unibyte.
17931 * syntax.c: Include "character.h" instead of "charset.h".
17932 (syntax_parent_lookup): Delete.
17933 (Fmodify_syntax_entry): Accept a cons as CHAR.
17934 (skip_chars): Adjust for the new multibyte form.
17935 (init_syntax_once): Call char_table_set_range instead of directly
17936 accessing the structure of a char table.
17938 * syntax.h (SET_RAW_SYNTAX_ENTRY): Call CHAR_TABLE_SET.
17939 (SYNTAX_ENTRY_FOLLOW_PARENT): Delete macro.
17940 (SET_RAW_SYNTAX_ENTRY_RANGE): New macro.
17941 (SYNTAX_ENTRY_INT): Call CHAR_TABLE_REF.
17943 * term.c: Include "buffer.h" and "character.h".
17944 (encode_terminal_code, write_glyphs): Adjust for the new
17945 code-conversion API.
17946 (produce_glyphs): Call CHAR_WIDTH instead of CHARSET_WIDTH.
17948 * w32term.c (x_new_font): Adjust for the change of FS_LOAD_FONT.
17950 * xdisp.c: Include "character.h".
17951 (get_next_display_element): Adjust for the new multibyte form.
17952 (disp_char_vector): Adjust for the new char table structure.
17953 (decode_mode_spec_coding): Adjust for the new structure of
17955 (decode_mode_spec): Adjust for the new code-conversion API.
17957 * xfaces.c: Include "character.h" instead of "charset.h".
17958 (load_face_font): Adjust for the change of choose_face_font and
17960 (generate_ascii_font): New function.
17961 (set_lface_from_font_name): Adjust for the change of FS_LOAD_FONT.
17962 (set_font_frame_param): Adjust for the change of choose_face_font.
17963 (free_realized_face): Make it public.
17964 (free_realized_faces_for_fontset): Rename from
17965 free_realized_multibyte_face. Free also faces realized for ASCII.
17966 (choose_face_font): Change arguments. Adjust for the change of
17967 fontset_font_pattern and FS_LOAD_FONT.
17969 * xfns.c: Include "character.h".
17970 (x_encode_text): Adjust for the new code-conversion API.
17972 * xselect.c: Don't include "charset.h".
17973 (selection_data_to_lisp_data): Adjust for the new code conversion API.
17975 * xterm.c: Include "character.h".
17976 (x_encode_char): New argument CHARSET. Change caller.
17977 (x_get_char_face_and_encoding, x_get_glyph_face_and_encoding):
17978 Call ENCODE_CHAR instead of SPLIT_CHAR.
17979 (x_produce_glyphs): Don't check Vnonascii_translation_table Call
17980 CHAR_WIDTH instead of CHARSET_WIDTH.
17981 (XTread_socket): Adjust for the new code-conversion API.
17982 (x_new_font): Adjust for the change of FS_LOAD_FONT.
17983 (x_load_font): Adjust for the change of struct font.
17985 2008-02-01 Stefan Monnier <monnier@iro.umontreal.ca>
17987 * xfaces.c (face_at_buffer_position): Remove unused vars.
17989 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17991 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR):
17992 Fix overflow checking.
17994 2008-02-01 Kenichi Handa <handa@ni.aist.go.jp>
17996 * ccl.c (CCL_WRITE_CHAR, CCL_WRITE_MULTIBYTE_CHAR, ccl_driver):
17997 Cancel previous change.
17999 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
18001 * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when
18002 ccl->eight_bit_control. Fix check for buffer overflow.
18003 (CCL_WRITE_MULTIBYTE_CHAR): Fix check for buffer overflow.
18004 (ccl_driver): Initialize extra_bytes to 0.
18006 2008-01-31 Kenichi Handa <handa@ni.aist.go.jp>
18008 * keyboard.c (make_ctrl_char): If C is a multibyte character, just
18009 return it ORed with ctrl_modifier.
18011 2008-01-29 Miles Bader <miles@gnu.org>
18013 * macterm.c (XTset_vertical_scroll_bar): Fix merge mistake.
18015 2008-01-28 Jason Rumney <jasonr@gnu.org>
18017 * w32.c (stat): Don't double check for networked drive.
18019 2008-01-28 Stefan Monnier <monnier@iro.umontreal.ca>
18021 * window.c (run_window_configuration_change_hook): New function.
18022 Code extracted from set_window_buffer. Set the selected frame.
18023 (set_window_buffer): Use it.
18024 * window.h (run_window_configuration_change_hook): Declare.
18025 * dispnew.c (change_frame_size_1): Use it instead of set-window-buffer.
18027 * keyboard.c (read_char): Yet another int/Lisp_Object mixup (YAILOM).
18029 2008-01-27 Dan Nicolaescu <dann@ics.uci.edu>
18031 * Makefile.in: Remove references to unused macros.
18033 2008-01-26 Eli Zaretskii <eliz@gnu.org>
18035 * w32.c (g_b_init_get_sid_sub_authority)
18036 (g_b_init_get_sid_sub_authority_count): New static variables.
18037 (GetSidSubAuthority_Proc, GetSidSubAuthorityCount_Proc): New typedefs.
18038 (get_sid_sub_authority, get_sid_sub_authority_count): New functions.
18039 (init_user_info): Use them to retrieve uid and gid.
18040 Use 500/513, the Windows defaults, as Administrator's uid/gid.
18041 (fstat): Use pw_uid and pw_gid from the_passwd structure for
18042 st_uid and st_gid of the file.
18044 2008-01-26 Jason Rumney <jasonr@gnu.org>
18046 * w32.c (logon_network_drive): New function.
18049 2008-01-26 Chong Yidong <cyd@stupidchicken.com>
18051 * xdisp.c (pos_visible_p): Handle the case where charpos falls on
18052 invisible text covered with an ellipsis.
18054 2008-01-25 Richard Stallman <rms@gnu.org>
18056 * xdisp.c (redisplay_window): Run Qwindow_text_change_functions and
18057 jump back to beginning. Move some other initializations after that.
18058 (Qwindow_text_change_functions, Vwindow_text_change_functions):
18060 (syms_of_xdisp): Init them.
18062 * keyboard.c (read_char): Restore echo_message_buffer after redisplay.
18064 * buffer.c (reset_buffer_local_variables):
18065 Implement `permanent-local-hook'.
18066 (Qpermanent_local_hook): New variable.
18067 (syms_of_buffer): Init and staticpro it.
18069 2008-01-25 Michael Albinus <michael.albinus@gmx.de>
18071 * dbusbind.c (xd_retrieve_arg): Pacify GCC on x86_64 GNU/Linux.
18073 2008-01-25 Thien-Thi Nguyen <ttn@gnuvola.org>
18075 * fns.c (Fclrhash): Return TABLE.
18077 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18079 * macterm.c (x_scroll_bar_create): Initialize bar->redraw_needed_p.
18080 (XTset_vertical_scroll_bar): Redraw scroll bar if bar->redraw_needed_p
18081 is set even without positional changes.
18082 (x_scroll_bar_clear): Set bar->redraw_needed_p.
18084 * macterm.h (struct scroll_bar): New member `redraw_needed_p'.
18086 2008-01-23 Jason Rumney <jasonr@gnu.org>
18088 * xterm.c (handle_one_xevent): Revert to counting chars not bytes.
18090 * w32term.c (w32_read_socket) <WM_CHAR>: Decode characters outside
18091 the unicode range available in MULE by locale-coding-system.
18092 Improve dbcs lead byte detection. Set event timestamp and modifiers
18095 2008-01-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18097 * mac.c (mac_emacs_pid) [MAC_OSX]: New variable.
18098 [MAC_OSX] (init_mac_osx_environment): Initialize it.
18099 [MAC_OSX] (mac_try_close_socket) [SELECT_USE_CFSOCKET]: Return 0
18100 when used on child processes.
18102 2008-01-21 Michael Albinus <michael.albinus@gmx.de>
18104 * dbusbind.c (Fdbus_method_return_internal): Rename from
18105 Fdbus_method_return.
18106 (Fdbus_unregister_object): Move to dbus.el.
18107 (Fdbus_call_method, Fdbus_method_return_internal)
18108 (Fdbus_send_signal): Improve debug messages.
18110 2008-01-20 Martin Rudalics <rudalics@gmx.at>
18112 * undo.c (undo_inhibit_record_point): New variable.
18113 (syms_of_undo): Initialize it.
18114 (record_point): Don't record point when undo_inhibit_record_point
18117 2008-01-19 Stefan Monnier <monnier@iro.umontreal.ca>
18119 * process.c (list_processes_1): Don't use SCHARS on a nil buffer name.
18121 * xdisp.c (Qauto_hscroll_mode): New var.
18122 (syms_of_xdisp): Initialize it.
18123 (hscroll_window_tree): Use it to lookup `auto-hscroll-mode' in each
18125 (hscroll_windows): Don't check automatic_hscrolling_p here.
18127 * window.c (set_window_buffer): Don't unnecessarily reset hscroll and
18128 vscroll if we're setting window-buffer to the value it already has.
18130 2008-01-18 Dan Nicolaescu <dann@ics.uci.edu>
18132 * m/intel386.h: Remove references to XENIX.
18134 2008-01-17 Andreas Schwab <schwab@suse.de>
18136 * m/amdx86-64.h (START_FILES, LIB_STANDARD): Use HAVE_LIB64_DIR
18137 instead of HAVE_X86_64_LIB64_DIR.
18138 * m/ibms390x.h (START_FILES, LIB_STANDARD): Likewise.
18140 2008-01-17 Glenn Morris <rgm@gnu.org>
18142 * m/ibms390x.h (START_FILES, LIB_STANDARD): Adjust value according
18143 to HAVE_X86_64_LIB64_DIR.
18145 2008-01-16 Dan Nicolaescu <dann@ics.uci.edu>
18152 * s/hpux9shxr4.h: Remove files for systems no longer supported.
18154 * sysdep.c: Remove code containing references to symbols defined
18155 by unsupported systems.
18157 2008-01-16 Glenn Morris <rgm@gnu.org>
18159 * coding.c (select-safe-coding-system-function): Doc fix.
18161 2008-01-15 Glenn Morris <rgm@gnu.org>
18163 * config.in: Revert 2008-01-13 change: this is a generated file.
18165 2008-01-13 Tom Tromey <tromey@redhat.com>
18167 * lisp.h: Fix typo.
18169 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
18175 * s/ptx4.h: Remove files for systems no longer supported.
18177 * callproc.c (Fcall_process): Fix previous change.
18179 2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
18181 * unexsunos4.c: Remove file, system not supported anymore.
18201 * alloc.c: Remove code containing references to symbols defined by
18202 unsupported systems.
18204 2008-01-11 Kenichi Handa <handa@ni.aist.go.jp>
18206 * coding.c (detect_coding_mask): Fix previous change.
18208 2008-01-09 Kenichi Handa <handa@ni.aist.go.jp>
18210 * coding.c (detect_coding_iso2022): New arg
18211 latin_extra_code_state. Allow Latin extra codes only
18212 when *latin_extra_code_state is nonzero.
18213 (detect_coding_mask): If there is a NULL byte, detect the encoding
18214 as UTF-16 or binary. If Latin extra codes exist, detect the
18215 encoding as ISO-2022 only when there's no other proper encoding is
18218 2008-01-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18220 * frame.c (Fmake_terminal_frame): Use #ifdef MAC_OS8 instead of
18223 2008-01-08 Richard Stallman <rms@gnu.org>
18225 * fileio.c (Ffile_name_directory, Fexpand_file_name): Doc fixes.
18227 2008-01-06 Nick Roberts <nickrob@snap.net.nz>
18229 * keyboard.c (parse_menu_item): Don't enclose key bindings on
18230 menu bar in parentheses.
18232 2008-01-06 Dan Nicolaescu <dann@ics.uci.edu>
18236 * m/alliant-2800.h:
18244 * m/aviion-intel.h:
18339 * unexsni.c: Remove files for systems no longer supported.
18341 * m/intel386.h: Remove references to unsupported systems.
18343 * w32.c (get_emacs_configuration): Remove reference to i860.
18345 * sysdep.c: Remove dead code.
18347 2008-01-05 Dan Nicolaescu <dann@ics.uci.edu>
18350 * m/masscomp.h: Remove files. Platform is obsolete.
18352 2008-01-04 Michael Albinus <michael.albinus@gmx.de>
18354 * dbusbind.c (Fdbus_method_return): New function.
18355 (xd_read_message): Add the serial number to the event.
18356 (Fdbus_register_method): Activate the function.
18358 2008-01-03 Stefan Monnier <monnier@iro.umontreal.ca>
18360 * keyboard.c (read_key_sequence): Fix typo.
18362 2008-01-03 Michael Albinus <michael.albinus@gmx.de>
18364 * dbusbind.c (all): Replace XCAR by CAR_SAFE and XCDR by CDR_SAFE.
18365 (xd_signature, xd_append_arg): Handle element type detection for
18367 (Fdbus_call_method, Fdbus_send_signal): Undo type casting for
18368 SDATA () calls; this must be solved more general.
18369 (Fdbus_register_signal): Use SBYTES instead of strlen.
18371 2008-01-03 Magnus Henoch <magnus@zemdatav>
18373 * dbusbind.c (xd_append_arg): Use unsigned char instead of
18374 unsigned int for byte values (necessary for big-endian platform).
18375 (Fdbus_call_method): Handle the case of no returned arguments.
18377 2007-12-31 Tom Tromey <tromey@redhat.com> (tiny change)
18379 * dbusbind.c (xd_read_message): Use non-static input_event struct.
18381 2007-12-31 Magnus Henoch <mange@freemail.hu>
18383 * dbusbind.c (xd_signature): Signature of variant is just "v".
18385 2007-12-30 Michael Albinus <michael.albinus@gmx.de>
18387 * dbusbind.c: Fix several errors and compiler warnings.
18388 Reported by Tom Tromey <tromey@redhat.com>.
18389 (XD_ERROR, XD_DEBUG_MESSAGE)
18390 (XD_DEBUG_VALID_LISP_OBJECT_P): Wrap code with "do ... while (0)".
18391 (xd_append_arg): Part for basic D-Bus types rewritten.
18392 (xd_retrieve_arg): Split implementation of DBUS_TYPE_BYTE and
18393 DBUS_TYPE_(U)INT16. Don't call XD_DEBUG_MESSAGE with "%f" if not
18395 (xd_read_message): Return Qnil. Don't signal an error; it is not
18396 useful during event reading.
18397 (Fdbus_register_signal): Signal an error if the check for
18399 (Fdbus_register_method): New function. The implementation is not
18400 complete, the call of the function signals an error therefore.
18401 (Fdbus_unregister_object): New function, renamed from
18402 Fdbus_unregister_signal. The initial check signals an error, if
18403 the object is not well formed.
18405 2007-12-30 Richard Stallman <rms@gnu.org>
18407 * textprop.c (get_char_property_and_overlay):
18408 Signal error if POSITION is out of range in a buffer.
18410 2007-12-29 Martin Rudalics <rudalics@gmx.at>
18412 * w32fns.c (Fx_create_frame): Make copy of frame parameters
18413 because the original parameters are in pure storage now.
18415 2007-12-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18417 * xdisp.c (phys_cursor_in_rect_p): Check if cursor is in fringe area.
18419 2007-12-22 Eli Zaretskii <eliz@gnu.org>
18421 * callint.c (syms_of_callint) <command-history>: Add reference to
18422 history-length in the doc string.
18424 2007-12-17 Jason Rumney <jasonr@gnu.org>
18426 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned
18427 before passing as wParam.
18429 2007-12-22 Michael Albinus <michael.albinus@gmx.de>
18431 * dbusbind.c (xd_retrieve_arg): Handle DBUS_TYPE_BYTE,
18432 DBUS_TYPE_INT16, DBUS_TYPE_UINT16, DBUS_TYPE_INT64,
18433 DBUS_TYPE_UINT64, DBUS_TYPE_DOUBLE and DBUS_TYPE_SIGNATURE.
18434 Return float when DBUS_TYPE_INT32 or DBUS_TYPE_UINT32 do not fit
18436 (Fdbus_call_method): Fix docstring.
18438 2007-12-21 Michael Albinus <michael.albinus@gmx.de>
18440 * dbusbind.c (XD_BASIC_DBUS_TYPE, XD_DBUS_TYPE_P, XD_NEXT_VALUE):
18442 (XD_SYMBOL_TO_DBUS_TYPE): Rename from XD_LISP_SYMBOL_TO_DBUS_TYPE.
18443 (XD_OBJECT_TO_DBUS_TYPE): Rename from XD_LISP_OBJECT_TO_DBUS_TYPE.
18445 (xd_signature): New function.
18446 (xd_append_arg): Compute also signatures. Major rewrite.
18447 (xd_retrieve_arg): Make debug messages friendly.
18448 (Fdbus_call_method, Fdbus_send_signal): Extend docstring.
18449 Check for signatures of arguments.
18451 2007-12-19 Michael Albinus <michael.albinus@gmx.de>
18453 * dbusbind.c (QCdbus_type_byte, QCdbus_type_boolean)
18454 (QCdbus_type_int16, QCdbus_type_uint16, QCdbus_type_int32)
18455 (QCdbus_type_uint32, QCdbus_type_int64, QCdbus_type_uint64)
18456 (QCdbus_type_double, QCdbus_type_string, QCdbus_type_object_path)
18457 (QCdbus_type_signature, QCdbus_type_array, QCdbus_type_variant)
18458 (QCdbus_type_struct, QCdbus_type_dict_entry): New D-Bus type symbols.
18459 (XD_LISP_SYMBOL_TO_DBUS_TYPE): New macro.
18460 (XD_LISP_OBJECT_TO_DBUS_TYPE): Add compound types.
18461 (xd_retrieve_value): Remove. Functionality included in ...
18462 (xd_append_arg): New function.
18463 (Fdbus_call_method, Fdbus_send_signal): Apply it.
18465 2007-12-16 Michael Albinus <michael.albinus@gmx.de>
18467 * dbusbind.c (top): Include <stdio.h>.
18468 (Fdbus_call_method, Fdbus_send_signal): Apply type cast in
18469 dbus_message_new_method_call and dbus_message_new_signal.
18470 (Fdbus_register_signal): Rename unique_name to uname.
18471 Check handler for FUNCTIONP instead of CHECK_SYMBOL. Handle case of
18472 non-existing unique name. Fix typos in matching rule. Return an
18473 object which is useful in Fdbus_unregister_signal.
18474 (Fdbus_unregister_signal): Reimplementation, in order to remove
18475 only the corresponding entry.
18476 (Vdbus_registered_functions_table): Change the order of entries.
18477 Apply these changes in xd_read_message and Fdbus_register_signal.
18479 2007-12-16 Andreas Schwab <schwab@suse.de>
18481 * fileio.c (Finsert_file_contents): Fix overflow check to not
18482 depend on undefined integer overflow.
18484 2007-12-14 Jason Rumney <jasonr@gnu.org>
18486 * w32term.c (w32_read_socket): Use MULTIBYTE_CHAR_KEYSTROKE_EVENT
18487 for characters above 127.
18489 2007-12-13 Jason Rumney <jasonr@gnu.org>
18491 * w32fns.c (w32_wnd_proc, Fw32_reconstruct_hot_key): Range check
18492 before dereferencing array.
18493 (lookup_vk_code): Remove zero comparison.
18495 2007-12-14 Michael Albinus <michael.albinus@gmx.de>
18497 * dbusbind.c (xd_retrieve_value, xd_retrieve_arg)
18498 (Fdbus_call_method, Fdbus_send_signal, xd_read_message):
18499 Use `unsigned int' instead of `uint'.
18500 (xd_read_message, Fdbus_register_signal): Split expressions into
18501 multiple lines before operators "&&" and "||", according to the
18502 GNU Coding Standards.
18504 2007-12-14 Eli Zaretskii <eliz@gnu.org>
18506 * dispextern.h (WINDOWS_NT): Fix incorrect spelling of WINDOWSNT.
18508 2007-12-12 Juri Linkov <juri@jurta.org>
18510 * buffer.c (Frename_buffer): In interactive spec replace
18511 `read-buffer' with `read-string' that uses `buffer-name-history'
18512 as history, and the current buffer's name as default.
18514 2007-12-10 Stefan Monnier <monnier@iro.umontreal.ca>
18516 * keyboard.c (Fcommand_execute): Call Qcall_interactively instead of
18517 manipulating the backtrace manually.
18518 (make_lispy_event): Merge the ASCII and MULTIBYTE cases.
18519 (struct backtrace, backtrace_list): Remove.
18520 (command_loop_1): Remove dead var `no_direct'.
18522 * buffer.c (reset_buffer_local_variables): If permanent_too is 0, also
18523 preserve non-built-in buffer-local variables.
18524 (Fkill_all_local_variables): Don't re-create&re-set permanent
18525 buffer-local variables.
18527 2007-12-09 Juri Linkov <juri@jurta.org>
18529 * buffer.c (Frename_buffer): Change interactive spec from "s" to
18530 Lisp code that uses `read-buffer' with current buffer as default.
18532 2007-12-08 Michael Albinus <michael.albinus@gmx.de>
18534 * dbusbind.c (xd_read_message): Generate an event for every
18535 registered handler. There might be several handlers registered
18536 for the same signal.
18537 (Fdbus_register_signal): Don't overwrite a registration for the
18538 same signal. Add a new registration if handlers are different.
18539 (Vdbus_registered_functions_table): Rework doc string.
18541 2007-12-07 Michael Albinus <michael.albinus@gmx.de>
18543 * dbusbind.c (Fdbus_get_unique_name, xd_read_message)
18544 (Fdbus_register_signal): Use DBUS_MAXIMUM_NAME_LENGTH and
18545 DBUS_MAXIMUM_MATCH_RULE_LENGTH for string lengths.
18546 (Fdbus_call_method, Fdbus_send_signal, Fdbus_register_signal):
18547 Unify argument lists.
18548 (xd_read_message, Fdbus_register_signal): Reorder and extend event
18549 arguments and hash table keys. Use unique name for service.
18550 (Fdbus_unregister_signal): Remove checks.
18551 (Vdbus_registered_functions_table): Fix doc string.
18553 2007-12-05 Magnus Henoch <mange@freemail.hu>
18555 * process.c (make_process): Initialize pty_flag to 0.
18557 2007-12-05 Jason Rumney <jasonr@gnu.org>
18559 * image.c (xbm_load) [WINDOWSNT]: Shuffle the bits of directly
18562 2007-12-05 Richard Stallman <rms@gnu.org>
18564 * xdisp.c (syms_of_xdisp) <scroll-conservatively>: Doc fix.
18566 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18568 * mac.c (cfsockets_for_select) [MAC_OSX && SELECT_USE_CFSOCKET]:
18570 (mac_try_close_socket) [MAC_OSX]: New function.
18571 [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]:
18572 Update cfsockets_for_select. Replace invalid CFRunLoop source.
18574 * sysdep.c (emacs_close) [MAC_OSX && HAVE_CARBON]:
18575 Use mac_try_close_socket.
18577 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18579 * unexmacosx.c (unrelocate): New argument BASE. Use it instead of
18581 (copy_dysymtab): Compute relocation base here.
18582 (rebase_reloc_address) [__ppc64__]: New function.
18583 (copy_dysymtab) [__ppc64__]: Use it if relocation base needs to be
18586 2007-12-05 Jason Rumney <jasonr@gnu.org>
18588 * w32proc.c (sys_spawnve): Quote args with wildcards.
18590 2007-12-05 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18592 * unexmacosx.c (copy_data_segment): Also copy __gcc_except_tab and
18594 (unrelocate) [_LP64]: Set relocation base to address of data segment.
18596 2007-12-05 Michael Albinus <michael.albinus@gmx.de>
18598 * dbusbind.c (xd_read_message): Return value is a Lisp_Object.
18599 Move check for Vdbus_registered_functions_table to
18600 xd_read_queued_messages.
18601 (xd_read_queued_messages): Protect xd_read_message calls by
18602 internal_condition_case_1.
18604 2007-12-04 Michael Albinus <michael.albinus@gmx.de>
18606 * dbusbind.c (QCdbus_system_bus, QCdbus_session_bus): Rename from
18607 Qdbus_system_bus and Qdbus_session_bus, respectively.
18608 (Vdbus_intern_symbols): Remove.
18609 (Vdbus_registered_functions_table): New hash table.
18610 (XD_SYMBOL_INTERN_SYMBOL): Remove.
18611 (xd_read_message, Fdbus_register_signal, Fdbus_unregister_signal):
18612 Rewrite in order to manage registered functions by hash table
18613 Vdbus_registered_functions_table.
18615 2007-12-03 Jan Djärv <jan.h.d@swipnet.se>
18617 * xterm.c: Update URL to Window Manager Specification in comment.
18619 2007-12-02 Michael Albinus <michael.albinus@gmx.de>
18621 * config.in (HAVE_DBUS): Add.
18623 * Makefile.in (HAVE_DBUS): Add D-Bus definitions if defined.
18624 (ALL_CFLAGS): Add ${DBUS_CFLAGS}.
18625 (obj): Add $(DBUS_OBJ).
18626 (LIBES): Add $(DBUS_LIBS).
18627 (dbusbind.o): New target.
18629 * dbusbind.c: New file.
18631 * emacs.c (main): Call syms_of_dbusbind when HAVE_DBUS is defined.
18633 * keyboard.c: All D-Bus related code is wrapped by "#ifdef HAVE_DBUS".
18634 (Qdbus_event): New Lisp symbol.
18635 (kbd_buffer_get_event, make_lispy_event): Handle DBUS_EVENT.
18636 (gobble_input): Call xd_read_queued_messages, reading D-Bus messages.
18637 (keys_of_keyboard): Define dbus-event.
18639 * termhooks.h (event_kind): Add DBUS_EVENT when HAVE_DBUS is defined.
18641 2007-12-01 Richard Stallman <rms@gnu.org>
18643 * search.c (syms_of_search) <inhibit-changing-match-data>: Doc fix.
18645 2007-11-30 Jason Rumney <jasonr@gnu.org>
18647 * w32console.c (w32con_ins_del_lines, scroll_line): Clip to window.
18648 (w32con_reset_terminal_modes): Clear screen buffer.
18649 (w32_face_attributes): Don't use color indexes that are out of range.
18650 Only reverse the default colors.
18652 * xfaces.c (map_tty_color, tty_color_name): Remove special case for
18655 * w32console.c, w32term.h (vga_stdcolor_name): Remove.
18657 2007-11-29 Jason Rumney <jasonr@gnu.org>
18659 * w32console.c: Leave HAVE_WINDOW_SYSTEM defined.
18660 (w32_face_attributes): Use Vtty_defined_color_alist to determine
18661 if the terminal colors are initialized.
18662 (unspecified_fg, unspecified_bg): Remove unused declarations.
18664 2007-11-29 Andreas Schwab <schwab@suse.de>
18666 * keyboard.c (apply_modifiers): Fix typo.
18668 2007-11-29 Richard Stallman <rms@gnu.org>
18670 * keymap.c (Fcurrent_local_map): Doc fix.
18672 2007-11-28 Petr Salinger <Petr.Salinger@seznam.cz> (tiny change)
18674 * s/gnu-kfreebsd.h: New file.
18676 2007-11-28 Stefan Monnier <monnier@iro.umontreal.ca>
18678 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
18679 Don't cast redundantly.
18681 * keyboard.c (KEY_TO_CHAR): New macro.
18682 (parse_modifiers, apply_modifiers): Accept integer arguments.
18683 (read_key_sequence): Use them to unify the "shift->unshift" mapping
18684 for chars and symbol keys.
18685 After doing such remapping, apply function-key-map again.
18687 2007-11-27 Dan Nicolaescu <dann@ics.uci.edu>
18689 * Makefile.in (SOME_MACHINE_LISP): Remove VMS files, they are not
18692 2007-11-26 Andreas Schwab <schwab@suse.de>
18694 * process.c (list_processes_1): Fix indentation level of the
18697 2007-11-23 Andreas Schwab <schwab@suse.de>
18699 * editfns.c (Fformat): Handle %c specially since it requires the
18700 argument to be of type int.
18702 2007-11-23 Markus Triska <markus.triska@gmx.at>
18704 * emacs.c (main): Call init_editfns before init_process, since
18705 init_process sets Vprocess_connection_type depending on OS release.
18707 2007-11-22 Stefan Monnier <monnier@iro.umontreal.ca>
18709 * data.c (do_symval_forwarding): Use same code as in find_symbol_value.
18710 (find_symbol_value): Use do_symval_forwarding.
18712 * data.c (set_internal): Set the value in the `cons-cell' (for
18713 Buffer_Local_values) not only for frame-local variables.
18715 2007-11-22 Andreas Schwab <schwab@suse.de>
18717 * data.c (Fnumber_to_string): Add cast when passing EMACS_INT
18719 * keymap.c (Fsingle_key_description): Likewise.
18720 * print.c (print_object): Likewise.
18722 2007-11-22 Jan Djärv <jan.h.d@swipnet.se>
18724 * gtkutil.c (update_frame_tool_bar): Don't call x-gtk-map-stock if
18725 file for image is nil.
18727 2007-11-22 Dan Nicolaescu <dann@ics.uci.edu>
18729 * term.c: Include stdarg.h.
18730 (fatal): Implement using varargs.
18731 * lisp.h (fatal): Add argument types. (Restore 2005-09-30 change).
18733 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
18735 * lisp.h (struct Lisp_Buffer_Objfwd): Add a `slottype' field.
18736 * data.c (store_symval_forwarding): Get type from buffer_objfwd.
18737 Update call to buffer_slot_type_mismatch.
18738 * buffer.h (buffer_local_types, PER_BUFFER_TYPE): Remove.
18739 (buffer_slot_type_mismatch): Update.
18740 * buffer.c (buffer_local_types): Remove.
18741 (buffer_slot_type_mismatch): Get the symbol and type as arguments.
18742 (defvar_per_buffer): Set the type in the buffer_objfwd.
18744 2007-11-21 Jason Rumney <jasonr@gnu.org>
18746 * w32bdf.c (w32_init_bdf_font, w32_BDF_to_x_font):
18747 CreateFileMapping returns NULL on failure.
18749 2007-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
18751 * search.c (Fset_match_data): Remove the `evaporate' feature.
18752 (unwind_set_match_data): Don't use the `evaporate' feature.
18754 2007-11-21 Jason Rumney <jasonr@gnu.org>
18756 * dispnew.c (init_display) [WINDOWSNT]: Hardcode terminal_type.
18758 * w32console.c (w32con_write_glyphs): Remove unused variables.
18760 2007-11-20 Dan Nicolaescu <dann@ics.uci.edu>
18762 * macterm.c (mac_term_init): Call add_keyboard_wait_descriptor.
18764 * s/darwin.h (MULTI_KBOARD): Remove.
18766 * macfns.c (x_create_tip_frame, Fx_create_frame)
18767 (x_create_tip_frame): Don't deal with MULTI_KBOARD.
18769 2007-11-19 Stefan Monnier <monnier@iro.umontreal.ca>
18771 * buffer.c (Fbuffer_local_value): Remove redundant test.
18772 (swap_out_buffer_local_variables): Swap out binding in `buffer' rather
18773 than in `current-buffer' to match the comment.
18774 Do the swap using swap_in_global_binding.
18776 * data.c (store_symval_forwarding, set_internal):
18777 * eval.c (specbind): Remove dead code.
18779 * coding.c (detect_coding, Fupdate_coding_systems_internal):
18780 * fns.c (Fmd5): Use find_symbol_value rather than SYMBOL_VALUE
18781 Since we do not want to see internal Lisp_*fwd objects here.
18783 2007-11-18 Jan Djärv <jan.h.d@swipnet.se>
18785 * sysdep.c (init_system_name): Use getaddrinfo if available.
18787 * xterm.c (x_scroll_bar_set_handle, x_scroll_bar_handle_click)
18788 (x_scroll_bar_note_movement): start, end, with, height in struct
18789 scroll_bar are integers and not Lisp_Object, so remove XINT for them.
18791 2007-11-17 Dan Nicolaescu <dann@ics.uci.edu>
18793 * puresize.h (BASE_PURESIZE): Increase to 1190000.
18795 2007-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
18797 * buffer.h (struct buffer): Move `undo_list' back to before `name'.
18798 This undoes Richard's change of 14-Oct-2002.
18800 * alloc.c (allocate_other_vector):
18801 * lisp.h (allocate_other_vector): Remove.
18803 * window.c (struct save_window_data): Move non-lisp data to the end
18804 and make it `int' rather than Lisp_Object.
18805 (Fcurrent_window_configuration): Use ALLOCATE_PSEUDOVECTOR.
18806 Done wrap/unwrap integer values.
18807 (Fset_window_configuration, compare_window_configurations):
18808 Update use of fields to their new types.
18810 * xterm.h (struct scroll_bar): Only use Lisp_Object for lisp data.
18811 Turn integer fields into `int'. Merge x_window_low and x_window_high.
18812 (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK, SCROLL_BAR_X_WINDOW)
18813 (SET_SCROLL_BAR_X_WINDOW): Remove.
18814 (SCROLL_BAR_X_WIDGET, SET_SCROLL_BAR_X_WIDGET):
18815 Access the new x_window field directly.
18816 * xterm.c (x_scroll_bar_create): Use a pseudovector.
18817 Don't wrap/unwrap integers into Lisp_Objects.
18818 (XTset_vertical_scroll_bar, x_scroll_bar_handle_click)
18819 (x_scroll_bar_report_motion):
18820 Don't wrap/unwrap integers into Lisp_Objects.
18821 (x_term_init): Use SDATA.
18822 (x_window_to_scroll_bar, x_create_toolkit_scroll_bar)
18823 (x_scroll_bar_set_handle, x_scroll_bar_remove)
18824 (XTset_vertical_scroll_bar, x_scroll_bar_expose)
18825 (x_scroll_bar_report_motion, x_scroll_bar_clear):
18826 * xfns.c (x_set_background_color):
18827 * gtkutil.c (xg_create_scroll_bar, xg_set_toolkit_scroll_bar_thumb):
18828 Access the new x_window field directly.
18830 * alloc.c (ALLOCATE_PSEUDOVECTOR): Move to lisp.h.
18831 (allocate_pseudovector): Make non-static.
18833 * lisp.h (enum pvec_type): New tag PVEC_OTHER.
18834 (allocate_pseudovector): Declare.
18835 (ALLOCATE_PSEUDOVECTOR): Move from alloc.c.
18837 2007-11-15 Andreas Schwab <schwab@suse.de>
18839 * editfns.c (Fformat): Correctly format EMACS_INT values.
18840 Also take precision into account when formatting an integer.
18842 * keyboard.c (Fevent_symbol_parse_modifiers): Fix declaration.
18844 2007-11-15 Stefan Monnier <monnier@iro.umontreal.ca>
18846 * keyboard.c (Fevent_symbol_parse_modifiers): New function.
18847 (syms_of_keyboard): Defsubr it.
18849 * data.c (swap_in_global_binding): Fix longstanding bug where
18850 store_symval_forwarding was not called with the right second argument,
18851 thus causing objfwd-ing from being dropped.
18853 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
18855 * macfns.c (Fx_create_frame, Fx_display_pixel_width)
18856 (Fx_display_pixel_height, Fx_display_planes)
18857 (Fx_display_color_cells, Fx_server_max_request_size)
18858 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
18859 (Fx_display_visual_class, Fx_display_save_under):
18860 * w32fns.c (Fx_create_frame, Fx_display_pixel_width)
18861 (Fx_display_pixel_height, Fx_display_planes)
18862 (Fx_display_color_cells, Fx_server_max_request_size)
18863 (Fx_server_vendor, Fx_server_version, Fx_display_screens)
18864 (Fx_display_mm_height, Fx_display_mm_width)
18865 (Fx_display_backing_store, Fx_display_visual_class)
18866 (Fw32_select_font, Fx_display_save_under):
18867 * xfns.c (Fx_create_frame, Fx_display_pixel_width)
18868 (Fx_display_pixel_height, Fx_display_planes)
18869 (Fx_display_color_cells, Fx_server_max_request_size)
18870 (Fx_server_vendor, Fx_server_version, Fx_display_backing_store)
18871 (Fx_display_save_under): Fix typos in docstrings.
18873 2007-11-14 Juanma Barranquero <lekktu@gmail.com>
18875 * w32fns.c (Fw32_registered_hot_keys): Don't return the nil values
18876 corresponding to deleted entries; they are an implementation detail.
18877 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits):
18879 (w32_pass_extra_mouse_buttons_to_system, w32_strict_fontnames)
18880 (w32_pass_multimedia_buttons_to_system, w32_strict_painting)
18881 (Vw32_charset_info_alist, w32_to_x_color, w32_init_class)
18882 (w32_createscrollbar, w32_createwindow, my_post_msg, w32_get_modifiers)
18883 (w32_grabbed_keys, cancel_all_deferred_msgs): Make static.
18884 (Fw32_define_rgb_color, Fw32_load_color_file)
18885 (syms_of_w32fns) <w32-pass-multimedia-buttons-to-system>:
18886 Fix typos in docstrings.
18887 (Fx_server_version): Reflow docstring.
18888 (Fw32_shell_execute): Doc fixes.
18890 2007-11-13 Juanma Barranquero <lekktu@gmail.com>
18892 * w32fns.c (Fw32_register_hot_key): Don't try to register hot key
18893 if w32_parse_hot_key returned nil.
18895 2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
18897 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
18899 2007-11-09 Jason Rumney <jasonr@gnu.org>
18901 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
18903 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
18905 * keyboard.c (discard_mouse_events, make_lispy_event) [WINDOWSNT]:
18906 Remove W32_SCROLL_BAR_CLICK_EVENT.
18908 * termhooks.h (enum event_kind) [WINDOWSNT]: Likewise.
18909 Add MULTIMEDIA_KEY_EVENT.
18911 * keyboard.c (lispy_function_keys) [WINDOWSNT]: Add more keys.
18912 (lispy_multimedia_keys) [WINDOWSNT]: New array.
18913 (make_lispy_event) [WINDOWSNT]: Use it to translate
18914 MULTIMEDIA_KEY_EVENT.
18916 * w32term.h (WM_APPCOMMAND): Define if not already.
18917 (GET_APPCOMMAND_LPARAM): Likewise.
18919 * w32term.c (w32_read_socket): Generate MULTIMEDIA_KEY_EVENT from
18922 * w32fns.c (w32_pass_multimedia_buttons_to_system): New user option.
18923 (syms_of_w32fns): Export and initialize it.
18924 (w32_wnd_proc): Pass WM_APPCOMMAND on to w32_read_socket.
18926 2007-11-09 Chong Yidong <cyd@stupidchicken.com>
18928 * dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
18931 * xdisp.c (handle_face_prop): Fix last change.
18933 2007-11-09 Richard Stallman <rms@gnu.org>
18935 * xdisp.c (handle_face_prop): Test for strings that came from overlays,
18936 not just for after-strings and before-strings.
18937 Call face_for_overlay_string and pass the overlay to it.
18938 (handle_display_prop): Determine whether property came from an overlay.
18939 Pass OVERLAY arg to handle_single_display_spec.
18940 (handle_single_display_spec): New arg OVERLAY sets it->from_overlay.
18941 (load_overlay_strings): Fill in it->string_overlays.
18942 (get_overlay_strings_1, push_it, pop_it): Handle it->from_overlays.
18944 * xfaces.c (face_for_overlay_string): Function renamed from
18945 face_at_buffer_position_no_overlays, and add arg OVERLAY.
18947 * dispextern.h (struct it): New elt string_overlays.
18948 New elt from_overlay, also in stack.
18949 Rearrange a few elements.
18950 (face_for_overlay_string): Decl renamed from
18951 face_at_buffer_position_no_overlays, and add argument.
18953 2007-11-09 Richard Stallman <rms@gnu.org>
18955 * xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
18956 to get the base face for an overlay string.
18958 * dispextern.h (face_at_buffer_position_no_overlays): Add decl.
18960 * xfaces.c (face_at_buffer_position_no_overlays): New function.
18962 * xdisp.c (handle_stop): Move some code out of loop.
18964 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18966 * macfns.c [USE_ATSUI] (Fmac_atsu_font_face_attributes):
18967 Fix conversion from Lisp object to ATSUFontID.
18969 2007-11-09 Jason Rumney <jasonr@gnu.org>
18971 * xdisp.c (Fformat_mode_line): Do nothing when noninteractive.
18973 2007-11-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18975 * unexmacosx.c (unexec_regions_recorder, unexec_regions_merge):
18976 Don't assume regions are aligned to page boundary.
18977 (print_load_command_name): Add LC_UUID if defined.
18979 2007-11-09 Richard Stallman <rms@gnu.org>
18981 * emacs.c (syms_of_emacs) <installation-directory>: Reflow docstring.
18983 2007-11-07 Jason Rumney <jasonr@gnu.org>
18985 * s/windows95.h: Remove.
18987 2007-11-06 Jan Djärv <jan.h.d@swipnet.se>
18989 * gtkutil.c (xg_tool_bar_menu_proxy): Handle GTK_IMAGE_ICON_NAME and
18990 abort with a message on unhandled store_type values.
18992 2007-11-01 Jan Djärv <jan.h.d@swipnet.se>
18994 * xterm.c, xfns.c, xselect.c, xterm.h, s/msdos.h, s/sco4.h, s/sco5.h:
18995 Remove HAVE_X11R5 and HAVE_X11R4.
18997 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
18999 * Makefile.in: Remove references to sunfns.c and sunfns.o.
19001 2007-11-01 Johan Bockgård <bojohan@gnu.org>
19003 * macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
19004 Don't set s->stippled_p here, since it has already been set by
19005 x_set_glyph_string_gc from x_draw_glyph_string.
19007 2007-11-01 Dan Nicolaescu <dann@ics.uci.edu>
19009 * sunfns.c: Remove file.
19013 * m/sparc.h: Remove Sun windows code.
19015 2007-10-31 Stefan Monnier <monnier@iro.umontreal.ca>
19017 * keyboard.c (syms_of_keyboard): Initialize the initial_kboard.
19018 (init_keyboard): Set current_kboard's window-system to nil.
19019 (tty_read_avail_input): Typo.
19020 * frame.c (make_initial_frame): Don't initialize the initial_kboard.
19022 2007-10-31 Dan Nicolaescu <dann@ics.uci.edu>
19029 * Makefile.in: Remove all mentions of X10.
19031 * dispnew.c (syms_of_display): Don't mention version 10.
19033 2007-10-28 Juanma Barranquero <lekktu@gmail.com>
19035 * makefile.w32-in (OBJ1): Remove abbrev.$(O).
19036 ($(BLD)/abbrev.$(O)): Remove.
19038 2007-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
19040 Rewrite abbrev.c in Elisp.
19041 * image.c (Qcount): Don't declare as extern.
19042 (syms_of_image): Initialize and staticpro `Qcount'.
19043 * puresize.h (BASE_PURESIZE): Increase for the new abbrev.el functions.
19044 * emacs.c (main): Don't call syms_of_abbrev.
19045 * Makefile.in (obj): Remove abbrev.o.
19046 (abbrev.o): Remove.
19047 * abbrev.c: Remove.
19049 2007-10-26 Martin Rudalics <rudalics@gmx.at>
19051 * window.c (window_min_size_2): Don't count header-line.
19053 2007-10-26 Dan Nicolaescu <dann@ics.uci.edu>
19055 * frame.h (struct frame): Move all bit fields after the first bit
19056 field to take advantage of the available space. Group all the
19057 chars together to reduce wasted space due to padding.
19059 2007-10-26 Juanma Barranquero <lekktu@gmail.com>
19061 * minibuf.c (Fread_minibuffer, Feval_minibuffer): Reflow docstrings.
19063 * alloc.c (spare_memory, stack_copy, stack_copy_size, ignore_warnings)
19064 (Vdead, dont_register_blocks, staticvec, staticidx, interval_block)
19065 (n_interval_blocks, init_strings, check_string_bytes, check_sblock)
19066 (init_float, free_float, n_cons_blocks, init_cons, all_vectors)
19067 (n_vectors, symbol_block, symbol_block_index, symbol_free_list)
19068 (n_symbol_blocks, init_symbol, marker_block, marker_free_list)
19069 (n_marker_blocks, init_marker, valid_pointer_p, make_pure_float)
19070 (last_marked, mark_object_loop_halt): Make static.
19072 * frame.c (syms_of_frame) <delete-frame-functions>:
19073 Fix typo in docstring.
19075 2007-10-25 Juanma Barranquero <lekktu@gmail.com>
19077 * w32.c (init_environment): Fix tiny memory leak.
19078 (w32_get_resource): Remove unused variable `ok'.
19080 2007-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
19082 Make `window-system' into a keyboard-local variable (rather than
19083 frame-local as done originally by multi-tty).
19085 * keyboard.h (struct kboard): Add Vwindow_system.
19086 * keyboard.c (init_kboard): Set a default for Vwindow_system.
19087 (mark_kboards): Mark Vwindow_system.
19089 * dispnew.c (syms_of_display) <window-system>: Declare terminal-local.
19090 (init_display): Don't set the obsolete `window-system' frame-param.
19092 * xterm.c (x_term_init):
19093 * w32term.c (w32_create_terminal):
19094 * term.c (init_tty): Set Vwindow_system.
19095 * macterm.c (mac_create_terminal): Set a keyboard (missing piece of the
19096 multi-tty merge maybe?), copied from w32term.c. Set Vwindow_system.
19098 * xfns.c (Fx_create_frame, x_create_tip_frame):
19099 * w32fns.c (Fx_create_frame, x_create_tip_frame):
19100 * macfns.c (Fx_create_frame):
19101 Don't set the obsolete `window-system' frame-param.
19103 * frame.h (Qwindow_system): Remove.
19104 * frame.c (Qwindow_system): Remove. In `syms_of_frame' as well.
19105 (Fmake_terminal_frame): Don't set obsolete `window-system' frame-param.
19107 2007-10-24 Richard Stallman <rms@gnu.org>
19109 * frame.c (x_figure_window_size): For fullscreen case,
19110 set USPosition | PPosition without clobbering rest of window_prompting.
19112 * keyboard.c (Fcurrent_idle_time): Doc fix.
19114 * print.c (Fwith_output_to_temp_buffer): Doc fix.
19116 2007-10-23 Stefan Monnier <monnier@iro.umontreal.ca>
19118 * process.c (unwind_request_sigio): Only define if __ultrix__.
19120 * callproc.c (child_setup): Remove spurious *.
19122 * lisp.h (Fget_text_property): Declare.
19123 (have_menus_p): Declare it here rather than in sys-dep header files.
19124 * macterm.h (have_menus_p):
19125 * msdos.h (have_menus_p):
19126 * xterm.h (have_menus_p): Remove.
19128 * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
19129 (Fmake_variable_frame_local): Just check the variable's const-ness
19130 rather than checking nil or t.
19132 2007-10-22 Jason Rumney <jasonr@gnu.org>
19134 * w32fns.c: Include math.h.
19135 (w32_abort): Declaration moved to nt/config.nt.
19137 * s/ms-w32.h (HAVE_STDLIB_H): Define.
19138 (abort): Redefinition moved to nt/config.nt.
19140 * m/windowsnt.h: Remove.
19142 2007-10-22 Juanma Barranquero <lekktu@gmail.com>
19144 * emacs.c (Fdump_emacs): Fix typo in message.
19145 (syms_of_emacs) <kill-emacs-hook>: Fix typo in docstring.
19146 <installation-directory>: Reflow docstring.
19148 2007-10-22 Juri Linkov <juri@jurta.org>
19150 * minibuf.c: Allow minibuffer default to be a list of default values.
19151 With empty input use the first element of this list as returned default.
19153 (read_minibuf_noninteractive): If defalt is cons, set val to its car.
19154 (read_minibuf): If defalt is cons, set histstring to its car.
19155 (Fread_string): If default_value is cons, set val to its car.
19156 (Fread_buffer): If def is cons, use its car.
19157 (Fcompleting_read): If defalt is cons, set val to its car.
19159 2007-10-21 Michael Albinus <michael.albinus@gmx.de>
19161 * fileio.c (Fcopy_file): Call file name handler with preserve_uid_gid.
19163 2007-10-20 Juanma Barranquero <lekktu@gmail.com>
19165 * doc.c (Fdocumentation): Check for advice in all cases.
19167 2007-10-19 Chong Yidong <cyd@stupidchicken.com>
19169 * Makefile.in [HAVE_LIBRESOLV]: Add -lresolv to linker flags.
19171 2007-10-19 Richard Stallman <rms@gnu.org>
19173 * doc.c (Fdocumentation): Check for and handle an advised function.
19175 2007-10-19 Juanma Barranquero <lekktu@gmail.com>
19177 * process.c (Fset_process_filter): Doc fix.
19179 2007-10-18 Stefan Monnier <monnier@iro.umontreal.ca>
19181 * keyboard.c (read_key_sequence): Undo a change introduced by multi-tty
19182 which caused key-translation-map to applied repeatedly (thus breaking
19185 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
19187 * xselect.c (x_own_selection, x_handle_selection_clear)
19188 (x_clear_frame_selections):
19189 * w32menu.c (list_of_panes, list_of_items):
19190 * w32fns.c (w32_color_map_lookup, Fx_create_frame, Fx_display_list):
19191 * textprop.c (validate_plist, interval_has_all_properties)
19192 (interval_has_some_properties, interval_has_some_properties_list)
19193 (add_properties, text_property_list):
19194 * process.c (Fget_buffer_process, list_processes_1, status_notify):
19195 * minibuf.c (Fassoc_string):
19196 * macselect.c (x_own_selection, x_clear_frame_selections)
19197 (Fx_disown_selection_internal):
19198 * keymap.c (Fcommand_remapping, where_is_internal, describe_map_tree):
19199 Use CONSP rather than !NILP and XC[AD]R rather than Fc[ad]r.
19201 2007-10-17 Chong Yidong <cyd@stupidchicken.com>
19203 * process.c: Link to libs for calling res_init() if available.
19204 (Fmake_network_process): Call res_init() before getaddrinfo or
19205 gethostbyname, if possible.
19207 2007-10-17 Stefan Monnier <monnier@iro.umontreal.ca>
19209 * lread.c (read1): Set pvectype for char_tables.
19211 * lisp.h (XMISCANY, XMARKER, XINTFWD, XBOOLFWD, XOBJFWD, XOVERLAY)
19212 (XBUFFER_OBJFWD, XBUFFER_LOCAL_VALUE, XKBOARD_OBJFWD, XSAVE_VALUE):
19214 (SOME_BUFFER_LOCAL_VALUEP, GC_SOME_BUFFER_LOCAL_VALUEP): Remove.
19216 * alloc.c (free_misc): Use XMISCTYPE.
19217 (live_misc_p, gc_sweep): Use Lisp_Misc_Any.
19219 2007-10-17 Glenn Morris <rgm@gnu.org>
19221 * minibuf.c (Qcompletion_ignore_case): New Lisp_Object.
19222 (syms_of_minibuf): Add Qcompletion_ignore_case.
19223 * dired.c (Qcompletion_ignore_case): Change to external.
19224 (syms_of_dired) [VMS]: Remove Qcompletion_ignore_case.
19225 * fileio.c (Qcompletion_ignore_case): New external Lisp_Object.
19226 (Fread_file_name): Use it rather than intern'ing.
19228 * coding.c (Qcompletion_ignore_case): New external Lisp_Object.
19229 (Fread_coding_system): Ignore case of user input.
19231 2007-10-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19233 * xdisp.c (handle_display_prop): Ignore display specs after
19234 replacing one when string text is being replaced.
19235 (handle_single_display_spec): Pretend as if characters with display
19236 property haven't been consumed only when buffer text is being replaced.
19238 2007-10-16 Stefan Monnier <monnier@iro.umontreal.ca>
19240 * xfns.c (Fx_create_frame, Fx_display_list):
19241 * window.c (window_fixed_size_p, enlarge_window)
19242 (shrink_window_lowest_first):
19243 * macterm.c (init_font_name_table):
19244 * macfns.c (Fx_create_frame, Fx_display_list):
19245 * lread.c (close_load_descs):
19246 * keyboard.c (read_char_x_menu_prompt):
19247 * fns.c (Fmember, Fmemql, Fdelete, Fset_char_table_parent):
19248 * coding.c (code_convert_region_unwind): Test the type of an object
19249 rather than just !NILP before extracting data from it.
19251 * alloc.c (Fpurecopy): Set the pvec tag on pseudo vectors.
19253 * lisp.h (enum Lisp_Misc_Type): Del Lisp_Misc_Some_Buffer_Local_Value.
19254 (XMISCANY): New macro.
19255 (XMISCTYPE): Use it.
19256 (struct Lisp_Misc_Any): New type.
19257 (union Lisp_Misc): Use it.
19258 (struct Lisp_Buffer_Local_Value): Add `local_if_set' bit.
19259 * data.c (Fboundp, store_symval_forwarding, swap_in_global_binding)
19260 (find_symbol_value, set_internal, default_value, Fset_default)
19261 (Fmake_variable_buffer_local, Fmake_local_variable)
19262 (Fkill_local_variable, Fmake_variable_frame_local, Flocal_variable_p)
19263 (Flocal_variable_if_set_p, Fvariable_binding_locus):
19264 The SOME_BUFFER_LOCAL_VALUEP distinction is replaced by local_if_set.
19265 * alloc.c (allocate_buffer): Set the size and tag.
19266 (allocate_misc, mark_maybe_object, mark_object, survives_gc_p):
19268 (die): Follow the GNU convention for error messages.
19269 * print.c (print_object): SOME_BUFFER_LOCAL_VALUEP -> local_if_set.
19270 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Don't set the
19272 (set_buffer_internal_1):
19273 * frame.c (store_frame_param):
19274 * eval.c (specbind):
19275 * xdisp.c (select_frame_for_redisplay): Drop SOME_BUFFER_LOCAL_VALUEP.
19277 * doc.c (Fsnarf_documentation): Simplify.
19279 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
19281 * w32term.c (w32_font_is_double_byte, my_create_scrollbar): Make static.
19282 (syms_of_w32term) <w32-enable-unicode-output>: Fix typo in docstring.
19284 2007-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
19286 * buffer.c (Fmake_indirect_buffer): Set the buffer's tag.
19288 2007-10-14 Juanma Barranquero <lekktu@gmail.com>
19290 * eval.c (do_autoload): Don't save autoloads.
19292 * data.c (Ffset): Save autoload of the function being set.
19294 2007-10-07 John Paul Wallington <jpw@pobox.com>
19296 * xfns.c (x_create_tip_frame): Set the `display-type' frame
19297 parameter before setting up faces.
19299 2007-10-13 Eli Zaretskii <eliz@gnu.org>
19301 * ccl.c (Fregister_code_conversion_map):
19302 * keyboard.c (append_tool_bar_item): Reformat last change.
19304 * lisp.h (eabs): Rename from `abs'. All callers changed.
19306 2007-10-05 Dmitry Antipov <dmantipov@yandex.ru>
19308 * buffer.c (add_overlay_mod_hooklist):
19309 * ccl.c (Fregister_ccl_program, Fregister_code_conversion_map):
19310 * fontset.c (make_fontset):
19311 * keyboard.c (GROW_RAW_KEYBUF, menu_bar_items, menu_bar_item)
19312 (append_tool_bar_item):
19313 * macmenu.c (grow_menu_items):
19314 * w32menu.c (grow_menu_items):
19315 * xmenu.c (grow_menu_items): Use larger_vector.
19317 2007-10-13 Eli Zaretskii <eliz@gnu.org>
19319 * msdos.c (dos_rawgetc): Undo last change (there's no ``leaving
19320 selected frame'' on MSDOS).
19322 2007-10-12 Martin Rudalics <rudalics@gmx.at>
19324 * frame.c (Qexplicit_name): New variable.
19325 (x_report_frame_params): Report it in parameter alist.
19326 (syms_of_frame): Intern and staticpro it.
19328 2007-10-10 Patrick Mahan <mahan@mahan.org> (tiny change)
19330 * macfns.c (x_create_tip_frame): Set terminal for frame.
19332 2007-10-10 Stefan Monnier <monnier@iro.umontreal.ca>
19334 * frame.c (Qenvironment): Remove.
19335 (syms_of_frame) <Qenvironment>: Don't initialize.
19336 (Fdelete_frame): Don't treat the `environment' param specially.
19337 * frame.h (Qenvironment): Don't declare.
19338 * callproc.c (set_initial_environment): Don't set unused frame param.
19340 * frame.c (Fframe_with_environment): Remove.
19341 (syms_of_frame) <Sframe_with_environment>: Don't declare.
19343 * lisp.h (Fframe_with_environment): Don't declare.
19345 2007-10-10 Juanma Barranquero <lekktu@gmail.com>
19347 * indent.c (indent_tabs_mode, last_known_column)
19348 (last_known_column_modified): Make static.
19349 (syms_of_indent) <indent-tabs-mode>: Remove redundant info in docstring.
19351 2007-10-10 Katsumi Yamaoka <yamaoka@jpl.org>
19353 * puresize.h (BASE_PURESIZE): Increase to 1170000.
19355 2007-10-09 Jason Rumney <jasonr@gnu.org>
19357 * w32term.c (x_set_window_size): Disable code that attempts to tell
19358 Lisp code about a size change before it actually happens.
19360 2007-10-09 Richard Stallman <rms@gnu.org>
19362 * xdisp.c (handle_invisible_prop): After setting up an ellipsis,
19363 return HANDLED_RETURN.
19365 2007-10-08 Martin Rudalics <rudalics@gmx.at>
19367 * keyboard.c (kbd_buffer_get_event): Break loop waiting for input
19368 when there's an unread command event.
19370 * frame.c (focus_follows_mouse): Move here from frame.el to allow
19371 window autoselection act appropriately when leaving selected frame.
19372 (syms_of_frame): Initialize focus_follows_mouse.
19373 * frame.h (focus_follows_mouse): Extern it.
19374 * macterm.c (XTread_socket): When focus_follows_mouse is nil
19375 make SELECT_WINDOW_EVENT only if we don't leave the selected frame.
19376 * msdos.c (dos_rawgetc): Likewise.
19377 * w32term.c (w32_read_socket): Likewise.
19378 * xterm.c (handle_one_xevent): Likewise.
19379 * xdisp.c (syms_of_xdisp): In doc-string of
19380 mouse-autoselect-window mention focus-follows-mouse.
19382 2007-10-08 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19384 * macterm.c (mac_load_query_font): Fix missing return value.
19385 [USE_CG_DRAWING] (mac_define_fringe_bitmap, mac_destroy_fringe_bitmap):
19388 2007-10-08 Richard Stallman <rms@gnu.org>
19390 * xdisp.c (get_window_cursor_type): Implement documented behavior
19391 for cursor-in-non-selected-windows = t.
19393 2007-10-08 Jason Rumney <jasonr@gnu.org>
19395 * w32.c (w32_get_resource): Always close registry keys.
19397 2007-10-08 Jason Rumney <jasonr@gnu.org>
19399 * makefile.w32-in (LIBS): Add COMCTL32.
19401 * w32fns.c (globals_of_w32fns): Init common controls.
19403 2007-10-08 Richard Stallman <rms@gnu.org>
19405 * image.c (our_memory_buffer): Rename from omfib_buffer.
19407 2007-10-08 Richard Stallman <rms@gnu.org>
19409 * buffer.c (Foverlays_at): Doc fix.
19411 2007-10-08 Stefan Monnier <monnier@iro.umontreal.ca>
19413 * fns.c (Fplist_put): Preserve uneven tail data.
19415 2007-10-08 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change)
19417 * termhooks.h (enum event_kind): Remove trailing comma.
19419 * frame.h (enum): Remove trailing comma.
19421 2007-10-08 Dhruva Krishnamurthy <dhruvakm@gmail.com> (tiny change)
19423 * w32proc.c (delete_child): Don't terminate threads of zombies.
19425 2007-10-08 Martin Rudalics <rudalics@gmx.at>
19427 * keyboard.h (struct kboard): New elt Vlast_repeatable_command.
19429 * keyboard.c (syms_of_keyboard): Set up new Lisp variable
19430 last-repeatable-command.
19431 (init_kboard): Initialize Vlast_repeatable_command.
19432 (command_loop_1): Set it to real_this_command unless that was
19433 bound to an input event.
19434 (mark_kboards): Mark it.
19436 2007-10-08 Richard Stallman <rms@gnu.org>
19438 * eval.c (condition-case): Doc fix.
19440 2007-10-08 Masatake YAMATO <jet@gyve.org>
19442 * xfaces.c (tty_supports_face_attributes_p): Fix code
19443 for LFACE_INVERSE_INDEX and LFACE_BACKGROUND_INDEX; code
19444 was copied and not edited.
19446 2007-10-09 Stefan Monnier <monnier@iro.umontreal.ca>
19448 Add new `input-decode-map' keymap and use it for terminal
19450 * keyboard.h (struct kboard): Add Vinput_decode_map.
19451 Remove Vlocal_key_translation_map.
19452 * keyboard.c (read_key_sequence): Add support for input-decode-map.
19453 (init_kboard): Init input-decode-map.
19454 Replace local-key-translation-map back with key-translation-map.
19455 (syms_of_keyboard): Declare input-decode-map.
19456 Remove local-key-translation-map. Update docstrings.
19457 (mark_kboards): Mark Vinput_decode_map.
19458 Don't mark Vlocal_key_translation_map.
19459 * keymap.c (Fdescribe_buffer_bindings): Describe input-decode-map.
19460 Replace local-key-translation-map back with key-translation-map.
19461 * term.c (term_get_fkeys_1, CONDITIONAL_REASSIGN):
19462 Bind in input-decode-map rather than function-key-map.
19464 * lisp.h (XSETPSEUDOVECTOR): Don't set the tag anymore.
19465 This was made redundant by the previous introduction of XSETPVECTYPE.
19467 2007-10-09 Richard Stallman <rms@gnu.org>
19469 * image.c (free_bitmap_record): Rename from Free_Bitmap_Record.
19471 2007-09-29 Richard Stallman <rms@gnu.org>
19473 * eval.c (internal_condition_case_2, internal_condition_case_1)
19474 (internal_condition_case): Reenable abort if x_catching_errors ()
19475 to see if that really happens and why.
19477 2007-10-06 Andreas Schwab <schwab@suse.de>
19479 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
19481 2007-10-04 Juanma Barranquero <lekktu@gmail.com>
19483 * image.c (syms_of_image) <image-types>: Fix typo in docstring.
19485 2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
19487 * frame.h (struct frame): Don't try to GC-mark menu_bar_items_used.
19489 2007-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
19491 * window.h (struct window):
19492 * window.c (struct save_window_data, struct saved_window):
19493 * termhooks.h (struct terminal):
19494 * process.h (struct Lisp_Process):
19495 * frame.h (struct frame):
19496 * buffer.h (struct buffer):
19497 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table)
19498 (struct Lisp_Bool_Vector, struct Lisp_Subr, struct Lisp_Hash_Table):
19499 The size field of (pseudo)vectors is now unsigned.
19500 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Simplify accordingly.
19502 * lisp.h (struct Lisp_Hash_Table): Move non-traced elements at the end.
19503 Turn `count' into an integer.
19505 * fns.c (make_hash_table, hash_put, hash_remove, hash_clear)
19506 (sweep_weak_table, sweep_weak_hash_tables, Fhash_table_count):
19507 * print.c (print_object) <HASH_TABLE_P>: `count' is an int.
19508 * alloc.c (allocate_hash_table): Use ALLOCATE_PSEUDOVECTOR.
19509 (mark_object) <HASH_TABLE_P>: Use mark_vectorlike.
19511 * alloc.c (allocate_pseudovector): New fun.
19512 (ALLOCATE_PSEUDOVECTOR): New macro.
19513 (allocate_window, allocate_terminal, allocate_frame)
19514 (allocate_process): Use it.
19515 (mark_vectorlike): New function.
19516 (mark_object) <FRAMEP, WINDOWP, BOOL_VECTOR_P, VECTORP>: Use it.
19517 (mark_terminals): Use it.
19518 (Fmake_bool_vector, Fmake_char_table, make_sub_char_table)
19519 (Fmake_byte_code): Use XSETPVECTYPE.
19521 * frame.c (Fframe_parameters): Minor simplification.
19523 * insdel.c (adjust_markers_for_insert): Generalize assertion checks.
19525 * marker.c (Fmarker_buffer): Make test for odd case into a failure.
19527 * buffer.c (Fget_buffer_create, init_buffer_once):
19528 * lread.c (defsubr):
19529 * window.c (Fcurrent_window_configuration): Use XSETPVECTYPE.
19531 * lisp.h (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG): Don't let them be
19532 defined differently in the m/*.h files.
19533 (XCHAR_TABLE, XBOOL_VECTOR): Add assertion checking.
19534 (XSETPVECTYPE): New macro.
19535 (XSETPSEUDOVECTOR): Use it.
19537 * buffer.c (syms_of_buffer) <local-abbrev-table>: Move from abbrev.c.
19538 (DEFVAR_PER_BUFFER, defvar_per_buffer): Move from lisp.h and lread.c.
19540 * lisp.h (defvar_per_buffer, DEFVAR_PER_BUFFER):
19541 * lread.c (defvar_per_buffer):
19542 * abbrev.c (syms_of_abbrev) <local-abbrev-tabl>: Move to buffer.c.
19544 * window.c (candidate_window_p): Only consider as visible frames that
19545 are on the same terminal.
19547 * m/ibms390x.h (MARKBIT): Remove unused macro.
19549 2007-10-01 Juanma Barranquero <lekktu@gmail.com>
19551 * lread.c (Fload): Fix typo in docstring.
19553 2007-10-01 Michaël Cadilhac <michael@cadilhac.name>
19555 * floatfns.c (Fexpt): Manually check for overflows, so that a power
19556 of a non-zero value can't yield zero.
19558 2007-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
19560 * term.c (term_clear_mouse_face, term_mouse_highlight)
19561 (tty_write_glyphs_with_face): Only define is HAVE_GPM.
19563 * print.c (safe_debug_print): Use XHASH.
19565 * lisp.h (DECL_ALIGN, USE_LSB_TAG): Move logic to before definition of
19566 Lisp elements such as tags.
19567 (XHASH): New macro.
19569 (SREF, SSET, STRING_COPYIN): Use SDATA.
19570 (VOID_TO_LISP, CVOID_TO_LISP, LISP_TO_VOID, LISP_TO_CVOID): Remove.
19572 * alloc.c (mark_terminal): Remove left-over declaration.
19573 (enum mem_type): Replace all vector subtypes -> MEM_TYPE_VECTORLIKE.
19574 (allocate_vectorlike): Remove type argument. Adjust callers.
19575 (live_vector_p, mark_maybe_pointer, valid_lisp_object_p):
19576 Only handle the one remaining MEM_TYPE_VECTORLIKE.
19578 * alloc.c (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): New macros
19579 to avoid unnecessary BLOCK_INPUTs when SYNC_INPUT is used.
19580 (xmalloc, xrealloc, xfree, lisp_malloc, lisp_free, lisp_align_malloc)
19581 (lisp_align_free, make_interval, allocate_string, allocate_string_data)
19582 (make_float, Fcons, allocate_vectorlike, Fmake_symbol, allocate_misc):
19585 * xfaces.c (load_face_font, free_realized_face, clear_face_gcs):
19586 Don't let signal handlers run when a GC is freed but not yet NULL'ed.
19587 (x_free_gc): Remove BLOCK_INPUT since it's now redundant.
19589 2007-09-28 Dan Nicolaescu <dann@ics.uci.edu>
19591 * Makefile.in (lisp, shortlisp): Delete server.elc, it is not
19594 2007-09-28 Stefan Monnier <monnier@iro.umontreal.ca>
19596 * term.c (Fgpm_mouse_start): Don't signal an error if already activated
19598 (Fgpm_mouse_stop): Only deactivate if it was activated on this tty.
19600 * term.c (mouse_face_window): Rename from Qmouse_face_window.
19602 (handle_one_term_event): Use Gpm_DrawPointer.
19603 (Fgpm_mouse_start): Rename from Fterm_open_connection.
19604 Signal errors instead of returning nil. Always return nil.
19605 (Fgpm_mouse_stop): Rename from Fterm_close_connection.
19606 Make it a noop if gpm-mouse was not activated.
19607 (syms_of_term): Update names.
19609 2007-09-27 Stefan Monnier <monnier@iro.umontreal.ca>
19611 * sysdep.c (narrow_foreground_group, widen_foreground_group): Static.
19612 (init_sys_modes): Check that gpm_tty is the current tty.
19614 * alloc.c (allocate_terminal): Set the vector size to only count the
19615 lisp fields. Initialize those to nil.
19616 (mark_object): Don't treat terminals specially.
19617 (mark_terminal): Remove.
19618 (mark_terminals): Use mark_object instead.
19620 * termhooks.h (struct terminal): Move all Lisp_Object fields traced by
19621 the GC to the beginning.
19624 * indent.c: Use EMACS_INT for ints coming from Elisp data.
19626 * indent.c (Fmove_to_column): Use EMACS_INT for buffer positions.
19628 2007-09-25 Jason Rumney <jasonr@gnu.org>
19630 * frame.c (make_terminal_frame): Remove special case for WINDOWSNT.
19632 * w32console.c (create_w32cons_output): Remove.
19634 * term.c (init_tty): Call init_sys_modes on WINDOWSNT also.
19636 * sysdep.c (init_sys_modes): Use set_terminal_modes_hook.
19637 (reset_sys_modes): Use reset_terminal_modes_hook.
19639 2007-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
19641 * eval.c (do_autoload): Don't output any message.
19643 2007-09-24 Juri Linkov <juri@jurta.org>
19645 * emacs.c (standard_args): Change priority of "--no-splash"
19646 from 40 to 3. Add "--no-desktop" with the same priority.
19648 2007-09-23 Dmitry Antipov <dmantipov@yandex.ru>
19650 * alloc.c (gc_sweep): Check cons cell mark bits word by word
19651 and optimize the case where they are all 1.
19653 2007-09-23 Johannes Weiner <hannes@saeurebad.de>
19655 * lisp.h (abs): Define if not defined.
19656 * keyboard.c, sound.c, w32term.c, xfaces.c, xterm.c:
19657 Don't define `abs', since it's defined in lisp.h.
19659 2007-09-22 Eli Zaretskii <eliz@gnu.org>
19661 * term.c (DEV_TTY): New macro. Provide a definition for MS-Windows.
19662 (FRAME_TERMCAP_P) [WINDOWSNT]: Don't define to zero.
19663 (Fcontrolling_tty_p, Fresume_tty, dissociate_if_controlling_tty)
19664 (init_tty): Use DEV_TTY instead of "/dev/tty".
19665 [WINDOWSNT]: No need to protect from NAME arg being null.
19667 2007-09-21 Dan Nicolaescu <dann@ics.uci.edu>
19669 * term.c (Fsuspend_tty): Run suspend-tty-functions before cleaning
19672 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19674 * termhooks.h (term_gpm): Delete. Use gpm_tty's NULLness instead.
19675 (gpm_tty): Change its type.
19676 * term.c (term_gpm): Delete. Use gpm_tty's NULLness instead.
19677 (gpm_tty): Change its type and initialize it.
19678 (Fterm_open_connection): Check the frame is indeed a tty.
19679 Use the new gpm_tty.
19680 (Fterm_close_connection): Use the new gpm_tty.
19681 * keyboard.c (tty_read_avail_input): Use the new gpm_tty.
19682 * sysdep.c (init_sys_modes): term_gpm -> gpm_tty.
19684 2007-09-21 Juanma Barranquero <lekktu@gmail.com>
19686 * w32term.c (x_draw_glyph_string): Use strike_through_color, not
19687 underline_color, to draw strike-through.
19689 2007-09-21 Stefan Monnier <monnier@iro.umontreal.ca>
19691 * lisp.h (allocate_terminal): Declare.
19693 * window.c (candidate_window_p): Consider frames that are being placed
19694 by the user as somewhere between visible and iconified.
19695 (window_loop): Prefer windows on the current frame.
19696 (Fselect_window): Move the use of select-frame to the beginning so we
19697 can just delegate all the work (it'll call us back anyway).
19699 * frame.c (Qdisplay_environment_variable):
19700 * frame.h (Qdisplay_environment_variable): Delete.
19702 * .gdbinit (xbacktrace): Print the arg's address rather than the value
19703 of the first arg, since that value may be a union.
19705 * callproc.c (child_setup, getenv_internal): Use the frame's `display'
19706 parameter rather than Qdisplay_environment_variable. If all else
19707 fails, look for DISPLAY in initial-environment.
19709 2007-09-21 Glenn Morris <rgm@gnu.org>
19711 * Makefile.in (emacstool): Remove target.
19712 (lisp, shortlisp): Remove termdev.elc.
19714 2007-09-21 Markus Triska <markus.triska@gmx.at>
19716 * xterm.c (x_delete_display): Compile session management conditionally.
19718 2007-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
19720 * callproc.c (getenv_internal_1): New function.
19721 (getenv_internal): Use it.
19722 (Fgetenv_internal): Use it. Accept an env-list as optional arg.
19724 * terminal.c (get_terminal): Don't accept ints to represent terminals.
19725 (Fterminal_name, Fterminal_parameters, Fterminal_parameter)
19726 (Fset_terminal_parameter): Work with dead terminals as well.
19727 (Fmodify_terminal_parameters): Remove.
19729 * terminal.c (get_terminal): Handle terminals.
19730 Make sure the terminal returned is live.
19731 (create_terminal): Use allocate_terminal.
19732 (mark_terminals): Move to alloc.c.
19733 (delete_terminal): Use terminal->name as liveness status.
19734 NULL out fields after freeing their contents.
19735 Don't deallocate the object.
19736 (Fframe_terminal): Use FRAME_TERMINAL. Return the terminal object
19737 rather than an int.
19738 (Fterminal_live_p): Accept non-integer arguments.
19739 (Fterminal_list): Return terminal objects rather than an ints.
19741 * alloc.c (enum mem_type): New member for `terminal' objects.
19742 (allocate_terminal): New function.
19743 (mark_maybe_pointer, valid_lisp_object_p, mark_object):
19745 (mark_terminal): New fun.
19746 (mark_terminals): Move from terminal.c.
19748 * term.c (get_tty_terminal): Don't treat output_initial specially.
19749 (Fsuspend_tty, Fresume_tty): Use terminal objects rather than ints.
19750 (delete_tty): Use terminal->name as liveness status.
19752 * termhooks.h (struct terminal): Make it into a pseudovector.
19753 Remove `deleted' replaced by checking `name's nullness.
19755 * print.c (print_object): Handle terminals.
19757 * lisp.h (enum pvec_type): New `terminal' pseudovector.
19758 (XTERMINAL, XSETTERMINAL, TERMINALP, GC_TERMINALP): New macros.
19760 * frame.c (make_terminal_frame):
19761 * keyboard.c (tty_read_avail_input):
19762 * w32term.c (x_delete_terminal):
19763 * xfns.c (Fx_create_frame, x_create_tip_frame):
19764 * xterm.c (x_delete_terminal): Use terminal->name as liveness status.
19766 2007-09-20 Glenn Morris <rgm@gnu.org>
19768 * process.c (Fmake_network_process): Doc fix.
19770 2007-09-19 Jason Rumney <jasonr@gnu.org>
19772 * dispextern.h (w32_init_fringe, mac_init_fringe): Declare rif argument.
19774 2007-09-19 Michaël Cadilhac <michael@cadilhac.name>
19776 * coding.c (detect_eol_type, detect_eol_type_in_2_octet_form):
19777 Fix a C warning regarding variable constness.
19779 * xterm.c (handle_one_xevent): Fix a C warning.
19781 2007-09-18 Jason Rumney <jasonr@gnu.org>
19783 * w32fns.c (Fx_focus_frame): Rename from Fw32_focus_frame.
19785 2007-09-17 Jan Djärv <jan.h.d@swipnet.se>
19787 * gtkutil.c (gdpy_def): New variable.
19788 (xg_initialize): Initialize gdpy_def.
19789 (xg_display_close): If no other display exists, set gdpy_def to a
19792 2007-09-16 Jan Djärv <jan.h.d@swipnet.se>
19794 * gtkutil.c (xg_get_image_for_pixmap): Always create a GdkPixbuf
19795 when we have no file name for the icon.
19796 (xg_tool_bar_expose_callback): Remove.
19797 (xg_create_tool_bar): Don't connect expose signal to
19798 xg_tool_bar_expose_callback.
19799 (xg_get_file_with_chooser): Move GCPRO1 after declarations.
19801 2007-09-16 Andreas Schwab <schwab@suse.de>
19803 * alloc.c (reset_malloc_hooks): Set the hooks to the previous
19804 values instead of zapping them.
19806 2007-09-14 Glenn Morris <rgm@gnu.org>
19808 * fringe.c (init_fringe_bitmap) <swap_nibble>: Move to file scope.
19809 * gtkutil.c (xg_separator_p) <separator_names>: Move to file scope.
19810 * image.c (our_memory_fill_input_buffer) <buffer>: Move to file
19811 scope and rename to omfib_buffer for clarity.
19812 (gif_load) <interlace_start, interlace_increment>: Move to file scope.
19814 2007-09-14 Kenichi Handa <handa@m17n.org>
19816 * xterm.c (handle_one_xevent): Skip decoding if nbytes is zero.
19818 2007-09-13 Jason Rumney <jasonr@gnu.org>
19820 * fringe.c (w32_init_fringe, mac_init_fringe): Add rif argument.
19822 * w32term.c (w32_term_init): Pass rif to w32_init_fringe.
19824 * macterm.c (mac_initialize): Don't call mac_init_fringe here.
19825 (mac_term_init): Call here instead, passing rif.
19827 2007-09-13 Glenn Morris <rgm@gnu.org>
19829 * s/hpux.h: No longer define `static' as nothing.
19831 2007-09-13 Johan Bockgård <bojohan@gnu.org>
19833 * callint.c (Fcall_interactively): Remove unused var `fun'.
19835 2007-09-12 Romain Francoise <romain@orebokech.com>
19837 * window.c (prefer_window_split_horizontally, display_buffer):
19838 Revert 2007-09-08 change.
19840 2007-09-12 Glenn Morris <rgm@gnu.org>
19842 * alloca.c: Remove file.
19843 * Makefile.in (alloca): Do not undef.
19844 (allocaobj, alloca.o): Remove.
19845 (otherobj): Remove allocaobj.
19846 * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
19847 * regex.c (C_ALLOCA): Remove all references and code that was only
19848 used when this was defined.
19849 * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
19850 * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
19851 * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
19853 * Makefile.in (SOURCES, unlock, relock): Delete.
19855 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
19856 (menu_grab_callback): All uses changed.
19858 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
19859 (x_reply_selection_request): All uses changed.
19861 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca>
19863 * lread.c (load_warn_old_style_backquotes): Change message to look
19864 better when it appears in the middle of byte-compiler messages.
19866 2007-09-10 Dan Nicolaescu <dann@ics.uci.edu>
19868 * s/darwin.h (MULTI_KBOARD): Only define for Carbon.
19870 * xterm.c (x_create_terminal): Add comment.
19872 * term.c (clear_tty_hooks, set_tty_hooks): Add comments.
19874 2007-09-10 Richard Stallman <rms@gnu.org>
19876 * xterm.c (x_term_init): Give error if can't open DISPLAY_NAME.
19878 2007-09-10 Michaël Cadilhac <michael@cadilhac.name>
19880 * lisp.h (struct Lisp_Subr): Rename `prompt' field to `intspec'.
19881 (DEFUN): Document `intspec', use it instead of `prompt'.
19883 * eval.c (Fcommandp): Change `->prompt' to `->intspec'.
19885 * data.c (Finteractive_form): If the interactive specification starts
19886 with a `(', use it as a Lisp form.
19888 * fileio.c (Fset_file_modes): Add an interactive spec that reads a file
19889 name and file modes.
19891 * callint.c (Fcall_interactively): Comment fixes.
19893 2007-09-10 Stefan Monnier <monnier@iro.umontreal.ca>
19895 * callint.c (Fcall_interactively): Use Finteractive_form also for subrs
19896 and compiled functions.
19898 2007-09-08 Fredrik Axelsson <f.axelsson@gmail.com>
19900 * window.c (prefer_window_split_horizontally): New variable.
19901 (display_buffer): Consider splitting window horizontally depending
19902 on prefer_window_split_horizontally.
19904 2007-09-08 Eli Zaretskii <eliz@gnu.org>
19906 * sysdep.c [WINDOWSNT]: Don't include sysselect.h.
19908 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19910 * s/cygwin.h (GC_MARK_STACK): Enable conservative stack marking.
19912 * frame.c (x_set_frame_parameters): Check number is positive before
19915 * window.c (freeze_window_start): Don't presume selected_window holds
19917 (Fdisplay_buffer): Remove `register' since `buffer' needs to be gcpro'd.
19919 2007-09-07 Angelo Graziosi <Angelo.Graziosi@roma1.infn.it> (tiny change)
19921 * term.c (dissociate_if_controlling_tty): Call setsid on CYGWIN.
19923 2007-09-07 Stefan Monnier <monnier@iro.umontreal.ca>
19925 * window.c (Vsplit_window_preferred_function): New var.
19926 (Fdisplay_buffer): Use it.
19927 (syms_of_window): Export, and initialize it.
19929 2007-09-06 Pixel <pixel@mandriva.com> (tiny change)
19931 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
19933 2007-09-06 Glenn Morris <rgm@gnu.org>
19935 * gtkutil.c (menu_grab_callback) <cnt>:
19936 * xselect.c (x_reply_selection_request) <cnt>: Move static
19937 variable to file scope.
19939 2007-09-06 Stefan Monnier <monnier@iro.umontreal.ca>
19941 * xdisp.c (redisplay_internal): Make sure Elisp code always sees
19942 consistent values of selected_frame and selected_window.
19944 2007-09-04 Jason Rumney <jasonr@gnu.org>
19946 * w32console.c (initialize_w32_display): Zero unused hooks.
19948 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
19950 * term.c (Vsuspend_tty_functions, Vresume_tty_functions)
19951 (syms_of_term, Fsuspend_tty, Fresume_tty): Undo previous change.
19953 2007-09-04 Jason Rumney <jasonr@gnu.org>
19955 * term.c (init_tty) [WINDOWSNT]: Add hooks that are not accessible
19956 in w32console.c. Set up input. Remove XXX comments that have been
19957 confirmed as correct.
19959 * s/ms-w32.h (MULTI_KBOARD): Define.
19961 * w32console.c (one_and_only_w32cons): Remove.
19962 (initialize_w32_display): Take terminal argument.
19964 * term.c (init_tty) [WINDOWSNT]: Pass terminal to
19965 initialize_w32_display.
19966 (init_tty) [MULTI_KBOARD]: Include this code on WINDOWSNT too.
19968 * termhooks.h (enum event_kind) <HORIZ_WHEEL_EVENT>: New event.
19970 * keyboard.c (discard_mouse_events): Discard it.
19971 (make_lispy_event): Translate it to a lisp event.
19972 (lispy_wheel_names): Add wheel-left and right events.
19973 (syms_of_keyboard): Enlarge wheel_syms.
19975 * w32fns.c (w32_wnd_proc) <WM_DROPFILES>: Merge with WM_MOUSEWHEEL.
19976 <WM_MOUSEHWHEEL>: Pass new system message to lisp.
19978 * w32term.h (WM_MOUSEHWHEEL): Define if system headers don't.
19980 * w32term.c (construct_mouse_wheel): Make HORIZ_WHEEL_EVENT
19981 from WM_MOUSEHWHEEL.
19982 (w32_read_socket) <WM_MOUSEHWHEEL>: Treat as WM_MOUSEWHEEL.
19984 * w32fns.c (x_create_tip_frame) [MULTI_KBOARD]: Get keyboard from
19987 * w32term.c (w32_create_terminal) [MULTI_KBOARD]: Create a new
19988 keyboard for the terminal.
19990 2007-09-04 Dan Nicolaescu <dann@ics.uci.edu>
19992 * term.c (Vsuspend_tty_hook): Rename from Vsuspend_tty_functions.
19993 (Vresume_tty_hook): Rename from Vresume_tty_functions.
19994 (syms_of_term): Rename suspend-tty-functions to suspend-tty-hook
19995 and resume-tty-function to resume-tty-hook.
19996 (Fsuspend_tty, Fresume_tty): Use new names.
19998 2007-09-02 Jan Djärv <jan.h.d@swipnet.se>
20000 * gtkutil.c (update_frame_tool_bar): Handle stock name as a named icon
20001 if it starts with "n:".
20003 2007-08-31 Jan Djärv <jan.h.d@swipnet.se>
20005 * gtkutil.c (update_frame_tool_bar): Initialize wbutton to NULL.
20007 2007-08-31 Stefan Monnier <monnier@iro.umontreal.ca>
20010 * frame.c (Qterm_environment_variable): Remove.
20011 (syms_of_frame): Don't init and staticpro it.
20013 * callproc.c (getenv_internal): Remove special case for $TERM.
20015 * callproc.c (Vinitial_environment): New variable.
20016 (set_initial_environment): Initialize it.
20017 (syms_of_callproc): Declare it.
20018 (child_setup): Don't mess with TERM via Qterm_environment_variable; the
20019 TERM under which a process runs is never related to the TERM in which
20022 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20024 * config.in (HAVE_WINDOW_SYSTEM): Don't undef MULTI_KBOARD here...
20025 * s/darwin.h: ... do it here.
20027 2007-08-29 Stefan Monnier <monnier@iro.umontreal.ca>
20029 * lisp.h (set_initial_environment): Rename from set_global_environment.
20031 * Makefile.in (${etc}DOC): Re-add a ${EXEEXT} which seems to have been
20032 removed by mistake on the multi-tty branch.
20034 * frame.c (make_terminal_frame): Yet Another Int/Lisp_Object Mixup.
20035 (Fmodify_frame_parameters): Return a value.
20037 * image.c (png_load): Comment-out var only used in commented-out code.
20039 * term.c (mark_ttys): Don't bother checking top_frame (incorrectly)
20040 before passing it to mark_object.
20042 * xfaces.c (internal_resolve_face_name): Return a value.
20043 (internal_resolve_face_name, resolve_face_name_error): Comment out.
20045 * xfns.c (check_x_display_info): Yet Another Int/Lisp_Object Mixup.
20046 (x_icon): Comment-out var only used in commented-out code.
20048 2007-08-29 Romain Francoise <romain@orebokech.com>
20050 * keyboard.c (Fset_input_mode): Don't call `Fset_quit_char' if
20051 QUIT hasn't been provided.
20053 2007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
20055 * callproc.c (child_setup, getenv_internal): Use the
20056 display-environment-variable and term-environment-variable frame params.
20057 (set_initial_environment): Initialise Vprocess_environment.
20059 * config.in: Disable multi-keyboard support on a mac.
20061 * frame.c (Qterm_environment_variable)
20062 (Qdisplay_environment_variable): New variables.
20063 (syms_of_frame): Intern and staticpro them.
20064 (Fmake_terminal_frame): Disable output method test.
20066 * frame.h: Declare them here.
20068 * macfns.c (x_set_mouse_color): Get rif from the frame.
20069 (x_set_tool_bar_lines): Don't use updating_frame.
20070 (mac_window): Add 2 new parameters for consistency with other systems.
20071 (Fx_create_frame): Fix doc string. Rename the parameter. Set the
20072 frame parameters following what is done in X11 and w32. Don't use
20073 FRAME_MAC_DISPLAY_INFO.
20074 (Fx_open_connection, start_hourglass): Remove window-system check.
20075 (x_create_tip_frame): Get the keyboard from the terminal.
20077 * macmenu.c: Reorder includes.
20078 (Fx_popup_menu): Use terminal specific mouse_position_hook.
20080 * macterm.c (XTset_terminal_modes, XTreset_terminal_modes): Add a
20081 terminal parameter.
20082 (x_clear_frame): Add a frame parameter.
20083 (note_mouse_movement): Get rif from the frame.
20084 (mac_term_init): Initialize the terminal.
20085 (mac_initialize): Make static and move terminal initialization ...
20086 (mac_create_terminal): ... to this new function.
20088 * macterm.h (struct mac_display_info): Add terminal.
20089 (mac_initialize): Delete declaration.
20091 * puresize.h (BASE_PURESIZE): Increase base value to 1164000.
20093 * sysdep.c: Comment out text after #endif.
20095 * term.c (init_tty): Only use terminal->kboard when MULTI_KBOARD
20096 is defined. Better initialize ttys in windows. Use terminal
20097 specific mouse_position_hook.
20099 * termhooks.h (union display_info): Add mac_display_info.
20101 * w32fns.c (Fx_create_frame): Use kboard from the terminal.
20102 Set the default minibuffer frame, window_system and the rest of the
20103 frame parameters following what is done in X11.
20105 * w32term.c (w32_initialize): Make static.
20107 * xselect.c (x_handle_selection_clear): Only access
20108 terminal->kboard when MULTI_KBOARD is defined.
20110 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Define here.
20111 (SYSTEM_PURESIZE_EXTRA): Only define on Carbon.
20113 2007-08-29 Jason Rumney <jasonr@gnu.org>
20115 * frame.c (Fdelete_frame): Only get kboard when MULTI_KBOARD defined.
20116 (make_terminal_frame) [WINDOWSNT]: Initialize terminal.
20118 * fringe.c (w32_init_fringe w32_reset_fringes) [HAVE_NTGUI]:
20119 (mac_init_fringe) [MAC_OS]: Get rif from selected_frame.
20121 * keyboard.c (restore_kboard_configuration): Only define when
20122 MULTI_KBOARD defined.
20124 * makefile.w32-in: Update dependancies from Makefile.in.
20125 (OBJ1): Add terminal.$(O)
20127 * term.c (dissociate_if_controlling_tty) [WINDOWSNT]:
20128 Don't define function body.
20129 (init_tty) [WINDOWSNT]: Use selected_frame for initializing.
20131 * termhooks.h (display_info) [WINDOWSNT]: Add w32.
20133 * w32.c (request_sigio, unrequest_sigio): Remove.
20135 * w32console.c (w32con_move_cursor, w32con_clear_to_end)
20136 (w32con_clear_frame, w32con_clear_end_of_line)
20137 (w32con_ins_del_lines, w32con_insert_glyphs, w32con_write_glyphs)
20138 (w32con_delete_glyphs, w32con_set_terminal_window)
20139 (scroll_line, w32_sys_ring_bell): Add frame arg.
20140 (w32con_set_terminal_modes, w32con_reset_terminal_modes):
20142 (PICK_FRAME): Remove.
20143 (w32con_write_glyphs): Use frame specific terminal coding.
20144 (one_and_only_w32cons): New global variable.
20145 (initialize_w32_display): Use it for storing hooks.
20146 (create_w32cons_output): New function.
20148 * w32inevt.c, w32inevt.h (w32_console_read_socket): Make first
20151 * w32fns.c (x_create_tip_frame): Set terminal and ref count.
20153 (x_set_tool_bar_lines): Don't use updating_frame.
20154 (Fx_create_frame): Set terminal and ref count.
20155 (Fx_open_connection): Remove window-system check.
20157 * w32menu.c (Fx_popup_menu): Use terminal specific mouse_position_hook.
20159 * w32term.c (w32_term_init): Call add_keyboard_wait_descriptor.
20160 (w32_set_terminal_modes, w32_reset_terminal_modes): Add terminal arg.
20161 (x_clear_frame, x_delete_glyphs, w32_ring_bell, x_ins_del_lines):
20163 (x_delete_terminal, w32_create_terminal): New functions.
20164 (w32_term_init): Create a terminal.
20165 (w32_initialize): Move terminal specific initialization to
20166 w32_create_terminal.
20168 * w32term.h (x_output): Remove foreground_pixel and background_pixel.
20169 (w32_clear_rect, w32_clear_area): Use background from frame.
20170 (w32_display_info): Add terminal.
20171 (w32_sys_ring_bell, x_delete_display): Declare here.
20173 * xdisp.c (display_menu_bar) [HAVE_NTGUI]: Check frame type.
20175 * s/ms-w32.h (SYSTEM_PURESIZE_EXTRA): Bump to 50k.
20177 2007-08-29 Kalle Olavi Niemitalo <kon@iki.fi> (tiny change)
20179 * keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char):
20180 Fix get_named_tty calls for the controlling tty.
20182 2007-08-29 ARISAWA Akihiro <ari@mbf.ocn.ne.jp> (tiny change)
20184 * term.c (dissociate_if_controlling_tty)[USG]: Fix parse error.
20186 2007-08-29 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20188 * term.c (tty_insert_glyphs): Add missing first parameter.
20190 2007-08-29 Károly Lőrentey <karoly@lorentey.hu>
20192 * buffer.c (Fbuffer_list, Fbury_buffer):
20193 Take frame->buried_buffer_list into account.
20195 * cm.c (current_tty): New variable, for cmputc().
20197 (cmcheckmagic): Add tty parameter, look up terminal streams there.
20198 (calccost): Add tty parameter. Use emacs_tputs() instead of tputs().
20199 (cmgoto): Add tty parameter. Pass it on to calccost().
20200 Use emacs_tputs() instead of tputs().
20202 * cm.h (emacs_tputs): New macro to set current_tty, and then call
20204 (current_tty): New variable, for cmputc().
20205 (cmcheckmagic, cmputc, cmgoto): Add prototypes.
20207 * eval.c (unwind_to_catch): Don't call x_fully_uncatch_errors.
20208 (internal_condition_case, internal_condition_case_1)
20209 (internal_condition_case_2): Don't abort when x_catching_errors.
20211 * fns.c (Fyes_or_no_p): Don't try to open an X dialog on tty terminals.
20212 (Fy_or_n_p): Likewise. Use temporarily_switch_to_single_kboard to
20213 prevent crashes caused by bogus longjmps in read_char.
20215 * keymap.h (Fset_keymap_parent): Add EXFUN.
20217 * macterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
20218 * w32term.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
20219 Remove redundant definition.
20221 * macfns.c (x_set_mouse_color, x_make_gc):
20222 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20224 * w32term.c (x_free_frame_resources):
20225 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20226 (w32_initialize): Use the accessor macros for terminal characteristics.
20228 * macterm.c (mac_initialize): Use Fset_input_interrupt_mode.
20229 Use the accessor macros for terminal characteristics.
20230 * msdos.c (internal_terminal_init): Use the accessor macros for
20231 terminal characteristics.
20232 (ScreenVisualBell, internal_terminal_init):
20233 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20235 * termopts.h (no_redraw_on_reenter): Declare.
20237 * alloc.c (emacs_blocked_malloc): Disable mallopt call.
20238 (mark_terminals, mark_ttys): Declare.
20239 (Fgarbage_collect): Call them.
20240 (mark_object): Mark buried_buffer_list.
20242 * prefix-args.c: Include stdlib.h for exit.
20244 * syssignal.h: Add comment.
20246 * indent.c: Include stdio.h.
20248 * window.h (Vinitial_window_system): Declare.
20249 (Vwindow_system): Delete declaration.
20251 * fontset.c (Finternal_char_font): Use FRAME_RIF.
20253 * image.c (lookup_image): Don't initialize `c' until the xasserts
20256 * gtkutil.c (xg_create_frame_widgets): Use FRAME_BACKGROUND_PIXEL and
20257 FRAME_FOREGROUND_PIXEL.
20259 * print.c (print_preprocess): Don't lose print_depth levels while
20262 * widget.c (update_from_various_frame_slots):
20263 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20265 * window.c (set_window_buffer): Don't call clear_mouse_face on tty
20267 (window_internal_height): Remove bogus make_number call.
20268 (init_window_once): Call make_terminal_frame with two zero parameters.
20270 * fileio.c (Fread_file_name): Update comment.
20272 * callint.c (Fcall_interactively):
20273 Use temporarily_switch_to_single_kboard instead of single_kboard_state.
20274 Make sure it is correctly unwound.
20276 * xsmfns.c (x_session_close): New function.
20278 * coding.h (terminal_coding, safe_terminal_coding, keyboard_coding):
20279 Delete declarations.
20281 * xterm.h: Remove declaration for x_fully_uncatch_errors.
20282 (x_output): Remove background_pixel and foreground_pixel fields.
20283 (x_display_info): Add new field TERMINAL. Remove KBOARD field.
20284 (x_delete_device, x_session_close): Declare.
20286 * lread.c: Include setjmp.h. Update declaration of `read_char'.
20287 (read_filtered_event): Call `read_char' with a local
20288 `wrong_kboard_jmpbuf'.
20290 * minibuf.c (read_minibuf): Call temporarily_switch_to_single_kboard.
20291 Don't call single_kboard_state. Use FRAME_RIF.
20293 * process.c (Fmake_network_process): Don't unrequest_sigio on modern
20296 * lisp.h (set_process_environment): Rename to `set_global_environment'.
20297 (Fframe_with_environment, Fset_input_meta_mode)
20298 (Fset_quit_char): EXFUN.
20299 (x_create_device, tty_output, terminal, tty_display_info): Declare.
20300 (init_sys_modes, reset_sys_modes): Update prototypes.
20301 (init_all_sys_modes, reset_all_sys_modes): New prototypes.
20303 * keyboard.h (struct kboard): Add new fields Vlocal_function_key_map,
20304 Vlocal_key_translation_map, and Vkeyboard_translate_table.
20305 (Vfunction_key_map, Vkeyboard_translate_table, single_kboard_state):
20306 Delete declarations.
20307 (Vfunction_key_map, Vkey_translation_map, push_kboard, pop_kboard)
20308 (temporarily_switch_to_single_kboard, tty_read_avail_input):
20311 * emacs.c (main): Don't call init_sys_modes(), the new term_init()
20312 already does that during init_display(). Call syms_of_keymap
20313 before syms_of_keyboard. Call `syms_of_terminal'.
20314 Call set_initial_environment, not set_process_environment.
20315 (shut_down_emacs): Call reset_all_sys_modes() instead of
20318 * xfaces.c (x_free_gc): Protect xassert with GLYPH_DEBUG.
20319 (internal_resolve_face_name, resolve_face_name_error): New functions.
20320 (resolve_face_name): Protect against loops and errors thrown by Fget.
20321 (realize_default_face): Don't use FRAME_FONT unless frame is an X frame.
20322 (Ftty_supports_face_attributes_p): Update tty_capable_p call.
20324 * scroll.c: Replace CURTTY() with local variables throughout the
20325 file (where applicable).
20326 (calculate_scrolling, calculate_direct_scrolling)
20327 (scrolling_1, scroll_cost): Use the accessor macros for terminal
20330 * keymap.c (Vfunction_key_map): Remove.
20331 (Fdescribe_buffer_bindings): Update references to Vfunction_key_map.
20332 (syms_of_keymap): Remove DEFVAR for Vfunction_key_map.
20333 (Vkey_translation_map): Remove.
20334 (syms_of_keymap): Remove DEFVAR for key-translation-map.
20335 (Fdescribe_buffer_bindings)
20336 (read_key_sequence, init_kboard, syms_of_keyboard, mark_kboards):
20337 Update for terminal-local key-translation-map.
20339 * Makefile.in (callproc.o): Update dependencies.
20340 (lisp, shortlisp): Add termdev.elc.
20341 (obj): Add terminal.o.
20342 (terminal.o): Add dependencies.
20343 [HAVE_CARBON]: Make terminal.o depend on macgui.h.
20344 (data.o, fns.o): Add termhooks.h dependency.
20345 (SOME_MACHINE_LISP): Add dnd.elc.
20346 (minibuf.o): Fix typo.
20347 Update dependencies.
20349 * data.c (do_symval_forwarding, store_symval_forwarding)
20350 (find_symbol_value): Use the selected frame's keyboard, not
20353 * .gdbinit (init_sys_modes): Use Vinitial_window_system instead of
20356 * xmenu.c (Fx_menu_bar_open) [USE_X_TOOLKIT, USE_GTK]: Rename from
20358 (syms_of_xmenu): Update defsubr.
20359 (mouse_position_for_popup, Fx_popup_menu)
20360 (Fx_popup_dialog, x_activate_menubar, update_frame_menubar)
20361 (set_frame_menubar, free_frame_menubar)
20362 (create_and_show_popup_menu, xmenu_show)
20363 (create_and_show_dialog, xdialog_show, xmenu_show): Abort if not
20366 * xselect.c (x_own_selection): Abort if not an X frame.
20367 (some_frame_on_display): Check if it is an X frame.
20368 (x_handle_selection_clear): Deal with MULTI_KBOARD.
20370 * coding.c: Include frame.h and termhooks.h.
20371 (terminal_coding, keyboard_coding): Delete.
20372 (Fset_terminal_coding_system_internal)
20373 (Fset_keyboard_coding_system_internal)
20374 (Fkeyboard_coding_system)
20375 (Fterminal_coding_system): Add a terminal parameter.
20376 Get terminal_coding from the terminal.
20377 (init_coding_once): Don't call setup_coding_system here.
20379 * dispextern.h (set_scroll_region, turn_off_insert)
20380 (turn_off_highlight, background_highlight, clear_end_of_line_raw)
20381 (tty_clear_end_of_line, tty_setup_colors)
20382 (delete_tty, updating_frame)
20383 (produce_special_glyphs, produce_glyphs, write_glyphs)
20384 (insert_glyphs): Remove.
20385 (raw_cursor_to, clear_to_end, tty_turn_off_insert)
20386 (tty_turn_off_highlight, get_tty_size): Add declaration.
20387 (tabs_safe_p, init_baud_rate, get_tty_terminal): Update prototypes.
20389 * frame.h (enum output_method): Add output_initial.
20390 (struct x_output): Delete.
20391 (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL):
20392 Access foreground_pixel and background_pixel directly from the frame.
20393 (tty_display): Delete.
20394 (struct frame): Add buried_buffer_list, foreground_pixel,
20395 background_pixel and terminal. Delete kboard.
20396 (union output_data): Add tty.
20397 (FRAME_KBOARD): Get the kboard from the terminal.
20398 (FRAME_INITIAL_P): New macro.
20399 (Qtty, Qtty_type, Qterminal, Qterminal_live_p, Qenvironment)
20400 (Qterm_environment_variable, Qdisplay_environment_variable)
20401 (make_terminal_frame, Qburied_buffer_list, Qwindow_system):
20404 * termchar.h (tty_output, tty_display_info): New structures.
20405 (tty_list): Declare.
20406 (FRAME_TTY, CURTTY): New macros.
20407 (must_write_spaces, min_padding_speed, fast_clear_end_of_line)
20408 (line_ins_del_ok, char_ins_del_ok, scroll_region_ok)
20409 (scroll_region_cost, memory_below_frame, fast_clear_end_of_line)
20410 (dont_calculate_costs, no_redraw_on_reenter): Remove declarations.
20412 * callproc.c: Include frame.h and termhooks.h, for terminal
20414 (add_env): New function.
20415 (child_setup): Use it.
20416 (child_setup, getenv_internal): Handle the new Vprocess_environment.
20417 (getenv_internal): Fix get_terminal_param call.
20418 (Fgetenv_internal, egetenv): Update doc.
20419 (syms_of_callproc): Initialize Vprocess_environment to nil.
20420 Register and initialize them. Remove obsolete defvars. Update doc
20422 (child_setup): Handle Vlocal_environment_variables.
20423 (getenv_internal): Add terminal parameter.
20424 Handle Vlocal_environment_variables.
20425 (Fgetenv_internal): Add terminal parameter.
20426 (child_setup, getenv_internal, Fgetenv_internal): Store the local
20427 environment in a frame (not terminal) parameter. Update doc strings.
20428 (set_initial_environment): Rename from set_global_environment.
20429 Store Emacs environment in initial frame parameter.
20431 * xdisp.c (redisplay_internal): Update references to
20432 `previous_terminal_frame'.
20433 (display_mode_line, Fformat_mode_line): Replace calls to
20434 `push_frame_kboard' with `push_kboard'.
20435 (get_glyph_string_clip_rects): Add extra parentheses and
20436 braces to prevent compiler warnings.
20437 (calc_pixel_width_or_height): Add xassert to check that the
20438 frame is alive. Don't call `lookup_image' on a termcap frame.
20439 (message2_nolog, message3_nolog, redisplay_internal)
20440 (set_vertical_scroll_bar, redisplay_window, check_x_display_info)
20441 (x_set_scroll_bar_foreground, x_set_scroll_bar_background)
20442 (Fx_create_frame, Fxw_display_color_p, Fx_display_grayscale_p)
20443 (Fx_display_pixel_width, Fx_display_pixel_height)
20444 (Fx_display_planes, Fx_display_color_cells)
20445 (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
20446 (Fx_display_screens, Fx_display_mm_height, Fx_display_mm_width)
20447 (Fx_display_backing_store, Fx_display_visual_class)
20448 (Fx_display_save_under, Fx_close_connection, x_create_tip_frame):
20449 Use FRAME_TERMINAL_P, FRAME_WINDOW_P, FRAME_TTY and FRAME_RIF.
20451 * xfns.c (x_set_foreground_color x_set_background_color)
20452 (x_set_mouse_color, x_set_cursor_color, x_make_gc):
20453 Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20454 (Fx_create_frame, x_create_tip_frame, build_string, x_window)
20455 (Fx_create_frame, x_create_tip_frame): Don't create frames on a
20456 terminal that is being deleted.
20457 (Fx_create_frame): Use `store_frame_param' to set `window-system'
20458 frame parameter, and make sure it overrides any user-supplied setting.
20459 (Fx_close_connection, Fx_synchronize): Unify argument names with
20460 the rest of the DEFUNs.
20462 * dispnew.c (Fsend_string_to_terminal): Update call to
20463 `get_tty_terminal'.
20464 (Fredraw_frame, Fsend_string_to_terminal)
20465 (Fsend_string_to_terminal, init_display): Use FRAME_RIF,
20466 FRAME_TERMCAP_P and FRAME_TTY.
20467 (window_change_signal): Don't believe width/height values that are
20469 (Vinitial_window_system): Rename from Vwindow_system.
20470 (termscript, Wcm, rif): Delete.
20472 * termhooks.h (struct terminal): New struct containing the
20473 previously global text display hooks and new members NAME,
20474 DELETED and PARAM_ALIST.
20475 (FRAME_TERMINAL, TERMINAL_TERMINAL_CODING)
20476 (TERMINAL_KEYBOARD_CODING, TERMINAL_ACTIVE_P, FRAME_WINDOW_P)
20477 (FRAME_RIF): New macros.
20478 (get_terminal_param, get_device): New declarations.
20479 (termscript): Delete declaration.
20481 * xterm.c (x_initialize): Use Fset_input_interrupt_mode.
20482 (XTflash, x_free_frame_resources, x_scroll_bar_create)
20483 (x_scroll_bar_set_handle): Use FRAME_BACKGROUND_PIXEL and
20484 FRAME_FOREGROUND_PIXEL.
20485 (x_fully_uncatch_errors): Disable definition.
20486 (x_scroll_bar_expose): Fix reference to foreground pixel.
20487 (XTread_socket): Disable loop on all X displays.
20488 (x_delete_terminal): Don't set terminal->deleted and let
20489 delete_terminal delete the frames on the terminal.
20490 (x_delete_display): Doc update to reflect changes in
20492 (x_display_info) <terminal>: Move member earlier in the struct.
20493 (deleting_tty): Remove old variable.
20494 (Fsuspend_tty): Call clear_tty_hooks.
20495 (Fresume_tty, init_tty): Call set_tty_hooks.
20496 (Ftty_display_color_p, Ftty_display_color_cells): Don't throw
20497 errors on X frames.
20498 (x_catch_errors_unwind): Abort if x_error_message is NULL.
20499 (handle_one_xevent): Initialize `f' to NULL.
20500 (x_delete_terminal, x_create_terminal): New functions.
20501 (XTset_terminal_modes, XTreset_terminal_modes)
20502 (XTread_socket, x_connection_closed, x_term_init)
20503 (x_term_init, x_delete_display): Add terminal parameter.
20504 (x_term_init) [!HAVE_GTK_MULTIDISPLAY]: Refuse to create secondary
20507 * frame.c: Include termchar.h.
20508 (Qterminal, Qterminal_live_p, Qburied_buffer_list, Qtty, Qtty_type)
20509 (Qwindow_system, Qenvironment, Qterm_environment_variable)
20510 (Qdisplay_environment_variable): New vars.
20511 (Fframep): Deal with output_initial.
20512 (Fframe-live-p): Doc fix.
20513 (Fwindow-system): New function.
20514 (x_set_screen_gamma, store_frame_param): Fix compilation errors.
20515 (make_terminal_frame): Don't create frames on a terminal that is
20516 being deleted. Use FRAME_BACKGROUND_PIXEL and FRAME_FOREGROUND_PIXEL.
20517 (store_frame_param): Check for found_for_frame before calling XFRAME.
20518 (Fmake_terminal_frame): Handle NULL tty names correctly.
20519 (syms_of_frame): Enhance doc string of `default-frame-alist'.
20520 (Fdelete_frame): Remove unused variable `count'. Don't allow other
20521 frames to refer to a deleted frame in their 'environment parameter.
20522 (Fframe_with_environment): New function.
20523 (syms_of_frame): Defsubr it. Initialize and staticpro Qenvironment.
20524 (get_future_frame_param): New function.
20525 (Fmake_terminal_frame): Use it.
20526 (x_set_frame_parameters, x_set_screen_gamma): Use FRAME_RIF.
20528 * sysdep.c (init_sys_modes, reset_sys_modes): Update for renames.
20529 * sysdep.c (reset_sys_modes): Update for renames.
20531 * keyboard.c (tty_read_avail_input): New function.
20532 (Fset_input_interrupt_mode, Fset_output_flow_control): New functions.
20533 (syms_of_keyboard): Defsubr them.
20534 (Fset_input_meta_mode, Fset_quit_char): New functions.
20535 (Fset_input_mode): Split to above functions.
20536 (read_char_minibuf_menu_prompt): Add wrong_kboard_jmpbuf
20537 parameter. Use it in call to `read_char'.
20538 (read_char): Declare. Update call to `read_char_minibuf_menu_prompt'.
20539 Set wrong_kboard_jmpbuf correctly in recursive calls.
20540 Use current_kboard to access Vkeyboard_translate_table.
20541 Enhance comment before extra longjmp to wrong_kboard_jmpbuf.
20542 Add wrong_kboard_jmpbuf parameter to allow for recursive calls.
20543 Update longjmp invocations. Remember the original current_kboard,
20544 and longjmp to `wrong_kboard_jmpbuf' when a filter, timer or sentinel
20545 changes it. Comment out unnecessary calls to
20546 `record_single_kboard_state' and `any_kboard_state'.
20547 Update recursive calls.
20548 (wrong_kboard_jmpbuf): Remove global variable.
20549 (read_key_sequence): Remove unused variable wrong_kboard_jmpbuf.
20550 Handle deleted interrupted_kboards correctly; that is a legal
20551 case. Add `wrong_kboard_jmpbuf' local variable. Update setjmp
20552 and read_char calls. Abort if interrupted_kboard died in read_char.
20553 (any_kboard_state, single_kboard_state)
20554 (push_frame_kboard): Remove function.
20555 (pop_kboard): Switch out of single_kboard mode if the kboard has
20556 been deleted. Remove unused variable. Help debugging by not
20557 changing current_kboard unnecessarily. Set current_kboard to the
20558 kboard of the selected frame when the stored kboard object has
20559 been deleted before pop_kboard.
20560 (temporarily_switch_to_single_kboard): Change first parameter to a
20561 frame pointer. Throw an error when caller wants to change kboards
20562 while in single_kboard mode. Don't push_kboard if we weren't in
20563 single kboard state. Don't pop_kboard if we popped into any
20565 (restore_kboard_configuration): Abort if pop_kboard changed the
20566 kboard in single_kboard mode. Call pop_kboard only after setting
20567 up single_kboard mode.
20568 (Frecursive_edit): Switch to single_kboard mode only in nested
20570 (cmd_error, command_loop, command_loop_1, timer_check):
20571 Comment out unnecessary call to `any_kboard_state' and
20572 `record_single_kboard_state'.
20573 (delete_kboard): Exit single_kboard mode if we have just deleted
20574 that kboard. Use FRAME_KBOARD.
20575 (interrupt_signal): Use `Fkill_emacs' to exit Emacs, not
20576 `fatal_error_signal'.
20577 (record_single_kboard_state): Don't push_kboard if we weren't in
20578 single kboard state. Don't pop_kboard if we popped into any
20580 (push_frame_kboard): Rename to push_kboard.
20581 (kbd_buffer_get_event): Use FRAME_TERMINAL.
20582 (read_avail_input): Read input from all terminals.
20583 (mark_kboards): Also mark Vkeyboard_translate_table.
20584 (kbd_buffer_store_event_hold): Simplify condition.
20585 (read_key_sequence): Reinitialize fkey and keytran at each replay.
20586 (Vkeyboard_translate_table): Move to struct kboard.
20587 (init_kboard): Initialize Vkeyboard_translate_table.
20588 (syms_of_keyboard): Use DEFVAR_KBOARD to define
20589 Vkeyboard_translate_table. Update doc strings. Update docs of
20590 local-function-key-map and function-key-map.
20592 * terminal.c: New file.
20594 * term.c: Include errno.h.
20595 (Vring_bell_function, device_list, initial_device)
20596 (next_device_id, ring_bell, update_begin, update_end)
20597 (set_terminal_window, cursor_to, raw_cursor_to)
20598 (clear_to_end, clear_frame, clear_end_of_line)
20599 (write_glyphs, insert_glyphs, delete_glyphs, ins_del_lines)
20600 (Fdisplay_name, create_device, delete_device): Move to terminal.c.
20601 (syms_of_term): Move their initialization to terminal.c.
20602 (get_tty_terminal, Fdisplay_tty_type, Ftty_display_color_p)
20603 (Ftty_display_color_cells)
20604 (Ftty_no_underline, Fsuspend_tty, Fresume_tty, create_tty_output)
20605 (clear_tty_hooks, set_tty_hooks)
20606 (init_tty, maybe_fatal): New functions.
20607 (Ftty_type): Return nil if terminal is not on a tty instead of
20608 throwing an error. Doc update.
20609 (syms_of_term) <Vsuspend_tty_functions, Vresume_tty_functions>:
20610 Doc update. Initialize new subrs and variables.
20611 (delete_tty): Use terminal->deleted.
20612 (tty_set_terminal_modes): Rename from set_terminal_modes.
20613 (tty_reset_terminal_modes): Rename from reset_terminal_modes.
20614 (set_scroll_region): Rename to `tty_set_scroll_region'.
20615 (turn_on_insert): Rename to `tty_turn_on_insert'.
20616 (turn_off_insert): Rename to `tty_turn_off_insert'.
20617 (turn_off_highlight): Rename to `tty_turn_off_highlight'.
20618 (turn_on_highlight): Rename to `tty_turn_on_highlight'.
20619 (toggle_highligh): Rename to `tty_toggle_highlight'.
20620 (background_highlight): Rename to `tty_background_highlight'.
20621 (highlight_if_desired): Rename to `tty_highlight_if_desired'.
20622 (tty_ring_bell, tty_update_end, tty_set_terminal_window)
20623 (tty_set_scroll_region, tty_background_highlight)
20624 (tty_cursor_to, tty_raw_cursor_to, tty_clear_to_end)
20625 (tty_clear_frame, tty_clear_end_of_line, tty_write_glyphs)
20626 (tty_insert_glyphs, tty_delete_glyphs, tty_ins_del_lines)
20627 (term_get_fkeys, tty_setup_colors, dissociate_if_controlling_tty):
20628 Add static modifier.
20629 (tty_reset_terminal_modes, tty_set_terminal_window)
20630 (tty_set_scroll_region, tty_background_highlight)
20631 (tty_highlight_if_desired, tty_cursor_to)
20632 (tty_raw_cursor_to, tty_clear_to_end, tty_clear_frame)
20633 (tty_clear_end_of_line, tty_write_glyphs, tty_insert_glyphs)
20634 (tty_delete_glyphs, tty_ins_del_lines, turn_on_face): Update for
20637 2007-08-28 Jan Djärv <jan.h.d@swipnet.se>
20639 * keyboard.c: Qrtl is new.
20640 (parse_tool_bar_item): Handle :rtl keyword.
20641 (syms_of_keyboard): Intern :rtl keyword.
20643 * dispextern.h (enum tool_bar_item_idx): Add TOOL_BAR_ITEM_RTL_IMAGE.
20645 * gtkutil.c (xg_tool_bar_expose_callback): Just do SET_FRAME_GARBAGED
20646 so no Lisp code is executed.
20647 (file_for_image, find_rtl_image): New functions.
20648 (xg_get_image_for_pixmap): Use file_for_image.
20649 (update_frame_tool_bar): If direction is RTL, use RTL image if
20650 defined. Use Gtk stock images if defined.
20652 2007-08-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20654 * macterm.c (x_draw_composite_glyph_string_foreground): Draw rectangle
20655 for nonexistent or zero-width glyph in composition glyph.
20657 2007-08-25 Stefan Monnier <monnier@iro.umontreal.ca>
20659 * m/amdx86-64.h: Redirect to intel386.h if compiling for i386.
20661 * xdisp.c (Finvisible_p): New function.
20662 (syms_of_xdisp): defsubr it.
20664 2007-08-24 Juanma Barranquero <lekktu@gmail.com>
20666 * image.c (syms_of_image) <image-library-alist, cross-disabled-images>:
20669 2007-08-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20671 * mac.c [MAC_OSX] (select_and_poll_event, sys_select): Fix last changes.
20673 2007-08-24 Martin Rudalics <rudalics@gmx.at>
20675 * fileio.c (Finsert_file_contents): Consult CHARS_MODIFF to tell
20676 whether decoding has modified buffer contents.
20678 2007-08-24 Jason Rumney <jasonr@gnu.org>
20680 * image.c [HAVE_NTGUI]: Define dynamic loaded functions for SVG.
20681 (Qgdk_pixbuf, Qglib) [HAVE_NTGUI]: New symbols.
20682 (syms_of_image) [HAVE_NTGUI]: Intern and staticpro them.
20683 (init_svg_functions) [HAVE_NTGUI]: New function.
20684 (fn_g_type_init, fn_g_object_unref, fn_g_error_free): New #defines.
20685 (svg_load_image): Use them.
20686 (svg_load_image) [HAVE_NTGUI]: Implement background.
20688 2007-08-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20690 * Makefile.in (RSVG_LIBS, RSVG_CFLAGS): New variables.
20691 (ALL_CFLAGS): Use ${RSVG_CFLAGS} instead of @RSVG_CFLAGS@.
20692 (LIBX): Remove @RSVG_LIBS@.
20693 (LIBES): Add $(RSVG_LIBS).
20695 * image.c (svg_load_image): Blend with specified background if exists.
20696 Use IMAGE_BACKGROUND. Add Mac OS Support.
20698 * mac.c (wakeup_from_rne_enabled_p) [MAC_OSX]: Remove variable.
20699 (ENABLE_WAKEUP_FROM_RNE, DISABLE_WAKEUP_FROM_RNE) [MAC_OSX]:
20701 [MAC_OSX] (socket_callback): Do nothing.
20702 [MAC_OSX] (select_and_poll_event): Use CFRunLoopRunInMode instead of
20704 [MAC_OSX] (sys_select): Likewise. Don't set context as argument to
20706 (mac_wakeup_from_rne) [MAC_OSX]: Do nothing.
20708 2007-08-22 Glenn Morris <rgm@gnu.org>
20710 * image.c (x_find_image_file): Search in etc/images/ rather than etc/.
20712 2007-08-22 Paul Pogonyshev <pogonyshev@gmx.net>
20714 * Makefile.in (ALL_CFLAGS, LIBX): Add RSVG_LIBS.
20716 * image.c: Add support for SVG images. Some additional comments
20717 by Joakim Verona <joakim@verona.se>. When HAVE_RSVG is defined:
20718 (svg_image_p): New function to test for SVG image.
20719 (svg_load): New function to load SVG image.
20720 (svg_load_image): New function, helper for svg_load.
20721 (Qsvg): New Lisp_object.
20722 (svg_keyword_index): New enum.
20723 (svg_format): New static `image_keyword' struct.
20724 (svg_type): New static `image_type' struct.
20725 (librsvg/rsvg.h): Include it.
20727 2007-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
20729 * lread.c (load_warn_old_style_backquotes): Fix up array size typo.
20731 2007-08-22 Stefan Monnier <monnier@iro.umontreal.ca>
20733 * lread.c (Qold_style_backquotes): New var.
20734 (syms_of_lread): Init and staticpro it.
20735 (load_warn_old_style_backquotes): New fun.
20736 (Fload): Use them to warn about old style backquotes.
20737 (end_of_file_error, Fload): Remove unused vars.
20739 * lisp.h (Fclear_face_cache, Fx_send_client_event): Declare.
20741 * lread.c (Vold_style_backquotes): New var.
20742 (syms_of_lread): Init and export it to Elisp.
20743 (read1): Set it when we find an old-style (back)quote.
20745 2007-08-22 Jason Rumney <jasonr@gnu.org>
20747 * w32reg.c (SYSTEM_DEFAULT_RESOURCES): Add missing NULL terminator.
20749 2007-08-22 Katsumi Yamaoka <yamaoka@jpl.org>
20751 * puresize.h (BASE_PURESIZE): Increase to 1140000.
20753 2007-08-19 Richard Stallman <rms@gnu.org>
20755 * eval.c (Ffunction, Fquote): Signal error if not 1 argument.
20757 2007-08-19 Andreas Schwab <schwab@suse.de>
20759 * alloc.c (pure): Round PURESIZE up.
20761 2007-08-17 Jan Djärv <jan.h.d@swipnet.se>
20763 * xterm.c (handle_one_xevent): Remove check that mouse click is in
20766 2007-08-16 Richard Stallman <rms@gnu.org>
20768 * eval.c (Fcommandp): Add parens to clarify.
20770 * minibuf.c (Fall_completions): Use enum for type of table.
20772 * emacs.c (USAGE2): Improve text.
20774 2007-08-15 Philippe Waroquiers <philippe.waroquiers@eurocontrol.int>
20776 * term.c (tty_default_color_capabilities): Declare static
20777 variables in file scope, to avoid HPUX compiler problem.
20779 2007-08-13 Jan Djärv <jan.h.d@swipnet.se>
20781 * gtkutil.c (update_frame_tool_bar): Use -1 as index
20782 to gtk_toolbar_insert.
20784 2007-08-13 Stefan Monnier <monnier@iro.umontreal.ca>
20786 * fileio.c (Finsert_file_contents): Yet Another Int/Lisp_Object Mixup.
20788 * insdel.c (reset_var_on_error): New fun.
20789 (signal_before_change, signal_after_change):
20790 Use it to reset (after|before)-change-functions to nil in case of error.
20791 Bind inhibit-modification-hooks to t.
20792 Don't bind (after|before)-change-functions to nil while they run.
20794 2007-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20796 * xterm.c (x_draw_image_glyph_string): Adjust stipple origin when
20797 filling pixmap with stippled background.
20799 2007-08-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20801 * macterm.c [TARGET_API_MAC_CARBON] (mac_handle_window_event):
20802 Don't use invisible frame as parent window for repositioning.
20804 2007-08-10 Stefan Monnier <monnier@iro.umontreal.ca>
20806 * print.c (new_backquote_output): Rename from old_backquote_output.
20807 (print): Inverse its logic (according to its name) so as to match the
20808 behavior of new_backquote_flag in lread.c.
20810 2007-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20812 * gmalloc.c (posix_memalign): New function.
20814 * macterm.c (frame_highlight, frame_unhighlight): Don't call
20815 ActivateControl/DeactivateControl here.
20816 [USE_MAC_TOOLBAR] (free_frame_tool_bar): Suppress animation when
20817 frame-notice-user-settings is non-nil.
20818 [USE_MAC_FONT_PANEL] (mac_handle_font_event): Also record parameter
20819 for kEventParamFMFontStyle.
20820 [TARGET_API_MAC_CARBON] (mac_handle_keyboard_event): Don't check
20821 mac_pass_command_to_system and mac_pass_control_to_system here.
20822 (XTread_socket): Call ActivateControl/DeactivateControl here.
20823 (XTread_socket) [TARGET_API_MAC_CARBON]:
20824 Check mac_pass_command_to_system and mac_pass_control_to_system here.
20825 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Add further workaround
20826 for window repositioning.
20828 2007-08-08 Glenn Morris <rgm@gnu.org>
20830 * Replace `iff' in doc-strings and comments.
20832 2007-08-07 Chong Yidong <cyd@stupidchicken.com>
20834 * xdisp.c (move_it_by_lines): Remove incorrect optimization.
20836 2007-08-07 Martin Rudalics <rudalics@gmx.at>
20838 * fileio.c (Finsert_file_contents): Run format-decode and
20839 after_insert_file_functions on entire buffer when REPLACE is
20840 non-nil and inhibit modification_hooks and point_motion_hooks.
20841 For consistency, run after_insert_file_functions iff something
20842 got inserted. Move signal_after_change and update_compositions
20843 after code running after_insert_file_functions. Make sure that
20844 undo_list doesn't record intermediate steps of the decoding process.
20846 2007-08-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20849 [HAVE_GTK_AND_PTHREAD && !SYSTEM_MALLOC && !DOUG_LEA_MALLOC]:
20850 Call malloc_enable_thread on interactive startup.
20852 * gmalloc.c (_malloc_thread_enabled_p) [USE_PTHREAD]: New variable.
20853 (LOCK, UNLOCK, LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS)
20854 [USE_PTHREAD]: Conditionalize with it.
20855 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
20856 (malloc_atfork_handler_child, malloc_enable_thread) [USE_PTHREAD]:
20859 2007-08-06 Chong Yidong <cyd@stupidchicken.com>
20861 * xdisp.c (redisplay_window): When restoring original buffer
20862 position, make sure it is still valid.
20864 * image.c (png_load): Ignore png-supplied background color.
20866 2007-08-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20868 * mac.c [TARGET_API_MAC_CARBON] (cfdate_to_lisp): Obtain microsec value.
20869 Use kCFAbsoluteTimeIntervalSince1970.
20871 * macmenu.c (quit_dialog_event_loop) [TARGET_API_MAC_CARBON]:
20873 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Set it if dialog
20874 event loop should be quit.
20875 [TARGET_API_MAC_CARBON] (create_and_show_dialog) [!MAC_OSX]:
20876 Quit dialog event loop if quit_dialog_event_loop is set.
20878 * macselect.c [!TARGET_API_MAC_CARBON]: Include Scrap.h.
20879 (Selection): New typedef. Use instead of ScrapRef.
20880 (mac_get_selection_from_symbol): Rename from get_scrap_from_symbol.
20881 (mac_valid_selection_target_p): Rename from valid_scrap_target_type_p.
20882 (mac_clear_selection): Rename from clear_scrap.
20883 (get_flavor_type_from_symbol): New argument SEL and subsume function of
20884 scrap_has_target_type. All uses changed.
20885 (mac_get_selection_ownership_info, mac_valid_selection_value_p)
20886 (mac_selection_has_target_p): New functions.
20887 (mac_put_selection_value): Rename from put_scrap_string.
20888 (mac_get_selection_value): Rename from get_scrap_string.
20889 (mac_get_selection_target_list): Rename from get_scrap_target_type_list.
20890 (put_scrap_private_timestamp, scrap_has_target_type)
20891 (get_scrap_private_timestamp): Remove functions.
20892 (SCRAP_FLAVOR_TYPE_EMACS_TIMESTAMP): Remove define.
20893 (x_own_selection, x_get_local_selection):
20894 Use mac_valid_selection_value_p.
20895 (x_own_selection): Don't use put_scrap_private_timestamp.
20896 Record OWNERSHIP-INFO into Vselection_alist instead.
20897 (x_get_local_selection): Don't check type if request is local.
20898 (Fx_selection_owner_p): Don't use get_scrap_private_timestamp.
20899 Detect ownership change with OWNERSHIP-INFO in Vselection_alist instead.
20901 2007-08-04 Jan Djärv <jan.h.d@swipnet.se>
20903 * gtkutil.c (xg_tool_bar_callback): Generate two TOOL_BAR_EVENT:s,
20904 add comment explaining why.
20906 2007-08-03 Richard Stallman <rms@gnu.org>
20908 * fileio.c (Fvisited_file_modtime): Use make_time.
20910 2007-08-01 Ryo Yoshitake <ryo@shiftmode.net> (tiny change)
20912 * mac.c (init_mac_osx_environment): Adjust load-path on self-contained
20915 2007-07-31 Stefan Monnier <monnier@iro.umontreal.ca>
20917 * gtkutil.c (xg_tool_bar_callback): Generate a single TOOL_BAR_EVENT.
20919 2007-07-30 Katsumi Yamaoka <yamaoka@jpl.org>
20921 * puresize.h (BASE_PURESIZE): Increase to 1130000.
20923 2007-07-30 Richard Stallman <rms@gnu.org>
20925 * lread.c (readevalloop, read1): Treat NBSP as whitespace.
20927 2007-07-29 Jan Djärv <jan.h.d@swipnet.se>
20929 * gmalloc.c (__malloc_initialize): Remove pthread_once. Not needed.
20931 2007-07-28 Nick Roberts <nickrob@snap.net.nz>
20933 * xdisp.c (decode_mode_spec): Use '@' instead of 'R' to test for
20934 remote default-directory.
20936 * buffer.c (mode-line-format): Update doc string.
20938 2007-07-27 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20940 * w32term.c (w32_draw_fringe_bitmap): Extend fringe background to
20942 (x_scroll_bar_create): Set bar->fringe_extended_p.
20943 (w32_set_vertical_scroll_bar): Put leftmost/rightmost scroll bars
20944 on frame edge. Check fringe background extension. Don't clear
20945 extended fringe background area.
20947 * w32term.h (struct scroll_bar): New member fringe_extended_p.
20948 (w32_fill_area): Enclose multiple statements with do ... while (0).
20950 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
20951 Extend fringe background to scroll bar gap.
20952 (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]:
20953 Set bar->fringe_extended_p.
20954 (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
20955 Put leftmost/rightmost scroll bars on frame edge. Check fringe
20956 background extension. Don't clear extended fringe background area.
20958 * xterm.h (struct scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
20959 New member fringe_extended_p.
20961 2007-07-25 Glenn Morris <rgm@gnu.org>
20963 * Relicense all FSF files to GPLv3 or later.
20965 * COPYING: Switch to GPLv3.
20967 2007-07-25 Stefan Monnier <monnier@iro.umontreal.ca>
20969 * eval.c (Fcommandp): Pay attention to the `interactive-form' property.
20971 * data.c (Finteractive_form): Check for the presence of an
20972 `interactive-form' symbol property more thoroughly.
20974 * data.c (Finteractive_form): Use an `interactive-form' property if
20975 present, analogous to the function-documentation property.
20977 2007-07-24 Jason Rumney <jasonr@gnu.org>
20979 * w32fns.c (x_real_positions): Get real position from OS instead of
20982 2007-07-23 Jason Rumney <jasonr@gnu.org>
20984 * filelock.c (current_lock_owner): Allow for @ sign in username.
20986 2007-07-22 Nick Roberts <nickrob@snap.net.nz>
20988 * xdisp.c (decode_mode_spec): Add case 'R' for to test for
20989 remote default-directory.
20991 * buffer.c (mode-line-format): Describe above case in doc string.
20993 2007-07-20 Eli Zaretskii <eliz@gnu.org>
20995 * w32proc.c (IMAGE_NT_OPTIONAL_HDR32_MAGIC, IMAGE_OPTIONAL_HEADER32):
20996 Define if not defined.
20998 2007-07-18 Jason Rumney <jasonr@gnu.org>
21000 * w32proc.c (w32_executable_type): Handle 64 bit executables.
21002 2007-07-18 Richard Stallman <rms@gnu.org>
21004 * data.c (Fsetq_default): Doc fix.
21006 * eval.c (Fsetq): Doc fix.
21008 2007-07-18 Juanma Barranquero <lekktu@gmail.com>
21010 * coding.c (Ffind_operation_coding_system):
21011 * eval.c (For, Fand): Doc fixes.
21012 Reported by Johan Bockgård.
21014 2007-07-18 Jan Djärv <jan.h.d@swipnet.se>
21016 * xfns.c (Fx_focus_frame): Call x_ewmh_activate_frame.
21018 * xterm.h: Declare x_ewmh_activate_frame.
21020 * xterm.c (x_ewmh_activate_frame): New function.
21021 (XTframe_raise_lower): Move code to x_ewmh_activate_frame.
21023 2007-07-17 Martin Rudalics <rudalics@gmx.at>
21025 * window.c (Fdisplay_buffer): If largest or LRU window is the
21026 only window, split it even if it is not eligible for splitting.
21027 This restores the original behavior broken by the 2007-07-15
21030 2007-07-17 Glenn Morris <rgm@gnu.org>
21032 * abbrev.c (abbrev_check_chars): New function.
21033 (Fdefine_global_abbrev, Fdefine_mode_abbrev):
21034 Call abbrev_check_chars to check abbrev characters are word
21035 constituents. Doc fix.
21037 2007-07-17 Stefan Monnier <monnier@iro.umontreal.ca>
21039 * process.c (Fstart_process, Fmake_network_process)
21040 (read_process_output): Fix up last changes.
21042 2007-07-16 Eli Zaretskii <eliz@gnu.org>
21044 * makefile.w32-in (clean): Don't delete *~.
21046 2007-07-16 Andreas Schwab <schwab@suse.de>
21048 * window.c (Fdisplay_buffer): Use NILP.
21049 (Fset_window_scroll_bars): Likewise.
21051 2007-07-15 Martin Rudalics <rudalics@gmx.at>
21053 * window.c (window_min_size_2): New function.
21054 (window_min_size_1, size_window, Fdisplay_buffer)
21055 (Fsplit_window, adjust_window_trailing_edge): Use it to avoid
21056 windows without mode- or header-lines when window-min-height is
21058 (size_window): Reset nodelete_p after testing it, following an
21059 earlier note by Kim F. Storm.
21060 (display_buffer): Do not set split_height_threshold to twice the
21061 value of window_min_height to avoid changing the value of a
21062 customizable variable. Rather explicitly check whether the
21063 height of the window that shall be splitted is at least as large
21064 as split_height_threshold.
21065 (Fwindow_full_width_p): New defun.
21066 (syms_of_window): Defsubr it.
21068 * window.h: Add EXFUN for Fwindow_full_width_p.
21070 2007-07-14 Jason Rumney <jasonr@gnu.org>
21072 * process.c [WINDOWSNT]: Don't undefine AF_INET6.
21074 2007-07-14 Richard Stallman <rms@gnu.org>
21076 * eval.c (maybe_call_debugger): New function.
21077 (find_handler_clause): Use maybe_call_debugger.
21078 Call it when the handler says `debug'.
21079 Eliminate DEBUGGER_VALUE_PTR.
21080 (Fsignal): Eliminate debugger_value.
21081 (Qdebug): New variable.
21082 (syms_of_eval): Initialize it.
21084 2007-07-14 Juanma Barranquero <lekktu@gmail.com>
21087 * keyboard.c (Ftrack_mouse):
21088 * print.c (Fwith_output_to_temp_buffer):
21089 * window.c (Fsave_window_excursion): Doc fix.
21091 2007-07-13 Stefan Monnier <monnier@iro.umontreal.ca>
21093 * eval.c (init_eval_once): Bump max_lisp_eval_depth to 400.
21095 2007-07-12 Stefan Monnier <monnier@iro.umontreal.ca>
21097 * process.h (struct Lisp_Process): Turn slots infd, outfd,
21098 kill_without_query, pty_flag, tick, update_tick, decoding_carryover,
21099 inherit_coding_system_flag, filter_multibyte, adaptive_read_buffering,
21100 read_output_delay, and read_output_skip from Lisp_Objects to ints.
21101 Remove unused encoding_carryover.
21102 * process.c: Adjust all functions accordingly.
21104 2007-07-12 Richard Stallman <rms@gnu.org>
21106 * term.c: Include unistd.h only if HAVE_UNISTD_H.
21108 2007-07-11 Jason Rumney <jasonr@gnu.org>
21110 * makefile.w32-in (LIBS): Include OLE32.
21112 * w32fns.c (w32_msg_pump) <WM_EMACS_CREATEWINDOW>: Initialize COM.
21113 (w32_msg_pump) <WM_DESTROY>: Uninitialize COM.
21115 2007-07-11 Stefan Monnier <monnier@iro.umontreal.ca>
21117 * lisp.h (struct Lisp_Hash_Table): Turn next_weak into a bare pointer.
21118 * fns.c (weak_hash_tables): Rename from Vweak_hash_tables and turned
21119 from a Lisp_Object into a bare pointer.
21120 (make_hash_table, copy_hash_table, sweep_weak_hash_tables, init_fns):
21121 Adjust the code correspondingly.
21123 * alloc.c (emacs_blocked_free): Remove unused var `bytes_used_now'.
21125 * term.c: Include unistd.h for ttyname, used in handle_one_term_event.
21126 (term_show_mouse_face): Remove unused var `j'.
21127 (handle_one_term_event): Remove unused vars `i' and `j'.
21128 Don't cast return value of ttyname since it's not necessary.
21130 2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
21132 * alloc.c (mark_maybe_pointer): Enforce mult-of-8 alignment when using
21133 USE_LSB_TAG. Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
21135 * fns.c (map_char_table): Use an array of int for `indices' rather than
21136 an array of Lisp_Objects (which are only ever integers anyway).
21137 (Fmap_char_table): Update caller.
21138 * lisp.h: Update prototype.
21139 * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap):
21140 * fontset.c (Ffontset_info):
21141 * casetab.c (set_case_table): Update callers.
21143 * editfns.c (Ftranspose_regions): Use EMACS_INT for positions.
21145 * keymap.c (struct accessible_keymaps_data)
21146 (struct where_is_internal_data): New structures.
21147 (accessible_keymaps_1, where_is_internal_1): Use them to change
21148 interface to adhere to the one used by map_keymap.
21149 (Faccessible_keymaps, where_is_internal): Use map_keymap.
21150 (accessible_keymaps_char_table, where_is_internal_2): Remove.
21152 * keymap.h (map_keymap_function_t): More informative prototype.
21154 2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
21156 * search.c (Vinhibit_changing_match_data, search_regs_1): New vars.
21157 (looking_at_1): Don't change search_regs and last_thing_searched
21158 if `inhibit-changing-match-data' is non-nil.
21159 (string_match_1, search_buffer, set_search_regs): Likewise.
21160 (syms_of_search): Add Lisp level definition for
21161 `inhibit-changing-match-data' and set it to nil.
21162 (boyer_moore): If `inhibit-changing-match-data' is non-nil, compute
21163 start and end of the match, instead of using values in search_regs.
21165 2007-07-01 Stefan Monnier <monnier@iro.umontreal.ca>
21167 * minibuf.c (Fcompleting_read): New value `confirm-only'
21168 for `require-match'.
21170 2007-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
21172 * fileio.c (Fdo_auto_save): Revert last patch installed unwillingly as
21173 part of the 2007-06-27 change to syms_of_fileio.
21175 2007-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21177 * macterm.c [USE_MAC_TSM] (mac_handle_text_input_event):
21178 Check WINDOWP before using XWINDOW. Consolidate return statements.
21180 2007-06-27 Richard Stallman <rms@gnu.org>
21182 * fileio.c (syms_of_fileio) <after-insert-file-functions>: Doc fix.
21184 2007-06-27 Juanma Barranquero <lekktu@gmail.com>
21186 * buffer.c (syms_of_buffer) <selective-display>: Fix typo in docstring.
21188 2007-06-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21190 * gmalloc.c [HAVE_GTK_AND_PTHREAD]: Check this after including config.h.
21191 (_aligned_blocks_mutex) [USE_PTHREAD]: New variable.
21192 (LOCK_ALIGNED_BLOCKS, UNLOCK_ALIGNED_BLOCKS): New macros.
21193 (_free_internal, memalign): Use them.
21194 (_malloc_mutex, _aligned_blocks_mutex) [USE_PTHREAD]:
21195 Initialize to PTHREAD_MUTEX_INITIALIZER.
21196 (malloc_initialize_1) [USE_PTHREAD]: Don't use recursive mutex.
21197 (morecore_nolock): Rename from morecore. All uses changed.
21198 Use only nolock versions of internal allocation functions.
21199 (_malloc_internal_nolock, _realloc_internal_nolock)
21200 (_free_internal_nolock): New functions created from
21201 _malloc_internal, _realloc_internal, and _free_internal.
21202 (_malloc_internal, _realloc_internal, _free_internal): Use them.
21203 Copy hook value to automatic variable before its use.
21204 (memalign): Copy hook value to automatic variable before its use.
21206 2007-06-26 Kenichi Handa <handa@m17n.org>
21208 * coding.c (Ffind_operation_coding_system): Docstring improved.
21209 (syms_of_coding): Docstring of `file-coding-system-alist' improved.
21211 2007-06-25 David Kastrup <dak@gnu.org>
21213 * keymap.c (Fcurrent_active_maps): Add `position' argument.
21214 (Fwhere_is_internal): Adjust call to `current-active-maps' to
21215 cater for additional parameter.
21217 * keymap.h: Adjust number of parameters to `current-active-maps'.
21219 * doc.c (Fsubstitute_command_keys): Adjust call of
21220 `current-active-maps'.
21222 2007-06-25 David Kastrup <dak@gnu.org>
21224 * callint.c (Fcall_interactively): Make the parsing of interactive
21225 specs somewhat more readable.
21227 2007-06-23 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21229 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe background
21230 to scroll bar gap also when bitmap fills fringe. Draw only foreground
21231 if extended background has already been filled.
21233 2007-06-22 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21235 * macgui.h (USE_CG_DRAWING): Don't require USE_ATSUI.
21236 (USE_MAC_TOOLBAR): Require USE_CG_DRAWING.
21238 * macmenu.c (mac_dialog_modal_filter, Fx_popup_dialog) [MAC_OSX]:
21239 Put special treatment for Fmessage_box, Fyes_or_no_p, and Fy_or_n_p
21240 in #if 0 as it is not compatible with y-or-n-p-with-timeout.
21241 (timer_check) [TARGET_API_MAC_CARBON]: Add extern.
21242 [TARGET_API_MAC_CARBON] (mac_handle_dialog_event): Use QuitEventLoop
21243 instead of QuitAppModalLoopForWindow. Consolidate QuitEventLoop calls.
21244 (pop_down_dialog) [TARGET_API_MAC_CARBON]: New function.
21245 [TARGET_API_MAC_CARBON] (create_and_show_dialog): Use it for unwind.
21246 Run timers during dialog popup.
21247 (Fmenu_or_popup_active_p) [TARGET_API_MAC_CARBON]: Use popup_activated.
21249 2007-06-21 Jason Rumney <jasonr@gnu.org>
21251 * image.c (convert_mono_to_color_image): Swap fore and background.
21253 2007-06-20 Jason Rumney <jasonr@gnu.org>
21255 * w32bdf.c (w32_BDF_to_x_font): Unmap memory when finished.
21256 (w32_free_bdf_font): Unmap memory not handle.
21258 2007-06-20 Sam Steingold <sds@gnu.org>
21260 * gmalloc.c (__morecore): Fix the declaration to comply with the
21263 2007-06-20 Juanma Barranquero <lekktu@gmail.com>
21265 * w32term.c (w32_delete_display): Remove leftover declaration.
21266 (w32_define_cursor, w32_initialize): Make static.
21268 * w32.c (_wsa_errlist): Fix typo in error message.
21269 (init_environment): Ignore any environment variable from the
21270 registry having a null value.
21272 2007-06-20 Glenn Morris <rgm@gnu.org>
21274 * Makefile.in (LIBGIF): Default to -lgif.
21276 2007-06-17 Jason Rumney <jasonr@gnu.org>
21278 * w32menu.c (add_menu_item): Don't use multibyte string functions on
21281 2007-06-16 Juanma Barranquero <lekktu@gmail.com>
21283 * xdisp.c (syms_of_xdisp) <auto-resize-tool-bars>:
21284 Fix typo in docstring.
21286 2007-06-16 Eli Zaretskii <eliz@gnu.org>
21288 * w32menu.c (add_menu_item): Escape `&' characters in menu items
21289 and their keybindings.
21291 2007-06-15 Chong Yidong <cyd@stupidchicken.com>
21293 * composite.c (update_compositions): Fix last fix.
21295 2007-06-14 Jason Rumney <jasonr@gnu.org>
21297 * w32.c (get_process_times_fn): New function pointer.
21298 (globals_of_w32): Intialize it if present in kernel32.dll.
21299 (w32_get_internal_run_time): New function.
21301 * editfns.c (Fget_internal_run_time) [WINDOWSNT]: Use it.
21303 2007-06-14 Kenichi Handa <handa@etlken.m17n.org>
21305 * composite.c (update_compositions): Check the validness of
21308 2007-06-14 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21310 * frame.h (struct frame) [MAC_OS]: New member external_tool_bar.
21311 (FRAME_EXTERNAL_TOOL_BAR) [MAC_OS]: Use it.
21313 * macfns.c (mac_window) [USE_MAC_TOOLBAR]: Set toolbar_win_gravity.
21314 (x_set_tool_bar_lines) [USE_MAC_TOOLBAR]: Set FRAME_EXTERNAL_TOOL_BAR.
21316 * macgui.h (USE_MAC_TOOLBAR): New define.
21318 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
21319 Return immediately unless popup is activated.
21321 * macterm.c (x_draw_fringe_bitmap) [MAC_OSX]: Extend fringe
21322 background to scroll bar gap.
21323 (x_scroll_bar_create) [MAC_OSX]: Set bar->fringe_extended_p.
21324 (XTset_vertical_scroll_bar) [MAC_OSX]: Put leftmost/rightmost
21325 scroll bars on frame edge. Check fringe background extension.
21326 Don't clear extended fringe background area.
21327 (TOOLBAR_IDENTIFIER, TOOLBAR_ICON_ITEM_IDENTIFIER)
21328 (TOOLBAR_ITEM_COMMAND_ID_OFFSET, TOOLBAR_ITEM_COMMAND_ID_P)
21329 (TOOLBAR_ITEM_COMMAND_ID_VALUE, TOOLBAR_ITEM_MAKE_COMMAND_ID):
21330 [USE_MAC_TOOLBAR]: New macros.
21331 (mac_move_window_with_gravity, mac_get_window_origin_with_gravity)
21332 (mac_handle_toolbar_event, mac_image_spec_to_cg_image)
21333 (mac_create_frame_tool_bar, update_frame_tool_bar, free_frame_tool_bar)
21334 (mac_tool_bar_note_mouse_movement, mac_handle_toolbar_command_event)
21335 [USE_MAC_TOOLBAR]: New functions.
21336 (mac_handle_window_event) [USE_MAC_TOOLBAR]: Reposition window
21337 manually if previous repositioning has failed.
21338 (mac_handle_keyboard_event): Use precomputed event kind.
21339 (XTread_socket) [USE_MAC_TOOLBAR]: Handle click in structure region
21340 as tool bar item click. Handle mouse movement over tool bar items.
21342 * macterm.h (struct mac_output) [USE_MAC_TOOLBAR]: New member
21343 toolbar_win_gravity.
21344 (struct scroll_bar) [MAC_OSX]: New member fringe_extended_p.
21345 (update_frame_tool_bar, free_frame_tool_bar) [USE_MAC_TOOLBAR]:
21348 * xdisp.c (update_tool_bar, redisplay_tool_bar, redisplay_window)
21349 [USE_MAC_TOOLBAR]: Sync with GTK+ tool bar display.
21351 2007-06-14 Chong Yidong <cyd@stupidchicken.com>
21353 * image.c (search_image_cache): Remove unused variable.
21355 2007-06-13 Chong Yidong <cyd@stupidchicken.com>
21357 * xfns.c, xmenu.c: Link to xaw3d if available.
21359 2007-06-13 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21361 * dispextern.h (struct image) [HAVE_WINDOW_SYSTEM]: New members
21362 frame_foreground and frame_background.
21364 * image.c (lookup_image): Save frame foreground and background colors.
21365 (search_image_cache): Check if saved and current frame colors match.
21367 2007-06-12 Stefan Monnier <monnier@iro.umontreal.ca>
21369 * regex.c (regex_compile): Remove the `regnum' counter.
21370 Use bufp->re_nsub instead. Add support for \(?N:RE\).
21372 2007-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
21374 * term.c: Include intervals.h to declare Fget_text_property.
21376 2007-06-10 Jason Rumney <jasonr@gnu.org>
21378 * w32fns.c (Fx_file_dialog): Take size from struct not pointer.
21380 2007-06-08 Juanma Barranquero <lekktu@gmail.com>
21382 * callint.c (Fcall_interactively):
21383 * editfns.c (Fdelete_and_extract_region):
21384 * fileio.c (Fread_file_name):
21385 * fns.c (Fmapconcat):
21386 * keyboard.c (cmd_error_internal):
21387 * keymap.c (Fkey_description):
21389 * minibuf.c (read_minibuf):
21390 * search.c (wordify):
21391 * sunfns.c (sel_read):
21392 * xdisp.c (Fformat_mode_line, syms_of_xdisp):
21393 * xfns.c (x_default_scroll_bar_color_parameter):
21394 * xmenu.c (menu_help_callback):
21395 * xselect.c (Fx_get_atom_name):
21396 * xterm.c (x_term_init): Use empty_unibyte_string.
21398 2007-06-08 Dmitry Antipov <dmantipov@yandex.ru> (tiny change)
21400 * alloc.c (init_strings): Initialize canonical empty strings.
21401 (make_uninit_string, make_uninit_multibyte_string): Return appropriate
21402 canonical empty string when the requested size is 0.
21404 * emacs.c (empty_unibyte_string): Rename from empty_string.
21405 (empty_multibyte_string): New canonical empty string.
21406 (syms_of_emacs): Don't initialize empty_string.
21408 * lisp.h (STRING_SET_UNIBYTE): Return the canonical empty unibyte
21409 string, if appropriate.
21410 (empty_unibyte_string, empty_multibyte_string): New externs.
21411 (empty_string): Remove extern.
21413 * lread.c (syms_of_lread): Use empty_unibyte_string.
21415 2007-06-07 Jason Rumney <jasonr@gnu.org>
21417 * s/ms-w32.h: Don't define HAVE_TZNAME.
21419 * editfns.c (Fcurrent_time_zone): Remove hack for Japanese Windows.
21421 2007-06-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21423 * mac.c (xrm_get_preference_database): Remove BLOCK_INPUT.
21425 * macfns.c (mac_get_window_bounds): Move extern to macterm.h.
21426 (compute_tip_xy) [TARGET_API_MAC_CARBON]: Use GetGlobalMouse.
21428 * macmenu.c [TARGET_API_MAC_CARBON] (menu_target_item_handler):
21429 Don't call next handler.
21430 [TARGET_API_MAC_CARBON] (install_menu_target_item_handler):
21431 Remove argument. Install handler to application.
21432 (set_frame_menubar): Don't change deep_p.
21433 (mac_menu_show): Use FRAME_OUTER_TO_INNER_DIFF_X and
21434 FRAME_OUTER_TO_INNER_DIFF_Y.
21435 (DIALOG_BUTTON_COMMAND_ID_OFFSET, DIALOG_BUTTON_COMMAND_ID_P)
21436 (DIALOG_BUTTON_COMMAND_ID_VALUE, DIALOG_BUTTON_MAKE_COMMAND_ID)
21437 [HAVE_DIALOGS]: New macros.
21438 [HAVE_DIALOGS] (mac_handle_dialog_event, create_and_show_dialog):
21440 (fill_menubar) [TARGET_API_MAC_CARBON]: Use CFString.
21442 * macselect.c [MAC_OSX] (install_service_handler): Rename from
21443 init_service_handler. All callers changed. Return OSStatus value.
21445 * macterm.c (mac_begin_cg_clip): New arg F. Call SetPortWindowPort.
21446 All callers changed so as not to call SetPortWindowPort.
21447 (mac_begin_cg_clip) [USE_CG_DRAWING]: Call mac_prepare_for_quickdraw.
21448 (mac_draw_image_string_atsui) [USE_ATSUI]: New function created from
21449 mac_draw_string_common.
21450 (mac_draw_image_string_qd): Likewise.
21451 (mac_draw_string_common): Use them. Add INLINE.
21452 (XTmouse_position, x_scroll_bar_report_motion) [TARGET_API_MAC_CARBON]:
21453 Use FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y, and
21455 (x_set_mouse_pixel_position) [MAC_OSX]: Use FRAME_OUTER_TO_INNER_DIFF_X
21456 and FRAME_OUTER_TO_INNER_DIFF_Y.
21457 [TARGET_API_MAC_CARBON] (mac_handle_mouse_event): Likewise.
21458 [USE_MAC_TSM] (mac_handle_text_input_event): Likewise.
21459 (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Move code for
21460 repositioning window to mac_handle_window_event.
21461 (x_make_frame_invisible) [TARGET_API_MAC_CARBON]: Move code for
21462 saving window location to mac_handle_window_event
21463 [USE_MAC_FONT_PANEL] (mac_show_hide_font_panel): Install handler here.
21464 (install_menu_target_item_handler): Remove argument in extern.
21465 [TARGET_API_MAC_CARBON] (mac_event_to_emacs_modifiers):
21466 Also accept command events.
21467 (do_keystroke): New function created from XTread_socket.
21468 (init_command_handler): Remove functions.
21469 [TARGET_API_MAC_CARBON] (mac_handle_window_event): Reposition window
21470 and save window location by kEventWindowShowing and kEventWindowHiding
21471 handlers here. Don't call next handler for window state change and
21473 (mac_handle_application_event, mac_handle_keyboard_event)
21474 [TARGET_API_MAC_CARBON]: New functions.
21475 (install_window_handler) [TARGET_API_MAC_CARBON]: Register handlers for
21476 kEventWindowShowing and kEventWindowHiding events. Move installation
21477 of mouse, font, text input and menu target item handlers to
21478 install_application_handler.
21479 (install_application_handler) [TARGET_API_MAC_CARBON]: New function.
21480 (mac_handle_cg_display_reconfig) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21482 (init_dm_notification_handler) [MAC_OS_X_VERSION_MAX_ALLOWED >= 1030]:
21484 (XTread_socket) [TARGET_API_MAC_CARBON]:
21485 Consolidate SendEventToEventTarget calls.
21486 Use FRAME_OUTER_TO_INNER_DIFF_X and FRAME_OUTER_TO_INNER_DIFF_Y.
21487 Move application activation handler to mac_handle_application_event.
21488 Move keyboard handler to mac_handle_keyboard_event.
21489 (XTread_socket) [!TARGET_API_MAC_CARBON]: Use do_keystroke.
21490 (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
21491 init_command_handler. Call install_application_handler.
21493 * macterm.h (mac_get_window_bounds): Move extern from macfns.c.
21494 (FRAME_OUTER_TO_INNER_DIFF_X, FRAME_OUTER_TO_INNER_DIFF_Y): New macros.
21496 2007-06-07 Glenn Morris <rgm@gnu.org>
21498 * emacs.c (main): Use `emacs-copyright' in --version output.
21500 2007-06-06 Chong Yidong <cyd@stupidchicken.com>
21502 * image.c (xpm_load): Remove spurious call to xpm_init_color_cache.
21504 2007-06-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21506 * macfns.c (mac_window): Replace WindowPtr with WindowRef.
21508 * macgui.h: Replace WindowPtr with WindowRef.
21510 * macmenu.c: Replace MenuHandle and GetMenuHandle with MenuRef and
21511 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
21512 Replace ControlHandle with ControlRef.
21513 (install_menu_quit_handler): Rename arg MENU_HANDLE to ROOT_MENU.
21515 * macterm.c: Replace MenuHandle and GetMenuHandle with MenuRef and
21516 GetMenuRef, respectively. Replace WindowPtr with WindowRef.
21517 Replace ControlHandle with ControlRef.
21518 (USE_CARBON_EVENTS): Remove. Use TARGET_API_MAC_CARBON instead.
21519 [MAC_OS8] (do_get_menus): Rename variable `menu_handle' to `menu'.
21521 * macterm.h (struct scroll_bar): Rename member control_handle_low
21522 and control_handle_high to control_ref_low and control_ref_high.
21524 (SCROLL_BAR_CONTROL_REF, SET_SCROLL_BAR_CONTROL_REF): Rename from
21525 SCROLL_BAR_CONTROL_HANDLE and SET_SCROLL_BAR_CONTROL_HANDLE,
21526 respectively. All uses changed.
21527 (XCreatePixmap, XCreatePixmapFromBitmapData, XSetWindowBackground)
21528 (install_window_handler, remove_window_handler): Replace WindowPtr
21529 with WindowRef in externs.
21531 2007-06-05 Juanma Barranquero <lekktu@gmail.com>
21533 * xfaces.c (Finternal_lisp_face_p): Signal error for face alias loops.
21535 2007-06-03 Nick Roberts <nickrob@snap.net.nz>
21537 * keyboard.c (discard_mouse_events): Add GPM_CLICK_EVENT case.
21539 * frame.c (Fmouse_position, Fmouse_pixel_position):
21540 Condition on HAVE_GPM too.
21542 * term.c (term_mouse_highlight): Remove unused variables.
21543 (Fterm_open_connection): Set gpm_zerobased to 1.
21544 (term_mouse_movement, term_mouse_click, handle_one_term_event):
21545 Use zero based co-ordinates.
21546 (handle_one_term_event): Report a drag as mouse movement too.
21548 * Makefile.in (MOUSE_SUPPORT): Define for HAVE_GPM.
21550 2007-06-03 Chong Yidong <cyd@stupidchicken.com>
21552 * image.c (search_image_cache): New function. Require background
21553 color match if background color is unspecified in the image spec.
21554 (uncache_image, lookup_image): Use it.
21556 2007-06-01 Juanma Barranquero <lekktu@gmail.com>
21558 * window.c (Fshrink_window): Reflow docstring.
21560 2007-06-02 Chong Yidong <cyd@stupidchicken.com>
21562 * Version 22.1 released.
21564 2007-06-01 Richard Stallman <rms@gnu.org>
21566 * xfns.c (x_encode_text): Add GCPRO.
21568 2007-06-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21570 * xfns.c (x_set_name_internal): Save encoded name before
21571 x_encode_text in case string data is relocated.
21573 2007-05-31 Richard Stallman <rms@gnu.org>
21575 * buffer.c (syms_of_buffer): Doc fix.
21577 2007-05-30 Nick Roberts <nickrob@snap.net.nz>
21579 * sysdep.c (init_sys_modes): Add rather than replace with
21582 * frame.c [HAVE_GPM] (Fset_mouse_pixel_position): Add call to
21585 * termhooks.h (term_mouse_moveto): New extern.
21587 * term.c (mouse_face_window): Rename...
21588 (Qmouse_face_window): ...to this.
21589 (term_show_mouse_face, term_clear_mouse_face)
21590 (term_mouse_highlight): Use Qmouse_face_window.
21591 (term_mouse_moveto): New function.
21592 (term_mouse_position): Make it work.
21593 (syms_of_term): Uncomment assignment to mouse_position_hook.
21594 Staticpro Qmouse_face_window.
21596 2007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21598 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
21599 around current_column call.
21601 2007-05-26 Dan Nicolaescu <dann@ics.uci.edu>
21603 * xfaces.c (syms_of_xfaces): Delete stray semicolon.
21604 * xdisp.c (next_element_from_buffer):
21605 * window.c (delete_window):
21606 * term.c (term_mouse_highlight):
21607 * msdos.c (getdefdir):
21608 * macterm.c (mac_create_bitmap_from_bitmap_data)
21609 (init_font_name_table):
21611 * data.c (Fmake_local_variable):
21612 * ccl.c (ccl_driver): Likewise.
21614 2007-05-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21616 * macterm.c [USE_CARBON_EVENTS] (mac_handle_window_event):
21617 Call mac_wakeup_from_rne on window size change.
21619 2007-05-25 Chong Yidong <cyd@stupidchicken.com>
21621 * image.c (uncache_image): Fix typo.
21623 2007-05-23 Johannes Weiner <hannes@saeurebad.de> (tiny change)
21625 * keyboard.c (make_lispy_movement): Condition on HAVE_GPM too.
21627 2007-05-22 Richard Stallman <rms@gnu.org>
21629 * xterm.c (x_connection_closed): Remove NO_RETURN.
21631 2007-05-22 Martin Rudalics <rudalics@gmx.at>
21633 * syntax.c (scan_words): Fix arg to UPDATE_SYNTAX_TABLE_BACKWARD.
21635 2007-05-21 Chong Yidong <cyd@stupidchicken.com>
21637 * image.c (uncache_image): New function.
21638 (Fimage_refresh): New function.
21640 2007-05-20 Jan Djärv <jan.h.d@swipnet.se>
21642 * Makefile.in: Move GPM check outside HAVE_X_WINDOWS.
21644 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
21646 * config.in, keyboard.c, Makefile.in, sysdep.c, term.c,
21647 * termhooks.h: Use HAVE_GPM instead of HAVE_GPM_H.
21649 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
21651 * keyboard.c (make_lispy_event): Make case GPM_CLICK_EVENT
21652 conditional on [HAVE_GPM_H].
21654 2007-05-19 Stefan Monnier <monnier@iro.umontreal.ca>
21656 * syntax.c (skip_chars): Update syntax-table only after we checked that
21657 the new location is valid.
21659 2007-05-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21661 * macterm.c (x_calc_absolute_position): Add BLOCK_INPUT around
21662 mac_get_window_bounds.
21664 2007-05-20 Nick Roberts <nickrob@snap.net.nz>
21666 * Makefile.in (LIBGPM): Allow it to be set from configure.
21667 If set then link Emacs with it.
21669 * config.in: Regenerate.
21671 * lisp.h (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
21674 * termhooks.h [HAVE_GPM_H] (enum event_kind): Add GPM_CLICK_EVENT.
21676 (handle_one_term_event, term_gpm): New externs.
21678 * sysdep.c [HAVE_GPM_H] (init_sys_modes): Make gpm_fd nonblocking
21679 and allow it to be interrupted by SIGIO.
21681 * process.c (gpm_wait_mask, max_gpm_desc): New variables.
21682 (wait_reading_process_output): Wait on gpm_fd too.
21683 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor)): New functions.
21684 (add_gpm_wait_descriptor_called_flag): New variable.
21685 (delete_keyboard_wait_descriptor): Check gpm_wait_mask.
21687 * keyboard.c [HAVE_GPM_H] (Qmouse_fixup_help_message)
21688 (make_lispy_movement, tracking_off, Ftrack_mouse, some_mouse_moved)
21689 (show_help_echo, readable_events, kbd_buffer_get_event, init_keyboard):
21690 Extend HAVE_MOUSE ifdefs to HAVE_GPM_H.
21691 (make_lispy_event): Add case GPM_CLICK_EVENT.
21692 (read_avail_input): Handle mouse input.
21694 * term.c (write_glyphs_with_face): New function.
21695 [HAVE_GPM_H]: Include buffer.h, sys/fcntl.h.
21696 (mouse_face_beg_row, mouse_face_beg_col, mouse_face_end_row)
21697 (mouse_face_end_col, mouse_face_past_end, mouse_face_window)
21698 (mouse_face_face_id, term_gpm, pos_x, pos_y)
21699 (last_mouse_x, last_mouse_y): New variables.
21700 (term_show_mouse_face, term_clear_mouse_face, fast_find_position)
21701 (term_mouse_highlight, term_mouse_movement, term_mouse_position)
21702 (term_mouse_click, handle_one_term_event, Fterm_open_connection)
21703 (Fterm_close_connection): New functions.
21704 (term_init): Initialise mouse_face_window.
21706 2007-05-19 Chong Yidong <cyd@stupidchicken.com>
21708 * xdisp.c (redisplay_window): If first window line is a
21709 continuation line, recompute the new window start instead of
21712 2007-05-18 Glenn Morris <rgm@gnu.org>
21714 * m/alpha.h (ORDINARY_LINK): No longer define on OpenBSD.
21715 Suggested by Alfred M. Szmidt <ams@gnu.org>.
21717 2007-05-17 Glenn Morris <rgm@gnu.org>
21719 * m/macppc.h (ORDINARY_LINK): No longer define on OpenBSD.
21721 2007-05-16 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21723 * macterm.c [USE_CARBON_EVENTS] (mac_convert_event_ref): Also convert
21724 dead key repeat and up events.
21726 2007-05-14 Chong Yidong <cyd@stupidchicken.com>
21728 * image.c (pbm_load): Check image size for monochrome pbm.
21730 2007-05-13 Chong Yidong <cyd@stupidchicken.com>
21732 * xterm.c (XTread_socket): Revert last change.
21734 2007-05-12 Chong Yidong <cyd@stupidchicken.com>
21736 * image.c (pbm_load): Correctly check image size for greyscale pbm.
21738 * xterm.c (XTread_socket): Yet Another Uncaught X Error Crash (YAUXEC).
21740 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
21742 * editfns.c (Ftranspose_regions): Yet another int/Lisp_Object
21745 2007-05-07 Andreas Schwab <schwab@suse.de>
21747 * keymap.c (Flookup_key): Fix typo in last change.
21749 2007-05-07 Stefan Monnier <monnier@iro.umontreal.ca>
21751 * keymap.c (Fdefine_key, Flookup_key): Only do the 0x80->meta_modifier
21752 mapping for unibyte strings.
21754 2007-05-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21756 * macmenu.c (mac_dialog_show): Apply 2007-04-27 change for xmenu.c.
21757 (Fx_popup_dialog) [MAC_OSX]: Likewise.
21759 2007-04-29 Richard Stallman <rms@gnu.org>
21761 * insdel.c (replace_range): For undo, record insertion first.
21763 2007-04-29 Andreas Schwab <schwab@suse.de>
21765 * lisp.h (VECSIZE): Use OFFSETOF.
21767 2007-04-29 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
21769 * xdisp.c (try_window_reusing_current_matrix): Fix number of
21772 2007-04-28 Richard Stallman <rms@gnu.org>
21774 * lread.c (read_escape): In a string, \s is always space.
21776 2007-04-27 Jan Djärv <jan.h.d@swipnet.se>
21778 * xmenu.c (xdialog_show): Call Fredisplay before showing the dialog.
21780 * gtkutil.c (xg_update_menubar, create_menus): Create empty
21781 submenu for menu bar items.
21783 See ChangeLog.10 for earlier changes.
21785 ;; Local Variables:
21787 ;; add-log-time-zone-rule: t
21790 Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
21792 This file is part of GNU Emacs.
21794 GNU Emacs is free software: you can redistribute it and/or modify
21795 it under the terms of the GNU General Public License as published by
21796 the Free Software Foundation, either version 3 of the License, or
21797 (at your option) any later version.
21799 GNU Emacs is distributed in the hope that it will be useful,
21800 but WITHOUT ANY WARRANTY; without even the implied warranty of
21801 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21802 GNU General Public License for more details.
21804 You should have received a copy of the GNU General Public License
21805 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
21807 ;; arch-tag: dfb6ad96-1550-4905-9e53-d2059ee84c40