* t/ax/tap-functions.sh (diag_): Moved the space separating
`$diag_string_' from the diagnostic message to `$diag_string_' so that
callers can eliminate the space.
set +x
test $# -eq 0 || { printf %s\\n "$*" | diag_; return; }
while IFS= read -r line || test -n "$line"; do
- printf %s\\n "$diag_string_ $line"
+ printf %s\\n "$diag_string_$line"
done
)
# Used by the 'diag_' function above. User-overridable.
-diag_string_="#"
+diag_string_="# "
# warn_ [EXPLANATION]
# ------------------