From: Karoly Lorentey Date: Sun, 12 Mar 2006 05:02:59 +0000 (+0000) Subject: Fix bizarre syntax error, probably from a baz merge bug. X-Git-Tag: emacs-pretest-23.0.90~11236^2~141^2~74 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=47f3c6b4dbed851762dca99273d78642c3794188;p=emacs.git 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 --git a/src/xfns.c b/src/xfns.c index f2d5530a39c..a350f6a7f90 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -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)