diff options
| author | Neil <nyamatongwe@gmail.com> | 2014-09-06 09:27:08 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2014-09-06 09:27:08 +1000 |
| commit | 2fffff0d5d691f314829b0b3c8ecd59707afdb38 (patch) | |
| tree | 954a9b0b6056a8ac02667b4ca5638b2c959d24f0 /include | |
| parent | 0e0844fb3f9defe64b4dd4c3103efde3ee917b9a (diff) | |
| download | scintilla-mirror-2fffff0d5d691f314829b0b3c8ecd59707afdb38.tar.gz | |
Support the q-quote operator as SCE_SQL_QOPERATOR.
From Michael Staszewski.
Diffstat (limited to 'include')
| -rw-r--r-- | include/SciLexer.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index acb9eacc3..dc75a98b6 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -1117,6 +1117,7 @@ #define SCE_SQL_USER3 21 #define SCE_SQL_USER4 22 #define SCE_SQL_QUOTEDIDENTIFIER 23 +#define SCE_SQL_QOPERATOR 24 #define SCE_ST_DEFAULT 0 #define SCE_ST_STRING 1 #define SCE_ST_NUMBER 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index a30ed897f..134078786 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -3827,6 +3827,7 @@ val SCE_SQL_USER2=20 val SCE_SQL_USER3=21 val SCE_SQL_USER4=22 val SCE_SQL_QUOTEDIDENTIFIER=23 +val SCE_SQL_QOPERATOR=24 # Lexical states for SCLEX_SMALLTALK lex Smalltalk=SCLEX_SMALLTALK SCE_ST_ val SCE_ST_DEFAULT=0 |
