diff options
| author | YAMAMOTO Mitsuharu | 2006-06-28 08:32:03 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2006-06-28 08:32:03 +0000 |
| commit | 3ff0518335e98e98f11457adcc01040a32058101 (patch) | |
| tree | 8d6dc5ad5fb0921d6826c5ac68b4c3140dd97490 | |
| parent | 92289429a92d99d05569df6898332d07943c12ce (diff) | |
| download | emacs-3ff0518335e98e98f11457adcc01040a32058101.tar.gz emacs-3ff0518335e98e98f11457adcc01040a32058101.zip | |
*** empty log message ***
| -rw-r--r-- | lisp/ChangeLog | 9 | ||||
| -rw-r--r-- | src/ChangeLog | 25 |
2 files changed, 34 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e4a5cab6875..69bc4155c2c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * term/mac-win.el (mac-handle-font-selection): Change keys of | ||
| 4 | mac-atsu-font-table from strings to numbers. | ||
| 5 | (mac-ts-caret-position): Use also when cursor-type is nil. | ||
| 6 | (mac-ts-update-active-input-area): Add Mac OS Classic support. | ||
| 7 | Relax condition for using overlay strings. Use | ||
| 8 | mac-ts-caret-position face when cursor-type is nil. | ||
| 9 | |||
| 1 | 2006-06-26 Kim F. Storm <storm@cua.dk> | 10 | 2006-06-26 Kim F. Storm <storm@cua.dk> |
| 2 | 11 | ||
| 3 | * help.el (view-emacs-news): Declare `res' in the right let* form. | 12 | * help.el (view-emacs-news): Declare `res' in the right let* form. |
diff --git a/src/ChangeLog b/src/ChangeLog index 06c9b970833..4f38d5b25fa 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,28 @@ | |||
| 1 | 2006-06-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * mac.c [!TARGET_API_MAC_CARBON]: Don't include FixMath.h or Scrap.h. | ||
| 4 | |||
| 5 | * macfns.c (Fx_create_frame): Apply 2006-06-24 change for xfns.c. | ||
| 6 | |||
| 7 | * macgui.h (USE_MAC_TSM) [TARGET_API_MAC_CARBON]: Set default to 1. | ||
| 8 | |||
| 9 | * macterm.c (Qeql): Add extern. | ||
| 10 | (x_set_mouse_pixel_position) [MAC_OSX]: Use CGWarpMouseCursorPosition. | ||
| 11 | (fm_style_face_attributes_alist) [USE_ATSUI]: New variable. | ||
| 12 | (syms_of_macterm) [USE_ATSUI]: Initialize and staticpro it. | ||
| 13 | Change keys of Vmac_atsu_font_table from strings to numbers. | ||
| 14 | (fm_style_to_face_attributes) [USE_ATSUI]: New function. | ||
| 15 | (init_font_name_table) [USE_ATSUI]: Use it. | ||
| 16 | (saved_ts_script_language_on_focus) [USE_MAC_TSM]: New variable. | ||
| 17 | (syms_of_macterm) [USE_MAC_TSM]: Initialize and staticpro it. | ||
| 18 | [USE_MAC_TSM] (mac_tsm_resume): Restore script and language codes | ||
| 19 | only when saved_ts_script_language_on_focus coincides with | ||
| 20 | Vmac_ts_script_language_on_focus. | ||
| 21 | [USE_MAC_TSM] (mac_tsm_suspend): Save value of | ||
| 22 | Vmac_ts_script_language_on_focus to saved_ts_script_language_on_focus. | ||
| 23 | (XTread_socket) [USE_MAC_TSM]: Add Mac OS Classic support. | ||
| 24 | [USE_MAC_TSM] (mac_handle_text_input_event, init_tsm): Likewise. | ||
| 25 | |||
| 1 | 2006-06-27 Chong Yidong <cyd@stupidchicken.com> | 26 | 2006-06-27 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 27 | ||
| 3 | * editfns.c (Fdelete_field, Ffield_string, Ffield_beginning) | 28 | * editfns.c (Fdelete_field, Ffield_string, Ffield_beginning) |