diff options
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | mac/ChangeLog | 5 | ||||
| -rw-r--r-- | man/ChangeLog | 5 | ||||
| -rw-r--r-- | src/ChangeLog | 22 |
5 files changed, 43 insertions, 0 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 70295a93eeb..382a97ab50a 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * PROBLEMS (Mac OS X): Add QuickTime 7.0.4 / Mac OS X 10.3.9 breakage. | ||
| 4 | |||
| 1 | 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com> | 5 | 2006-02-09 Mathias Dahl <mathias.dahl@gmail.com> |
| 2 | 6 | ||
| 3 | * NEWS: New key bindings for Tumme in Dired. | 7 | * NEWS: New key bindings for Tumme in Dired. |
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c5810d25d59..226aba7a7ea 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * frame.el (select-frame-set-input-focus): Call x-focus-frame also | ||
| 4 | when window-system is mac. | ||
| 5 | |||
| 6 | * term/mac-win.el (fontset-standard): Rename from "fontset-mac". | ||
| 7 | |||
| 1 | 2006-02-10 Kim F. Storm <storm@cua.dk> | 8 | 2006-02-10 Kim F. Storm <storm@cua.dk> |
| 2 | 9 | ||
| 3 | * subr.el (substitute-key-definition-key): Pass t for NOERROR to | 10 | * subr.el (substitute-key-definition-key): Pass t for NOERROR to |
diff --git a/mac/ChangeLog b/mac/ChangeLog index eb58386a167..5da9f7aca76 100644 --- a/mac/ChangeLog +++ b/mac/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * makefile.MPW (shortlisp, SOME_MACHINE_LISP): Sync with | ||
| 4 | src/Makefile.in. | ||
| 5 | |||
| 1 | 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 6 | 2005-12-19 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 7 | ||
| 3 | * makefile.MPW (macselect.c.x): Depend on keymap.h. | 8 | * makefile.MPW (macselect.c.x): Depend on keymap.h. |
diff --git a/man/ChangeLog b/man/ChangeLog index 242594b1945..e48374ce6d4 100644 --- a/man/ChangeLog +++ b/man/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * macos.texi (Mac International): Rename "fontset-mac" to | ||
| 4 | "fontset-standard". | ||
| 5 | |||
| 1 | 2006-02-09 Reiner Steib <Reiner.Steib@gmx.de> | 6 | 2006-02-09 Reiner Steib <Reiner.Steib@gmx.de> |
| 2 | 7 | ||
| 3 | * gnus.texi (Gnus Versions): Add history beyond start of Oort. | 8 | * gnus.texi (Gnus Versions): Add history beyond start of Oort. |
diff --git a/src/ChangeLog b/src/ChangeLog index fd2c46ec62a..d5a57e890ef 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,25 @@ | |||
| 1 | 2006-02-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * macfns.c (x_set_mouse_color): Don't call rif->define_frame_cursor | ||
| 4 | if window_desc is not set yet. | ||
| 5 | (Fx_create_frame): Remove variable x_frame_name. Apply 2005-12-07 | ||
| 6 | and 2006-01-26 changes for xfns.c. Call x_iconify_frame if frame | ||
| 7 | parameter `visibility' is `icon'. | ||
| 8 | (Fx_create_frame, x_create_tip_frame): Use "fontset-standard" | ||
| 9 | instead of "fontset-mac". | ||
| 10 | (Fx_focus_frame): New defun. | ||
| 11 | (syms_of_macfns): Defsubr it. | ||
| 12 | |||
| 13 | * macterm.c (mac_define_frame_cursor): Don't change pointer shape | ||
| 14 | for unfocused frame. | ||
| 15 | (x_raise_frame): Call BringToFront instead of SelectWindow. | ||
| 16 | (x_lower_frame): Use NULL instead of nil. | ||
| 17 | (x_make_frame_visible): Don't call SelectWindow. | ||
| 18 | (XTread_socket): Increment handling_signal at the start, decrement | ||
| 19 | it at the end. | ||
| 20 | [USE_CG_TEXT_DRAWING] (init_cg_text_anti_aliasing_threshold): Use | ||
| 21 | CFPreferencesGetAppIntegerValue instead of Fmac_get_preference. | ||
| 22 | |||
| 1 | 2006-02-10 Kim F. Storm <storm@cua.dk> | 23 | 2006-02-10 Kim F. Storm <storm@cua.dk> |
| 2 | 24 | ||
| 3 | * data.c (Findirect_function): Add NOERROR arg. All callers changed | 25 | * data.c (Findirect_function): Add NOERROR arg. All callers changed |