From 47f3c6b4dbed851762dca99273d78642c3794188 Mon Sep 17 00:00:00 2001 From: Karoly Lorentey Date: Sun, 12 Mar 2006 05:02:59 +0000 Subject: [PATCH] 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 --- src/xfns.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.5