diff options
author | P. J. McDermott <pj@pehjota.net> | 2016-02-28 00:42:05 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2016-02-28 00:42:05 (EST) |
commit | f7814a37b5bfa1f51cba8c7fd554d53b48dd668b (patch) | |
tree | b458c67f5194745d6600c55f673f0e569de3960b /eshtrans | |
parent | 4252eb7bcb7d8f1c60bd2384655d46b747864997 (diff) | |
download | eggshell-f7814a37b5bfa1f51cba8c7fd554d53b48dd668b.zip eggshell-f7814a37b5bfa1f51cba8c7fd554d53b48dd668b.tar.gz eggshell-f7814a37b5bfa1f51cba8c7fd554d53b48dd668b.tar.bz2 |
eshtrans/frontend: Drop extra scan_word() argument
Diffstat (limited to 'eshtrans')
-rw-r--r-- | eshtrans/frontend/lexer.esh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eshtrans/frontend/lexer.esh b/eshtrans/frontend/lexer.esh index d6e9271..75f02c8 100644 --- a/eshtrans/frontend/lexer.esh +++ b/eshtrans/frontend/lexer.esh @@ -704,7 +704,7 @@ scan_wordexp_param_brace() # If a modification was found if ${mod}; then # Get word. - if ! res="$(scan_word true '')"; then + if ! res="$(scan_word true)"; then exit 1 fi ln_off=${res%%${RS}*} |