From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David PONCE Newsgroups: gmane.emacs.pretest.bugs,gmane.emacs.devel Subject: Re: Problem with tooltip frame parameters Date: Fri, 10 Mar 2006 16:31:28 +0100 (CET) Message-ID: <32863016.1142004688191.JavaMail.www@wwinf1620> Reply-To: david.ponce@wanadoo.fr NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1142010617 21108 80.91.229.2 (10 Mar 2006 17:10:17 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 10 Mar 2006 17:10:17 +0000 (UTC) Cc: david@dponce.com, emacs-devel@gnu.org Original-X-From: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Fri Mar 10 18:10:15 2006 Return-path: Envelope-to: gebp-emacs-pretest-bug@gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FHl75-0000dE-98 for gebp-emacs-pretest-bug@gmane.org; Fri, 10 Mar 2006 18:09:16 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FHl73-0005WL-SN for gebp-emacs-pretest-bug@gmane.org; Fri, 10 Mar 2006 12:09:13 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FHl6o-0005Tn-1f for emacs-pretest-bug@gnu.org; Fri, 10 Mar 2006 12:08:58 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FHl6k-0005Qa-CX for emacs-pretest-bug@gnu.org; Fri, 10 Mar 2006 12:08:57 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FHk6a-00024o-Ra for emacs-pretest-bug@gnu.org; Fri, 10 Mar 2006 11:04:40 -0500 Original-Received: from [193.252.23.89] (helo=smtp16.wanadoo.fr) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FHjdm-0004Eu-Ve for emacs-pretest-bug@gnu.org; Fri, 10 Mar 2006 10:34:55 -0500 Original-Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf1601.wanadoo.fr (SMTP Server) with ESMTP id 3BE267000094 for ; Fri, 10 Mar 2006 16:31:28 +0100 (CET) Original-Received: from wwinf1620 (wwinf1620 [172.22.147.44]) by mwinf1601.wanadoo.fr (SMTP Server) with ESMTP id 30B837000084; Fri, 10 Mar 2006 16:31:28 +0100 (CET) X-ME-UUID: 20060310153128199.30B837000084@mwinf1601.wanadoo.fr Original-To: emacs-pretest-bug@gnu.org X-Originating-IP: [205.167.7.18] X-Wum-Nature: EMAIL-NATURE X-WUM-FROM: |~| X-WUM-TO: |~| X-WUM-CC: |~||~| X-WUM-REPLYTO: |~| X-BeenThere: emacs-pretest-bug@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for CVS Emacs." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Errors-To: emacs-pretest-bug-bounces+gebp-emacs-pretest-bug=gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.pretest.bugs:11357 gmane.emacs.devel:51429 Archived-At: Just to say that I solved the problem with the patch below, inspired from what `x_create_frame' already does. David 2006-03-10 David Ponce * xfns.c (x_create_tip_frame): Preserve received parms. Index: src/xfns.c =================================================================== RCS file: /sources/emacs/emacs/src/xfns.c,v retrieving revision 1.661 diff -u -r1.661 xfns.c --- src/xfns.c 27 Feb 2006 03:35:31 -0000 1.661 +++ src/xfns.c 10 Mar 2006 15:24:35 -0000 @@ -4637,6 +4637,7 @@ check_x (); + parms = Fcopy_alist (parms); #ifdef MULTI_KBOARD kb = dpyinfo->kboard;