Fix a formatting bug introduced in cdb95f8

This commit is contained in:
Sorin Ionescu 2012-03-22 21:26:30 -04:00
commit 5e5a7803b6
3 changed files with 15 additions and 11 deletions

View file

@ -17,7 +17,7 @@ function is-true() {
# Prints the first non-empty string in the arguments array.
function coalesce() {
for arg in "$argv[@]"; do
for arg in $argv; do
print "$arg"
return 0
done