From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Zelphir Kaltstahl Newsgroups: gmane.lisp.guile.user Subject: Re: Exception handling - symbol for encoding exception type? Date: Thu, 7 Apr 2022 21:39:07 +0000 Message-ID: <90acfe56-eb85-47f4-a981-5346cdf8f739@posteo.de> References: <18366d41-ee52-9122-997e-cd18b04ece3f@posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="29420"; mail-complaints-to="usenet@ciao.gmane.io" Cc: guile-user To: Maxime Devos Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Thu Apr 07 23:39:46 2022 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ncZr0-0007Qn-9V for guile-user@m.gmane-mx.org; Thu, 07 Apr 2022 23:39:46 +0200 Original-Received: from localhost ([::1]:49850 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ncZqz-0006kn-2q for guile-user@m.gmane-mx.org; Thu, 07 Apr 2022 17:39:45 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:42316) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ncZqU-0006kN-BJ for guile-user@gnu.org; Thu, 07 Apr 2022 17:39:14 -0400 Original-Received: from mout01.posteo.de ([185.67.36.65]:34467) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ncZqS-0005Wx-7I for guile-user@gnu.org; Thu, 07 Apr 2022 17:39:14 -0400 Original-Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CF9B7240027 for ; Thu, 7 Apr 2022 23:39:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1649367548; bh=8D0uWfmVxGUZKexEEaiNiolVkrkmslUjGgoR+/GaGQ8=; h=Date:Subject:To:Cc:From:From; b=HHaw9Bv7ecLVwEKYInRb540NkYSFXkiTpir1SFJFgIV8Nh03KArpmlW1lAEKWHyJB eb7AHlVrg+1CbnYv44WNU8WEgTYGWnSL8urCQ1xlwH6ar7XSzMGWywaEkJSpJpTQ5+ KwRYOXcNAX/b3m4vqJbhaRw8+vAH83UQQVLMe+UOhJNtaYknBc6rgqGHK2kjmdB6VB /lgQb5mBanBS1fpCsNzyEy/uM6EX57j6ItlXNpGDRXYWGhXEFq8kAIx6rEGgxRu9W/ BdgLtkQeUKnoT3M4UXneTwOuB7ehxOrMV/TIytKFRbLtG1P8QNPYtteN21uqWEMYso Y46kR1tU/TZwQ== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4KZFBg6p2zz6tnd; Thu, 7 Apr 2022 23:39:07 +0200 (CEST) Content-Language: en-US In-Reply-To: Received-SPF: pass client-ip=185.67.36.65; envelope-from=zelphirkaltstahl@posteo.de; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:18237 Archived-At: Hi Maxime! On 3/8/22 19:20, Maxime Devos wrote: > Zelphir Kaltstahl schreef op di 08-03-2022 om 17:11 [+0000]: >>        (make-non-continuable-error) > IIRC, 'make-non-continuable-error' indicates that someone tried to > continue into a raise-exception that wasn't continuable. It does not > make things non-continuable, it just states that someone tried to > continue anyway. > > What you seem to need is (raise-exception ... #:continuable? #false). > However, #:continuable? #false is the default. > > Greetings, > Maxime. I am late, but I finally get around to it: Thanks for this hint and explanation. Best regards, Zelphir -- repositories: https://notabug.org/ZelphirKaltstahl