1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-12-12 07:40:53 +01:00

27048: avoid multiline prints which break CSH_JUNKIE_QUOTES.

This commit is contained in:
Clint Adams 2009-06-18 14:26:43 +00:00
parent dfabf50cf1
commit a1fc66a3cd
2 changed files with 10 additions and 5 deletions

View file

@ -293,8 +293,8 @@ for file in $cap_files; do
else
print -r "Adding" >&2
fi
print -r " handler for type $type:
$line" >&2
print -r " handler for type $type:" >&2
print -r " $line" >&2
fi
type_handler_map[$type]=$line
type_flags_map[$type]=$flags
@ -305,8 +305,8 @@ for file in $cap_files; do
print -r " with flags $flags" >&2
fi
elif [[ -n $o_verbose ]]; then
print -r "Skipping handler for already defined type $type:
$line" >&2
print -r "Skipping handler for already defined type $type:" >&2
print -r " $line" >&2
if [[ -n $flags ]]; then
print -r " with flags $flags" >&2
fi