# HG changeset patch # User Karoly Lorentey # Date 1142139779 0 # Node ID 16813e8005ced3e7cdbc0a161c61b034a6b66ebe # Parent 0cdee8b991e1ae4bf26870de20777ce2baacdcf2 Fix bizarre syntax error, probably from a baz merge bug. * src/xfns.c (x_create_tip_frame): Fix syntax error. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-531 diff -r 0cdee8b991e1 -r 16813e8005ce src/xfns.c --- a/src/xfns.c Sun Mar 12 04:51:49 2006 +0000 +++ b/src/xfns.c Sun Mar 12 05:02:59 2006 +0000 @@ -4610,7 +4610,6 @@ 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 @@ 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)