diff options
| -rw-r--r-- | doc/ScintillaHistory.html | 4 | ||||
| -rw-r--r-- | lexers/LexSQL.cxx | 2 | 
2 files changed, 5 insertions, 1 deletions
| diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index b160a52c4..203911a90 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -578,6 +578,10 @@  	<a href="https://sourceforge.net/p/scintilla/bugs/2112/">Bug #2112</a>.  	</li>   	<li> +	SQL lexer fixes single quoted strings where '" (quote, double quote) was seen as continuing the string. +	<a href="https://sourceforge.net/p/scintilla/bugs/2098/">Bug #2098</a>. +	</li> + 	<li>  	Platform layers should use InsertCharacter method to perform keyboard and IME input, replacing  	AddCharUTF method.  	<a href="https://sourceforge.net/p/scintilla/feature-requests/1293/">Feature #1293</a>. diff --git a/lexers/LexSQL.cxx b/lexers/LexSQL.cxx index 69916b9fb..40d7e1f03 100644 --- a/lexers/LexSQL.cxx +++ b/lexers/LexSQL.cxx @@ -537,7 +537,7 @@ void SCI_METHOD LexerSQL::Lex(Sci_PositionU startPos, Sci_Position length, int i  			if (options.sqlBackslashEscapes && sc.ch == '\\') {  				sc.Forward();  			} else if (sc.ch == '\'') { -				if (sc.chNext == '\"') { +				if (sc.chNext == '\'') {  					sc.Forward();  				} else {  					sc.ForwardSetState(SCE_SQL_DEFAULT); | 
