diff options
| author | YAMAMOTO Mitsuharu | 2006-06-03 02:34:35 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-06-03 02:34:35 +0000 |
| commit | fabcf455104c1fed5db99510ac2bec2aad6018b7 (patch) | |
| tree | 731f9c0f51d7491a6d0aac10f274b5c49530c26e | |
| parent | ae674cef6cc7670fafbd7ade69a9d79814abb706 (diff) | |
| download | emacs-fabcf455104c1fed5db99510ac2bec2aad6018b7.tar.gz emacs-fabcf455104c1fed5db99510ac2bec2aad6018b7.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 23 | ||||
| -rw-r--r-- | src/ChangeLog | 28 |
2 files changed, 51 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2d24de2c4ce..9d4a6d0de47 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * term/mac-win.el (mac-ts-active-input-overlay): Add defvar. | ||
| 4 | (mac-ae-number, mac-ae-frame, mac-ae-script-language) | ||
| 5 | (mac-bytes-to-text-range, mac-ae-text-range-array) | ||
| 6 | (mac-ts-update-active-input-buf, mac-split-string-by-property-change) | ||
| 7 | (mac-replace-untranslated-utf-8-chars, mac-ts-update-active-input-area) | ||
| 8 | (mac-ts-unicode-for-key-event): New functions. | ||
| 9 | (mac-handle-toolbar-switch-mode): Use mac-ae-frame. | ||
| 10 | (mac-handle-font-selection): Use mac-ae-number. | ||
| 11 | (mac-ts-active-input-buf, mac-ts-update-active-input-area-seqno): | ||
| 12 | New variables. | ||
| 13 | (mac-ts-caret-position, mac-ts-raw-text, mac-ts-selected-raw-text) | ||
| 14 | (mac-ts-converted-text, mac-ts-selected-converted-text) | ||
| 15 | (mac-ts-block-fill-text, mac-ts-outline-text) | ||
| 16 | (mac-ts-selected-text, mac-ts-no-hilite): New faces. | ||
| 17 | (mac-ts-hilite-style-faces): New constant. | ||
| 18 | (mac-apple-event-map): Bind text input events. | ||
| 19 | (mac-dispatch-apple-event): Use command-execute instead of | ||
| 20 | call-interactively. | ||
| 21 | (global-map): Don't bind mac-apple-event. | ||
| 22 | (special-event-map): Bind mac-apple-event. | ||
| 23 | |||
| 1 | 2006-06-02 Eli Zaretskii <eliz@gnu.org> | 24 | 2006-06-02 Eli Zaretskii <eliz@gnu.org> |
| 2 | 25 | ||
| 3 | * makefile.w32-in (EMACS): Remove quotes from the Emacs executable | 26 | * makefile.w32-in (EMACS): Remove quotes from the Emacs executable |
diff --git a/src/ChangeLog b/src/ChangeLog index 27040e76822..31e235c65cc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,31 @@ | |||
| 1 | 2006-06-03 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * macfns.c (x_set_icon_name): Apply 2006-06-02 change for xfns.c. | ||
| 4 | |||
| 5 | * macgui.h (USE_MAC_TSM): Set default to 1 on Mac OS X. | ||
| 6 | |||
| 7 | * macterm.c (tsm_document_id) [USE_MAC_TSM]: New variable. | ||
| 8 | (Qtext_input, Qupdate_active_input_area, Qunicode_for_key_event) | ||
| 9 | [USE_MAC_TSM]: Likewise. | ||
| 10 | (syms_of_macterm) [USE_MAC_TSM]: Intern and staticpro them. | ||
| 11 | (Qbefore_string) [USE_MAC_TSM]: Add extern. | ||
| 12 | (do_app_resume, do_app_suspend) [USE_MAC_TSM]: Call | ||
| 13 | ActivateTSMDocument/DeactivateTSMDocument. | ||
| 14 | (mac_store_event_ref_as_apple_event): Call mac_post_mouse_moved_event. | ||
| 15 | (mac_handle_window_event) [USE_MAC_TSM]: Handle | ||
| 16 | kEventWindowFocusAcquired/kEventWindowFocusRelinquish. | ||
| 17 | (mac_handle_text_input_event) [USE_MAC_TSM]: New function. | ||
| 18 | (install_window_handler) [USE_MAC_TSM]: Install it. Register | ||
| 19 | kEventWindowFocusAcquired/kEventWindowFocusRelinquish. | ||
| 20 | (keycode_to_xkeysym_table): Add entry for f16. | ||
| 21 | (XTread_socket) [USE_MAC_TSM]: Set/reset read_socket_inev | ||
| 22 | before/after passing keystroke event to toolbox dispatcher. | ||
| 23 | (init_tsm) [USE_MAC_TSM]: New function. | ||
| 24 | (mac_initialize) [USE_MAC_TSM]: Call it. | ||
| 25 | (Vmac_ts_active_input_overlay) [USE_MAC_TSM]: New defvar. | ||
| 26 | |||
| 27 | * macterm.h (EVENT_PARAM_TEXT_INPUT_SEQUENCE_NUMBER): New enumerator. | ||
| 28 | |||
| 1 | 2006-06-02 John Paul Wallington <jpw@gnu.org> | 29 | 2006-06-02 John Paul Wallington <jpw@gnu.org> |
| 2 | 30 | ||
| 3 | * xfns.c (x_set_name_internal): Set icon to `text', derived from | 31 | * xfns.c (x_set_name_internal): Set icon to `text', derived from |