Skip to content

Commit

Permalink
Merge r241998 - Unreviewed, fix find/replace error from r232178
Browse files Browse the repository at this point in the history
Looks like this was the only such error in that commit.

* wtf/URLHelpers.cpp:
(WTF::URLHelpers::isLookalikeCharacter):
  • Loading branch information
mcatanzaro authored and carlosgcampos committed Mar 5, 2019
1 parent 55116ff commit a8306ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions Source/WTF/ChangeLog
@@ -1,3 +1,12 @@
2019-02-23 Michael Catanzaro <mcatanzaro@igalia.com>

Unreviewed, fix find/replace error from r232178

Looks like this was the only such error in that commit.

* wtf/URLHelpers.cpp:
(WTF::URLHelpers::isLookalikeCharacter):

2019-02-23 Mark Lam <mark.lam@apple.com>

Add an exception check and some assertions in StringPrototype.cpp.
Expand Down
4 changes: 2 additions & 2 deletions Source/WTF/wtf/URLHelpers.cpp
Expand Up @@ -180,8 +180,8 @@ static bool isLookalikeCharacter(const Optional<UChar32>& previousCodePoint, UCh
case 0x233F: /* APL FUNCTIONAL SYMBOL SLASH BAR */
case 0x23AE: /* INTEGRAL EXTENSION */
case 0x244A: /* OCR DOUBLE BACKSLASH */
case 0x2571: /* DisplayType::Box DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT */
case 0x2572: /* DisplayType::Box DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT */
case 0x2571: /* BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT */
case 0x2572: /* BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT */
case 0x29F6: /* SOLIDUS WITH OVERBAR */
case 0x29F8: /* BIG SOLIDUS */
case 0x2AFB: /* TRIPLE SOLIDUS BINARY RELATION */
Expand Down

0 comments on commit a8306ab

Please sign in to comment.