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

Unified Diff: third_party/WebKit/Source/core/editing/commands/SmartReplaceICU.cpp

Issue 2397963002: Reflow comments in //third_party/WebKit/Source/core/editing/commands (Closed)
Patch Set: . Created 4 years, 2 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
Index: third_party/WebKit/Source/core/editing/commands/SmartReplaceICU.cpp
diff --git a/third_party/WebKit/Source/core/editing/commands/SmartReplaceICU.cpp b/third_party/WebKit/Source/core/editing/commands/SmartReplaceICU.cpp
index 2fcf513475ce30a9672dbc0d0da2fb8f7110636e..9017e149cd7050839279de7af79af68e5a191c87 100644
--- a/third_party/WebKit/Source/core/editing/commands/SmartReplaceICU.cpp
+++ b/third_party/WebKit/Source/core/editing/commands/SmartReplaceICU.cpp
@@ -62,14 +62,11 @@ static USet* getSmartSet(bool isPreviousCharacter) {
0x1100 + 256); // Hangul Jamo (0x1100 - 0x11FF)
uset_addRange(smartSet, 0x2E80,
0x2E80 + 352); // CJK & Kangxi Radicals (0x2E80 - 0x2FDF)
- uset_addRange(
- smartSet, 0x2FF0,
- 0x2FF0 +
- 464); // Ideograph Descriptions, CJK Symbols, Hiragana, Katakana, Bopomofo, Hangul Compatibility Jamo, Kanbun, & Bopomofo Ext (0x2FF0 - 0x31BF)
- uset_addRange(
- smartSet, 0x3200,
- 0x3200 +
- 29392); // Enclosed CJK, CJK Ideographs (Uni Han & Ext A), & Yi (0x3200 - 0xA4CF)
+ // Ideograph Descriptions, CJK Symbols, Hiragana, Katakana, Bopomofo, Hangul
+ // Compatibility Jamo, Kanbun, & Bopomofo Ext (0x2FF0 - 0x31BF)
+ uset_addRange(smartSet, 0x2FF0, 0x2FF0 + 464);
+ // Enclosed CJK, CJK Ideographs (Uni Han & Ext A), & Yi (0x3200 - 0xA4CF)
+ uset_addRange(smartSet, 0x3200, 0x3200 + 29392);
uset_addRange(smartSet, 0xAC00,
0xAC00 + 11183); // Hangul Syllables (0xAC00 - 0xD7AF)
uset_addRange(

Powered by Google App Engine
This is Rietveld 408576698