From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Re: Porting GNU Projects - Guile Date: Thu, 30 Jul 2009 20:54:09 +0100 Message-ID: <87skgex7z2.fsf@arudy.ossau.uklinux.net> References: <24721426.post@talk.nabble.com> <157104.97661.qm@web37903.mail.mud.yahoo.com> <24731881.post@talk.nabble.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1248983725 26551 80.91.229.12 (30 Jul 2009 19:55:25 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 30 Jul 2009 19:55:25 +0000 (UTC) Cc: Guile-devel@gnu.org To: bornlibra23 Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Jul 30 21:54:57 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MWbiK-0000iL-Ad for guile-devel@m.gmane.org; Thu, 30 Jul 2009 21:54:56 +0200 Original-Received: from localhost ([127.0.0.1]:42105 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWbiJ-0004Uo-QN for guile-devel@m.gmane.org; Thu, 30 Jul 2009 15:54:55 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MWbiG-0004UJ-Mv for guile-devel@gnu.org; Thu, 30 Jul 2009 15:54:52 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MWbiC-0004To-DR for Guile-devel@gnu.org; Thu, 30 Jul 2009 15:54:52 -0400 Original-Received: from [199.232.76.173] (port=38946 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MWbiC-0004Tl-Ao for Guile-devel@gnu.org; Thu, 30 Jul 2009 15:54:48 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:40909) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MWbiB-0003Qf-VN for Guile-devel@gnu.org; Thu, 30 Jul 2009 15:54:48 -0400 Original-Received: from arudy (host86-152-99-133.range86-152.btcentralplus.com [86.152.99.133]) by mail3.uklinux.net (Postfix) with ESMTP id B583A1F6A03; Thu, 30 Jul 2009 20:54:10 +0100 (BST) Original-Received: from arudy.ossau.uklinux.net (arudy [127.0.0.1]) by arudy (Postfix) with ESMTP id D81C83801F; Thu, 30 Jul 2009 20:54:09 +0100 (BST) In-Reply-To: <24731881.post@talk.nabble.com> (bornlibra's message of "Wed\, 29 Jul 2009 21\:10\:02 -0700 \(PDT\)") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.4-2.6 X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:8988 Archived-At: bornlibra23 writes: > Thanks Mike for the heads up but the problem I think is with the source code > itself. I get the same error on linux though it doesnt die there. I > preprocessed the code & changed the line like so : >>>From (((((ch) == ' ' | (ch) == '\t') to (((((ch) == ' ' || (ch) == '\t') > (note the or operator) & the problem went away but then I had the mentioned > problem. I will build it again & get back to you. My build log seems to be > dated. FWIW this is fixed in Guile's master branch: #ifdef HAVE_ISBLANK # define CSET_BLANK_PRED(c) (isblank (c)) #else # define CSET_BLANK_PRED(c) \ (((c) == ' ') || ((c) == '\t')) #endif I guess it was missed for a long time because it is rare to have an OS that doesn't provide isblank(). Regards, Neil