am 6139016b: Merge "Fix a bug where the previous word would not be read correctly" into jb-dev

* commit '6139016b2b51ccfbd31079064804c1a61a6ff87e':
  Fix a bug where the previous word would not be read correctly
main
Jean Chalard 2012-05-17 04:09:17 -07:00 committed by Android Git Automerger
commit b7ee64844c
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ public class EditingUtils {
/**
* Number of characters we want to look back in order to identify the previous word
*/
private static final int LOOKBACK_CHARACTER_NUM = 15;
// Provision for a long word pair and a separator
private static final int LOOKBACK_CHARACTER_NUM = BinaryDictionary.MAX_WORD_LENGTH * 2 + 1;
private static final int INVALID_CURSOR_POSITION = -1;
private EditingUtils() {