aboutsummaryrefslogtreecommitdiff
path: root/bash/step2_eval.sh
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-05-10 15:45:36 -0500
committerJoel Martin <github@martintribe.org>2014-05-10 15:45:36 -0500
commit70aff0c1fe3d3ba7953b4e12708e91fd41fed5eb (patch)
tree88d46c8326b233c271b9884197de6266a9f45427 /bash/step2_eval.sh
parent3f26b8f601c96956029fe64e1aeac7b8b9f76911 (diff)
downloadmal-70aff0c1fe3d3ba7953b4e12708e91fd41fed5eb.tar.gz
mal-70aff0c1fe3d3ba7953b4e12708e91fd41fed5eb.zip
Bash: correctly treat commas as whitespace.
Diffstat (limited to 'bash/step2_eval.sh')
-rwxr-xr-xbash/step2_eval.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/step2_eval.sh b/bash/step2_eval.sh
index 224f181..b59320b 100755
--- a/bash/step2_eval.sh
+++ b/bash/step2_eval.sh
@@ -74,7 +74,7 @@ PRINT () {
declare -A REPL_ENV
REP () {
r=
- READ "${1}" || return 1
+ READ "${1}"
EVAL "${r}" REPL_ENV
PRINT "${r}"
}