]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix bizarre syntax error, probably from a baz merge bug.
authorKaroly Lorentey <lorentey@elte.hu>
Sun, 12 Mar 2006 05:02:59 +0000 (05:02 +0000)
committerKaroly Lorentey <lorentey@elte.hu>
Sun, 12 Mar 2006 05:02:59 +0000 (05:02 +0000)
* src/xfns.c (x_create_tip_frame): Fix syntax error.

git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-531

src/xfns.c

index f2d5530a39c7e4164bc6ca8d485e96a90d7a7fac..a350f6a7f9092a152f712b476662270f94072ff1 100644 (file)
@@ -4610,7 +4610,6 @@ unwind_create_tip_frame (frame)
   return deleted;
 }
 
-  parms = Fcopy_alist (parms);
 
 /* Create a frame for a tooltip on the display described by DPYINFO.
    PARMS is a list of frame parameters.  TEXT is the string to
@@ -4639,6 +4638,8 @@ x_create_tip_frame (dpyinfo, parms, text)
 
   check_x ();
 
+  parms = Fcopy_alist (parms);
+
   /* Get the name of the frame to use for resource lookup.  */
   name = x_get_arg (dpyinfo, parms, Qname, "name", "Name", RES_TYPE_STRING);
   if (!STRINGP (name)