[Libreoffice-commits] core.git: editeng/source

Caolán McNamara caolanm at redhat.com
Sun Aug 11 12:25:55 PDT 2013


 editeng/source/editeng/impedit2.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e7a958441a19a4e14bf12aac09fa566de0f263ee
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Sun Aug 11 20:22:47 2013 +0100

    single delimator of \xFF not four of '\0', 'x', 'F', 'F'
    
    d08a76cf72e1d1db9add8b01f4e93c4b4ba4dd15 revealed that "\0xFF" was
    always inserted as a delimator but presumably the intent was a single
    delimator of "\xFF" and not four delimators of '\0', 'x', 'F', 'F'
    
    Change-Id: I6b34c1bcd90086fd5d6fe7043fa98ef89bcb8553

diff --git a/editeng/source/editeng/impedit2.cxx b/editeng/source/editeng/impedit2.cxx
index 1503a7b..a421372 100644
--- a/editeng/source/editeng/impedit2.cxx
+++ b/editeng/source/editeng/impedit2.cxx
@@ -83,7 +83,7 @@ ImpEditEngine::ImpEditEngine( EditEngine* pEE, SfxItemPool* pItemPool ) :
     aMinAutoPaperSize( 0x0, 0x0 ),
     aMaxAutoPaperSize( 0x7FFFFFFF, 0x7FFFFFFF ),
     aEditDoc( pItemPool ),
-    aWordDelimiters("  .,;:-'`'?!_=\"{}()[]\0xFF"),
+    aWordDelimiters("  .,;:-'`'?!_=\"{}()[]\xFF"),
     bKernAsianPunctuation(false),
     bAddExtLeading(false),
     bIsFormatting(false),


More information about the Libreoffice-commits mailing list