exclude >= from being recognized as quote

This commit is contained in:
Daniel Gultsch 2017-04-07 14:30:30 +02:00
parent 56f202d4b8
commit cc1aa9e431
1 changed files with 6 additions and 1 deletions

View File

@ -231,7 +231,8 @@ public class UIHelper {
public static boolean isPositionFollowedByQuoteableCharacter(CharSequence body, int pos) {
return !isPositionFollowedByNumber(body, pos)
&& !isPositionFollowedByEmoticon(body,pos);
&& !isPositionFollowedByEmoticon(body,pos)
&& !isPositionFollowedByEquals(body,pos);
}
private static boolean isPositionFollowedByNumber(CharSequence body, int pos) {
@ -249,6 +250,10 @@ public class UIHelper {
return previousWasNumber;
}
private static boolean isPositionFollowedByEquals(CharSequence body, int pos) {
return body.length() > pos + 1 && body.charAt(pos+1) == '=';
}
private static boolean isPositionFollowedByEmoticon(CharSequence body, int pos) {
if (body.length() <= pos +1) {
return false;