From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.bugs Subject: Re: frames vs. weak hash tables and garbage collection Date: Thu, 30 Aug 2007 05:00:48 +0200 Message-ID: <871wdlhgkf.fsf@gnuvola.org> References: <86wsvdvmkb.fsf@macs.hw.ac.uk> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1188442898 15400 80.91.229.12 (30 Aug 2007 03:01:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 30 Aug 2007 03:01:38 +0000 (UTC) Cc: bug-gnu-emacs@gnu.org To: Joe Wells Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Thu Aug 30 05:01:37 2007 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IQaHo-00014O-0Q for geb-bug-gnu-emacs@m.gmane.org; Thu, 30 Aug 2007 05:01:36 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQaHn-0001QX-NT for geb-bug-gnu-emacs@m.gmane.org; Wed, 29 Aug 2007 23:01:35 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IQaHl-0001Pk-17 for bug-gnu-emacs@gnu.org; Wed, 29 Aug 2007 23:01:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IQaHi-0001O3-6L for bug-gnu-emacs@gnu.org; Wed, 29 Aug 2007 23:01:31 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQaHh-0001Ny-UL for bug-gnu-emacs@gnu.org; Wed, 29 Aug 2007 23:01:29 -0400 Original-Received: from ppp-93-35.21-151.libero.it ([151.21.35.93] helo=localhost.localdomain) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IQaHh-0007ja-7c for bug-gnu-emacs@gnu.org; Wed, 29 Aug 2007 23:01:29 -0400 Original-Received: from ttn by localhost.localdomain with local (Exim 4.63) (envelope-from ) id 1IQaH3-0001w5-0l; Thu, 30 Aug 2007 05:00:49 +0200 In-Reply-To: <86wsvdvmkb.fsf@macs.hw.ac.uk> (Joe Wells's message of "Thu\, 30 Aug 2007 02\:27\:32 +0100") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) X-Detected-Kernel: Genre and OS details not recognized. X-BeenThere: bug-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:16463 Archived-At: () Joe Wells () Thu, 30 Aug 2007 02:27:32 +0100 ;; The only reference to the new frame is now the key in the hash ;; table. Because of the weakness, this key should not keep the ;; frame alive. there's a lot of stuff going on w/ make-frame. try replacing `(make-frame)' with: (x-create-frame-with-faces) here, i see that `reproduce-bug' returns nil. what do you see? thi