Merge lp:~jincreator/unity/lp1251193 into lp:unity

Proposed by Jinkyu Yi
Status: Merged
Approved by: Marco Trevisan (Treviño)
Approved revision: no longer in the source branch.
Merged at revision: 3796
Proposed branch: lp:~jincreator/unity/lp1251193
Merge into: lp:unity
Diff against target: 12 lines (+1/-1)
1 file modified
dash/ResultRendererTile.cpp (+1/-1)
To merge this branch: bzr merge lp:~jincreator/unity/lp1251193
Reviewer Review Type Date Requested Status
Marco Trevisan (Treviño) Approve
Review via email: mp+218194@code.launchpad.net

Commit message

Dash: Fix problem at checking blacklisted unicode range

To post a comment you must log in.
Revision history for this message
Marco Trevisan (Treviño) (3v1n0) wrote :

Thanks, looks sane to me.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'dash/ResultRendererTile.cpp'
2--- dash/ResultRendererTile.cpp 2014-03-20 05:05:21 +0000
3+++ dash/ResultRendererTile.cpp 2014-05-03 18:20:48 +0000
4@@ -424,7 +424,7 @@
5 bool IsBlacklistedChar(gunichar uni_c)
6 {
7 if ((uni_c >= 0x1000 && uni_c <= 0x109F) ||
8- (uni_c >= 0xAA60 && uni_c >= 0xAA7B))
9+ (uni_c >= 0xAA60 && uni_c <= 0xAA7B))
10 {
11 return true;
12 }