[Kst] extragear/graphics/kst/kst/datasources/ascii
George Staikos
staikos at kde.org
Fri Jun 24 21:12:15 CEST 2005
SVN commit 428638 by staikos:
note: custom column delimiters is broken by using isspace()
unconditionally here.
M +2 -1 ascii.cpp
--- trunk/extragear/graphics/kst/kst/datasources/ascii/ascii.cpp #428637:428638
@@ -320,7 +320,8 @@
if (comment && comment < &(tmpbuf[i])) {
comment = strpbrk(&(tmpbuf[i]), del);
}
- } else if (!is_comment && !isspace(tmpbuf[i])) {
+ } else if (!is_comment && !isspace(tmpbuf[i])) { // FIXME: this breaks
+ // custom delimiters
has_dat = true;
}
}
More information about the Kst
mailing list