;;;; Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2014 ;;;; Free Software Foundation, Inc. ;;;; ;;;; This library is free software; you can redistribute it and/or ;;;; modify it under the terms of the GNU Lesser General Public ;;;; License as published by the Free Software Foundation; either ;;;; version 3 of the License, or (at your option) any later version. ;;;; ;;;; This library is distributed in the hope that it will be useful, ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;;;; Lesser General Public License for more details. ;;;; ;;;; You should have received a copy of the GNU Lesser General Public ;;;; License along with this library; if not, write to the Free Software ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;;;; (define-module (ice-9 scm-style-repl) #:use-module (ice-9 save-stack) #:export (scm-repl-silent scm-repl-print-unspecified scm-repl-verbose scm-repl-prompt assert-repl-silence assert-repl-print-unspecified assert-repl-verbosity default-pre-unwind-handler bad-throw error-catching-loop error-catching-repl scm-style-repl handle-system-error)) (define scm-repl-silent #f) (define (assert-repl-silence v) (set! scm-repl-silent v)) (define scm-repl-print-unspecified #f) (define (assert-repl-print-unspecified v) (set! scm-repl-print-unspecified v)) (define scm-repl-verbose #f) (define (assert-repl-verbosity v) (set! scm-repl-verbose v)) (define scm-repl-prompt "guile> ")