From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Hans Aberg Newsgroups: gmane.lisp.guile.user Subject: Catching Date: Mon, 22 Feb 2010 12:09:00 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit X-Trace: dough.gmane.org 1266839796 15480 80.91.229.12 (22 Feb 2010 11:56:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 22 Feb 2010 11:56:36 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Mon Feb 22 12:56:32 2010 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1NjWAM-00069M-JL for guile-user@m.gmane.org; Mon, 22 Feb 2010 12:09:30 +0100 Original-Received: from localhost ([127.0.0.1]:38141 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NjWAL-0008Ar-Hx for guile-user@m.gmane.org; Mon, 22 Feb 2010 06:09:29 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NjW9z-00089s-Sw for guile-user@gnu.org; Mon, 22 Feb 2010 06:09:07 -0500 Original-Received: from [140.186.70.92] (port=50436 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NjW9x-00088a-57 for guile-user@gnu.org; Mon, 22 Feb 2010 06:09:05 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NjW9u-0001V1-GY for guile-user@gnu.org; Mon, 22 Feb 2010 06:09:04 -0500 Original-Received: from pne-smtpout1-sn1.fre.skanova.net ([81.228.11.98]:59998) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NjW9u-0001Uu-7R for guile-user@gnu.org; Mon, 22 Feb 2010 06:09:02 -0500 Original-Received: from h131n2-fre-d2.ias.bredband.telia.com (78.72.157.131) by pne-smtpout1-sn1.fre.skanova.net (7.3.140.3) (authenticated as u26619134) id 4B5C64F7003D6616 for guile-user@gnu.org; Mon, 22 Feb 2010 12:09:01 +0100 X-Mailer: Apple Mail (2.936) X-detected-operating-system: by eggs.gnu.org: Solaris 10 (beta) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7653 Archived-At: I seem to not get the catch handler called, when using guile interactively. Might you provide a small example? Something like: (catch 'FOO (throw 'FOO "Test") (lambda (x . xt) (display x) (display " . ") (display xt))) (catch #t (throw 'FOO "Test") (lambda (x . xt) (display x) (display " . ") (display xt))) Hans