From: Dirk B. <db...@us...> - 2007-07-14 04:56:09
|
Update of /cvsroot/win32forth/win32forth-extsrc/extsrc/w32fScintilla/src In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv22970/extsrc/w32fScintilla/src Modified Files: LexForth.cxx Log Message: New stable Version 6.12.00 released via SourceForge. Index: LexForth.cxx =================================================================== RCS file: /cvsroot/win32forth/win32forth-extsrc/extsrc/w32fScintilla/src/LexForth.cxx,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LexForth.cxx 23 Sep 2006 15:10:30 -0000 1.3 --- LexForth.cxx 14 Jul 2007 04:56:04 -0000 1.4 *************** *** 313,317 **** int iStart = pos1; ! int iEnd = pos2; char ch1 = styler.SafeGetCharAt(pos1-1); --- 313,317 ---- int iStart = pos1; ! // int iEnd = pos2; char ch1 = styler.SafeGetCharAt(pos1-1); *************** *** 337,342 **** { styler.ColourTo( iStart, SCE_FORTH_STRING ); ! styler.ColourTo( iEnd, SCE_FORTH_STRING ); ! cur_pos = iEnd + 1; } } --- 337,342 ---- { styler.ColourTo( iStart, SCE_FORTH_STRING ); ! styler.ColourTo( pos2+1, SCE_FORTH_STRING ); ! cur_pos = pos2 + 1; } } *************** *** 400,404 **** #endif delete []buffer; ! delete []szLastToken; return; } --- 400,404 ---- #endif delete []buffer; ! delete []szLastToken; return; } |