[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 13:19:31 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 3ba190ccba019a51256bf52bcace1712b2f8da4f
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 11 03:25:05 2010 +0000

    2010-09-10  Fridrich Strba  <fridrich.strba at bluewin.ch>
    
            Reviewed by Andreas Kling.
    
            Add a define missing when building with glib unicode backend
            https://bugs.webkit.org/show_bug.cgi?id=45544
    
            * wtf/unicode/glib/UnicodeMacrosFromICU.h:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67271 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 16a84bc..5889bbd 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-10  Fridrich Strba  <fridrich.strba at bluewin.ch>
+
+        Reviewed by Andreas Kling.
+
+        Add a define missing when building with glib unicode backend
+        https://bugs.webkit.org/show_bug.cgi?id=45544
+
+        * wtf/unicode/glib/UnicodeMacrosFromICU.h:
+
 2010-09-10  Stephanie Lewis  <slewis at apple.com>
 
         Reviewed by Alexey Proskuryakov.
diff --git a/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h b/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h
index 1963576..f865ef1 100644
--- a/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h
+++ b/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h
@@ -36,6 +36,7 @@
 
 #define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0)
 #define U16_TRAIL(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00)
+#define U16_LENGTH(c) ((uint32_t)(c) <= 0xffff ? 1 : 2)
 
 #define U_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800)
 #define U16_IS_SINGLE(c) !U_IS_SURROGATE(c)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list