1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 22:11:54 +02: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

@ -1,3 +1,8 @@
2009-06-18 Clint Adams <clint@zsh.org>
* 27048: Functions/MIME/zsh-mime-setup: avoid multiline prints
which break CSH_JUNKIE_QUOTES.
2009-06-05 Peter Stephenson <pws@csr.com>
* 27305: Functions/Misc/run-help: use POSIXLY_CORRECT with man
@ -11837,5 +11842,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.4714 $
* $Revision: 1.4715 $
*****************************************************

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