diff options
| author | Markus Heidelberg <markus.heidelberg@web.de> | 2015-01-11 09:04:00 +1100 |
|---|---|---|
| committer | Markus Heidelberg <markus.heidelberg@web.de> | 2015-01-11 09:04:00 +1100 |
| commit | 6b703450e0115cf796c393103d427ad846549826 (patch) | |
| tree | 4256087fc1d41ea5c54f4fbd0f90987e24306c37 /include/SciLexer.h | |
| parent | c1a5024e918549125607067b940c923c23370ffd (diff) | |
| download | scintilla-mirror-6b703450e0115cf796c393103d427ad846549826.tar.gz | |
LexHex: add a new state for garbage data after the record
IHex and Srec just set to the DEFAULT state before, TEHex used the
SCE_HEX_DATA_UNKNOWN state for garbage data, which is not the actual intention
for this state.
Diffstat (limited to 'include/SciLexer.h')
| -rw-r--r-- | include/SciLexer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 7c63a9de2..9dd1f240f 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -1767,6 +1767,7 @@ #define SCE_HEX_CHECKSUM 15 #define SCE_HEX_CHECKSUM_WRONG 16 #define SCE_HEX_RECTYPE_UNKNOWN 17 +#define SCE_HEX_GARBAGE 18 /* --Autogenerated -- end of section automatically generated from Scintilla.iface */ #endif |
