summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Hanson <evhan@foldling.org>2019-05-16 20:36:24 +1200
committerPeter Bex <peter@more-magic.net>2019-05-16 17:52:06 +0200
commit38e270cd2a608d75e9ca2fbc7b6cdd17d0a67da9 (patch)
treec530ee2249036f7f659e2101d724660e6cbf29c9
parent30543333552062ab2f298ccb23eee5af626ac806 (diff)
downloadscsh-process-1.5.2.tar.gz
Add missing chicken.fixnum import for `fx+ in `run` macro1.5.2
Signed-off-by: Peter Bex <peter@more-magic.net>
-rw-r--r--scsh-process.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/scsh-process.scm b/scsh-process.scm
index ddbc545..a6d4bdf 100644
--- a/scsh-process.scm
+++ b/scsh-process.scm
@@ -57,7 +57,7 @@
(cond-expand
(chicken-5 (import (chicken base) (chicken condition) (chicken io)
(chicken port) (chicken file) (chicken file posix)
- (chicken string) (chicken process)
+ (chicken fixnum) (chicken string) (chicken process)
(chicken process signal) srfi-18 llrb-fixnum-table))
(else (import chicken)
(use data-structures (rename extras (read-file read-list))