about summary refs log tree commit diff
path: root/Functions/MIME
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2009-06-18 14:26:43 +0000
committerClint Adams <clint@users.sourceforge.net>2009-06-18 14:26:43 +0000
commita1fc66a3cde9c10f7ddf0f6ec301d29698a2b826 (patch)
treeed7d2994ffcf0a7174d2bc8a4fc19e982ae99359 /Functions/MIME
parentdfabf50cf1ee78d5a1849fd19409ee23150506c4 (diff)
downloadzsh-a1fc66a3cde9c10f7ddf0f6ec301d29698a2b826.tar.gz
zsh-a1fc66a3cde9c10f7ddf0f6ec301d29698a2b826.tar.xz
zsh-a1fc66a3cde9c10f7ddf0f6ec301d29698a2b826.zip
27048: avoid multiline prints which break CSH_JUNKIE_QUOTES.
Diffstat (limited to 'Functions/MIME')
-rw-r--r--Functions/MIME/zsh-mime-setup8
1 files changed, 4 insertions, 4 deletions
diff --git a/Functions/MIME/zsh-mime-setup b/Functions/MIME/zsh-mime-setup
index 59693b09a..7c2269014 100644
--- a/Functions/MIME/zsh-mime-setup
+++ b/Functions/MIME/zsh-mime-setup
@@ -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