diff options
| author | nyamatongwe <unknown> | 2007-03-23 21:27:45 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2007-03-23 21:27:45 +0000 | 
| commit | e41ed661b98131e9537b023575b1ab25fc9df6a1 (patch) | |
| tree | 1b9511fcba81300ca685c7753584fc71158171bd /src | |
| parent | 515090de5b6d5448ed0a3e2cf6afd03c9ff5ac90 (diff) | |
| download | scintilla-mirror-e41ed661b98131e9537b023575b1ab25fc9df6a1.tar.gz | |
Patch from Jos van der Zande to fix bug with + following a
string getting the wrong color.
Diffstat (limited to 'src')
| -rw-r--r-- | src/LexAU3.cxx | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexAU3.cxx b/src/LexAU3.cxx index 2bc2e0f4b..1a260d337 100644 --- a/src/LexAU3.cxx +++ b/src/LexAU3.cxx @@ -42,6 +42,7 @@  // Sep 27, 2005   - Fixed the SentKey lexing logic in case of multiple sentkeys.  // Mar 12, 2006   - Fixed issue with <> coloring as String in stead of Operator in rare occasions.  // Apr  8, 2006   - Added support for AutoIt3 Standard UDF library (SCE_AU3_UDF) +// Mar  9, 2007   - Fixed bug with + following a String getting the wrong Color.  //  // Copyright for Scintilla: 1998-2001 by Neil Hodgson <neilh@scintilla.org>  // The License.txt file describes the conditions under which this software may be distributed. @@ -424,6 +425,7 @@ static void ColouriseAU3Doc(unsigned int startPos,  				{  					sc.ForwardSetState(SCE_AU3_DEFAULT);  					si=0; +					break;  				}                  if (sc.atLineEnd)  				{ @@ -433,6 +435,7 @@ static void ColouriseAU3Doc(unsigned int startPos,  					if (!IsContinuationLine(lineCurrent,styler))   					{  						sc.SetState(SCE_AU3_DEFAULT); +						break;  					}  				}  				// find Sendkeys in a STRING  | 
