handle logic for line lengths with 0

This commit is contained in:
John McLear 2013-12-01 18:06:56 +00:00
parent e9f7583793
commit b4877f002d

View file

@ -2393,6 +2393,9 @@ function Ace2Inner(){
var indexIntoLine = 0;
var selectionStartInLine = 0;
var selectionEndInLine = rep.lines.atIndex(n).text.length; // exclude newline
if(rep.lines.atIndex(n).text.length == 0){
return false; // If the line length is 0 we basically treat it as having no formatting
}
if (n == selStartLine)
{
selectionStartInLine = rep.selStart[1];