diff --git a/scsh-nonstring-search-path.patch b/scsh-nonstring-search-path.patch new file mode 100644 index 0000000..c79e6cc --- /dev/null +++ b/scsh-nonstring-search-path.patch @@ -0,0 +1,12 @@ +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