aboutsummaryrefslogtreecommitdiff
path: root/module/exceptions.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@hornquist.se>2019-04-25 11:39:38 +0200
committerHugo Hörnquist <hugo@hornquist.se>2019-04-25 11:39:49 +0200
commit2d78e18454545801fbf3ac02c1d32ea68ef65de2 (patch)
tree96cd2d971f0369b4af2eef0c5dab475624b7c30f /module/exceptions.scm
parentRemove take-drop-while, span already in SRFI-1. (diff)
downloadcalp-2d78e18454545801fbf3ac02c1d32ea68ef65de2.tar.gz
calp-2d78e18454545801fbf3ac02c1d32ea68ef65de2.tar.xz
Clean up util and move exceptions.
Diffstat (limited to 'module/exceptions.scm')
-rw-r--r--module/exceptions.scm5
1 files changed, 0 insertions, 5 deletions
diff --git a/module/exceptions.scm b/module/exceptions.scm
deleted file mode 100644
index 027c75ee..00000000
--- a/module/exceptions.scm
+++ /dev/null
@@ -1,5 +0,0 @@
-(define-module (exceptions)
- #:export (throw-returnable))
-
-(define-syntax-rule (throw-returnable symb args ...)
- (call/cc (lambda (cont) (throw symb cont args ...))))