fix missing spaces

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1149609 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sergey Vladimirov 2011-07-22 14:05:39 +00:00
parent 106e3e0dfe
commit 4997081f21
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ public abstract class AbstractWordConverter
// Non-required hyphens to zero-width space // Non-required hyphens to zero-width space
stringBuilder.append( UNICODECHAR_ZERO_WIDTH_SPACE ); stringBuilder.append( UNICODECHAR_ZERO_WIDTH_SPACE );
} }
else if ( charChar > 0x20 || charChar == 0x09 else if ( charChar >= 0x20 || charChar == 0x09
|| charChar == 0x0A || charChar == 0x0D ) || charChar == 0x0A || charChar == 0x0D )
{ {
stringBuilder.append( charChar ); stringBuilder.append( charChar );