ide: Diff cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@10826 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-02-06 15:14:00 +00:00
parent 186ffa47bd
commit 14f34f68cd
2 changed files with 2 additions and 1 deletions

View file

@ -22,7 +22,7 @@ Vector<String> GetLineMap(Stream& stream)
while(!stream.IsEof()) {
String s = stream.GetLine();
const char *p = s, *e = s.End(), *f = e;
while(e > p && (byte)e[-1] != 9 && (byte)e[-1] < ' ')
while(e > p && /*(byte)e[-1] != 9 && */(byte)e[-1] < ' ')
e--;
if(e == p)
emp++;