aboutsummaryrefslogtreecommitdiffstats
path: root/scsh-nonstring-search-path.patch
diff options
context:
space:
mode:
Diffstat (limited to 'scsh-nonstring-search-path.patch')
-rw-r--r--scsh-nonstring-search-path.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/scsh-nonstring-search-path.patch b/scsh-nonstring-search-path.patch
deleted file mode 100644
index c79e6cc..0000000
--- a/scsh-nonstring-search-path.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/scheme/lib-dirs.scm b/scheme/lib-dirs.scm
-index a1fc009..c630fb4 100644
---- a/scheme/lib-dirs.scm
-+++ b/scheme/lib-dirs.scm
-@@ -75,6 +75,7 @@
- (let ((val (read)))
- (cond ((eof-object? val) '())
- ((string? val) (cons val (recur)))
-+ ((symbol? val) (cons (symbol->string val) (recur)))
- ((not val) (append default-lib-dirs (recur)))
- (else
- (error