From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Johannes Weiner Newsgroups: gmane.emacs.devel Subject: [BUG] Finternal_merge_in_global_face segfault Date: Sat, 05 Jul 2008 13:34:31 +0000 Message-ID: <877ic0cv4o.fsf@saeurebad.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1215275454 24805 80.91.229.12 (5 Jul 2008 16:30:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 5 Jul 2008 16:30:54 +0000 (UTC) Cc: Emacs Development Mailing List To: Chong Yidong Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 05 18:31:41 2008 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 1KFAfk-000226-DQ for ged-emacs-devel@m.gmane.org; Sat, 05 Jul 2008 18:31:40 +0200 Original-Received: from localhost ([127.0.0.1]:53480 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KFAet-00078Y-9S for ged-emacs-devel@m.gmane.org; Sat, 05 Jul 2008 12:30:47 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KFAcM-0005nC-5H for emacs-devel@gnu.org; Sat, 05 Jul 2008 12:28:10 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KFAcJ-0005k3-UV for emacs-devel@gnu.org; Sat, 05 Jul 2008 12:28:09 -0400 Original-Received: from [199.232.76.173] (port=33744 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KFAcI-0005j2-I0 for emacs-devel@gnu.org; Sat, 05 Jul 2008 12:28:06 -0400 Original-Received: from mx20.gnu.org ([199.232.41.8]:22139) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KFAcI-0000Kv-7g for emacs-devel@gnu.org; Sat, 05 Jul 2008 12:28:06 -0400 Original-Received: from saeurebad.de ([85.214.36.134]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KF7vr-0002Rw-SS for emacs-devel@gnu.org; Sat, 05 Jul 2008 09:36:08 -0400 Original-Received: by saeurebad.de (Postfix, from userid 107) id 6DCDE4A0008; Sat, 5 Jul 2008 15:36:05 +0200 (CEST) Original-Received: from localhost (83-221-68-40.dynamic.primacom.net [83.221.68.40]) by saeurebad.de (Postfix) with ESMTP id 08F494A0002; Sat, 5 Jul 2008 15:36:04 +0200 (CEST) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.1.3 X-detected-kernel: by mx20.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-detected-kernel: by monty-python.gnu.org: 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:100369 Archived-At: Hi, this change 2008-06-30 Chong Yidong * xfaces.c (Finternal_merge_in_global_face): If default face was modified, realize it again. Update the font face attribute. makes Emacs segfault in batch mode. The culprit is the bcopy(oldface->lface, ...) according to the stacktrace. I couldn't get gdb to let me inspect oldface (any hints?). Reverting this change works for me. Hannes