SVN commit 593300 by dhaumann: fix crash that makes katepart pretty unusable. Please retag for KDE 3.5.5 - thanks & sorry for the hassle. BUG: 135045 M +1 -1 katerenderer.cpp --- branches/KDE/3.5/kdelibs/kate/part/katerenderer.cpp #593299:593300 @@ -763,7 +763,7 @@ x += width; - if (unicode[z] == QChar('\t')) + if (z < len && unicode[z] == QChar('\t')) x -= x % width; }