From: YAMAMOTO Mitsuharu Date: Fri, 10 Feb 2006 08:35:43 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: emacs-pretest-22.0.90~4235 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cbd488c46a4a79f2879d1bfefdd70e33f19cdc56;p=emacs.git *** empty log message *** --- diff --git a/etc/ChangeLog b/etc/ChangeLog index 70295a93eeb..382a97ab50a 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog @@ -1,3 +1,7 @@ +2006-02-10 YAMAMOTO Mitsuharu + + * PROBLEMS (Mac OS X): Add QuickTime 7.0.4 / Mac OS X 10.3.9 breakage. + 2006-02-09 Mathias Dahl * 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 @@ +2006-02-10 YAMAMOTO Mitsuharu + + * frame.el (select-frame-set-input-focus): Call x-focus-frame also + when window-system is mac. + + * term/mac-win.el (fontset-standard): Rename from "fontset-mac". + 2006-02-10 Kim F. Storm * 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 @@ +2006-02-10 YAMAMOTO Mitsuharu + + * makefile.MPW (shortlisp, SOME_MACHINE_LISP): Sync with + src/Makefile.in. + 2005-12-19 YAMAMOTO Mitsuharu * 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 @@ +2006-02-10 YAMAMOTO Mitsuharu + + * macos.texi (Mac International): Rename "fontset-mac" to + "fontset-standard". + 2006-02-09 Reiner Steib * 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 @@ +2006-02-10 YAMAMOTO Mitsuharu + + * macfns.c (x_set_mouse_color): Don't call rif->define_frame_cursor + if window_desc is not set yet. + (Fx_create_frame): Remove variable x_frame_name. Apply 2005-12-07 + and 2006-01-26 changes for xfns.c. Call x_iconify_frame if frame + parameter `visibility' is `icon'. + (Fx_create_frame, x_create_tip_frame): Use "fontset-standard" + instead of "fontset-mac". + (Fx_focus_frame): New defun. + (syms_of_macfns): Defsubr it. + + * macterm.c (mac_define_frame_cursor): Don't change pointer shape + for unfocused frame. + (x_raise_frame): Call BringToFront instead of SelectWindow. + (x_lower_frame): Use NULL instead of nil. + (x_make_frame_visible): Don't call SelectWindow. + (XTread_socket): Increment handling_signal at the start, decrement + it at the end. + [USE_CG_TEXT_DRAWING] (init_cg_text_anti_aliasing_threshold): Use + CFPreferencesGetAppIntegerValue instead of Fmac_get_preference. + 2006-02-10 Kim F. Storm * data.c (Findirect_function): Add NOERROR arg. All callers changed