]> git.eshelyaron.com Git - emacs.git/commitdiff
h* xfns.c (x_create_tip_frame): Removed setting of Vx_resource_name so
authorJan Djärv <jan.h.d@swipnet.se>
Fri, 18 Mar 2005 21:20:55 +0000 (21:20 +0000)
committerJan Djärv <jan.h.d@swipnet.se>
Fri, 18 Mar 2005 21:20:55 +0000 (21:20 +0000)
that it doesn't become "tooltip".  The specbind is enough.

src/ChangeLog
src/xfns.c

index 2727a6dfafdec268681e7714aa2964e01126e21d..92be15873c0f38d21298e9b50916958cbe6d35d8 100644 (file)
@@ -1,7 +1,7 @@
 2005-03-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
 
-       * 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.
index 603a948a372ae4a5d2d8a12880b1af83f1314026..34e474c7f0ce8553848c08c2609b6eb535eccb96 100644 (file)
@@ -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);