Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2392)

Unified Diff: Source/platform/text/TextBreakIterator.cpp

Issue 1119663002: Making Unicode character names consistent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase patch Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/text/StringTruncator.cpp ('k') | Source/platform/text/UnicodeUtilities.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/text/TextBreakIterator.cpp
diff --git a/Source/platform/text/TextBreakIterator.cpp b/Source/platform/text/TextBreakIterator.cpp
index 6dce824362112a506e1f8a86fe259eaa101e0661..ec97484b4650a36532906ddba5e4b44967494ada 100644
--- a/Source/platform/text/TextBreakIterator.cpp
+++ b/Source/platform/text/TextBreakIterator.cpp
@@ -151,7 +151,7 @@ static inline bool shouldBreakAfter(UChar lastCh, UChar ch, UChar nextCh)
inline bool needsLineBreakIterator(UChar ch)
{
- return ch > asciiLineBreakTableLastChar && ch != noBreakSpace;
+ return ch > asciiLineBreakTableLastChar && ch != noBreakSpaceCharacter;
}
template<typename CharacterType>
« no previous file with comments | « Source/platform/text/StringTruncator.cpp ('k') | Source/platform/text/UnicodeUtilities.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698