diff options
author | nyamatongwe <unknown> | 2003-10-27 19:22:07 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-10-27 19:22:07 +0000 |
commit | 9dce436839f6e6df327bac824f2e84dc911af869 (patch) | |
tree | 08c3e9adae16c65a8f50e1912bb5bedac196effd | |
parent | eb8608f6b17d147ca3217e4237d602cf5933d9a2 (diff) | |
download | scintilla-mirror-9dce436839f6e6df327bac824f2e84dc911af869.tar.gz |
Hang fixed when '/' is first character in file.
-rw-r--r-- | src/LexPerl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx index b3709fb6c..16a068778 100644 --- a/src/LexPerl.cxx +++ b/src/LexPerl.cxx @@ -383,7 +383,7 @@ static void ColourisePerlDoc(unsigned int startPos, int length, int initStyle, // any slash found, so no longer need to track preferRE state. // Find first previous significant lexed element and interpret. bool preferRE = false; - unsigned int bk = i - 1; + unsigned int bk = (i > 0)? i - 1: 0; char bkch; styler.Flush(); while ((bk > 0) && (styler.StyleAt(bk) == SCE_PL_DEFAULT || |