~ubuntu-branches/ubuntu/trusty/guile-2.0/trusty

« back to all changes in this revision

Viewing changes to module/system/repl/error-handling.scm

  • Committer: Package Import Robot
  • Author(s): Rob Browning
  • Date: 2012-02-04 11:33:28 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120204113328-op7l4os5fo5f8mm3
Tags: 2.0.5+1-1
* Incorporate upstream version 2.0.5.

* Delete 0001-Fix-the-SRFI-60-copy-bit-documentation.patch,
  0002-Define-_GNU_SOURCE-to-fix-the-GNU-kFreeBSD-build.patch, and
  0003-Include-gc.h-rather-than-gc-gc_version.h-in-pthread-.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; Error handling in the REPL
2
2
 
3
 
;; Copyright (C) 2001, 2009, 2010, 2011 Free Software Foundation, Inc.
 
3
;; Copyright (C) 2001, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
4
4
 
5
5
;; This library is free software; you can redistribute it and/or
6
6
;; modify it under the terms of the GNU Lesser General Public
23
23
  #:use-module (system base pmatch)
24
24
  #:use-module (system vm trap-state)
25
25
  #:use-module (system repl debug)
 
26
  #:use-module (ice-9 format)
26
27
  #:export (call-with-error-handling
27
28
            with-error-handling))
28
29