From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Kjetil S. Matheussen" Newsgroups: gmane.lisp.guile.devel Subject: Re: Segfault with do (Re: [CM] funny scheme code (fwd)) Date: Wed, 22 Jul 2009 15:58:54 +0200 (CEST) Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Trace: ger.gmane.org 1248271155 26364 80.91.229.12 (22 Jul 2009 13:59:15 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 22 Jul 2009 13:59:15 +0000 (UTC) To: guile-devel@gnu.org Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed Jul 22 15:59:08 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 1MTcLc-0001i1-D3 for guile-devel@m.gmane.org; Wed, 22 Jul 2009 15:59:08 +0200 Original-Received: from localhost ([127.0.0.1]:35138 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MTcLb-00034d-Tw for guile-devel@m.gmane.org; Wed, 22 Jul 2009 09:59:07 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MTcLX-00034S-D5 for guile-devel@gnu.org; Wed, 22 Jul 2009 09:59:03 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MTcLS-000340-7g for guile-devel@gnu.org; Wed, 22 Jul 2009 09:59:02 -0400 Original-Received: from [199.232.76.173] (port=54974 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MTcLS-00033x-2Q for guile-devel@gnu.org; Wed, 22 Jul 2009 09:58:58 -0400 Original-Received: from mail-forward2.uio.no ([129.240.10.71]:40167) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MTcLR-0007ml-8D for guile-devel@gnu.org; Wed, 22 Jul 2009 09:58:57 -0400 Original-Received: from exim by mail-out2.uio.no with local-bsmtp (Exim 4.69) (envelope-from ) id 1MTcLP-0005jz-El for guile-devel@gnu.org; Wed, 22 Jul 2009 15:58:55 +0200 Original-Received: from mail-mx1.uio.no ([129.240.10.29]) by mail-out2.uio.no with esmtp (Exim 4.69) (envelope-from ) id 1MTcLP-0005jw-DF for guile-devel@gnu.org; Wed, 22 Jul 2009 15:58:55 +0200 Original-Received: from enniscorthy.ifi.uio.no ([129.240.70.92]) by mail-mx1.uio.no with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1MTcLP-0007Gl-3q for guile-devel@gnu.org; Wed, 22 Jul 2009 15:58:55 +0200 X-X-Sender: ksvalast@enniscorthy.ifi.uio.no In-Reply-To: X-UiO-Spam-info: not spam, SpamAssassin (score=-5.0, required=5.0, autolearn=disabled, HS_INDEX_PARAM=0.001, UIO_MAIL_IS_INTERNAL=-5, uiobl=NO, uiouri=NO) X-UiO-Scanned: 7325A6DAF2737553F5F0C2D8B282B571BE4F168C X-UiO-SPAM-Test: remote_host: 129.240.70.92 spam_score: -49 maxlevel 80 minaction 2 bait 0 mail/h: 1 total 856 max/h 4 blacklist 0 greylist 0 ratelimit 0 X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 3) 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:8915 Archived-At: Ludovic Court?s: > > Hello Kjetil, > > "Kjetil S. Matheussen" writes: > >> Guile 1.8.0 segfaults as well. >> >> Here's the code ready for pasting: >> >> (let ((j (lambda () 0)) >> (k 0)) >> (do ((i (j) (j)) >> (l (lambda () 1) (lambda () (+ i 1)))) >> ((= i 3) k) >> (set! k (+ k i)))) >> >> Sorry for not having time debugging it myself right now. > > I added it to the bug tracker: http://savannah.gnu.org/bugs/?27062 . > Please follow-up there (changes are reported to anyone involved and to > `bug-guile'). > > Also, next time you find a bug, it will be even better if you submit it > to the bug tracker directly. :-) > Didn't know about the bug tracker. Thanks for the tip. :-)