Changeset 67271 in webkit


Ignore:
Timestamp:
Sep 10, 2010 8:25:05 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-09-10 Fridrich Strba <fridrich.strba@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:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r67265 r67271  
     12010-09-10  Fridrich Strba  <fridrich.strba@bluewin.ch>
     2
     3        Reviewed by Andreas Kling.
     4
     5        Add a define missing when building with glib unicode backend
     6        https://bugs.webkit.org/show_bug.cgi?id=45544
     7
     8        * wtf/unicode/glib/UnicodeMacrosFromICU.h:
     9
    1102010-09-10  Stephanie Lewis  <slewis@apple.com>
    211
  • trunk/JavaScriptCore/wtf/unicode/glib/UnicodeMacrosFromICU.h

    r66363 r67271  
    3737#define U16_LEAD(supplementary) (UChar)(((supplementary)>>10)+0xd7c0)
    3838#define U16_TRAIL(supplementary) (UChar)(((supplementary)&0x3ff)|0xdc00)
     39#define U16_LENGTH(c) ((uint32_t)(c) <= 0xffff ? 1 : 2)
    3940
    4041#define U_IS_SURROGATE(c) (((c)&0xfffff800)==0xd800)
Note: See TracChangeset for help on using the changeset viewer.