From: Adrian Robert Date: Wed, 21 Jan 2009 17:56:37 +0000 (+0000) Subject: (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame. X-Git-Tag: emacs-pretest-23.0.90~345 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e889fa0685793ecf592dcf14ba3d65d7515063da;p=emacs.git (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame. --- diff --git a/src/ChangeLog b/src/ChangeLog index 79f24287812..78be848beb6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -7,6 +7,7 @@ handle Ctrl-tab. (Bug#1841) (ns_get_color): Use unsigned long long for scanned hex string value. (ns_term_shutdown): Abort on non SIGTERM signals. + (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame. * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore DPI. (Bug#1316) diff --git a/src/nsterm.m b/src/nsterm.m index 9b89c833cd9..e34570062c8 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -6198,7 +6198,8 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag) - (IBAction)runHelp: (id)sender { Feval (Fcons (intern ("info"), - Fcons (build_string ("(ns-emacs)Preferences Panel"), Qnil))); + Fcons (build_string ("(emacs)Mac / GNUstep Customization"), + Qnil))); SET_FRAME_GARBAGED (frame); ns_send_appdefined (-1); } @@ -6208,6 +6209,7 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag) { Lisp_Object lispFrame; XSETFRAME (lispFrame, frame); + ns_raise_frame(frame); Fns_popup_color_panel (lispFrame); } @@ -6216,6 +6218,7 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag) { Lisp_Object lispFrame; XSETFRAME (lispFrame, frame); + ns_raise_frame(frame); Fns_popup_font_panel (lispFrame); }