From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Barry Fishman Newsgroups: gmane.emacs.devel Subject: alloc.c problem when GC_MARK_STACK is GC_USE_GCPROS_AS_BEFORE Date: Tue, 06 Jul 2004 18:37:43 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1089153638 9705 80.91.224.253 (6 Jul 2004 22:40:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 6 Jul 2004 22:40:38 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Wed Jul 07 00:40:32 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1Bhyc4-00079X-00 for ; Wed, 07 Jul 2004 00:40:32 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1Bhyc4-0003IE-00 for ; Wed, 07 Jul 2004 00:40:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bhye6-00076p-EG for emacs-devel@quimby.gnus.org; Tue, 06 Jul 2004 18:42:38 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bhye2-000760-N3 for emacs-devel@gnu.org; Tue, 06 Jul 2004 18:42:34 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bhye1-00074t-0y for emacs-devel@gnu.org; Tue, 06 Jul 2004 18:42:34 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bhye0-00074o-U4 for emacs-devel@gnu.org; Tue, 06 Jul 2004 18:42:32 -0400 Original-Received: from [80.91.224.249] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bhybk-0003s1-HG for emacs-devel@gnu.org; Tue, 06 Jul 2004 18:40:12 -0400 Original-Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1Bhybj-0005BJ-00 for ; Wed, 07 Jul 2004 00:40:11 +0200 Original-Received: from 249.orlando-06-08rs.fl.dial-access.att.net ([12.78.46.249]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 07 Jul 2004 00:40:11 +0200 Original-Received: from barry_fishman by 249.orlando-06-08rs.fl.dial-access.att.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 07 Jul 2004 00:40:11 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 11 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 249.orlando-06-08rs.fl.dial-access.att.net User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:J3cGD8Y1idIeq/d4c0fguT7Jhcg= 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: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:25512 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:25512 Building the CVS head on a adm64 running SuSE Linux 9.1, linking fails with missing function mark_maybe_object(). This is due to a problem in alloc.c. The static function mark_maybe_object() is not defined when GC_MARK_STACK is zero but is still used in mark_object() for 'case Lisp_Misc_Save_Value:'. I don't understand the code well enough to suggest a patch. -- Barry Fishman