From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: 22.1.1; Frame title no more updated after calling `set-frame-configuration' Date: Fri, 07 Sep 2007 18:52:35 -0400 Message-ID: References: <46D7FD30.8020205@gmx.at> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1189205588 7127 80.91.229.12 (7 Sep 2007 22:53:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 7 Sep 2007 22:53:08 +0000 (UTC) Cc: emacs-devel@gnu.org To: martin rudalics Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 08 00:53:08 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1ITmhC-0006PU-Fs for ged-emacs-devel@m.gmane.org; Sat, 08 Sep 2007 00:53:02 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ITmhA-0005JA-Hf for ged-emacs-devel@m.gmane.org; Fri, 07 Sep 2007 18:53:00 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ITmh7-0005HH-IB for emacs-devel@gnu.org; Fri, 07 Sep 2007 18:52:57 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ITmh5-0005EP-WD for emacs-devel@gnu.org; Fri, 07 Sep 2007 18:52:57 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ITmh5-0005EF-R8 for emacs-devel@gnu.org; Fri, 07 Sep 2007 18:52:55 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1ITmh5-0007jI-HR for emacs-devel@gnu.org; Fri, 07 Sep 2007 18:52:55 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.60) (envelope-from ) id 1ITmgl-0005Yb-Jo; Fri, 07 Sep 2007 18:52:35 -0400 X-Spook: Blowpipe 22nd SAS Exon Shell Qaddafi Cohiba AMW MD2 DES X-Ran: ]Axe4V~nWCuMGM>Ki (Glenn Morris's message of "Thu, 06 Sep 2007 23:53:10 -0400") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-Detected-Kernel: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:78206 Archived-At: Glenn Morris wrote: > martin rudalics wrote: > >> Could you try the patch below (against EMACS_22_BASE)? > > After applying this, > > emacs -Q --eval '(set-frame-configuration (current-frame-configuration))' > > segfaults in x_set_frame_parameters. Seems (?) to work ok with the following extra change: *** frame.c 25 Jul 2007 05:15:52 -0000 1.340.2.1 --- frame.c 7 Sep 2007 22:51:56 -0000 *** 2768,2773 **** --- 2770,2778 ---- icon_top = val; else if (EQ (prop, Qicon_left)) icon_left = val; + else if (EQ (prop, Qexplicit_name)) + /* Handled elsewhere. */ + continue; else if (EQ (prop, Qforeground_color) || EQ (prop, Qbackground_color) || EQ (prop, Qfont)