diff options
author | nyamatongwe <devnull@localhost> | 2001-08-09 23:51:48 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-09 23:51:48 +0000 |
commit | cd08b8e2c98ca4063d272644d15aa2c1e24228ba (patch) | |
tree | ead135042b23c2b5b35ff66154605c09f92150d7 /include | |
parent | 595cc429f4b84190ae7f6135636d39114dd04972 (diff) | |
download | scintilla-mirror-cd08b8e2c98ca4063d272644d15aa2c1e24228ba.tar.gz |
Patch from Steve for recognising a SGML <! lexical state.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index e3c689404..54d3ace42 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -92,6 +92,7 @@ #define SCE_H_QUESTION 18 #define SCE_H_VALUE 19 #define SCE_H_XCCOMMENT 20 +#define SCE_H_SGML 21 #define SCE_HJ_START 40 #define SCE_HJ_DEFAULT 41 #define SCE_HJ_COMMENT 42 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index c1d75623d..5baee89fc 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1320,6 +1320,8 @@ val SCE_H_QUESTION=18 val SCE_H_VALUE=19 # X-Code val SCE_H_XCCOMMENT=20 +# SGML +val SCE_H_SGML=21 # Embedded Javascript val SCE_HJ_START=40 val SCE_HJ_DEFAULT=41 |