reset col position to 1 on row PAC

bug: 19284568
Change-Id: I7d439027ab6411bcd5c149580babee80dc5f9478
This commit is contained in:
Chong Zhang
2015-02-05 16:46:06 -08:00
parent 3548de6073
commit 6286f8ec05

View File

@@ -666,7 +666,7 @@ class CCParser {
if (pac.isIndentPAC()) {
moveCursorTo(pac.getRow(), pac.getCol());
} else {
moveCursorToRow(pac.getRow());
moveCursorTo(pac.getRow(), 1);
}
getLineBuffer(mRow).setPACAt(mCol, pac);
}