539f8ae8df
instead of redefining the function constantly inside git-info.
7 lines
153 B
Bash
7 lines
153 B
Bash
# vim:et sts=2 sw=2 ft=zsh
|
|
# Prints the first non-empty string in the arguments array.
|
|
for arg in ${argv}; do
|
|
print -n ${arg}
|
|
return 0
|
|
done
|
|
return 1
|