From: Jan Djärv Date: Fri, 18 Mar 2005 21:20:55 +0000 (+0000) Subject: h* xfns.c (x_create_tip_frame): Removed setting of Vx_resource_name so X-Git-Tag: ttn-vms-21-2-B4~1704 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9188be47894513f5bb58b58ed619d9f5de14ec38;p=emacs.git h* xfns.c (x_create_tip_frame): Removed setting of Vx_resource_name so that it doesn't become "tooltip". The specbind is enough. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2727a6dfafd..92be15873c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,7 +1,7 @@ 2005-03-18 Jan Dj,Ad(Brv - * xfns.c (Fx_create_frame): Removed setting of Vx_resource_name so - that it doesn't become "tooltip". The specbind is enough. + * xfns.c (x_create_tip_frame): Removed setting of Vx_resource_name so + that it doesn't become "tooltip". The specbind is enough. * xrdb.c (x_load_resources): Use different char *helv when I18N is present. diff --git a/src/xfns.c b/src/xfns.c index 603a948a372..34e474c7f0c 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -4602,9 +4602,6 @@ x_create_tip_frame (dpyinfo, parms, text) check_x (); - /* Use this general default value to start with until we know if - this frame has a specified name. */ - Vx_resource_name = Vinvocation_name; #ifdef MULTI_KBOARD kb = dpyinfo->kboard; @@ -4618,7 +4615,6 @@ x_create_tip_frame (dpyinfo, parms, text) && !EQ (name, Qunbound) && !NILP (name)) error ("Invalid frame name--not a string or nil"); - Vx_resource_name = name; frame = Qnil; GCPRO3 (parms, name, frame);