diff options
Diffstat (limited to 'module/system/repl')
-rw-r--r-- | module/system/repl/common.scm | 2 | ||||
-rw-r--r-- | module/system/repl/error-handling.scm | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/module/system/repl/common.scm b/module/system/repl/common.scm index 6c6ee2ae7..346ba990f 100644 --- a/module/system/repl/common.scm +++ b/module/system/repl/common.scm @@ -39,7 +39,7 @@ (define *version* (format #f "GNU Guile ~A -Copyright (C) 1995-2011 Free Software Foundation, Inc. +Copyright (C) 1995-2012 Free Software Foundation, Inc. Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'. This program is free software, and you are welcome to redistribute it diff --git a/module/system/repl/error-handling.scm b/module/system/repl/error-handling.scm index 2a585aaff..0e31eb941 100644 --- a/module/system/repl/error-handling.scm +++ b/module/system/repl/error-handling.scm @@ -1,6 +1,6 @@ ;;; Error handling in the REPL -;; Copyright (C) 2001, 2009, 2010, 2011 Free Software Foundation, Inc. +;; Copyright (C) 2001, 2009, 2010, 2011, 2012 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 @@ -23,6 +23,7 @@ #:use-module (system base pmatch) #:use-module (system vm trap-state) #:use-module (system repl debug) + #:use-module (ice-9 format) #:export (call-with-error-handling with-error-handling)) |